diff --git a/parse/train/ByeSYa4KPS/ByeSYa4KPS.md b/parse/train/ByeSYa4KPS/ByeSYa4KPS.md new file mode 100644 index 0000000000000000000000000000000000000000..e3cb94f7279c864592f4c0aefd296121b173b118 --- /dev/null +++ b/parse/train/ByeSYa4KPS/ByeSYa4KPS.md @@ -0,0 +1,237 @@ +# SPARSE NETWORKS FROM SCRATCH: FASTER TRAINING WITHOUT LOSING PERFORMANCE + +Anonymous authors Paper under double-blind review + +# ABSTRACT + +We demonstrate the possibility of what we call sparse learning: accelerated training of deep neural networks that maintain sparse weights throughout training while achieving dense performance levels. We accomplish this by developing sparse momentum, an algorithm which uses exponentially smoothed gradients (momentum) to identify layers and weights which reduce the error efficiently. Sparse momentum redistributes pruned weights across layers according to the mean momentum magnitude of each layer. Within a layer, sparse momentum grows weights according to the momentum magnitude of zero-valued weights. We demonstrate state-of-the-art sparse performance on MNIST, CIFAR-10, and ImageNet, decreasing the mean error by a relative $8 \%$ , $15 \%$ , and $6 \%$ compared to other sparse algorithms. Furthermore, we show that sparse momentum reliably reproduces dense performance levels while providing up to $5 . 6 1 \mathrm { x }$ faster training. In our analysis, ablations show that the benefits of momentum redistribution and growth increase with the depth and size of the network. + +# 1 INTRODUCTION + +Current state-of-the-art neural networks need extensive computational resources to be trained and can have capacities of close to one billion connections between neurons (Vaswani et al., 2017; Devlin et al., 2018; Child et al., 2019). One solution that nature found to improve neural network scaling is to use sparsity: the more neurons a brain has, the fewer connections neurons make with each other (Herculano-Houzel et al., 2010). Similarly, for deep neural networks, it has been shown that sparse weight configurations exist which train faster and achieve the same errors as dense networks (Frankle and Carbin, 2019). However, currently, these sparse configurations are found by starting from a dense network, which is pruned and re-trained repeatedly – an expensive procedure. + +In this work, we demonstrate the possibility of training sparse networks that rival the performance of their dense counterparts with a single training run – no re-training is required. We start with random initializations and maintain sparse weights throughout training while also speeding up the overall training time. We achieve this by developing sparse momentum, an algorithm which uses the exponentially smoothed gradient of network weights (momentum) as a measure of persistent errors to identify which layers are most efficient at reducing the error and which missing connections between neurons would reduce the error the most. Sparse momentum follows a cycle of (1) pruning weights with small magnitude, (2) redistributing weights across layers according to the mean momentum magnitude of existing weights, and (3) growing new weights to fill in missing connections which have the highest momentum magnitude. + +We compare the performance of sparse momentum to compression algorithms and recent methods that maintain sparse weights throughout training. We demonstrate state-of-the-art sparse performance on MNIST, CIFAR-10, and ImageNet-1k. For CIFAR-10, we determine the percentage of weights needed to reach dense performance levels and find that AlexNet, VGG16, and Wide Residual Networks need between $3 5 . 5 0 \%$ , $5 . 1 0 \%$ , and $20 \%$ weights to reach dense performance levels. We also estimate the overall speedups of training our sparse convolutional networks to dense performance levels on CIFAR-10 for optimal sparse convolution algorithms and naive dense convolution algorithms compared to dense baselines. For sparse convolution, we estimate speedups between $2 . 7 4 \mathrm { x }$ and $5 . 6 1 \mathrm { x }$ and for dense convolution speedups between $1 . 0 7 \mathrm { x }$ and $1 . 3 6 \mathrm { x }$ . In your analysis, ablations demonstrate that the momentum redistribution and growth components are increasingly important as networks get deeper and larger in size – both are critical for good ImageNet performance. + +# 2 RELATED WORK + +From Dense to Sparse Neural Networks: Work that focuses on creating sparse from dense neural networks has an extensive history. Earlier work focused on pruning via second-order derivatives (LeCun et al., 1989; Karnin, 1990; Hassibi and Stork, 1992) and heuristics which ensure efficient training of networks after pruning (Chauvin, 1988; Mozer and Smolensky, 1988; Ishikawa, 1996). Recent work is often motivated by the memory and computational benefits of sparse models that enable the deployment of deep neural networks on mobile and low-energy devices. A very influential paradigm has been the iterative (1) train-dense, (2) prune, (3) re-train cycle introduced by Han et al. (2015). Extensions to this work include: Compressing recurrent neural networks and other models (Narang et al., 2017; Zhu and Gupta, 2018; Dai et al., 2018), continuous pruning and re-training (Guo et al., 2016), joint loss/pruning-cost optimization (Carreira-Perpinan and Idelbayev, 2018), ´ layer-by-layer pruning (Dong et al., 2017), fast-switching growth-pruning cycles (Dai et al., 2017), and soft weight-sharing (Ullrich et al., 2017). These approaches often involve re-training phases which increase the training time. However, since the main goal of this line of work is a compressed model for mobile devices, it is desirable but not an important main goal to reduce the run-time of these procedures. This is contrary to our motivation. Despite the difference in motivation, we include many of these dense-to-sparse compression methods in our comparisons. Other compression algorithms include $L _ { 0 }$ regularization (Louizos et al., 2018), and Bayesian methods (Louizos et al., 2017; Molchanov et al., 2017). For further details, see the survey of Gale et al. (2019). + +Interpretation and Analysis of Sparse Neural Networks: Frankle and Carbin (2019) show that “winning lottery tickets” exist for deep neural networks – sparse initializations which reach similar predictive performance as dense networks and train just as fast. However, finding these winning lottery tickets is computationally expensive and involves multiple prune and re-train cycles starting from a dense network. Followup work concentrated on finding these configurations faster (Frankle et al., 2019; Zhou et al., 2019). In contrast, we reach dense performance levels with a sparse network from random initialization with a single training run while accelerating training. + +Sparse Neural Networks Throughout Training: Methods that maintain sparse weights throughout training through a prune-redistribute-regrowth cycle are most closely related to our work. Bellec et al. (2018) introduce DEEP-R, which takes a Bayesian perspective and performs sampling for prune and regrowth decisions – sampling sparse network configurations from a posterior. While theoretically rigorous, this approach is computationally expensive and challenging to apply to large networks and datasets. Sparse evolutionary training (SET) (Mocanu et al., 2018) simplifies prune-regrowth cycles by using heuristics: (1) prune the smallest and most negative weights, (2) grow new weights in random locations. Unlike our work, where many convolutional channels are empty and can be excluded from computation, growing weights randomly fills most convolutional channels and makes it challenging to harness computational speedups during training without specialized sparse algorithms. SET also does not include the cross-layer redistribution of weights which we find to be critical for good performance, as shown in our ablation study. The most closely related work to ours is Dynamic Sparse Reparameterization (DSR) by Mostafa and Wang (2019), which includes the full prune-redistribute-regrowth cycle. However, DSR requires some specific layers to be dense. Our method works in a fully sparse setting and is thus more generally applicable. More distantly related is Single-shot Network Pruning (SNIP) (Lee et al., 2019), which aims to find the best sparse network from a single pruning decision. The goal of SNIP is simplicity, while our goal is maximizing predictive and run-time performance. In our experiments, we compare against all four methods: DEEP-R, SET, DSR, and SNIP. + +# 3 SPARSE LEARNING + +We define sparse learning to be the training of deep neural networks which maintain sparsity throughout training while matching the predictive performance of dense neural networks. To achieve this, intuitively, we want to find the weights that reduce the error most effectively. This is challenging since most deep neural network can hold trillions of different combinations of sparse weights. Additionally, during training, as feature hierarchies are learned, efficient weights might change gradually from shallow to deep layers. How can we find good sparse configurations? In this work, we follow a divide-and-conquer strategy that is guided by computationally efficient heuristics. We divide sparse learning into the following sub-problems which can be tackled independently: (1) pruning weights, (2) redistribution of weights across layers, and (3) regrowing weights, as defined in more detail below. + +![](images/975651e113bf641bb08fd14d8ca3b02bff573688fd39a93af9523d766b61ae3c.jpg) +Figure 1: Sparse Momentum is applied at the end of each epoch: (1) take the magnitude of the exponentially smoothed gradient (momentum) of each layer and normalize to 1; (2) for each layer, remove $p = 2 0 \%$ of the weights with the smallest magnitude; (3) across layers, redistribute the removed weights by adding weights to each layer proportionate to the momentum of each layer; within a layer, add weights starting from those with the largest momentum magnitude. Decay $p$ . + +# 3.1 SPARSE MOMENTUM + +We use the mean magnitude of momentum $\mathbf { M } _ { i }$ of existing weights $\mathbf { W } _ { i }$ in each layer $i$ to estimate how efficient the average weight in each layer is at reducing the overall error. Intuitively, we want to take weights from less efficient layers and redistribute them to weight-efficient layers. The sparse momentum algorithm is depicted in Figure 1. In this section, we first describe the intuition behind sparse momentum and then present a more detailed description of the algorithm. + +The gradient of the error with respect to a weight $\textstyle \frac { \partial \mathbf { E } } { \partial \mathbf { W } }$ yields the directions which reduce the error at the highest rate. However, if we use stochastic gradient descent, most weights of $\frac { \partial \mathbf { E } } { \partial \mathbf { W } }$ oscillate between small/large and negative/positive gradients with each mini-batch (Qian, 1999) – a good change for one mini-batch might be a bad change for another. We can reduce oscillations if we take the average gradient over time, thereby finding weights which reduce the error consistently. However, we want to value recent gradients, which are closer to the local minimum, more highly than the distant past. This can be achieved by exponentially smoothing $\frac { \partial \mathbf { E } } { \partial \mathbf { W } }$ – the momentum $\mathbf { M } _ { i }$ : + +$$ +\mathbf { M } _ { i } ^ { t + 1 } = \alpha \mathbf { M } _ { i } ^ { t } + ( 1 - \alpha ) \frac { \partial \mathbf { E } } { \partial \mathbf { W } _ { i } } ^ { t } , +$$ + +where $\alpha$ is a smoothing factor, $\mathbf { M } _ { i }$ is the momentum for the weight $\mathbf { W } _ { i }$ in layer $i$ ; $\mathbf { M } _ { i }$ is initialized at $t = 0$ with 0. + +Momentum is efficient at accelerating the optimization of deep neural networks by identifying weights which reduce the error consistently. Similarly, the aggregated momentum of weights in each layer should reflect how good each layer is at reducing the error consistently. Additionally, the momentum of zero-valued weights – equivalent to missing weights in sparse networks – can be used to estimate how quickly the error would change if these weights would be included in a sparse network. + +The details of the full training procedure of our algorithm are shown in Algorithm 1. See Algorithm 2 in the Appendix for a more detailed, source-code-like description of sparse momentum. + +Algorithm 1: Sparse momentum algorithm. + +
Data: Layer i to k with: Momentum Mi,Weight Wi, binary Maski prune rate pi, density d 1 fori←O to k do
Wi ← xavierInit(Wi)
2 3Maski ← createMaskForWeight(Wi,d)
4applyMask(Wi,Maski)
5 end
6 for epoch ← O to numEpochs do
7for j←O to numBatches do
8batch ← getBatch(j) E
9W = computeGradients(W, batch)
10UpdateMomentum( 器)
11UpdateWeights(M)
12fori←O to k do
13applyMask(Wi,Maski) end
14end
15
16totalMomentum ← getTotalMomentum(M)
17totalPruned ← getTotalPrunedWeights(W, p)
18fori←O to k do
19mi ← getMomentumContribution(Mi,Maski,totalMomentum)
20magnitudePruneWeight(Wi,Maski, Pi)
21regrowWeights(Wi,Maski,mi · totalPruned)
22Pi←decayPrunerate(pi)
23applyMask(Wi,Maski)
24end
25 end
+ +Before training, we initialize the network with a certain sparsity $s$ : we initialize the network as usual and then remove a fraction of $s$ weights for each layer. We train the network normally and mask the weights after each gradient update to enforce sparsity. We apply sparse momentum after each epoch. We can break the sparse momentum into three major parts: (a) redistribution of weights, (b) pruning weights, (c) regrowing weights. In step (a), we we take the mean of the element-wise momentum momentum $m _ { i }$ agnitude of all layers . The resulting pr $i$ ortion is the momentum magnitude $\scriptstyle \sum _ { i = 0 } ^ { k } m _ { i }$ +removed weights multiplied by each layers momentum contribution: $\mathrm { R e g r o w } _ { i } =$ Total Removed · $m _ { i }$ . In step (b), we prune a proportion of $p$ (prune rate) of the weights with the lowest magnitude for each layer. In step (c), we regrow weights by enabling the gradient flow of zero-valued (missing) weights which have the largest momentum magnitude. + +Additionally, there are two edge-cases which we did not include in Algorithm 1 for clarity. (1) If we allocate more weights to be regrown than is possible for a specific layer, for example regrowing 100 weights for a layer of maximum 10 weights, we redistribute the excess number of weights equally among all other layers. (2) For some layers, our algorithm will converge in that the average weight in layer $i$ has much larger momentum magnitude than weights in other layers, but at the same time, this layer is dense and cannot grow further. We do not want to prune weights from such important layers. Thus, for these layers, we reduce the prune rate $p _ { i }$ proportional to the sparsity: $p _ { i } = \mathrm { { m i n } } ( p , \mathrm { { s p a r s i t y } } _ { i } )$ . + +After each epoch, we decay the prune rate in Algorithm 1 in the same way learning rates are decayed. We use a cosine decay schedule that anneals the prune rate to zero on the last epoch. See Appendix A.1 for an analysis on how decay schedule and starting prune rate affects training. + +# 4 EXPERIMENTAL SETUP + +For comparison, we follow three different experimental settings, one from Lee et al. (2019) and two settings follow Mostafa and Wang (2019): For MNIST (LeCun, 1998), we use a batch size of 100, decay the learning rate by a factor of 0.1 every 25000 mini-batches. For CIFAR-10 (Krizhevsky and Hinton, 2009), we use standard data augmentations (horizontal flip, and random crop with reflective padding), a batch size of 128, and decay the learning rate every 30000 mini-batches. We train for 100 and 250 epochs on MNIST and CIFAR-10, use a learning rate of 0.1, stochastic gradient descent with Nesterov momentum of $\alpha = 0 . 9$ , and we use a weight decay of 0.0005. We use a fixed $10 \%$ of the training data as the validation set and train on the remaining $90 \%$ . We evaluate the test set performance of our models on the last epoch. For all experiments on MNIST and CIFAR-10, we report the standard errors. Our sample size is generally between 10 and 12 experiments per method/architecture/sparsity level with different random seeds for each experiment. + +We use the modified network architectures of AlexNet, VGG16, and LeNet-5 as introduced by Lee et al. (2019). We consider two different variations of the experimental setup of Mostafa and Wang (2019) for ImageNet and CIFAR-10. The first follows their procedure closely, in that we run the networks in a partially dense setting where the first convolutional layer and downsampling convolutional layers are dense. Additionally, for CIFAR-10 the last fully connected layer is dense. In the second setting, we compare in a fully sparse setting – no layer is dense at the beginning of training. For the fully sparse setting we increase overall number of weights according to the extra parameters in the dense layers and distribute them equally among the network. The parameters in the dense layers make up $5 . 6 3 \%$ weights of the ResNet-50 network. We refer to these two settings as the partially dense and fully sparse settings. + +On ImageNet (Deng et al., 2009), we use ResNet-50 (He et al., 2016) with a stride of 2 for the $3 \mathrm { x } 3$ convolution in the bottleneck layers. We use a batch size of 256, input size of 224, momentum of $\alpha = 0 . 9$ , and weight decay of $1 \dot { 0 } ^ { - 4 }$ . We train for 100 epochs and report validation set performance after the last epoch. We report results for the fully sparse and the partially dense setting. + +For all experiments, we keep biases and batch normalization weights dense. We tuned the prune rate $p$ and momentum rate $\alpha$ searching the parameter space $\{ 0 . 2 , 0 . 3 , \bar { 0 } . 4 , 0 . 5 , 0 . 6 , 0 . 7 \}$ and $\{ 0 . 5 , 0 . 6 , 0 . 7$ $0 . 8 , 0 . 9 , 0 . 9 5 , 0 . 9 9 \}$ on MNIST and CIFAR-10 and found that $p = 0 . 2$ and $\alpha = 0 . 9$ work well for most architectures. We use this prune and momentum rate throughout all experiments. + +ImageNet experiments were run on $4 \mathbf { x }$ RTX 2080 Ti and all other experiments on individual GPUs. + +Our software builds on PyTorch (Paszke et al., 2017) and is a wrapper for PyTorch neural networks with a modular architecture for growth, redistribution, and pruning algorithms. Currently, no GPUaccelerated libraries that utilize sparse tensors exist, and as such we use masked weights to simulate sparse neural networks. Using our software, any PyTorch neural network can be adapted to be a sparse momentum network with less than 10 lines of code. We will open-source our software along with trained models and individual experimental results.1 + +# 5 RESULTS + +Results in Figure 2 and Table 1 show a comparison with model compression methods. On MNIST, sparse momentum is the only method that provides consistent strong performance across both LeNet 300-100 and LeNet-5 Caffe models. Soft-weight sharing (Ullrich et al., 2017) and Layer-wise Brain Damage (Dong et al., 2017) are competitive with sparse momentum for one model, but underperforms for the other model. For $1 \%$ of weights, variational dropout is more effective – but this method also uses dropout for further regularization while we only use weight decay. We can see that sparse momentum achieves equal performance to the LeNet-5 Caffe dense baseline with $8 \%$ weights. + +On CIFAR-10 in Table 1, we can see that sparse momentum outperforms Single-shot Network Pruning (SNIP) for all models and can achieve the same performance level as a dense model for VGG16-D with just $5 \%$ of weights. + +![](images/9e005205b0e6994a85124aca20160b59043af33e15e75edf770b4775ce008edb.jpg) +Figure 2: Comparisons against compression methods on MNIST with $9 5 \%$ confidence intervals. + +Figure 3 and Table 2 show comparisons of sparse learning methods on MNIST and CIFAR that follows the experimental procedure of Mostafa and Wang (2019) where some selected layers are dense. For LeNet 300-100 on MNIST, we can see that sparse momentum outperforms all other methods. For CIFAR-10, sparse momentum is better than dynamic sparse in 4 out of 5 cases. However, in general, the confidence intervals for most methods overlap – this particular setup for CIFAR-10 with specifically selected dense layers seems to be too easy to determine difference in performance between methods and we do not recommend this setup for future work. Table 2 shows that sparse momentum outperforms all other methods on ImageNet (ILSVRC2012) for the Top-1 accuracy measure. Dynamic sparse is better for the Top-5 accuracy with $20 \%$ weights. In the fully sparse setting, sparse momentum remains competitive and seems to find a weight distribution which works equally well for the $10 \%$ weights case. For $20 \%$ weights, the performance decreases slightly. + +![](images/9dd88284b32d232481d4be4d6a060b725bbcbf77df1fa6d28d3b3fe0b839a50c.jpg) +Figure 3: Test set accuracy with $9 5 \%$ confidence intervals on MNIST and CIFAR at varying sparsity levels for LeNet 300-100 and WRN 28-2. + +# 5.1 SPEEDUPS AND WEIGHTS NEEDED FOR DENSE PERFORMANCE LEVELS + +We analyzed how many weights are needed to achieve dense performance for our networks on CIFAR-10 and how much faster would we able to train such a sparse network compared to a dense one. We do this analysis by increasing the number of weights by $5 \%$ until the sparse network trained with sparse momentum reaches a performance level that overlaps with a $9 5 \%$ confidence interval of the dense performance. We then measure the speedup of the model. For each network-density combination we perform ten training runs with different random seeds to calculate the mean test error and its standard error. + +To estimated the speedups that could be obtained using sparse momentum for these dense networks we follow two approaches: Theoretical speedups for sparse convolution algorithms which are proportional to reductions in FLOPS and practical speedups using dense convolutional algorithms which are proportional to empty convolutional channels. For our sparse convolution estimates, we calculate the FLOPS saved for each convolution operation throughout training as well as the runtime for each convolution. To receive the maximum speedups for sparse convolution, we then scale the runtime for each convolution operation by the FLOPS saved. While a fast sparse convolution algorithm for coarse block structures exist for GPUs (Gray et al., 2017), optimal sparse convolution algorithms for fine-grained patterns do not and need to be developed to enable these speedups. + +Table 1: CIFAR-10 test set error ( $\pm$ standard error) for dense baselines, Sparse Momentum and SNIP. + +
Sparse Error (%)Weights (%)
Dense Error (%)SNIPMomentum
Model AlexNet-s12.95±0.05614.9914.27±0.12310
AlexNet-b12.85±0.06814.5013.56±0.09410
VGG16-C6.49±0.0387.277.00±0.0545
VGG16-D6.59±0.0507.096.69±0.049*5
VGG16-like6.50±0.0548.007.00±0.0773
WRN-16-84.57±0.0226.635.62±0.0565
WRN-16-104.45±0.0406.435.24±0.0525
WRN-22-84.26±0.0325.854.93±0.0565
+ +\* $9 5 \%$ confidence intervals overlap with dense model. Table 2: Results for ResNet-50 on ImageNet. + +
Accuracy (%)
ModelTop-1Top-5Top-1Top-5
Dense ResNet-50 (He et al., 2016)74.992.474.992.4
Fully Sparse10%weights20%Weights
DeepR (Bellec et al., 2018) SET (Mocanu et al., 2018)X70.290.071.790.6
X70.490.172.691.2
Dynamic Sparse (Mostafa and Wang,2019) X71.690.573.392.4
Sparse momentum72.391.074.291.9
×72.391.073.891.8
+ +The second method measures practical speedups that can be obtained with naive, dense convolution algorithms which are available today. Dense convolution is unsuitable for the training of sparse networks but we include this measurement to highlight the algorithmic gap that exists to efficiently train sparse networks. For dense convolution algorithms, we estimate speedups as follows: If a convolutional channel consists entirely of zero-valued weights we can remove these channels from the computation without changing the outputs and obtain speedups. To receive the speedups for dense convolution we scale each convolution operation by the proportion of empty channels. Using these measures, we estimated the speedups for our models on CIFAR-10. The resulting speedups and dense performance levels can be seen in Table 3. + +We see that VGG16 networks can achieve dense performance with relatively few weights while AlexNet requires the most weights. Wide Residual Networks need an intermediate level of weights. Despite the large number of weights for AlexNet, sparse momentum still yields large speedups around $3 . 0 \mathbf { x }$ for sparse convolution. Sparse convolution speedups are particularly pronounced for Wide Residual Networks (WRN) with speedups as high as $5 . 6 1 \mathrm { x }$ . Dense convolution speedups are much lower and are mostly dependent on width, with wider networks receiving larger speedups. These results highlight the importance to develop optimized algorithms for sparse convolution. + +Beyond speedups, we also measured the overhead of our sparse momentum procedure to be equivalent of a slowdown to $0 . 9 7 3 \mathrm { x } \pm 0 . 0 2 9 \mathrm { x }$ compared to a dense baseline. + +Table 3: Dense performance equivalents and speedups for sparse networks on CIFAR-10. + +
ModelWeights (%)Error(%) Speedups
Dense Convolution (Empty Channels)Sparse Convolution (FLOPS Reduction)
AlexNet-s5013.15±0.0651.31x3.01x
AlexNet-b3513.00±0.0651.21x2.74x
VGG16-C106.64±0.0401.32x3.85x
VGG16-D56.49±0.0451.36x3.51x
VGG16-like56.46±0.0361.32x3.48x
WRN 16-8304.72±0.0511.07x4.59x
WRN 16-10254.56±0.0371.07x4.41x
WRN 22-8204.40±0.0371.21x5.61x
+ +# 6 ANALYSIS + +# 6.1 ABLATION ANALYSIS + +Our method differs from previous methods like SET and Dynamic Sparse Reparameterization in two ways: (1) redistribution of weights and (2) growth of weights. To understand the performance contribution of these components, we perform ablations on CIFAR-10 for VGG16-D with $5 \%$ weights, MNIST for LeNet 300-100 and LeNet-5 Caffe with $5 \%$ weights, and ImageNet for ResNet-50 with $10 \%$ weights in the fully sparse setting. The results can be seen in Table 4. + +Redistribution: Redistributing weights according to the momentum magnitude becomes increasingly important the larger a network is as can be seen from the steady increases in error from the small LeNet 300-100 to the large ResNet-50 when no momentum redistribution is used. Increased test error is particularly pronounced for ImageNet where the Top-1 error increases by $3 . 4 2 \%$ to $9 . 7 1 \%$ if no redistribution is used. + +Momentum growth: Momentum growth improves performance over random growth by a large margin for ResNet-50 on ImageNet, but for smaller networks the combination of redistribution and random growth seems to be sufficient to find good weights. Random growth without redistribution, however, cannot find good weights. These results suggest that with increasing network size a random search strategy becomes inefficient and smarter growth algorithms are required for good performance. + +Table 4: Ablation analysis for different growth and redistribution algorithm combinations for LeNet 300-100 and LeNet-5 Caffe on MNIST, VGG16-D on CIFAR-10, and ResNet-50 on ImageNet. + +
RedistributionGrowthTest error in %
LeNet 300-100LeNet-5 CaffeVGG16-DResNet-50
momentummomentum1.53±0.0200.69±0.0216.69±0.04927.07
momentumrandom+0.07±0.022-0.05±0.011-0.19±0.040+7.29
None momentum+0.01±0.018+0.32±0.071+1.54±0.101+3.42
Nonerandom+0.11±0.020+0.13±0.013+1.49±0.147+9.71
+ +# 7 CONCLUSION AND FUTURE WORK + +We presented our sparse learning algorithm, sparse momentum, which uses the mean magnitude of momentum to grow and redistribute weights. We showed that sparse momentum outperforms other sparse algorithms on MNIST, CIFAR-10, and ImageNet. Additionally, sparse momentum can rival dense neural network performance while accelerating training. Our analysis of speedups highlights the need for research into specialized sparse convolution and sparse matrix multiplication algorithms to enable the benefits of sparse networks. + +# REFERENCES + +Bellec, G., Kappel, D., Maass, W., and Legenstein, R. A. (2018). Deep rewiring: Training very sparse deep networks. CoRR, abs/1711.05136. + +Carreira-Perpinan, M. A. and Idelbayev, Y. (2018). learning-compression algorithms for neural net ´ pruning. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, pages 8532–8541. + +Chauvin, Y. (1988). A back-propagation algorithm with optimal use of hidden units. In NIPS. + +Child, R., Gray, S., Radford, A., and Sutskever, I. (2019). Generating long sequences with sparse transformers. CoRR, abs/1904.10509. + +Dai, X., Yin, H., and Jha, N. K. (2017). Nest: A neural network synthesis tool based on a grow-andprune paradigm. CoRR, abs/1711.02017. + +Dai, X., Yin, H., and Jha, N. K. (2018). Grow and prune compact, fast, and accurate lstms. CoRR, abs/1805.11797. + +Deng, J., Dong, W., Socher, R., Li, L.-J., Li, K., and Fei-Fei, L. (2009). Imagenet: A large-scale hierarchical image database. In 2009 IEEE conference on computer vision and pattern recognition, pages 248–255. Ieee. + +Devlin, J., Chang, M.-W., Lee, K., and Toutanova, K. (2018). Bert: Pre-training of deep bidirectional transformers for language understanding. CoRR, abs/1810.04805. + +Dong, X., Chen, S., and Pan, S. J. (2017). Learning to prune deep neural networks via layer-wise optimal brain surgeon. In NIPS. + +Frankle, J. and Carbin, M. (2019). The lottery ticket hypothesis: Finding sparse, trainable neural networks. In ICLR 2019. + +Frankle, J., Dziugaite, G. K., Roy, D. M., and Carbin, M. (2019). The lottery ticket hypothesis at scale. CoRR, abs/1903.01611. + +Gale, T., Elsen, E., and Hooker, S. (2019). The state of sparsity in deep neural networks. CoRR, abs/1902.09574. + +Gray, S., Radford, A., and Kingma, D. P. (2017). Gpu kernels for block-sparse weights. + +Guo, Y., Yao, A., and Chen, Y. (2016). Dynamic network surgery for efficient dnns. In Advances In Neural Information Processing Systems, pages 1379–1387. + +Han, S., Pool, J., Tran, J., and Dally, W. (2015). Learning both weights and connections for efficient neural network. In Advances in neural information processing systems, pages 1135–1143. + +Hassibi, B. and Stork, D. G. (1992). Second order derivatives for network pruning: Optimal brain surgeon. In NIPS. + +He, K., Zhang, X., Ren, S., and Sun, J. (2016). Deep residual learning for image recognition. 2016 IEEE Conference on Computer Vision and Pattern Recognition (CVPR), pages 770–778. + +Herculano-Houzel, S., Mota, B., Wong, P., and Kaas, J. H. (2010). Connectivity-driven white matter scaling and folding in primate cerebral cortex. Proceedings of the National Academy of Sciences of the United States of America, 107 44:19008–13. + +Ishikawa, M. (1996). Structural learning with forgetting. Neural Networks, 9:509–521. + +Karnin, E. D. (1990). A simple procedure for pruning back-propagation trained neural networks. IEEE transactions on neural networks, 1 2:239–42. + +Krizhevsky, A. and Hinton, G. (2009). Learning multiple layers of features from tiny images. Technical report, Citeseer. + +LeCun, Y. (1998). Gradient-based learning applied to document recognition. +LeCun, Y., Denker, J. S., and Solla, S. A. (1989). Optimal brain damage. In NIPS. +Lee, N., Ajanthan, T., and Torr, P. H. S. (2019). Snip: Single-shot network pruning based on connection sensitivity. In ICLR 2019. +Louizos, C., Ullrich, K., and Welling, M. (2017). Bayesian compression for deep learning. In Advances in Neural Information Processing Systems, pages 3288–3298. +Louizos, C., Welling, M., and Kingma, D. P. (2018). Learning sparse neural networks through $l _ { 0 }$ regularization. CoRR, abs/1712.01312. +Mocanu, D. C., Mocanu, E., Stone, P., Nguyen, P. H., Gibescu, M., and Liotta, A. (2018). Scalable training of artificial neural networks with adaptive sparse connectivity inspired by network science. Nature communications, 9(1):2383. +Molchanov, D., Ashukha, A., and Vetrov, D. P. (2017). Variational dropout sparsifies deep neural networks. In International Conference on MachineLearning (ICML). +Mostafa, H. and Wang, X. (2019). Parameter efficient training of deep convolutional neural networks by dynamic sparse reparameterization. In International Conference on Machine Learning (ICML). +Mozer, M. C. and Smolensky, P. (1988). Skeletonization: A technique for trimming the fat from a network via relevance assessment. In NIPS. +Narang, S., Diamos, G. F., Sengupta, S., and Elsen, E. (2017). Exploring sparsity in recurrent neural networks. CoRR, abs/1704.05119. +Paszke, A., Gross, S., Chintala, S., Chanan, G., Yang, E., DeVito, Z., Lin, Z., Desmaison, A., Antiga, L., and Lerer, A. (2017). Automatic differentiation in pytorch. +Qian, N. (1999). On the momentum term in gradient descent learning algorithms. Neural networks : the official journal of the International Neural Network Society, 12 1:145–151. +Simonyan, K., Vedaldi, A., and Zisserman, A. (2013). Deep inside convolutional networks: Visualising image classification models and saliency maps. CoRR, abs/1312.6034. +Springenberg, J. T., Dosovitskiy, A., Brox, T., and Riedmiller, M. A. (2014). Striving for simplicity: The all convolutional net. CoRR, abs/1412.6806. +Ullrich, K., Meeds, E., and Welling, M. (2017). Soft weight-sharing for neural network compression. CoRR, abs/1702.04008. +Vaswani, A., Shazeer, N., Parmar, N., Uszkoreit, J., Jones, L., Gomez, A. N., Kaiser, Ł., and Polosukhin, I. (2017). Attention is all you need. In Advances in neural information processing systems, pages 5998–6008. +Zeiler, M. D. and Fergus, R. (2014). Visualizing and understanding convolutional networks. In ECCV. +Zhou, H., Lan, J., Liu, R., and Yosinski, J. (2019). Deconstructing lottery tickets: Zeros, signs, and the supermask. arXiv preprint arXiv:1905.01067. +Zhu, M. and Gupta, S. (2018). To prune, or not to prune: Exploring the efficacy of pruning for model compression. CoRR, abs/1710.01878. + +# A APPENDIX + +# A.1 SENSITIVITY ANALYSIS + +Sparse momentum depends on two hyperparameters: Prune rate and momentum. In this section, we study the sensitivity of the accuracy of our models as we vary the prune rate and momentum. Since momentum parameter has an additional effect on the optimization procedure, we run control experiments for fully dense networks thus disentangling the difference in accuracy accounted by our sparse momentum procedure. + +We run experiments for VGG-D and AlexNet-s with $5 \%$ and $10 \%$ weights on CIFAR-10. Results can be seen in Figure 4. We see that sparse momentum is highly robust to the choice of prune rate with results barely deviating when the prune rate is in the interval between 0.2 to 0.4. However, we can see a gradual linear trend that indicates that smaller prune rates work slightly better than larger ones. Cosine and linear prune rate annealing schedules do equally well. For momentum, confidence intervals for values between 0.7 and 0.9 overlap indicating that our procedure is robust to the choice of the momentum parameter. Sparse momentum is more sensitive to low momentum values $( \le 0 . 6 )$ while it is less sensitive for large momentum values (0.95) compared to a dense control. Additionally, we test the null hypothesis that sparse momentum is equally sensitive to deviations from a momentum parameter value of 0.9 as a dense control. The normality assumption was violated and data transformations did not help. Thus we use the non-parametric Wilcoxon Signed-rank Test. We find no evidence that sparse momentum is more sensitive to the momentum parameter than a dense control, $W ( 1 6 ) = 2 2 . 0 , p = 0 . 5 8$ . Overall, we conclude that sparse momentum is highly robust to deviations of the pruning schedule and the momentum and prune rate parameters. + +![](images/7117fc64f9af6e4603deca5ce68e941dd833601ab85ffdf8166fe5180fae3c84.jpg) +Figure 4: Parameter sensitivity analysis for prune rate and momentum with $9 5 \%$ confidence intervals. + +B ADDITIONAL ANALYSIS + +# B.1 DENSE VS SPARSE FEATURES + +Are there differences between feature representations learned by dense and sparse networks? The answer to this question can help with the design of sparse learning algorithms and sparse architectures. In this section, we look at the features of dense and sparse networks and how specialized these features are for certain classes. We test difference between sparse and dense network features statistically. + +For feature visualization, it is common to backpropagate activity to the inputs to be able to visualize what these activities represent (Simonyan et al., 2013; Zeiler and Fergus, 2014; Springenberg et al., 2014). However, in our case, we are more interested in the overall distribution of features for each layer within our network, and as such we want to look at the magnitude of the activity in a channel since – unlike feature visualization – we are not just interested in feature detectors but also discriminators. For example, a face detector would induce positive activity for a ‘person’ class but might produce negative activity for a ‘mushroom’ class. Both kinds of activity are useful. + +With this reasoning, we develop the following convolutional channel-activation analysis: (1) pass the entire training set through the network and aggregate the magnitude of the activation in each convolutional channel separately for each class; (2) normalize across classes to receive for each channel the proportion of activation which is due to each class; (3) look at the maximum proportion of each channel as a measure of class specialization: a maximum proportion of $1 / N _ { c }$ where $N _ { c }$ is the number of classes indicates that the channel is equally active for all classes in the training set. The higher the proportion deviates from this value, the more is a channel specialized for a particular class. + +We obtain results for AlexNet-s, VGG16-D, and WRN 28-2 on CIFAR-10 and use as many weights as needed to reach dense performance levels. We then test the null hypothesis, that there are no differences in class specialization between features from sparse networks and dense networks. Equal variance assumptions was violated for VGG-D and normality was violated for WRN-28-2, while all assumptions hold for AlexNet-s. For consistency reasons we perform non-parametric Kruskal-Wallis one-way analysis of variance tests for all networks. For AlexNet-s, we find some evidence that features of sparse networks have lower class specialization compared to dense networks $\chi ^ { 2 } ( 5 ) = 4 . 4 3 , p = 0 . 0 3 \bar { 5 }$ , for VGG-D and WRN-28-2 we find strong evidence that features of sparse networks have lower class specialization than dense networks $\bar { \chi } ^ { 2 } ( 1 3 ) = 2 8 . 1 , p < 0 . 0 0 1$ , $\bar { \chi ^ { 2 } } ( 1 2 ) = 3 6 . 2 , p < 0 . 0 0 1$ . Thus we reject the null hypothesis. These results increase our confidence that sparse networks learn features which have lower class specialization than dense networks. + +Plots of the distributions of sparse vs. dense features for AlexNet-s, VGG16-D, and WRN 28-2 on CIFAR-10 in Figure 5. These plots were selected to highlight the difference in distribution in the first layers and last layers of each network. We see the convolutional channels in sparse networks have lower class-specialization indicating they learn features which are useful for a broader range of classes compared to dense networks. This trend intensifies with depth. + +Overall, we conclude that sparse networks might be able to rival dense networks by learning more general features that have lower class specialization. + +# C FURTHER RESULTS + +# C.1 TUNED RESNET-50 ON IMAGENET + +We also tried a better version of the ResNet-50 in the fully sparse setting for which we use a cosine learning rate schedule, label smoothing of 0.9, and we warmup the learning rate. The results can be seen in Table 5. + +Table 5: Fully sparse ImageNet results. + +
ModelAccuracy (%)
Weights (%) Top-1Top-5
Tuned ResNet-5010077.0 93.5
Sparse momentum1072.9 91.5
2074.9 92.5
3075.9 92.9
+ +# D DETAILED SPARSE MOMENTUM ALGORITHM + +For a detailed NumPy-style algorithmic description of sparse momentum see Algorithm 2. + +![](images/3f901c2978fb2659c764fa4bb466027b202c3cf82103c11c60169e22f18339dd.jpg) +Figure 5: Dense vs sparse histograms of class-specialization for convolutional channels on CIFAR-10. A class-specialization of 0.5 indicates that $50 \%$ of the overall activity comes from a single class. + +Algorithm 2: Sparse momentum algorithm in NumPy notation. Data: Layer i to k with: Momentum $\mathbf { M } _ { i }$ , Weight $\overline { { \mathbf { W } _ { \mathbf { i } } } }$ , binary $\mathbf { M a s k } _ { i }$ ; prune rate $p$ 1 TotalMomentum $\gets 0$ , TotalNonzero $ 0$ $/ \star$ (a) Calculate mean momentum contributions of all layers. \*/ 2 for $i \gets 0$ to $k$ do 3 MeanMomentum $_ i $ mean(a $\mathbf { b s } ( \mathbf { M } _ { i } \left[ \mathbf { W } _ { i } \neq 0 \right] ) _ { . }$ ) 4 TotalMomentum $\gets$ TotalMomentum $^ +$ MeanMomentumi 5 $\mathrm { N o n } Z \mathrm { e r o } _ { i } = \mathrm { s u m } ( \mathbf { W } _ { i } \neq 0 )$ 6 TotalNonzero TotalNonzero + NonZeroi 7 end 8 for $i \gets 0$ to $k$ do 9 LayerContribution $_ { \cdot i } \gets$ MeanMomentumi/TotalMomentum 10 $p _ { i } \gets$ getPruneRate $( \mathbf { W } _ { i } , p )$ 11 weights by finding the NumRemoveth smallest weight. 12 end 13 for $i \gets 0$ to $k$ do 14 NumRemove $\mathbf { \Sigma } _ { i } \mathrm { N o n Z e r o } _ { i } \cdot p$ 15 PruneThreshold $ \mathrm { s o r t } ( \mathrm { a b s } ( \mathbf W _ { i } [ \mathbf W _ { i } \neq 0 ] )$ ) [NumRemovei] 16 $\mathbf { M a s k } _ { i }$ $[ \mathbf { W } _ { i } <$ PruneThreshold] $ 0$ // Stop gradient flow. 17 $\mathbf { W } _ { i }$ $[ \mathbf { W } _ { i } <$ PruneThreshold] $\gets 0$ 18 end /\* (c) Enable gradient flow of weights with largest momentum magnitude. \*/ 19 for $i \gets 0$ to $k$ do 20 RegrowthThresh $\mathrm { \mathbf { \tau } _ { \mathrm { 1 } } } \mathbf { d } _ { i } \gets \mathrm { \mathbf { \mathrm { s o r t } } } ( \mathbf { \mathrm { a b s } } ( \mathbf { M } _ { i } \left[ \mathbf { W } _ { i } = = 0 \right] )$ ) [NumRegrowthi] 21 $\mathbf { Z } _ { i } = \mathbf { M } _ { i }$ · $\mathbf { W } _ { i } = = 0$ ) // Only consider the momentum of missing weights. 22 $\mathbf { M } \mathbf { a s } \mathbf { k } _ { i } \gets \mathbf { M } \mathbf { a s } \mathbf { k } _ { i }$ | ( $\mathbf { Z } _ { i } >$ RegrowthThreshold ) // | is the boolean OR operator 23 end 24 $p $ decayPruneRate(p) 25 applyMask() \ No newline at end of file diff --git a/parse/train/ByeSYa4KPS/ByeSYa4KPS_content_list.json b/parse/train/ByeSYa4KPS/ByeSYa4KPS_content_list.json new file mode 100644 index 0000000000000000000000000000000000000000..10dddd4f6306fa8ab41e3f9f6ec2ac01abfc19d1 --- /dev/null +++ b/parse/train/ByeSYa4KPS/ByeSYa4KPS_content_list.json @@ -0,0 +1,1206 @@ +[ + { + "type": "text", + "text": "SPARSE NETWORKS FROM SCRATCH: FASTER TRAINING WITHOUT LOSING PERFORMANCE ", + "text_level": 1, + "bbox": [ + 176, + 99, + 815, + 146 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Anonymous authors Paper under double-blind review ", + "bbox": [ + 183, + 171, + 398, + 198 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "ABSTRACT ", + "text_level": 1, + "bbox": [ + 454, + 234, + 544, + 251 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "We demonstrate the possibility of what we call sparse learning: accelerated training of deep neural networks that maintain sparse weights throughout training while achieving dense performance levels. We accomplish this by developing sparse momentum, an algorithm which uses exponentially smoothed gradients (momentum) to identify layers and weights which reduce the error efficiently. Sparse momentum redistributes pruned weights across layers according to the mean momentum magnitude of each layer. Within a layer, sparse momentum grows weights according to the momentum magnitude of zero-valued weights. We demonstrate state-of-the-art sparse performance on MNIST, CIFAR-10, and ImageNet, decreasing the mean error by a relative $8 \\%$ , $15 \\%$ , and $6 \\%$ compared to other sparse algorithms. Furthermore, we show that sparse momentum reliably reproduces dense performance levels while providing up to $5 . 6 1 \\mathrm { x }$ faster training. In our analysis, ablations show that the benefits of momentum redistribution and growth increase with the depth and size of the network. ", + "bbox": [ + 233, + 267, + 766, + 460 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1 INTRODUCTION ", + "text_level": 1, + "bbox": [ + 176, + 487, + 336, + 502 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Current state-of-the-art neural networks need extensive computational resources to be trained and can have capacities of close to one billion connections between neurons (Vaswani et al., 2017; Devlin et al., 2018; Child et al., 2019). One solution that nature found to improve neural network scaling is to use sparsity: the more neurons a brain has, the fewer connections neurons make with each other (Herculano-Houzel et al., 2010). Similarly, for deep neural networks, it has been shown that sparse weight configurations exist which train faster and achieve the same errors as dense networks (Frankle and Carbin, 2019). However, currently, these sparse configurations are found by starting from a dense network, which is pruned and re-trained repeatedly – an expensive procedure. ", + "bbox": [ + 174, + 520, + 825, + 631 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "In this work, we demonstrate the possibility of training sparse networks that rival the performance of their dense counterparts with a single training run – no re-training is required. We start with random initializations and maintain sparse weights throughout training while also speeding up the overall training time. We achieve this by developing sparse momentum, an algorithm which uses the exponentially smoothed gradient of network weights (momentum) as a measure of persistent errors to identify which layers are most efficient at reducing the error and which missing connections between neurons would reduce the error the most. Sparse momentum follows a cycle of (1) pruning weights with small magnitude, (2) redistributing weights across layers according to the mean momentum magnitude of existing weights, and (3) growing new weights to fill in missing connections which have the highest momentum magnitude. ", + "bbox": [ + 174, + 637, + 825, + 776 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "We compare the performance of sparse momentum to compression algorithms and recent methods that maintain sparse weights throughout training. We demonstrate state-of-the-art sparse performance on MNIST, CIFAR-10, and ImageNet-1k. For CIFAR-10, we determine the percentage of weights needed to reach dense performance levels and find that AlexNet, VGG16, and Wide Residual Networks need between $3 5 . 5 0 \\%$ , $5 . 1 0 \\%$ , and $20 \\%$ weights to reach dense performance levels. We also estimate the overall speedups of training our sparse convolutional networks to dense performance levels on CIFAR-10 for optimal sparse convolution algorithms and naive dense convolution algorithms compared to dense baselines. For sparse convolution, we estimate speedups between $2 . 7 4 \\mathrm { x }$ and $5 . 6 1 \\mathrm { x }$ and for dense convolution speedups between $1 . 0 7 \\mathrm { x }$ and $1 . 3 6 \\mathrm { x }$ . In your analysis, ablations demonstrate that the momentum redistribution and growth components are increasingly important as networks get deeper and larger in size – both are critical for good ImageNet performance. ", + "bbox": [ + 174, + 784, + 825, + 909 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "", + "bbox": [ + 173, + 103, + 823, + 132 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2 RELATED WORK ", + "text_level": 1, + "bbox": [ + 176, + 151, + 344, + 167 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "From Dense to Sparse Neural Networks: Work that focuses on creating sparse from dense neural networks has an extensive history. Earlier work focused on pruning via second-order derivatives (LeCun et al., 1989; Karnin, 1990; Hassibi and Stork, 1992) and heuristics which ensure efficient training of networks after pruning (Chauvin, 1988; Mozer and Smolensky, 1988; Ishikawa, 1996). Recent work is often motivated by the memory and computational benefits of sparse models that enable the deployment of deep neural networks on mobile and low-energy devices. A very influential paradigm has been the iterative (1) train-dense, (2) prune, (3) re-train cycle introduced by Han et al. (2015). Extensions to this work include: Compressing recurrent neural networks and other models (Narang et al., 2017; Zhu and Gupta, 2018; Dai et al., 2018), continuous pruning and re-training (Guo et al., 2016), joint loss/pruning-cost optimization (Carreira-Perpinan and Idelbayev, 2018), ´ layer-by-layer pruning (Dong et al., 2017), fast-switching growth-pruning cycles (Dai et al., 2017), and soft weight-sharing (Ullrich et al., 2017). These approaches often involve re-training phases which increase the training time. However, since the main goal of this line of work is a compressed model for mobile devices, it is desirable but not an important main goal to reduce the run-time of these procedures. This is contrary to our motivation. Despite the difference in motivation, we include many of these dense-to-sparse compression methods in our comparisons. Other compression algorithms include $L _ { 0 }$ regularization (Louizos et al., 2018), and Bayesian methods (Louizos et al., 2017; Molchanov et al., 2017). For further details, see the survey of Gale et al. (2019). ", + "bbox": [ + 174, + 184, + 825, + 434 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Interpretation and Analysis of Sparse Neural Networks: Frankle and Carbin (2019) show that “winning lottery tickets” exist for deep neural networks – sparse initializations which reach similar predictive performance as dense networks and train just as fast. However, finding these winning lottery tickets is computationally expensive and involves multiple prune and re-train cycles starting from a dense network. Followup work concentrated on finding these configurations faster (Frankle et al., 2019; Zhou et al., 2019). In contrast, we reach dense performance levels with a sparse network from random initialization with a single training run while accelerating training. ", + "bbox": [ + 173, + 440, + 825, + 539 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Sparse Neural Networks Throughout Training: Methods that maintain sparse weights throughout training through a prune-redistribute-regrowth cycle are most closely related to our work. Bellec et al. (2018) introduce DEEP-R, which takes a Bayesian perspective and performs sampling for prune and regrowth decisions – sampling sparse network configurations from a posterior. While theoretically rigorous, this approach is computationally expensive and challenging to apply to large networks and datasets. Sparse evolutionary training (SET) (Mocanu et al., 2018) simplifies prune-regrowth cycles by using heuristics: (1) prune the smallest and most negative weights, (2) grow new weights in random locations. Unlike our work, where many convolutional channels are empty and can be excluded from computation, growing weights randomly fills most convolutional channels and makes it challenging to harness computational speedups during training without specialized sparse algorithms. SET also does not include the cross-layer redistribution of weights which we find to be critical for good performance, as shown in our ablation study. The most closely related work to ours is Dynamic Sparse Reparameterization (DSR) by Mostafa and Wang (2019), which includes the full prune-redistribute-regrowth cycle. However, DSR requires some specific layers to be dense. Our method works in a fully sparse setting and is thus more generally applicable. More distantly related is Single-shot Network Pruning (SNIP) (Lee et al., 2019), which aims to find the best sparse network from a single pruning decision. The goal of SNIP is simplicity, while our goal is maximizing predictive and run-time performance. In our experiments, we compare against all four methods: DEEP-R, SET, DSR, and SNIP. ", + "bbox": [ + 174, + 545, + 825, + 808 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "3 SPARSE LEARNING ", + "text_level": 1, + "bbox": [ + 176, + 829, + 364, + 844 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "We define sparse learning to be the training of deep neural networks which maintain sparsity throughout training while matching the predictive performance of dense neural networks. To achieve this, intuitively, we want to find the weights that reduce the error most effectively. This is challenging since most deep neural network can hold trillions of different combinations of sparse weights. Additionally, during training, as feature hierarchies are learned, efficient weights might change gradually from shallow to deep layers. How can we find good sparse configurations? In this work, we follow a divide-and-conquer strategy that is guided by computationally efficient heuristics. We divide sparse learning into the following sub-problems which can be tackled independently: (1) pruning weights, (2) redistribution of weights across layers, and (3) regrowing weights, as defined in more detail below. ", + "bbox": [ + 176, + 861, + 825, + 916 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "", + "bbox": [ + 173, + 103, + 826, + 174 + ], + "page_idx": 2 + }, + { + "type": "image", + "img_path": "images/975651e113bf641bb08fd14d8ca3b02bff573688fd39a93af9523d766b61ae3c.jpg", + "image_caption": [ + "Figure 1: Sparse Momentum is applied at the end of each epoch: (1) take the magnitude of the exponentially smoothed gradient (momentum) of each layer and normalize to 1; (2) for each layer, remove $p = 2 0 \\%$ of the weights with the smallest magnitude; (3) across layers, redistribute the removed weights by adding weights to each layer proportionate to the momentum of each layer; within a layer, add weights starting from those with the largest momentum magnitude. Decay $p$ . " + ], + "image_footnote": [], + "bbox": [ + 173, + 185, + 825, + 425 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "3.1 SPARSE MOMENTUM ", + "text_level": 1, + "bbox": [ + 176, + 534, + 361, + 547 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "We use the mean magnitude of momentum $\\mathbf { M } _ { i }$ of existing weights $\\mathbf { W } _ { i }$ in each layer $i$ to estimate how efficient the average weight in each layer is at reducing the overall error. Intuitively, we want to take weights from less efficient layers and redistribute them to weight-efficient layers. The sparse momentum algorithm is depicted in Figure 1. In this section, we first describe the intuition behind sparse momentum and then present a more detailed description of the algorithm. ", + "bbox": [ + 174, + 559, + 825, + 630 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "The gradient of the error with respect to a weight $\\textstyle \\frac { \\partial \\mathbf { E } } { \\partial \\mathbf { W } }$ yields the directions which reduce the error at the highest rate. However, if we use stochastic gradient descent, most weights of $\\frac { \\partial \\mathbf { E } } { \\partial \\mathbf { W } }$ oscillate between small/large and negative/positive gradients with each mini-batch (Qian, 1999) – a good change for one mini-batch might be a bad change for another. We can reduce oscillations if we take the average gradient over time, thereby finding weights which reduce the error consistently. However, we want to value recent gradients, which are closer to the local minimum, more highly than the distant past. This can be achieved by exponentially smoothing $\\frac { \\partial \\mathbf { E } } { \\partial \\mathbf { W } }$ – the momentum $\\mathbf { M } _ { i }$ : ", + "bbox": [ + 173, + 635, + 825, + 738 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/d923773238639546dedfb8e6c264a2b9b155e9f488a4eab15c8f1553719b7454.jpg", + "text": "$$\n\\mathbf { M } _ { i } ^ { t + 1 } = \\alpha \\mathbf { M } _ { i } ^ { t } + ( 1 - \\alpha ) \\frac { \\partial \\mathbf { E } } { \\partial \\mathbf { W } _ { i } } ^ { t } ,\n$$", + "text_format": "latex", + "bbox": [ + 388, + 744, + 607, + 779 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "where $\\alpha$ is a smoothing factor, $\\mathbf { M } _ { i }$ is the momentum for the weight $\\mathbf { W } _ { i }$ in layer $i$ ; $\\mathbf { M } _ { i }$ is initialized at $t = 0$ with 0. ", + "bbox": [ + 176, + 784, + 821, + 811 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Momentum is efficient at accelerating the optimization of deep neural networks by identifying weights which reduce the error consistently. Similarly, the aggregated momentum of weights in each layer should reflect how good each layer is at reducing the error consistently. Additionally, the momentum of zero-valued weights – equivalent to missing weights in sparse networks – can be used to estimate how quickly the error would change if these weights would be included in a sparse network. ", + "bbox": [ + 174, + 818, + 825, + 888 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "The details of the full training procedure of our algorithm are shown in Algorithm 1. See Algorithm 2 in the Appendix for a more detailed, source-code-like description of sparse momentum. ", + "bbox": [ + 173, + 895, + 823, + 924 + ], + "page_idx": 2 + }, + { + "type": "table", + "img_path": "images/84ea8419585d7953fa11f50dca69c2e13baed68f21aebe0b8e7a2e93df19b44f.jpg", + "table_caption": [ + "Algorithm 1: Sparse momentum algorithm. " + ], + "table_footnote": [], + "table_body": "
Data: Layer i to k with: Momentum Mi,Weight Wi, binary Maski prune rate pi, density d 1 fori←O to k do
Wi ← xavierInit(Wi)
2 3Maski ← createMaskForWeight(Wi,d)
4applyMask(Wi,Maski)
5 end
6 for epoch ← O to numEpochs do
7for j←O to numBatches do
8batch ← getBatch(j) E
9W = computeGradients(W, batch)
10UpdateMomentum( 器)
11UpdateWeights(M)
12fori←O to k do
13applyMask(Wi,Maski) end
14end
15
16totalMomentum ← getTotalMomentum(M)
17totalPruned ← getTotalPrunedWeights(W, p)
18fori←O to k do
19mi ← getMomentumContribution(Mi,Maski,totalMomentum)
20magnitudePruneWeight(Wi,Maski, Pi)
21regrowWeights(Wi,Maski,mi · totalPruned)
22Pi←decayPrunerate(pi)
23applyMask(Wi,Maski)
24end
25 end
", + "bbox": [ + 155, + 123, + 805, + 501 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Before training, we initialize the network with a certain sparsity $s$ : we initialize the network as usual and then remove a fraction of $s$ weights for each layer. We train the network normally and mask the weights after each gradient update to enforce sparsity. We apply sparse momentum after each epoch. We can break the sparse momentum into three major parts: (a) redistribution of weights, (b) pruning weights, (c) regrowing weights. In step (a), we we take the mean of the element-wise momentum momentum $m _ { i }$ agnitude of all layers . The resulting pr $i$ ortion is the momentum magnitude $\\scriptstyle \\sum _ { i = 0 } ^ { k } m _ { i }$ \nremoved weights multiplied by each layers momentum contribution: $\\mathrm { R e g r o w } _ { i } =$ Total Removed · $m _ { i }$ . In step (b), we prune a proportion of $p$ (prune rate) of the weights with the lowest magnitude for each layer. In step (c), we regrow weights by enabling the gradient flow of zero-valued (missing) weights which have the largest momentum magnitude. ", + "bbox": [ + 173, + 531, + 826, + 700 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Additionally, there are two edge-cases which we did not include in Algorithm 1 for clarity. (1) If we allocate more weights to be regrown than is possible for a specific layer, for example regrowing 100 weights for a layer of maximum 10 weights, we redistribute the excess number of weights equally among all other layers. (2) For some layers, our algorithm will converge in that the average weight in layer $i$ has much larger momentum magnitude than weights in other layers, but at the same time, this layer is dense and cannot grow further. We do not want to prune weights from such important layers. Thus, for these layers, we reduce the prune rate $p _ { i }$ proportional to the sparsity: $p _ { i } = \\mathrm { { m i n } } ( p , \\mathrm { { s p a r s i t y } } _ { i } )$ . ", + "bbox": [ + 174, + 707, + 825, + 806 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "After each epoch, we decay the prune rate in Algorithm 1 in the same way learning rates are decayed. We use a cosine decay schedule that anneals the prune rate to zero on the last epoch. See Appendix A.1 for an analysis on how decay schedule and starting prune rate affects training. ", + "bbox": [ + 176, + 813, + 825, + 854 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "4 EXPERIMENTAL SETUP ", + "text_level": 1, + "bbox": [ + 176, + 102, + 398, + 117 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "For comparison, we follow three different experimental settings, one from Lee et al. (2019) and two settings follow Mostafa and Wang (2019): For MNIST (LeCun, 1998), we use a batch size of 100, decay the learning rate by a factor of 0.1 every 25000 mini-batches. For CIFAR-10 (Krizhevsky and Hinton, 2009), we use standard data augmentations (horizontal flip, and random crop with reflective padding), a batch size of 128, and decay the learning rate every 30000 mini-batches. We train for 100 and 250 epochs on MNIST and CIFAR-10, use a learning rate of 0.1, stochastic gradient descent with Nesterov momentum of $\\alpha = 0 . 9$ , and we use a weight decay of 0.0005. We use a fixed $10 \\%$ of the training data as the validation set and train on the remaining $90 \\%$ . We evaluate the test set performance of our models on the last epoch. For all experiments on MNIST and CIFAR-10, we report the standard errors. Our sample size is generally between 10 and 12 experiments per method/architecture/sparsity level with different random seeds for each experiment. ", + "bbox": [ + 174, + 135, + 825, + 287 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "We use the modified network architectures of AlexNet, VGG16, and LeNet-5 as introduced by Lee et al. (2019). We consider two different variations of the experimental setup of Mostafa and Wang (2019) for ImageNet and CIFAR-10. The first follows their procedure closely, in that we run the networks in a partially dense setting where the first convolutional layer and downsampling convolutional layers are dense. Additionally, for CIFAR-10 the last fully connected layer is dense. In the second setting, we compare in a fully sparse setting – no layer is dense at the beginning of training. For the fully sparse setting we increase overall number of weights according to the extra parameters in the dense layers and distribute them equally among the network. The parameters in the dense layers make up $5 . 6 3 \\%$ weights of the ResNet-50 network. We refer to these two settings as the partially dense and fully sparse settings. ", + "bbox": [ + 174, + 294, + 825, + 433 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "On ImageNet (Deng et al., 2009), we use ResNet-50 (He et al., 2016) with a stride of 2 for the $3 \\mathrm { x } 3$ convolution in the bottleneck layers. We use a batch size of 256, input size of 224, momentum of $\\alpha = 0 . 9$ , and weight decay of $1 \\dot { 0 } ^ { - 4 }$ . We train for 100 epochs and report validation set performance after the last epoch. We report results for the fully sparse and the partially dense setting. ", + "bbox": [ + 174, + 439, + 825, + 496 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "For all experiments, we keep biases and batch normalization weights dense. We tuned the prune rate $p$ and momentum rate $\\alpha$ searching the parameter space $\\{ 0 . 2 , 0 . 3 , \\bar { 0 } . 4 , 0 . 5 , 0 . 6 , 0 . 7 \\}$ and $\\{ 0 . 5 , 0 . 6 , 0 . 7$ $0 . 8 , 0 . 9 , 0 . 9 5 , 0 . 9 9 \\}$ on MNIST and CIFAR-10 and found that $p = 0 . 2$ and $\\alpha = 0 . 9$ work well for most architectures. We use this prune and momentum rate throughout all experiments. ", + "bbox": [ + 174, + 503, + 825, + 559 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "ImageNet experiments were run on $4 \\mathbf { x }$ RTX 2080 Ti and all other experiments on individual GPUs. ", + "bbox": [ + 173, + 565, + 823, + 580 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Our software builds on PyTorch (Paszke et al., 2017) and is a wrapper for PyTorch neural networks with a modular architecture for growth, redistribution, and pruning algorithms. Currently, no GPUaccelerated libraries that utilize sparse tensors exist, and as such we use masked weights to simulate sparse neural networks. Using our software, any PyTorch neural network can be adapted to be a sparse momentum network with less than 10 lines of code. We will open-source our software along with trained models and individual experimental results.1 ", + "bbox": [ + 174, + 587, + 825, + 670 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "5 RESULTS ", + "text_level": 1, + "bbox": [ + 174, + 690, + 281, + 707 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Results in Figure 2 and Table 1 show a comparison with model compression methods. On MNIST, sparse momentum is the only method that provides consistent strong performance across both LeNet 300-100 and LeNet-5 Caffe models. Soft-weight sharing (Ullrich et al., 2017) and Layer-wise Brain Damage (Dong et al., 2017) are competitive with sparse momentum for one model, but underperforms for the other model. For $1 \\%$ of weights, variational dropout is more effective – but this method also uses dropout for further regularization while we only use weight decay. We can see that sparse momentum achieves equal performance to the LeNet-5 Caffe dense baseline with $8 \\%$ weights. ", + "bbox": [ + 174, + 723, + 825, + 820 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "On CIFAR-10 in Table 1, we can see that sparse momentum outperforms Single-shot Network Pruning (SNIP) for all models and can achieve the same performance level as a dense model for VGG16-D with just $5 \\%$ of weights. ", + "bbox": [ + 176, + 828, + 823, + 869 + ], + "page_idx": 4 + }, + { + "type": "image", + "img_path": "images/9e005205b0e6994a85124aca20160b59043af33e15e75edf770b4775ce008edb.jpg", + "image_caption": [ + "Figure 2: Comparisons against compression methods on MNIST with $9 5 \\%$ confidence intervals. " + ], + "image_footnote": [], + "bbox": [ + 173, + 99, + 813, + 290 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Figure 3 and Table 2 show comparisons of sparse learning methods on MNIST and CIFAR that follows the experimental procedure of Mostafa and Wang (2019) where some selected layers are dense. For LeNet 300-100 on MNIST, we can see that sparse momentum outperforms all other methods. For CIFAR-10, sparse momentum is better than dynamic sparse in 4 out of 5 cases. However, in general, the confidence intervals for most methods overlap – this particular setup for CIFAR-10 with specifically selected dense layers seems to be too easy to determine difference in performance between methods and we do not recommend this setup for future work. Table 2 shows that sparse momentum outperforms all other methods on ImageNet (ILSVRC2012) for the Top-1 accuracy measure. Dynamic sparse is better for the Top-5 accuracy with $20 \\%$ weights. In the fully sparse setting, sparse momentum remains competitive and seems to find a weight distribution which works equally well for the $10 \\%$ weights case. For $20 \\%$ weights, the performance decreases slightly. ", + "bbox": [ + 173, + 337, + 825, + 491 + ], + "page_idx": 5 + }, + { + "type": "image", + "img_path": "images/9dd88284b32d232481d4be4d6a060b725bbcbf77df1fa6d28d3b3fe0b839a50c.jpg", + "image_caption": [ + "Figure 3: Test set accuracy with $9 5 \\%$ confidence intervals on MNIST and CIFAR at varying sparsity levels for LeNet 300-100 and WRN 28-2. " + ], + "image_footnote": [], + "bbox": [ + 173, + 502, + 815, + 691 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "5.1 SPEEDUPS AND WEIGHTS NEEDED FOR DENSE PERFORMANCE LEVELS ", + "text_level": 1, + "bbox": [ + 174, + 751, + 712, + 766 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "We analyzed how many weights are needed to achieve dense performance for our networks on CIFAR-10 and how much faster would we able to train such a sparse network compared to a dense one. We do this analysis by increasing the number of weights by $5 \\%$ until the sparse network trained with sparse momentum reaches a performance level that overlaps with a $9 5 \\%$ confidence interval of the dense performance. We then measure the speedup of the model. For each network-density combination we perform ten training runs with different random seeds to calculate the mean test error and its standard error. ", + "bbox": [ + 173, + 777, + 825, + 875 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "To estimated the speedups that could be obtained using sparse momentum for these dense networks we follow two approaches: Theoretical speedups for sparse convolution algorithms which are proportional to reductions in FLOPS and practical speedups using dense convolutional algorithms which are proportional to empty convolutional channels. For our sparse convolution estimates, we calculate the FLOPS saved for each convolution operation throughout training as well as the runtime for each convolution. To receive the maximum speedups for sparse convolution, we then scale the runtime for each convolution operation by the FLOPS saved. While a fast sparse convolution algorithm for coarse block structures exist for GPUs (Gray et al., 2017), optimal sparse convolution algorithms for fine-grained patterns do not and need to be developed to enable these speedups. ", + "bbox": [ + 176, + 882, + 823, + 924 + ], + "page_idx": 5 + }, + { + "type": "table", + "img_path": "images/b7d4320ae9a6727fc4baf1e048755e25eb23692cb1889a49a1d9cc5ed4c96675.jpg", + "table_caption": [ + "Table 1: CIFAR-10 test set error ( $\\pm$ standard error) for dense baselines, Sparse Momentum and SNIP. " + ], + "table_footnote": [ + "\\* $9 5 \\%$ confidence intervals overlap with dense model. Table 2: Results for ResNet-50 on ImageNet. " + ], + "table_body": "
Sparse Error (%)Weights (%)
Dense Error (%)SNIPMomentum
Model AlexNet-s12.95±0.05614.9914.27±0.12310
AlexNet-b12.85±0.06814.5013.56±0.09410
VGG16-C6.49±0.0387.277.00±0.0545
VGG16-D6.59±0.0507.096.69±0.049*5
VGG16-like6.50±0.0548.007.00±0.0773
WRN-16-84.57±0.0226.635.62±0.0565
WRN-16-104.45±0.0406.435.24±0.0525
WRN-22-84.26±0.0325.854.93±0.0565
", + "bbox": [ + 205, + 127, + 789, + 299 + ], + "page_idx": 6 + }, + { + "type": "table", + "img_path": "images/c521b62d081c9425ebf4cc3eeceddb8144a3f5dfc758ff229acb9e4e71aac298.jpg", + "table_caption": [], + "table_footnote": [], + "table_body": "
Accuracy (%)
ModelTop-1Top-5Top-1Top-5
Dense ResNet-50 (He et al., 2016)74.992.474.992.4
Fully Sparse10%weights20%Weights
DeepR (Bellec et al., 2018) SET (Mocanu et al., 2018)X70.290.071.790.6
X70.490.172.691.2
Dynamic Sparse (Mostafa and Wang,2019) X71.690.573.392.4
Sparse momentum72.391.074.291.9
×72.391.073.891.8
", + "bbox": [ + 176, + 340, + 818, + 505 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "", + "bbox": [ + 173, + 516, + 825, + 601 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "The second method measures practical speedups that can be obtained with naive, dense convolution algorithms which are available today. Dense convolution is unsuitable for the training of sparse networks but we include this measurement to highlight the algorithmic gap that exists to efficiently train sparse networks. For dense convolution algorithms, we estimate speedups as follows: If a convolutional channel consists entirely of zero-valued weights we can remove these channels from the computation without changing the outputs and obtain speedups. To receive the speedups for dense convolution we scale each convolution operation by the proportion of empty channels. Using these measures, we estimated the speedups for our models on CIFAR-10. The resulting speedups and dense performance levels can be seen in Table 3. ", + "bbox": [ + 174, + 607, + 825, + 732 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "We see that VGG16 networks can achieve dense performance with relatively few weights while AlexNet requires the most weights. Wide Residual Networks need an intermediate level of weights. Despite the large number of weights for AlexNet, sparse momentum still yields large speedups around $3 . 0 \\mathbf { x }$ for sparse convolution. Sparse convolution speedups are particularly pronounced for Wide Residual Networks (WRN) with speedups as high as $5 . 6 1 \\mathrm { x }$ . Dense convolution speedups are much lower and are mostly dependent on width, with wider networks receiving larger speedups. These results highlight the importance to develop optimized algorithms for sparse convolution. ", + "bbox": [ + 174, + 739, + 825, + 837 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Beyond speedups, we also measured the overhead of our sparse momentum procedure to be equivalent of a slowdown to $0 . 9 7 3 \\mathrm { x } \\pm 0 . 0 2 9 \\mathrm { x }$ compared to a dense baseline. ", + "bbox": [ + 174, + 843, + 823, + 872 + ], + "page_idx": 6 + }, + { + "type": "table", + "img_path": "images/a16d5885c486f8ca528873edd7b590b9fa2c252a603b911bb72dfb9e5a45722f.jpg", + "table_caption": [ + "Table 3: Dense performance equivalents and speedups for sparse networks on CIFAR-10. " + ], + "table_footnote": [], + "table_body": "
ModelWeights (%)Error(%) Speedups
Dense Convolution (Empty Channels)Sparse Convolution (FLOPS Reduction)
AlexNet-s5013.15±0.0651.31x3.01x
AlexNet-b3513.00±0.0651.21x2.74x
VGG16-C106.64±0.0401.32x3.85x
VGG16-D56.49±0.0451.36x3.51x
VGG16-like56.46±0.0361.32x3.48x
WRN 16-8304.72±0.0511.07x4.59x
WRN 16-10254.56±0.0371.07x4.41x
WRN 22-8204.40±0.0371.21x5.61x
", + "bbox": [ + 196, + 127, + 802, + 315 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "6 ANALYSIS ", + "text_level": 1, + "bbox": [ + 173, + 337, + 292, + 352 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "6.1 ABLATION ANALYSIS ", + "text_level": 1, + "bbox": [ + 174, + 369, + 364, + 383 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Our method differs from previous methods like SET and Dynamic Sparse Reparameterization in two ways: (1) redistribution of weights and (2) growth of weights. To understand the performance contribution of these components, we perform ablations on CIFAR-10 for VGG16-D with $5 \\%$ weights, MNIST for LeNet 300-100 and LeNet-5 Caffe with $5 \\%$ weights, and ImageNet for ResNet-50 with $10 \\%$ weights in the fully sparse setting. The results can be seen in Table 4. ", + "bbox": [ + 174, + 395, + 825, + 465 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Redistribution: Redistributing weights according to the momentum magnitude becomes increasingly important the larger a network is as can be seen from the steady increases in error from the small LeNet 300-100 to the large ResNet-50 when no momentum redistribution is used. Increased test error is particularly pronounced for ImageNet where the Top-1 error increases by $3 . 4 2 \\%$ to $9 . 7 1 \\%$ if no redistribution is used. ", + "bbox": [ + 173, + 472, + 825, + 541 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Momentum growth: Momentum growth improves performance over random growth by a large margin for ResNet-50 on ImageNet, but for smaller networks the combination of redistribution and random growth seems to be sufficient to find good weights. Random growth without redistribution, however, cannot find good weights. These results suggest that with increasing network size a random search strategy becomes inefficient and smarter growth algorithms are required for good performance. ", + "bbox": [ + 174, + 549, + 825, + 618 + ], + "page_idx": 7 + }, + { + "type": "table", + "img_path": "images/a7629ab5814884db42b5b021d5c2eb89b18d3b792f6a893b6bf56a4216ed1d94.jpg", + "table_caption": [ + "Table 4: Ablation analysis for different growth and redistribution algorithm combinations for LeNet 300-100 and LeNet-5 Caffe on MNIST, VGG16-D on CIFAR-10, and ResNet-50 on ImageNet. " + ], + "table_footnote": [], + "table_body": "
RedistributionGrowthTest error in %
LeNet 300-100LeNet-5 CaffeVGG16-DResNet-50
momentummomentum1.53±0.0200.69±0.0216.69±0.04927.07
momentumrandom+0.07±0.022-0.05±0.011-0.19±0.040+7.29
None momentum+0.01±0.018+0.32±0.071+1.54±0.101+3.42
Nonerandom+0.11±0.020+0.13±0.013+1.49±0.147+9.71
", + "bbox": [ + 176, + 670, + 821, + 784 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "7 CONCLUSION AND FUTURE WORK ", + "text_level": 1, + "bbox": [ + 174, + 808, + 495, + 824 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "We presented our sparse learning algorithm, sparse momentum, which uses the mean magnitude of momentum to grow and redistribute weights. We showed that sparse momentum outperforms other sparse algorithms on MNIST, CIFAR-10, and ImageNet. Additionally, sparse momentum can rival dense neural network performance while accelerating training. Our analysis of speedups highlights the need for research into specialized sparse convolution and sparse matrix multiplication algorithms to enable the benefits of sparse networks. ", + "bbox": [ + 173, + 839, + 825, + 924 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "REFERENCES ", + "text_level": 1, + "bbox": [ + 176, + 102, + 285, + 118 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Bellec, G., Kappel, D., Maass, W., and Legenstein, R. A. (2018). Deep rewiring: Training very sparse deep networks. CoRR, abs/1711.05136. ", + "bbox": [ + 171, + 133, + 823, + 162 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Carreira-Perpinan, M. A. and Idelbayev, Y. (2018). learning-compression algorithms for neural net ´ pruning. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, pages 8532–8541. ", + "bbox": [ + 173, + 171, + 823, + 214 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Chauvin, Y. (1988). A back-propagation algorithm with optimal use of hidden units. In NIPS. ", + "bbox": [ + 173, + 223, + 789, + 239 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Child, R., Gray, S., Radford, A., and Sutskever, I. (2019). Generating long sequences with sparse transformers. CoRR, abs/1904.10509. ", + "bbox": [ + 174, + 247, + 823, + 276 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Dai, X., Yin, H., and Jha, N. K. (2017). Nest: A neural network synthesis tool based on a grow-andprune paradigm. CoRR, abs/1711.02017. ", + "bbox": [ + 173, + 285, + 825, + 314 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Dai, X., Yin, H., and Jha, N. K. (2018). Grow and prune compact, fast, and accurate lstms. CoRR, abs/1805.11797. ", + "bbox": [ + 173, + 321, + 825, + 352 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Deng, J., Dong, W., Socher, R., Li, L.-J., Li, K., and Fei-Fei, L. (2009). Imagenet: A large-scale hierarchical image database. In 2009 IEEE conference on computer vision and pattern recognition, pages 248–255. Ieee. ", + "bbox": [ + 171, + 359, + 825, + 404 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Devlin, J., Chang, M.-W., Lee, K., and Toutanova, K. (2018). Bert: Pre-training of deep bidirectional transformers for language understanding. CoRR, abs/1810.04805. ", + "bbox": [ + 174, + 411, + 825, + 441 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Dong, X., Chen, S., and Pan, S. J. (2017). Learning to prune deep neural networks via layer-wise optimal brain surgeon. In NIPS. ", + "bbox": [ + 174, + 449, + 823, + 479 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Frankle, J. and Carbin, M. (2019). The lottery ticket hypothesis: Finding sparse, trainable neural networks. In ICLR 2019. ", + "bbox": [ + 173, + 487, + 825, + 517 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Frankle, J., Dziugaite, G. K., Roy, D. M., and Carbin, M. (2019). The lottery ticket hypothesis at scale. CoRR, abs/1903.01611. ", + "bbox": [ + 173, + 523, + 825, + 554 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Gale, T., Elsen, E., and Hooker, S. (2019). The state of sparsity in deep neural networks. CoRR, abs/1902.09574. ", + "bbox": [ + 173, + 563, + 825, + 592 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Gray, S., Radford, A., and Kingma, D. P. (2017). Gpu kernels for block-sparse weights. ", + "bbox": [ + 171, + 599, + 748, + 617 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Guo, Y., Yao, A., and Chen, Y. (2016). Dynamic network surgery for efficient dnns. In Advances In Neural Information Processing Systems, pages 1379–1387. ", + "bbox": [ + 176, + 625, + 826, + 655 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Han, S., Pool, J., Tran, J., and Dally, W. (2015). Learning both weights and connections for efficient neural network. In Advances in neural information processing systems, pages 1135–1143. ", + "bbox": [ + 173, + 661, + 823, + 693 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Hassibi, B. and Stork, D. G. (1992). Second order derivatives for network pruning: Optimal brain surgeon. In NIPS. ", + "bbox": [ + 173, + 699, + 823, + 729 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "He, K., Zhang, X., Ren, S., and Sun, J. (2016). Deep residual learning for image recognition. 2016 IEEE Conference on Computer Vision and Pattern Recognition (CVPR), pages 770–778. ", + "bbox": [ + 173, + 737, + 825, + 767 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Herculano-Houzel, S., Mota, B., Wong, P., and Kaas, J. H. (2010). Connectivity-driven white matter scaling and folding in primate cerebral cortex. Proceedings of the National Academy of Sciences of the United States of America, 107 44:19008–13. ", + "bbox": [ + 174, + 775, + 825, + 819 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Ishikawa, M. (1996). Structural learning with forgetting. Neural Networks, 9:509–521. ", + "bbox": [ + 173, + 827, + 743, + 843 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Karnin, E. D. (1990). A simple procedure for pruning back-propagation trained neural networks. IEEE transactions on neural networks, 1 2:239–42. ", + "bbox": [ + 173, + 851, + 825, + 881 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Krizhevsky, A. and Hinton, G. (2009). Learning multiple layers of features from tiny images. Technical report, Citeseer. ", + "bbox": [ + 171, + 888, + 825, + 919 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "LeCun, Y. (1998). Gradient-based learning applied to document recognition. \nLeCun, Y., Denker, J. S., and Solla, S. A. (1989). Optimal brain damage. In NIPS. \nLee, N., Ajanthan, T., and Torr, P. H. S. (2019). Snip: Single-shot network pruning based on connection sensitivity. In ICLR 2019. \nLouizos, C., Ullrich, K., and Welling, M. (2017). Bayesian compression for deep learning. In Advances in Neural Information Processing Systems, pages 3288–3298. \nLouizos, C., Welling, M., and Kingma, D. P. (2018). Learning sparse neural networks through $l _ { 0 }$ regularization. CoRR, abs/1712.01312. \nMocanu, D. C., Mocanu, E., Stone, P., Nguyen, P. H., Gibescu, M., and Liotta, A. (2018). Scalable training of artificial neural networks with adaptive sparse connectivity inspired by network science. Nature communications, 9(1):2383. \nMolchanov, D., Ashukha, A., and Vetrov, D. P. (2017). Variational dropout sparsifies deep neural networks. In International Conference on MachineLearning (ICML). \nMostafa, H. and Wang, X. (2019). Parameter efficient training of deep convolutional neural networks by dynamic sparse reparameterization. In International Conference on Machine Learning (ICML). \nMozer, M. C. and Smolensky, P. (1988). Skeletonization: A technique for trimming the fat from a network via relevance assessment. In NIPS. \nNarang, S., Diamos, G. F., Sengupta, S., and Elsen, E. (2017). Exploring sparsity in recurrent neural networks. CoRR, abs/1704.05119. \nPaszke, A., Gross, S., Chintala, S., Chanan, G., Yang, E., DeVito, Z., Lin, Z., Desmaison, A., Antiga, L., and Lerer, A. (2017). Automatic differentiation in pytorch. \nQian, N. (1999). On the momentum term in gradient descent learning algorithms. Neural networks : the official journal of the International Neural Network Society, 12 1:145–151. \nSimonyan, K., Vedaldi, A., and Zisserman, A. (2013). Deep inside convolutional networks: Visualising image classification models and saliency maps. CoRR, abs/1312.6034. \nSpringenberg, J. T., Dosovitskiy, A., Brox, T., and Riedmiller, M. A. (2014). Striving for simplicity: The all convolutional net. CoRR, abs/1412.6806. \nUllrich, K., Meeds, E., and Welling, M. (2017). Soft weight-sharing for neural network compression. CoRR, abs/1702.04008. \nVaswani, A., Shazeer, N., Parmar, N., Uszkoreit, J., Jones, L., Gomez, A. N., Kaiser, Ł., and Polosukhin, I. (2017). Attention is all you need. In Advances in neural information processing systems, pages 5998–6008. \nZeiler, M. D. and Fergus, R. (2014). Visualizing and understanding convolutional networks. In ECCV. \nZhou, H., Lan, J., Liu, R., and Yosinski, J. (2019). Deconstructing lottery tickets: Zeros, signs, and the supermask. arXiv preprint arXiv:1905.01067. \nZhu, M. and Gupta, S. (2018). To prune, or not to prune: Exploring the efficacy of pruning for model compression. CoRR, abs/1710.01878. ", + "bbox": [ + 171, + 92, + 830, + 818 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "A APPENDIX ", + "text_level": 1, + "bbox": [ + 176, + 102, + 297, + 117 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "A.1 SENSITIVITY ANALYSIS ", + "text_level": 1, + "bbox": [ + 176, + 136, + 383, + 150 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Sparse momentum depends on two hyperparameters: Prune rate and momentum. In this section, we study the sensitivity of the accuracy of our models as we vary the prune rate and momentum. Since momentum parameter has an additional effect on the optimization procedure, we run control experiments for fully dense networks thus disentangling the difference in accuracy accounted by our sparse momentum procedure. ", + "bbox": [ + 174, + 161, + 825, + 231 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "We run experiments for VGG-D and AlexNet-s with $5 \\%$ and $10 \\%$ weights on CIFAR-10. Results can be seen in Figure 4. We see that sparse momentum is highly robust to the choice of prune rate with results barely deviating when the prune rate is in the interval between 0.2 to 0.4. However, we can see a gradual linear trend that indicates that smaller prune rates work slightly better than larger ones. Cosine and linear prune rate annealing schedules do equally well. For momentum, confidence intervals for values between 0.7 and 0.9 overlap indicating that our procedure is robust to the choice of the momentum parameter. Sparse momentum is more sensitive to low momentum values $( \\le 0 . 6 )$ while it is less sensitive for large momentum values (0.95) compared to a dense control. Additionally, we test the null hypothesis that sparse momentum is equally sensitive to deviations from a momentum parameter value of 0.9 as a dense control. The normality assumption was violated and data transformations did not help. Thus we use the non-parametric Wilcoxon Signed-rank Test. We find no evidence that sparse momentum is more sensitive to the momentum parameter than a dense control, $W ( 1 6 ) = 2 2 . 0 , p = 0 . 5 8$ . Overall, we conclude that sparse momentum is highly robust to deviations of the pruning schedule and the momentum and prune rate parameters. ", + "bbox": [ + 173, + 238, + 826, + 433 + ], + "page_idx": 10 + }, + { + "type": "image", + "img_path": "images/7117fc64f9af6e4603deca5ce68e941dd833601ab85ffdf8166fe5180fae3c84.jpg", + "image_caption": [ + "Figure 4: Parameter sensitivity analysis for prune rate and momentum with $9 5 \\%$ confidence intervals. " + ], + "image_footnote": [], + "bbox": [ + 171, + 445, + 812, + 633 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "B ADDITIONAL ANALYSIS ", + "bbox": [ + 176, + 693, + 408, + 708 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "B.1 DENSE VS SPARSE FEATURES ", + "text_level": 1, + "bbox": [ + 176, + 726, + 421, + 741 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Are there differences between feature representations learned by dense and sparse networks? The answer to this question can help with the design of sparse learning algorithms and sparse architectures. In this section, we look at the features of dense and sparse networks and how specialized these features are for certain classes. We test difference between sparse and dense network features statistically. ", + "bbox": [ + 174, + 752, + 825, + 808 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "For feature visualization, it is common to backpropagate activity to the inputs to be able to visualize what these activities represent (Simonyan et al., 2013; Zeiler and Fergus, 2014; Springenberg et al., 2014). However, in our case, we are more interested in the overall distribution of features for each layer within our network, and as such we want to look at the magnitude of the activity in a channel since – unlike feature visualization – we are not just interested in feature detectors but also discriminators. For example, a face detector would induce positive activity for a ‘person’ class but might produce negative activity for a ‘mushroom’ class. Both kinds of activity are useful. ", + "bbox": [ + 174, + 814, + 825, + 912 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "With this reasoning, we develop the following convolutional channel-activation analysis: (1) pass the entire training set through the network and aggregate the magnitude of the activation in each convolutional channel separately for each class; (2) normalize across classes to receive for each channel the proportion of activation which is due to each class; (3) look at the maximum proportion of each channel as a measure of class specialization: a maximum proportion of $1 / N _ { c }$ where $N _ { c }$ is the number of classes indicates that the channel is equally active for all classes in the training set. The higher the proportion deviates from this value, the more is a channel specialized for a particular class. ", + "bbox": [ + 173, + 103, + 825, + 202 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "We obtain results for AlexNet-s, VGG16-D, and WRN 28-2 on CIFAR-10 and use as many weights as needed to reach dense performance levels. We then test the null hypothesis, that there are no differences in class specialization between features from sparse networks and dense networks. Equal variance assumptions was violated for VGG-D and normality was violated for WRN-28-2, while all assumptions hold for AlexNet-s. For consistency reasons we perform non-parametric Kruskal-Wallis one-way analysis of variance tests for all networks. For AlexNet-s, we find some evidence that features of sparse networks have lower class specialization compared to dense networks $\\chi ^ { 2 } ( 5 ) = 4 . 4 3 , p = 0 . 0 3 \\bar { 5 }$ , for VGG-D and WRN-28-2 we find strong evidence that features of sparse networks have lower class specialization than dense networks $\\bar { \\chi } ^ { 2 } ( 1 3 ) = 2 8 . 1 , p < 0 . 0 0 1$ , $\\bar { \\chi ^ { 2 } } ( 1 2 ) = 3 6 . 2 , p < 0 . 0 0 1$ . Thus we reject the null hypothesis. These results increase our confidence that sparse networks learn features which have lower class specialization than dense networks. ", + "bbox": [ + 174, + 207, + 825, + 361 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Plots of the distributions of sparse vs. dense features for AlexNet-s, VGG16-D, and WRN 28-2 on CIFAR-10 in Figure 5. These plots were selected to highlight the difference in distribution in the first layers and last layers of each network. We see the convolutional channels in sparse networks have lower class-specialization indicating they learn features which are useful for a broader range of classes compared to dense networks. This trend intensifies with depth. ", + "bbox": [ + 174, + 367, + 825, + 438 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Overall, we conclude that sparse networks might be able to rival dense networks by learning more general features that have lower class specialization. ", + "bbox": [ + 174, + 444, + 821, + 473 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "C FURTHER RESULTS ", + "text_level": 1, + "bbox": [ + 176, + 492, + 369, + 508 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "C.1 TUNED RESNET-50 ON IMAGENET ", + "text_level": 1, + "bbox": [ + 176, + 526, + 459, + 540 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "We also tried a better version of the ResNet-50 in the fully sparse setting for which we use a cosine learning rate schedule, label smoothing of 0.9, and we warmup the learning rate. The results can be seen in Table 5. ", + "bbox": [ + 174, + 551, + 825, + 593 + ], + "page_idx": 11 + }, + { + "type": "table", + "img_path": "images/6b6c258922727fe066ff059fa1a51bac2c91b97e02d9d15f0955ed9165ff0d3a.jpg", + "table_caption": [ + "Table 5: Fully sparse ImageNet results. " + ], + "table_footnote": [], + "table_body": "
ModelAccuracy (%)
Weights (%) Top-1Top-5
Tuned ResNet-5010077.0 93.5
Sparse momentum1072.9 91.5
2074.9 92.5
3075.9 92.9
", + "bbox": [ + 315, + 630, + 678, + 741 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "D DETAILED SPARSE MOMENTUM ALGORITHM ", + "text_level": 1, + "bbox": [ + 173, + 757, + 588, + 773 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "For a detailed NumPy-style algorithmic description of sparse momentum see Algorithm 2. ", + "bbox": [ + 169, + 789, + 764, + 804 + ], + "page_idx": 11 + }, + { + "type": "image", + "img_path": "images/3f901c2978fb2659c764fa4bb466027b202c3cf82103c11c60169e22f18339dd.jpg", + "image_caption": [ + "Figure 5: Dense vs sparse histograms of class-specialization for convolutional channels on CIFAR-10. A class-specialization of 0.5 indicates that $50 \\%$ of the overall activity comes from a single class. " + ], + "image_footnote": [], + "bbox": [ + 191, + 237, + 799, + 747 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Algorithm 2: Sparse momentum algorithm in NumPy notation. Data: Layer i to k with: Momentum $\\mathbf { M } _ { i }$ , Weight $\\overline { { \\mathbf { W } _ { \\mathbf { i } } } }$ , binary $\\mathbf { M a s k } _ { i }$ ; prune rate $p$ 1 TotalMomentum $\\gets 0$ , TotalNonzero $ 0$ $/ \\star$ (a) Calculate mean momentum contributions of all layers. \\*/ 2 for $i \\gets 0$ to $k$ do 3 MeanMomentum $_ i $ mean(a $\\mathbf { b s } ( \\mathbf { M } _ { i } \\left[ \\mathbf { W } _ { i } \\neq 0 \\right] ) _ { . }$ ) 4 TotalMomentum $\\gets$ TotalMomentum $^ +$ MeanMomentumi 5 $\\mathrm { N o n } Z \\mathrm { e r o } _ { i } = \\mathrm { s u m } ( \\mathbf { W } _ { i } \\neq 0 )$ 6 TotalNonzero TotalNonzero + NonZeroi 7 end 8 for $i \\gets 0$ to $k$ do 9 LayerContribution $_ { \\cdot i } \\gets$ MeanMomentumi/TotalMomentum 10 $p _ { i } \\gets$ getPruneRate $( \\mathbf { W } _ { i } , p )$ 11 weights by finding the NumRemoveth smallest weight. 12 end 13 for $i \\gets 0$ to $k$ do 14 NumRemove $\\mathbf { \\Sigma } _ { i } \\mathrm { N o n Z e r o } _ { i } \\cdot p$ 15 PruneThreshold $ \\mathrm { s o r t } ( \\mathrm { a b s } ( \\mathbf W _ { i } [ \\mathbf W _ { i } \\neq 0 ] )$ ) [NumRemovei] 16 $\\mathbf { M a s k } _ { i }$ $[ \\mathbf { W } _ { i } <$ PruneThreshold] $ 0$ // Stop gradient flow. 17 $\\mathbf { W } _ { i }$ $[ \\mathbf { W } _ { i } <$ PruneThreshold] $\\gets 0$ 18 end /\\* (c) Enable gradient flow of weights with largest momentum magnitude. \\*/ 19 for $i \\gets 0$ to $k$ do 20 RegrowthThresh $\\mathrm { \\mathbf { \\tau } _ { \\mathrm { 1 } } } \\mathbf { d } _ { i } \\gets \\mathrm { \\mathbf { \\mathrm { s o r t } } } ( \\mathbf { \\mathrm { a b s } } ( \\mathbf { M } _ { i } \\left[ \\mathbf { W } _ { i } = = 0 \\right] )$ ) [NumRegrowthi] 21 $\\mathbf { Z } _ { i } = \\mathbf { M } _ { i }$ · $\\mathbf { W } _ { i } = = 0$ ) // Only consider the momentum of missing weights. 22 $\\mathbf { M } \\mathbf { a s } \\mathbf { k } _ { i } \\gets \\mathbf { M } \\mathbf { a s } \\mathbf { k } _ { i }$ | ( $\\mathbf { Z } _ { i } >$ RegrowthThreshold ) // | is the boolean OR operator 23 end 24 $p $ decayPruneRate(p) 25 applyMask() ", + "bbox": [ + 151, + 286, + 831, + 739 + ], + "page_idx": 13 + } +] \ No newline at end of file diff --git a/parse/train/HJgVisRqtX/HJgVisRqtX_content_list.json b/parse/train/HJgVisRqtX/HJgVisRqtX_content_list.json new file mode 100644 index 0000000000000000000000000000000000000000..91cca32cf2ba51af2f024839b2a475c15ee56f95 --- /dev/null +++ b/parse/train/HJgVisRqtX/HJgVisRqtX_content_list.json @@ -0,0 +1,1772 @@ +[ + { + "type": "text", + "text": "SEGEN: SAMPLE-ENSEMBLE GENETIC EVOLUTIONARY NETWORK MODEL ", + "text_level": 1, + "bbox": [ + 117, + 53, + 911, + 101 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Anonymous authors Paper under double-blind review ", + "bbox": [ + 124, + 123, + 341, + 151 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "ABSTRACT ", + "text_level": 1, + "bbox": [ + 468, + 188, + 558, + 203 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Deep learning, a rebranding of deep neural network research works, has achieved a remarkable success in recent years. With multiple hidden layers, deep learning models aim at computing the hierarchical feature representations of the observational data. Meanwhile, due to its severe disadvantages in data consumption, computational resources, parameter tuning costs and the lack of result explainability, deep learning has also suffered from lots of criticism. In this paper, we will introduce a new representation learning model, namely “Sample-Ensemble Genetic Evolutionary Network” (SEGEN), which can serve as an alternative approach to deep learning models. Instead of building one single deep model, based on a set of sampled sub-instances, SEGEN adopts a genetic-evolutionary learning strategy to build a group of unit models generations by generations. The unit models incorporated in SEGEN can be either traditional machine learning models or the recent deep learning models with a much “narrower” and “shallower” architecture. The learning results of each instance at the final generation will be effectively combined from each unit model via diffusive propagation and ensemble learning strategies. From the computational perspective, SEGEN requires far less data, fewer computational resources and parameter tuning efforts, but has sound theoretic interpretability of the learning process and results. Extensive experiments have been done on several different real-world benchmark datasets, and the experimental results obtained by SEGEN have demonstrated its advantages over the state-of-the-art representation learning models. ", + "bbox": [ + 173, + 219, + 854, + 443 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1 INTRODUCTION ", + "text_level": 1, + "bbox": [ + 117, + 463, + 277, + 479 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "In recent years, deep learning, a rebranding of deep neural network research works, has achieved a remarkable success. The essence of deep learning is to compute the hierarchical feature representations of the observational data Goodfellow et al. (2016); LeCun et al. (2015). With multiple hidden layers, the deep learning models have the capacity to capture very good projections from the input data space to the objective output space, whose outstanding performance has been widely illustrated in various applications, including speech and audio processing Deng et al. (2013); Hinton et al. (2012), language modeling and processing Arisoy et al. (2012); Mnih & Hinton (2009), information retrieval Hill (2012); Salakhutdinov & Hinton (2009), objective recognition and computer vision LeCun et al. (2015), as well as multimodal and multi-task learning Weston et al. (2010; 2011). By this context so far, various kinds of deep learning models have been proposed already, including deep belief network Hinton et al. (2006), deep Boltzmann machine Salakhutdinov & Hinton (2009), deep neural network Jaeger (2002); Krizhevsky et al. (2012) and deep autoencoder model Vincent et al. (2010). ", + "bbox": [ + 114, + 491, + 913, + 631 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Meanwhile, deep learning models also suffer from several serious criticism due to their several severe disadvantages Zhou & Feng (2017a). Generally, learning and training deep learning models usually demands (1) a large amount of training data, (2) large and powerful computational facilities, (3) heavy parameter tuning costs, but lacks (4) theoretic explanation of the learning process and results. These disadvantages greatly hinder the application of deep learning models in many areas which cannot meet the requirements or requests a clear interpretability of the learning performance. Due to these reasons, by this context so far, deep learning research and application works are mostly carried out within/via the collaboration with several big technical companies, but the models proposed by them (involving hundreds of hidden layers, billions of parameters, and using a large cluster with thousands of server nodes Dean et al. (2012)) can hardly be applied in other real-world applications. ", + "bbox": [ + 114, + 636, + 913, + 761 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "In this paper, we propose a brand new model, namely SEGEN (Sample-Ensemble Genetic Evolutionary Network), which can work as an alternative approach to the deep learning models. Instead of building one single model with a deep architecture, SEGEN adopts a genetic-evolutionary learning strategy to train a group of unit models generations by generations. Here, the unit models can be either traditional machine learning models or deep learning models with a much “narrower” and “shallower” structure. Each unit model will be trained with a batch of training instances sampled form the dataset. By selecting the good unit models from each generation (according to their performance on a validation set), SEGEN will evolve itself and create the next generation of unit modes with probabilistic genetic crossover and mutation, where the selection and crossover probabilities are highly dependent on their performance fitness evaluation. Finally, the learning results of the data instances will be effectively combined from each unit model via diffusive propagation and ensemble learning strategies. These terms and techniques mentioned here will be explained in great detail in Section 4. Compared with the existing deep learning models, SEGEN have several great advantages, and we will illustrate them from both the bionics perspective and the computational perspective as follows. ", + "bbox": [ + 116, + 766, + 913, + 933 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "From the bionics perspective, SEGEN effectively models the evolution of creatures from generations to generations, where the creatures suitable for the environment will have a larger chance to survive and generate the offsprings. Meanwhile, the offsprings inheriting good genes from its parents will be likely to adapt to the environment as well. In the SEGEN model, each unit network model in generations can be treated as an independent creature, which will receive a different subsets of training instances and learn its own model variables. For the unit models suitable for the environment (i.e., achieving a good performance on a validation set), they will have a larger chance to generate their child models. The parent model achieving better performance will also have a greater chance to pass their variables to the child model. ", + "bbox": [ + 114, + 58, + 913, + 156 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "From the computational perspective, SEGEN requires far less data and resources, and also has a sound theoretic explanation of the learning process and results. The unit models in each generation of SEGEN are of a much simpler architecture, learning of which can be accomplished with much less training data, less computational resources and less hyper-parameter tuning efforts. In addition, the training dataset pool, model hyper-parameters are shared by the unit models, and the increase of generation size (i.e., unit model number in each generation) or generation number (i.e., how many generation rounds will be needed) will not increase the learning resources consumption. The relatively “narrower” and “shallower” structure of unit models will also significantly enhance the interpretability of the unit models training process as well as the learning results, especially if the unit models are the traditional non-deep learning models. Furthermore, the sound theoretical foundations of genetic algorithm and ensemble learning will also help explain the information inheritance through generations and result ensemble in SEGEN. ", + "bbox": [ + 114, + 160, + 913, + 299 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "In this paper, we will use network embedding problem Wang et al. (2016); Chang et al. (2015); Perozzi et al. (2014) (applying autoencoder as the unit model) as an example to illustrate the SEGEN model. Meanwhile, applications of SEGEN on other data categories (e.g., images and raw feature inputs) with CNN and MLP as the unit model will also be provided in Section 5.3. The following parts of this paper are organized as follows. The problem formulation is provided in Section 3. Model SEGEN will be introduced in Section 4, whose performance will be evaluated in Section 5. Finally, Section 2 introduces the related works and we conclude this paper in Section 6. ", + "bbox": [ + 116, + 304, + 913, + 388 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2 RELATED WORK ", + "text_level": 1, + "bbox": [ + 117, + 397, + 285, + 414 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Deep Learning Research and Applications: The essence of deep learning is to compute hierarchical features or representations of the observational data Goodfellow et al. (2016); LeCun et al. (2015). With the surge of deep learning research and applications in recent years, lots of research works have appeared to apply the deep learning methods, like deep belief network Hinton et al. (2006), deep Boltzmann machine Salakhutdinov & Hinton (2009), Deep neural network Jaeger (2002); Krizhevsky et al. (2012) and Deep autoencoder model Vincent et al. (2010), in various applications, like speech and audio processing Deng et al. (2013); Hinton et al. (2012), language modeling and processing Arisoy et al. (2012); Mnih & Hinton (2009), information retrieval Hill (2012); Salakhutdinov & Hinton (2009), objective recognition and computer vision LeCun et al. (2015), as well as multimodal and multi-task learning Weston et al. (2010; 2011). ", + "bbox": [ + 114, + 417, + 913, + 529 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Network Embedding: Network embedding has become a very hot research problem recently, which can project a graphstructured data to the feature vector representations. In graphs, the relation can be treated as a translation of the entities, and many translation based embedding models have been proposed, like TransE Bordes et al. (2013), TransH Wang et al. (2014) and TransR Lin et al. (2015). In recent years, many network embedding works based on random walk model and deep learning models have been introduced, like Deepwalk Perozzi et al. (2014), LINE Tang et al. (2015), node2vec Grover & Leskovec (2016), HNE Chang et al. (2015) and DNE Wang et al. (2016). Perozzi et al. extends the word2vec model Mikolov et al. (2013) to the network scenario and introduce the Deepwalk algorithm Perozzi et al. (2014). Tang et al. Tang et al. (2015) propose to embed the networks with LINE algorithm, which can preserve both the local and global network structures. Grover et al. Grover & Leskovec (2016) introduce a flexible notion of a node’s network neighborhood and design a biased random walk procedure to sample the neighbors. Chang et al. Chang et al. (2015) learn the embedding of networks involving text and image information. Chen et al. Chen & Sun (2016) introduce a task guided embedding model to learn the representations for the author identification problem. ", + "bbox": [ + 114, + 534, + 913, + 700 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "3 PROBLEM FORMULATION ", + "text_level": 1, + "bbox": [ + 117, + 710, + 359, + 727 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "In this section, we will provide the definitions of several important terminologies, based on which we will define the network representation learning problem. ", + "bbox": [ + 114, + 731, + 908, + 758 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "3.1 TERMINOLOGY DEFINITION ", + "text_level": 1, + "bbox": [ + 117, + 763, + 351, + 777 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "The SEGEN model will be illustrated based on the network representation learning problem in this paper, where the input is usually a large-sized network structured dataset. ", + "bbox": [ + 117, + 784, + 906, + 811 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "DEFINITION 1 (Network Data): Formally, a network structured dataset can be represented as a graph $G = ( \\nu , \\mathcal { E } )$ , where $\\nu$ denotes the node set and $\\mathcal { E }$ contains the set of links among the nodes. ", + "bbox": [ + 117, + 815, + 908, + 844 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "In the real-world applications, lots of data can be modeled as networks. For instance, online social media can be represented as a network involving users as the nodes and social connections as the links; e-commerce website can be denoted as a network with customer and products as the nodes, and purchase relation as the links; academic bibliographical data can be modeled as a network containing papers, authors as the nodes, and write/cite relationships as the links. Given a large-sized input network data $G = ( \\nu , \\mathcal { E } )$ , a group of sub-networks can be extracted from it, which can be formally represented as a sub-network set of $G$ . ", + "bbox": [ + 116, + 848, + 913, + 933 + ], + "page_idx": 1 + }, + { + "type": "image", + "img_path": "images/4bc423953a52b18d71d07791e5696a4c8bd1c2bc5d0521a82977aff5f401d0d0.jpg", + "image_caption": [ + "Step 1: Network Sampling Step 2: Sub-Network Representation Learning Step 3: Result Ensemble ", + "Figure 1: The SEGEN Framework. " + ], + "image_footnote": [], + "bbox": [ + 153, + 51, + 872, + 268 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "DEFINITION 2 (Sub-network Set): Based on a certain sampling strategy, we can represent the set of sampled subnetworks from network $G$ as set ${ \\mathcal { G } } = \\{ g _ { 1 } , g _ { 2 } , \\cdot \\cdot \\cdot , g _ { m } \\}$ of size m. Here, $g _ { i } \\in \\mathcal G$ denotes a sub-network of $G$ , and it can be represented as $g _ { i } = ( \\mathcal { V } _ { g _ { i } } , \\mathcal { E } _ { g _ { i } } )$ , where $\\nu _ { g _ { i } } \\subseteq \\nu$ , $\\mathcal { E } _ { g _ { i } } \\subseteq \\mathcal { E }$ and $G \\neq g _ { i }$ . ", + "bbox": [ + 119, + 303, + 908, + 345 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "In Section 4, we will introduce several different sampling strategies, which will be applied to obtained several different sub-network pools for unit model building and validation. ", + "bbox": [ + 117, + 348, + 906, + 377 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "3.2 PROBLEM FORMULATION ", + "text_level": 1, + "bbox": [ + 116, + 381, + 333, + 395 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Problem Statement: Based on the input network data $G = ( \\nu , \\mathcal { E } )$ , the network representation learning problem aims at learning a mapping $f : \\mathcal { V } \\to \\mathbb { R } ^ { d }$ to project each node from the network to a low-dimensional feature space. There usually exist some requirements on mapping $f ( \\cdot )$ , which should preserve the original network structure, i.e., closer nodes should have close representations; while disconnected nodes have different representations on the other hand. ", + "bbox": [ + 114, + 401, + 913, + 458 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "4 PROPOSED METHODS ", + "text_level": 1, + "bbox": [ + 117, + 467, + 328, + 483 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "In this section, we will introduce the proposed framework SEGEN in detail. As shown in Figure 1, the proposed framework involves three steps: (1) network sampling, (2) sub-network representation learning, and (3) result ensemble. Given the large-scale input network data, framework SEGEN will sample a set of sub-networks, which will be used as the input to the genetic evolutionary network model for representation learning. Based on the learned results for the sub-networks, framework SEGEN will combine them together to obtain the final output result. In the following parts, we will introduce these three steps in great detail respectively. ", + "bbox": [ + 114, + 487, + 913, + 570 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "4.1 NETWORK SAMPLING ", + "text_level": 1, + "bbox": [ + 117, + 575, + 308, + 590 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "In framework SEGEN, instead of handling the input large-scale network data directly, we propose to sample a subset (of set size $s$ ) of small-sized sub-networks (of a pre-specified sub-network size $k$ ) instead and learn the representation feature vectors of nodes based on the sub-networks. To ensure the learned representations can effectively represent the characteristics of nodes, we need to ensure the sampled sub-networks share similar properties as the original large-sized input network. As shown in Figure 1, 5 different types of network sampling strategies (indicated in 5 different colors) are adopted in this paper, and each strategy will lead to a group of small-sized sub-networks, which can capture both the local and global structures of the original network. ", + "bbox": [ + 114, + 595, + 915, + 694 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "4.1.1 BFS BASED NETWORK SAMPLING ", + "text_level": 1, + "bbox": [ + 116, + 695, + 408, + 709 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Based on the input network $G = ( \\nu , \\mathcal { E } )$ , Breadth-First-Search (BFS) based network sampling strategy randomly picks a seed node from set $\\nu$ and performs BFS to expend to the unreached nodes. Formally, the neighbors of node $v \\in \\mathcal V$ can be denoted as set $\\Gamma ( v ; 1 ) \\stackrel { \\scriptscriptstyle - } { = } \\{ u | u \\in \\mathcal { V } \\wedge ( u , \\bar { v _ { ) } } \\in \\mathcal { E } \\}$ . After picking $v$ , the sampling strategy will continue to randomly add $k - 1$ nodes from set $\\Gamma ( v ; 1 )$ , if $| \\Gamma ( v ; 1 ) | \\geq k - 1$ ; otherwise, the sampling strategy will go to the 2-hop neighbors of $v$ (i.e., $\\Gamma ( v ; 2 ) = \\{ u | \\exists w \\in \\mathcal { V } , ( u , w ) \\in \\mathcal { E } \\land ( w , v ) \\in \\mathcal { E } \\ /$ ∧ (u, v) ∈ E} / ) and so forth until the remaining $k - 1$ nodes are selected. In the case when the size of connected component that $v$ involves in is smaller than $k$ , the strategy will further pick another seed node to do BFS from that node to finish the sampling of $k$ nodes. These sampled $k$ nodes together with the edges among them will form a sampled sub-network $g$ , and all the $p$ sampled sub-networks will form the sub-network pool $\\bar { \\mathcal { G } } ^ { \\mathrm { B F S } }$ (parameter $p$ denotes the pool size). ", + "bbox": [ + 114, + 714, + 913, + 842 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "4.1.2 DFS BASED NETWORK SAMPLING ", + "text_level": 1, + "bbox": [ + 117, + 843, + 410, + 857 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Depth-First-Search (DFS) based network sampling strategy works in a very similar way as the BFS based strategy, but it adopts DFS to expand to the unreached nodes instead. Similar to the BFS method, in the case when the node connected component has size less than $k$ , DFS sampling strategy will also continue to pick another node as the seed node to continue the sampling process. The sampled nodes together with the links among them will form the sub-networks to be involved in the final sampled sub-network pool ${ \\mathcal { G } } ^ { \\mathrm { { D F S } } }$ (of size $p$ ). ", + "bbox": [ + 116, + 863, + 913, + 933 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "A remark to be added here: the sub-networks sampled via BFS can mainly capture the local network structure of nodes (i.e., the neighborhood), and in many of the cases they are star structured diagrams with the picked seed node at the center surrounded by its neighbors. Meanwhile, the sub-networks sampled with DFS are slightly different, which involve “deeper” network connection patterns. In the extreme case, the sub-networks sampled via DFS can be a path from the seed nodes to a node which is $( k - 1 )$ -hop away. ", + "bbox": [ + 116, + 58, + 913, + 128 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "4.1.3 HS BASED NETWORK SAMPLING ", + "text_level": 1, + "bbox": [ + 117, + 130, + 398, + 143 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "To balance between those extreme cases aforementioned, we introduce a Hybrid-Search (HS) based network sampling strategy by combining BFS and DFS. HS randomly picks seed nodes from the network, and reaches other nodes based on either BFS or DFS strategies with probabilities $p$ and $( 1 - p )$ respectively. For instance, in the sampling process, HS first picks node $v \\in \\mathcal V$ as the seed node, and samples a random node $u \\in \\Gamma ( v ; 1 )$ . To determine the next node to sample, HS will “toss a coin” with $p$ probability to sample nodes from $\\Gamma ( v ; 1 ) \\setminus \\{ u \\}$ (i.e., BFS) and $1 - p$ probability to sample nodes from $\\Gamma ( u ; 1 ) \\setminus \\{ v \\}$ (i.e., DFS). Such a process continues until $k$ nodes are selected, and the sampled nodes together with the links among them will form the sub-network. We can represent all the sampled sub-networks by the HS based network sampling strategy as pool ${ \\mathcal { G } } ^ { \\mathrm { H S } }$ . ", + "bbox": [ + 114, + 150, + 913, + 262 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "These three network sampling strategies are mainly based on the connections among the nodes, and nodes in the sampled sub-networks are mostly connected. However, in the real-world networks, the connections among nodes are usually very sparse, and most of the node pairs are not connected. In the following part, we will introduce two other sampling strategies to handle such a case. ", + "bbox": [ + 116, + 267, + 913, + 321 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "4.1.4 BIASED NODE SAMPLING ", + "text_level": 1, + "bbox": [ + 117, + 325, + 348, + 339 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Instead of sampling sub-networks via the connections among them, the node sampling strategy picks the nodes at random from the network. Based on node sampling, the final sampled sub-network may not necessarily be connected and can involve many isolated nodes. Furthermore, uniform sampling of nodes will also deteriorate the network properties, since it treats all the nodes equally and fails to consider their differences. In this paper, we propose to adopt the biased node sampling strategy, where the nodes with more connections (i.e., larger degrees) will have larger probabilities to be sampled. Based on the connections among the nodes, we can represent the degree of node $v \\in \\mathcal V$ as $d ( u ) = | \\Gamma ( u ; 1 ) |$ , and the probabilities for $u$ to be sampled can be denoted as $\\begin{array} { r } { p ( u ) \\ = \\ \\frac { d ( u ) } { 2 | \\mathcal { E } | } } \\end{array}$ . Instead of focusing on the local structures of the network, the sub-networks sampled with the biased node sampling strategy can capture more “global” structures of the input network. Formally, all the sub-networks sampled via this strategy can be represented as pool $\\mathcal { G } ^ { \\mathrm { N S } }$ . ", + "bbox": [ + 114, + 344, + 913, + 477 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "4.1.5 BIASED EDGE SAMPLING ", + "text_level": 1, + "bbox": [ + 117, + 478, + 348, + 492 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Another “global” sub-network sampling strategy is the edge based sampling strategy, which samples the edges instead of nodes. Here, uniform sampling of edges will be reduced to biased node selection, where high-degree nodes will have a larger probability to be involved in the sub-network. In this paper, we propose to adopt a biased edge sampling strategy instead. For each edge $( u , v ) \\in \\mathcal { E }$ , the probability for it to be sampled is actually proportional to $\\frac { d ( u ) + d ( v ) } { 2 | \\mathcal { E } | }$ . The sampled edges together with the incident nodes will form a sub-network, and all the sampled sub-networks with biased edge sampling strategy can be denoted as pool $\\mathcal { G } ^ { \\mathrm { E S } }$ . ", + "bbox": [ + 114, + 498, + 915, + 588 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "These two network sampling strategies can select the sub-structures of the input network from a global perspective, which can effectively capture the sparsity property of the input network. In the experiments to be introduced in Section 5, we will evaluate these different sampling strategies in detail. ", + "bbox": [ + 116, + 592, + 913, + 635 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "4.2 GEN MODEL ", + "text_level": 1, + "bbox": [ + 116, + 640, + 248, + 654 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "In this part, we will focus on introducing the Genetic Evolutionary Network (GEN) model, which accepts each sub-network pool as the input and learns the representation feature vectors of nodes as the output. We will use $\\mathcal { G }$ to represent the sampled pool set, which can be ${ \\mathcal { G } } ^ { \\mathrm { B F S } }$ , ${ \\mathcal { G } } ^ { \\mathrm { { D F S } } }$ , $\\mathcal { G } ^ { \\mathrm { H S } }$ , $\\mathcal { G } ^ { \\mathrm { N S } }$ or $\\mathcal { G } ^ { \\mathrm { E S } }$ respectively. ", + "bbox": [ + 116, + 660, + 913, + 702 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "4.2.1 UNIT MODEL POPULATION INITIALIZATION ", + "text_level": 1, + "bbox": [ + 119, + 704, + 472, + 718 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "In the GEN model, there exist multiple generations of unit models, where the earlier generations will evolve and generate the later generations. Each generation will also involve a group of unit models, namely the unit model population. Formally, the initial generation of the unit models (i.e., the $1 _ { s t }$ generation) can be represented as set $\\mathcal { M } ^ { 1 } = \\{ \\hat { M _ { 1 } ^ { 1 } } , \\hat { M } _ { 2 } ^ { 1 } , \\cdot \\cdot \\cdot , M _ { m } ^ { 1 } \\}$ (of size $m$ ), where $M _ { i } ^ { 1 }$ is a base unit model to be introduced in the following subsection. Formally, the variables involved in each unit model, e.g., $M _ { i } ^ { 1 }$ , can be denoted as vector $\\theta _ { i } ^ { 1 }$ , which covers the weight and bias terms in the model (which will be treated as the model genes in the evolution to be introduced later). In the initialization step, the variables of each unit model are assigned with a random value generated from the standard normal distribution. ", + "bbox": [ + 114, + 723, + 913, + 821 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "4.2.2 UNIT MODEL DESCRIPTION ", + "text_level": 1, + "bbox": [ + 116, + 824, + 364, + 838 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "In this paper, we will take network representation learning as an example, and propose to adopt the correlated autoencoder as the base model. We want to clarify again that the SEGEN framework is a general framework, and it works well for different types of data as well as different base models. For some other tasks or other learning settings, many other existing models, e.g., CNN and MLP to be introduced in Section 5.3, can be adopted as the base model as well. ", + "bbox": [ + 114, + 843, + 913, + 900 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Autoencoder is an unsupervised neural network model, which projects data instances from the original feature space to a lower-dimensional feature space via a series of non-linear mappings. Autoencoder model involves two steps: encoder and decoder. The encoder part projects the original feature vectors to the objective feature space, while the decoder step recovers the latent feature representations to a reconstructed feature space. ", + "bbox": [ + 111, + 904, + 910, + 934 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "", + "bbox": [ + 116, + 58, + 911, + 87 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Based on each sampled sub-network $g \\in { \\mathcal { T } }$ , where $g = ( \\mathcal { V } _ { g } , \\mathcal { E } _ { g } )$ , we can represent \nthe sub-network structure as an adjacency matrix $\\mathbf { A } _ { g } ~ = ~ \\{ 0 , 1 \\} ^ { | \\mathcal { V } _ { g } | \\times | \\mathcal { V } _ { g } | }$ , where \n$A _ { g } ( i , j ) = 1$ iff $( v _ { i } , v _ { j } ) \\in \\mathcal { E } _ { g }$ . Formally, for each node $v _ { i } \\in \\mathcal V _ { g }$ , we can represent its \nraw feature as $\\mathbf { x } _ { i } = \\mathbf { A } _ { g } ( i , : )$ . Let $\\mathbf { y } _ { i } ^ { 1 } , \\mathbf { y } _ { i } ^ { 2 } , \\cdots , \\mathbf { y } _ { i } ^ { o }$ be the corresponding latent feature \nrepresentation of $\\mathbf { x } _ { i }$ at hidden layers $1 , 2 , \\cdots , o$ in the encoder step. The encoding \nresult in the objective feature space can be denoted as $\\mathbf { z } _ { i } \\in \\mathbb { R } ^ { d }$ of dimension $d$ . In \nthe decoder step, the input will be the latent feature vector $\\mathbf { z } _ { i }$ , and the final output \nwill be the reconstructed vector $\\hat { \\mathbf { x } } _ { i }$ (of the same dimension as $\\mathbf { x } _ { i }$ ). The latent feature \nvectors at each hidden layers can be represented as $\\hat { \\mathbf { y } } _ { i } ^ { o } , \\hat { \\mathbf { y } } _ { i } ^ { o - 1 } , \\cdots , \\hat { \\mathbf { y } } _ { i } ^ { 1 }$ . As shown in \nthe architecture in Figure 2, the relationships among these variables can be represented with the following equations: ", + "bbox": [ + 116, + 90, + 658, + 233 + ], + "page_idx": 4 + }, + { + "type": "image", + "img_path": "images/92696322517e6778d385b19da3e64fc59e730e01c7b81dd72de69f50c33e900a.jpg", + "image_caption": [ + "Figure 2: Autoencoder Model. " + ], + "image_footnote": [], + "bbox": [ + 691, + 93, + 887, + 190 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "", + "bbox": [ + 120, + 220, + 880, + 233 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/423f44cafc06ae40804861e072cbd10ef0becf8401af54dc70548413b5ddcf3e.jpg", + "text": "$$\n\\left\\{ \\begin{array} { l l } { \\mathrm { E n c o d e r : } } \\\\ { \\mathbf { y } _ { i } ^ { 1 } = \\sigma ( \\mathbf { W } ^ { 1 } \\mathbf { x } _ { i } + \\mathbf { b } ^ { 1 } ) , } \\\\ { \\mathbf { y } _ { i } ^ { k } = \\sigma ( \\mathbf { W } ^ { k } \\mathbf { y } _ { i } ^ { k - 1 } + \\mathbf { b } ^ { k } ) , \\forall k \\in \\{ 2 , \\cdots , o \\} , } \\\\ { \\mathbf { z } _ { i } = \\sigma ( \\mathbf { W } ^ { o + 1 } \\mathbf { y } _ { i } ^ { o } + \\mathbf { b } ^ { o + 1 } ) . } \\end{array} \\right. \\quad \\forall k = \\{ 2 , \\cdots , o \\} \\left\\{ \\begin{array} { l l } { \\mathrm { D e c o d e r : } } \\\\ { \\hat { \\mathbf { y } } _ { i } ^ { o } = \\sigma ( \\hat { \\mathbf { W } } ^ { o + 1 } \\mathbf { z } _ { i } + \\hat { \\mathbf { b } } ^ { o + 1 } ) , } \\\\ { \\hat { \\mathbf { y } } _ { i } ^ { k - 1 } = \\sigma ( \\hat { \\mathbf { W } } ^ { k } \\mathbf { \\hat { y } } _ { i } ^ { k } + \\hat { \\mathbf { b } } ^ { k } ) , \\forall k \\in \\{ 2 , \\cdots , o \\} , } \\\\ { \\hat { \\mathbf { x } } _ { i } = \\sigma ( \\hat { \\mathbf { W } } ^ { 1 } \\hat { \\mathbf { y } } _ { i } ^ { 1 } + \\hat { \\mathbf { b } } ^ { 1 } ) . } \\end{array} \\right.\n$$", + "text_format": "latex", + "bbox": [ + 199, + 232, + 823, + 303 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "The objective of traditional autoencoder model is to minimize the loss between the original feature vector $\\mathbf { x } _ { i }$ and the reconstructed feature vector $\\hat { \\mathbf { x } } _ { i }$ of data instances. Meanwhile, for the network representation learning task, the learning task of nodes in the sub-networks are not independent but highly correlated. For the connected nodes, they should have closer representation feature vectors in the latent feature space; while for those which are isolated, their latent representation feature vectors should be far away instead. What’s more, since the input feature vectors are extremely sparse (lots of the entries are 0s), simply feeding them to the model may lead to some trivial solutions, like 0 vector for both $\\mathbf { z } _ { i }$ and the decoded vector $\\hat { \\mathbf { x } } _ { i }$ . Therefore, we propose to extend the Autoencoder model to the correlated scenario for networks, and define the objective of the correlated autoencoder model as follows: ", + "bbox": [ + 112, + 306, + 915, + 417 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/b62e6b0b88f85bec674eef53a3feff68d0dadb32203f23920d55a2b41184593e.jpg", + "text": "$$\n\\mathcal { L } _ { e } ( g ) = \\sum _ { v _ { i } \\in \\mathcal { V } _ { g } } \\| ( \\mathbf { x } _ { i } - \\hat { \\mathbf { x } } _ { i } ) \\odot \\mathbf { b } _ { i } \\| _ { 2 } ^ { 2 } + \\alpha \\sum _ { v _ { i } , v _ { j } \\in \\mathcal { V } _ { g } , v _ { i } \\ne v _ { j } } \\left| \\| \\mathbf { z } _ { i } - \\mathbf { z } _ { j } \\right| \\| _ { 2 } ^ { 2 } + \\beta \\cdot \\sum _ { i = 1 } ^ { o } \\left( \\left\\| \\mathbf { W } ^ { i } \\right\\| _ { F } ^ { 2 } + \\left\\| \\hat { \\mathbf { W } } ^ { i } \\right\\| _ { F } ^ { 2 } \\right) ,\n$$", + "text_format": "latex", + "bbox": [ + 189, + 420, + 833, + 464 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "where si,j = $s _ { i , j } = { \\left\\{ \\begin{array} { l l } { + 1 , } & { { \\mathrm { i f } } \\ A _ { g } ( i , j ) = 1 ; } \\\\ { - 1 , } & { { \\mathrm { i f } } \\ A _ { g } ( i , j ) = 0 . } \\end{array} \\right. }$ and $\\alpha , \\beta$ are the weights of the correlation and regularization terms respectively. Entries in weight vector $\\mathbf { b } _ { i }$ have value 1 except the entries corresponding to non-zero element in $\\mathbf { x } _ { i }$ , which will be assigned with value $\\gamma \\left( \\gamma > 1 \\right)$ to preserve these non-zero entries in the reconstructed vector $\\hat { \\mathbf { x } } _ { i }$ . ", + "bbox": [ + 114, + 469, + 915, + 530 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "4.2.3 GENERATION MODEL LEARNING SETTING ", + "text_level": 1, + "bbox": [ + 116, + 531, + 467, + 545 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Instead of fitting each unit model with all the sub-networks in the pool $\\mathcal { G }$ , in GEN, a set of sub-network training batches $\\mathcal { T } _ { 1 } , \\mathcal { T } _ { 2 } , \\cdots , \\mathcal { T } _ { m }$ will be sampled for each unit model respectively in the learning process, where $| \\mathcal { T } _ { i } | = b , \\forall i \\ \\bar { \\in }$ $\\{ 1 , 2 , \\cdots , m \\}$ are of the pre-defined batch size $b$ . These batches may share common sub-networks as well, i.e., $\\mathcal { T } _ { i } \\cap \\mathcal { T } _ { j }$ may not necessary be $\\varnothing$ . In the GEN model, the unit models learning process for each generation involves two steps: (1) generating the batches $\\mathcal { T } _ { i }$ from the pool set $\\mathcal { G }$ for each unit model $\\breve { M } _ { i } ^ { 1 } \\in { \\mathcal { M } } ^ { 1 }$ , and (2) learning the variables of the unit model $M _ { i } ^ { \\bar { 1 } }$ based on sub-networks in batch $\\mathcal { T } _ { i }$ . Considering that the unit models have a much smaller number of hidden layers, the learning time cost of each unit model will be much less than the deeper models on larger-sized networks. In Section 5, we will provide a more detailed analysis about the running time cost and space cost of SEGEN. ", + "bbox": [ + 114, + 550, + 915, + 662 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "4.2.4 UNIT MODEL FITNESS EVALUATION AND SELECTION ", + "text_level": 1, + "bbox": [ + 116, + 662, + 542, + 678 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "The unit models in the generation set $\\mathcal { M } ^ { 1 }$ can have different performance, due to (1) different initial variable values, and (2) different training batches in the learning process. In framework SEGEN, instead of applying “deep” models with multiple hidden layers, we propose to “deepen” the models in another way: “evolve the unit model into ‘deeper’ generations”. A genetic algorithm style method is adopted here for evolving the unit models, in which the well-trained unit models will have a higher chance to survive and evolve to the next generation. To pick the well-trained unit models, we need to evaluate their performance, which is done with the validation set $\\nu$ sampled from the pool. For each unit model $M _ { k } ^ { 1 } \\in \\mathcal { M } ^ { 1 }$ , based on the sub-networks in set $\\nu$ , we can represent the introduced loss of the model as ", + "bbox": [ + 114, + 681, + 915, + 781 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/a2cf8df3a568d119d170ffbde9504beabc38042a78f9af5e5982e841e862323a.jpg", + "text": "$$\n\\mathcal { L } _ { c } ( M _ { k } ^ { 1 } ; \\mathcal { V } ) = \\sum _ { g \\in \\mathcal { V } } \\sum _ { v _ { i } , v _ { j } \\in \\mathcal { V } _ { g } , v _ { i } \\neq v _ { j } } s _ { i , j } \\left. \\mathbf { z } _ { k , i } ^ { 1 } - \\mathbf { z } _ { k , j } ^ { 1 } \\right. _ { 2 } ^ { 2 } ,\n$$", + "text_format": "latex", + "bbox": [ + 338, + 784, + 687, + 819 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "where $\\mathbf { z } _ { k , i } ^ { 1 }$ and $\\mathbf { z } _ { k , j } ^ { 1 }$ denote the learned latent representation feature vectors of nodes $v _ { i } , v _ { j }$ in the sampled sub-network $g$ and $s _ { i , j }$ is defined based on $g$ in the same way as introduced before. ", + "bbox": [ + 117, + 824, + 913, + 853 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "The probability for each unit model to be picked as the parent model for the crossover and mutation operations can be represented as ", + "bbox": [ + 114, + 858, + 908, + 887 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/0deceb6e8ee047da61473c669a78f9c5c10a4462bda14b07b741a072c074c476.jpg", + "text": "$$\np ( M _ { k } ^ { 1 } ) = \\frac { \\exp ^ { - \\mathcal { L } ( M _ { k } ^ { 1 } ; \\mathcal { V } ) } } { \\sum _ { M _ { i } ^ { 1 } \\in \\mathcal { M } ^ { 1 } } \\exp ^ { - \\mathcal { L } ( M _ { i } ^ { 1 } ; \\mathcal { V } ) } } .\n$$", + "text_format": "latex", + "bbox": [ + 393, + 888, + 632, + 931 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "In the real-world applications, a normalization of the loss terms among these unit models is necessary. For the unit model introducing a smaller loss, it will have a larger chance to be selected as the parent unit model. Considering that the crossover is usually done based a pair of parent models, we can represent the pairs of parent models selected from set $\\mathcal { M } ^ { 1 }$ as $\\mathcal { P } ^ { 1 } = \\{ ( M _ { i } ^ { 1 } , \\dot { M } _ { j } ^ { 1 } ) _ { k } \\} _ { k \\in \\{ 1 , 2 , \\cdots , m \\} }$ , based on which we will be able to generate the next generation of unit models, i.e., $\\mathcal { M } ^ { 2 }$ . ", + "bbox": [ + 114, + 58, + 913, + 130 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "4.2.5 UNIT MODEL CROSSOVER AND MUTATION", + "text_level": 1, + "bbox": [ + 116, + 133, + 468, + 148 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "For the $k _ { t h }$ pair of parent unit model $( M _ { i } ^ { 1 } , M _ { j } ^ { 1 } ) _ { k } \\in \\mathcal { P } ^ { 1 }$ , we can denote their genes as their variables $\\theta _ { i } ^ { 1 } , \\theta _ { j } ^ { 1 }$ respectively (since the differences among the unit models mainly lie in their variables), which are actually their chromosomes for crossover and mutation. ", + "bbox": [ + 114, + 154, + 913, + 196 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Crossover: In this paper, we propose to adopt the uniform crossover to get the chromosomes (i.e., the variables) of their child model. Considering that the parent models $M _ { i } ^ { 1 }$ and $M _ { j } ^ { 1 }$ can actually achieve different performance on the validation set $\\nu$ , in the crossover, the unit model achieving better performance should have a larger chance to pass its chromosomes to the child model. ", + "bbox": [ + 114, + 202, + 913, + 258 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Formally, the chromosome inheritance probability for parent model $M _ { i } ^ { 1 }$ can be represented as ", + "bbox": [ + 112, + 262, + 728, + 279 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/440c388d505d5aadbd834bcb607f11ed28cfaf2b18480c86a300ecca209f91b1.jpg", + "text": "$$\np ( M _ { i } ^ { 1 } ) = \\frac { \\exp ^ { - \\mathcal { L } ( M _ { i } ^ { 1 } ; \\mathcal { V } ) } } { \\exp ^ { - \\mathcal { L } ( M _ { i } ^ { 1 } ; \\mathcal { V } ) } + \\exp ^ { - \\mathcal { L } ( M _ { j } ^ { 1 } ; \\mathcal { V } ) } }\n$$", + "text_format": "latex", + "bbox": [ + 379, + 284, + 647, + 321 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Meanwhile, the chromosome inheritance probability for model $M _ { j } ^ { 1 }$ can be denoted as $p ( M _ { j } ^ { 1 } ) = 1 - p ( M _ { i } ^ { 1 } )$ . ", + "bbox": [ + 112, + 327, + 823, + 344 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "In the uniform crossover method, based on parent model pair $( M _ { i } ^ { 1 } , M _ { j } ^ { 1 } ) _ { k } \\in \\mathcal { P } ^ { 1 }$ , we can represent the obtained child model chromosome vector as $\\theta _ { k } ^ { 2 } \\in \\mathbb { R } ^ { | \\theta ^ { 1 } | }$ (the superscript denotes the $2 _ { n d }$ generation and $| \\theta ^ { 1 } |$ denotes the variable length), which is generated from the chromosome vectors $\\mathbf { \\bar { \\boldsymbol { \\theta } } } _ { i } ^ { 1 }$ and $\\mathbf { \\widetilde { \\theta } } _ { j } ^ { 1 }$ of the parent models. Meanwhile, the crossover choice at each position of the chromosomes vector can be represented as a vector $\\mathbf { c } \\in \\{ i , j \\} ^ { | \\theta ^ { 1 } | }$ . The entries in vector c are randomly selected from values in $\\{ i , j \\}$ with a probability $p ( M _ { i } ^ { 1 } )$ to pick value $i$ and a probability $p ( M _ { j } ^ { 1 } )$ to pick value $j$ respectively. The $l _ { t h }$ entry of vector $\\theta _ { k } ^ { 2 }$ before mutation can be represented as ", + "bbox": [ + 114, + 348, + 915, + 446 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/9dddd0f5ae759a4aea3b58fd25360237f1d069c10cc8ceb18744682895947e8c.jpg", + "text": "$$\n\\begin{array} { r } { \\hat { \\theta } _ { k } ^ { 2 } ( l ) = \\mathbb { 1 } ( c ( l ) = i ) \\cdot \\theta _ { i } ^ { 1 } ( l ) + \\mathbb { 1 } ( c ( l ) = j ) \\cdot \\theta _ { j } ^ { 1 } ( l ) , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 348, + 453, + 678, + 473 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "where indicator function $\\mathbb { 1 } ( \\cdot )$ returns value 1 if the condition is True; otherwise, it returns value 0. ", + "bbox": [ + 114, + 478, + 759, + 494 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Mutation: The variables in the chromosome vector $\\hat { \\theta } _ { k } ^ { 2 } ( l ) \\in \\mathbb { R } ^ { | \\theta ^ { 1 } | }$ are all real values, and some of them can be altered, which is also called mutation in traditional genetic algorithm. Mutation happens rarely, and the chromosome mutation probability is $\\gamma$ in the GEN model. Formally, we can represent the mutation indicator vector as $\\mathbf { m } \\in \\{ 0 , 1 \\} ^ { d }$ , and the $l _ { t h }$ entry of vector $\\theta _ { k } ^ { 2 }$ after mutation can be represented as ", + "bbox": [ + 114, + 498, + 915, + 558 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/051a5d1bc78519f435d2031c14c0dfd14e68837b8c94b606f4cc30ad42277535.jpg", + "text": "$$\n\\theta _ { k } ^ { 2 } ( l ) = \\mathbb { 1 } \\left( m ( l ) = 0 \\right) \\cdot \\hat { \\theta } _ { k } ^ { 2 } ( l ) + \\mathbb { 1 } \\left( c ( l ) = 1 \\right) \\cdot r a n d ( 0 , 1 ) ,\n$$", + "text_format": "latex", + "bbox": [ + 325, + 563, + 700, + 583 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "where $r a n d ( 0 , 1 )$ denotes a random value selected from range $[ 0 , 1 ]$ . Formally, the chromosome vector $\\theta _ { k } ^ { 2 }$ defines a new unit model with knowledge inherited form the parent models, which can be denoted as $M _ { k } ^ { 2 }$ . Based on the parent model set $\\mathcal { P } ^ { 1 }$ , we can represent all the newly generated models as $\\mathcal { M } ^ { 2 } = \\big \\{ M _ { k } ^ { 2 } \\big \\} _ { ( M _ { i } ^ { 1 } , M _ { j } ^ { 1 } ) _ { k } \\in \\mathcal { P } ^ { 1 } }$ , which will form the $2 _ { n d }$ generation of unit models. ", + "bbox": [ + 114, + 589, + 913, + 648 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "4.3 RESULT ENSEMBLE ", + "text_level": 1, + "bbox": [ + 116, + 654, + 294, + 669 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Based on the models introduced in the previous subsection, in this part, we will introduce the hierarchical result ensemble method, which involves two steps: (1) local ensemble of results for the sub-networks on each sampling strategies, and (2) global ensemble of results obtained across different sampling strategies. ", + "bbox": [ + 114, + 674, + 915, + 717 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "4.3.1 LOCAL ENSEMBLE ", + "text_level": 1, + "bbox": [ + 116, + 720, + 300, + 734 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Based on the sub-network pool $\\mathcal { G }$ obtained via the sampling strategies introduced before, we have learned the $K _ { t h }$ generation of the GEN model $\\bar { \\mathcal { M } } ^ { K }$ (or $\\mathcal { M }$ for simplicity), which contains $m$ unit models. In this part, we will introduce how to fuse the learned representations from each sub-networks with the unit models. Formally, given a sub-network $g \\in { \\mathcal { G } }$ with node set $\\nu _ { g }$ , by applying unit model $M _ { j } \\in \\mathcal { M }$ to $g$ , we can represent the learned representation for node $v _ { q } \\in \\mathcal { V } _ { g }$ as vector ${ \\bf z } _ { j , q }$ , where $q$ denotes the unique node index in the original complete network $G$ before sampling. For the nodes $v _ { p } \\notin \\mathcal { V } _ { g }$ , we can denote its representation vector $\\mathbf { z } _ { j , p } = \\mathbf { n u l l }$ , which denotes a dummy vector of length $d$ . Formally, we will be able represent the learned representation feature vector for node $v _ { q }$ as ", + "bbox": [ + 114, + 739, + 913, + 839 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/6834bf23e3b01a93fe92c0e34ff7dd80b239d7a022499c311cf6df6ed482a92b.jpg", + "text": "$$\n\\mathbf { z } _ { q } = \\bigcup _ { g \\in \\mathcal { G } , M _ { j } \\in \\mathcal { M } , } \\mathbf { z } _ { j , q } ,\n$$", + "text_format": "latex", + "bbox": [ + 439, + 844, + 586, + 881 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "where operator t denotes the concatenation operation of feature vectors. ", + "bbox": [ + 116, + 885, + 589, + 900 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Considering that in the network sampling step, not all nodes will be selected in sub-networks. For the nodes $v _ { p } \\notin \\mathcal { V } _ { g } , \\forall g \\in$ $\\mathcal { G }$ , we will not be able to learn its representation feature vector (or its representation will be filled with a list of dummy empty vector). Formally, we can represent these non-appearing nodes as set $\\begin{array} { r } { \\mathcal { V } _ { n } = \\mathcal { V } \\setminus \\bigcup _ { g \\in \\mathcal { G } } \\mathcal { V } _ { g } } \\end{array}$ . In this paper, to compute the representation for these nodes, we propose to propagate the learned representation from their neighborhoods to them instead. Formally, given node $v _ { p } \\in \\mathcal { V } _ { n }$ and its neighbor set $\\Gamma ( v _ { p } ) = \\{ v _ { o } | \\bar { v } _ { o } \\in \\mathcal { V } \\wedge ( u , v _ { p } ) \\in \\mathcal { E } \\}$ , if there exists node in $\\Gamma ( v _ { p } )$ with non-empty representation feature vector, we can represent the propagated representation for $v _ { p }$ as ", + "bbox": [ + 112, + 904, + 911, + 934 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "", + "bbox": [ + 114, + 58, + 913, + 116 + ], + "page_idx": 6 + }, + { + "type": "equation", + "img_path": "images/a91d22bf2b1c7525ec3880c9c0aa976f75a452dfe7f5f6bd628c8355ee60e9d0.jpg", + "text": "$$\n\\mathbf { z } _ { p } = \\frac { 1 } { N } \\sum _ { v _ { o } \\in \\Gamma ( v _ { p } ) } \\mathbb { 1 } ( v _ { o } \\notin \\mathcal { V } _ { n } ) \\cdot \\mathbf { z } _ { o } ,\n$$", + "text_format": "latex", + "bbox": [ + 398, + 119, + 625, + 160 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "where $\\begin{array} { r } { N = \\sum _ { v _ { o } \\in \\Gamma ( v _ { p } ) } \\mathbb { 1 } ( v _ { o } \\notin \\mathcal { V } _ { n } ) } \\end{array}$ . In the case that $\\Gamma ( v _ { p } ) \\subset \\mathcal { V } _ { n }$ , random padding will be applied to get the representation vector $\\mathbf { z } _ { p }$ for node $v _ { p }$ . ", + "bbox": [ + 116, + 164, + 911, + 194 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "4.3.2 GLOBAL ENSEMBLE ", + "text_level": 1, + "bbox": [ + 117, + 198, + 312, + 212 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Generally, these different network sampling strategies introduced at the beginning in Section 4.1 captures different local/global structures of the network, which will all be useful for the node representation learning. In the global result ensemble step, we propose to group these features together as the output. ", + "bbox": [ + 114, + 217, + 915, + 260 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Formally, based on the BFS, Drepresentations for nodes (e.g., $v _ { q } \\in \\mathcal { V } ,$ biased node and biased edge sampling strategies, to d), we can denoted their representation feature vectors as ${ \\bf z } _ { q } ^ { \\mathrm { B F S } } , { \\bf z } _ { q } ^ { \\mathrm { D F S } } , { \\bf z } _ { q } ^ { \\mathrm { H S } } , { \\bf z } _ { q } ^ { \\mathrm { N S } }$ rnedand $\\mathbf { z } _ { q } ^ { \\mathrm { E S } }$ respectively. In the case that node $v _ { q }$ has never appeared in any sub-networks in any of the sampling strategies, its corresponding feature vector can be denoted as a dummy vector filled with 0s. In the global ensemble step, we propose to linearly sum the feature vectors to get the fuses representation $\\bar { \\mathbf { z } } _ { q }$ as follows: ", + "bbox": [ + 114, + 265, + 913, + 337 + ], + "page_idx": 6 + }, + { + "type": "equation", + "img_path": "images/29d611912e6d24bc10561ad35e63b4755961d96cd3acbd078c505ecf43abf8fd.jpg", + "text": "$$\n\\bar { \\mathbf { z } } _ { q } = \\sum _ { i \\in \\{ \\mathrm { B F S } , \\mathrm { D F S } , \\mathrm { H S } , \\mathrm { N S } , \\mathrm { E S } \\} } w ^ { i } \\cdot \\mathbf { z } _ { q } ^ { i } .\n$$", + "text_format": "latex", + "bbox": [ + 408, + 340, + 617, + 377 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Learning of the weight parameters $w ^ { \\mathrm { B F S } }$ , $w ^ { \\mathrm { D F S } }$ , $w ^ { \\mathrm { H S } }$ , $w ^ { \\mathrm { N S } }$ and $w ^ { \\mathrm { E S } }$ is feasible with the complete network structure, but it may introduce eequal value, i.e., $\\bar { \\mathbf { z } } _ { q }$ a time costs andis an average of $\\mathbf { z } _ { q } ^ { \\mathrm { B F S } } , \\mathbf { \\bar { z } } _ { q } ^ { \\mathrm { D F S } } , \\mathbf { z } _ { q } ^ { \\mathrm { H S } } , \\mathbf { z } _ { q } ^ { \\mathrm { N S } }$ effiand $\\mathbf { z } _ { q } ^ { \\mathrm { E S } }$ cy SEGEN. In this paper, we will simply assign them withlearned with different sampling strategies. ", + "bbox": [ + 114, + 380, + 913, + 426 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "4.4 MODEL ANALYSIS ", + "text_level": 1, + "bbox": [ + 117, + 429, + 285, + 443 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "In this section, we will analyze the proposed model SEGEN regarding its performance, running time and space cost, which will also illustrate the advantages of SEGEN compared with the other existing deep learning models. ", + "bbox": [ + 119, + 449, + 908, + 478 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "4.4.1 PERFORMANCE ANALYSIS ", + "text_level": 1, + "bbox": [ + 117, + 479, + 352, + 494 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Model SEGEN, in a certain sense, can also be called a “deep” model. Instead of stacking multiple hidden layers inside one single model like existing deep learning models, SEGEN is deep since the unit models in the successive generations are generated by a namely “evolutionary layer” which performs the validation, selection, crossover, and mutation operations connecting these generations. Between the generations, these “evolutionary operations” mainly work on the unit model variables, which allows the immigration of learned knowledge from generation to generation. In addition, via these generations, the last generation in SEGEN can also capture the overall patterns of the dataset. Since the unit models in different generations are built with different sampled training batches, as more generations are involved, the dataset will be samples thoroughly for learning SEGEN. There have been lots of research works done on analyzing the convergence, performance bounds of genetic algorithms Rudolph (1994), which can provide the theoretic foundations for SEGEN. ", + "bbox": [ + 114, + 498, + 913, + 626 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Due to the difference in parent model selection, crossover, mutation operations and different sampled training batches, the unit models in the generations of SEGEN may perform quite differently. In the last step, SEGEN will effectively combine the learning results from the multiple unit models together. With the diverse results combined from these different learning models, SEGEN is able to achieve better performance than each of the unit models, which have been effectively demonstrated in Zhou et al. (2002). ", + "bbox": [ + 116, + 630, + 913, + 699 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "4.4.2 SPACE AND TIME COMPLEXITY ANALYSIS ", + "text_level": 1, + "bbox": [ + 116, + 702, + 465, + 717 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "According the the model descriptions provided in Section 4, we summarize the key parameters used in SEGEN as follows, which will help analyze its space and time complexity. ", + "bbox": [ + 117, + 722, + 908, + 751 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "• Sampling: Original data size: $n$ . Sub-instance size: $n ^ { \\prime }$ . Pool size: $p$ . ", + "bbox": [ + 155, + 755, + 625, + 770 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "• Learning: Generation number: $K$ . Population size: $m$ . Feature vector size: $d$ . Training/Validation batch size: $b$ . ", + "bbox": [ + 155, + 773, + 905, + 789 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Here, we will use network structured data as an example to analyze the space and time complexity of the SEGEN model. ", + "bbox": [ + 127, + 792, + 901, + 808 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Space Complexity: Given a large-scale network with $n$ nodes, the space cost required for storing the whole network in a matrix representation is $O ( n ^ { 2 } )$ . Meanwhile, via network sampling, we can obtain a pool of sub-networks, and the space required for storing these sub-networks takes $O \\left( p ( n ^ { \\prime } ) ^ { 2 } \\right)$ . Generally, in application of SEGEN, $n ^ { \\prime }$ can take very small number, e.g., 50, and $p$ can take value $\\textstyle p = c \\cdot { \\frac { n } { n ^ { \\prime } } }$ ( $c$ is a constant) so as to cover all the nodes in the network. In such a case, the space cost of SEGEN will be linear to $n$ , $O ( c n ^ { \\prime } n )$ , which is much smaller than $O ( n ^ { 2 } )$ . ", + "bbox": [ + 114, + 813, + 913, + 886 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Time Complexity: Depending on the specific unit models used in composing SEGEN, we can represent the introduced time complexity of learn one unit model with the original network with $n$ nodes as $O ( f ( n ) )$ , where $f ( n )$ is usually a highorder function. Meanwhile, for learning SEGEN on the sampled sub-networks with $n ^ { \\prime }$ nodes, all the introduced time cost will be $O \\left( K m ( b \\cdot f ( n ^ { \\prime } ) + d \\cdot n ^ { \\prime } ) \\right)$ , where term $d \\cdot n ^ { \\prime }$ (an approximation to variable size) represents the cost introduced in the unit model crossover and mutation about the model variables. Here, by assigning $b$ with a fixed value $\\textstyle b = c \\cdot { \\frac { n } { n ^ { \\prime } } }$ , the time complexity of SEGEN will be reduced to $O \\left( K m c { \\frac { f ( n ^ { \\prime } ) } { n ^ { \\prime } } } \\cdot n + K m d n ^ { \\prime } \\right)$ , which is linear to $n$ . ", + "bbox": [ + 116, + 890, + 913, + 933 + ], + "page_idx": 6 + }, + { + "type": "table", + "img_path": "images/1893ed8148f2fc3e30becae6ea11db4dc3ce9bddffc135df70a9517f1198e92d.jpg", + "table_caption": [ + "Table 1: Representation Learning Experiment Results Comparison on Foursquare Network Dataset. " + ], + "table_footnote": [], + "table_body": "
Network RecoveryAUCPrec@500Community DetectionDensitySilhouette
151015105255052550
SEGEN(PS2)0.909 (2)0.909(2)0.909 (2)0.872 (2)0.642 (3)0.530 (3)1SEGEN(PS3)0.875 (2)0.550 (2)0.792(3)0.353(2)0.206 (2)0.208 (3)
SEGEN(PS1)0.817(6)0.819(6)0.818(6)0.772 (5)0.400(4)0.266 (4)|SEGEN(PS1)0.792(6)0.477(4)0.742(4)0.317(4)0.188 (3)0.156(5)
SEGEN-HS(PS2)0.935(1)0.936 (1)0.936(1)0.852 (4)0.388(5)0.000 (-)|SEGEN-HS(PS3)0.812(5)0.385 (11)0.705 (5)0.252(10)0.056(6)0.166(4)
SEGEN-BFS(PS2)0.860 (4)0.859(4)0.858(4)0.428(10)0.000(-)0.000 (-)||SEGEN-BFS(PS3)0.746(7)0.425((8))0.587(6)0.206(11)0.022(10)0.108(6)
SEGEN-DFS(PS2) 0.881(3) 0.882 (3)0.881(3)0.965 (1)0.814(2)0.648 (2)|| SEGEN-DFS(PS3)0.860(4)0.532(3)0.436 (11)0.280(9)0.017(11)-0.006 (11)
SEGEN-NS(PS2)0.801 (7)0.797(7)0.797(7)0.256(11) 0.002(10)0.002 (9)SEGEN-NS(PS3)0.871(3)0.425 (8)0.824 (2)0.327(3)0.060 (5)0.294 (2)
SEGEN-ES(PS2)0.820 (5) 0.822 (5)0.822 (5)0.872 (2)0.872(1)0.872 (1))SEGEN-ES(PS3)0.948 (1)0.933 (1)0.924(1)0.482 (1)0.429 (1)0.407(1)
LINE0.536(9)0.537(9)0.537(9)0.712 (6)0.268 (9)0.172 (7)1LINE0.695 (8)0.443(6)0.478(8)0.311(5)0.046(8)0.082(8)
DEEPWALK0.536(9) 0.537(9))0.537(9)0.686 (9)0.308(7)0.184 (6))DEEPWALK0.695(8)0.449 (5)0.485(7)0.311(5)0.042 (9)0.082(8)
NODE2VEC0.538(8)0.540(8)0.539(8)0.692(8)0.299(8)0.162(8)|NODE2VEC0.691(11)0.419 (10)0.469(9)0.29780.066(4)0.070(10)
HPE0.536(9) 0.537(9) 0.537(9) 0.708(7)0.354(6)0.188(5))HPE0.695 (8)0.431(7)0.465 (10)0.311(5)0.051(7)0.089(7)
", + "bbox": [ + 114, + 66, + 919, + 285 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "", + "bbox": [ + 114, + 291, + 915, + 344 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "4.4.3 ADVANTAGES OVER DEEP LEARNING MODELS ", + "text_level": 1, + "bbox": [ + 114, + 348, + 496, + 363 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Compared with existing deep learning models based on the whole dataset, the advantages of SEGEN are summarized below: ", + "bbox": [ + 116, + 368, + 910, + 397 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "• Less Data for Unit Model Learning: For each unit model, which are of a “shallow” and “narrow” structure (shallow: less or even no hidden layers, narrow: based on sampled sub-instances with a much smaller size), which needs far less variables and less data for learning each unit model. \n• Less Computational Resources: Each unit model is of a much simpler structure, learning process of which consumes far less computational resources in both time and space costs. \n• Less Parameter Tuning: SEGEN can accept both deep (in a simpler version) and shallow learning models as the unit model, and the hyper-parameters can also be shared among the unit models, which will lead to far less hyper-parameters to tune in the learning process. \n• Sound Theoretic Explanation: The unit learning model, genetic algorithm and ensemble learning (aforementioned) can all provide the theoretic foundation for SEGEN, which will lead to sound theoretic explanation of both the learning result and the SEGEN model itself. ", + "bbox": [ + 156, + 401, + 913, + 568 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "5 EXPERIMENTS ", + "text_level": 1, + "bbox": [ + 116, + 578, + 267, + 593 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "To test the effectiveness of the proposed model, extensive experiments will be done on several real-world network structured datasets, including social networks, images and raw feature representation datasets. In this section, we will first introduce the detailed experimental settings, covering experimental setups, comparison methods, evaluation tasks and metrics for the social network representation learning task. After that, we will show its convergence analysis, parameter analysis and the main experimental results of SEGEN on the social network datasets. Finally, we will provide the experiments SEGEN based on the image and raw feature representation datasets involving CNN and MLP as the unit models respectively. ", + "bbox": [ + 114, + 598, + 913, + 683 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "5.1 SOCIAL NETWORK DATASET EXPERIMENTAL SETTINGS ", + "text_level": 1, + "bbox": [ + 116, + 688, + 544, + 702 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "5.1.1 EXPERIMENTAL SETUP ", + "text_level": 1, + "bbox": [ + 116, + 707, + 331, + 722 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "The network datasets used in the experiments are crawled from two different online social networks, Twitter and Foursquare, respectively. The Twitter network dataset involves 5, 120 users and 130, 576 social connections among the user nodes. Meanwhile, the Foursquare network dataset contains 5, 392 users together with the 55, 926 social links connecting them. According to the descriptions of SEGEN, based on the complete input network datasets, a set of sub-networks are randomly sampled with network sampling strategies introduced in this paper, where the sub-network size is denoted as $n ^ { \\prime }$ , and the pool size is controlled by $p$ . Based on the training/validation batches sampled sub-network pool, $K$ generations of unit models will be built in SEGEN, where each generation involves $m$ unit models (convergence analysis regarding parameter $K$ is available in Section 7.1.1). Finally, the learning results at the ending generation will be effectively combined to generate the ensemble output. For the nodes which have never been sampled in any sub-networks, their representations can be learned with the diffusive propagation from their neighbor nodes introduced in this paper. The learned results by SEGEN will be evaluated with two application tasks, i.e., network recovery and community detection respectively. The detailed parameters sensitivity analysis is also available in Section 7.1.2. ", + "bbox": [ + 114, + 728, + 913, + 893 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "5.1.2 COMPARISON METHODS ", + "text_level": 1, + "bbox": [ + 116, + 898, + 339, + 912 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "The network representation learning comparison models used in this paper are listed as follows ", + "bbox": [ + 114, + 917, + 736, + 933 + ], + "page_idx": 7 + }, + { + "type": "table", + "img_path": "images/5b161c90901d44ef4b06187ee9cee146925af4c1a72ad2241281fdf01f6b2e42.jpg", + "table_caption": [ + "Table 2: Representation Learning Experiment Results Comparison on Twitter Network Dataset. " + ], + "table_footnote": [], + "table_body": "
Network RecoveryAUCPrec@500CommunityDensitySilhouette
15101510Detection52550 52550
SEGEN(PS4)0.879 (1)0.881(1)0.881 (1) 0.914(3) 0.638(3) 0.370 (3)SEGEN(PS5)0.980 (2)0.845 (3)0.770 (3))0.566(4)0.353(3)0.341(2)
SEGEN(PS1)0.814 (4)0.813 (4) 0.814(4)0.606(4) 0.194 (4) 0.102 (4)SEGEN(PS1)0.786 (7)0.751(4)0.753(4) 0.481(10) 0.328(4)0.318(4)
SEGEN-HS(PS4)0.862 (2))0.863(2).6(2).594(5)(-)0(-)N-(96(6)(1)(.45)(1)(
SEENS(P4
EGENDS
SEGEN-NS(PS)(57(6()8()E57986(
SEGENES(PS
LINE0.254 (11)0()0(1)0()18(7)(7)LINE0.524 (11) 0.324(10) 0.251(9) 0.465 (11) -0.012(9) -0.012 (7)
DEEPWALK0.533(9)0.531(9)0.532(9)0.524(9) 0.146(6)0.070 (6)DEEPWALK0.545(10) 0.542(7)0.503(7)0.492(9)0.173(8)0.150(6)
NODE2VEC0.704(7)0.703(7) 0.704(7)0.528 (8) 0.012(8) 0.000(-)|NODE2VEC0.697(8) 0.693(5) 0.694(5) 0.530 (8) -0.020 (10) -0.015 (8)
HPE0.593(8)0.595 (8)0.594 (8)0.534(7) 0.186(5) 0.094 (5)HPE0.579(9)0.579(6)0.579(6) 0.544(6)0.208(7)0.187(5)
", + "bbox": [ + 120, + 69, + 905, + 285 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "• SEGEN: Model SEGEN proposed in this paper is based on the genetic algorithm and ensemble learning, which effectively combines the learned sub-network representation feature vectors from the unit models to generate the feature vectors of the whole network. • LINE: The LINE model is a scalable network embedding model proposed in Tang et al. (2015), which optimizes an objective function that preserves both the local and global network structures. LINE uses a edge-sampling algorithm to addresses the limitation of the classical stochastic gradient descent. DEEPWALK: The DEEPWALK model Perozzi et al. (2014) extends the word2vec model Mikolov et al. (2013) to the network embedding scenario. DEEPWALK uses local information obtained from truncated random walks to learn latent representations. \n• NODE2VEC: The NODE2VEC model Grover & Leskovec (2016) introduces a flexible notion of a node’s network neighborhood and design a biased random walk procedure to sample the neighbors for node representation learning. \n• HPE: The HPE model Chen et al. (2016) is originally proposed for learning user preference in recommendation problems, which can effectively project the information from heterogeneous networks to a low-dimensional space. ", + "bbox": [ + 147, + 292, + 915, + 507 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "5.1.3 EVALUATION TASKS AND METRICS ", + "text_level": 1, + "bbox": [ + 117, + 515, + 415, + 529 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "The network representation learning results can hardly be evaluated directly, whose evaluations are usually based on certain application tasks. In this paper, we propose to use application tasks, network recovery and clustering, to evaluate the learned representation features from the comparison methods. Furthermore, the network recovery results are evaluated by metrics, like AUC and Precision $@ 5 0 0$ . Meanwhile the clustering results are evaluated by Density and Silhouette. Without specific remarks, the default parameter setting for SEGEN in the experiments will be Parameter Setting 1 (PS1): sub-network size: 10, pool size: 200, batch size: 10, generation unit model number: 10, generation number: 30. ", + "bbox": [ + 116, + 535, + 913, + 618 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "5.2 SOCIAL NETWORK DATASET EXPERIMENTAL RESULTS ", + "text_level": 1, + "bbox": [ + 116, + 623, + 537, + 638 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "The model training convergence analysis, and detailed analysis about the pool sampling and model learning parameters is available in the Appendix in Section 7.1. Besides these analysis results, we also provide the performance analysis of SEGEN and baseline methods in Tables 1-2, where the parameter settings are specified next to the method name. We provide the rank of method performance among all the methods, which are denoted by the numbers in blue font, and the top 5 results are in a bolded font. As shown in the Tables, we have the network recovery and community detection results on the left and right sections respectively. For the network recovery task, we change the ratio of negative links compared with positive links with values $\\{ 1 , 5 , 1 0 \\}$ , which are evaluated by the metrics AUC and Prec $@ 5 0 0$ . For the community detection task, we change the number of clusters with values $\\{ 5 , 2 5 , 5 0 \\}$ , and the results are evaluated by the metrics Density and Silhouette. ", + "bbox": [ + 114, + 643, + 915, + 768 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Besides PS1 introduced at the beginning of Section 5.1, we have 4 other parameter settings selected based on the parameter analysis introduced before. PS2 for network recovery on Foursquare: sub-network size 50, pool size 600, batch size 5, generation size 50. PS3 for community detection on Foursquare: sub-network size 25, pool size 300, batch size 35, generation size 5. PS4 for network recovery on Twitter: sub-network size 50, pool size 700, batch size 10, generation size 5. PS5 for community detection on Twitter: sub-network size 45, pool size 500, batch size 50, generation size 5. ", + "bbox": [ + 114, + 773, + 913, + 844 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "According to the results shown in Table 1, method SEGEN with PS2 can obtain very good performance for both the network recovery task and the community detection task. For instance, for the network recovery task, method SEGEN with PS2 achieves 0.909 AUC score, which ranks the second and only lose to SEGEN-HS with PS2; meanwhile, SEGEN with PS2 also achieves the second highest Prec $@ 5 0 0$ score (i.e., 0.872 for np-ratio $= 1$ ) and the third highest Prec $@ 5 0 0$ score (i.e., 0.642 and 0.530 for np-ratios 5 and 10) among the comparison methods. On the other hand, for the community detection task, SEGEN with PS3 can generally rank the second/third among the comparison methods for both density and silhouette evaluation metrics. For instance, with the cluster number is 5, the density obtained by SEGEN ranks the second among the methods, which loses to SEGEN-LS only. Similar results can be observed for the Twitter network as shown in Figure 2. ", + "bbox": [ + 116, + 848, + 913, + 933 + ], + "page_idx": 8 + }, + { + "type": "table", + "img_path": "images/c61ca2a4728a03140be82585408315f61fee8ee5afefcb4d17f1ef5c2e6ffceb.jpg", + "table_caption": [ + "Table 3: Experiments on MNIST Dataset. " + ], + "table_footnote": [], + "table_body": "
Comparison MethodsAccuracy Rate%
SEGEN(CNN)99.37
LeNet-599.05 Lecun et al. (1998)
gcForest99.26 Zhou & Feng (2017b)
Deep Belief Net98.75 Hinton et al. (2006)
Random Forest96.8 Zhou & Feng (2017b)
SVM (rbf)98.60 Decoste & Scholkopf (2002)
", + "bbox": [ + 114, + 74, + 488, + 171 + ], + "page_idx": 9 + }, + { + "type": "table", + "img_path": "images/055232a6113d8678ec184072fda1a598745addc611f0f9f8385f1488673e1f3b.jpg", + "table_caption": [ + "Table 4: Experiments on Other Datasets. " + ], + "table_footnote": [], + "table_body": "
Comparison MethodsAccuracy/Rate%onDatasets
YEASTADULTLETTER
SEGEN (MLP)63.7087.0596.90
MLP62.0585.0396.70
gcForest63.4586.4097.40
Random Forest60.4485.6396.28
SVM (rbf)40.7676.4197.06
kNN (k=3)48.8076.0095.23
", + "bbox": [ + 529, + 69, + 887, + 178 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "", + "bbox": [ + 114, + 185, + 913, + 227 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "By comparing SEGEN with SEGEN merely based on HS, BFS, DFS, NS, LS, we observe that the variants based on one certain type of sampling strategies can obtain relatively biased performance, i.e., good performance for the network recovery task but bad performance for the community detection task or the reverse. For instance, as shown in Figure 1, methods SEGEN with HS, BFS, DFS performs very good for the network recovery task, but its performance for the community detection ranks even after LINE, HPE and DEEPWALK. On the other hand, SEGEN with NS and LS is shown to perform well for the community detection task instead in Figure 1, those performance ranks around 7 for the network recovery task. For the Twitter network, similar biased results can be observed but the results are not identically the same. Model SEGEN combining these different sampling strategies together achieves relatively balanced and stable performance for different tasks. Compared with the baseline methods LINE, HPE, DEEPWALK and NODE2VEC, model SEGEN can obtain much better performance, which also demonstrate the effectiveness of SEGEN as an alternative approach for deep learning models on network representation learning. ", + "bbox": [ + 114, + 232, + 913, + 386 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "5.3 EXPERIMENTS ON OTHER DATASETS AND UNIT MODELS ", + "text_level": 1, + "bbox": [ + 122, + 392, + 547, + 406 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Besides the extended autoencoder model and the social network datasets, we have also tested the effectiveness of SEGEN on other datasets and with other unit models. In Table 3, we show the experimental results of SEGEN and other baseline methods on the MNIST hand-written image datasets. The dataset contains 60, 000 training instances and 10, 000 testing instances, where each instance is a $2 8 \\times 2 8$ image with labels denoting their corresponding numbers. Convolutional Neural Network (CNN) is used as the unit model in SEGEN, which involves 2 convolutional layers, 2 max-pooling layers, and two fully connection layers (with a 0.2 dropout rate). ReLU is used as the activation function in CNN, and we adopt Adam as the optimization algorithm. Here, the images are of a small size and no sampling is performed, while the learning results of the best unit model in the ending generation (based on a validation batch) will be outputted as the final results. In the experiments, SEGEN (CNN) is compared with several classic methods (e.g., LeNet-5, SVM, Random Forest, Deep Belief Net) and state-of-the-art method (gcForest). According to the results, SEGEN (CNN) can outperform the baseline methods with great advantages. The Accuracy rate obtained by SEGEN is $9 9 . 3 7 \\%$ , which is much higher than the other comparison methods. ", + "bbox": [ + 114, + 412, + 913, + 579 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Meanwhile, in Table 4, we provide the learning results on three other benchmark datasets, including YEAST1, ADULT2 and LETTER3. These three datasets are in the traditional feature representations. Multi-Layer Perceptron (MLP) is used as the unit model in SEGEN for these three datasets. We cannot find one unified architecture of MLP, which works for all these three datasets. In the experiments, for the YEAST dataset, the MLP involves 1 input layer, 2 hidden layers and 1 output layers, whose neuron numbers are 8-64-16-10; for the ADULT, the MLP architecture contains the neurons 14-70- 50-2; for the LETTER dataset, the used MLP has 3 hidden layers with neurons 16-64-48-32-26 at each layer respectively. The Adam optimization algorithm with 0.001 learning rate is used to train the MLP model. For the ensemble strategy in these experiments, the best unit model is selected to generate the final prediction output. According to the results, compared with the baseline methods, SEGEN (MLP) can also perform very well with MLP on the raw feature representation datasets with great advantages, especially the YEAST and ADULT datasets. As to the LETTER dataset, SEGEN (MLP) only loses to gcForest, but can outperform the other methods consistently. ", + "bbox": [ + 114, + 584, + 913, + 737 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "6 CONCLUSION ", + "text_level": 1, + "bbox": [ + 116, + 748, + 261, + 765 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "In this paper, we have introduced an alternative approach to deep learning models, namely SEGEN. Significantly different from the existing deep learning models, SEGEN builds a group of unit models generations by generations, instead of building one single model with extremely deep architectures. The choice of unit models covered in SEGEN can be either traditional machine learning models or the latest deep learning models with a “smaller” and “narrower” architecture. SEGEN has great advantages over deep learning models, since it requires much less training data, computational resources, parameter tuning efforts but provides more information about its learning and result integration process. The effectiveness of efficiency of SEGEN have been well demonstrated with the extensive experiments done on the real-world network structured datasets. ", + "bbox": [ + 116, + 770, + 913, + 882 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "REFERENCES \nE. Arisoy, T. Sainath, B. Kingsbury, and B. Ramabhadran. Deep neural network language models. In WLM, 2012. \nA. Bordes, N. Usunier, A. Garcia-Duran, J. Weston, and O. Yakhnenko. Translating embeddings for modeling multirelational data. In NIPS. 2013. \nS. Chang, W. Han, J. Tang, G. Qi, C. Aggarwal, and T. Huang. Heterogeneous network embedding via deep architectures. In KDD, 2015. \nC. Chen, M. Tsai, Y. Lin, and Y. Yang. Query-based music recommendations via preference embedding. In RecSys, 2016. \nT. Chen and Y. Sun. Task-guided and path-augmented heterogeneous network embedding for author identification. CoRR, abs/1612.02814, 2016. \nJ. Dean, G. Corrado, R. Monga, K. Chen, M. Devin, Q. Le, M. Mao, M. Ranzato, A. Senior, P. Tucker, K. Yang, and A. Ng. Large scale distributed deep networks. In NIPS, 2012. \nD. Decoste and B. Scholkopf. Training invariant support vector machines. ¨ Mach. Learn., 2002. \nL. Deng, G. Hinton, and B. Kingsbury. New types of deep neural network learning for speech recognition and related applications: An overview. In ICASSP, 2013. \nI. Goodfellow, Y. Bengio, and A. Courville. Deep Learning. MIT Press, 2016. http://www.deeplearningbook. org. \nA. Grover and J. Leskovec. Node2vec: Scalable feature learning for networks. In KDD, 2016. \nS. Hill. Elite and upper-class families. In Families: A Social Class Perspective. 2012. \nG. Hinton, S. Osindero, and Y. Teh. A fast learning algorithm for deep belief nets. Neural Comput., 2006. \nG. Hinton, L. Deng, D. Yu, G. Dahl, A. Mohamed, N. Jaitly, A. Senior, V. Vanhoucke, P. Nguyen, T. Sainath, and B. Kingsbury. Deep neural networks for acoustic modeling in speech recognition. IEEE Signal Processing Magazine, 2012. \nH. Jaeger. Tutorial on training recurrent neural networks, covering BPPT, RTRL, EKF and the “echo state network” approach. Technical report, Fraunhofer Institute for Autonomous Intelligent Systems (AIS), 2002. \nA. Krizhevsky, I. Sutskever, and G. Hinton. Imagenet classification with deep convolutional neural networks. In NIPS, 2012. \nY. Lecun, L. Bottou, Y. Bengio, and P. Haffner. Gradient-based learning applied to document recognition. Proceedings of the IEEE, 1998. \nY. LeCun, Y. Bengio, and G. Hinton. Deep learning. Nature, 521, 2015. doi: 10.1038/nature14539. http://dx.doi. org/10.1038/nature14539. \nY. Lin, Z. Liu, M. Sun, Y. Liu, and X. Zhu. Learning entity and relation embeddings for knowledge graph completion. In AAAI, 2015. \nT. Mikolov, I. Sutskever, K. Chen, G. Corrado, and J. Dean. Distributed representations of words and phrases and their compositionality. In NIPS, 2013. \nA. Mnih and G. Hinton. A scalable hierarchical distributed language model. In NIPS. 2009. \nB. Perozzi, R. Al-Rfou, and S. Skiena. Deepwalk: Online learning of social representations. In KDD, 2014. \nG. Rudolph. Convergence analysis of canonical genetic algorithms. IEEE Transactions on Neural Networks, 1994. \nR. Salakhutdinov and G. Hinton. Semantic hashing. International Journal of Approximate Reasoning, 2009. \nJ. Tang, M. Qu, M. Wang, M. Zhang, J. Yan, and Q. Mei. Line: Large-scale information network embedding. In WWW, 2015. \nP. Vincent, H. Larochelle, I. Lajoie, Y. Bengio, and P. Manzagol. Stacked denoising autoencoders: Learning useful representations in a deep network with a local denoising criterion. Journal of Machine Learning Research, 2010. \nD. Wang, P. Cui, and W. Zhu. Structural deep network embedding. In KDD, 2016. \nZ. Wang, J. Zhang, J. Feng, and Z. Chen. Knowledge graph embedding by translating on hyperplanes. In AAAI, 2014. ", + "bbox": [ + 109, + 51, + 916, + 935 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "J. Weston, S. Bengio, and N. Usunier. Large scale image annotation: Learning to rank with joint word-image embeddings. Journal of Machine Learning, 2010. ", + "bbox": [ + 111, + 58, + 910, + 88 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "J. Weston, S. Bengio, and N. Usunier. Wsabie: Scaling up to large vocabulary image annotation. In IJCAI, 2011. ", + "bbox": [ + 112, + 94, + 862, + 112 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Z. Zhou and J. Feng. Deep forest: Towards an alternative to deep neural networks. In IJCAI, 2017a. ", + "bbox": [ + 111, + 119, + 769, + 136 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Z. Zhou and J. Feng. Deep forest: Towards an alternative to deep neural networks. In IJCAI, 2017b. ", + "bbox": [ + 117, + 143, + 776, + 159 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Z. Zhou, J. Wu, and W. Tang. Ensembling neural networks: Many could be better than all. Artif. Intell., 2002. ", + "bbox": [ + 111, + 167, + 833, + 183 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "7 APPENDIX ", + "text_level": 1, + "bbox": [ + 117, + 56, + 235, + 71 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "7.1 SOCIAL NETWORK DATASET EXPERIMENTAL ANALYSIS ", + "text_level": 1, + "bbox": [ + 116, + 75, + 545, + 89 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "In this part, we will provide experimental analysis about the convergence and parameters of SEGEN, including the subnetwork size, the pool size, batch size and generation size respectively. \n7.1.1 CONVERGENCE ANALYSIS ", + "bbox": [ + 114, + 95, + 911, + 137 + ], + "page_idx": 12 + }, + { + "type": "image", + "img_path": "images/800d58dbb892c129b545deaac1befd114a0fbcbacaea90a90661e43b31e42af4.jpg", + "image_caption": [ + "Figure 3: Convergence Analysis on Foursquare and Twitter. " + ], + "image_footnote": [], + "bbox": [ + 184, + 146, + 826, + 306 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "The learning process of SEGEN involves multiple generations. Before showing the experimental results, we will analyze how many generations will be required for achieving stable results. In Figure 3, we provide the introduced loss by the SEGEN on both Foursquare and Twitter networks, where the $\\mathbf { X }$ axis denotes the generations and y axis represents the sum of introduced $\\mathcal { L } _ { c }$ loss on the validation set based on all these 5 different sampling strategies. According to the results, model SEGEN can converge within less 30 generations for the network representation learning on both Foursquare and Twitter, which will be used as the max-generation number throughout the following experiments. 7.1.2 POOL SAMPLING AND MODEL LEARNING PARAMETER ANALYSIS ", + "bbox": [ + 114, + 329, + 913, + 421 + ], + "page_idx": 12 + }, + { + "type": "image", + "img_path": "images/daca56841d89d132dda9a04e2596c684f30b2873b1d306a6e6e4216403631e37.jpg", + "image_caption": [ + "Figure 4: Sampling Parameter Analysis on Foursquare and Twitter. " + ], + "image_footnote": [], + "bbox": [ + 168, + 434, + 887, + 887 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "In Figure 4, we show the sensitivity analysis about the network sampling parameters, i.e., sub-network size and th pool size, evaluated by AUC, Prec $@ 5 0 0$ , Density and Silhouette respectively, where Figures 4(a)-4(d) are about th ", + "bbox": [ + 116, + 905, + 903, + 934 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Foursquare and Figures 4(e)-4(h) are about the Twitter network. The sub-network size parameter changes with values in $\\{ 5 , 1 0 , 1 5 , \\cdots , 5 0 \\}$ and pool size changes with values in range $\\{ 1 0 0 , 2 0 0 , \\cdots , 1 0 0 0 \\}$ . ", + "bbox": [ + 119, + 58, + 908, + 87 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "According to the plots, for the Foursquare network, larger sub-network size and larger pool size will lead to better performance in the network recovery task; meanwhile, smaller sub-network size will achiver better performance for the community detection task. For instance, SEGEN can achieve the best performance with sub-network size 50 and pool size 600 for the network recovery task; and SEGEN obtain the best performance with sub-network size 25 and pool size 300 for the community detection. For the Twitter network, the performance of SEGEN is relatively stable for the parameters analyzed, which has some fluctuations for certain parameter values. According to the results, the optimal sub-network and pool sizes parameter values for the network recovery task are 50 and 700 for the network recovery task; meanwhile, for the community detection task, the optimal parameter values are 45 and 500 respectively. ", + "bbox": [ + 114, + 92, + 913, + 203 + ], + "page_idx": 13 + }, + { + "type": "image", + "img_path": "images/a214bddfde5a979a5cf1c8ac1818f382ef231bd094fe7f50000e0e880d625c43.jpg", + "image_caption": [ + "Figure 5: Batch and Generation Size Parameter Analysis on Foursquare and Twitter. " + ], + "image_footnote": [], + "bbox": [ + 155, + 215, + 875, + 689 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "In Figure 5, we provide the parameter sensitivity analysis about the batch size and generation size (i.e., the number of uni models in each generation) on Foursquare and Twitter. We change the generation size and batch size both with values i $\\{ 5 , 1 0 , 1 5 , \\cdot \\cdot \\cdot , 5 0 \\}$ , and compute the AUC, Prec $@ 5 0 0$ , Density and Silhouette scores obtained by SEGEN. ", + "bbox": [ + 119, + 709, + 900, + 751 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "According Figures 5(a)-5(d), batch size has no significant impact on the performance of SEGEN, and the generation size may affect SEGEN greatly, especially for the Prec $@ 5 0 0$ metric (the AUC obtained by SEGEN changes within range [0.81, 0.82] with actually minor fluctuation in terms of the values). The selected optimal parameter values selected for network recovery are 50 and 5 for generation and bath sizes. Meanwhile, for the community detection, SEGEN performs the best with smaller generation and batch size, whose optimal values are 5 and 35 respectively. For the Twitter network, the impact of the batch size and generation size is different from that on Foursquare: smaller generation size lead to better performance for SEGEN evaluated by Prec $@ 5 0 0$ . The fluctuation in terms of AUC is also minor in terms of the values, and the optimal values of the generation size and batch size parameters for the network recovery task are 5 and 10 respectively. For the community detection task on Twitter, we select generation size 5 and batch size 40 as the optimal value. ", + "bbox": [ + 114, + 756, + 913, + 881 + ], + "page_idx": 13 + } +] \ No newline at end of file diff --git a/parse/train/HJgVisRqtX/HJgVisRqtX_model.json b/parse/train/HJgVisRqtX/HJgVisRqtX_model.json new file mode 100644 index 0000000000000000000000000000000000000000..4d685f000517434a0786ca53e7ad410569155958 --- /dev/null +++ b/parse/train/HJgVisRqtX/HJgVisRqtX_model.json @@ -0,0 +1,24423 @@ +[ + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 198, + 1687, + 1554, + 1687, + 1554, + 2054, + 198, + 2054 + ], + "score": 0.985 + }, + { + "category_id": 1, + "poly": [ + 297, + 485, + 1454, + 485, + 1454, + 975, + 297, + 975 + ], + "score": 0.985 + }, + { + "category_id": 1, + "poly": [ + 197, + 1083, + 1554, + 1083, + 1554, + 1390, + 197, + 1390 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 197, + 1400, + 1555, + 1400, + 1555, + 1676, + 197, + 1676 + ], + "score": 0.978 + }, + { + "category_id": 0, + "poly": [ + 200, + 119, + 1550, + 119, + 1550, + 224, + 200, + 224 + ], + "score": 0.955 + }, + { + "category_id": 1, + "poly": [ + 213, + 273, + 581, + 273, + 581, + 334, + 213, + 334 + ], + "score": 0.913 + }, + { + "category_id": 0, + "poly": [ + 202, + 1021, + 474, + 1021, + 474, + 1056, + 202, + 1056 + ], + "score": 0.901 + }, + { + "category_id": 0, + "poly": [ + 798, + 415, + 952, + 415, + 952, + 448, + 798, + 448 + ], + "score": 0.881 + }, + { + "category_id": 2, + "poly": [ + 198, + 74, + 759, + 74, + 759, + 105, + 198, + 105 + ], + "score": 0.863 + }, + { + "category_id": 2, + "poly": [ + 867, + 2109, + 882, + 2109, + 882, + 2132, + 867, + 2132 + ], + "score": 0.757 + }, + { + "category_id": 15, + "poly": [ + 192.0, + 115.0, + 1556.0, + 115.0, + 1556.0, + 175.0, + 192.0, + 175.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 198.0, + 175.0, + 500.0, + 175.0, + 500.0, + 226.0, + 198.0, + 226.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 1017.0, + 479.0, + 1017.0, + 479.0, + 1064.0, + 194.0, + 1064.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 793.0, + 411.0, + 959.0, + 411.0, + 959.0, + 454.0, + 793.0, + 454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 197.0, + 72.0, + 758.0, + 72.0, + 758.0, + 108.0, + 197.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 866.0, + 2108.0, + 885.0, + 2108.0, + 885.0, + 2138.0, + 866.0, + 2138.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 192.0, + 1688.0, + 1555.0, + 1688.0, + 1555.0, + 1725.0, + 192.0, + 1725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 1720.0, + 1551.0, + 1720.0, + 1551.0, + 1752.0, + 194.0, + 1752.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 1748.0, + 1555.0, + 1748.0, + 1555.0, + 1784.0, + 194.0, + 1784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 1779.0, + 1552.0, + 1779.0, + 1552.0, + 1815.0, + 194.0, + 1815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 1811.0, + 1551.0, + 1811.0, + 1551.0, + 1843.0, + 194.0, + 1843.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 1840.0, + 1555.0, + 1840.0, + 1555.0, + 1876.0, + 194.0, + 1876.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 192.0, + 1871.0, + 1557.0, + 1871.0, + 1557.0, + 1907.0, + 192.0, + 1907.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 189.0, + 1897.0, + 1559.0, + 1897.0, + 1559.0, + 1941.0, + 189.0, + 1941.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 192.0, + 1932.0, + 1555.0, + 1932.0, + 1555.0, + 1968.0, + 192.0, + 1968.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 1962.0, + 1555.0, + 1962.0, + 1555.0, + 1999.0, + 194.0, + 1999.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 192.0, + 1990.0, + 1555.0, + 1990.0, + 1555.0, + 2030.0, + 192.0, + 2030.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 2022.0, + 928.0, + 2022.0, + 928.0, + 2059.0, + 194.0, + 2059.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 488.0, + 1456.0, + 488.0, + 1456.0, + 521.0, + 295.0, + 521.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 517.0, + 1453.0, + 517.0, + 1453.0, + 550.0, + 293.0, + 550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 546.0, + 1457.0, + 546.0, + 1457.0, + 584.0, + 292.0, + 584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 572.0, + 1457.0, + 572.0, + 1457.0, + 619.0, + 290.0, + 619.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 610.0, + 1457.0, + 610.0, + 1457.0, + 643.0, + 294.0, + 643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 635.0, + 1458.0, + 635.0, + 1458.0, + 677.0, + 290.0, + 677.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 668.0, + 1458.0, + 668.0, + 1458.0, + 704.0, + 292.0, + 704.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 700.0, + 1457.0, + 700.0, + 1457.0, + 737.0, + 292.0, + 737.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 729.0, + 1456.0, + 729.0, + 1456.0, + 764.0, + 293.0, + 764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 760.0, + 1455.0, + 760.0, + 1455.0, + 795.0, + 293.0, + 795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 789.0, + 1457.0, + 789.0, + 1457.0, + 826.0, + 294.0, + 826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 820.0, + 1457.0, + 820.0, + 1457.0, + 858.0, + 292.0, + 858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 850.0, + 1457.0, + 850.0, + 1457.0, + 889.0, + 292.0, + 889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 884.0, + 1456.0, + 884.0, + 1456.0, + 917.0, + 294.0, + 917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 908.0, + 1457.0, + 908.0, + 1457.0, + 951.0, + 290.0, + 951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 942.0, + 1391.0, + 942.0, + 1391.0, + 979.0, + 294.0, + 979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 1082.0, + 1554.0, + 1082.0, + 1554.0, + 1122.0, + 193.0, + 1122.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 1114.0, + 1555.0, + 1114.0, + 1555.0, + 1154.0, + 194.0, + 1154.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 191.0, + 1141.0, + 1555.0, + 1141.0, + 1555.0, + 1186.0, + 191.0, + 1186.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 191.0, + 1176.0, + 1555.0, + 1176.0, + 1555.0, + 1214.0, + 191.0, + 1214.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 190.0, + 1200.0, + 1559.0, + 1200.0, + 1559.0, + 1248.0, + 190.0, + 1248.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 1235.0, + 1557.0, + 1235.0, + 1557.0, + 1275.0, + 193.0, + 1275.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 1268.0, + 1555.0, + 1268.0, + 1555.0, + 1303.0, + 194.0, + 1303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 1299.0, + 1555.0, + 1299.0, + 1555.0, + 1333.0, + 194.0, + 1333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 1327.0, + 1557.0, + 1327.0, + 1557.0, + 1367.0, + 193.0, + 1367.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 196.0, + 1359.0, + 1434.0, + 1359.0, + 1434.0, + 1394.0, + 196.0, + 1394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 1400.0, + 1556.0, + 1400.0, + 1556.0, + 1437.0, + 193.0, + 1437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 190.0, + 1426.0, + 1558.0, + 1426.0, + 1558.0, + 1472.0, + 190.0, + 1472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 191.0, + 1457.0, + 1556.0, + 1457.0, + 1556.0, + 1500.0, + 191.0, + 1500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 191.0, + 1490.0, + 1558.0, + 1490.0, + 1558.0, + 1531.0, + 191.0, + 1531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 191.0, + 1519.0, + 1556.0, + 1519.0, + 1556.0, + 1562.0, + 191.0, + 1562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 1553.0, + 1556.0, + 1553.0, + 1556.0, + 1589.0, + 194.0, + 1589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 1584.0, + 1556.0, + 1584.0, + 1556.0, + 1620.0, + 194.0, + 1620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 189.0, + 1613.0, + 1556.0, + 1613.0, + 1556.0, + 1651.0, + 189.0, + 1651.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 1645.0, + 467.0, + 1645.0, + 467.0, + 1682.0, + 193.0, + 1682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 215.0, + 273.0, + 460.0, + 273.0, + 460.0, + 306.0, + 215.0, + 306.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 211.0, + 303.0, + 582.0, + 303.0, + 582.0, + 336.0, + 211.0, + 336.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 0, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 197, + 1177, + 1553, + 1177, + 1553, + 1544, + 197, + 1544 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 197, + 355, + 1554, + 355, + 1554, + 661, + 197, + 661 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 197, + 921, + 1555, + 921, + 1555, + 1166, + 197, + 1166 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 197, + 129, + 1554, + 129, + 1554, + 345, + 197, + 345 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 198, + 671, + 1554, + 671, + 1554, + 857, + 198, + 857 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 198, + 1869, + 1555, + 1869, + 1555, + 2054, + 198, + 2054 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 196, + 1609, + 1545, + 1609, + 1545, + 1670, + 196, + 1670 + ], + "score": 0.945 + }, + { + "category_id": 1, + "poly": [ + 201, + 1726, + 1542, + 1726, + 1542, + 1787, + 201, + 1787 + ], + "score": 0.939 + }, + { + "category_id": 0, + "poly": [ + 201, + 1565, + 612, + 1565, + 612, + 1600, + 201, + 1600 + ], + "score": 0.913 + }, + { + "category_id": 0, + "poly": [ + 200, + 877, + 487, + 877, + 487, + 912, + 200, + 912 + ], + "score": 0.909 + }, + { + "category_id": 2, + "poly": [ + 199, + 75, + 757, + 75, + 757, + 105, + 199, + 105 + ], + "score": 0.904 + }, + { + "category_id": 0, + "poly": [ + 200, + 1682, + 598, + 1682, + 598, + 1713, + 200, + 1713 + ], + "score": 0.896 + }, + { + "category_id": 2, + "poly": [ + 866, + 2108, + 883, + 2108, + 883, + 2132, + 866, + 2132 + ], + "score": 0.782 + }, + { + "category_id": 1, + "poly": [ + 201, + 1797, + 1546, + 1797, + 1546, + 1861, + 201, + 1861 + ], + "score": 0.576 + }, + { + "category_id": 13, + "poly": [ + 1339, + 1798, + 1470, + 1798, + 1470, + 1832, + 1339, + 1832 + ], + "score": 0.93, + "latex": "G = ( \\nu , \\mathcal { E } )" + }, + { + "category_id": 13, + "poly": [ + 413, + 1992, + 545, + 1992, + 545, + 2026, + 413, + 2026 + ], + "score": 0.92, + "latex": "G = ( \\nu , \\mathcal { E } )" + }, + { + "category_id": 13, + "poly": [ + 410, + 2025, + 434, + 2025, + 434, + 2050, + 410, + 2050 + ], + "score": 0.81, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 503, + 1830, + 523, + 1830, + 523, + 1856, + 503, + 1856 + ], + "score": 0.74, + "latex": "\\mathcal { E }" + }, + { + "category_id": 13, + "poly": [ + 197, + 1830, + 221, + 1830, + 221, + 1857, + 197, + 1857 + ], + "score": 0.46, + "latex": "\\nu" + }, + { + "category_id": 15, + "poly": [ + 191.0, + 1560.0, + 617.0, + 1560.0, + 617.0, + 1606.0, + 191.0, + 1606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 192.0, + 874.0, + 493.0, + 874.0, + 493.0, + 918.0, + 192.0, + 918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 198.0, + 73.0, + 758.0, + 73.0, + 758.0, + 108.0, + 198.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 195.0, + 1681.0, + 598.0, + 1681.0, + 598.0, + 1717.0, + 195.0, + 1717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 864.0, + 2105.0, + 887.0, + 2105.0, + 887.0, + 2140.0, + 864.0, + 2140.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 1175.0, + 1553.0, + 1175.0, + 1553.0, + 1212.0, + 194.0, + 1212.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 1207.0, + 1556.0, + 1207.0, + 1556.0, + 1244.0, + 193.0, + 1244.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 1238.0, + 1557.0, + 1238.0, + 1557.0, + 1274.0, + 193.0, + 1274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 1269.0, + 1554.0, + 1269.0, + 1554.0, + 1305.0, + 194.0, + 1305.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 1299.0, + 1557.0, + 1299.0, + 1557.0, + 1336.0, + 194.0, + 1336.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 1328.0, + 1556.0, + 1328.0, + 1556.0, + 1365.0, + 193.0, + 1365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 190.0, + 1355.0, + 1558.0, + 1355.0, + 1558.0, + 1398.0, + 190.0, + 1398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 1390.0, + 1556.0, + 1390.0, + 1556.0, + 1426.0, + 193.0, + 1426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 191.0, + 1420.0, + 1556.0, + 1420.0, + 1556.0, + 1455.0, + 191.0, + 1455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 1451.0, + 1556.0, + 1451.0, + 1556.0, + 1487.0, + 194.0, + 1487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 1485.0, + 1554.0, + 1485.0, + 1554.0, + 1517.0, + 194.0, + 1517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 1514.0, + 919.0, + 1514.0, + 919.0, + 1546.0, + 194.0, + 1546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 357.0, + 1554.0, + 357.0, + 1554.0, + 392.0, + 194.0, + 392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 386.0, + 1557.0, + 386.0, + 1557.0, + 426.0, + 193.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 191.0, + 414.0, + 1557.0, + 414.0, + 1557.0, + 456.0, + 191.0, + 456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 446.0, + 1557.0, + 446.0, + 1557.0, + 486.0, + 193.0, + 486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 476.0, + 1557.0, + 476.0, + 1557.0, + 516.0, + 193.0, + 516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 191.0, + 506.0, + 1554.0, + 506.0, + 1554.0, + 544.0, + 191.0, + 544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 191.0, + 537.0, + 1557.0, + 537.0, + 1557.0, + 576.0, + 191.0, + 576.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 568.0, + 1557.0, + 568.0, + 1557.0, + 608.0, + 193.0, + 608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 598.0, + 1557.0, + 598.0, + 1557.0, + 638.0, + 194.0, + 638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 629.0, + 783.0, + 629.0, + 783.0, + 668.0, + 194.0, + 668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 919.0, + 1553.0, + 919.0, + 1553.0, + 959.0, + 193.0, + 959.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 951.0, + 1555.0, + 951.0, + 1555.0, + 990.0, + 193.0, + 990.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 982.0, + 1553.0, + 982.0, + 1553.0, + 1020.0, + 193.0, + 1020.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 1011.0, + 1555.0, + 1011.0, + 1555.0, + 1050.0, + 194.0, + 1050.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 1042.0, + 1555.0, + 1042.0, + 1555.0, + 1080.0, + 194.0, + 1080.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 1073.0, + 1555.0, + 1073.0, + 1555.0, + 1111.0, + 193.0, + 1111.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 1100.0, + 1558.0, + 1100.0, + 1558.0, + 1142.0, + 193.0, + 1142.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 1133.0, + 1324.0, + 1133.0, + 1324.0, + 1171.0, + 194.0, + 1171.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 130.0, + 1555.0, + 130.0, + 1555.0, + 166.0, + 194.0, + 166.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 161.0, + 1555.0, + 161.0, + 1555.0, + 197.0, + 194.0, + 197.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 191.0, + 189.0, + 1555.0, + 189.0, + 1555.0, + 229.0, + 191.0, + 229.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 222.0, + 1555.0, + 222.0, + 1555.0, + 258.0, + 194.0, + 258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 252.0, + 1555.0, + 252.0, + 1555.0, + 290.0, + 193.0, + 290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 189.0, + 281.0, + 1555.0, + 281.0, + 1555.0, + 319.0, + 189.0, + 319.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 191.0, + 311.0, + 1337.0, + 311.0, + 1337.0, + 351.0, + 191.0, + 351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 192.0, + 669.0, + 1555.0, + 669.0, + 1555.0, + 707.0, + 192.0, + 707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 703.0, + 1557.0, + 703.0, + 1557.0, + 739.0, + 193.0, + 739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 733.0, + 1557.0, + 733.0, + 1557.0, + 770.0, + 194.0, + 770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 763.0, + 1557.0, + 763.0, + 1557.0, + 800.0, + 194.0, + 800.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 192.0, + 791.0, + 1554.0, + 791.0, + 1554.0, + 830.0, + 192.0, + 830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 192.0, + 822.0, + 1084.0, + 822.0, + 1084.0, + 861.0, + 192.0, + 861.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 195.0, + 1871.0, + 1555.0, + 1871.0, + 1555.0, + 1904.0, + 195.0, + 1904.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 192.0, + 1901.0, + 1558.0, + 1901.0, + 1558.0, + 1936.0, + 192.0, + 1936.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 190.0, + 1930.0, + 1555.0, + 1930.0, + 1555.0, + 1966.0, + 190.0, + 1966.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 191.0, + 1957.0, + 1556.0, + 1957.0, + 1556.0, + 2000.0, + 191.0, + 2000.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 1991.0, + 412.0, + 1991.0, + 412.0, + 2028.0, + 194.0, + 2028.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 546.0, + 1991.0, + 1558.0, + 1991.0, + 1558.0, + 2028.0, + 546.0, + 2028.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 2019.0, + 409.0, + 2019.0, + 409.0, + 2056.0, + 194.0, + 2056.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 435.0, + 2019.0, + 447.0, + 2019.0, + 447.0, + 2056.0, + 435.0, + 2056.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 1608.0, + 1551.0, + 1608.0, + 1551.0, + 1645.0, + 194.0, + 1645.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 1639.0, + 661.0, + 1639.0, + 661.0, + 1676.0, + 194.0, + 1676.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 1718.0, + 1549.0, + 1718.0, + 1549.0, + 1767.0, + 193.0, + 1767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 196.0, + 1758.0, + 760.0, + 1758.0, + 760.0, + 1790.0, + 196.0, + 1790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 195.0, + 1795.0, + 1338.0, + 1795.0, + 1338.0, + 1838.0, + 195.0, + 1838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1471.0, + 1795.0, + 1552.0, + 1795.0, + 1552.0, + 1838.0, + 1471.0, + 1838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 222.0, + 1826.0, + 502.0, + 1826.0, + 502.0, + 1865.0, + 222.0, + 1865.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 524.0, + 1826.0, + 994.0, + 1826.0, + 994.0, + 1865.0, + 524.0, + 1865.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 1, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 196, + 1574, + 1555, + 1574, + 1555, + 1853, + 196, + 1853 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 197, + 1312, + 1556, + 1312, + 1556, + 1528, + 197, + 1528 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 197, + 1074, + 1554, + 1074, + 1554, + 1258, + 197, + 1258 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 198, + 1901, + 1554, + 1901, + 1554, + 2055, + 198, + 2055 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 197, + 885, + 1555, + 885, + 1555, + 1009, + 197, + 1009 + ], + "score": 0.974 + }, + { + "category_id": 3, + "poly": [ + 263, + 115, + 1486, + 115, + 1486, + 594, + 263, + 594 + ], + "score": 0.955 + }, + { + "category_id": 1, + "poly": [ + 201, + 768, + 1542, + 768, + 1542, + 831, + 201, + 831 + ], + "score": 0.933 + }, + { + "category_id": 0, + "poly": [ + 200, + 1030, + 560, + 1030, + 560, + 1064, + 200, + 1064 + ], + "score": 0.919 + }, + { + "category_id": 0, + "poly": [ + 200, + 1269, + 527, + 1269, + 527, + 1300, + 200, + 1300 + ], + "score": 0.91 + }, + { + "category_id": 1, + "poly": [ + 203, + 669, + 1546, + 669, + 1546, + 762, + 203, + 762 + ], + "score": 0.909 + }, + { + "category_id": 0, + "poly": [ + 199, + 1533, + 696, + 1533, + 696, + 1563, + 199, + 1563 + ], + "score": 0.904 + }, + { + "category_id": 0, + "poly": [ + 200, + 1856, + 698, + 1856, + 698, + 1887, + 200, + 1887 + ], + "score": 0.903 + }, + { + "category_id": 2, + "poly": [ + 198, + 75, + 759, + 75, + 759, + 105, + 198, + 105 + ], + "score": 0.902 + }, + { + "category_id": 4, + "poly": [ + 679, + 638, + 1071, + 638, + 1071, + 668, + 679, + 668 + ], + "score": 0.885 + }, + { + "category_id": 2, + "poly": [ + 866, + 2108, + 883, + 2108, + 883, + 2132, + 866, + 2132 + ], + "score": 0.786 + }, + { + "category_id": 0, + "poly": [ + 199, + 841, + 569, + 841, + 569, + 872, + 199, + 872 + ], + "score": 0.71 + }, + { + "category_id": 4, + "poly": [ + 249, + 596, + 1475, + 596, + 1475, + 628, + 249, + 628 + ], + "score": 0.253 + }, + { + "category_id": 1, + "poly": [ + 199, + 841, + 569, + 841, + 569, + 872, + 199, + 872 + ], + "score": 0.232 + }, + { + "category_id": 4, + "poly": [ + 332, + 595, + 1454, + 595, + 1454, + 628, + 332, + 628 + ], + "score": 0.162 + }, + { + "category_id": 13, + "poly": [ + 444, + 727, + 613, + 727, + 613, + 761, + 444, + 761 + ], + "score": 0.93, + "latex": "g _ { i } = ( \\mathcal { V } _ { g _ { i } } , \\mathcal { E } _ { g _ { i } } )" + }, + { + "category_id": 13, + "poly": [ + 419, + 915, + 558, + 915, + 558, + 949, + 419, + 949 + ], + "score": 0.93, + "latex": "f : \\mathcal { V } \\to \\mathbb { R } ^ { d }" + }, + { + "category_id": 13, + "poly": [ + 813, + 886, + 948, + 886, + 948, + 920, + 813, + 920 + ], + "score": 0.93, + "latex": "G = ( \\nu , \\mathcal { E } )" + }, + { + "category_id": 13, + "poly": [ + 515, + 1576, + 650, + 1576, + 650, + 1609, + 515, + 1609 + ], + "score": 0.92, + "latex": "G = ( \\nu , \\mathcal { E } )" + }, + { + "category_id": 13, + "poly": [ + 952, + 727, + 1034, + 727, + 1034, + 760, + 952, + 760 + ], + "score": 0.92, + "latex": "G \\neq g _ { i }" + }, + { + "category_id": 13, + "poly": [ + 1047, + 697, + 1138, + 697, + 1138, + 728, + 1047, + 728 + ], + "score": 0.91, + "latex": "g _ { i } \\in \\mathcal G" + }, + { + "category_id": 13, + "poly": [ + 399, + 1637, + 802, + 1637, + 802, + 1670, + 399, + 1670 + ], + "score": 0.91, + "latex": "\\Gamma ( v ; 1 ) \\stackrel { \\scriptscriptstyle - } { = } \\{ u | u \\in \\mathcal { V } \\wedge ( u , \\bar { v _ { ) } } \\in \\mathcal { E } \\}" + }, + { + "category_id": 13, + "poly": [ + 575, + 696, + 836, + 696, + 836, + 729, + 575, + 729 + ], + "score": 0.91, + "latex": "{ \\mathcal { G } } = \\{ g _ { 1 } , g _ { 2 } , \\cdot \\cdot \\cdot , g _ { m } \\}" + }, + { + "category_id": 13, + "poly": [ + 615, + 947, + 663, + 947, + 663, + 980, + 615, + 980 + ], + "score": 0.9, + "latex": "f ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 1427, + 1608, + 1505, + 1608, + 1505, + 1637, + 1427, + 1637 + ], + "score": 0.9, + "latex": "v \\in \\mathcal V" + }, + { + "category_id": 13, + "poly": [ + 806, + 728, + 899, + 728, + 899, + 761, + 806, + 761 + ], + "score": 0.89, + "latex": "\\mathcal { E } _ { g _ { i } } \\subseteq \\mathcal { E }" + }, + { + "category_id": 13, + "poly": [ + 623, + 2022, + 676, + 2022, + 676, + 2053, + 623, + 2053 + ], + "score": 0.88, + "latex": "{ \\mathcal { G } } ^ { \\mathrm { { D F S } } }" + }, + { + "category_id": 13, + "poly": [ + 605, + 1670, + 803, + 1670, + 803, + 1701, + 605, + 1701 + ], + "score": 0.88, + "latex": "| \\Gamma ( v ; 1 ) | \\geq k - 1" + }, + { + "category_id": 13, + "poly": [ + 254, + 1820, + 306, + 1820, + 306, + 1851, + 254, + 1851 + ], + "score": 0.88, + "latex": "\\bar { \\mathcal { G } } ^ { \\mathrm { B F S } }" + }, + { + "category_id": 13, + "poly": [ + 486, + 1670, + 567, + 1670, + 567, + 1700, + 486, + 1700 + ], + "score": 0.88, + "latex": "\\Gamma ( v ; 1 )" + }, + { + "category_id": 13, + "poly": [ + 1368, + 1699, + 1437, + 1699, + 1437, + 1728, + 1368, + 1728 + ], + "score": 0.88, + "latex": "k - 1" + }, + { + "category_id": 13, + "poly": [ + 698, + 729, + 794, + 729, + 794, + 761, + 698, + 761 + ], + "score": 0.87, + "latex": "\\nu _ { g _ { i } } \\subseteq \\nu" + }, + { + "category_id": 13, + "poly": [ + 244, + 1669, + 311, + 1669, + 311, + 1697, + 244, + 1697 + ], + "score": 0.85, + "latex": "k - 1" + }, + { + "category_id": 13, + "poly": [ + 1029, + 1761, + 1048, + 1761, + 1048, + 1787, + 1029, + 1787 + ], + "score": 0.81, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 418, + 1608, + 443, + 1608, + 443, + 1635, + 418, + 1635 + ], + "score": 0.81, + "latex": "\\nu" + }, + { + "category_id": 13, + "poly": [ + 980, + 1795, + 999, + 1795, + 999, + 1823, + 980, + 1823 + ], + "score": 0.8, + "latex": "p" + }, + { + "category_id": 13, + "poly": [ + 829, + 1796, + 846, + 1796, + 846, + 1823, + 829, + 1823 + ], + "score": 0.79, + "latex": "g" + }, + { + "category_id": 13, + "poly": [ + 1305, + 1761, + 1325, + 1761, + 1325, + 1787, + 1305, + 1787 + ], + "score": 0.79, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 437, + 1825, + 455, + 1825, + 455, + 1853, + 437, + 1853 + ], + "score": 0.79, + "latex": "p" + }, + { + "category_id": 13, + "poly": [ + 1253, + 1731, + 1271, + 1731, + 1271, + 1757, + 1253, + 1757 + ], + "score": 0.77, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 467, + 697, + 494, + 697, + 494, + 725, + 467, + 725 + ], + "score": 0.73, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 929, + 1736, + 947, + 1736, + 947, + 1757, + 929, + 1757 + ], + "score": 0.73, + "latex": "v" + }, + { + "category_id": 13, + "poly": [ + 521, + 1964, + 539, + 1964, + 539, + 1990, + 521, + 1990 + ], + "score": 0.72, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 978, + 1643, + 996, + 1643, + 996, + 1666, + 978, + 1666 + ], + "score": 0.67, + "latex": "v" + }, + { + "category_id": 13, + "poly": [ + 770, + 2028, + 787, + 2028, + 787, + 2055, + 770, + 2055 + ], + "score": 0.67, + "latex": "p" + }, + { + "category_id": 13, + "poly": [ + 197, + 1704, + 215, + 1704, + 215, + 1726, + 197, + 1726 + ], + "score": 0.66, + "latex": "v" + }, + { + "category_id": 13, + "poly": [ + 1109, + 1346, + 1128, + 1346, + 1128, + 1373, + 1109, + 1373 + ], + "score": 0.66, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 1441, + 698, + 1466, + 698, + 1466, + 725, + 1441, + 725 + ], + "score": 0.64, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 282, + 1700, + 840, + 1700, + 840, + 1732, + 282, + 1732 + ], + "score": 0.4, + "latex": "\\Gamma ( v ; 2 ) = \\{ u | \\exists w \\in \\mathcal { V } , ( u , w ) \\in \\mathcal { E } \\land ( w , v ) \\in \\mathcal { E } \\ /" + }, + { + "category_id": 13, + "poly": [ + 333, + 1351, + 350, + 1351, + 350, + 1372, + 333, + 1372 + ], + "score": 0.36, + "latex": "s" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 123.0, + 405.0, + 123.0, + 405.0, + 162.0, + 332.0, + 162.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 500.0, + 121.0, + 606.0, + 121.0, + 606.0, + 157.0, + 500.0, + 157.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 683.0, + 132.0, + 1087.0, + 132.0, + 1087.0, + 167.0, + 683.0, + 167.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1117.0, + 132.0, + 1310.0, + 132.0, + 1310.0, + 168.0, + 1117.0, + 168.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1386.0, + 126.0, + 1473.0, + 126.0, + 1473.0, + 160.0, + 1386.0, + 160.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 314.0, + 152.0, + 421.0, + 152.0, + 421.0, + 192.0, + 314.0, + 192.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 473.0, + 148.0, + 634.0, + 148.0, + 634.0, + 186.0, + 473.0, + 186.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1387.0, + 152.0, + 1470.0, + 152.0, + 1470.0, + 194.0, + 1387.0, + 194.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 519.0, + 211.0, + 530.0, + 211.0, + 530.0, + 222.0, + 519.0, + 222.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 580.0, + 197.0, + 591.0, + 197.0, + 591.0, + 207.0, + 580.0, + 207.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 679.0, + 201.0, + 763.0, + 201.0, + 763.0, + 227.0, + 679.0, + 227.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 801.0, + 200.0, + 890.0, + 200.0, + 890.0, + 227.0, + 801.0, + 227.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 970.0, + 200.0, + 1057.0, + 200.0, + 1057.0, + 227.0, + 970.0, + 227.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1025.0, + 235.0, + 1038.0, + 235.0, + 1038.0, + 261.0, + 1025.0, + 261.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1019.0, + 341.0, + 1037.0, + 341.0, + 1037.0, + 357.0, + 1019.0, + 357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 979.0, + 505.0, + 1022.0, + 505.0, + 1022.0, + 535.0, + 979.0, + 535.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1015.0, + 504.0, + 1039.0, + 504.0, + 1039.0, + 532.0, + 1015.0, + 532.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 192.0, + 1026.0, + 562.0, + 1026.0, + 562.0, + 1069.0, + 192.0, + 1069.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 195.0, + 1267.0, + 529.0, + 1267.0, + 529.0, + 1303.0, + 195.0, + 1303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 1530.0, + 697.0, + 1530.0, + 697.0, + 1566.0, + 194.0, + 1566.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 195.0, + 1854.0, + 699.0, + 1854.0, + 699.0, + 1890.0, + 195.0, + 1890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 195.0, + 70.0, + 759.0, + 70.0, + 759.0, + 109.0, + 195.0, + 109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 675.0, + 635.0, + 1073.0, + 635.0, + 1073.0, + 673.0, + 675.0, + 673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 864.0, + 2105.0, + 885.0, + 2105.0, + 885.0, + 2136.0, + 864.0, + 2136.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 837.0, + 571.0, + 837.0, + 571.0, + 878.0, + 193.0, + 878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 593.0, + 1445.0, + 593.0, + 1445.0, + 631.0, + 294.0, + 631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 593.0, + 1120.0, + 593.0, + 1120.0, + 632.0, + 325.0, + 632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1168.0, + 594.0, + 1444.0, + 594.0, + 1444.0, + 627.0, + 1168.0, + 627.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 192.0, + 1573.0, + 514.0, + 1573.0, + 514.0, + 1613.0, + 192.0, + 1613.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 651.0, + 1573.0, + 1558.0, + 1573.0, + 1558.0, + 1613.0, + 651.0, + 1613.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 1605.0, + 417.0, + 1605.0, + 417.0, + 1642.0, + 193.0, + 1642.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 444.0, + 1605.0, + 1426.0, + 1605.0, + 1426.0, + 1642.0, + 444.0, + 1642.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1506.0, + 1605.0, + 1556.0, + 1605.0, + 1556.0, + 1642.0, + 1506.0, + 1642.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 190.0, + 1632.0, + 398.0, + 1632.0, + 398.0, + 1675.0, + 190.0, + 1675.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 803.0, + 1632.0, + 977.0, + 1632.0, + 977.0, + 1675.0, + 803.0, + 1675.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 997.0, + 1632.0, + 1556.0, + 1632.0, + 1556.0, + 1675.0, + 997.0, + 1675.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 192.0, + 1665.0, + 243.0, + 1665.0, + 243.0, + 1705.0, + 192.0, + 1705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 312.0, + 1665.0, + 485.0, + 1665.0, + 485.0, + 1705.0, + 312.0, + 1705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 568.0, + 1665.0, + 604.0, + 1665.0, + 604.0, + 1705.0, + 568.0, + 1705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 804.0, + 1665.0, + 1556.0, + 1665.0, + 1556.0, + 1705.0, + 804.0, + 1705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 192.0, + 1697.0, + 196.0, + 1697.0, + 196.0, + 1734.0, + 192.0, + 1734.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 216.0, + 1697.0, + 281.0, + 1697.0, + 281.0, + 1734.0, + 216.0, + 1734.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 841.0, + 1697.0, + 1367.0, + 1697.0, + 1367.0, + 1734.0, + 841.0, + 1734.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1438.0, + 1697.0, + 1555.0, + 1697.0, + 1555.0, + 1734.0, + 1438.0, + 1734.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 1728.0, + 928.0, + 1728.0, + 928.0, + 1765.0, + 193.0, + 1765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 948.0, + 1728.0, + 1252.0, + 1728.0, + 1252.0, + 1765.0, + 948.0, + 1765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1272.0, + 1728.0, + 1555.0, + 1728.0, + 1555.0, + 1765.0, + 1272.0, + 1765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 190.0, + 1756.0, + 1028.0, + 1756.0, + 1028.0, + 1796.0, + 190.0, + 1796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1049.0, + 1756.0, + 1304.0, + 1756.0, + 1304.0, + 1796.0, + 1049.0, + 1796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1326.0, + 1756.0, + 1556.0, + 1756.0, + 1556.0, + 1796.0, + 1326.0, + 1796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 192.0, + 1789.0, + 828.0, + 1789.0, + 828.0, + 1825.0, + 192.0, + 1825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 847.0, + 1789.0, + 979.0, + 1789.0, + 979.0, + 1825.0, + 847.0, + 1825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1000.0, + 1789.0, + 1555.0, + 1789.0, + 1555.0, + 1825.0, + 1000.0, + 1825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 189.0, + 1814.0, + 253.0, + 1814.0, + 253.0, + 1860.0, + 189.0, + 1860.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 1814.0, + 436.0, + 1814.0, + 436.0, + 1860.0, + 307.0, + 1860.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 456.0, + 1814.0, + 716.0, + 1814.0, + 716.0, + 1860.0, + 456.0, + 1860.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 190.0, + 1308.0, + 1557.0, + 1308.0, + 1557.0, + 1351.0, + 190.0, + 1351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 1344.0, + 332.0, + 1344.0, + 332.0, + 1380.0, + 194.0, + 1380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 1344.0, + 1108.0, + 1344.0, + 1108.0, + 1380.0, + 351.0, + 1380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1129.0, + 1344.0, + 1554.0, + 1344.0, + 1554.0, + 1380.0, + 1129.0, + 1380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 1374.0, + 1556.0, + 1374.0, + 1556.0, + 1410.0, + 194.0, + 1410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 1405.0, + 1554.0, + 1405.0, + 1554.0, + 1441.0, + 194.0, + 1441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 1433.0, + 1556.0, + 1433.0, + 1556.0, + 1474.0, + 193.0, + 1474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 1464.0, + 1553.0, + 1464.0, + 1553.0, + 1501.0, + 194.0, + 1501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 1496.0, + 703.0, + 1496.0, + 703.0, + 1532.0, + 193.0, + 1532.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 1073.0, + 1554.0, + 1073.0, + 1554.0, + 1105.0, + 194.0, + 1105.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 1104.0, + 1557.0, + 1104.0, + 1557.0, + 1141.0, + 193.0, + 1141.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 1136.0, + 1555.0, + 1136.0, + 1555.0, + 1169.0, + 194.0, + 1169.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 191.0, + 1163.0, + 1555.0, + 1163.0, + 1555.0, + 1202.0, + 191.0, + 1202.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 1197.0, + 1552.0, + 1197.0, + 1552.0, + 1230.0, + 194.0, + 1230.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 1224.0, + 689.0, + 1224.0, + 689.0, + 1264.0, + 193.0, + 1264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 195.0, + 1902.0, + 1555.0, + 1902.0, + 1555.0, + 1937.0, + 195.0, + 1937.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 192.0, + 1929.0, + 1557.0, + 1929.0, + 1557.0, + 1967.0, + 192.0, + 1967.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 1962.0, + 520.0, + 1962.0, + 520.0, + 2002.0, + 194.0, + 2002.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 540.0, + 1962.0, + 1557.0, + 1962.0, + 1557.0, + 2002.0, + 540.0, + 2002.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 1991.0, + 1557.0, + 1991.0, + 1557.0, + 2030.0, + 194.0, + 2030.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 189.0, + 2014.0, + 622.0, + 2014.0, + 622.0, + 2062.0, + 189.0, + 2062.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 677.0, + 2014.0, + 769.0, + 2014.0, + 769.0, + 2062.0, + 677.0, + 2062.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 788.0, + 2014.0, + 809.0, + 2014.0, + 809.0, + 2062.0, + 788.0, + 2062.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 191.0, + 883.0, + 812.0, + 883.0, + 812.0, + 923.0, + 191.0, + 923.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 949.0, + 883.0, + 1559.0, + 883.0, + 1559.0, + 923.0, + 949.0, + 923.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 190.0, + 913.0, + 418.0, + 913.0, + 418.0, + 951.0, + 190.0, + 951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 559.0, + 913.0, + 1555.0, + 913.0, + 1555.0, + 951.0, + 559.0, + 951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 191.0, + 944.0, + 614.0, + 944.0, + 614.0, + 981.0, + 191.0, + 981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 664.0, + 944.0, + 1556.0, + 944.0, + 1556.0, + 981.0, + 664.0, + 981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 976.0, + 1333.0, + 976.0, + 1333.0, + 1011.0, + 194.0, + 1011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 764.0, + 1548.0, + 764.0, + 1548.0, + 806.0, + 193.0, + 806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 196.0, + 801.0, + 843.0, + 801.0, + 843.0, + 833.0, + 196.0, + 833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 195.0, + 661.0, + 1551.0, + 661.0, + 1551.0, + 700.0, + 195.0, + 700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 197.0, + 696.0, + 466.0, + 696.0, + 466.0, + 734.0, + 197.0, + 734.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 495.0, + 696.0, + 574.0, + 696.0, + 574.0, + 734.0, + 495.0, + 734.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 837.0, + 696.0, + 1046.0, + 696.0, + 1046.0, + 734.0, + 837.0, + 734.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1139.0, + 696.0, + 1440.0, + 696.0, + 1440.0, + 734.0, + 1139.0, + 734.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1467.0, + 696.0, + 1552.0, + 696.0, + 1552.0, + 734.0, + 1467.0, + 734.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 720.0, + 443.0, + 720.0, + 443.0, + 767.0, + 194.0, + 767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 614.0, + 720.0, + 697.0, + 720.0, + 697.0, + 767.0, + 614.0, + 767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 795.0, + 720.0, + 805.0, + 720.0, + 805.0, + 767.0, + 795.0, + 767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 900.0, + 720.0, + 951.0, + 720.0, + 951.0, + 767.0, + 900.0, + 767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1035.0, + 720.0, + 1047.0, + 720.0, + 1047.0, + 767.0, + 1035.0, + 767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 837.0, + 571.0, + 837.0, + 571.0, + 878.0, + 193.0, + 878.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 2, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 197, + 760, + 1555, + 760, + 1555, + 1050, + 197, + 1050 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 197, + 1593, + 1555, + 1593, + 1555, + 1809, + 197, + 1809 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 197, + 332, + 1555, + 332, + 1555, + 579, + 197, + 579 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 197, + 1098, + 1556, + 1098, + 1556, + 1295, + 197, + 1295 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 198, + 129, + 1554, + 129, + 1554, + 285, + 198, + 285 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 198, + 589, + 1555, + 589, + 1555, + 711, + 198, + 711 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 198, + 1305, + 1554, + 1305, + 1554, + 1399, + 198, + 1399 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 197, + 1858, + 1555, + 1858, + 1555, + 1981, + 197, + 1981 + ], + "score": 0.971 + }, + { + "category_id": 1, + "poly": [ + 198, + 1453, + 1555, + 1453, + 1555, + 1546, + 198, + 1546 + ], + "score": 0.97 + }, + { + "category_id": 1, + "poly": [ + 191, + 1991, + 1549, + 1991, + 1549, + 2056, + 191, + 2056 + ], + "score": 0.933 + }, + { + "category_id": 0, + "poly": [ + 201, + 717, + 594, + 717, + 594, + 748, + 201, + 748 + ], + "score": 0.912 + }, + { + "category_id": 0, + "poly": [ + 199, + 1814, + 620, + 1814, + 620, + 1845, + 199, + 1845 + ], + "score": 0.91 + }, + { + "category_id": 0, + "poly": [ + 199, + 1409, + 424, + 1409, + 424, + 1440, + 199, + 1440 + ], + "score": 0.902 + }, + { + "category_id": 2, + "poly": [ + 199, + 75, + 757, + 75, + 757, + 105, + 199, + 105 + ], + "score": 0.896 + }, + { + "category_id": 0, + "poly": [ + 201, + 288, + 680, + 288, + 680, + 319, + 201, + 319 + ], + "score": 0.884 + }, + { + "category_id": 0, + "poly": [ + 201, + 1054, + 592, + 1054, + 592, + 1085, + 201, + 1085 + ], + "score": 0.877 + }, + { + "category_id": 0, + "poly": [ + 203, + 1550, + 804, + 1550, + 804, + 1581, + 203, + 1581 + ], + "score": 0.814 + }, + { + "category_id": 2, + "poly": [ + 866, + 2108, + 883, + 2108, + 883, + 2131, + 866, + 2131 + ], + "score": 0.789 + }, + { + "category_id": 13, + "poly": [ + 806, + 944, + 959, + 944, + 959, + 992, + 806, + 992 + ], + "score": 0.94, + "latex": "\\begin{array} { r } { p ( u ) \\ = \\ \\frac { d ( u ) } { 2 | \\mathcal { E } | } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1315, + 1190, + 1421, + 1190, + 1421, + 1236, + 1315, + 1236 + ], + "score": 0.94, + "latex": "\\frac { d ( u ) + d ( v ) } { 2 | \\mathcal { E } | }" + }, + { + "category_id": 13, + "poly": [ + 468, + 1194, + 592, + 1194, + 592, + 1229, + 468, + 1229 + ], + "score": 0.93, + "latex": "( u , v ) \\in \\mathcal { E }" + }, + { + "category_id": 13, + "poly": [ + 1252, + 913, + 1449, + 913, + 1449, + 947, + 1252, + 947 + ], + "score": 0.93, + "latex": "d ( u ) = | \\Gamma ( u ; 1 ) |" + }, + { + "category_id": 13, + "poly": [ + 260, + 485, + 413, + 485, + 413, + 519, + 260, + 519 + ], + "score": 0.93, + "latex": "\\Gamma ( u ; 1 ) \\setminus \\{ v \\}" + }, + { + "category_id": 13, + "poly": [ + 797, + 394, + 882, + 394, + 882, + 427, + 797, + 427 + ], + "score": 0.93, + "latex": "( 1 - p )" + }, + { + "category_id": 13, + "poly": [ + 372, + 1685, + 416, + 1685, + 416, + 1719, + 372, + 1719 + ], + "score": 0.92, + "latex": "M _ { i } ^ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 1189, + 1654, + 1511, + 1654, + 1511, + 1689, + 1189, + 1689 + ], + "score": 0.92, + "latex": "\\mathcal { M } ^ { 1 } = \\{ \\hat { M _ { 1 } ^ { 1 } } , \\hat { M } _ { 2 } ^ { 1 } , \\cdot \\cdot \\cdot , M _ { m } ^ { 1 } \\}" + }, + { + "category_id": 13, + "poly": [ + 924, + 424, + 1058, + 424, + 1058, + 457, + 924, + 457 + ], + "score": 0.92, + "latex": "u \\in \\Gamma ( v ; 1 )" + }, + { + "category_id": 13, + "poly": [ + 848, + 455, + 999, + 455, + 999, + 488, + 848, + 488 + ], + "score": 0.92, + "latex": "\\Gamma ( v ; 1 ) \\setminus \\{ u \\}" + }, + { + "category_id": 13, + "poly": [ + 445, + 1715, + 489, + 1715, + 489, + 1749, + 445, + 1749 + ], + "score": 0.91, + "latex": "M _ { i } ^ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 1131, + 914, + 1214, + 914, + 1214, + 943, + 1131, + 943 + ], + "score": 0.9, + "latex": "v \\in \\mathcal V" + }, + { + "category_id": 13, + "poly": [ + 325, + 425, + 401, + 425, + 401, + 453, + 325, + 453 + ], + "score": 0.9, + "latex": "v \\in \\mathcal V" + }, + { + "category_id": 13, + "poly": [ + 712, + 1514, + 755, + 1514, + 755, + 1544, + 712, + 1544 + ], + "score": 0.9, + "latex": "\\mathcal { G } ^ { \\mathrm { E S } }" + }, + { + "category_id": 13, + "poly": [ + 1291, + 1018, + 1334, + 1018, + 1334, + 1047, + 1291, + 1047 + ], + "score": 0.89, + "latex": "\\mathcal { G } ^ { \\mathrm { N S } }" + }, + { + "category_id": 13, + "poly": [ + 478, + 253, + 561, + 253, + 561, + 284, + 478, + 284 + ], + "score": 0.89, + "latex": "( k - 1 )" + }, + { + "category_id": 13, + "poly": [ + 660, + 1262, + 701, + 1262, + 701, + 1292, + 660, + 1292 + ], + "score": 0.89, + "latex": "\\mathcal { G } ^ { \\mathrm { E S } }" + }, + { + "category_id": 13, + "poly": [ + 784, + 1715, + 813, + 1715, + 813, + 1750, + 784, + 1750 + ], + "score": 0.89, + "latex": "\\theta _ { i } ^ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 486, + 546, + 529, + 546, + 529, + 577, + 486, + 577 + ], + "score": 0.89, + "latex": "{ \\mathcal { G } } ^ { \\mathrm { H S } }" + }, + { + "category_id": 13, + "poly": [ + 735, + 1657, + 773, + 1657, + 773, + 1686, + 735, + 1686 + ], + "score": 0.88, + "latex": "1 _ { s t }" + }, + { + "category_id": 13, + "poly": [ + 1172, + 456, + 1238, + 456, + 1238, + 486, + 1172, + 486 + ], + "score": 0.88, + "latex": "1 - p" + }, + { + "category_id": 13, + "poly": [ + 451, + 1514, + 503, + 1514, + 503, + 1545, + 451, + 1545 + ], + "score": 0.86, + "latex": "{ \\mathcal { G } } ^ { \\mathrm { B F S } }" + }, + { + "category_id": 13, + "poly": [ + 634, + 1514, + 679, + 1514, + 679, + 1545, + 634, + 1545 + ], + "score": 0.86, + "latex": "\\mathcal { G } ^ { \\mathrm { N S } }" + }, + { + "category_id": 13, + "poly": [ + 1257, + 1485, + 1279, + 1485, + 1279, + 1513, + 1257, + 1513 + ], + "score": 0.84, + "latex": "\\mathcal { G }" + }, + { + "category_id": 13, + "poly": [ + 514, + 1514, + 567, + 1514, + 567, + 1545, + 514, + 1545 + ], + "score": 0.82, + "latex": "{ \\mathcal { G } } ^ { \\mathrm { { D F S } } }" + }, + { + "category_id": 13, + "poly": [ + 578, + 1514, + 623, + 1514, + 623, + 1545, + 578, + 1545 + ], + "score": 0.81, + "latex": "\\mathcal { G } ^ { \\mathrm { H S } }" + }, + { + "category_id": 13, + "poly": [ + 451, + 459, + 470, + 459, + 470, + 486, + 451, + 486 + ], + "score": 0.8, + "latex": "p" + }, + { + "category_id": 13, + "poly": [ + 896, + 488, + 916, + 488, + 916, + 513, + 896, + 513 + ], + "score": 0.79, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 726, + 398, + 745, + 398, + 745, + 426, + 726, + 426 + ], + "score": 0.78, + "latex": "p" + }, + { + "category_id": 13, + "poly": [ + 390, + 957, + 409, + 957, + 409, + 978, + 390, + 978 + ], + "score": 0.73, + "latex": "u" + }, + { + "category_id": 13, + "poly": [ + 248, + 1691, + 275, + 1691, + 275, + 1715, + 248, + 1715 + ], + "score": 0.69, + "latex": "m" + }, + { + "category_id": 15, + "poly": [ + 196.0, + 717.0, + 598.0, + 717.0, + 598.0, + 750.0, + 196.0, + 750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 197.0, + 1814.0, + 622.0, + 1814.0, + 622.0, + 1847.0, + 197.0, + 1847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 1406.0, + 431.0, + 1406.0, + 431.0, + 1445.0, + 194.0, + 1445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 198.0, + 73.0, + 758.0, + 73.0, + 758.0, + 108.0, + 198.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 195.0, + 286.0, + 683.0, + 286.0, + 683.0, + 322.0, + 195.0, + 322.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 195.0, + 1052.0, + 595.0, + 1052.0, + 595.0, + 1088.0, + 195.0, + 1088.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 196.0, + 1548.0, + 810.0, + 1548.0, + 810.0, + 1585.0, + 196.0, + 1585.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 864.0, + 2106.0, + 887.0, + 2106.0, + 887.0, + 2138.0, + 864.0, + 2138.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 760.0, + 1555.0, + 760.0, + 1555.0, + 797.0, + 194.0, + 797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 786.0, + 1558.0, + 786.0, + 1558.0, + 830.0, + 193.0, + 830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 820.0, + 1555.0, + 820.0, + 1555.0, + 858.0, + 193.0, + 858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 191.0, + 852.0, + 1555.0, + 852.0, + 1555.0, + 890.0, + 191.0, + 890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 191.0, + 882.0, + 1555.0, + 882.0, + 1555.0, + 917.0, + 191.0, + 917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 913.0, + 1130.0, + 913.0, + 1130.0, + 951.0, + 194.0, + 951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1215.0, + 913.0, + 1251.0, + 913.0, + 1251.0, + 951.0, + 1215.0, + 951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1450.0, + 913.0, + 1555.0, + 913.0, + 1555.0, + 951.0, + 1450.0, + 951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 191.0, + 946.0, + 389.0, + 946.0, + 389.0, + 990.0, + 191.0, + 990.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 410.0, + 946.0, + 805.0, + 946.0, + 805.0, + 990.0, + 410.0, + 990.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 960.0, + 943.0, + 963.0, + 943.0, + 963.0, + 992.0, + 960.0, + 992.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 979.0, + 951.0, + 1555.0, + 951.0, + 1555.0, + 984.0, + 979.0, + 984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 190.0, + 984.0, + 1558.0, + 984.0, + 1558.0, + 1025.0, + 190.0, + 1025.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 188.0, + 1013.0, + 1290.0, + 1013.0, + 1290.0, + 1056.0, + 188.0, + 1056.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1335.0, + 1013.0, + 1347.0, + 1013.0, + 1347.0, + 1056.0, + 1335.0, + 1056.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 1594.0, + 1555.0, + 1594.0, + 1555.0, + 1630.0, + 194.0, + 1630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 1624.0, + 1556.0, + 1624.0, + 1556.0, + 1665.0, + 193.0, + 1665.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 188.0, + 1643.0, + 734.0, + 1643.0, + 734.0, + 1703.0, + 188.0, + 1703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 774.0, + 1643.0, + 1188.0, + 1643.0, + 1188.0, + 1703.0, + 774.0, + 1703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1512.0, + 1643.0, + 1561.0, + 1643.0, + 1561.0, + 1703.0, + 1512.0, + 1703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 1685.0, + 247.0, + 1685.0, + 247.0, + 1726.0, + 193.0, + 1726.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 276.0, + 1685.0, + 371.0, + 1685.0, + 371.0, + 1726.0, + 276.0, + 1726.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 417.0, + 1685.0, + 1558.0, + 1685.0, + 1558.0, + 1726.0, + 417.0, + 1726.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 1714.0, + 444.0, + 1714.0, + 444.0, + 1754.0, + 193.0, + 1754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 490.0, + 1714.0, + 783.0, + 1714.0, + 783.0, + 1754.0, + 490.0, + 1754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 814.0, + 1714.0, + 1555.0, + 1714.0, + 1555.0, + 1754.0, + 814.0, + 1754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 1747.0, + 1555.0, + 1747.0, + 1555.0, + 1782.0, + 193.0, + 1782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 1778.0, + 1193.0, + 1778.0, + 1193.0, + 1815.0, + 194.0, + 1815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 191.0, + 327.0, + 1556.0, + 327.0, + 1556.0, + 373.0, + 191.0, + 373.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 363.0, + 1556.0, + 363.0, + 1556.0, + 401.0, + 193.0, + 401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 191.0, + 390.0, + 725.0, + 390.0, + 725.0, + 434.0, + 191.0, + 434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 746.0, + 390.0, + 796.0, + 390.0, + 796.0, + 434.0, + 746.0, + 434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 883.0, + 390.0, + 1558.0, + 390.0, + 1558.0, + 434.0, + 883.0, + 434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 423.0, + 324.0, + 423.0, + 324.0, + 462.0, + 193.0, + 462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 402.0, + 423.0, + 923.0, + 423.0, + 923.0, + 462.0, + 402.0, + 462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1059.0, + 423.0, + 1553.0, + 423.0, + 1553.0, + 462.0, + 1059.0, + 462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 191.0, + 449.0, + 450.0, + 449.0, + 450.0, + 494.0, + 191.0, + 494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 471.0, + 449.0, + 847.0, + 449.0, + 847.0, + 494.0, + 471.0, + 494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1000.0, + 449.0, + 1171.0, + 449.0, + 1171.0, + 494.0, + 1000.0, + 494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1239.0, + 449.0, + 1556.0, + 449.0, + 1556.0, + 494.0, + 1239.0, + 494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 483.0, + 259.0, + 483.0, + 259.0, + 522.0, + 194.0, + 522.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 414.0, + 483.0, + 895.0, + 483.0, + 895.0, + 522.0, + 414.0, + 522.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 917.0, + 483.0, + 1555.0, + 483.0, + 1555.0, + 522.0, + 917.0, + 522.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 514.0, + 1556.0, + 514.0, + 1556.0, + 553.0, + 194.0, + 553.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 189.0, + 544.0, + 485.0, + 544.0, + 485.0, + 584.0, + 189.0, + 584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 530.0, + 544.0, + 541.0, + 544.0, + 541.0, + 584.0, + 530.0, + 584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 196.0, + 1098.0, + 1554.0, + 1098.0, + 1554.0, + 1132.0, + 196.0, + 1132.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 1130.0, + 1557.0, + 1130.0, + 1557.0, + 1164.0, + 194.0, + 1164.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 190.0, + 1155.0, + 1557.0, + 1155.0, + 1557.0, + 1201.0, + 190.0, + 1201.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 187.0, + 1179.0, + 467.0, + 1179.0, + 467.0, + 1238.0, + 187.0, + 1238.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 593.0, + 1179.0, + 1314.0, + 1179.0, + 1314.0, + 1238.0, + 593.0, + 1238.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1422.0, + 1179.0, + 1562.0, + 1179.0, + 1562.0, + 1238.0, + 1422.0, + 1238.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 1229.0, + 1556.0, + 1229.0, + 1556.0, + 1269.0, + 193.0, + 1269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 191.0, + 1262.0, + 659.0, + 1262.0, + 659.0, + 1297.0, + 191.0, + 1297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 702.0, + 1262.0, + 711.0, + 1262.0, + 711.0, + 1297.0, + 702.0, + 1297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 195.0, + 130.0, + 1555.0, + 130.0, + 1555.0, + 165.0, + 195.0, + 165.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 195.0, + 162.0, + 1554.0, + 162.0, + 1554.0, + 197.0, + 195.0, + 197.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 190.0, + 189.0, + 1557.0, + 189.0, + 1557.0, + 228.0, + 190.0, + 228.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 195.0, + 221.0, + 1555.0, + 221.0, + 1555.0, + 257.0, + 195.0, + 257.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 191.0, + 247.0, + 477.0, + 247.0, + 477.0, + 294.0, + 191.0, + 294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 562.0, + 247.0, + 687.0, + 247.0, + 687.0, + 294.0, + 562.0, + 294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 195.0, + 588.0, + 1558.0, + 588.0, + 1558.0, + 626.0, + 195.0, + 626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 617.0, + 1553.0, + 617.0, + 1553.0, + 656.0, + 194.0, + 656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 192.0, + 646.0, + 1556.0, + 646.0, + 1556.0, + 687.0, + 192.0, + 687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 192.0, + 676.0, + 446.0, + 676.0, + 446.0, + 715.0, + 192.0, + 715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 197.0, + 1305.0, + 1552.0, + 1305.0, + 1552.0, + 1338.0, + 197.0, + 1338.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 192.0, + 1335.0, + 1554.0, + 1335.0, + 1554.0, + 1369.0, + 192.0, + 1369.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 195.0, + 1367.0, + 782.0, + 1367.0, + 782.0, + 1401.0, + 195.0, + 1401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 1857.0, + 1555.0, + 1857.0, + 1555.0, + 1893.0, + 193.0, + 1893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 1887.0, + 1555.0, + 1887.0, + 1555.0, + 1922.0, + 193.0, + 1922.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 1915.0, + 1555.0, + 1915.0, + 1555.0, + 1957.0, + 193.0, + 1957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 1949.0, + 1341.0, + 1949.0, + 1341.0, + 1984.0, + 194.0, + 1984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 192.0, + 1451.0, + 1555.0, + 1451.0, + 1555.0, + 1487.0, + 192.0, + 1487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 192.0, + 1483.0, + 1256.0, + 1483.0, + 1256.0, + 1519.0, + 192.0, + 1519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1280.0, + 1483.0, + 1555.0, + 1483.0, + 1555.0, + 1519.0, + 1280.0, + 1519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 189.0, + 1505.0, + 450.0, + 1505.0, + 450.0, + 1555.0, + 189.0, + 1555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 504.0, + 1505.0, + 513.0, + 1505.0, + 513.0, + 1555.0, + 504.0, + 1555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 568.0, + 1505.0, + 577.0, + 1505.0, + 577.0, + 1555.0, + 568.0, + 1555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 624.0, + 1505.0, + 633.0, + 1505.0, + 633.0, + 1555.0, + 624.0, + 1555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 680.0, + 1505.0, + 711.0, + 1505.0, + 711.0, + 1555.0, + 680.0, + 1555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 756.0, + 1505.0, + 907.0, + 1505.0, + 907.0, + 1555.0, + 756.0, + 1555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 196.0, + 1991.0, + 1556.0, + 1991.0, + 1556.0, + 2029.0, + 196.0, + 2029.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 2022.0, + 1555.0, + 2022.0, + 1555.0, + 2060.0, + 193.0, + 2060.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 3, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 196, + 1502, + 1556, + 1502, + 1556, + 1721, + 196, + 1721 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 193, + 675, + 1557, + 675, + 1557, + 922, + 193, + 922 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 196, + 1212, + 1557, + 1212, + 1557, + 1461, + 196, + 1461 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 198, + 201, + 1122, + 201, + 1122, + 515, + 198, + 515 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 196, + 1036, + 1557, + 1036, + 1557, + 1168, + 196, + 1168 + ], + "score": 0.966 + }, + { + "category_id": 8, + "poly": [ + 669, + 1961, + 1074, + 1961, + 1074, + 2050, + 669, + 2050 + ], + "score": 0.957 + }, + { + "category_id": 8, + "poly": [ + 577, + 1726, + 1171, + 1726, + 1171, + 1805, + 577, + 1805 + ], + "score": 0.955 + }, + { + "category_id": 3, + "poly": [ + 1177, + 207, + 1510, + 207, + 1510, + 420, + 1177, + 420 + ], + "score": 0.952 + }, + { + "category_id": 1, + "poly": [ + 201, + 1814, + 1553, + 1814, + 1553, + 1880, + 201, + 1880 + ], + "score": 0.941 + }, + { + "category_id": 1, + "poly": [ + 196, + 1889, + 1546, + 1889, + 1546, + 1954, + 196, + 1954 + ], + "score": 0.932 + }, + { + "category_id": 1, + "poly": [ + 199, + 128, + 1552, + 128, + 1552, + 194, + 199, + 194 + ], + "score": 0.931 + }, + { + "category_id": 8, + "poly": [ + 327, + 932, + 1423, + 932, + 1423, + 1022, + 327, + 1022 + ], + "score": 0.925 + }, + { + "category_id": 8, + "poly": [ + 348, + 517, + 1405, + 517, + 1405, + 663, + 348, + 663 + ], + "score": 0.922 + }, + { + "category_id": 2, + "poly": [ + 198, + 74, + 758, + 74, + 758, + 105, + 198, + 105 + ], + "score": 0.917 + }, + { + "category_id": 0, + "poly": [ + 198, + 1170, + 795, + 1170, + 795, + 1201, + 198, + 1201 + ], + "score": 0.889 + }, + { + "category_id": 2, + "poly": [ + 865, + 2108, + 884, + 2108, + 884, + 2133, + 865, + 2133 + ], + "score": 0.804 + }, + { + "category_id": 1, + "poly": [ + 207, + 487, + 1498, + 487, + 1498, + 516, + 207, + 516 + ], + "score": 0.799 + }, + { + "category_id": 0, + "poly": [ + 198, + 1461, + 924, + 1461, + 924, + 1493, + 198, + 1493 + ], + "score": 0.682 + }, + { + "category_id": 4, + "poly": [ + 1175, + 458, + 1517, + 458, + 1517, + 490, + 1175, + 490 + ], + "score": 0.429 + }, + { + "category_id": 1, + "poly": [ + 198, + 1461, + 924, + 1461, + 924, + 1493, + 198, + 1493 + ], + "score": 0.112 + }, + { + "category_id": 13, + "poly": [ + 198, + 269, + 341, + 269, + 341, + 304, + 198, + 304 + ], + "score": 0.95, + "latex": "A _ { g } ( i , j ) = 1" + }, + { + "category_id": 13, + "poly": [ + 1348, + 1657, + 1473, + 1657, + 1473, + 1692, + 1348, + 1692 + ], + "score": 0.94, + "latex": "M _ { k } ^ { 1 } \\in \\mathcal { M } ^ { 1 }" + }, + { + "category_id": 14, + "poly": [ + 671, + 1958, + 1077, + 1958, + 1077, + 2050, + 671, + 2050 + ], + "score": 0.94, + "latex": "p ( M _ { k } ^ { 1 } ) = \\frac { \\exp ^ { - \\mathcal { L } ( M _ { k } ^ { 1 } ; \\mathcal { V } ) } } { \\sum _ { M _ { i } ^ { 1 } \\in \\mathcal { M } ^ { 1 } } \\exp ^ { - \\mathcal { L } ( M _ { i } ^ { 1 } ; \\mathcal { V } ) } } ." + }, + { + "category_id": 14, + "poly": [ + 323, + 927, + 1418, + 927, + 1418, + 1024, + 323, + 1024 + ], + "score": 0.94, + "latex": "\\mathcal { L } _ { e } ( g ) = \\sum _ { v _ { i } \\in \\mathcal { V } _ { g } } \\| ( \\mathbf { x } _ { i } - \\hat { \\mathbf { x } } _ { i } ) \\odot \\mathbf { b } _ { i } \\| _ { 2 } ^ { 2 } + \\alpha \\sum _ { v _ { i } , v _ { j } \\in \\mathcal { V } _ { g } , v _ { i } \\ne v _ { j } } \\left| \\| \\mathbf { z } _ { i } - \\mathbf { z } _ { j } \\right| \\| _ { 2 } ^ { 2 } + \\beta \\cdot \\sum _ { i = 1 } ^ { o } \\left( \\left\\| \\mathbf { W } ^ { i } \\right\\| _ { F } ^ { 2 } + \\left\\| \\hat { \\mathbf { W } } ^ { i } \\right\\| _ { F } ^ { 2 } \\right) ," + }, + { + "category_id": 14, + "poly": [ + 577, + 1725, + 1170, + 1725, + 1170, + 1805, + 577, + 1805 + ], + "score": 0.93, + "latex": "\\mathcal { L } _ { c } ( M _ { k } ^ { 1 } ; \\mathcal { V } ) = \\sum _ { g \\in \\mathcal { V } } \\sum _ { v _ { i } , v _ { j } \\in \\mathcal { V } _ { g } , v _ { i } \\neq v _ { j } } s _ { i , j } \\left. \\mathbf { z } _ { k , i } ^ { 1 } - \\mathbf { z } _ { k , j } ^ { 1 } \\right. _ { 2 } ^ { 2 } ," + }, + { + "category_id": 13, + "poly": [ + 948, + 1333, + 1078, + 1333, + 1078, + 1370, + 948, + 1370 + ], + "score": 0.93, + "latex": "\\breve { M } _ { i } ^ { 1 } \\in { \\mathcal { M } } ^ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 198, + 1275, + 359, + 1275, + 359, + 1308, + 198, + 1308 + ], + "score": 0.92, + "latex": "\\{ 1 , 2 , \\cdots , m \\}" + }, + { + "category_id": 13, + "poly": [ + 804, + 362, + 902, + 362, + 902, + 394, + 804, + 394 + ], + "score": 0.92, + "latex": "\\mathbf { z } _ { i } \\in \\mathbb { R } ^ { d }" + }, + { + "category_id": 13, + "poly": [ + 771, + 202, + 916, + 202, + 916, + 238, + 771, + 238 + ], + "score": 0.92, + "latex": "g = ( \\mathcal { V } _ { g } , \\mathcal { E } _ { g } )" + }, + { + "category_id": 13, + "poly": [ + 376, + 269, + 521, + 269, + 521, + 303, + 376, + 303 + ], + "score": 0.92, + "latex": "( v _ { i } , v _ { j } ) \\in \\mathcal { E } _ { g }" + }, + { + "category_id": 13, + "poly": [ + 290, + 1245, + 462, + 1245, + 462, + 1276, + 290, + 1276 + ], + "score": 0.92, + "latex": "\\mathcal { T } _ { 1 } , \\mathcal { T } _ { 2 } , \\cdots , \\mathcal { T } _ { m }" + }, + { + "category_id": 13, + "poly": [ + 800, + 273, + 888, + 273, + 888, + 304, + 800, + 304 + ], + "score": 0.91, + "latex": "v _ { i } \\in \\mathcal V _ { g }" + }, + { + "category_id": 13, + "poly": [ + 272, + 1813, + 318, + 1813, + 318, + 1851, + 272, + 1851 + ], + "score": 0.91, + "latex": "\\mathbf { z } _ { k , i } ^ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 371, + 1813, + 419, + 1813, + 419, + 1853, + 371, + 1853 + ], + "score": 0.91, + "latex": "\\mathbf { z } _ { k , j } ^ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 245, + 1853, + 285, + 1853, + 285, + 1882, + 245, + 1882 + ], + "score": 0.91, + "latex": "s _ { i , j }" + }, + { + "category_id": 13, + "poly": [ + 275, + 1365, + 320, + 1365, + 320, + 1399, + 275, + 1399 + ], + "score": 0.91, + "latex": "M _ { i } ^ { \\bar { 1 } }" + }, + { + "category_id": 13, + "poly": [ + 609, + 203, + 684, + 203, + 684, + 236, + 609, + 236 + ], + "score": 0.91, + "latex": "g \\in { \\mathcal { T } }" + }, + { + "category_id": 13, + "poly": [ + 355, + 304, + 509, + 304, + 509, + 337, + 355, + 337 + ], + "score": 0.91, + "latex": "\\mathbf { x } _ { i } = \\mathbf { A } _ { g } ( i , : )" + }, + { + "category_id": 13, + "poly": [ + 767, + 454, + 964, + 454, + 964, + 489, + 767, + 489 + ], + "score": 0.9, + "latex": "\\hat { \\mathbf { y } } _ { i } ^ { o } , \\hat { \\mathbf { y } } _ { i } ^ { o - 1 } , \\cdots , \\hat { \\mathbf { y } } _ { i } ^ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 563, + 301, + 733, + 301, + 733, + 337, + 563, + 337 + ], + "score": 0.9, + "latex": "\\mathbf { y } _ { i } ^ { 1 } , \\mathbf { y } _ { i } ^ { 2 } , \\cdots , \\mathbf { y } _ { i } ^ { o }" + }, + { + "category_id": 13, + "poly": [ + 775, + 237, + 1030, + 237, + 1030, + 273, + 775, + 273 + ], + "score": 0.9, + "latex": "\\mathbf { A } _ { g } ~ = ~ \\{ 0 , 1 \\} ^ { | \\mathcal { V } _ { g } | \\times | \\mathcal { V } _ { g } | }" + }, + { + "category_id": 14, + "poly": [ + 339, + 512, + 1402, + 512, + 1402, + 667, + 339, + 667 + ], + "score": 0.89, + "latex": "\\left\\{ \\begin{array} { l l } { \\mathrm { E n c o d e r : } } \\\\ { \\mathbf { y } _ { i } ^ { 1 } = \\sigma ( \\mathbf { W } ^ { 1 } \\mathbf { x } _ { i } + \\mathbf { b } ^ { 1 } ) , } \\\\ { \\mathbf { y } _ { i } ^ { k } = \\sigma ( \\mathbf { W } ^ { k } \\mathbf { y } _ { i } ^ { k - 1 } + \\mathbf { b } ^ { k } ) , \\forall k \\in \\{ 2 , \\cdots , o \\} , } \\\\ { \\mathbf { z } _ { i } = \\sigma ( \\mathbf { W } ^ { o + 1 } \\mathbf { y } _ { i } ^ { o } + \\mathbf { b } ^ { o + 1 } ) . } \\end{array} \\right. \\quad \\forall k = \\{ 2 , \\cdots , o \\} \\left\\{ \\begin{array} { l l } { \\mathrm { D e c o d e r : } } \\\\ { \\hat { \\mathbf { y } } _ { i } ^ { o } = \\sigma ( \\hat { \\mathbf { W } } ^ { o + 1 } \\mathbf { z } _ { i } + \\hat { \\mathbf { b } } ^ { o + 1 } ) , } \\\\ { \\hat { \\mathbf { y } } _ { i } ^ { k - 1 } = \\sigma ( \\hat { \\mathbf { W } } ^ { k } \\mathbf { \\hat { y } } _ { i } ^ { k } + \\hat { \\mathbf { b } } ^ { k } ) , \\forall k \\in \\{ 2 , \\cdots , o \\} , } \\\\ { \\hat { \\mathbf { x } } _ { i } = \\sigma ( \\hat { \\mathbf { W } } ^ { 1 } \\hat { \\mathbf { y } } _ { i } ^ { 1 } + \\hat { \\mathbf { b } } ^ { 1 } ) . } \\end{array} \\right." + }, + { + "category_id": 13, + "poly": [ + 1383, + 1244, + 1553, + 1244, + 1553, + 1277, + 1383, + 1277 + ], + "score": 0.89, + "latex": "| \\mathcal { T } _ { i } | = b , \\forall i \\ \\bar { \\in }" + }, + { + "category_id": 13, + "poly": [ + 1147, + 1820, + 1210, + 1820, + 1210, + 1848, + 1147, + 1848 + ], + "score": 0.89, + "latex": "v _ { i } , v _ { j }" + }, + { + "category_id": 13, + "poly": [ + 319, + 1137, + 429, + 1137, + 429, + 1168, + 319, + 1168 + ], + "score": 0.89, + "latex": "\\gamma \\left( \\gamma > 1 \\right)" + }, + { + "category_id": 13, + "poly": [ + 607, + 1503, + 654, + 1503, + 654, + 1534, + 607, + 1534 + ], + "score": 0.88, + "latex": "\\mathcal { M } ^ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 1113, + 1136, + 1142, + 1136, + 1142, + 1166, + 1113, + 1166 + ], + "score": 0.88, + "latex": "\\hat { \\mathbf { x } } _ { i }" + }, + { + "category_id": 13, + "poly": [ + 374, + 861, + 403, + 861, + 403, + 890, + 374, + 890 + ], + "score": 0.88, + "latex": "\\hat { \\mathbf { x } } _ { i }" + }, + { + "category_id": 13, + "poly": [ + 610, + 338, + 733, + 338, + 733, + 365, + 610, + 365 + ], + "score": 0.88, + "latex": "1 , 2 , \\cdots , o" + }, + { + "category_id": 13, + "poly": [ + 1463, + 1276, + 1550, + 1276, + 1550, + 1309, + 1463, + 1309 + ], + "score": 0.88, + "latex": "\\mathcal { T } _ { i } \\cap \\mathcal { T } _ { j }" + }, + { + "category_id": 13, + "poly": [ + 518, + 709, + 548, + 709, + 548, + 738, + 518, + 738 + ], + "score": 0.88, + "latex": "\\hat { \\mathbf { x } } _ { i }" + }, + { + "category_id": 13, + "poly": [ + 457, + 1337, + 485, + 1337, + 485, + 1366, + 457, + 1366 + ], + "score": 0.88, + "latex": "\\mathcal { T } _ { i }" + }, + { + "category_id": 13, + "poly": [ + 548, + 426, + 577, + 426, + 577, + 455, + 548, + 455 + ], + "score": 0.87, + "latex": "\\hat { \\mathbf { x } } _ { i }" + }, + { + "category_id": 13, + "poly": [ + 1257, + 1109, + 1286, + 1109, + 1286, + 1136, + 1257, + 1136 + ], + "score": 0.86, + "latex": "\\mathbf { x } _ { i }" + }, + { + "category_id": 13, + "poly": [ + 466, + 1107, + 495, + 1107, + 495, + 1136, + 466, + 1136 + ], + "score": 0.86, + "latex": "\\mathbf { b } _ { i }" + }, + { + "category_id": 13, + "poly": [ + 1430, + 833, + 1458, + 833, + 1458, + 860, + 1430, + 860 + ], + "score": 0.86, + "latex": "\\mathbf { z } _ { i }" + }, + { + "category_id": 13, + "poly": [ + 688, + 1368, + 715, + 1368, + 715, + 1397, + 688, + 1397 + ], + "score": 0.86, + "latex": "\\mathcal { T } _ { i }" + }, + { + "category_id": 13, + "poly": [ + 392, + 339, + 421, + 339, + 421, + 364, + 392, + 364 + ], + "score": 0.86, + "latex": "\\mathbf { x } _ { i }" + }, + { + "category_id": 13, + "poly": [ + 1426, + 683, + 1456, + 683, + 1456, + 708, + 1426, + 708 + ], + "score": 0.86, + "latex": "\\mathbf { x } _ { i }" + }, + { + "category_id": 13, + "poly": [ + 858, + 400, + 884, + 400, + 884, + 425, + 858, + 425 + ], + "score": 0.84, + "latex": "\\mathbf { z } _ { i }" + }, + { + "category_id": 13, + "poly": [ + 691, + 1337, + 713, + 1337, + 713, + 1365, + 691, + 1365 + ], + "score": 0.83, + "latex": "\\mathcal { G }" + }, + { + "category_id": 13, + "poly": [ + 444, + 1305, + 462, + 1305, + 462, + 1334, + 444, + 1334 + ], + "score": 0.8, + "latex": "\\varnothing" + }, + { + "category_id": 13, + "poly": [ + 1054, + 1216, + 1075, + 1216, + 1075, + 1244, + 1054, + 1244 + ], + "score": 0.8, + "latex": "\\mathcal { G }" + }, + { + "category_id": 13, + "poly": [ + 508, + 1853, + 526, + 1853, + 526, + 1880, + 508, + 1880 + ], + "score": 0.8, + "latex": "g" + }, + { + "category_id": 13, + "poly": [ + 495, + 1690, + 517, + 1690, + 517, + 1716, + 495, + 1716 + ], + "score": 0.78, + "latex": "\\nu" + }, + { + "category_id": 13, + "poly": [ + 823, + 1659, + 848, + 1659, + 848, + 1687, + 823, + 1687 + ], + "score": 0.77, + "latex": "\\nu" + }, + { + "category_id": 13, + "poly": [ + 871, + 429, + 900, + 429, + 900, + 454, + 871, + 454 + ], + "score": 0.76, + "latex": "\\mathbf { x } _ { i }" + }, + { + "category_id": 13, + "poly": [ + 476, + 1034, + 621, + 1034, + 621, + 1069, + 476, + 1069 + ], + "score": 0.75, + "latex": "A _ { g } ( i , j ) = 1" + }, + { + "category_id": 13, + "poly": [ + 1533, + 1821, + 1551, + 1821, + 1551, + 1847, + 1533, + 1847 + ], + "score": 0.71, + "latex": "g" + }, + { + "category_id": 13, + "poly": [ + 734, + 1276, + 750, + 1276, + 750, + 1302, + 734, + 1302 + ], + "score": 0.67, + "latex": "b" + }, + { + "category_id": 13, + "poly": [ + 1060, + 365, + 1078, + 365, + 1078, + 391, + 1060, + 391 + ], + "score": 0.64, + "latex": "d" + }, + { + "category_id": 13, + "poly": [ + 717, + 1055, + 739, + 1055, + 739, + 1085, + 717, + 1085 + ], + "score": 0.63, + "latex": "\\beta" + }, + { + "category_id": 13, + "poly": [ + 477, + 1071, + 621, + 1071, + 621, + 1106, + 477, + 1106 + ], + "score": 0.62, + "latex": "A _ { g } ( i , j ) = 0" + }, + { + "category_id": 13, + "poly": [ + 273, + 1033, + 415, + 1033, + 415, + 1107, + 273, + 1107 + ], + "score": 0.59, + "latex": "s _ { i , j } = { \\left\\{ \\begin{array} { l l } { + 1 } \\\\ { - 1 } \\end{array} \\right. }" + }, + { + "category_id": 13, + "poly": [ + 274, + 1032, + 624, + 1032, + 624, + 1108, + 274, + 1108 + ], + "score": 0.55, + "latex": "s _ { i , j } = { \\left\\{ \\begin{array} { l l } { + 1 , } & { { \\mathrm { i f } } \\ A _ { g } ( i , j ) = 1 ; } \\\\ { - 1 , } & { { \\mathrm { i f } } \\ A _ { g } ( i , j ) = 0 . } \\end{array} \\right. }" + }, + { + "category_id": 13, + "poly": [ + 684, + 1060, + 705, + 1060, + 705, + 1081, + 684, + 1081 + ], + "score": 0.53, + "latex": "\\alpha" + }, + { + "category_id": 13, + "poly": [ + 683, + 1054, + 740, + 1054, + 740, + 1086, + 683, + 1086 + ], + "score": 0.32, + "latex": "\\alpha , \\beta" + }, + { + "category_id": 15, + "poly": [ + 1213.0, + 230.0, + 1233.0, + 230.0, + 1233.0, + 275.0, + 1213.0, + 275.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1257.0, + 233.0, + 1287.0, + 233.0, + 1287.0, + 275.0, + 1257.0, + 275.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1335.0, + 246.0, + 1350.0, + 246.0, + 1350.0, + 258.0, + 1335.0, + 258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1183.0, + 291.0, + 1200.0, + 291.0, + 1200.0, + 306.0, + 1183.0, + 306.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1488.0, + 287.0, + 1514.0, + 287.0, + 1514.0, + 311.0, + 1488.0, + 311.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1460.0, + 297.0, + 1471.0, + 297.0, + 1471.0, + 316.0, + 1460.0, + 316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1454.0, + 311.0, + 1476.0, + 311.0, + 1476.0, + 377.0, + 1454.0, + 377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1276.0, + 321.0, + 1284.0, + 321.0, + 1284.0, + 331.0, + 1276.0, + 331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1215.0, + 354.0, + 1231.0, + 354.0, + 1231.0, + 372.0, + 1215.0, + 372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1212.0, + 388.0, + 1241.0, + 388.0, + 1241.0, + 417.0, + 1212.0, + 417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1332.0, + 389.0, + 1362.0, + 389.0, + 1362.0, + 415.0, + 1332.0, + 415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1446.0, + 386.0, + 1477.0, + 386.0, + 1477.0, + 419.0, + 1446.0, + 419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 197.0, + 72.0, + 758.0, + 72.0, + 758.0, + 108.0, + 197.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 196.0, + 1167.0, + 795.0, + 1167.0, + 795.0, + 1203.0, + 196.0, + 1203.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 864.0, + 2107.0, + 886.0, + 2107.0, + 886.0, + 2138.0, + 864.0, + 2138.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 195.0, + 1458.0, + 923.0, + 1458.0, + 923.0, + 1496.0, + 195.0, + 1496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1172.0, + 456.0, + 1520.0, + 456.0, + 1520.0, + 492.0, + 1172.0, + 492.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 195.0, + 1503.0, + 606.0, + 1503.0, + 606.0, + 1539.0, + 195.0, + 1539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 655.0, + 1503.0, + 1554.0, + 1503.0, + 1554.0, + 1539.0, + 655.0, + 1539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 195.0, + 1536.0, + 1556.0, + 1536.0, + 1556.0, + 1572.0, + 195.0, + 1572.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 192.0, + 1565.0, + 1557.0, + 1565.0, + 1557.0, + 1604.0, + 192.0, + 1604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 1599.0, + 1556.0, + 1599.0, + 1556.0, + 1631.0, + 193.0, + 1631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 195.0, + 1627.0, + 1556.0, + 1627.0, + 1556.0, + 1663.0, + 195.0, + 1663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 192.0, + 1654.0, + 822.0, + 1654.0, + 822.0, + 1696.0, + 192.0, + 1696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 849.0, + 1654.0, + 1347.0, + 1654.0, + 1347.0, + 1696.0, + 849.0, + 1696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1474.0, + 1654.0, + 1556.0, + 1654.0, + 1556.0, + 1696.0, + 1474.0, + 1696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 1688.0, + 494.0, + 1688.0, + 494.0, + 1724.0, + 193.0, + 1724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 518.0, + 1688.0, + 1116.0, + 1688.0, + 1116.0, + 1724.0, + 518.0, + 1724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 196.0, + 678.0, + 1425.0, + 678.0, + 1425.0, + 712.0, + 196.0, + 712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1457.0, + 678.0, + 1555.0, + 678.0, + 1555.0, + 712.0, + 1457.0, + 712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 189.0, + 701.0, + 517.0, + 701.0, + 517.0, + 749.0, + 189.0, + 749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 549.0, + 701.0, + 1558.0, + 701.0, + 1558.0, + 749.0, + 549.0, + 749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 738.0, + 1555.0, + 738.0, + 1555.0, + 772.0, + 193.0, + 772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 769.0, + 1554.0, + 769.0, + 1554.0, + 803.0, + 193.0, + 803.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 799.0, + 1555.0, + 799.0, + 1555.0, + 833.0, + 193.0, + 833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 190.0, + 828.0, + 1429.0, + 828.0, + 1429.0, + 865.0, + 190.0, + 865.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1459.0, + 828.0, + 1557.0, + 828.0, + 1557.0, + 865.0, + 1459.0, + 865.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 190.0, + 857.0, + 373.0, + 857.0, + 373.0, + 895.0, + 190.0, + 895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 404.0, + 857.0, + 1558.0, + 857.0, + 1558.0, + 895.0, + 404.0, + 895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 891.0, + 962.0, + 891.0, + 962.0, + 926.0, + 193.0, + 926.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 190.0, + 1207.0, + 1053.0, + 1207.0, + 1053.0, + 1254.0, + 190.0, + 1254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1076.0, + 1207.0, + 1560.0, + 1207.0, + 1560.0, + 1254.0, + 1076.0, + 1254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 192.0, + 1240.0, + 289.0, + 1240.0, + 289.0, + 1282.0, + 192.0, + 1282.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 463.0, + 1240.0, + 1382.0, + 1240.0, + 1382.0, + 1282.0, + 463.0, + 1282.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1554.0, + 1240.0, + 1557.0, + 1240.0, + 1557.0, + 1282.0, + 1554.0, + 1282.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 360.0, + 1273.0, + 733.0, + 1273.0, + 733.0, + 1312.0, + 360.0, + 1312.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 751.0, + 1273.0, + 1462.0, + 1273.0, + 1462.0, + 1312.0, + 751.0, + 1312.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1551.0, + 1273.0, + 1555.0, + 1273.0, + 1555.0, + 1312.0, + 1551.0, + 1312.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 192.0, + 1304.0, + 443.0, + 1304.0, + 443.0, + 1343.0, + 192.0, + 1343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 463.0, + 1304.0, + 1555.0, + 1304.0, + 1555.0, + 1343.0, + 463.0, + 1343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 190.0, + 1332.0, + 456.0, + 1332.0, + 456.0, + 1374.0, + 190.0, + 1374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 486.0, + 1332.0, + 690.0, + 1332.0, + 690.0, + 1374.0, + 486.0, + 1374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 714.0, + 1332.0, + 947.0, + 1332.0, + 947.0, + 1374.0, + 714.0, + 1374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1079.0, + 1332.0, + 1558.0, + 1332.0, + 1558.0, + 1374.0, + 1079.0, + 1374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 195.0, + 1366.0, + 274.0, + 1366.0, + 274.0, + 1400.0, + 195.0, + 1400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1366.0, + 687.0, + 1366.0, + 687.0, + 1400.0, + 321.0, + 1400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 716.0, + 1366.0, + 1555.0, + 1366.0, + 1555.0, + 1400.0, + 716.0, + 1400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 195.0, + 1397.0, + 1555.0, + 1397.0, + 1555.0, + 1432.0, + 195.0, + 1432.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 1425.0, + 1379.0, + 1425.0, + 1379.0, + 1464.0, + 193.0, + 1464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 199.0, + 608.0, + 199.0, + 608.0, + 242.0, + 193.0, + 242.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 685.0, + 199.0, + 770.0, + 199.0, + 770.0, + 242.0, + 685.0, + 242.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 917.0, + 199.0, + 1123.0, + 199.0, + 1123.0, + 242.0, + 917.0, + 242.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 231.0, + 774.0, + 231.0, + 774.0, + 275.0, + 193.0, + 275.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1031.0, + 231.0, + 1123.0, + 231.0, + 1123.0, + 275.0, + 1031.0, + 275.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 342.0, + 269.0, + 375.0, + 269.0, + 375.0, + 305.0, + 342.0, + 305.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 522.0, + 269.0, + 799.0, + 269.0, + 799.0, + 305.0, + 522.0, + 305.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 889.0, + 269.0, + 1122.0, + 269.0, + 1122.0, + 305.0, + 889.0, + 305.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 299.0, + 354.0, + 299.0, + 354.0, + 340.0, + 193.0, + 340.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 510.0, + 299.0, + 562.0, + 299.0, + 562.0, + 340.0, + 510.0, + 340.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 734.0, + 299.0, + 1123.0, + 299.0, + 1123.0, + 340.0, + 734.0, + 340.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 195.0, + 332.0, + 391.0, + 332.0, + 391.0, + 369.0, + 195.0, + 369.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 422.0, + 332.0, + 609.0, + 332.0, + 609.0, + 369.0, + 422.0, + 369.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 734.0, + 332.0, + 1123.0, + 332.0, + 1123.0, + 369.0, + 734.0, + 369.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 362.0, + 803.0, + 362.0, + 803.0, + 396.0, + 194.0, + 396.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 903.0, + 362.0, + 1059.0, + 362.0, + 1059.0, + 396.0, + 903.0, + 396.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1079.0, + 362.0, + 1123.0, + 362.0, + 1123.0, + 396.0, + 1079.0, + 396.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 195.0, + 395.0, + 857.0, + 395.0, + 857.0, + 428.0, + 195.0, + 428.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 885.0, + 395.0, + 1122.0, + 395.0, + 1122.0, + 428.0, + 885.0, + 428.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 197.0, + 425.0, + 547.0, + 425.0, + 547.0, + 455.0, + 197.0, + 455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 578.0, + 425.0, + 870.0, + 425.0, + 870.0, + 455.0, + 578.0, + 455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 901.0, + 425.0, + 1120.0, + 425.0, + 1120.0, + 455.0, + 901.0, + 455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 189.0, + 439.0, + 766.0, + 439.0, + 766.0, + 500.0, + 189.0, + 500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 965.0, + 439.0, + 1122.0, + 439.0, + 1122.0, + 500.0, + 965.0, + 500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 196.0, + 486.0, + 1127.0, + 486.0, + 1127.0, + 520.0, + 196.0, + 520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 625.0, + 1028.0, + 682.0, + 1028.0, + 682.0, + 1090.0, + 625.0, + 1090.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 741.0, + 1028.0, + 1555.0, + 1028.0, + 1555.0, + 1090.0, + 741.0, + 1090.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 625.0, + 1067.0, + 634.0, + 1067.0, + 634.0, + 1106.0, + 625.0, + 1106.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 195.0, + 1101.0, + 465.0, + 1101.0, + 465.0, + 1137.0, + 195.0, + 1137.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 496.0, + 1101.0, + 1256.0, + 1101.0, + 1256.0, + 1137.0, + 496.0, + 1137.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1287.0, + 1101.0, + 1554.0, + 1101.0, + 1554.0, + 1137.0, + 1287.0, + 1137.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 192.0, + 1132.0, + 318.0, + 1132.0, + 318.0, + 1172.0, + 192.0, + 1172.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 430.0, + 1132.0, + 1112.0, + 1132.0, + 1112.0, + 1172.0, + 430.0, + 1172.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1143.0, + 1132.0, + 1154.0, + 1132.0, + 1154.0, + 1172.0, + 1143.0, + 1172.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 360.75, + 1030.5, + 432.75, + 1030.5, + 432.75, + 1072.5, + 360.75, + 1072.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 195.0, + 1053.0, + 357.0, + 1053.0, + 357.0, + 1091.0, + 195.0, + 1091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 192.0, + 1807.0, + 271.0, + 1807.0, + 271.0, + 1861.0, + 192.0, + 1861.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1807.0, + 370.0, + 1807.0, + 370.0, + 1861.0, + 319.0, + 1861.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 420.0, + 1807.0, + 1146.0, + 1807.0, + 1146.0, + 1861.0, + 420.0, + 1861.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1211.0, + 1807.0, + 1532.0, + 1807.0, + 1532.0, + 1861.0, + 1211.0, + 1861.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1552.0, + 1807.0, + 1559.0, + 1807.0, + 1559.0, + 1861.0, + 1552.0, + 1861.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 195.0, + 1847.0, + 244.0, + 1847.0, + 244.0, + 1885.0, + 195.0, + 1885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 286.0, + 1847.0, + 507.0, + 1847.0, + 507.0, + 1885.0, + 286.0, + 1885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 527.0, + 1847.0, + 956.0, + 1847.0, + 956.0, + 1885.0, + 527.0, + 1885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 1885.0, + 1554.0, + 1885.0, + 1554.0, + 1928.0, + 194.0, + 1928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 1920.0, + 365.0, + 1920.0, + 365.0, + 1956.0, + 193.0, + 1956.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 190.0, + 121.0, + 1557.0, + 121.0, + 1557.0, + 173.0, + 190.0, + 173.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 159.0, + 1028.0, + 159.0, + 1028.0, + 199.0, + 193.0, + 199.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 199.0, + 481.0, + 1497.0, + 481.0, + 1497.0, + 523.0, + 199.0, + 523.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 195.0, + 1458.0, + 923.0, + 1458.0, + 923.0, + 1496.0, + 195.0, + 1496.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 4, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 196, + 1629, + 1555, + 1629, + 1555, + 1848, + 196, + 1848 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 195, + 769, + 1557, + 769, + 1557, + 985, + 195, + 985 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 197, + 128, + 1554, + 128, + 1554, + 288, + 197, + 288 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 196, + 1099, + 1556, + 1099, + 1556, + 1228, + 196, + 1228 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 197, + 1299, + 1555, + 1299, + 1555, + 1429, + 197, + 1429 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 196, + 1486, + 1557, + 1486, + 1557, + 1580, + 196, + 1580 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 197, + 339, + 1554, + 339, + 1554, + 436, + 197, + 436 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 197, + 445, + 1555, + 445, + 1555, + 571, + 197, + 571 + ], + "score": 0.971 + }, + { + "category_id": 8, + "poly": [ + 644, + 627, + 1101, + 627, + 1101, + 711, + 644, + 711 + ], + "score": 0.952 + }, + { + "category_id": 8, + "poly": [ + 748, + 1862, + 1000, + 1862, + 1000, + 1938, + 748, + 1938 + ], + "score": 0.947 + }, + { + "category_id": 1, + "poly": [ + 193, + 1991, + 1552, + 1991, + 1552, + 2056, + 193, + 2056 + ], + "score": 0.937 + }, + { + "category_id": 8, + "poly": [ + 548, + 1243, + 1197, + 1243, + 1197, + 1287, + 548, + 1287 + ], + "score": 0.935 + }, + { + "category_id": 1, + "poly": [ + 194, + 578, + 1240, + 578, + 1240, + 614, + 194, + 614 + ], + "score": 0.929 + }, + { + "category_id": 1, + "poly": [ + 193, + 722, + 1400, + 722, + 1400, + 760, + 193, + 760 + ], + "score": 0.928 + }, + { + "category_id": 1, + "poly": [ + 199, + 1948, + 1004, + 1948, + 1004, + 1982, + 199, + 1982 + ], + "score": 0.923 + }, + { + "category_id": 0, + "poly": [ + 199, + 1441, + 500, + 1441, + 500, + 1474, + 199, + 1474 + ], + "score": 0.92 + }, + { + "category_id": 2, + "poly": [ + 198, + 74, + 758, + 74, + 758, + 105, + 198, + 105 + ], + "score": 0.919 + }, + { + "category_id": 0, + "poly": [ + 198, + 1587, + 513, + 1587, + 513, + 1618, + 198, + 1618 + ], + "score": 0.919 + }, + { + "category_id": 0, + "poly": [ + 199, + 297, + 799, + 297, + 799, + 329, + 199, + 329 + ], + "score": 0.904 + }, + { + "category_id": 1, + "poly": [ + 195, + 1054, + 1292, + 1054, + 1292, + 1089, + 195, + 1089 + ], + "score": 0.898 + }, + { + "category_id": 9, + "poly": [ + 1516, + 1871, + 1550, + 1871, + 1550, + 1902, + 1516, + 1902 + ], + "score": 0.885 + }, + { + "category_id": 8, + "poly": [ + 585, + 1000, + 1157, + 1000, + 1157, + 1043, + 585, + 1043 + ], + "score": 0.83 + }, + { + "category_id": 2, + "poly": [ + 865, + 2108, + 884, + 2108, + 884, + 2133, + 865, + 2133 + ], + "score": 0.83 + }, + { + "category_id": 8, + "poly": [ + 583, + 1000, + 1158, + 1000, + 1158, + 1043, + 583, + 1043 + ], + "score": 0.282 + }, + { + "category_id": 14, + "poly": [ + 646, + 625, + 1102, + 625, + 1102, + 711, + 646, + 711 + ], + "score": 0.94, + "latex": "p ( M _ { i } ^ { 1 } ) = \\frac { \\exp ^ { - \\mathcal { L } ( M _ { i } ^ { 1 } ; \\mathcal { V } ) } } { \\exp ^ { - \\mathcal { L } ( M _ { i } ^ { 1 } ; \\mathcal { V } ) } + \\exp ^ { - \\mathcal { L } ( M _ { j } ^ { 1 } ; \\mathcal { V } ) } }" + }, + { + "category_id": 13, + "poly": [ + 1270, + 1165, + 1415, + 1165, + 1415, + 1200, + 1270, + 1200 + ], + "score": 0.94, + "latex": "\\mathbf { m } \\in \\{ 0 , 1 \\} ^ { d }" + }, + { + "category_id": 13, + "poly": [ + 861, + 879, + 1017, + 879, + 1017, + 919, + 861, + 919 + ], + "score": 0.94, + "latex": "\\mathbf { c } \\in \\{ i , j \\} ^ { | \\theta ^ { 1 } | }" + }, + { + "category_id": 13, + "poly": [ + 791, + 1099, + 948, + 1099, + 948, + 1140, + 791, + 1140 + ], + "score": 0.94, + "latex": "\\hat { \\theta } _ { k } ^ { 2 } ( l ) \\in \\mathbb { R } ^ { | \\theta ^ { 1 } | }" + }, + { + "category_id": 13, + "poly": [ + 1096, + 915, + 1176, + 915, + 1176, + 953, + 1096, + 953 + ], + "score": 0.93, + "latex": "p ( M _ { j } ^ { 1 } )" + }, + { + "category_id": 14, + "poly": [ + 749, + 1861, + 999, + 1861, + 999, + 1939, + 749, + 1939 + ], + "score": 0.93, + "latex": "\\mathbf { z } _ { q } = \\bigcup _ { g \\in \\mathcal { G } , M _ { j } \\in \\mathcal { M } , } \\mathbf { z } _ { j , q } ," + }, + { + "category_id": 13, + "poly": [ + 643, + 915, + 724, + 915, + 724, + 951, + 643, + 951 + ], + "score": 0.93, + "latex": "p ( M _ { i } ^ { 1 } )" + }, + { + "category_id": 13, + "poly": [ + 1152, + 722, + 1395, + 722, + 1395, + 762, + 1152, + 762 + ], + "score": 0.93, + "latex": "p ( M _ { j } ^ { 1 } ) = 1 - p ( M _ { i } ^ { 1 } )" + }, + { + "category_id": 13, + "poly": [ + 873, + 771, + 1074, + 771, + 1074, + 811, + 873, + 811 + ], + "score": 0.93, + "latex": "( M _ { i } ^ { 1 } , M _ { j } ^ { 1 } ) _ { k } \\in \\mathcal { P } ^ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 623, + 339, + 830, + 339, + 830, + 380, + 623, + 380 + ], + "score": 0.93, + "latex": "( M _ { i } ^ { 1 } , M _ { j } ^ { 1 } ) _ { k } \\in \\mathcal { P } ^ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 450, + 807, + 569, + 807, + 569, + 849, + 450, + 849 + ], + "score": 0.93, + "latex": "\\theta _ { k } ^ { 2 } \\in \\mathbb { R } ^ { | \\theta ^ { 1 } | }" + }, + { + "category_id": 13, + "poly": [ + 816, + 1360, + 1118, + 1360, + 1118, + 1404, + 816, + 1404 + ], + "score": 0.93, + "latex": "\\mathcal { M } ^ { 2 } = \\big \\{ M _ { k } ^ { 2 } \\big \\} _ { ( M _ { i } ^ { 1 } , M _ { j } ^ { 1 } ) _ { k } \\in \\mathcal { P } ^ { 1 } }" + }, + { + "category_id": 13, + "poly": [ + 602, + 1724, + 711, + 1724, + 711, + 1757, + 602, + 1757 + ], + "score": 0.93, + "latex": "M _ { j } \\in \\mathcal { M }" + }, + { + "category_id": 13, + "poly": [ + 229, + 220, + 602, + 220, + 602, + 260, + 229, + 260 + ], + "score": 0.92, + "latex": "\\mathcal { P } ^ { 1 } = \\{ ( M _ { i } ^ { 1 } , \\dot { M } _ { j } ^ { 1 } ) _ { k } \\} _ { k \\in \\{ 1 , 2 , \\cdots , m \\} }" + }, + { + "category_id": 13, + "poly": [ + 367, + 916, + 432, + 916, + 432, + 950, + 367, + 950 + ], + "score": 0.92, + "latex": "\\{ i , j \\}" + }, + { + "category_id": 13, + "poly": [ + 1353, + 1725, + 1445, + 1725, + 1445, + 1757, + 1353, + 1757 + ], + "score": 0.92, + "latex": "v _ { q } \\in \\mathcal { V } _ { g }" + }, + { + "category_id": 13, + "poly": [ + 900, + 723, + 945, + 723, + 945, + 762, + 900, + 762 + ], + "score": 0.92, + "latex": "M _ { j } ^ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 1341, + 340, + 1410, + 340, + 1410, + 380, + 1341, + 380 + ], + "score": 0.92, + "latex": "\\theta _ { i } ^ { 1 } , \\theta _ { j } ^ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 739, + 476, + 783, + 476, + 783, + 510, + 739, + 510 + ], + "score": 0.92, + "latex": "M _ { i } ^ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 835, + 476, + 880, + 476, + 880, + 515, + 835, + 515 + ], + "score": 0.91, + "latex": "M _ { j } ^ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 1449, + 1754, + 1543, + 1754, + 1543, + 1788, + 1449, + 1788 + ], + "score": 0.91, + "latex": "v _ { p } \\notin \\mathcal { V } _ { g }" + }, + { + "category_id": 13, + "poly": [ + 634, + 1785, + 769, + 1785, + 769, + 1818, + 634, + 1818 + ], + "score": 0.91, + "latex": "\\mathbf { z } _ { j , p } = \\mathbf { n u l l }" + }, + { + "category_id": 13, + "poly": [ + 1158, + 1330, + 1203, + 1330, + 1203, + 1366, + 1158, + 1366 + ], + "score": 0.91, + "latex": "M _ { k } ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 952, + 579, + 995, + 579, + 995, + 615, + 952, + 615 + ], + "score": 0.91, + "latex": "M _ { i } ^ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 1423, + 1693, + 1494, + 1693, + 1494, + 1724, + 1423, + 1724 + ], + "score": 0.91, + "latex": "g \\in { \\mathcal { G } }" + }, + { + "category_id": 13, + "poly": [ + 1093, + 813, + 1137, + 813, + 1137, + 847, + 1093, + 847 + ], + "score": 0.91, + "latex": "| \\theta ^ { 1 } |" + }, + { + "category_id": 13, + "poly": [ + 1411, + 1633, + 1461, + 1633, + 1461, + 1663, + 1411, + 1663 + ], + "score": 0.9, + "latex": "K _ { t h }" + }, + { + "category_id": 13, + "poly": [ + 274, + 1301, + 396, + 1301, + 396, + 1334, + 274, + 1334 + ], + "score": 0.9, + "latex": "r a n d ( 0 , 1 )" + }, + { + "category_id": 13, + "poly": [ + 368, + 1197, + 396, + 1197, + 396, + 1231, + 368, + 1231 + ], + "score": 0.9, + "latex": "\\theta _ { k } ^ { 2 }" + }, + { + "category_id": 14, + "poly": [ + 553, + 1241, + 1194, + 1241, + 1194, + 1286, + 553, + 1286 + ], + "score": 0.9, + "latex": "\\theta _ { k } ^ { 2 } ( l ) = \\mathbb { 1 } \\left( m ( l ) = 0 \\right) \\cdot \\hat { \\theta } _ { k } ^ { 2 } ( l ) + \\mathbb { 1 } \\left( c ( l ) = 1 \\right) \\cdot r a n d ( 0 , 1 ) ," + }, + { + "category_id": 13, + "poly": [ + 729, + 844, + 758, + 844, + 758, + 882, + 729, + 882 + ], + "score": 0.9, + "latex": "\\mathbf { \\widetilde { \\theta } } _ { j } ^ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 878, + 816, + 922, + 816, + 922, + 846, + 878, + 846 + ], + "score": 0.9, + "latex": "2 _ { n d }" + }, + { + "category_id": 13, + "poly": [ + 405, + 952, + 434, + 952, + 434, + 987, + 405, + 987 + ], + "score": 0.89, + "latex": "\\theta _ { k } ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1361, + 1299, + 1391, + 1299, + 1391, + 1335, + 1361, + 1335 + ], + "score": 0.89, + "latex": "\\theta _ { k } ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 649, + 844, + 678, + 844, + 678, + 878, + 649, + 878 + ], + "score": 0.89, + "latex": "\\mathbf { \\bar { \\boldsymbol { \\theta } } } _ { i } ^ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 295, + 1724, + 328, + 1724, + 328, + 1757, + 295, + 1757 + ], + "score": 0.89, + "latex": "\\nu _ { g }" + }, + { + "category_id": 13, + "poly": [ + 285, + 343, + 327, + 343, + 327, + 374, + 285, + 374 + ], + "score": 0.89, + "latex": "k _ { t h }" + }, + { + "category_id": 13, + "poly": [ + 465, + 1661, + 522, + 1661, + 522, + 1691, + 465, + 1691 + ], + "score": 0.89, + "latex": "\\bar { \\mathcal { M } } ^ { K }" + }, + { + "category_id": 13, + "poly": [ + 1354, + 1363, + 1398, + 1363, + 1398, + 1393, + 1354, + 1393 + ], + "score": 0.88, + "latex": "2 _ { n d }" + }, + { + "category_id": 13, + "poly": [ + 198, + 256, + 245, + 256, + 245, + 288, + 198, + 288 + ], + "score": 0.88, + "latex": "\\mathcal { M } ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1516, + 1167, + 1550, + 1167, + 1550, + 1198, + 1516, + 1198 + ], + "score": 0.88, + "latex": "l _ { t h }" + }, + { + "category_id": 13, + "poly": [ + 1502, + 190, + 1550, + 190, + 1550, + 220, + 1502, + 220 + ], + "score": 0.88, + "latex": "\\mathcal { M } ^ { 1 }" + }, + { + "category_id": 14, + "poly": [ + 592, + 999, + 1153, + 999, + 1153, + 1044, + 592, + 1044 + ], + "score": 0.88, + "latex": "\\begin{array} { r } { \\hat { \\theta } _ { k } ^ { 2 } ( l ) = \\mathbb { 1 } ( c ( l ) = i ) \\cdot \\theta _ { i } ^ { 1 } ( l ) + \\mathbb { 1 } ( c ( l ) = j ) \\cdot \\theta _ { j } ^ { 1 } ( l ) , } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 197, + 1759, + 242, + 1759, + 242, + 1788, + 197, + 1788 + ], + "score": 0.87, + "latex": "{ \\bf z } _ { j , q }" + }, + { + "category_id": 13, + "poly": [ + 198, + 953, + 231, + 953, + 231, + 984, + 198, + 984 + ], + "score": 0.87, + "latex": "l _ { t h }" + }, + { + "category_id": 13, + "poly": [ + 198, + 1363, + 233, + 1363, + 233, + 1390, + 198, + 1390 + ], + "score": 0.86, + "latex": "\\mathcal { P } ^ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 857, + 1819, + 887, + 1819, + 887, + 1849, + 857, + 1849 + ], + "score": 0.86, + "latex": "v _ { q }" + }, + { + "category_id": 13, + "poly": [ + 548, + 1633, + 569, + 1633, + 569, + 1661, + 548, + 1661 + ], + "score": 0.84, + "latex": "\\mathcal { G }" + }, + { + "category_id": 13, + "poly": [ + 478, + 1056, + 525, + 1056, + 525, + 1090, + 478, + 1090 + ], + "score": 0.84, + "latex": "\\mathbb { 1 } ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 567, + 1664, + 602, + 1664, + 602, + 1691, + 567, + 1691 + ], + "score": 0.83, + "latex": "\\mathcal { M }" + }, + { + "category_id": 13, + "poly": [ + 1065, + 1755, + 1090, + 1755, + 1090, + 1782, + 1065, + 1782 + ], + "score": 0.82, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 1334, + 919, + 1351, + 919, + 1351, + 949, + 1334, + 949 + ], + "score": 0.82, + "latex": "j" + }, + { + "category_id": 13, + "poly": [ + 329, + 1760, + 347, + 1760, + 347, + 1786, + 329, + 1786 + ], + "score": 0.8, + "latex": "q" + }, + { + "category_id": 13, + "poly": [ + 1390, + 1992, + 1556, + 1992, + 1556, + 2027, + 1390, + 2027 + ], + "score": 0.8, + "latex": "v _ { p } \\notin \\mathcal { V } _ { g } , \\forall g \\in" + }, + { + "category_id": 13, + "poly": [ + 352, + 1172, + 372, + 1172, + 372, + 1198, + 352, + 1198 + ], + "score": 0.79, + "latex": "\\gamma" + }, + { + "category_id": 13, + "poly": [ + 882, + 920, + 895, + 920, + 895, + 944, + 882, + 944 + ], + "score": 0.78, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 197, + 2023, + 218, + 2023, + 218, + 2052, + 197, + 2052 + ], + "score": 0.77, + "latex": "\\mathcal { G }" + }, + { + "category_id": 13, + "poly": [ + 742, + 1729, + 759, + 1729, + 759, + 1755, + 742, + 1755 + ], + "score": 0.76, + "latex": "g" + }, + { + "category_id": 13, + "poly": [ + 955, + 1667, + 983, + 1667, + 983, + 1690, + 955, + 1690 + ], + "score": 0.75, + "latex": "m" + }, + { + "category_id": 13, + "poly": [ + 1237, + 1786, + 1255, + 1786, + 1255, + 1812, + 1237, + 1812 + ], + "score": 0.74, + "latex": "d" + }, + { + "category_id": 13, + "poly": [ + 235, + 509, + 258, + 509, + 258, + 536, + 235, + 536 + ], + "score": 0.66, + "latex": "\\nu" + }, + { + "category_id": 13, + "poly": [ + 904, + 1300, + 960, + 1300, + 960, + 1333, + 904, + 1333 + ], + "score": 0.48, + "latex": "[ 0 , 1 ]" + }, + { + "category_id": 15, + "poly": [ + 195.0, + 1440.0, + 502.0, + 1440.0, + 502.0, + 1476.0, + 195.0, + 1476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 197.0, + 72.0, + 758.0, + 72.0, + 758.0, + 108.0, + 197.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 196.0, + 1585.0, + 516.0, + 1585.0, + 516.0, + 1621.0, + 196.0, + 1621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 196.0, + 297.0, + 799.0, + 297.0, + 799.0, + 333.0, + 196.0, + 333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 865.0, + 2107.0, + 887.0, + 2107.0, + 887.0, + 2137.0, + 865.0, + 2137.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 192.0, + 1629.0, + 547.0, + 1629.0, + 547.0, + 1667.0, + 192.0, + 1667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 570.0, + 1629.0, + 1410.0, + 1629.0, + 1410.0, + 1667.0, + 570.0, + 1667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1462.0, + 1629.0, + 1553.0, + 1629.0, + 1553.0, + 1667.0, + 1462.0, + 1667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 192.0, + 1659.0, + 464.0, + 1659.0, + 464.0, + 1697.0, + 192.0, + 1697.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 523.0, + 1659.0, + 566.0, + 1659.0, + 566.0, + 1697.0, + 523.0, + 1697.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 603.0, + 1659.0, + 954.0, + 1659.0, + 954.0, + 1697.0, + 603.0, + 1697.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 984.0, + 1659.0, + 1555.0, + 1659.0, + 1555.0, + 1697.0, + 984.0, + 1697.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 192.0, + 1687.0, + 1422.0, + 1687.0, + 1422.0, + 1729.0, + 192.0, + 1729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1495.0, + 1687.0, + 1556.0, + 1687.0, + 1556.0, + 1729.0, + 1495.0, + 1729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 192.0, + 1721.0, + 294.0, + 1721.0, + 294.0, + 1761.0, + 192.0, + 1761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 1721.0, + 601.0, + 1721.0, + 601.0, + 1761.0, + 329.0, + 1761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 712.0, + 1721.0, + 741.0, + 1721.0, + 741.0, + 1761.0, + 712.0, + 1761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 760.0, + 1721.0, + 1352.0, + 1721.0, + 1352.0, + 1761.0, + 760.0, + 1761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1446.0, + 1721.0, + 1558.0, + 1721.0, + 1558.0, + 1761.0, + 1446.0, + 1761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 189.0, + 1750.0, + 196.0, + 1750.0, + 196.0, + 1794.0, + 189.0, + 1794.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 243.0, + 1750.0, + 328.0, + 1750.0, + 328.0, + 1794.0, + 243.0, + 1794.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 1750.0, + 1064.0, + 1750.0, + 1064.0, + 1794.0, + 348.0, + 1794.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1091.0, + 1750.0, + 1448.0, + 1750.0, + 1448.0, + 1794.0, + 1091.0, + 1794.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1544.0, + 1750.0, + 1556.0, + 1750.0, + 1556.0, + 1794.0, + 1544.0, + 1794.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 192.0, + 1783.0, + 633.0, + 1783.0, + 633.0, + 1823.0, + 192.0, + 1823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 770.0, + 1783.0, + 1236.0, + 1783.0, + 1236.0, + 1823.0, + 770.0, + 1823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1256.0, + 1783.0, + 1556.0, + 1783.0, + 1556.0, + 1823.0, + 1256.0, + 1823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 192.0, + 1811.0, + 856.0, + 1811.0, + 856.0, + 1851.0, + 192.0, + 1851.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 888.0, + 1811.0, + 924.0, + 1811.0, + 924.0, + 1851.0, + 888.0, + 1851.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 770.0, + 872.0, + 770.0, + 872.0, + 811.0, + 194.0, + 811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1075.0, + 770.0, + 1557.0, + 770.0, + 1557.0, + 811.0, + 1075.0, + 811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 189.0, + 803.0, + 449.0, + 803.0, + 449.0, + 859.0, + 189.0, + 859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 570.0, + 803.0, + 877.0, + 803.0, + 877.0, + 859.0, + 570.0, + 859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 923.0, + 803.0, + 1092.0, + 803.0, + 1092.0, + 859.0, + 923.0, + 859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1138.0, + 803.0, + 1560.0, + 803.0, + 1560.0, + 859.0, + 1138.0, + 859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 189.0, + 841.0, + 648.0, + 841.0, + 648.0, + 884.0, + 189.0, + 884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 679.0, + 841.0, + 728.0, + 841.0, + 728.0, + 884.0, + 679.0, + 884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 759.0, + 841.0, + 1558.0, + 841.0, + 1558.0, + 884.0, + 759.0, + 884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 189.0, + 875.0, + 860.0, + 875.0, + 860.0, + 925.0, + 189.0, + 925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1018.0, + 875.0, + 1558.0, + 875.0, + 1558.0, + 925.0, + 1018.0, + 925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 915.0, + 366.0, + 915.0, + 366.0, + 956.0, + 194.0, + 956.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 433.0, + 915.0, + 642.0, + 915.0, + 642.0, + 956.0, + 433.0, + 956.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 725.0, + 915.0, + 881.0, + 915.0, + 881.0, + 956.0, + 725.0, + 956.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 896.0, + 915.0, + 1095.0, + 915.0, + 1095.0, + 956.0, + 896.0, + 956.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1177.0, + 915.0, + 1333.0, + 915.0, + 1333.0, + 956.0, + 1177.0, + 956.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1352.0, + 915.0, + 1557.0, + 915.0, + 1557.0, + 956.0, + 1352.0, + 956.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 192.0, + 948.0, + 197.0, + 948.0, + 197.0, + 992.0, + 192.0, + 992.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 232.0, + 948.0, + 404.0, + 948.0, + 404.0, + 992.0, + 232.0, + 992.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 435.0, + 948.0, + 867.0, + 948.0, + 867.0, + 992.0, + 435.0, + 992.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 196.0, + 130.0, + 1554.0, + 130.0, + 1554.0, + 166.0, + 196.0, + 166.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 159.0, + 1557.0, + 159.0, + 1557.0, + 200.0, + 193.0, + 200.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 191.0, + 189.0, + 1501.0, + 189.0, + 1501.0, + 229.0, + 191.0, + 229.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1551.0, + 189.0, + 1554.0, + 189.0, + 1554.0, + 229.0, + 1551.0, + 229.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 187.0, + 213.0, + 228.0, + 213.0, + 228.0, + 268.0, + 187.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 603.0, + 213.0, + 1560.0, + 213.0, + 1560.0, + 268.0, + 603.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 192.0, + 253.0, + 197.0, + 253.0, + 197.0, + 290.0, + 192.0, + 290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 246.0, + 253.0, + 257.0, + 253.0, + 257.0, + 290.0, + 246.0, + 290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 192.0, + 1098.0, + 790.0, + 1098.0, + 790.0, + 1142.0, + 192.0, + 1142.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 949.0, + 1098.0, + 1557.0, + 1098.0, + 1557.0, + 1142.0, + 949.0, + 1142.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 198.0, + 1138.0, + 1554.0, + 1138.0, + 1554.0, + 1169.0, + 198.0, + 1169.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 1163.0, + 351.0, + 1163.0, + 351.0, + 1204.0, + 193.0, + 1204.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 373.0, + 1163.0, + 1269.0, + 1163.0, + 1269.0, + 1204.0, + 373.0, + 1204.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1416.0, + 1163.0, + 1515.0, + 1163.0, + 1515.0, + 1204.0, + 1416.0, + 1204.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1551.0, + 1163.0, + 1556.0, + 1163.0, + 1556.0, + 1204.0, + 1551.0, + 1204.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 195.0, + 1196.0, + 367.0, + 1196.0, + 367.0, + 1232.0, + 195.0, + 1232.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 397.0, + 1196.0, + 809.0, + 1196.0, + 809.0, + 1232.0, + 397.0, + 1232.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 196.0, + 1299.0, + 273.0, + 1299.0, + 273.0, + 1335.0, + 196.0, + 1335.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 397.0, + 1299.0, + 903.0, + 1299.0, + 903.0, + 1335.0, + 397.0, + 1335.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 961.0, + 1299.0, + 1360.0, + 1299.0, + 1360.0, + 1335.0, + 961.0, + 1335.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1392.0, + 1299.0, + 1555.0, + 1299.0, + 1555.0, + 1335.0, + 1392.0, + 1335.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 191.0, + 1327.0, + 1157.0, + 1327.0, + 1157.0, + 1368.0, + 191.0, + 1368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1204.0, + 1327.0, + 1556.0, + 1327.0, + 1556.0, + 1368.0, + 1204.0, + 1368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 188.0, + 1352.0, + 197.0, + 1352.0, + 197.0, + 1406.0, + 188.0, + 1406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 234.0, + 1352.0, + 815.0, + 1352.0, + 815.0, + 1406.0, + 234.0, + 1406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1119.0, + 1352.0, + 1353.0, + 1352.0, + 1353.0, + 1406.0, + 1119.0, + 1406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1399.0, + 1352.0, + 1561.0, + 1352.0, + 1561.0, + 1406.0, + 1399.0, + 1406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 1398.0, + 341.0, + 1398.0, + 341.0, + 1432.0, + 194.0, + 1432.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 195.0, + 1486.0, + 1554.0, + 1486.0, + 1554.0, + 1519.0, + 195.0, + 1519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 192.0, + 1513.0, + 1554.0, + 1513.0, + 1554.0, + 1553.0, + 192.0, + 1553.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 195.0, + 1547.0, + 1000.0, + 1547.0, + 1000.0, + 1585.0, + 195.0, + 1585.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 191.0, + 335.0, + 284.0, + 335.0, + 284.0, + 381.0, + 191.0, + 381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 335.0, + 622.0, + 335.0, + 622.0, + 381.0, + 328.0, + 381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 335.0, + 1340.0, + 335.0, + 1340.0, + 381.0, + 831.0, + 381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1411.0, + 335.0, + 1555.0, + 335.0, + 1555.0, + 381.0, + 1411.0, + 381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 196.0, + 374.0, + 1554.0, + 374.0, + 1554.0, + 408.0, + 196.0, + 408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 192.0, + 404.0, + 467.0, + 404.0, + 467.0, + 437.0, + 192.0, + 437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 196.0, + 444.0, + 1555.0, + 444.0, + 1555.0, + 480.0, + 196.0, + 480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 474.0, + 738.0, + 474.0, + 738.0, + 512.0, + 193.0, + 512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 784.0, + 474.0, + 834.0, + 474.0, + 834.0, + 512.0, + 784.0, + 512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 881.0, + 474.0, + 1555.0, + 474.0, + 1555.0, + 512.0, + 881.0, + 512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 505.0, + 234.0, + 505.0, + 234.0, + 543.0, + 193.0, + 543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 259.0, + 505.0, + 1555.0, + 505.0, + 1555.0, + 543.0, + 259.0, + 543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 539.0, + 411.0, + 539.0, + 411.0, + 570.0, + 194.0, + 570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 195.0, + 1991.0, + 1389.0, + 1991.0, + 1389.0, + 2029.0, + 195.0, + 2029.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 219.0, + 2022.0, + 1552.0, + 2022.0, + 1552.0, + 2060.0, + 219.0, + 2060.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 191.0, + 573.0, + 951.0, + 573.0, + 951.0, + 623.0, + 191.0, + 623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 996.0, + 573.0, + 1247.0, + 573.0, + 1247.0, + 623.0, + 996.0, + 623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 718.0, + 899.0, + 718.0, + 899.0, + 763.0, + 193.0, + 763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 946.0, + 718.0, + 1151.0, + 718.0, + 1151.0, + 763.0, + 946.0, + 763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1396.0, + 718.0, + 1405.0, + 718.0, + 1405.0, + 763.0, + 1396.0, + 763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 196.0, + 1947.0, + 1009.0, + 1947.0, + 1009.0, + 1987.0, + 196.0, + 1987.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 195.0, + 1052.0, + 477.0, + 1052.0, + 477.0, + 1093.0, + 195.0, + 1093.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 526.0, + 1052.0, + 1287.0, + 1052.0, + 1287.0, + 1093.0, + 526.0, + 1093.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 5, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 196, + 1099, + 1555, + 1099, + 1555, + 1378, + 196, + 1378 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 197, + 584, + 1555, + 584, + 1555, + 743, + 197, + 743 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 196, + 128, + 1554, + 128, + 1554, + 258, + 196, + 258 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 198, + 1388, + 1554, + 1388, + 1554, + 1541, + 198, + 1541 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 196, + 1789, + 1554, + 1789, + 1554, + 1952, + 196, + 1952 + ], + "score": 0.971 + }, + { + "category_id": 1, + "poly": [ + 196, + 480, + 1556, + 480, + 1556, + 574, + 196, + 574 + ], + "score": 0.97 + }, + { + "category_id": 1, + "poly": [ + 196, + 838, + 1555, + 838, + 1555, + 939, + 196, + 939 + ], + "score": 0.97 + }, + { + "category_id": 1, + "poly": [ + 199, + 1961, + 1553, + 1961, + 1553, + 2055, + 199, + 2055 + ], + "score": 0.969 + }, + { + "category_id": 8, + "poly": [ + 680, + 268, + 1067, + 268, + 1067, + 352, + 680, + 352 + ], + "score": 0.954 + }, + { + "category_id": 1, + "poly": [ + 204, + 989, + 1547, + 989, + 1547, + 1053, + 204, + 1053 + ], + "score": 0.944 + }, + { + "category_id": 1, + "poly": [ + 199, + 362, + 1551, + 362, + 1551, + 430, + 199, + 430 + ], + "score": 0.942 + }, + { + "category_id": 1, + "poly": [ + 202, + 1590, + 1545, + 1590, + 1545, + 1654, + 202, + 1654 + ], + "score": 0.932 + }, + { + "category_id": 0, + "poly": [ + 200, + 945, + 488, + 945, + 488, + 976, + 200, + 976 + ], + "score": 0.916 + }, + { + "category_id": 0, + "poly": [ + 200, + 1057, + 602, + 1057, + 602, + 1089, + 200, + 1089 + ], + "score": 0.909 + }, + { + "category_id": 2, + "poly": [ + 198, + 73, + 758, + 73, + 758, + 106, + 198, + 106 + ], + "score": 0.902 + }, + { + "category_id": 0, + "poly": [ + 200, + 437, + 532, + 437, + 532, + 468, + 200, + 468 + ], + "score": 0.897 + }, + { + "category_id": 9, + "poly": [ + 1516, + 286, + 1549, + 286, + 1549, + 316, + 1516, + 316 + ], + "score": 0.895 + }, + { + "category_id": 1, + "poly": [ + 217, + 1747, + 1536, + 1747, + 1536, + 1780, + 217, + 1780 + ], + "score": 0.87 + }, + { + "category_id": 0, + "poly": [ + 199, + 1546, + 794, + 1546, + 794, + 1579, + 199, + 1579 + ], + "score": 0.869 + }, + { + "category_id": 1, + "poly": [ + 266, + 1704, + 1540, + 1704, + 1540, + 1737, + 266, + 1737 + ], + "score": 0.832 + }, + { + "category_id": 2, + "poly": [ + 866, + 2107, + 883, + 2107, + 883, + 2131, + 866, + 2131 + ], + "score": 0.799 + }, + { + "category_id": 1, + "poly": [ + 266, + 1663, + 1066, + 1663, + 1066, + 1697, + 266, + 1697 + ], + "score": 0.594 + }, + { + "category_id": 8, + "poly": [ + 696, + 755, + 1050, + 755, + 1050, + 830, + 696, + 830 + ], + "score": 0.415 + }, + { + "category_id": 14, + "poly": [ + 679, + 265, + 1065, + 265, + 1065, + 355, + 679, + 355 + ], + "score": 0.94, + "latex": "\\mathbf { z } _ { p } = \\frac { 1 } { N } \\sum _ { v _ { o } \\in \\Gamma ( v _ { p } ) } \\mathbb { 1 } ( v _ { o } \\notin \\mathcal { V } _ { n } ) \\cdot \\mathbf { z } _ { o } ," + }, + { + "category_id": 14, + "poly": [ + 695, + 752, + 1052, + 752, + 1052, + 831, + 695, + 831 + ], + "score": 0.93, + "latex": "\\bar { \\mathbf { z } } _ { q } = \\sum _ { i \\in \\{ \\mathrm { B F S } , \\mathrm { D F S } , \\mathrm { H S } , \\mathrm { N S } , \\mathrm { E S } \\} } w ^ { i } \\cdot \\mathbf { z } _ { q } ^ { i } ." + }, + { + "category_id": 13, + "poly": [ + 777, + 363, + 913, + 363, + 913, + 399, + 777, + 399 + ], + "score": 0.93, + "latex": "\\Gamma ( v _ { p } ) \\subset \\mathcal { V } _ { n }" + }, + { + "category_id": 13, + "poly": [ + 874, + 194, + 1292, + 194, + 1292, + 229, + 874, + 229 + ], + "score": 0.93, + "latex": "\\Gamma ( v _ { p } ) = \\{ v _ { o } | \\bar { v } _ { o } \\in \\mathcal { V } \\wedge ( u , v _ { p } ) \\in \\mathcal { E } \\}" + }, + { + "category_id": 13, + "poly": [ + 469, + 1819, + 544, + 1819, + 544, + 1854, + 469, + 1854 + ], + "score": 0.93, + "latex": "O ( n ^ { 2 } )" + }, + { + "category_id": 13, + "poly": [ + 1118, + 1917, + 1193, + 1917, + 1193, + 1953, + 1118, + 1953 + ], + "score": 0.93, + "latex": "O ( n ^ { 2 } )" + }, + { + "category_id": 13, + "poly": [ + 540, + 196, + 640, + 196, + 640, + 229, + 540, + 229 + ], + "score": 0.93, + "latex": "v _ { p } \\in \\mathcal { V } _ { n }" + }, + { + "category_id": 13, + "poly": [ + 719, + 1852, + 844, + 1852, + 844, + 1890, + 719, + 1890 + ], + "score": 0.92, + "latex": "O \\left( p ( n ^ { \\prime } ) ^ { 2 } \\right)" + }, + { + "category_id": 13, + "poly": [ + 1112, + 1993, + 1212, + 1993, + 1212, + 2025, + 1112, + 2025 + ], + "score": 0.92, + "latex": "O ( f ( n ) )" + }, + { + "category_id": 13, + "poly": [ + 1043, + 129, + 1260, + 129, + 1260, + 169, + 1043, + 169 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { \\mathcal { V } _ { n } = \\mathcal { V } \\setminus \\bigcup _ { g \\in \\mathcal { G } } \\mathcal { V } _ { g } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 272, + 363, + 593, + 363, + 593, + 405, + 272, + 405 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { N = \\sum _ { v _ { o } \\in \\Gamma ( v _ { p } ) } \\mathbb { 1 } ( v _ { o } \\notin \\mathcal { V } _ { n } ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1298, + 1993, + 1355, + 1993, + 1355, + 2025, + 1298, + 2025 + ], + "score": 0.92, + "latex": "f ( n )" + }, + { + "category_id": 13, + "poly": [ + 697, + 1920, + 794, + 1920, + 794, + 1953, + 697, + 1953 + ], + "score": 0.91, + "latex": "O ( c n ^ { \\prime } n )" + }, + { + "category_id": 13, + "poly": [ + 197, + 225, + 265, + 225, + 265, + 260, + 197, + 260 + ], + "score": 0.91, + "latex": "\\Gamma ( v _ { p } )" + }, + { + "category_id": 13, + "poly": [ + 861, + 902, + 899, + 902, + 899, + 940, + 861, + 940 + ], + "score": 0.91, + "latex": "\\mathbf { z } _ { q } ^ { \\mathrm { E S } }" + }, + { + "category_id": 13, + "poly": [ + 553, + 617, + 647, + 617, + 647, + 651, + 553, + 651 + ], + "score": 0.9, + "latex": "v _ { q } \\in \\mathcal { V } ," + }, + { + "category_id": 13, + "poly": [ + 893, + 841, + 938, + 841, + 938, + 869, + 893, + 869 + ], + "score": 0.89, + "latex": "w ^ { \\mathrm { E S } }" + }, + { + "category_id": 13, + "poly": [ + 619, + 1887, + 727, + 1887, + 727, + 1920, + 619, + 1920 + ], + "score": 0.89, + "latex": "\\textstyle p = c \\cdot { \\frac { n } { n ^ { \\prime } } }" + }, + { + "category_id": 13, + "poly": [ + 384, + 905, + 415, + 905, + 415, + 937, + 384, + 937 + ], + "score": 0.89, + "latex": "\\bar { \\mathbf { z } } _ { q }" + }, + { + "category_id": 13, + "poly": [ + 197, + 649, + 236, + 649, + 236, + 686, + 197, + 686 + ], + "score": 0.88, + "latex": "\\mathbf { z } _ { q } ^ { \\mathrm { E S } }" + }, + { + "category_id": 13, + "poly": [ + 890, + 714, + 919, + 714, + 919, + 745, + 890, + 745 + ], + "score": 0.88, + "latex": "\\bar { \\mathbf { z } } _ { q }" + }, + { + "category_id": 13, + "poly": [ + 272, + 407, + 303, + 407, + 303, + 435, + 272, + 435 + ], + "score": 0.87, + "latex": "\\mathbf { z } _ { p }" + }, + { + "category_id": 13, + "poly": [ + 1348, + 231, + 1377, + 231, + 1377, + 260, + 1348, + 260 + ], + "score": 0.87, + "latex": "v _ { p }" + }, + { + "category_id": 13, + "poly": [ + 639, + 654, + 669, + 654, + 669, + 683, + 639, + 683 + ], + "score": 0.86, + "latex": "v _ { q }" + }, + { + "category_id": 13, + "poly": [ + 407, + 407, + 435, + 407, + 435, + 435, + 407, + 435 + ], + "score": 0.86, + "latex": "v _ { p }" + }, + { + "category_id": 13, + "poly": [ + 1134, + 2025, + 1161, + 2025, + 1161, + 2050, + 1134, + 2050 + ], + "score": 0.85, + "latex": "n ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 792, + 841, + 838, + 841, + 838, + 870, + 792, + 870 + ], + "score": 0.85, + "latex": "w ^ { \\mathrm { N S } }" + }, + { + "category_id": 13, + "poly": [ + 870, + 1665, + 897, + 1665, + 897, + 1693, + 870, + 1693 + ], + "score": 0.85, + "latex": "n ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 1291, + 1853, + 1320, + 1853, + 1320, + 1882, + 1291, + 1882 + ], + "score": 0.83, + "latex": "n ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 434, + 1889, + 453, + 1889, + 453, + 1917, + 434, + 1917 + ], + "score": 0.8, + "latex": "p" + }, + { + "category_id": 13, + "poly": [ + 732, + 840, + 778, + 840, + 778, + 870, + 732, + 870 + ], + "score": 0.8, + "latex": "w ^ { \\mathrm { H S } }" + }, + { + "category_id": 13, + "poly": [ + 598, + 903, + 646, + 903, + 646, + 940, + 598, + 940 + ], + "score": 0.8, + "latex": "\\mathbf { z } _ { q } ^ { \\mathrm { B F S } }" + }, + { + "category_id": 13, + "poly": [ + 594, + 841, + 649, + 841, + 649, + 870, + 594, + 870 + ], + "score": 0.79, + "latex": "w ^ { \\mathrm { B F S } }" + }, + { + "category_id": 13, + "poly": [ + 646, + 1705, + 674, + 1705, + 674, + 1732, + 646, + 1732 + ], + "score": 0.77, + "latex": "K" + }, + { + "category_id": 13, + "poly": [ + 662, + 841, + 718, + 841, + 718, + 870, + 662, + 870 + ], + "score": 0.76, + "latex": "w ^ { \\mathrm { D F S } }" + }, + { + "category_id": 13, + "poly": [ + 988, + 1998, + 1008, + 1998, + 1008, + 2020, + 988, + 2020 + ], + "score": 0.76, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 769, + 902, + 810, + 902, + 810, + 939, + 769, + 939 + ], + "score": 0.74, + "latex": "\\mathbf { z } _ { q } ^ { \\mathrm { { N S } } }" + }, + { + "category_id": 13, + "poly": [ + 803, + 1797, + 823, + 1797, + 823, + 1818, + 803, + 1818 + ], + "score": 0.74, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 873, + 1710, + 899, + 1710, + 899, + 1732, + 873, + 1732 + ], + "score": 0.71, + "latex": "m" + }, + { + "category_id": 13, + "poly": [ + 743, + 1894, + 757, + 1894, + 757, + 1912, + 743, + 1912 + ], + "score": 0.68, + "latex": "c" + }, + { + "category_id": 13, + "poly": [ + 1027, + 1671, + 1045, + 1671, + 1045, + 1697, + 1027, + 1697 + ], + "score": 0.68, + "latex": "p" + }, + { + "category_id": 13, + "poly": [ + 658, + 903, + 707, + 903, + 707, + 939, + 658, + 939 + ], + "score": 0.68, + "latex": "\\mathbf { z } _ { q } ^ { \\mathrm { { D F S } } }" + }, + { + "category_id": 13, + "poly": [ + 1460, + 615, + 1502, + 615, + 1502, + 653, + 1460, + 653 + ], + "score": 0.66, + "latex": "\\mathbf { z } _ { q } ^ { \\mathrm { { N S } } }" + }, + { + "category_id": 13, + "poly": [ + 1137, + 1706, + 1155, + 1706, + 1155, + 1732, + 1137, + 1732 + ], + "score": 0.64, + "latex": "d" + }, + { + "category_id": 13, + "poly": [ + 1281, + 615, + 1330, + 615, + 1330, + 653, + 1281, + 653 + ], + "score": 0.64, + "latex": "\\mathbf { z } _ { q } ^ { \\mathrm { B F S } }" + }, + { + "category_id": 13, + "poly": [ + 629, + 1671, + 648, + 1671, + 648, + 1692, + 629, + 1692 + ], + "score": 0.61, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 667, + 1929, + 684, + 1929, + 684, + 1947, + 667, + 1947 + ], + "score": 0.6, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 718, + 902, + 758, + 902, + 758, + 939, + 718, + 939 + ], + "score": 0.55, + "latex": "\\mathbf { z } _ { q } ^ { \\mathrm { H S } }" + }, + { + "category_id": 13, + "poly": [ + 1343, + 615, + 1394, + 615, + 1394, + 653, + 1343, + 653 + ], + "score": 0.53, + "latex": "\\mathbf { z } _ { q } ^ { \\mathrm { { D F S } } }" + }, + { + "category_id": 13, + "poly": [ + 1407, + 615, + 1447, + 615, + 1447, + 653, + 1407, + 653 + ], + "score": 0.51, + "latex": "\\mathbf { z } _ { q } ^ { \\mathrm { H S } }" + }, + { + "category_id": 13, + "poly": [ + 607, + 902, + 809, + 902, + 809, + 940, + 607, + 940 + ], + "score": 0.48, + "latex": "\\mathbf { z } _ { q } ^ { \\mathrm { B F S } } , \\mathbf { \\bar { z } } _ { q } ^ { \\mathrm { D F S } } , \\mathbf { z } _ { q } ^ { \\mathrm { H S } } , \\mathbf { z } _ { q } ^ { \\mathrm { N S } }" + }, + { + "category_id": 13, + "poly": [ + 1516, + 1706, + 1531, + 1706, + 1531, + 1732, + 1516, + 1732 + ], + "score": 0.45, + "latex": "b" + }, + { + "category_id": 13, + "poly": [ + 1284, + 614, + 1501, + 614, + 1501, + 653, + 1284, + 653 + ], + "score": 0.36, + "latex": "{ \\bf z } _ { q } ^ { \\mathrm { B F S } } , { \\bf z } _ { q } ^ { \\mathrm { D F S } } , { \\bf z } _ { q } ^ { \\mathrm { H S } } , { \\bf z } _ { q } ^ { \\mathrm { N S } }" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 940.0, + 491.0, + 940.0, + 491.0, + 981.0, + 194.0, + 981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 195.0, + 1053.0, + 603.0, + 1053.0, + 603.0, + 1092.0, + 195.0, + 1092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 197.0, + 72.0, + 758.0, + 72.0, + 758.0, + 108.0, + 197.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 195.0, + 435.0, + 533.0, + 435.0, + 533.0, + 471.0, + 195.0, + 471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 195.0, + 1545.0, + 794.0, + 1545.0, + 794.0, + 1581.0, + 195.0, + 1581.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 864.0, + 2106.0, + 885.0, + 2106.0, + 885.0, + 2137.0, + 864.0, + 2137.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 1101.0, + 1555.0, + 1101.0, + 1555.0, + 1138.0, + 193.0, + 1138.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 1132.0, + 1555.0, + 1132.0, + 1555.0, + 1169.0, + 193.0, + 1169.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 192.0, + 1160.0, + 1556.0, + 1160.0, + 1556.0, + 1198.0, + 192.0, + 1198.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 1193.0, + 1555.0, + 1193.0, + 1555.0, + 1230.0, + 193.0, + 1230.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 1224.0, + 1553.0, + 1224.0, + 1553.0, + 1261.0, + 193.0, + 1261.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 195.0, + 1255.0, + 1555.0, + 1255.0, + 1555.0, + 1287.0, + 195.0, + 1287.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 190.0, + 1283.0, + 1556.0, + 1283.0, + 1556.0, + 1321.0, + 190.0, + 1321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 195.0, + 1314.0, + 1556.0, + 1314.0, + 1556.0, + 1351.0, + 195.0, + 1351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 1344.0, + 1353.0, + 1344.0, + 1353.0, + 1379.0, + 193.0, + 1379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 181.0, + 581.0, + 552.0, + 581.0, + 552.0, + 670.0, + 181.0, + 670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 648.0, + 581.0, + 1280.0, + 581.0, + 1280.0, + 670.0, + 648.0, + 670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1503.0, + 581.0, + 1566.0, + 581.0, + 1566.0, + 670.0, + 1503.0, + 670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 186.0, + 638.0, + 196.0, + 638.0, + 196.0, + 699.0, + 186.0, + 699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 638.0, + 638.0, + 638.0, + 638.0, + 699.0, + 237.0, + 699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 670.0, + 638.0, + 1561.0, + 638.0, + 1561.0, + 699.0, + 670.0, + 699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 681.0, + 1555.0, + 681.0, + 1555.0, + 717.0, + 194.0, + 717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 706.0, + 889.0, + 706.0, + 889.0, + 749.0, + 193.0, + 749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 920.0, + 706.0, + 1052.0, + 706.0, + 1052.0, + 749.0, + 920.0, + 749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1418.25, + 626.0, + 1439.25, + 626.0, + 1439.25, + 639.5, + 1418.25, + 639.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 128.0, + 1042.0, + 128.0, + 1042.0, + 173.0, + 193.0, + 173.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1261.0, + 128.0, + 1557.0, + 128.0, + 1557.0, + 173.0, + 1261.0, + 173.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 192.0, + 161.0, + 1555.0, + 161.0, + 1555.0, + 202.0, + 192.0, + 202.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 192.0, + 192.0, + 539.0, + 192.0, + 539.0, + 232.0, + 192.0, + 232.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 641.0, + 192.0, + 873.0, + 192.0, + 873.0, + 232.0, + 641.0, + 232.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1293.0, + 192.0, + 1557.0, + 192.0, + 1557.0, + 232.0, + 1293.0, + 232.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 192.0, + 222.0, + 196.0, + 222.0, + 196.0, + 265.0, + 192.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 266.0, + 222.0, + 1347.0, + 222.0, + 1347.0, + 265.0, + 266.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1378.0, + 222.0, + 1414.0, + 222.0, + 1414.0, + 265.0, + 1378.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 195.0, + 1387.0, + 1552.0, + 1387.0, + 1552.0, + 1422.0, + 195.0, + 1422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 1417.0, + 1555.0, + 1417.0, + 1555.0, + 1457.0, + 194.0, + 1457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 195.0, + 1450.0, + 1555.0, + 1450.0, + 1555.0, + 1485.0, + 195.0, + 1485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 195.0, + 1480.0, + 1552.0, + 1480.0, + 1552.0, + 1515.0, + 195.0, + 1515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 195.0, + 1509.0, + 594.0, + 1509.0, + 594.0, + 1544.0, + 195.0, + 1544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 192.0, + 1788.0, + 802.0, + 1788.0, + 802.0, + 1828.0, + 192.0, + 1828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 824.0, + 1788.0, + 1558.0, + 1788.0, + 1558.0, + 1828.0, + 824.0, + 1828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 192.0, + 1816.0, + 468.0, + 1816.0, + 468.0, + 1859.0, + 192.0, + 1859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 545.0, + 1816.0, + 1557.0, + 1816.0, + 1557.0, + 1859.0, + 545.0, + 1859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 1851.0, + 718.0, + 1851.0, + 718.0, + 1892.0, + 193.0, + 1892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 845.0, + 1851.0, + 1290.0, + 1851.0, + 1290.0, + 1892.0, + 845.0, + 1892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1321.0, + 1851.0, + 1557.0, + 1851.0, + 1557.0, + 1892.0, + 1321.0, + 1892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 189.0, + 1879.0, + 433.0, + 1879.0, + 433.0, + 1930.0, + 189.0, + 1930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 454.0, + 1879.0, + 618.0, + 1879.0, + 618.0, + 1930.0, + 454.0, + 1930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 728.0, + 1879.0, + 742.0, + 1879.0, + 742.0, + 1930.0, + 728.0, + 1930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 758.0, + 1879.0, + 1560.0, + 1879.0, + 1560.0, + 1930.0, + 758.0, + 1930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 1917.0, + 666.0, + 1917.0, + 666.0, + 1958.0, + 193.0, + 1958.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 685.0, + 1917.0, + 696.0, + 1917.0, + 696.0, + 1958.0, + 685.0, + 1958.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 795.0, + 1917.0, + 1117.0, + 1917.0, + 1117.0, + 1958.0, + 795.0, + 1958.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1194.0, + 1917.0, + 1205.0, + 1917.0, + 1205.0, + 1958.0, + 1194.0, + 1958.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 196.0, + 480.0, + 1550.0, + 480.0, + 1550.0, + 513.0, + 196.0, + 513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 195.0, + 510.0, + 1553.0, + 510.0, + 1553.0, + 548.0, + 195.0, + 548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 542.0, + 1013.0, + 542.0, + 1013.0, + 580.0, + 193.0, + 580.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 192.0, + 834.0, + 593.0, + 834.0, + 593.0, + 878.0, + 192.0, + 878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 650.0, + 834.0, + 661.0, + 834.0, + 661.0, + 878.0, + 650.0, + 878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 719.0, + 834.0, + 731.0, + 834.0, + 731.0, + 878.0, + 719.0, + 878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 779.0, + 834.0, + 791.0, + 834.0, + 791.0, + 878.0, + 779.0, + 878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 834.0, + 892.0, + 834.0, + 892.0, + 878.0, + 839.0, + 878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 939.0, + 834.0, + 1559.0, + 834.0, + 1559.0, + 878.0, + 939.0, + 878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 184.0, + 873.0, + 383.0, + 873.0, + 383.0, + 958.0, + 184.0, + 958.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 416.0, + 873.0, + 597.0, + 873.0, + 597.0, + 958.0, + 416.0, + 958.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 811.0, + 873.0, + 860.0, + 873.0, + 860.0, + 958.0, + 811.0, + 958.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 900.0, + 873.0, + 1553.0, + 873.0, + 1553.0, + 958.0, + 900.0, + 958.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 197.0, + 1963.0, + 1555.0, + 1963.0, + 1555.0, + 1996.0, + 197.0, + 1996.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 196.0, + 1993.0, + 987.0, + 1993.0, + 987.0, + 2026.0, + 196.0, + 2026.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1009.0, + 1993.0, + 1111.0, + 1993.0, + 1111.0, + 2026.0, + 1009.0, + 2026.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1213.0, + 1993.0, + 1297.0, + 1993.0, + 1297.0, + 2026.0, + 1213.0, + 2026.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1356.0, + 1993.0, + 1552.0, + 1993.0, + 1552.0, + 2026.0, + 1356.0, + 2026.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 2022.0, + 1133.0, + 2022.0, + 1133.0, + 2055.0, + 194.0, + 2055.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1162.0, + 2022.0, + 1555.0, + 2022.0, + 1555.0, + 2055.0, + 1162.0, + 2055.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 198.0, + 989.0, + 1553.0, + 989.0, + 1553.0, + 1026.0, + 198.0, + 1026.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 198.0, + 1019.0, + 1317.0, + 1019.0, + 1317.0, + 1057.0, + 198.0, + 1057.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 188.0, + 352.0, + 271.0, + 352.0, + 271.0, + 419.0, + 188.0, + 419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 594.0, + 352.0, + 776.0, + 352.0, + 776.0, + 419.0, + 594.0, + 419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 914.0, + 352.0, + 1562.0, + 352.0, + 1562.0, + 419.0, + 914.0, + 419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 394.0, + 271.0, + 394.0, + 271.0, + 440.0, + 193.0, + 440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 304.0, + 394.0, + 406.0, + 394.0, + 406.0, + 440.0, + 304.0, + 440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 436.0, + 394.0, + 449.0, + 394.0, + 449.0, + 440.0, + 436.0, + 440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 196.0, + 1588.0, + 1551.0, + 1588.0, + 1551.0, + 1631.0, + 196.0, + 1631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 196.0, + 1622.0, + 807.0, + 1622.0, + 807.0, + 1660.0, + 196.0, + 1660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 210.0, + 1744.0, + 1543.0, + 1744.0, + 1543.0, + 1781.0, + 210.0, + 1781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 268.0, + 1701.0, + 645.0, + 1701.0, + 645.0, + 1740.0, + 268.0, + 1740.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 675.0, + 1701.0, + 872.0, + 1701.0, + 872.0, + 1740.0, + 675.0, + 1740.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 900.0, + 1701.0, + 1136.0, + 1701.0, + 1136.0, + 1740.0, + 900.0, + 1740.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1156.0, + 1701.0, + 1515.0, + 1701.0, + 1515.0, + 1740.0, + 1156.0, + 1740.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1532.0, + 1701.0, + 1543.0, + 1701.0, + 1543.0, + 1740.0, + 1532.0, + 1740.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 265.0, + 1658.0, + 628.0, + 1658.0, + 628.0, + 1705.0, + 265.0, + 1705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 649.0, + 1658.0, + 869.0, + 1658.0, + 869.0, + 1705.0, + 649.0, + 1705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 898.0, + 1658.0, + 1026.0, + 1658.0, + 1026.0, + 1705.0, + 898.0, + 1705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1046.0, + 1658.0, + 1057.0, + 1658.0, + 1057.0, + 1705.0, + 1046.0, + 1705.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 6, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 196, + 1604, + 1555, + 1604, + 1555, + 1969, + 196, + 1969 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 197, + 1319, + 1554, + 1319, + 1554, + 1503, + 197, + 1503 + ], + "score": 0.979 + }, + { + "category_id": 5, + "poly": [ + 196, + 149, + 1565, + 149, + 1565, + 629, + 196, + 629 + ], + "score": 0.975, + "html": "
Network RecoveryAUCPrec@500Community DetectionDensitySilhouette
151015105255052550
SEGEN(PS2)0.909 (2)0.909(2)0.909 (2)0.872 (2)0.642 (3)0.530 (3)1SEGEN(PS3)0.875 (2)0.550 (2)0.792(3)0.353(2)0.206 (2)0.208 (3)
SEGEN(PS1)0.817(6)0.819(6)0.818(6)0.772 (5)0.400(4)0.266 (4)|SEGEN(PS1)0.792(6)0.477(4)0.742(4)0.317(4)0.188 (3)0.156(5)
SEGEN-HS(PS2)0.935(1)0.936 (1)0.936(1)0.852 (4)0.388(5)0.000 (-)|SEGEN-HS(PS3)0.812(5)0.385 (11)0.705 (5)0.252(10)0.056(6)0.166(4)
SEGEN-BFS(PS2)0.860 (4)0.859(4)0.858(4)0.428(10)0.000(-)0.000 (-)||SEGEN-BFS(PS3)0.746(7)0.425((8))0.587(6)0.206(11)0.022(10)0.108(6)
SEGEN-DFS(PS2) 0.881(3) 0.882 (3)0.881(3)0.965 (1)0.814(2)0.648 (2)|| SEGEN-DFS(PS3)0.860(4)0.532(3)0.436 (11)0.280(9)0.017(11)-0.006 (11)
SEGEN-NS(PS2)0.801 (7)0.797(7)0.797(7)0.256(11) 0.002(10)0.002 (9)SEGEN-NS(PS3)0.871(3)0.425 (8)0.824 (2)0.327(3)0.060 (5)0.294 (2)
SEGEN-ES(PS2)0.820 (5) 0.822 (5)0.822 (5)0.872 (2)0.872(1)0.872 (1))SEGEN-ES(PS3)0.948 (1)0.933 (1)0.924(1)0.482 (1)0.429 (1)0.407(1)
LINE0.536(9)0.537(9)0.537(9)0.712 (6)0.268 (9)0.172 (7)1LINE0.695 (8)0.443(6)0.478(8)0.311(5)0.046(8)0.082(8)
DEEPWALK0.536(9) 0.537(9))0.537(9)0.686 (9)0.308(7)0.184 (6))DEEPWALK0.695(8)0.449 (5)0.485(7)0.311(5)0.042 (9)0.082(8)
NODE2VEC0.538(8)0.540(8)0.539(8)0.692(8)0.299(8)0.162(8)|NODE2VEC0.691(11)0.419 (10)0.469(9)0.29780.066(4)0.070(10)
HPE0.536(9) 0.537(9) 0.537(9) 0.708(7)0.354(6)0.188(5))HPE0.695 (8)0.431(7)0.465 (10)0.311(5)0.051(7)0.089(7)
" + }, + { + "category_id": 1, + "poly": [ + 267, + 884, + 1555, + 884, + 1555, + 1252, + 267, + 1252 + ], + "score": 0.964 + }, + { + "category_id": 1, + "poly": [ + 198, + 812, + 1549, + 812, + 1549, + 877, + 198, + 877 + ], + "score": 0.911 + }, + { + "category_id": 1, + "poly": [ + 196, + 2022, + 1255, + 2022, + 1255, + 2055, + 196, + 2055 + ], + "score": 0.909 + }, + { + "category_id": 0, + "poly": [ + 199, + 1978, + 580, + 1978, + 580, + 2009, + 199, + 2009 + ], + "score": 0.909 + }, + { + "category_id": 0, + "poly": [ + 199, + 1273, + 458, + 1273, + 458, + 1307, + 199, + 1307 + ], + "score": 0.902 + }, + { + "category_id": 0, + "poly": [ + 199, + 1558, + 566, + 1558, + 566, + 1591, + 199, + 1591 + ], + "score": 0.901 + }, + { + "category_id": 1, + "poly": [ + 196, + 643, + 1557, + 643, + 1557, + 761, + 196, + 761 + ], + "score": 0.885 + }, + { + "category_id": 2, + "poly": [ + 865, + 2109, + 883, + 2109, + 883, + 2132, + 865, + 2132 + ], + "score": 0.8 + }, + { + "category_id": 2, + "poly": [ + 198, + 75, + 756, + 75, + 756, + 105, + 198, + 105 + ], + "score": 0.788 + }, + { + "category_id": 0, + "poly": [ + 198, + 1514, + 926, + 1514, + 926, + 1545, + 198, + 1545 + ], + "score": 0.695 + }, + { + "category_id": 0, + "poly": [ + 197, + 768, + 847, + 768, + 847, + 801, + 197, + 801 + ], + "score": 0.58 + }, + { + "category_id": 1, + "poly": [ + 197, + 768, + 847, + 768, + 847, + 801, + 197, + 801 + ], + "score": 0.33 + }, + { + "category_id": 1, + "poly": [ + 198, + 1514, + 926, + 1514, + 926, + 1545, + 198, + 1545 + ], + "score": 0.242 + }, + { + "category_id": 6, + "poly": [ + 316, + 119, + 1436, + 119, + 1436, + 154, + 316, + 154 + ], + "score": 0.181 + }, + { + "category_id": 6, + "poly": [ + 316, + 121, + 1437, + 121, + 1437, + 153, + 316, + 153 + ], + "score": 0.159 + }, + { + "category_id": 13, + "poly": [ + 718, + 708, + 1057, + 708, + 1057, + 765, + 718, + 765 + ], + "score": 0.94, + "latex": "O \\left( K m c { \\frac { f ( n ^ { \\prime } ) } { n ^ { \\prime } } } \\cdot n + K m d n ^ { \\prime } \\right)" + }, + { + "category_id": 13, + "poly": [ + 1384, + 676, + 1501, + 676, + 1501, + 711, + 1384, + 711 + ], + "score": 0.92, + "latex": "\\textstyle b = c \\cdot { \\frac { n } { n ^ { \\prime } } }" + }, + { + "category_id": 13, + "poly": [ + 280, + 643, + 588, + 643, + 588, + 678, + 280, + 678 + ], + "score": 0.91, + "latex": "O \\left( K m ( b \\cdot f ( n ^ { \\prime } ) + d \\cdot n ^ { \\prime } ) \\right)" + }, + { + "category_id": 13, + "poly": [ + 732, + 644, + 793, + 644, + 793, + 673, + 732, + 673 + ], + "score": 0.89, + "latex": "d \\cdot n ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 1516, + 1725, + 1543, + 1725, + 1543, + 1754, + 1516, + 1754 + ], + "score": 0.84, + "latex": "n ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 289, + 1817, + 318, + 1817, + 318, + 1844, + 289, + 1844 + ], + "score": 0.81, + "latex": "K" + }, + { + "category_id": 13, + "poly": [ + 1358, + 1756, + 1387, + 1756, + 1387, + 1784, + 1358, + 1784 + ], + "score": 0.78, + "latex": "K" + }, + { + "category_id": 13, + "poly": [ + 570, + 1760, + 587, + 1760, + 587, + 1787, + 570, + 1787 + ], + "score": 0.76, + "latex": "p" + }, + { + "category_id": 13, + "poly": [ + 1268, + 727, + 1287, + 727, + 1287, + 747, + 1268, + 747 + ], + "score": 0.72, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 974, + 1791, + 1002, + 1791, + 1002, + 1814, + 974, + 1814 + ], + "score": 0.58, + "latex": "m" + }, + { + "category_id": 13, + "poly": [ + 1157, + 677, + 1174, + 677, + 1174, + 704, + 1157, + 704 + ], + "score": 0.53, + "latex": "b" + }, + { + "category_id": 13, + "poly": [ + 189, + 416, + 1055, + 416, + 1055, + 437, + 189, + 437 + ], + "score": 0.31, + "latex": "\\mathrm { \\ s E G E N - N S ( P S 2 ) } \\quad 0 . 8 0 1 \\left( 7 \\right) \\ 0 . 7 9 7 \\left( 7 \\right) \\ 0 . 7 9 7 \\left( 7 \\right) \\ 0 . 2 5 6 \\left( 1 1 \\right) \\ 0 . 0 0 2 \\left( 1 0 \\right) \\ 0 . 0 0 2 \\left( 9 \\right) \\big | \\ \\mathrm { s E G K N - N S ( P S 3 ) } \\quad 0 . 8 7 1 \\left( \\mathrm { s y s t a n c e } \\ \\mathrm { s } \\right) \\big | ^ { 2 } ," + }, + { + "category_id": 13, + "poly": [ + 192, + 453, + 1054, + 453, + 1054, + 474, + 192, + 474 + ], + "score": 0.25, + "latex": "\\mathrm { s . E G E N - E S ( P S 2 ) } \\quad { \\bf 0 . 8 2 0 ~ ( 5 ) } \\quad { \\bf 0 . 8 2 2 ~ ( 5 ) } \\quad { \\bf 0 . 8 2 2 ~ ( 5 ) } \\quad { \\bf 0 . 8 7 2 ~ ( 2 ) } \\quad { \\bf 0 . 8 7 2 ~ ( 1 ) } \\quad { \\bf 0 . 8 7 2 ~ ( 1 ) } \\quad \\mathrm { s . 0 . 8 ~ ( 0 . 5 8 ~ . 5 5 ( P S 3 ) ) } \\quad { \\bf 0 . 9 4 8 ~ ( 0 . 8 7 ~ . 5 8 ~ . 5 8 ~ . 5 8 ~ . 5 8 ~ . 5 8 ~ ) }" + }, + { + "category_id": 15, + "poly": [ + 195.0, + 1976.0, + 583.0, + 1976.0, + 583.0, + 2012.0, + 195.0, + 2012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 192.0, + 1268.0, + 461.0, + 1268.0, + 461.0, + 1313.0, + 192.0, + 1313.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 195.0, + 1557.0, + 565.0, + 1557.0, + 565.0, + 1593.0, + 195.0, + 1593.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 863.0, + 2105.0, + 887.0, + 2105.0, + 887.0, + 2137.0, + 863.0, + 2137.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 198.0, + 73.0, + 758.0, + 73.0, + 758.0, + 108.0, + 198.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 195.0, + 1513.0, + 928.0, + 1513.0, + 928.0, + 1548.0, + 195.0, + 1548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 767.0, + 848.0, + 767.0, + 848.0, + 804.0, + 194.0, + 804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 117.0, + 1430.0, + 117.0, + 1430.0, + 159.0, + 317.0, + 159.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 119.0, + 1430.0, + 119.0, + 1430.0, + 158.0, + 318.0, + 158.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 195.0, + 1602.0, + 1556.0, + 1602.0, + 1556.0, + 1638.0, + 195.0, + 1638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 190.0, + 1630.0, + 1558.0, + 1630.0, + 1558.0, + 1672.0, + 190.0, + 1672.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 190.0, + 1660.0, + 1556.0, + 1660.0, + 1556.0, + 1704.0, + 190.0, + 1704.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 1693.0, + 1555.0, + 1693.0, + 1555.0, + 1730.0, + 193.0, + 1730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 192.0, + 1724.0, + 1515.0, + 1724.0, + 1515.0, + 1760.0, + 192.0, + 1760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1544.0, + 1724.0, + 1555.0, + 1724.0, + 1555.0, + 1760.0, + 1544.0, + 1760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 1755.0, + 569.0, + 1755.0, + 569.0, + 1791.0, + 193.0, + 1791.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 588.0, + 1755.0, + 1357.0, + 1755.0, + 1357.0, + 1791.0, + 588.0, + 1791.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1388.0, + 1755.0, + 1556.0, + 1755.0, + 1556.0, + 1791.0, + 1388.0, + 1791.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 1785.0, + 973.0, + 1785.0, + 973.0, + 1821.0, + 193.0, + 1821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1003.0, + 1785.0, + 1555.0, + 1785.0, + 1555.0, + 1821.0, + 1003.0, + 1821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 190.0, + 1814.0, + 288.0, + 1814.0, + 288.0, + 1855.0, + 190.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1814.0, + 1558.0, + 1814.0, + 1558.0, + 1855.0, + 319.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 192.0, + 1846.0, + 1556.0, + 1846.0, + 1556.0, + 1882.0, + 192.0, + 1882.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 192.0, + 1875.0, + 1553.0, + 1875.0, + 1553.0, + 1914.0, + 192.0, + 1914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 1907.0, + 1555.0, + 1907.0, + 1555.0, + 1943.0, + 193.0, + 1943.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 1938.0, + 1006.0, + 1938.0, + 1006.0, + 1974.0, + 193.0, + 1974.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 197.0, + 1321.0, + 1555.0, + 1321.0, + 1555.0, + 1353.0, + 197.0, + 1353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 196.0, + 1350.0, + 1555.0, + 1350.0, + 1555.0, + 1383.0, + 196.0, + 1383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 1380.0, + 1557.0, + 1380.0, + 1557.0, + 1417.0, + 194.0, + 1417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 1411.0, + 1554.0, + 1411.0, + 1554.0, + 1444.0, + 194.0, + 1444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 1439.0, + 1554.0, + 1439.0, + 1554.0, + 1476.0, + 193.0, + 1476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 191.0, + 1467.0, + 1495.0, + 1467.0, + 1495.0, + 1510.0, + 191.0, + 1510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 265.0, + 887.0, + 1554.0, + 887.0, + 1554.0, + 919.0, + 265.0, + 919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 913.0, + 1556.0, + 913.0, + 1556.0, + 951.0, + 291.0, + 951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 948.0, + 1108.0, + 948.0, + 1108.0, + 980.0, + 295.0, + 980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 265.0, + 985.0, + 1552.0, + 985.0, + 1552.0, + 1024.0, + 265.0, + 1024.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1018.0, + 1061.0, + 1018.0, + 1061.0, + 1052.0, + 289.0, + 1052.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 275.0, + 1061.0, + 1554.0, + 1061.0, + 1554.0, + 1093.0, + 275.0, + 1093.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1088.0, + 1556.0, + 1088.0, + 1556.0, + 1125.0, + 292.0, + 1125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1122.0, + 842.0, + 1122.0, + 842.0, + 1154.0, + 294.0, + 1154.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 279.0, + 1160.0, + 1552.0, + 1160.0, + 1552.0, + 1197.0, + 279.0, + 1197.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1189.0, + 1556.0, + 1189.0, + 1556.0, + 1226.0, + 292.0, + 1226.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1222.0, + 888.0, + 1222.0, + 888.0, + 1254.0, + 292.0, + 1254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 196.0, + 808.0, + 1555.0, + 808.0, + 1555.0, + 851.0, + 196.0, + 851.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 195.0, + 837.0, + 282.0, + 837.0, + 282.0, + 883.0, + 195.0, + 883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 2018.0, + 1258.0, + 2018.0, + 1258.0, + 2061.0, + 194.0, + 2061.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 195.0, + 639.0, + 279.0, + 639.0, + 279.0, + 682.0, + 195.0, + 682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 589.0, + 639.0, + 731.0, + 639.0, + 731.0, + 682.0, + 589.0, + 682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 794.0, + 639.0, + 1557.0, + 639.0, + 1557.0, + 682.0, + 794.0, + 682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 190.0, + 668.0, + 1156.0, + 668.0, + 1156.0, + 721.0, + 190.0, + 721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1175.0, + 668.0, + 1383.0, + 668.0, + 1383.0, + 721.0, + 1175.0, + 721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1502.0, + 668.0, + 1560.0, + 668.0, + 1560.0, + 721.0, + 1502.0, + 721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 190.0, + 705.0, + 717.0, + 705.0, + 717.0, + 765.0, + 190.0, + 765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1058.0, + 705.0, + 1267.0, + 705.0, + 1267.0, + 765.0, + 1058.0, + 765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1288.0, + 705.0, + 1303.0, + 705.0, + 1303.0, + 765.0, + 1288.0, + 765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 767.0, + 848.0, + 767.0, + 848.0, + 804.0, + 194.0, + 804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 195.0, + 1513.0, + 928.0, + 1513.0, + 928.0, + 1548.0, + 195.0, + 1548.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 7, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 197, + 1418, + 1556, + 1418, + 1556, + 1694, + 197, + 1694 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 199, + 1178, + 1555, + 1178, + 1555, + 1362, + 199, + 1362 + ], + "score": 0.976 + }, + { + "category_id": 5, + "poly": [ + 208, + 154, + 1540, + 154, + 1540, + 629, + 208, + 629 + ], + "score": 0.975, + "html": "
Network RecoveryAUCPrec@500CommunityDensitySilhouette
15101510Detection52550 52550
SEGEN(PS4)0.879 (1)0.881(1)0.881 (1) 0.914(3) 0.638(3) 0.370 (3)SEGEN(PS5)0.980 (2)0.845 (3)0.770 (3))0.566(4)0.353(3)0.341(2)
SEGEN(PS1)0.814 (4)0.813 (4) 0.814(4)0.606(4) 0.194 (4) 0.102 (4)SEGEN(PS1)0.786 (7)0.751(4)0.753(4) 0.481(10) 0.328(4)0.318(4)
SEGEN-HS(PS4)0.862 (2))0.863(2).6(2).594(5)(-)0(-)N-(96(6)(1)(.45)(1)(
SEENS(P4
EGENDS
SEGEN-NS(PS)(57(6()8()E57986(
SEGENES(PS
LINE0.254 (11)0()0(1)0()18(7)(7)LINE0.524 (11) 0.324(10) 0.251(9) 0.465 (11) -0.012(9) -0.012 (7)
DEEPWALK0.533(9)0.531(9)0.532(9)0.524(9) 0.146(6)0.070 (6)DEEPWALK0.545(10) 0.542(7)0.503(7)0.492(9)0.173(8)0.150(6)
NODE2VEC0.704(7)0.703(7) 0.704(7)0.528 (8) 0.012(8) 0.000(-)|NODE2VEC0.697(8) 0.693(5) 0.694(5) 0.530 (8) -0.020 (10) -0.015 (8)
HPE0.593(8)0.595 (8)0.594 (8)0.534(7) 0.186(5) 0.094 (5)HPE0.579(9)0.579(6)0.579(6) 0.544(6)0.208(7)0.187(5)
" + }, + { + "category_id": 1, + "poly": [ + 198, + 1869, + 1554, + 1869, + 1554, + 2055, + 198, + 2055 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 197, + 1705, + 1554, + 1705, + 1554, + 1859, + 197, + 1859 + ], + "score": 0.973 + }, + { + "category_id": 0, + "poly": [ + 201, + 1134, + 707, + 1134, + 707, + 1165, + 201, + 1165 + ], + "score": 0.892 + }, + { + "category_id": 0, + "poly": [ + 199, + 1374, + 915, + 1374, + 915, + 1407, + 199, + 1407 + ], + "score": 0.888 + }, + { + "category_id": 2, + "poly": [ + 199, + 75, + 756, + 75, + 756, + 105, + 199, + 105 + ], + "score": 0.841 + }, + { + "category_id": 2, + "poly": [ + 865, + 2108, + 884, + 2108, + 884, + 2132, + 865, + 2132 + ], + "score": 0.809 + }, + { + "category_id": 1, + "poly": [ + 250, + 645, + 1558, + 645, + 1558, + 1119, + 250, + 1119 + ], + "score": 0.798 + }, + { + "category_id": 6, + "poly": [ + 337, + 121, + 1408, + 121, + 1408, + 153, + 337, + 153 + ], + "score": 0.409 + }, + { + "category_id": 13, + "poly": [ + 483, + 1602, + 592, + 1602, + 592, + 1636, + 483, + 1636 + ], + "score": 0.91, + "latex": "\\{ 1 , 5 , 1 0 \\}" + }, + { + "category_id": 13, + "poly": [ + 782, + 1633, + 905, + 1633, + 905, + 1666, + 782, + 1666 + ], + "score": 0.91, + "latex": "\\{ 5 , 2 5 , 5 0 \\}" + }, + { + "category_id": 13, + "poly": [ + 1133, + 1964, + 1178, + 1964, + 1178, + 1991, + 1133, + 1991 + ], + "score": 0.84, + "latex": "= 1" + }, + { + "category_id": 13, + "poly": [ + 463, + 1270, + 530, + 1270, + 530, + 1298, + 463, + 1298 + ], + "score": 0.78, + "latex": "@ 5 0 0" + }, + { + "category_id": 13, + "poly": [ + 1484, + 1963, + 1552, + 1963, + 1552, + 1992, + 1484, + 1992 + ], + "score": 0.71, + "latex": "@ 5 0 0" + }, + { + "category_id": 13, + "poly": [ + 1150, + 1603, + 1217, + 1603, + 1217, + 1631, + 1150, + 1631 + ], + "score": 0.53, + "latex": "@ 5 0 0" + }, + { + "category_id": 13, + "poly": [ + 203, + 415, + 1316, + 415, + 1316, + 437, + 203, + 437 + ], + "score": 0.45, + "latex": "\\begin{array} { r l } { \\mathrm { S t G E N - N S ( P S A ) } \\quad \\mathbf { 0 . 7 9 4 } ( \\bar { S } ) \\quad \\mathbf { 0 . 7 9 4 } ( \\bar { S } ) \\quad \\mathbf { 0 . 7 9 5 } ( \\bar { S } ) \\quad \\mathbf { 0 . 9 6 2 } ( 2 ) \\quad \\mathbf { 0 . 8 2 4 } ( 2 ) \\mathbf { 0 . 6 8 8 } ( 2 ) | \\mathrm { s ~ r G E N - N S ( P S 5 ) } \\quad \\mathbf { 0 . 9 7 9 } ( \\bar { 3 } ) \\quad \\mathbf { 0 . 9 8 1 } ( 1 ) \\quad \\mathbf { 0 . 9 6 5 } ( 1 ) \\quad \\mathbf { 0 . 5 9 7 } ( \\bar { N } ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 732, + 1963, + 799, + 1963, + 799, + 1991, + 732, + 1991 + ], + "score": 0.41, + "latex": "@ 5 0 0" + }, + { + "category_id": 13, + "poly": [ + 203, + 378, + 1316, + 378, + 1316, + 401, + 203, + 401 + ], + "score": 0.36, + "latex": "\\mathrm { s t G E N - D F S ( P S 4 ) } _ { 0 } \\mathrm { { , } 0 . 5 0 3 } \\left( 1 0 \\right) \\mathrm { { 0 . 5 0 8 } \\left( 1 0 \\right) \\mathrm { { 0 . 5 0 7 } \\left( 1 0 \\right) \\mathrm { { ~ 0 . 2 6 8 } \\left( 1 0 \\right) \\mathrm { { ~ 0 . 0 0 0 } \\left( - \\right) ~ 0 . 0 0 0 0 \\left( - \\right) \\left| _ { V E G E N - D V S ( P S S 5 ) } \\right)} \\bullet \\mathbf { 0 . 9 9 4 } \\left( 1 \\right) \\mathrm { { 0 . 3 3 8 } \\left( 9 \\right) \\mathrm { { ~ 0 . 1 4 3 } \\left( 1 0 \\right) ~ 0 . 5 3 2 \\left( - \\right) ~ 0 . 0 0 0 0 0 \\left( - \\right) ~ 0 . 0 0 0 0 0 \\left( - \\right) ~ 0 . 0 0 0 0 ~ 0 . 1 4 3 ~ 0 . 0 0 0 ~ 0 . 1 } } } } }" + }, + { + "category_id": 13, + "poly": [ + 203, + 452, + 1315, + 452, + 1315, + 475, + 203, + 475 + ], + "score": 0.28, + "latex": "\\mathrm { 5 t G E N - E S ( P S A ) } \\quad 0 . 7 5 \\ 8 \\ ( 6 ) \\quad 0 . 7 6 0 \\ ( 6 ) \\quad \\mathrm { 0 . 7 6 0 } \\ ( 6 ) \\quad \\mathrm { 1 . 0 0 0 \\ ( 1 ) } \\ \\mathrm { 1 . 0 0 0 \\ ( 1 ) } \\ \\mathrm { 1 . 0 0 0 \\ ( 1 ) } \\ \\big | \\mathrm { s t G E N - E S ( P S S ) } \\quad \\mathrm { 0 . 9 7 0 \\ ( 5 ) } \\quad \\mathrm { 0 . 5 2 5 \\ ( 8 ) } \\quad \\mathrm { 0 . 4 8 2 \\ ( 8 ) } \\quad \\mathrm { 0 . 6 9 3 } \\ ( \\mathrm { 2 } )" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 1132.0, + 709.0, + 1132.0, + 709.0, + 1169.0, + 194.0, + 1169.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 195.0, + 1374.0, + 916.0, + 1374.0, + 916.0, + 1410.0, + 195.0, + 1410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 198.0, + 73.0, + 758.0, + 73.0, + 758.0, + 108.0, + 198.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 864.0, + 2106.0, + 886.0, + 2106.0, + 886.0, + 2137.0, + 864.0, + 2137.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 342.0, + 119.0, + 1407.0, + 119.0, + 1407.0, + 158.0, + 342.0, + 158.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 1418.0, + 1557.0, + 1418.0, + 1557.0, + 1456.0, + 194.0, + 1456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 1449.0, + 1556.0, + 1449.0, + 1556.0, + 1486.0, + 193.0, + 1486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 191.0, + 1477.0, + 1559.0, + 1477.0, + 1559.0, + 1518.0, + 191.0, + 1518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 190.0, + 1508.0, + 1557.0, + 1508.0, + 1557.0, + 1547.0, + 190.0, + 1547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 1540.0, + 1556.0, + 1540.0, + 1556.0, + 1577.0, + 193.0, + 1577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 1571.0, + 1554.0, + 1571.0, + 1554.0, + 1607.0, + 194.0, + 1607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 1602.0, + 482.0, + 1602.0, + 482.0, + 1638.0, + 193.0, + 1638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 593.0, + 1602.0, + 1149.0, + 1602.0, + 1149.0, + 1638.0, + 593.0, + 1638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1218.0, + 1602.0, + 1556.0, + 1602.0, + 1556.0, + 1638.0, + 1218.0, + 1638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 1631.0, + 781.0, + 1631.0, + 781.0, + 1668.0, + 194.0, + 1668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 906.0, + 1631.0, + 1556.0, + 1631.0, + 1556.0, + 1668.0, + 906.0, + 1668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 1661.0, + 324.0, + 1661.0, + 324.0, + 1699.0, + 193.0, + 1699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 195.0, + 1175.0, + 1556.0, + 1175.0, + 1556.0, + 1215.0, + 195.0, + 1215.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 1209.0, + 1555.0, + 1209.0, + 1555.0, + 1243.0, + 193.0, + 1243.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 1237.0, + 1553.0, + 1237.0, + 1553.0, + 1274.0, + 193.0, + 1274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 196.0, + 1270.0, + 462.0, + 1270.0, + 462.0, + 1303.0, + 196.0, + 1303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 531.0, + 1270.0, + 1553.0, + 1270.0, + 1553.0, + 1303.0, + 531.0, + 1303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 195.0, + 1301.0, + 1553.0, + 1301.0, + 1553.0, + 1334.0, + 195.0, + 1334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 196.0, + 1329.0, + 1236.0, + 1329.0, + 1236.0, + 1366.0, + 196.0, + 1366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 1868.0, + 1557.0, + 1868.0, + 1557.0, + 1907.0, + 194.0, + 1907.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 190.0, + 1901.0, + 1555.0, + 1901.0, + 1555.0, + 1937.0, + 190.0, + 1937.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 195.0, + 1932.0, + 1552.0, + 1932.0, + 1552.0, + 1965.0, + 195.0, + 1965.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 195.0, + 1961.0, + 731.0, + 1961.0, + 731.0, + 1998.0, + 195.0, + 1998.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 800.0, + 1961.0, + 1132.0, + 1961.0, + 1132.0, + 1998.0, + 800.0, + 1998.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1179.0, + 1961.0, + 1483.0, + 1961.0, + 1483.0, + 1998.0, + 1179.0, + 1998.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1553.0, + 1961.0, + 1557.0, + 1961.0, + 1557.0, + 1998.0, + 1553.0, + 1998.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 1993.0, + 1552.0, + 1993.0, + 1552.0, + 2026.0, + 194.0, + 2026.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 195.0, + 2023.0, + 1554.0, + 2023.0, + 1554.0, + 2056.0, + 195.0, + 2056.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 191.0, + 1701.0, + 1557.0, + 1701.0, + 1557.0, + 1744.0, + 191.0, + 1744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 1734.0, + 1555.0, + 1734.0, + 1555.0, + 1774.0, + 194.0, + 1774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 191.0, + 1763.0, + 1557.0, + 1763.0, + 1557.0, + 1804.0, + 191.0, + 1804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 191.0, + 1793.0, + 1558.0, + 1793.0, + 1558.0, + 1834.0, + 191.0, + 1834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 1826.0, + 1446.0, + 1826.0, + 1446.0, + 1861.0, + 194.0, + 1861.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 269.0, + 646.0, + 1555.0, + 646.0, + 1555.0, + 679.0, + 269.0, + 679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 673.0, + 1557.0, + 673.0, + 1557.0, + 712.0, + 292.0, + 712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 707.0, + 716.0, + 707.0, + 716.0, + 740.0, + 294.0, + 740.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 279.0, + 744.0, + 1555.0, + 744.0, + 1555.0, + 785.0, + 279.0, + 785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 773.0, + 1558.0, + 773.0, + 1558.0, + 818.0, + 290.0, + 818.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 807.0, + 1191.0, + 807.0, + 1191.0, + 845.0, + 295.0, + 845.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 282.0, + 851.0, + 1555.0, + 851.0, + 1555.0, + 883.0, + 282.0, + 883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 882.0, + 1555.0, + 882.0, + 1555.0, + 915.0, + 294.0, + 915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 915.0, + 608.0, + 915.0, + 608.0, + 943.0, + 295.0, + 943.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 275.0, + 951.0, + 1554.0, + 951.0, + 1554.0, + 990.0, + 275.0, + 990.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 985.0, + 1555.0, + 985.0, + 1555.0, + 1018.0, + 294.0, + 1018.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1010.0, + 403.0, + 1010.0, + 403.0, + 1053.0, + 294.0, + 1053.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 263.0, + 1052.0, + 1555.0, + 1052.0, + 1555.0, + 1094.0, + 263.0, + 1094.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1085.0, + 1554.0, + 1085.0, + 1554.0, + 1123.0, + 292.0, + 1123.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 8, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 197, + 910, + 1554, + 910, + 1554, + 1275, + 197, + 1275 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 197, + 1287, + 1554, + 1287, + 1554, + 1624, + 197, + 1624 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 197, + 512, + 1554, + 512, + 1554, + 850, + 197, + 850 + ], + "score": 0.981 + }, + { + "category_id": 5, + "poly": [ + 197, + 166, + 832, + 166, + 832, + 379, + 197, + 379 + ], + "score": 0.978, + "html": "
Comparison MethodsAccuracy Rate%
SEGEN(CNN)99.37
LeNet-599.05 Lecun et al. (1998)
gcForest99.26 Zhou & Feng (2017b)
Deep Belief Net98.75 Hinton et al. (2006)
Random Forest96.8 Zhou & Feng (2017b)
SVM (rbf)98.60 Decoste & Scholkopf (2002)
" + }, + { + "category_id": 1, + "poly": [ + 198, + 1696, + 1555, + 1696, + 1555, + 1942, + 198, + 1942 + ], + "score": 0.978 + }, + { + "category_id": 5, + "poly": [ + 901, + 153, + 1509, + 153, + 1509, + 392, + 901, + 392 + ], + "score": 0.975, + "html": "
Comparison MethodsAccuracy/Rate%onDatasets
YEASTADULTLETTER
SEGEN (MLP)63.7087.0596.90
MLP62.0585.0396.70
gcForest63.4586.4097.40
Random Forest60.4485.6396.28
SVM (rbf)40.7676.4197.06
kNN (k=3)48.8076.0095.23
" + }, + { + "category_id": 2, + "poly": [ + 229, + 1963, + 806, + 1963, + 806, + 2054, + 229, + 2054 + ], + "score": 0.959 + }, + { + "category_id": 1, + "poly": [ + 197, + 410, + 1554, + 410, + 1554, + 502, + 197, + 502 + ], + "score": 0.956 + }, + { + "category_id": 6, + "poly": [ + 267, + 136, + 732, + 136, + 732, + 165, + 267, + 165 + ], + "score": 0.898 + }, + { + "category_id": 6, + "poly": [ + 978, + 123, + 1429, + 123, + 1429, + 151, + 978, + 151 + ], + "score": 0.897 + }, + { + "category_id": 0, + "poly": [ + 198, + 1649, + 445, + 1649, + 445, + 1684, + 198, + 1684 + ], + "score": 0.891 + }, + { + "category_id": 2, + "poly": [ + 199, + 75, + 757, + 75, + 757, + 105, + 199, + 105 + ], + "score": 0.882 + }, + { + "category_id": 0, + "poly": [ + 210, + 864, + 933, + 864, + 933, + 895, + 210, + 895 + ], + "score": 0.862 + }, + { + "category_id": 2, + "poly": [ + 861, + 2108, + 891, + 2108, + 891, + 2132, + 861, + 2132 + ], + "score": 0.857 + }, + { + "category_id": 13, + "poly": [ + 583, + 1002, + 671, + 1002, + 671, + 1031, + 583, + 1031 + ], + "score": 0.91, + "latex": "2 8 \\times 2 8" + }, + { + "category_id": 13, + "poly": [ + 918, + 1214, + 1007, + 1214, + 1007, + 1245, + 918, + 1245 + ], + "score": 0.88, + "latex": "9 9 . 3 7 \\%" + }, + { + "category_id": 13, + "poly": [ + 1332, + 154, + 1357, + 154, + 1357, + 179, + 1332, + 179 + ], + "score": 0.47, + "latex": "\\overline { { \\% } }" + }, + { + "category_id": 15, + "poly": [ + 232.0, + 1961.0, + 684.0, + 1961.0, + 684.0, + 1995.0, + 232.0, + 1995.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 1991.0, + 680.0, + 1991.0, + 680.0, + 2024.0, + 230.0, + 2024.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 2019.0, + 808.0, + 2019.0, + 808.0, + 2057.0, + 229.0, + 2057.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 270.0, + 134.0, + 737.0, + 134.0, + 737.0, + 170.0, + 270.0, + 170.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 975.0, + 120.0, + 1434.0, + 120.0, + 1434.0, + 156.0, + 975.0, + 156.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 192.0, + 1642.0, + 450.0, + 1642.0, + 450.0, + 1693.0, + 192.0, + 1693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 198.0, + 73.0, + 758.0, + 73.0, + 758.0, + 108.0, + 198.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 200.0, + 860.0, + 940.0, + 860.0, + 940.0, + 900.0, + 200.0, + 900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 856.0, + 2104.0, + 896.0, + 2104.0, + 896.0, + 2145.0, + 856.0, + 2145.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 196.0, + 911.0, + 1554.0, + 911.0, + 1554.0, + 943.0, + 196.0, + 943.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 941.0, + 1554.0, + 941.0, + 1554.0, + 973.0, + 194.0, + 973.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 190.0, + 965.0, + 1557.0, + 965.0, + 1557.0, + 1010.0, + 190.0, + 1010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 1002.0, + 582.0, + 1002.0, + 582.0, + 1034.0, + 194.0, + 1034.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 672.0, + 1002.0, + 1551.0, + 1002.0, + 1551.0, + 1034.0, + 672.0, + 1034.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 1029.0, + 1555.0, + 1029.0, + 1555.0, + 1068.0, + 193.0, + 1068.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 1063.0, + 1555.0, + 1063.0, + 1555.0, + 1095.0, + 194.0, + 1095.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 1092.0, + 1554.0, + 1092.0, + 1554.0, + 1124.0, + 194.0, + 1124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 1123.0, + 1557.0, + 1123.0, + 1557.0, + 1159.0, + 193.0, + 1159.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 189.0, + 1152.0, + 1558.0, + 1152.0, + 1558.0, + 1190.0, + 189.0, + 1190.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 1185.0, + 1554.0, + 1185.0, + 1554.0, + 1217.0, + 194.0, + 1217.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 1213.0, + 917.0, + 1213.0, + 917.0, + 1249.0, + 194.0, + 1249.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1008.0, + 1213.0, + 1555.0, + 1213.0, + 1555.0, + 1249.0, + 1008.0, + 1249.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 192.0, + 1243.0, + 305.0, + 1243.0, + 305.0, + 1277.0, + 192.0, + 1277.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 191.0, + 1283.0, + 1554.0, + 1283.0, + 1554.0, + 1323.0, + 191.0, + 1323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 191.0, + 1313.0, + 1555.0, + 1313.0, + 1555.0, + 1357.0, + 191.0, + 1357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 1348.0, + 1554.0, + 1348.0, + 1554.0, + 1381.0, + 193.0, + 1381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 1380.0, + 1551.0, + 1380.0, + 1551.0, + 1413.0, + 194.0, + 1413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 191.0, + 1408.0, + 1554.0, + 1408.0, + 1554.0, + 1443.0, + 191.0, + 1443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 1436.0, + 1555.0, + 1436.0, + 1555.0, + 1477.0, + 193.0, + 1477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 191.0, + 1465.0, + 1559.0, + 1465.0, + 1559.0, + 1510.0, + 191.0, + 1510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 1498.0, + 1557.0, + 1498.0, + 1557.0, + 1537.0, + 193.0, + 1537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 1530.0, + 1557.0, + 1530.0, + 1557.0, + 1568.0, + 193.0, + 1568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 1560.0, + 1555.0, + 1560.0, + 1555.0, + 1598.0, + 194.0, + 1598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 1592.0, + 903.0, + 1592.0, + 903.0, + 1630.0, + 194.0, + 1630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 191.0, + 511.0, + 1558.0, + 511.0, + 1558.0, + 550.0, + 191.0, + 550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 544.0, + 1557.0, + 544.0, + 1557.0, + 582.0, + 193.0, + 582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 576.0, + 1555.0, + 576.0, + 1555.0, + 610.0, + 193.0, + 610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 603.0, + 1555.0, + 603.0, + 1555.0, + 641.0, + 193.0, + 641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 191.0, + 634.0, + 1557.0, + 634.0, + 1557.0, + 670.0, + 191.0, + 670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 666.0, + 1557.0, + 666.0, + 1557.0, + 704.0, + 193.0, + 704.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 696.0, + 1554.0, + 696.0, + 1554.0, + 730.0, + 193.0, + 730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 191.0, + 724.0, + 1557.0, + 724.0, + 1557.0, + 765.0, + 191.0, + 765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 756.0, + 1557.0, + 756.0, + 1557.0, + 794.0, + 194.0, + 794.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 190.0, + 780.0, + 1557.0, + 780.0, + 1557.0, + 829.0, + 190.0, + 829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 191.0, + 815.0, + 782.0, + 815.0, + 782.0, + 859.0, + 191.0, + 859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 1695.0, + 1558.0, + 1695.0, + 1558.0, + 1734.0, + 194.0, + 1734.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 192.0, + 1725.0, + 1558.0, + 1725.0, + 1558.0, + 1768.0, + 192.0, + 1768.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 1757.0, + 1556.0, + 1757.0, + 1556.0, + 1796.0, + 194.0, + 1796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 191.0, + 1783.0, + 1556.0, + 1783.0, + 1556.0, + 1828.0, + 191.0, + 1828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 192.0, + 1816.0, + 1555.0, + 1816.0, + 1555.0, + 1858.0, + 192.0, + 1858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 192.0, + 1848.0, + 1556.0, + 1848.0, + 1556.0, + 1887.0, + 192.0, + 1887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 195.0, + 1881.0, + 1555.0, + 1881.0, + 1555.0, + 1915.0, + 195.0, + 1915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 1910.0, + 415.0, + 1910.0, + 415.0, + 1944.0, + 194.0, + 1944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 196.0, + 408.0, + 1552.0, + 408.0, + 1552.0, + 441.0, + 196.0, + 441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 191.0, + 438.0, + 1557.0, + 438.0, + 1557.0, + 476.0, + 191.0, + 476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 470.0, + 306.0, + 470.0, + 306.0, + 504.0, + 194.0, + 504.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 9, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 188, + 116, + 1560, + 116, + 1560, + 2061, + 188, + 2061 + ], + "score": 0.882 + }, + { + "category_id": 2, + "poly": [ + 197, + 74, + 759, + 74, + 759, + 106, + 197, + 106 + ], + "score": 0.878 + }, + { + "category_id": 2, + "poly": [ + 860, + 2107, + 888, + 2107, + 888, + 2134, + 860, + 2134 + ], + "score": 0.828 + }, + { + "category_id": 0, + "poly": [ + 199, + 127, + 390, + 127, + 390, + 160, + 199, + 160 + ], + "score": 0.784 + }, + { + "category_id": 15, + "poly": [ + 197.0, + 72.0, + 758.0, + 72.0, + 758.0, + 109.0, + 197.0, + 109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 857.0, + 2105.0, + 893.0, + 2105.0, + 893.0, + 2145.0, + 857.0, + 2145.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 197.0, + 128.0, + 391.0, + 128.0, + 391.0, + 164.0, + 197.0, + 164.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 192.0, + 124.0, + 393.0, + 124.0, + 393.0, + 164.0, + 192.0, + 164.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 192.0, + 170.0, + 1470.0, + 170.0, + 1470.0, + 211.0, + 192.0, + 211.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 192.0, + 226.0, + 1554.0, + 226.0, + 1554.0, + 266.0, + 192.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 217.0, + 256.0, + 573.0, + 256.0, + 573.0, + 294.0, + 217.0, + 294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 190.0, + 307.0, + 1556.0, + 307.0, + 1556.0, + 351.0, + 190.0, + 351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 217.0, + 341.0, + 401.0, + 341.0, + 401.0, + 381.0, + 217.0, + 381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 394.0, + 1551.0, + 394.0, + 1551.0, + 428.0, + 194.0, + 428.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 192.0, + 447.0, + 1556.0, + 447.0, + 1556.0, + 488.0, + 192.0, + 488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 222.0, + 481.0, + 487.0, + 481.0, + 487.0, + 515.0, + 222.0, + 515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 190.0, + 530.0, + 1554.0, + 530.0, + 1554.0, + 571.0, + 190.0, + 571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 215.0, + 560.0, + 836.0, + 560.0, + 836.0, + 603.0, + 215.0, + 603.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 188.0, + 611.0, + 1265.0, + 611.0, + 1265.0, + 656.0, + 188.0, + 656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 192.0, + 669.0, + 1558.0, + 669.0, + 1558.0, + 709.0, + 192.0, + 709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 217.0, + 701.0, + 736.0, + 701.0, + 736.0, + 737.0, + 217.0, + 737.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 188.0, + 752.0, + 1554.0, + 752.0, + 1554.0, + 795.0, + 188.0, + 795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 222.0, + 783.0, + 294.0, + 783.0, + 294.0, + 827.0, + 222.0, + 827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 192.0, + 837.0, + 1248.0, + 837.0, + 1248.0, + 878.0, + 192.0, + 878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 192.0, + 890.0, + 1154.0, + 890.0, + 1154.0, + 931.0, + 192.0, + 931.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 192.0, + 944.0, + 1376.0, + 944.0, + 1376.0, + 984.0, + 192.0, + 984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 192.0, + 997.0, + 1554.0, + 997.0, + 1554.0, + 1037.0, + 192.0, + 1037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 220.0, + 1029.0, + 1508.0, + 1029.0, + 1508.0, + 1069.0, + 220.0, + 1069.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 192.0, + 1080.0, + 1556.0, + 1080.0, + 1556.0, + 1120.0, + 192.0, + 1120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 217.0, + 1114.0, + 1317.0, + 1114.0, + 1317.0, + 1150.0, + 217.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 192.0, + 1165.0, + 1556.0, + 1165.0, + 1556.0, + 1206.0, + 192.0, + 1206.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 220.0, + 1197.0, + 297.0, + 1197.0, + 297.0, + 1233.0, + 220.0, + 1233.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 192.0, + 1246.0, + 1560.0, + 1246.0, + 1560.0, + 1291.0, + 192.0, + 1291.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 222.0, + 1282.0, + 410.0, + 1282.0, + 410.0, + 1316.0, + 222.0, + 1316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 190.0, + 1327.0, + 1558.0, + 1327.0, + 1558.0, + 1376.0, + 190.0, + 1376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 219.0, + 1365.0, + 627.0, + 1365.0, + 627.0, + 1404.0, + 219.0, + 1404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 190.0, + 1412.0, + 1560.0, + 1412.0, + 1560.0, + 1461.0, + 190.0, + 1461.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 220.0, + 1451.0, + 368.0, + 1451.0, + 368.0, + 1485.0, + 220.0, + 1485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 1504.0, + 1556.0, + 1504.0, + 1556.0, + 1538.0, + 194.0, + 1538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 217.0, + 1532.0, + 600.0, + 1532.0, + 600.0, + 1572.0, + 217.0, + 1572.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 190.0, + 1585.0, + 1223.0, + 1585.0, + 1223.0, + 1623.0, + 190.0, + 1623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 192.0, + 1638.0, + 1401.0, + 1638.0, + 1401.0, + 1679.0, + 192.0, + 1679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 197.0, + 1696.0, + 1476.0, + 1696.0, + 1476.0, + 1730.0, + 197.0, + 1730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 192.0, + 1747.0, + 1407.0, + 1747.0, + 1407.0, + 1787.0, + 192.0, + 1787.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 188.0, + 1796.0, + 1556.0, + 1796.0, + 1556.0, + 1838.0, + 188.0, + 1838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 217.0, + 1828.0, + 301.0, + 1828.0, + 301.0, + 1870.0, + 217.0, + 1870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 190.0, + 1881.0, + 1554.0, + 1881.0, + 1554.0, + 1926.0, + 190.0, + 1926.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 220.0, + 1915.0, + 1426.0, + 1915.0, + 1426.0, + 1955.0, + 220.0, + 1955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 1970.0, + 1117.0, + 1970.0, + 1117.0, + 2004.0, + 194.0, + 2004.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 192.0, + 2022.0, + 1512.0, + 2022.0, + 1512.0, + 2062.0, + 192.0, + 2062.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 10, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 861, + 2108, + 890, + 2108, + 890, + 2133, + 861, + 2133 + ], + "score": 0.828 + }, + { + "category_id": 2, + "poly": [ + 197, + 73, + 759, + 73, + 759, + 106, + 197, + 106 + ], + "score": 0.695 + }, + { + "category_id": 1, + "poly": [ + 190, + 265, + 1311, + 265, + 1311, + 300, + 190, + 300 + ], + "score": 0.475 + }, + { + "category_id": 1, + "poly": [ + 189, + 370, + 1418, + 370, + 1418, + 405, + 189, + 405 + ], + "score": 0.458 + }, + { + "category_id": 1, + "poly": [ + 200, + 317, + 1322, + 317, + 1322, + 352, + 200, + 352 + ], + "score": 0.444 + }, + { + "category_id": 1, + "poly": [ + 193, + 211, + 1469, + 211, + 1469, + 248, + 193, + 248 + ], + "score": 0.444 + }, + { + "category_id": 1, + "poly": [ + 191, + 128, + 1549, + 128, + 1549, + 195, + 191, + 195 + ], + "score": 0.437 + }, + { + "category_id": 1, + "poly": [ + 197, + 73, + 759, + 73, + 759, + 106, + 197, + 106 + ], + "score": 0.136 + }, + { + "category_id": 15, + "poly": [ + 857.0, + 2105.0, + 895.0, + 2105.0, + 895.0, + 2144.0, + 857.0, + 2144.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 197.0, + 72.0, + 758.0, + 72.0, + 758.0, + 108.0, + 197.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 195.0, + 263.0, + 1310.0, + 263.0, + 1310.0, + 302.0, + 195.0, + 302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 368.0, + 1418.0, + 368.0, + 1418.0, + 407.0, + 194.0, + 407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 313.0, + 1311.0, + 313.0, + 1311.0, + 353.0, + 193.0, + 353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 192.0, + 210.0, + 1456.0, + 210.0, + 1456.0, + 249.0, + 192.0, + 249.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 190.0, + 121.0, + 1555.0, + 121.0, + 1555.0, + 174.0, + 190.0, + 174.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 221.0, + 160.0, + 632.0, + 160.0, + 632.0, + 198.0, + 221.0, + 198.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 197.0, + 72.0, + 758.0, + 72.0, + 758.0, + 108.0, + 197.0, + 108.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 11, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 3, + "poly": [ + 288, + 958, + 1510, + 958, + 1510, + 1953, + 288, + 1953 + ], + "score": 0.976 + }, + { + "category_id": 3, + "poly": [ + 316, + 323, + 1408, + 323, + 1408, + 677, + 316, + 677 + ], + "score": 0.968 + }, + { + "category_id": 1, + "poly": [ + 196, + 212, + 1551, + 212, + 1551, + 304, + 196, + 304 + ], + "score": 0.957 + }, + { + "category_id": 1, + "poly": [ + 196, + 725, + 1554, + 725, + 1554, + 928, + 196, + 928 + ], + "score": 0.954 + }, + { + "category_id": 4, + "poly": [ + 538, + 687, + 1209, + 687, + 1209, + 720, + 538, + 720 + ], + "score": 0.923 + }, + { + "category_id": 2, + "poly": [ + 198, + 75, + 758, + 75, + 758, + 105, + 198, + 105 + ], + "score": 0.905 + }, + { + "category_id": 4, + "poly": [ + 496, + 1956, + 1249, + 1956, + 1249, + 1987, + 496, + 1987 + ], + "score": 0.892 + }, + { + "category_id": 1, + "poly": [ + 198, + 1992, + 1538, + 1992, + 1538, + 2056, + 198, + 2056 + ], + "score": 0.877 + }, + { + "category_id": 0, + "poly": [ + 198, + 168, + 930, + 168, + 930, + 199, + 198, + 199 + ], + "score": 0.855 + }, + { + "category_id": 2, + "poly": [ + 861, + 2108, + 890, + 2108, + 890, + 2133, + 861, + 2133 + ], + "score": 0.853 + }, + { + "category_id": 0, + "poly": [ + 200, + 127, + 402, + 127, + 402, + 160, + 200, + 160 + ], + "score": 0.845 + }, + { + "category_id": 13, + "poly": [ + 357, + 816, + 391, + 816, + 391, + 846, + 357, + 846 + ], + "score": 0.88, + "latex": "\\mathcal { L } _ { c }" + }, + { + "category_id": 13, + "poly": [ + 604, + 2023, + 670, + 2023, + 670, + 2052, + 604, + 2052 + ], + "score": 0.69, + "latex": "@ 5 0 0" + }, + { + "category_id": 13, + "poly": [ + 880, + 790, + 899, + 790, + 899, + 813, + 880, + 813 + ], + "score": 0.46, + "latex": "\\mathbf { X }" + }, + { + "category_id": 15, + "poly": [ + 584.0, + 990.0, + 654.0, + 990.0, + 654.0, + 1134.0, + 584.0, + 1134.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1009.0, + 973.0, + 1084.0, + 973.0, + 1084.0, + 1149.0, + 1009.0, + 1149.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1429.0, + 979.0, + 1499.0, + 979.0, + 1499.0, + 1132.0, + 1429.0, + 1132.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 633.0, + 1041.0, + 657.0, + 1041.0, + 657.0, + 1085.0, + 633.0, + 1085.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1023.0, + 1009.0, + 1042.0, + 1009.0, + 1042.0, + 1059.0, + 1023.0, + 1059.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1056.0, + 1016.0, + 1088.0, + 1016.0, + 1088.0, + 1106.0, + 1056.0, + 1106.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1443.0, + 1006.0, + 1465.0, + 1006.0, + 1465.0, + 1075.0, + 1443.0, + 1075.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1479.0, + 1025.0, + 1507.0, + 1025.0, + 1507.0, + 1098.0, + 1479.0, + 1098.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1022.0, + 1054.0, + 1039.0, + 1054.0, + 1039.0, + 1072.0, + 1022.0, + 1072.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1020.0, + 1070.0, + 1039.0, + 1070.0, + 1039.0, + 1087.0, + 1020.0, + 1087.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1439.0, + 1065.0, + 1461.0, + 1065.0, + 1461.0, + 1117.0, + 1439.0, + 1117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 591.0, + 1109.0, + 632.0, + 1109.0, + 632.0, + 1132.0, + 591.0, + 1132.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1442.0, + 1109.0, + 1477.0, + 1109.0, + 1477.0, + 1131.0, + 1442.0, + 1131.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 591.0, + 1123.0, + 630.0, + 1123.0, + 630.0, + 1148.0, + 591.0, + 1148.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1013.0, + 1122.0, + 1056.0, + 1122.0, + 1056.0, + 1145.0, + 1013.0, + 1145.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1437.0, + 1122.0, + 1479.0, + 1122.0, + 1479.0, + 1145.0, + 1437.0, + 1145.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 573.0, + 1148.0, + 619.0, + 1148.0, + 619.0, + 1172.0, + 573.0, + 1172.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 997.0, + 1146.0, + 1044.0, + 1146.0, + 1044.0, + 1171.0, + 997.0, + 1171.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1420.0, + 1148.0, + 1465.0, + 1148.0, + 1465.0, + 1171.0, + 1420.0, + 1171.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 557.0, + 1161.0, + 596.0, + 1161.0, + 596.0, + 1186.0, + 557.0, + 1186.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 983.0, + 1161.0, + 1022.0, + 1161.0, + 1022.0, + 1184.0, + 983.0, + 1184.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1404.0, + 1161.0, + 1444.0, + 1161.0, + 1444.0, + 1184.0, + 1404.0, + 1184.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 540.0, + 1176.0, + 578.0, + 1176.0, + 578.0, + 1201.0, + 540.0, + 1201.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 964.0, + 1175.0, + 1004.0, + 1175.0, + 1004.0, + 1198.0, + 964.0, + 1198.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1385.0, + 1175.0, + 1426.0, + 1175.0, + 1426.0, + 1198.0, + 1385.0, + 1198.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 520.0, + 1191.0, + 563.0, + 1191.0, + 563.0, + 1215.0, + 520.0, + 1215.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1367.0, + 1190.0, + 1414.0, + 1190.0, + 1414.0, + 1213.0, + 1367.0, + 1213.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 403.0, + 1206.0, + 440.0, + 1206.0, + 440.0, + 1236.0, + 403.0, + 1236.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 446.0, + 1219.0, + 476.0, + 1219.0, + 476.0, + 1245.0, + 446.0, + 1245.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 870.0, + 1217.0, + 902.0, + 1217.0, + 902.0, + 1243.0, + 870.0, + 1243.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1293.0, + 1217.0, + 1326.0, + 1217.0, + 1326.0, + 1243.0, + 1293.0, + 1243.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 337.0, + 1249.0, + 560.0, + 1249.0, + 560.0, + 1277.0, + 337.0, + 1277.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 736.0, + 1248.0, + 1013.0, + 1248.0, + 1013.0, + 1277.0, + 736.0, + 1277.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1175.0, + 1245.0, + 1424.0, + 1245.0, + 1424.0, + 1282.0, + 1175.0, + 1282.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 593.0, + 1338.0, + 635.0, + 1338.0, + 635.0, + 1357.0, + 593.0, + 1357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1022.0, + 1336.0, + 1063.0, + 1336.0, + 1063.0, + 1360.0, + 1022.0, + 1360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1433.0, + 1331.0, + 1508.0, + 1331.0, + 1508.0, + 1506.0, + 1433.0, + 1506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 591.0, + 1350.0, + 635.0, + 1350.0, + 635.0, + 1375.0, + 591.0, + 1375.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1022.0, + 1350.0, + 1063.0, + 1350.0, + 1063.0, + 1375.0, + 1022.0, + 1375.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 578.0, + 1360.0, + 656.0, + 1360.0, + 656.0, + 1459.0, + 578.0, + 1459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1020.0, + 1367.0, + 1063.0, + 1367.0, + 1063.0, + 1390.0, + 1020.0, + 1390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1483.0, + 1361.0, + 1511.0, + 1361.0, + 1511.0, + 1449.0, + 1483.0, + 1449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 589.0, + 1380.0, + 613.0, + 1380.0, + 613.0, + 1417.0, + 589.0, + 1417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1007.0, + 1379.0, + 1082.0, + 1379.0, + 1082.0, + 1476.0, + 1007.0, + 1476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 585.0, + 1438.0, + 630.0, + 1438.0, + 630.0, + 1461.0, + 585.0, + 1461.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 584.0, + 1450.0, + 629.0, + 1450.0, + 629.0, + 1473.0, + 584.0, + 1473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1015.0, + 1451.0, + 1056.0, + 1451.0, + 1056.0, + 1475.0, + 1015.0, + 1475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 582.0, + 1464.0, + 629.0, + 1464.0, + 629.0, + 1488.0, + 582.0, + 1488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1013.0, + 1464.0, + 1057.0, + 1464.0, + 1057.0, + 1488.0, + 1013.0, + 1488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 997.0, + 1490.0, + 1044.0, + 1490.0, + 1044.0, + 1514.0, + 997.0, + 1514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1422.0, + 1490.0, + 1469.0, + 1490.0, + 1469.0, + 1514.0, + 1422.0, + 1514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 479.0, + 1501.0, + 618.0, + 1501.0, + 618.0, + 1590.0, + 479.0, + 1590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 983.0, + 1503.0, + 1024.0, + 1503.0, + 1024.0, + 1528.0, + 983.0, + 1528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1407.0, + 1505.0, + 1448.0, + 1505.0, + 1448.0, + 1528.0, + 1407.0, + 1528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 403.0, + 1548.0, + 437.0, + 1548.0, + 437.0, + 1577.0, + 403.0, + 1577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 443.0, + 1560.0, + 475.0, + 1560.0, + 475.0, + 1586.0, + 443.0, + 1586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 820.0, + 1545.0, + 867.0, + 1545.0, + 867.0, + 1579.0, + 820.0, + 1579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 870.0, + 1561.0, + 903.0, + 1561.0, + 903.0, + 1587.0, + 870.0, + 1587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1260.0, + 1553.0, + 1290.0, + 1553.0, + 1290.0, + 1579.0, + 1260.0, + 1579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1296.0, + 1561.0, + 1329.0, + 1561.0, + 1329.0, + 1588.0, + 1296.0, + 1588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 310.0, + 1587.0, + 591.0, + 1587.0, + 591.0, + 1625.0, + 310.0, + 1625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 780.0, + 1588.0, + 967.0, + 1588.0, + 967.0, + 1620.0, + 780.0, + 1620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1183.0, + 1587.0, + 1418.0, + 1587.0, + 1418.0, + 1621.0, + 1183.0, + 1621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 790.0, + 1669.0, + 859.0, + 1669.0, + 859.0, + 1782.0, + 790.0, + 1782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1226.0, + 1671.0, + 1268.0, + 1671.0, + 1268.0, + 1692.0, + 1226.0, + 1692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 720.0, + 1687.0, + 775.0, + 1687.0, + 775.0, + 1713.0, + 720.0, + 1713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 801.0, + 1747.0, + 819.0, + 1747.0, + 819.0, + 1763.0, + 801.0, + 1763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 841.0, + 1702.0, + 868.0, + 1702.0, + 868.0, + 1774.0, + 841.0, + 1774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1143.0, + 1684.0, + 1203.0, + 1684.0, + 1203.0, + 1725.0, + 1143.0, + 1725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1219.0, + 1687.0, + 1294.0, + 1687.0, + 1294.0, + 1783.0, + 1219.0, + 1783.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 797.0, + 1759.0, + 838.0, + 1759.0, + 838.0, + 1795.0, + 797.0, + 1795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1216.0, + 1759.0, + 1268.0, + 1759.0, + 1268.0, + 1815.0, + 1216.0, + 1815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 796.0, + 1785.0, + 837.0, + 1785.0, + 837.0, + 1809.0, + 796.0, + 1809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 796.0, + 1799.0, + 838.0, + 1799.0, + 838.0, + 1822.0, + 796.0, + 1822.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1221.0, + 1800.0, + 1263.0, + 1800.0, + 1263.0, + 1824.0, + 1221.0, + 1824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 778.0, + 1824.0, + 825.0, + 1824.0, + 825.0, + 1848.0, + 778.0, + 1848.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1203.0, + 1825.0, + 1250.0, + 1825.0, + 1250.0, + 1850.0, + 1203.0, + 1850.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 763.0, + 1837.0, + 804.0, + 1837.0, + 804.0, + 1862.0, + 763.0, + 1862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1190.0, + 1840.0, + 1228.0, + 1840.0, + 1228.0, + 1863.0, + 1190.0, + 1863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 745.0, + 1852.0, + 786.0, + 1852.0, + 786.0, + 1876.0, + 745.0, + 1876.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1171.0, + 1850.0, + 1212.0, + 1850.0, + 1212.0, + 1879.0, + 1171.0, + 1879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1153.0, + 1866.0, + 1195.0, + 1866.0, + 1195.0, + 1896.0, + 1153.0, + 1896.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 651.0, + 1895.0, + 684.0, + 1895.0, + 684.0, + 1920.0, + 651.0, + 1920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1075.0, + 1896.0, + 1110.0, + 1896.0, + 1110.0, + 1922.0, + 1075.0, + 1922.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 552.0, + 1924.0, + 763.0, + 1924.0, + 763.0, + 1959.0, + 552.0, + 1959.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 968.0, + 1925.0, + 1202.0, + 1925.0, + 1202.0, + 1955.0, + 968.0, + 1955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 483.0, + 1014.0, + 565.0, + 1014.0, + 565.0, + 1051.0, + 483.0, + 1051.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 302.0, + 1190.0, + 411.0, + 1190.0, + 411.0, + 1220.0, + 302.0, + 1220.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 727.75, + 1191.5, + 863.75, + 1191.5, + 863.75, + 1222.5, + 727.75, + 1222.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1151.75, + 1190.5, + 1287.75, + 1190.5, + 1287.75, + 1222.5, + 1151.75, + 1222.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 903.0, + 1171.5, + 1052.0, + 1171.5, + 1052.0, + 1241.0, + 903.0, + 1241.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 301.25, + 1212.0, + 432.25, + 1212.0, + 432.25, + 1243.5, + 301.25, + 1243.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 727.0, + 1213.0, + 856.0, + 1213.0, + 856.0, + 1240.0, + 727.0, + 1240.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1152.0, + 1213.5, + 1281.0, + 1213.5, + 1281.0, + 1239.0, + 1152.0, + 1239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 482.0, + 1181.5, + 627.0, + 1181.5, + 627.0, + 1237.5, + 482.0, + 1237.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1330.0, + 1181.5, + 1473.0, + 1181.5, + 1473.0, + 1236.5, + 1330.0, + 1236.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1357.0, + 476.0, + 1357.0, + 476.0, + 1423.0, + 319.0, + 1423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1445.0, + 1447.5, + 1475.0, + 1447.5, + 1475.0, + 1463.5, + 1445.0, + 1463.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 566.75, + 1486.0, + 612.75, + 1486.0, + 612.75, + 1515.0, + 566.75, + 1515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 300.0, + 1526.0, + 366.0, + 1526.0, + 366.0, + 1557.5, + 300.0, + 1557.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 726.0, + 1530.5, + 830.0, + 1530.5, + 830.0, + 1561.5, + 726.0, + 1561.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1151.75, + 1531.0, + 1258.75, + 1531.0, + 1258.75, + 1563.0, + 1151.75, + 1563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 300.0, + 1555.5, + 428.0, + 1555.5, + 428.0, + 1583.0, + 300.0, + 1583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 363.0, + 1541.0, + 399.0, + 1541.0, + 399.0, + 1566.0, + 363.0, + 1566.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 727.25, + 1554.0, + 854.25, + 1554.0, + 854.25, + 1584.5, + 727.25, + 1584.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1153.0, + 1556.0, + 1281.0, + 1556.0, + 1281.0, + 1583.5, + 1153.0, + 1583.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 893.75, + 1509.0, + 1061.75, + 1509.0, + 1061.75, + 1580.0, + 893.75, + 1580.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1320.25, + 1511.5, + 1485.25, + 1511.5, + 1485.25, + 1581.5, + 1320.25, + 1581.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 510.25, + 1868.5, + 647.25, + 1868.5, + 647.25, + 1900.5, + 510.25, + 1900.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 934.75, + 1868.0, + 1073.75, + 1868.0, + 1073.75, + 1904.0, + 934.75, + 1904.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 685.0, + 1849.0, + 833.0, + 1849.0, + 833.0, + 1920.0, + 685.0, + 1920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 510.0, + 1890.5, + 640.0, + 1890.5, + 640.0, + 1917.0, + 510.0, + 1917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 935.25, + 1891.0, + 1066.25, + 1891.0, + 1066.25, + 1921.0, + 935.25, + 1921.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1115.0, + 1860.5, + 1257.0, + 1860.5, + 1257.0, + 1915.5, + 1115.0, + 1915.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 922.0, + 352.0, + 1007.0, + 352.0, + 1007.0, + 389.0, + 922.0, + 389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 396.0, + 445.0, + 396.0, + 445.0, + 430.0, + 352.0, + 430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 914.0, + 399.0, + 1009.0, + 399.0, + 1009.0, + 438.0, + 914.0, + 438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 434.0, + 362.0, + 434.0, + 362.0, + 485.0, + 316.0, + 485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 873.0, + 427.0, + 1016.0, + 427.0, + 1016.0, + 495.0, + 873.0, + 495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 482.0, + 447.0, + 482.0, + 447.0, + 517.0, + 353.0, + 517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 913.0, + 497.0, + 1009.0, + 497.0, + 1009.0, + 536.0, + 913.0, + 536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 477.0, + 554.0, + 824.0, + 554.0, + 824.0, + 589.0, + 477.0, + 589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 913.0, + 545.0, + 1009.0, + 545.0, + 1009.0, + 584.0, + 913.0, + 584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1033.0, + 549.0, + 1390.0, + 549.0, + 1390.0, + 593.0, + 1033.0, + 593.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 570.0, + 444.0, + 570.0, + 444.0, + 602.0, + 351.0, + 602.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 452.0, + 590.0, + 480.0, + 590.0, + 480.0, + 628.0, + 452.0, + 628.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 509.0, + 592.0, + 564.0, + 592.0, + 564.0, + 629.0, + 509.0, + 629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 576.0, + 592.0, + 632.0, + 592.0, + 632.0, + 628.0, + 576.0, + 628.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 648.0, + 592.0, + 703.0, + 592.0, + 703.0, + 628.0, + 648.0, + 628.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 718.0, + 592.0, + 773.0, + 592.0, + 773.0, + 628.0, + 718.0, + 628.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 786.0, + 592.0, + 841.0, + 592.0, + 841.0, + 629.0, + 786.0, + 629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1012.0, + 590.0, + 1040.0, + 590.0, + 1040.0, + 628.0, + 1012.0, + 628.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1072.0, + 592.0, + 1126.0, + 592.0, + 1126.0, + 628.0, + 1072.0, + 628.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1139.0, + 592.0, + 1195.0, + 592.0, + 1195.0, + 628.0, + 1139.0, + 628.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1213.0, + 593.0, + 1264.0, + 593.0, + 1264.0, + 626.0, + 1213.0, + 626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1282.0, + 592.0, + 1338.0, + 592.0, + 1338.0, + 628.0, + 1282.0, + 628.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1351.0, + 592.0, + 1406.0, + 592.0, + 1406.0, + 629.0, + 1351.0, + 629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 540.0, + 620.0, + 743.0, + 620.0, + 743.0, + 653.0, + 540.0, + 653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1101.0, + 616.0, + 1305.0, + 616.0, + 1305.0, + 656.0, + 1101.0, + 656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 438.0, + 643.0, + 744.0, + 643.0, + 744.0, + 683.0, + 438.0, + 683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1017.0, + 642.0, + 1288.0, + 642.0, + 1288.0, + 683.0, + 1017.0, + 683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 539.0, + 684.0, + 1211.0, + 684.0, + 1211.0, + 726.0, + 539.0, + 726.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 196.0, + 70.0, + 759.0, + 70.0, + 759.0, + 109.0, + 196.0, + 109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 499.0, + 1953.0, + 1250.0, + 1953.0, + 1250.0, + 1992.0, + 499.0, + 1992.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 195.0, + 166.0, + 930.0, + 166.0, + 930.0, + 202.0, + 195.0, + 202.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 857.0, + 2105.0, + 895.0, + 2105.0, + 895.0, + 2143.0, + 857.0, + 2143.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 191.0, + 121.0, + 407.0, + 121.0, + 407.0, + 169.0, + 191.0, + 169.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 212.0, + 1554.0, + 212.0, + 1554.0, + 249.0, + 193.0, + 249.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 195.0, + 244.0, + 986.0, + 244.0, + 986.0, + 278.0, + 195.0, + 278.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 196.0, + 274.0, + 607.0, + 274.0, + 607.0, + 308.0, + 196.0, + 308.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 195.0, + 722.0, + 1557.0, + 722.0, + 1557.0, + 762.0, + 195.0, + 762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 754.0, + 1557.0, + 754.0, + 1557.0, + 793.0, + 193.0, + 793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 192.0, + 782.0, + 879.0, + 782.0, + 879.0, + 825.0, + 192.0, + 825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 900.0, + 782.0, + 1557.0, + 782.0, + 1557.0, + 825.0, + 900.0, + 825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 192.0, + 812.0, + 356.0, + 812.0, + 356.0, + 853.0, + 192.0, + 853.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 812.0, + 1555.0, + 812.0, + 1555.0, + 853.0, + 392.0, + 853.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 844.0, + 1555.0, + 844.0, + 1555.0, + 882.0, + 193.0, + 882.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 192.0, + 872.0, + 1279.0, + 872.0, + 1279.0, + 913.0, + 192.0, + 913.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 192.0, + 902.0, + 1069.0, + 902.0, + 1069.0, + 940.0, + 192.0, + 940.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 1992.0, + 1543.0, + 1992.0, + 1543.0, + 2029.0, + 194.0, + 2029.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 191.0, + 2021.0, + 603.0, + 2021.0, + 603.0, + 2060.0, + 191.0, + 2060.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 671.0, + 2021.0, + 1544.0, + 2021.0, + 1544.0, + 2060.0, + 671.0, + 2060.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 12, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 196, + 1664, + 1554, + 1664, + 1554, + 1941, + 196, + 1941 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 196, + 203, + 1554, + 203, + 1554, + 449, + 196, + 449 + ], + "score": 0.977 + }, + { + "category_id": 3, + "poly": [ + 264, + 477, + 1489, + 477, + 1489, + 1517, + 264, + 1517 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 203, + 129, + 1546, + 129, + 1546, + 194, + 203, + 194 + ], + "score": 0.932 + }, + { + "category_id": 4, + "poly": [ + 400, + 1525, + 1345, + 1525, + 1345, + 1558, + 400, + 1558 + ], + "score": 0.85 + }, + { + "category_id": 2, + "poly": [ + 861, + 2108, + 890, + 2108, + 890, + 2132, + 861, + 2132 + ], + "score": 0.849 + }, + { + "category_id": 2, + "poly": [ + 198, + 75, + 757, + 75, + 757, + 104, + 198, + 104 + ], + "score": 0.819 + }, + { + "category_id": 1, + "poly": [ + 203, + 1563, + 1533, + 1563, + 1533, + 1654, + 203, + 1654 + ], + "score": 0.64 + }, + { + "category_id": 4, + "poly": [ + 203, + 1563, + 1533, + 1563, + 1533, + 1654, + 203, + 1654 + ], + "score": 0.137 + }, + { + "category_id": 2, + "poly": [ + 199, + 75, + 757, + 75, + 757, + 104, + 199, + 104 + ], + "score": 0.097 + }, + { + "category_id": 13, + "poly": [ + 227, + 161, + 444, + 161, + 444, + 196, + 227, + 196 + ], + "score": 0.91, + "latex": "\\{ 5 , 1 0 , 1 5 , \\cdots , 5 0 \\}" + }, + { + "category_id": 13, + "poly": [ + 928, + 161, + 1175, + 161, + 1175, + 195, + 928, + 195 + ], + "score": 0.91, + "latex": "\\{ 1 0 0 , 2 0 0 , \\cdots , 1 0 0 0 \\}" + }, + { + "category_id": 13, + "poly": [ + 198, + 1622, + 415, + 1622, + 415, + 1657, + 198, + 1657 + ], + "score": 0.9, + "latex": "\\{ 5 , 1 0 , 1 5 , \\cdot \\cdot \\cdot , 5 0 \\}" + }, + { + "category_id": 13, + "poly": [ + 752, + 1696, + 820, + 1696, + 820, + 1724, + 752, + 1724 + ], + "score": 0.65, + "latex": "@ 5 0 0" + }, + { + "category_id": 13, + "poly": [ + 740, + 1623, + 806, + 1623, + 806, + 1652, + 740, + 1652 + ], + "score": 0.54, + "latex": "@ 5 0 0" + }, + { + "category_id": 13, + "poly": [ + 531, + 1848, + 598, + 1848, + 598, + 1877, + 531, + 1877 + ], + "score": 0.44, + "latex": "@ 5 0 0" + }, + { + "category_id": 15, + "poly": [ + 693.0, + 522.0, + 734.0, + 522.0, + 734.0, + 546.0, + 693.0, + 546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 257.0, + 537.0, + 319.0, + 537.0, + 319.0, + 667.0, + 257.0, + 667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 669.0, + 538.0, + 740.0, + 538.0, + 740.0, + 643.0, + 669.0, + 643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1438.0, + 582.0, + 1496.0, + 582.0, + 1496.0, + 720.0, + 1438.0, + 720.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 696.0, + 633.0, + 737.0, + 633.0, + 737.0, + 655.0, + 696.0, + 655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 276.0, + 650.0, + 315.0, + 650.0, + 315.0, + 675.0, + 276.0, + 675.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 698.0, + 649.0, + 740.0, + 649.0, + 740.0, + 674.0, + 698.0, + 674.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1144.0, + 649.0, + 1170.0, + 649.0, + 1170.0, + 671.0, + 1144.0, + 671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 276.0, + 664.0, + 315.0, + 664.0, + 315.0, + 687.0, + 276.0, + 687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 698.0, + 664.0, + 741.0, + 664.0, + 741.0, + 687.0, + 698.0, + 687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1150.0, + 667.0, + 1183.0, + 667.0, + 1183.0, + 691.0, + 1150.0, + 691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 594.0, + 680.0, + 624.0, + 680.0, + 624.0, + 707.0, + 594.0, + 707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 693.0, + 381.0, + 693.0, + 381.0, + 727.0, + 322.0, + 727.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 385.0, + 716.0, + 411.0, + 716.0, + 411.0, + 739.0, + 385.0, + 739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 414.0, + 728.0, + 442.0, + 728.0, + 442.0, + 750.0, + 414.0, + 750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 446.0, + 739.0, + 476.0, + 739.0, + 476.0, + 765.0, + 446.0, + 765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 496.0, + 696.0, + 599.0, + 696.0, + 599.0, + 761.0, + 496.0, + 761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 737.0, + 693.0, + 865.0, + 693.0, + 865.0, + 761.0, + 737.0, + 761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 888.0, + 742.0, + 917.0, + 742.0, + 917.0, + 764.0, + 888.0, + 764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 921.0, + 733.0, + 948.0, + 733.0, + 948.0, + 754.0, + 921.0, + 754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1170.0, + 707.0, + 1216.0, + 707.0, + 1216.0, + 754.0, + 1170.0, + 754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1248.0, + 737.0, + 1286.0, + 737.0, + 1286.0, + 761.0, + 1248.0, + 761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1404.0, + 711.0, + 1431.0, + 711.0, + 1431.0, + 731.0, + 1404.0, + 731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 337.0, + 767.0, + 559.0, + 767.0, + 559.0, + 797.0, + 337.0, + 797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 736.0, + 765.0, + 1015.0, + 765.0, + 1015.0, + 800.0, + 736.0, + 800.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1176.0, + 768.0, + 1423.0, + 768.0, + 1423.0, + 798.0, + 1176.0, + 798.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1119.0, + 887.0, + 1159.0, + 887.0, + 1159.0, + 912.0, + 1119.0, + 912.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 696.0, + 908.0, + 736.0, + 908.0, + 736.0, + 933.0, + 696.0, + 933.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1119.0, + 905.0, + 1161.0, + 905.0, + 1161.0, + 930.0, + 1119.0, + 930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1118.0, + 922.0, + 1162.0, + 922.0, + 1162.0, + 950.0, + 1118.0, + 950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 694.0, + 923.0, + 738.0, + 923.0, + 738.0, + 952.0, + 694.0, + 952.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 594.0, + 931.0, + 636.0, + 931.0, + 636.0, + 955.0, + 594.0, + 955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1093.0, + 932.0, + 1120.0, + 932.0, + 1120.0, + 1018.0, + 1093.0, + 1018.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 579.0, + 938.0, + 655.0, + 938.0, + 655.0, + 1095.0, + 579.0, + 1095.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 697.0, + 941.0, + 738.0, + 941.0, + 738.0, + 965.0, + 697.0, + 965.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1119.0, + 942.0, + 1161.0, + 942.0, + 1161.0, + 967.0, + 1119.0, + 967.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 593.0, + 944.0, + 619.0, + 944.0, + 619.0, + 984.0, + 593.0, + 984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 609.0, + 948.0, + 634.0, + 948.0, + 634.0, + 968.0, + 609.0, + 968.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 690.0, + 949.0, + 747.0, + 949.0, + 747.0, + 1022.0, + 690.0, + 1022.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1118.0, + 959.0, + 1162.0, + 959.0, + 1162.0, + 987.0, + 1118.0, + 987.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 632.0, + 961.0, + 659.0, + 961.0, + 659.0, + 1051.0, + 632.0, + 1051.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 676.0, + 970.0, + 701.0, + 970.0, + 701.0, + 1013.0, + 676.0, + 1013.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 591.0, + 973.0, + 634.0, + 973.0, + 634.0, + 1076.0, + 591.0, + 1076.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1119.0, + 979.0, + 1162.0, + 979.0, + 1162.0, + 1004.0, + 1119.0, + 1004.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1013.0, + 320.0, + 1013.0, + 320.0, + 1037.0, + 294.0, + 1037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 700.0, + 1004.0, + 740.0, + 1004.0, + 740.0, + 1044.0, + 700.0, + 1044.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1119.0, + 997.0, + 1162.0, + 997.0, + 1162.0, + 1039.0, + 1119.0, + 1039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 701.0, + 1034.0, + 743.0, + 1034.0, + 743.0, + 1059.0, + 701.0, + 1059.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1017.0, + 1033.0, + 1045.0, + 1033.0, + 1045.0, + 1055.0, + 1017.0, + 1055.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1121.0, + 1034.0, + 1164.0, + 1034.0, + 1164.0, + 1059.0, + 1121.0, + 1059.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 704.0, + 1052.0, + 741.0, + 1052.0, + 741.0, + 1071.0, + 704.0, + 1071.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1121.0, + 1050.0, + 1165.0, + 1050.0, + 1165.0, + 1075.0, + 1121.0, + 1075.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1068.0, + 353.0, + 1068.0, + 353.0, + 1093.0, + 320.0, + 1093.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 556.0, + 1072.0, + 585.0, + 1072.0, + 585.0, + 1093.0, + 556.0, + 1093.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 979.0, + 1072.0, + 1012.0, + 1072.0, + 1012.0, + 1097.0, + 979.0, + 1097.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 334.0, + 1087.0, + 366.0, + 1087.0, + 366.0, + 1113.0, + 334.0, + 1113.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 400.0, + 1098.0, + 429.0, + 1098.0, + 429.0, + 1119.0, + 400.0, + 1119.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 921.0, + 1097.0, + 948.0, + 1097.0, + 948.0, + 1119.0, + 921.0, + 1119.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1302.0, + 1093.0, + 1335.0, + 1093.0, + 1335.0, + 1118.0, + 1302.0, + 1118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 1126.0, + 588.0, + 1126.0, + 588.0, + 1160.0, + 311.0, + 1160.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 781.0, + 1126.0, + 966.0, + 1126.0, + 966.0, + 1157.0, + 781.0, + 1157.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1183.0, + 1127.0, + 1419.0, + 1127.0, + 1419.0, + 1157.0, + 1183.0, + 1157.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 789.0, + 1232.0, + 858.0, + 1232.0, + 858.0, + 1345.0, + 789.0, + 1345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1228.0, + 1233.0, + 1273.0, + 1233.0, + 1273.0, + 1256.0, + 1228.0, + 1256.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1217.0, + 1248.0, + 1282.0, + 1248.0, + 1282.0, + 1357.0, + 1217.0, + 1357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1228.0, + 1248.0, + 1270.0, + 1248.0, + 1270.0, + 1272.0, + 1228.0, + 1272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 1266.0, + 866.0, + 1266.0, + 866.0, + 1338.0, + 839.0, + 1338.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1026.0, + 1274.0, + 1089.0, + 1274.0, + 1089.0, + 1329.0, + 1026.0, + 1329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1144.0, + 1289.0, + 1154.0, + 1289.0, + 1154.0, + 1301.0, + 1144.0, + 1301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1266.0, + 1258.0, + 1294.0, + 1258.0, + 1294.0, + 1346.0, + 1266.0, + 1346.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1133.0, + 1298.0, + 1159.0, + 1298.0, + 1159.0, + 1320.0, + 1133.0, + 1320.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 791.0, + 1315.0, + 845.0, + 1315.0, + 845.0, + 1364.0, + 791.0, + 1364.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1227.0, + 1324.0, + 1245.0, + 1324.0, + 1245.0, + 1341.0, + 1227.0, + 1341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 795.0, + 1349.0, + 836.0, + 1349.0, + 836.0, + 1372.0, + 795.0, + 1372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1219.0, + 1331.0, + 1270.0, + 1331.0, + 1270.0, + 1377.0, + 1219.0, + 1377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 794.0, + 1363.0, + 836.0, + 1363.0, + 836.0, + 1386.0, + 794.0, + 1386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1222.0, + 1363.0, + 1263.0, + 1363.0, + 1263.0, + 1386.0, + 1222.0, + 1386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 787.0, + 1390.0, + 814.0, + 1390.0, + 814.0, + 1412.0, + 787.0, + 1412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1215.0, + 1389.0, + 1242.0, + 1389.0, + 1242.0, + 1411.0, + 1215.0, + 1411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 769.0, + 1405.0, + 798.0, + 1405.0, + 798.0, + 1426.0, + 769.0, + 1426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1197.0, + 1404.0, + 1226.0, + 1404.0, + 1226.0, + 1426.0, + 1197.0, + 1426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 512.0, + 1427.0, + 647.0, + 1427.0, + 647.0, + 1477.0, + 512.0, + 1477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 652.0, + 1460.0, + 683.0, + 1460.0, + 683.0, + 1486.0, + 652.0, + 1486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 712.0, + 1419.0, + 784.0, + 1419.0, + 784.0, + 1471.0, + 712.0, + 1471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 937.0, + 1426.0, + 966.0, + 1426.0, + 966.0, + 1448.0, + 937.0, + 1448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1041.0, + 1451.0, + 1074.0, + 1451.0, + 1074.0, + 1475.0, + 1041.0, + 1475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1081.0, + 1461.0, + 1110.0, + 1461.0, + 1110.0, + 1483.0, + 1081.0, + 1483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1140.0, + 1419.0, + 1209.0, + 1419.0, + 1209.0, + 1471.0, + 1140.0, + 1471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 554.0, + 1485.0, + 763.0, + 1485.0, + 763.0, + 1520.0, + 554.0, + 1520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 968.0, + 1486.0, + 1202.0, + 1486.0, + 1202.0, + 1516.0, + 968.0, + 1516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1206.0, + 542.5, + 1286.0, + 542.5, + 1286.0, + 616.0, + 1206.0, + 616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 552.0, + 619.5, + 588.0, + 619.5, + 588.0, + 635.0, + 552.0, + 635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1104.0, + 646.5, + 1229.0, + 646.5, + 1229.0, + 748.5, + 1104.0, + 748.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 722.75, + 724.0, + 829.75, + 724.0, + 829.75, + 754.5, + 722.75, + 754.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 727.5, + 431.0, + 727.5, + 431.0, + 754.5, + 321.0, + 754.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 941.0, + 708.5, + 1051.0, + 708.5, + 1051.0, + 739.5, + 941.0, + 739.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 534.75, + 716.0, + 632.75, + 716.0, + 632.75, + 744.0, + 534.75, + 744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1269.0, + 719.5, + 1402.0, + 719.5, + 1402.0, + 751.0, + 1269.0, + 751.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 939.0, + 731.0, + 1038.0, + 731.0, + 1038.0, + 762.5, + 939.0, + 762.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1273.0, + 738.5, + 1404.0, + 738.5, + 1404.0, + 768.5, + 1273.0, + 768.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 893.25, + 894.5, + 1003.25, + 894.5, + 1003.25, + 935.5, + 893.25, + 935.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 756.75, + 958.0, + 914.75, + 958.0, + 914.75, + 1023.5, + 756.75, + 1023.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.25, + 1009.5, + 380.25, + 1009.5, + 380.25, + 1110.5, + 249.25, + 1110.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 759.0, + 1076.0, + 908.0, + 1076.0, + 908.0, + 1107.0, + 759.0, + 1107.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 979.0, + 1050.5, + 1046.0, + 1050.5, + 1046.0, + 1076.5, + 979.0, + 1076.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1169.0, + 1079.5, + 1299.0, + 1079.5, + 1299.0, + 1107.5, + 1169.0, + 1107.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 428.25, + 1079.0, + 554.25, + 1079.0, + 554.25, + 1110.5, + 428.25, + 1110.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 773.0, + 1097.5, + 893.0, + 1097.5, + 893.0, + 1125.0, + 773.0, + 1125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 942.25, + 1058.0, + 1092.25, + 1058.0, + 1092.25, + 1113.0, + 942.25, + 1113.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1165.75, + 1097.0, + 1285.75, + 1097.0, + 1285.75, + 1123.0, + 1165.75, + 1123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1345.0, + 1076.5, + 1483.0, + 1076.5, + 1483.0, + 1108.5, + 1345.0, + 1108.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 426.25, + 1099.5, + 555.25, + 1099.5, + 555.25, + 1127.5, + 426.25, + 1127.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1395.0, + 1090.0, + 1487.0, + 1090.0, + 1487.0, + 1118.5, + 1395.0, + 1118.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 968.25, + 1432.5, + 1038.25, + 1432.5, + 1038.25, + 1464.5, + 968.25, + 1464.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 533.0, + 1457.0, + 615.0, + 1457.0, + 615.0, + 1483.0, + 533.0, + 1483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 961.0, + 1455.0, + 1040.0, + 1455.0, + 1040.0, + 1483.0, + 961.0, + 1483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 709.75, + 1427.5, + 842.75, + 1427.5, + 842.75, + 1460.0, + 709.75, + 1460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1139.75, + 1427.5, + 1270.75, + 1427.5, + 1270.75, + 1458.0, + 1139.75, + 1458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 401.0, + 1521.0, + 1346.0, + 1521.0, + 1346.0, + 1564.0, + 401.0, + 1564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 857.0, + 2104.0, + 896.0, + 2104.0, + 896.0, + 2142.0, + 857.0, + 2142.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 197.0, + 72.0, + 758.0, + 72.0, + 758.0, + 108.0, + 197.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 196.0, + 1559.0, + 1540.0, + 1559.0, + 1540.0, + 1597.0, + 196.0, + 1597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 198.0, + 1592.0, + 1541.0, + 1592.0, + 1541.0, + 1625.0, + 198.0, + 1625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 416.0, + 1620.0, + 739.0, + 1620.0, + 739.0, + 1658.0, + 416.0, + 1658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 807.0, + 1620.0, + 1392.0, + 1620.0, + 1392.0, + 1658.0, + 807.0, + 1658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 198.0, + 72.0, + 758.0, + 72.0, + 758.0, + 108.0, + 198.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 192.0, + 1661.0, + 1558.0, + 1661.0, + 1558.0, + 1704.0, + 192.0, + 1704.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 1695.0, + 751.0, + 1695.0, + 751.0, + 1732.0, + 193.0, + 1732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 821.0, + 1695.0, + 1555.0, + 1695.0, + 1555.0, + 1732.0, + 821.0, + 1732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 1724.0, + 1557.0, + 1724.0, + 1557.0, + 1761.0, + 193.0, + 1761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 1755.0, + 1557.0, + 1755.0, + 1557.0, + 1792.0, + 193.0, + 1792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 1786.0, + 1558.0, + 1786.0, + 1558.0, + 1823.0, + 193.0, + 1823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 1817.0, + 1557.0, + 1817.0, + 1557.0, + 1854.0, + 193.0, + 1854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 195.0, + 1847.0, + 530.0, + 1847.0, + 530.0, + 1879.0, + 195.0, + 1879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 599.0, + 1847.0, + 1554.0, + 1847.0, + 1554.0, + 1879.0, + 599.0, + 1879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 195.0, + 1878.0, + 1557.0, + 1878.0, + 1557.0, + 1914.0, + 195.0, + 1914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 195.0, + 1910.0, + 1352.0, + 1910.0, + 1352.0, + 1942.0, + 195.0, + 1942.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 192.0, + 196.0, + 1555.0, + 196.0, + 1555.0, + 243.0, + 192.0, + 243.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 195.0, + 235.0, + 1555.0, + 235.0, + 1555.0, + 269.0, + 195.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 264.0, + 1554.0, + 264.0, + 1554.0, + 298.0, + 193.0, + 298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 294.0, + 1555.0, + 294.0, + 1555.0, + 332.0, + 193.0, + 332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 192.0, + 323.0, + 1557.0, + 323.0, + 1557.0, + 363.0, + 192.0, + 363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 355.0, + 1557.0, + 355.0, + 1557.0, + 394.0, + 193.0, + 394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 192.0, + 386.0, + 1557.0, + 386.0, + 1557.0, + 423.0, + 192.0, + 423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 193.0, + 416.0, + 1139.0, + 416.0, + 1139.0, + 454.0, + 193.0, + 454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 197.0, + 127.0, + 1549.0, + 127.0, + 1549.0, + 165.0, + 197.0, + 165.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 194.0, + 156.0, + 226.0, + 156.0, + 226.0, + 201.0, + 194.0, + 201.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 445.0, + 156.0, + 927.0, + 156.0, + 927.0, + 201.0, + 445.0, + 201.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1176.0, + 156.0, + 1186.0, + 156.0, + 1186.0, + 201.0, + 1176.0, + 201.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 196.0, + 1559.0, + 1540.0, + 1559.0, + 1540.0, + 1597.0, + 196.0, + 1597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 198.0, + 1592.0, + 1541.0, + 1592.0, + 1541.0, + 1625.0, + 198.0, + 1625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 416.0, + 1620.0, + 739.0, + 1620.0, + 739.0, + 1658.0, + 416.0, + 1658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 807.0, + 1620.0, + 1392.0, + 1620.0, + 1392.0, + 1658.0, + 807.0, + 1658.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 13, + "width": 1700, + "height": 2200 + } + } +] \ No newline at end of file diff --git a/parse/train/ToWi1RjuEr8/ToWi1RjuEr8.md b/parse/train/ToWi1RjuEr8/ToWi1RjuEr8.md new file mode 100644 index 0000000000000000000000000000000000000000..f24a2c0b204430f67adce24bd7bbf1e5706460fd --- /dev/null +++ b/parse/train/ToWi1RjuEr8/ToWi1RjuEr8.md @@ -0,0 +1,271 @@ +# ADVANTAGE-WEIGHTED REGRESSION: SIMPLE ANDSCALABLE OFF-POLICY REINFORCEMENT LEARNING + +Anonymous authors Paper under double-blind review + +# ABSTRACT + +In this work, we aim to develop a simple and scalable reinforcement learning algorithm that uses standard supervised learning methods as subroutines, while also being able to leverage off-policy data. Our proposed approach, which we refer to as advantage-weighted regression (AWR), consists of two standard supervised learning steps: one to regress onto target values for a value function, and another to regress onto weighted target actions for the policy. The method is simple and general, can accommodate continuous and discrete actions, and can be implemented in just a few lines of code on top of standard supervised learning methods. We provide a theoretical motivation for AWR and analyze its properties when incorporating off-policy data from experience replay. We evaluate AWR on a suite of standard OpenAI Gym benchmark tasks, and show that it achieves competitive performance compared to a number of well-established state-of-the-art RL algorithms. AWR is also able to acquire more effective policies than most off-policy algorithms when learning from purely static datasets with no additional environmental interactions. Furthermore, we demonstrate our algorithm on challenging continuous control tasks with highly complex simulated characters. (Video1) + +# 1 INTRODUCTION + +Model-free reinforcement learning can be a general and effective methodology for training agents to acquire sophisticated behaviors with minimal assumptions on the underlying task. However, RL algorithms can be substantially more complex to implement and tune than standard supervised learning methods. Arguably the simplest reinforcement learning methods are policy gradient algorithms (Sutton et al., 2000), which directly differentiate the expected return and perform gradient ascent. Unfortunately, these methods can be notoriously unstable and are typically on-policy, often requiring a substantial number of samples to learn effective behaviors. Our goal is to develop an RL algorithm that is simple, easy to implement, and can readily incorporate off-policy data. + +In this work, we propose advantage-weighted regression (AWR), a simple off-policy algorithm for model-free RL. Each iteration of the AWR algorithm simply consists of two supervised regression steps: one for training a value function baseline via regression onto cumulative rewards, and another for training the policy via weighted regression. The complete algorithm is shown in Algorithm 1. AWR can accommodate continuous and discrete actions, and can be implemented in just a few lines of code on top of standard supervised learning methods. Despite its simplicity, we find that AWR achieves competitive results when compared to commonly used on-policy and off-policy RL algorithms, and can effectively incorporate fully off-policy data, which has been a challenge for other RL algorithms. Our derivation presents an interpretation of AWR as a constrained policy optimization procedure, and provides a theoretical analysis of the use of off-policy data with experience replay. + +We first revisit the original formulation of reward-weighted regression (RWR) (Peters & Schaal, 2007), an on-policy RL method that utilizes supervised learning to perform policy updates, and then propose a number of new design decisions that significantly improve performance on a suite of standard control benchmark tasks. We then provide a theoretical analysis of AWR, including the capability to incorporate off-policy data with experience replay. Although the design of AWR involves only a few simple design decisions, we show experimentally that these additions provide for a large improvement over previous methods for regression-based policy search, such as RWR, while also being substantially simpler than more modern methods, such as MPO (Abdolmaleki et al., 2018b). We show that AWR achieves competitive performance when compared to several well-established state-of-the-art on-policy and off-policy algorithms. + +# 2 PRELIMINARIES + +In reinforcement learning, the objective is to learn a policy that maximizes an agent’s expected return. At each time step $t$ , the agent observes the state of the environment $\mathbf { s } _ { t }$ , and samples an action from a policy $\mathbf { a } _ { t } \sim \pi ( \mathbf { a } _ { t } | \mathbf { s } _ { t } )$ . The agent then applies that action, which results in a new state $\mathbf { s } _ { t + 1 }$ and a scalar reward $r _ { t } = r ( \mathbf { s } _ { t } , \mathbf { a } _ { t } )$ . The goal is to learn a policy that maximizes the expected return $J ( \pi )$ , + +$$ +J ( \pi ) = \mathbb { E } _ { \tau \sim p _ { \pi } ( \tau ) } \left[ \sum _ { t = 0 } ^ { \infty } \gamma ^ { t } r _ { t } \right] = \mathbb { E } _ { \mathbf { s } \sim d _ { \pi } ( \mathbf { s } ) , a \sim \pi ( \mathbf { a } | \mathbf { s } ) } \left[ r ( \mathbf { s } , \mathbf { a } ) \right] , +$$ + +where $p _ { \pi } ( \tau )$ represents the likelihood of a trajectory $\tau = \{ ( \mathbf { s } _ { 0 } , \mathbf { a } _ { 0 } , r _ { 0 } ) , ( \mathbf { s } _ { 1 } , \mathbf { a } _ { 1 } , r _ { 1 } ) , \ldots \}$ under a policy $\pi$ , and $\gamma \in \ [ 0 , 1 )$ is the discount factor. $\begin{array} { r } { d _ { \pi } ( \mathbf { s } ) \ = \ \sum _ { t = 0 } ^ { \infty } \gamma ^ { t } p ( \mathbf { s } _ { t } \ = \ \mathbf { s } | \pi ) } \end{array}$ represents the unnormalized discounted state distribution induced by the policy $\pi$ (Sutton & Barto, 1998), and $p ( \mathbf { s } _ { t } = \mathbf { s } | \boldsymbol { \pi } )$ is the likelihood of the agent being in state s after following $\pi$ for $t$ timesteps. + +Our proposed AWR algorithm builds on ideas from reward-weighted regression (RWR) (Peters & Schaal, 2007), a policy search algorithm based on an expectation-maximization framework. At each iteration, the E-step constructs an estimate of the optimal policy according to $\pi ^ { * } ( \mathbf { a } | \mathbf { s } ) \ \propto $ $\pi _ { k } ( \mathbf { a } | \mathbf { s } ) \mathrm { e x p } \left( \mathcal { R } _ { \mathbf { s } , \mathbf { a } } / \beta \right)$ , where $\pi _ { k }$ represents the policy at the $k$ th iteration, $\begin{array} { r } { \mathcal { R } _ { { \bf s } , { \bf a } } \stackrel { - } { = } \sum _ { t = 0 } ^ { \infty } \dot { \gamma } ^ { t } r _ { t } } \end{array}$ is the return, and $\beta > 0$ is a temperature parameter. Then the M-step projects $\pi ^ { * }$ onto the space of parameterized policies by solving a supervised regression problem: + +$$ +\pi _ { k + 1 } = \arg \operatorname* { m a x } _ { \pi } \mathbb { E } _ { \mathbf { s } \sim d _ { \pi _ { k } } ( \mathbf { s } ) } \mathbb { E } _ { \mathbf { a } \sim \pi _ { k } ( \mathbf { a } | \mathbf { s } ) } \left[ \log \pi ( \mathbf { a } | \mathbf { s } ) \exp \left( \frac { 1 } { \beta } \mathcal { R } _ { \mathbf { s } , \mathbf { a } } \right) \right] . +$$ + +The RWR update can be interpreted as fitting a new policy $\pi _ { k + 1 }$ to samples from the current policy $\pi _ { k }$ , where the likelihood of each action is weighted by the exponentiated return for that action. + +# 3 ADVANTAGE-WEIGHTED REGRESSION + +In this work, we present advantage-weighted regression (AWR), a simple off-policy RL algorithm based on reward-weighted regression. We first provide an overview of the AWR algorithm, and then describe its theoretical motivation and analyze its properties. The AWR algorithm is summarized in Algorithm 1. Each iteration $k$ of AWR consists of the following simple steps. First, the current policy $\pi _ { k } ( \mathbf { a } | \mathbf { s } )$ is used to sample a batch of trajectories $\{ \tau _ { i } \}$ that are then stored in the replay buffer $\mathcal { D }$ , which is structured as a first-in first-out (FIFO) queue (Mnih et al., 2015). Then, a value function $V _ { k } ^ { { \mathcal { D } } } ( { \mathbf s } )$ is fitted to all eturn estimates eplay buffer . Finally, the $\mathcal { D }$ , which can be done with simple Monteme buffer is used to fit a new policy using $\begin{array} { r } { \mathcal { R } _ { { \bf s } , { \bf a } } ^ { D } = \sum _ { t = 0 } ^ { T } \gamma ^ { t } r _ { t } } \end{array}$ advantage-weighted regreexponentiated advantage $\begin{array} { r } { \exp ( \frac { 1 } { \beta } A ^ { D } ( { \bf s } , { \bf a } ) ) } \end{array}$ state-action pair in the buffer , with the advantage given by $A ^ { \mathcal { D } } ( \mathbf { { s } } , \mathbf { { a } } ) = \mathcal { R } _ { { \mathbf { s } } , \mathbf { { a } } } ^ { \mathcal { D } } - \mathbf { \mathcal { V } } ^ { \mathcal { D } } ( \mathbf { { s } } )$ and $\beta$ is a hyperparameter. In the following subsections, we first motivate AWR as a constrained policy search problem, and then extend our analysis to incorporate experience replay. + +# 3.1 DERIVATION + +In this section, we derive the AWR algorithm as an approximate optimization of a constrained policy search problem. Our goal is to find a policy that maximizes the expected improvement $\mathsf { \bar { \eta } } ( \pi ) \mathsf { \bar { = } } J ( \pi ) \bar { - } J ( \mu )$ over a sampling policy $\mu ( \mathbf { a } | \mathbf { s } )$ . We first derive AWR for the setting where the sampling policy is a single Markovian policy. Then, in the next section, we extend our result to data from multiple policies, as in the case of experience replay. The expected improvement $\eta ( \pi )$ can be expressed in terms of the advantage ${ \mathbf { } } A ^ { \mu } ( \mathbf { { \bar { s } } } , \mathbf { { a } } ) = { \mathbf { } } { \mathcal { R } } _ { { \mathbf { s } } , \mathbf { { a } } } ^ { \mu } - { \mathbf { \bar { \psi } } } V ^ { \mu } ( \mathbf { s } )$ with respect to $\mu$ (Kakade & Langford, 2002; Schulman et al., 2015): + +$$ +\eta ( \pi ) = \mathbb { E } _ { \mathbf { s } \sim d _ { \pi } ( \mathbf { s } ) } \mathbb { E } _ { \mathbf { a } \sim \pi ( \mathbf { a } | \mathbf { s } ) } \left[ \mathcal { R } _ { \mathbf { s } , \mathbf { a } } ^ { \mu } - V ^ { \mu } ( \mathbf { s } ) \right] , +$$ + +where $\mathcal { R } _ { \mathbf { s } , \mathbf { a } } ^ { \mu }$ denotes the return obtained by performing action a in state s and following $\mu$ for the following timesteps, and $\begin{array} { r } { V ^ { \mu } ( \mathbf { s } ) = \int _ { a . } \mu ( \mathbf { a } | \mathbf { s } ) \mathcal { R } _ { \mathbf { s } } ^ { \mathbf { a } } } \end{array}$ $d \mathbf { a }$ corresponds to the value function of $\mu$ . This objective differs from the ones used in the derivations of related algorithms, such as RWR and + +# Algorithm 1 Advantage-Weighted Regression + +
1:π1 ← random policy 2:D←0
3: for iteration k =1,..., kmax do
4:add trajectories {Ti} sampled via πk to D
5:V ← arg minv Es,a~D [|IRa - V(s)ll2]
7: end for6:πk+1 ←arg maxEs,a~D[ogπ(a|s)exp((a-V(s))]
+ +REPS (Peters & Schaal, 2007; Peters et al., 2010; Abdolmaleki et al., 2018b), which maximize the expected return $J ( \pi )$ instead of the expected improvement. The expected improvement directly gives rise to an objective that involves the advantage. We will see later that this yields a policy update that differ in a subtle but important way from standard RWR. As we show in our experiments, this difference results in a large empirical improvement. + +The objective in Equation 3 can be difficult to optimize due to the dependency between $d _ { \pi } ( \mathbf { s } )$ and $\pi$ , as well as the need to collect samples from $\pi$ . Following Schulman et al. (2015), we can instead optimize an approximation $\hat { \eta } ( \pi )$ of $\eta ( \pi )$ using the state distribution of $\mu$ : + +$$ +\hat { \eta } ( \pi ) = \mathbb { E } _ { \mathbf { s } \sim d _ { \mu } ( \mathbf { s } ) } \mathbb { E } _ { \mathbf { a } \sim \pi ( \mathbf { a } | \mathbf { s } ) } \left[ \mathcal { R } _ { \mathbf { s } , \mathbf { a } } ^ { \mu } - V ^ { \mu } ( \mathbf { s } ) \right] . +$$ + +Here, $\hat { \eta } ( \pi )$ matches $\eta ( \pi )$ to first order (Kakade & Langford, 2002), and provides a good estimate of $\eta$ if $\pi$ and $\mu$ are close in terms of the KL-divergence (Schulman et al., 2015). Using this objective, we can formulate the following constrained policy search problem: + +$$ +\begin{array} { r l } { \underset { \pi } { \arg \operatorname* { m a x } } } & { \displaystyle \int _ { \mathbf { s } } d _ { \mu } ( \mathbf { s } ) \int _ { \mathbf { a } } \pi ( \mathbf { a } | \mathbf { s } ) \left[ \mathcal { R } _ { \mathbf { s } , \mathbf { a } } ^ { \mu } - V ^ { \mu } ( \mathbf { s } ) \right] d \mathbf { a } d \mathbf { s } } \\ { \mathrm { s . t . } } & { \displaystyle \int _ { \mathbf { s } } d _ { \mu } ( \mathbf { s } ) \mathrm { D } _ { \mathrm { K L } } \left( \pi ( \cdot | \mathbf { s } ) | | \mu ( \cdot | \mathbf { s } ) \right) d \mathbf { s } \leq \epsilon . } \end{array} +$$ + +The constraint in Equation 6 ensures that the new policy $\pi$ is close to the data distribution of $\mu$ , and therefore the surrogate objective $\hat { \eta } ( \pi )$ remains a reasonable approximation to $\eta ( \pi )$ . We refer the reader to Schulman et al. (2015) for a detailed derivation and an error bound. + +We can derive AWR as an approximate solution to this constrained optimization. This derivation follows a similar procedure as Peters et al. (2010), and begins by forming the Lagrangian of the optimization problem presented above, + +$$ +\mathcal { L } ( \pi , \beta ) = \int _ { \mathbf { s } } d _ { \mu } ( \mathbf { s } ) \int _ { \mathbf { a } } \pi ( \mathbf { a } | \mathbf { s } ) \left[ \mathcal { R } _ { \mathbf { s } , \mathbf { a } } ^ { \mu } - V ^ { \mu } ( \mathbf { s } ) \right] d \mathbf { a } d \mathbf { s } + \beta \left( \epsilon - \int _ { \mathbf { s } } d _ { \mu } ( \mathbf { s } ) \mathrm { D } _ { \mathrm { K L } } \left( \pi ( \cdot | \mathbf { s } ) | | \mu ( \cdot | \mathbf { s } ) \right) d \mathbf { s } \right) , +$$ + +where $\beta$ is a Lagrange multiplier. Differentiating ${ \mathcal { L } } ( \pi , \beta )$ with respect to $\pi ( \mathbf { a } | \mathbf { s } )$ and solving for the optimal policy $\pi ^ { * }$ results in the following expression for the optimal policy + +$$ +\pi ^ { * } ( \mathbf { a } | \mathbf { s } ) = \frac { 1 } { Z ( \mathbf { s } ) } \mu ( \mathbf { a } | \mathbf { s } ) \exp \left( \frac { 1 } { \beta } \left( \mathcal { R } _ { \mathbf { s } , \mathbf { a } } ^ { \mu } - V ^ { \mu } ( \mathbf { s } ) \right) \right) , +$$ + +with $Z ( \mathbf { s } )$ being the partition function. A detailed derivation is available in Appendix A. If $\pi$ is represented by a function approximator (e.g., a neural network), a new policy can be obtained by projecting $\pi ^ { * }$ onto the manifold of parameterized policies, + +$$ +\begin{array} { r l } { \underset { \pi } { \mathrm { a r g \ m i n } } \ : \ : \ : \ : } & { \mathbb { E } _ { \mathbf { s } \sim \mathcal { D } } \left[ \mathrm { D } _ { \mathbf { K L } } \left( \pi ^ { * } ( \cdot | \mathbf { s } ) | | \pi ( \cdot | \mathbf { s } ) \right) \right] } \\ { = \underset { \pi } { \mathrm { a r g \ m a x } } \ : \ : \ : \ : } & { \mathbb { E } _ { \mathbf { s } \sim d _ { \mu } ( \mathbf { s } ) } \mathbb { E } _ { \mathbf { a } \sim \mu ( \mathbf { a } | \mathbf { s } ) } \left[ \log \pi ( \mathbf { a } | \mathbf { s } ) \mathrm { e x p } \left( \frac { 1 } { \beta } \left( \mathcal { R } _ { \mathbf { s } , \mathbf { a } } ^ { \mu } - V ^ { \mu } ( \mathbf { s } ) \right) \right) \right] . } \end{array} +$$ + +While this derivation for AWR largely follows the derivations used in prior work (Peters et al., 2010; Abdolmaleki et al., 2018b), our expected improvement objective introduces a baseline $V ^ { \mu } ( \mathbf { s } )$ to the policy update, which as we show in our experiments, is a crucial component for an effective algorithm. A similar advantage-weighting scheme has been previously used for fitted Q-iteration (Neumann & Peters, 2009), where the policy is given by $\begin{array} { r } { \pi ( \mathbf { a } | \mathbf { s } ) ^ { \cdot } = \frac { 1 } { Z ( \mathbf { s } ) } \mathrm { e x p } \left( \left( \mathcal { R } _ { \mathbf { s } , \mathbf { a } } ^ { \mu } - V ^ { \mu } ( \grave { \mathbf { s } } ) \right) / \beta \right) } \end{array}$ . In this definition, the likelihood of an action does not depend on the sampling distribution, and therefore does not enforce a trust region with respect to $\mu$ . + +# 3.2 EXPERIENCE REPLAY AND OFF-POLICY LEARNING + +A crucial design decision of AWR is the choice of sampling policy $\mu ( \mathbf { a } | \mathbf { s } )$ . Standard implementations of RWR are typically on-policy, where the sampling policy is selected to be the current policy $\mu ( \mathbf { a } | \mathbf { s } ) = \pi _ { k } ( \mathbf { a } | \mathbf { s } )$ at iteration $k$ . This can be sample inefficient, as data collected at each iteration are discarded after a single update iteration. Importance sampling can be incorporated into RWR to reuse data from previous iterations, but at the cost of larger variance (Kober & Peters, 2009). Instead, we can improve sample efficiency of AWR by incorporating experience replay and explicitly accounting for training data from a mixture of multiple past policies. As described in Algorithm 1, at each iteration, AWR collects a batch of data using the latest policy $\pi _ { k }$ , and then stores this data in a replay buffer $\mathcal { D }$ , which also contains data collected from previous policies $\{ \pi _ { 1 } , \cdots , \pi _ { k } \}$ . The value function and policy are then updated using samples drawn from $\mathcal { D }$ . This replay strategy is analogous to modeling the sampling policy as a mixture of policies from previous iterations $\begin{array} { r } { \mu _ { k } ( \tau ) = \sum _ { i = 1 } ^ { k } w _ { i } \pi _ { i } ( \tau ) } \end{array}$ , where $\pi _ { i } ( \tau ) = p ( \tau | \pi _ { i } )$ represents the likelihood of a trajectory $\tau$ under a policy $\pi _ { i }$ from the ith iteration, and the weight $w _ { i }$ specify the probability of selecting $\pi _ { i }$ . + +We now extend the derivation from the previous section to the off-policy setting with experience replay, and show that Algorithm 1 indeed optimizes the expected improvement over a sampling policy modeled by the replay buffer. Given a replay buffer consisting of trajectories from past policies, the joint state-action distribution of $\mu$ is given by $\begin{array} { r } { \mu ( \mathbf { s } , \mathbf { a } ) = \sum _ { i = 1 } ^ { k } w _ { i } d _ { \pi _ { i } } ( \mathbf { s } ) \pi _ { i } ( \mathbf { a } | \mathbf { s } ) } \end{array}$ , and similarly for the marginal state distribution $\begin{array} { r } { d _ { \mu } ( \mathbf { s } ) = \sum _ { i = 1 } ^ { k } w _ { i } d _ { \pi _ { i } } ( \mathbf { s } ) } \end{array}$ . The expected improvement can now be expressed with respect to the set of sampling policies in the replay buffer, + +$$ +\eta ( \pi ) = J ( \pi ) - \sum _ { i } w _ { i } J ( \pi _ { i } ) = \mathbb { E } _ { \mathbf { s } \sim d _ { \pi } ( \mathbf { s } ) } \mathbb { E } _ { \mathbf { a } \sim \pi ( \mathbf { a } | \mathbf { s } ) } \left[ \sum _ { i } w _ { i } A ^ { \pi _ { i } } ( \mathbf { s } , \mathbf { a } ) \right] , +$$ + +where $A ^ { \pi _ { i } } ( \mathbf { s } , \mathbf { a } ) = \mathcal { R } _ { \mathbf { s } , \mathbf { a } } ^ { \pi _ { i } } - V ^ { \pi _ { i } } ( \mathbf { s } )$ is the advantage with respect to each sampling policy. In Appendix $\mathbf { B }$ , we show that the update procedure in Algorithm 1 optimizes the following objective: + +$$ +\begin{array} { r l } & { \underset { \pi } { \arg \operatorname* { m a x } } \sum _ { i = 1 } ^ { k } w _ { i } \left( \mathbb { E } _ { \mathbf { s } \sim d _ { \pi _ { i } } ( \mathbf { s } ) } \mathbb { E } _ { \mathbf { a } \sim \pi ( \mathbf { a } | \mathbf { s } ) } \left[ A ^ { \pi _ { i } } ( \mathbf { s } , \mathbf { a } ) \right] \right) } \\ & { \quad \mathbf { s } . \mathbf { t } . \quad \mathbb { E } _ { \mathbf { s } \sim d _ { \mu } ( \mathbf { s } ) } \left[ \operatorname { D } _ { \mathrm { K L } } \left( \pi ( \cdot | \mathbf { s } ) | | \mu ( \cdot | \mathbf { s } ) \right) \right] \leq \epsilon , } \end{array} +$$ + +where µ(a|s) = µ(s,a) = Pi widπi (s)πi(a|s) represents the conditional action distribution defined by the replay buffer. This objective can be solved via the Lagrangian to yield the following update: + +$$ +\arg \operatorname* { m a x } _ { \pi } \sum _ { i = 1 } ^ { k } w _ { i } \mathbb { E } _ { \mathbf { s } \sim d _ { \pi _ { i } } ( \mathbf { s } ) } \mathbb { E } _ { \mathbf { a } \sim \pi _ { i } ( \mathbf { a } | \mathbf { s } ) } \left[ \log \pi ( \mathbf { a } | \mathbf { s } ) \mathrm { e x p } \left( \frac { 1 } { \beta } \left( \mathcal { R } _ { \mathbf { s } , \mathbf { a } } ^ { \pi _ { i } } - \frac { \sum _ { j } w _ { j } d _ { \pi _ { j } } ( \mathbf { s } ) V ^ { \pi _ { j } } ( \mathbf { s } ) } { \sum _ { j } w _ { j } d _ { \pi _ { j } } ( \mathbf { s } ) } \right) \right) \right] , +$$ + +where the expectations can be approximated by simply sampling from $\mathcal { D }$ following Line 6 of Algorithm 1. A detailed derivation is available in Appendix B. Note, the baseline in the exponent now consists of an average of the value functions of the different policies. This mean value function $\bar { V } ( \mathbf { s } )$ can be fitted by simply sampling from the replay buffer following Line 5 of Algorithm 1, + +$$ +\bar { V } = \underset { V } { \arg \operatorname* { m i n } } \sum _ { i } w _ { i } \mathbb { E } _ { { \mathbf s } , \sim d _ { \pi _ { i } } ( { \mathbf s } ) , { \mathbf a } \sim \pi _ { i } ( { \mathbf a } | { \mathbf s } ) } \left[ | | \mathcal { R } _ { { \mathbf s } , { \mathbf a } } ^ { \pi _ { i } } - V ( { \mathbf s } ) | | ^ { 2 } \right] . +$$ + +The optimal solution $\begin{array} { r } { \bar { V } ( \mathbf { s } ) = \frac { \sum _ { i } w _ { i } d _ { \pi _ { i } } ( \mathbf { s } ) V ^ { \pi _ { i } } ( \mathbf { s } ) } { \sum _ { j } w _ { j } d _ { \pi _ { j } } ( \mathbf { s } ) } } \end{array}$ is exactly the baseline in Equation 14. + +# 3.3 IMPLEMENTATION DETAILS + +Finally, we discuss several important design decisions for a practical implementation of AWR. Monte Carlo estimates can be used to approximate the expected return $\mathcal { R } _ { \mathbf { s } , \mathbf { a } } ^ { \mathcal { D } }$ , but this can result in a highvariance estimate. Instead, we approximate $\mathcal { R } _ { \mathbf { s } , \mathbf { a } } ^ { \mathcal { D } }$ using $\mathrm { T D } ( \lambda )$ to obtain a lower-variance estimate (Sutton & Barto, 1998). $\mathrm { T D } ( \lambda )$ is applied by bootstrapping with the value function $V _ { k - 1 } ^ { \mathcal { D } }$ (s) from the previous iteration. To set the value of the Lagrange multiplier $\beta$ , we found that a simple adaptive heuristic of setting $\beta$ to the standard deviation of all advantage values $\sigma _ { A }$ in the replay buffer works well in practice. This is akin to the advantage normalization technique commonly used in implementations of algorithms such as PPO (Dhariwal et al., 2017). Details are available in Appendix C. + +![](images/7c0e471687ed55416395d8d259768717763e8d9157d805db1e6137351b93ea0e.jpg) +Figure 1: Snapshots of AWR policies trained on OpenAI Gym and motion imitation tasks. Our simple algorithm learns effective policies for a diverse suite of control tasks. + +The weights $\begin{array} { r } { \omega _ { \mathbf { s } , \mathbf { a } } ^ { D } = \exp \Big ( \frac { 1 } { \beta } \left( \mathcal { R } _ { \mathbf { s } , \mathbf { a } } ^ { D } - V ^ { \mathcal { D } } ( \mathbf { s } ) \right) \Big ) } \end{array}$ used to update the policy can occasionally assume excessively large values, which causes gradients to explode. Therefore, we apply weight clipping $\hat { \omega } _ { \mathbf { s } , \mathbf { a } } ^ { \mathcal { D } } = \operatorname* { m i n } \left( \omega _ { \mathbf { s } , \mathbf { a } } ^ { \mathbf { \breve { D } } } , \omega _ { \operatorname* { m a x } } \right)$ with a threshold $\omega _ { \mathrm { m a x } }$ to prevent exploding weights. + +# 4 RELATED WORK + +Existing RL methods can be broadly categorized into on-policy and off-policy algorithms (Sutton & Barto, 1998). On-policy algorithms generally update the policy using data collected from the same policy. A popular class of on-policy algorithms is policy gradient methods (Williams, 1992; Sutton et al., 2000), which can be effective for a diverse array of complex tasks (Heess et al., 2017; Pathak et al., 2017; Peng et al., 2018; Rajeswaran et al., 2018). However, on-policy algorithms are typically data inefficient. Off-policy algorithms improve sample efficiency by enabling training using data from other sources, such as data from different agents or data from previous iterations of the algorithm. Importance sampling is a simple strategy for off-policy learning (Sutton & Barto, 1998; Meuleau et al., 2000; Hachiya et al., 2009), but can introduce optimization instabilities due to the large variance of the importance sampling estimator. Dynamic programming methods based on Q-function learning can also leverage off-policy data (Precup et al., 2001; Mnih et al., 2015; Lillicrap et al., 2016; Gu et al., 2016; Haarnoja et al., 2018b). But these methods can be notoriously unstable, and in practice, require a variety of stabilization techniques (Hasselt et al., 2016; Wang et al., 2016; Munos et al., 2016; Hessel et al., 2017; Fujimoto et al., 2018; Fu et al., 2019). Furthermore, it can be difficult to apply these methods to fully off-policy data, where an agent is unable to collect additional environmental interactions (Fujimoto et al., 2019; Kumar et al., 2019). + +Policy search can also be formulated under an expectation-maximization framework (Peters et al., 2010; Neumann, 2011; Abdolmaleki et al., 2018b), an early example of which is reward-weighted regression (RWR) (Peters & Schaal, 2007). RWR presents a simple on-policy RL algorithm that casts policy search as a supervised regression problem. A similar algorithm, relative entropy policy search (REPS) (Peters et al., 2010), can also be derived from the dual formulation of a constrained policy search problem. RWR has a number appealing properties: it has a very simple update rule, and since each iteration corresponds to supervised learning, it can be more stable and easier to implement than many of the previously mentioned RL methods. Despite these advantages, RWR has not been shown to be an effective when combined with neural networks (Schulman et al., 2015; Duan et al., 2016). In this work, we propose a number of modifications to the formulation of RWR to produce an effective off-policy deep RL algorithm, while still retaining much of the simplicity of RWR. + +The optimization problem being solved in AWR is similar to REPS (Peters et al., 2010), but REPS optimizes the expected return instead of the expected improvement. The weights in REPS also contains a Bellman error term that resembles advantages, but are computed using a linear value function derived from a feature matching constraint. Learning the REPS value function involves minimization of a dual function, which is a complex function of the Bellman error, while the value function in AWR can be learned with simple supervised regression. More recently, Abdolmaleki et al. (2018b) proposed MPO, a deep RL variant of REPS, which applies a partial EM algorithm for policy optimization. The method first fits a Q-function of the current policy via bootstrapping, and then performs a policy improvement step with respect to this Q-function. MPO uses off-policy data for training a Q-function and employs Retrace(λ) for off-policy correction (Munos et al., 2016). In + +![](images/f4d7a3e7fde0cb6b789cbd4e6862d6eb15cff251382b73b9b8ec553ea60a54eb.jpg) + +Figure 2: Learning curves of the various algorithms when applied to OpenAI Gym tasks. Results are averaged across 10 random seeds. AWR is generally competitive with the best current methods. + +
TaskTRPOPPODDPGTD3SACLAWERRWRAWR (Ours)
Ant-v22901 ± 854884± 124972 ± 15505997 ± 7657500±3532240± 4971183± 1765372± 163
HalfCheetah-v23302 ± 4287617 ± 18510563 ± 38212324 ± 154916223 ± 9644596± 23312075±3709192 ± 157
Hopper-v21880±3372514± 726855±2822794± 152757±6581830± 553605± 1143498±167
Humanoid-v2552±94668 ± 11534382 ± 4234738±936296±332108±386509±186159 ± 274
LunarLander-v2104± 94121 ± 49185±23229±2
Walker2d-v22765±1685036± 934401± 4704779± 8036210±5112502±388406±645813± 483
+ +Table 1: Final returns for different algorithms on the OpenAI Gym tasks, with $\pm$ corresponding to one standard deviation of the average return across 10 random seeds. In terms of final performance, AWR is generally competitive with prior methods. + +contrast, AWR is simpler, as it can simply fit a value function to the observed returns in a replay buffer, and performs weighted supervised regression on the actions to fit the policy. Oh et al. (2018) proposed self-imitation learning (SIL), which augments policy gradient algorithms with an auxiliary behaviour cloning loss to reuse samples from past experiences. Unlike SIL, AWR is a standalone algorithm, and does not need to be combined with an auxiliary RL algorithm. Neumann & Peters (2009) proposed LAWER, a kernel-based fitted Q-iteration algorithm where the Bellman error is weighted by the normalized advantage of each state-action pair. This was then followed by a soft-policy improvement step. Similar to Neumann & Peters (2009), AWR also uses exponentiated advantages, but LAWER’s definition of the policy is different from the one in AWR and does not enforce a trust region constraint. Furthermore, AWR does not perform fitted Q-iteration, and instead utilizes off-policy data in a simple constrained policy search procedure. Wang et al. (2018) applied a similar advantage-weighting scheme for imitation learning, but the method was not demonstrated for the RL setting. In this work, we propose several design decisions that are vital for an effective RL algorithm. We also provide a theoretical analysis of AWR when combined with experience replay, and show that the algorithm optimizes the expected improvement with respect to a mixture of policies modeled by a replay buffer. + +# 5 EXPERIMENTS + +Our experiments aim to comparatively evaluate the performance of AWR with commonly used on-policy and off-policy deep RL algorithms. We evaluate our method on the OpenAI Gym benchmarks (Brockman et al., 2016), consisting of discrete and continuous control tasks. We also evaluate our method on complex motion imitation tasks with high-dimensional simulated characters. We then demonstrate the effectiveness of AWR on fully off-policy learning, by training on static datasets of demonstrations from demo policies. Behaviors learned by the policies are best seen in the supplementary video1. Code for our implementation of AWR is available at sites.google.com/view/awr-supp/. Detailed hyperparameter settings are provided in Appendix C. + +# 5.1 BENCHMARKS + +We compare AWR to a number of state-of-the-art RL algorithms, including on-policy algorithms, such as TRPO (Schulman et al., 2015) and PPO (Schulman et al., 2017), off-policy algorithms, such as DDPG (Lillicrap et al., 2016), TD3 (Fujimoto et al., 2018), and SAC (Haarnoja et al., 2018a), as well as RWR (Peters & Schaal, 2007) and LAWER (Neumann & Peters, 2009).2 TRPO, PPO, and DDPG use the implementations from OpenAI baselines (Dhariwal et al., 2017). TD3 and SAC use the implementations from Fujimoto et al. (2018) and Haarnoja et al. (2018a). RWR and LAWER are implemented following the descriptions in Peters & Schaal (2007) and Neumann & Peters (2009), but neural networks are used instead of kernel-based approximators. + +![](images/939e4b97196a5ea1baaf38ced3bafa63057a2596192d893c1385f6fc296d2543.jpg) +Figure 3: Left: Learning curves comparing AWR with various components removed. Each component contributes to performance improvements. Right: Learning curves comparing AWR with different capacity replay buffers. AWR remains stable with large buffers containing primarily off-policy data from past iterations. + +Snapshots of the AWR policies are shown in Figure 1. Figure 2 shows learning curves comparing the different algorithms, and Table 1 summarizes the average returns of the final policies across 10 training runs initialized with different random seeds. Due to the slow wall-clock times of TD3 and SAC, some training runs did not have sufficient time to collect as many samples as other algorithms. Overall, AWR shows competitive performance with the state-of-the-art deep RL algorithms. It is competitive with on-policy methods, such as TRPO and PPO, in both sample efficiency and asymptotic performance. While it is not yet as sample efficient as current state-of-the-art off-policy methods, such SAC and TD3, it is able to achieve a comparable asymptotic performance on most tasks. RWR tends to perform poorly on these tasks, which suggests that, the particular modifications from AWR are critical. AWR also significantly outperforms LAWER across the various tasks. Though both methods use a similar advantaged-weighting scheme, our design decisions for AWR produce a simpler and more effective algorithm. + +# 5.2 ABLATION EXPERIMENTS + +To determine the effects of various design decisions, we evaluate the performance of AWR when key components have been removed. The experiments include: an on-policy version of AWR (On-Policy), where updates use only data from the latest policy, a version of AWR without the baseline $V ( \mathbf { s } )$ (No Baseline), and a version that uses Monte Carlo return estimates instead of $\mathrm { T D } ( \lambda )$ (No $\mathrm { T D } ( \lambda ) ,$ ). The effects of these components are illustrated in Figure 3. Overall, these design decisions appear to be vital for an effective algorithm, with the most crucial components being the use of experience replay and a baseline. Updates using only on-policy data can lead to instabilities and noticeable degradation in performance, which may be due to overfitting on a smaller dataset. Removing the baseline also noticeably hampers performance. Using simple Monte Carlo return estimates instead of $\mathrm { T D } ( \lambda )$ seems to be a viable alternative, and the algorithm still achieves competitive performance on some tasks. When combined, these different components yield substantial performance gains over standard RWR. + +To further evaluate the effect of experience replay, we compare policies trained using replay buffer with different capacities. Figure 3 illustrates the learning curves for buffers of size 5k, 20k, 50k, 100k, and $5 0 0 \mathrm { k }$ , with 50k being the default buffer size in our experiments. The size of the replay buffer appears to have a significant impact on overall performance. Smaller buffer sizes can result in instabilities during training, which again may be an effect of overfitting to a smaller dataset. As the buffer size increases, AWR remains stable even when the dataset is dominated by off-policy data from previous iterations. In fact, AWR appears more stable with larger replay buffers, but progress can also become slower. Since the sampling policy $\mu ( \mathbf { a } | \mathbf { s } )$ is modeled by the replay buffer, a larger buffer can limit the rate at which $\mu$ changes by maintaining older data for more iterations. + +# 5.3 MOTION IMITATION + +In this section, we show that AWR can also solve high-dimensional tasks with complex simulated characters, including a $3 4 \mathrm { D o F }$ humanoid and 64 DoF dog. The objective of the tasks is to imitate reference motion clips recorded using mocap. The experimental setup follows the framework proposed by Peng et al. (2018). The motions include walking and running (e.g. canter), as well as acrobatic skills, such as cartwheels and spinkicks. Figure 1 shows snapshots of the behaviors learned by the AWR. Table 2 and Figure 4 compare the performance of AWR to RWR and PPO. AWR performs well across the set of challenging skills, consistently achieving comparable or better performance than PPO. RWR struggles with controlling the humanoid, but exhibits stronger performance on the dog. This difference may be due to the more dynamic and acrobatic skills of the humanoid. + +Table 2: Performance of algorithms on the motion imitation tasks. Returns are normalized between the minimum and maximum possible returns. + +
TaskPPORWRAWR (Ours)
Humanoid:Cartwheel0.76 ±0.020.03±0.010.78±0.07
Humanoid:Spinkick0.70±0.020.05± 0.030.77± 0.04
Dog:Canter0.76±0.030.78±0.040.86± 0.01
Dog:Trot0.86±0.010.86±0.010.86±0.03
Dog:Turn0.75±0.020.75±0.030.82±0.03
+ +![](images/87d4ca4512b6c8070d7476d2fc3bf8e68347c115c9db6cc02518ecfc41d72dbf.jpg) +Figure 4: Learning curves on motion imitation tasks. On these challenging tasks, AWR generally learns faster than PPO and RWR. + +![](images/0a480916b5b94b57a18bb7423ee598c2c7ee342d2dff7ecf2edff2777aed5a76.jpg) +Figure 5: Performance of various algorithms on off-policy learning tasks with static datasets. AWR is able to learn policies that are comparable or better than the original demo policies. + +# 5.4 OFF-POLICY LEARNING WITH STATIC DATASETS + +Next, we evaluate AWR in a fully off-policy setting, where the algorithm is provided with a static dataset of experiences, and then tasked with learning the best possible policy without collecting any additional data. To evaluate our method, we use the off-policy tasks proposed by Kumar et al. (2019). The dataset consists of trajectories $\tau = \{ ( \mathbf { s } _ { 0 } , \mathbf { a } _ { 0 } , r _ { 0 } ) , ( \mathbf { s } _ { 1 } , \mathbf { a } _ { 1 } , r _ { 1 } ) , \ldots \}$ from rollouts of a demo policy. Unlike standard imitation learning tasks, which only observes the states and actions from the demo policy, the dataset also records the reward at each step. The demo policies are trained using SAC on various OpenAI Gym tasks. A dataset of 1 million timesteps is collected for each task. + +For AWR, we simply treat the dataset as the replay buffer $\mathcal { D }$ and directly apply the algorithm without any modifications. Figure 5 compares AWR to the original demo policy (Demo) and a behavioral cloning policy (BC). We also include comparisons to recent off-policy methods: batch-constrained Q-learning (BCQ) (Fujimoto et al., 2019) and bootstrapping error accumulation reduction (BEAR) (Kumar et al., 2019), which have shown strong performance on off-policy learning with static datasets. Note that both of these prior methods are modifications to existing off-policy RL methods, such as TD3 and SAC, which are already quite complex. In contrast, AWR is simple and requires no modifications for the fully off-policy setting. Despite not collecting any additional data, AWR is able to learn effective policies from these fully off-policy datasets, achieving comparable or better performance than the original demo policies. On-policy methods, such as PPO performs poorly in this off-policy setting. Q-function based methods, such as TD3 and SAC, can in principle handle off-policy data but tend to struggle in practice (Fujimoto et al., 2019; Kumar et al., 2019). Unlike Q-function based methods, AWR is less susceptible to issues from out-of-distribution actions as the policy is always trained on observed actions from the behaviour data (Kumar et al., 2019). AWR also shows comparable performance to BEAR and BCQ, which are specifically designed for this off-policy setting and introduce considerable algorithmic overhead. + +# 6 DISCUSSION AND FUTURE WORK + +We presented advantage-weighted regression, a simple off-policy reinforcement learning algorithm, where policy updates are performed using standard supervised learning methods. Despite its simplicity, our algorithm is able to solve challenging control tasks with complex simulated agents, and achieve competitive performance on standard benchmarks compared to a number of well-established RL algorithms. Our derivation introduces several new design decisions, and our experiments verify the importance of these components. AWR is also able to learn from fully off-policy datasets, demonstrating comparable performance to state-of-the-art off-policy methods. While AWR is effective for a diverse suite of tasks, it is not yet as sample efficient as the most efficient off-policy algorithms. We believe that exploring techniques for improving sample efficiency and performance on fully off-policy learning can open opportunities to deploy these methods in real world domains. A better theoretical understanding of the convergence properties of these algorithms, especially when combined with experience replay, could also be valuable for the development of future algorithms. + +# REFERENCES + +Abbas Abdolmaleki, Jost Tobias Springenberg, Jonas Degrave, Steven Bohez, Yuval Tassa, Dan Belov, Nicolas Manfred Otto Heess, and Martin A. Riedmiller. Relative entropy regularized policy iteration. ArXiv, abs/1812.02256, 2018a. + +Abbas Abdolmaleki, Jost Tobias Springenberg, Yuval Tassa, Remi Munos, Nicolas Heess, and Martin Riedmiller. Maximum a posteriori policy optimisation. In International Conference on Learning Representations, 2018b. URL https://openreview.net/forum?id $\underline { { \underline { { \mathbf { \Pi } } } } } =$ S1ANxQW0b. + +Greg Brockman, Vicki Cheung, Ludwig Pettersson, Jonas Schneider, John Schulman, Jie Tang, and Wojciech Zaremba. Openai gym, 2016. + +Prafulla Dhariwal, Christopher Hesse, Oleg Klimov, Alex Nichol, Matthias Plappert, Alec Radford, John Schulman, Szymon Sidor, Yuhuai Wu, and Peter Zhokhov. Openai baselines. https: //github.com/openai/baselines, 2017. + +Yan Duan, Xi Chen, Rein Houthooft, John Schulman, and Pieter Abbeel. Benchmarking deep reinforcement learning for continuous control. In ICML, pp. 1329–1338, 2016. URL http: //proceedings.mlr.press/v48/duan16.html. + +Justin Fu, Aviral Kumar, Matthew Soh, and Sergey Levine. Diagnosing bottlenecks in deep qlearning algorithms. In Kamalika Chaudhuri and Ruslan Salakhutdinov (eds.), Proceedings of the 36th International Conference on Machine Learning, volume 97 of Proceedings of Machine Learning Research, pp. 2021–2030, Long Beach, California, USA, 09–15 Jun 2019. PMLR. URL http://proceedings.mlr.press/v97/fu19a.html. + +Scott Fujimoto, Herke van Hoof, and David Meger. Addressing function approximation error in actor-critic methods. In Jennifer Dy and Andreas Krause (eds.), Proceedings of the 35th International Conference on Machine Learning, volume 80 of Proceedings of Machine Learning Research, pp. 1587–1596, Stockholmsmassan, Stockholm Sweden, 10–15 Jul 2018. PMLR. URL¨ http://proceedings.mlr.press/ $\mathtt { v 8 0 }$ /fujimoto18a.html. + +Scott Fujimoto, David Meger, and Doina Precup. Off-policy deep reinforcement learning without exploration. In Kamalika Chaudhuri and Ruslan Salakhutdinov (eds.), Proceedings of the 36th International Conference on Machine Learning, volume 97 of Proceedings of Machine Learning Research, pp. 2052–2062, Long Beach, California, USA, 09–15 Jun 2019. PMLR. URL http: //proceedings.mlr.press/v97/fujimoto19a.html. + +Shixiang Gu, Timothy Lillicrap, Ilya Sutskever, and Sergey Levine. Continuous deep q-learning with model-based acceleration. In Maria Florina Balcan and Kilian Q. Weinberger (eds.), Proceedings of The 33rd International Conference on Machine Learning, volume 48 of Proceedings of Machine Learning Research, pp. 2829–2838, New York, New York, USA, 20–22 Jun 2016. PMLR. URL http://proceedings.mlr.press/v48/gu16.html. + +Tuomas Haarnoja, Aurick Zhou, Pieter Abbeel, and Sergey Levine. Soft actor-critic: Off-policy maximum entropy deep reinforcement learning with a stochastic actor. In Jennifer Dy and Andreas Krause (eds.), Proceedings of the 35th International Conference on Machine Learning, volume 80 of Proceedings of Machine Learning Research, pp. 1861–1870, Stockholmsmassan, ¨ Stockholm Sweden, 10–15 Jul 2018a. PMLR. URL http://proceedings.mlr.press/ v80/haarnoja18b.html. + +Tuomas Haarnoja, Aurick Zhou, Pieter Abbeel, and Sergey Levine. Soft actor-critic: Off-policy maximum entropy deep reinforcement learning with a stochastic actor. In Jennifer Dy and Andreas Krause (eds.), Proceedings of the 35th International Conference on Machine Learning, volume 80 of Proceedings of Machine Learning Research, pp. 1861–1870, Stockholmsmassan, ¨ Stockholm Sweden, 10–15 Jul 2018b. PMLR. URL http://proceedings.mlr.press/ v80/haarnoja18b.html. + +Hirotaka Hachiya, Takayuki Akiyama, Masashi Sugiayma, and Jan Peters. Adaptive importance sampling for value function approximation in off-policy reinforcement learning. Neural Netw., 22(10):1399–1410, December 2009. ISSN 0893-6080. doi: 10.1016/j.neunet.2009.01.002. URL http://dx.doi.org/10.1016/j.neunet.2009.01.002. + +Danijar Hafner, James Davidson, and Vincent Vanhoucke. Tensorflow agents: Efficient batched reinforcement learning in tensorflow. CoRR, abs/1709.02878, 2017. URL http://arxiv. org/abs/1709.02878. + +Hado van Hasselt, Arthur Guez, and David Silver. Deep reinforcement learning with double q-learning. In Proceedings of the Thirtieth AAAI Conference on Artificial Intelligence, AAAI’16, pp. 2094– 2100. AAAI Press, 2016. URL http://dl.acm.org/citation.cfm?id=3016100. 3016191. + +Nicolas Heess, Dhruva TB, Srinivasan Sriram, Jay Lemmon, Josh Merel, Greg Wayne, Yuval Tassa, Tom Erez, Ziyu Wang, S. M. Ali Eslami, Martin A. Riedmiller, and David Silver. Emergence of locomotion behaviours in rich environments. CoRR, abs/1707.02286, 2017. URL http: //arxiv.org/abs/1707.02286. + +Matteo Hessel, Joseph Modayil, Hado van Hasselt, Tom Schaul, Georg Ostrovski, Will Dabney, Daniel Horgan, Bilal Piot, Mohammad Gheshlaghi Azar, and David Silver. Rainbow: Combining improvements in deep reinforcement learning. CoRR, abs/1710.02298, 2017. URL http: //arxiv.org/abs/1710.02298. + +Sham Kakade and John Langford. Approximately optimal approximate reinforcement learning. In Proceedings of the Nineteenth International Conference on Machine Learning, ICML ’02, pp. 267–274, San Francisco, CA, USA, 2002. Morgan Kaufmann Publishers Inc. ISBN 1-55860-873-7. URL http://dl.acm.org/citation.cfm?id=645531.656005. + +Jens Kober and Jan R. Peters. Policy search for motor primitives in robotics. In D. Koller, D. Schuurmans, Y. Bengio, and L. Bottou (eds.), Advances in Neural Information Processing Systems 21, pp. 849–856. Curran Associates, Inc., 2009. + +Aviral Kumar, Justin Fu, George Tucker, and Sergey Levine. Stabilizing off-policy q-learning via bootstrapping error reduction. CoRR, abs/1906.00949, 2019. URL http://arxiv.org/abs/ 1906.00949. + +Timothy P. Lillicrap, Jonathan J. Hunt, Alexander Pritzel, Nicolas Manfred Otto Heess, Tom Erez, Yuval Tassa, David Silver, and Daan Wierstra. Continuous control with deep reinforcement learning. ICLR, 2016. + +Nicolas Meuleau, Leonid Peshkin, Leslie P. Kaelbling, and Kee eung Kim. Off-policy policy search. Technical report, 2000. + +Volodymyr Mnih, Koray Kavukcuoglu, David Silver, Andrei A. Rusu, Joel Veness, Marc G. Bellemare, Alex Graves, Martin Riedmiller, Andreas K. Fidjeland, Georg Ostrovski, Stig Petersen, Charles Beattie, Amir Sadik, Ioannis Antonoglou, Helen King, Dharshan Kumaran, Daan Wierstra, Shane Legg, and Demis Hassabis. Human-level control through deep reinforcement learning. Nature, 518(7540):529–533, February 2015. ISSN 00280836. URL http://dx.doi.org/10.1038/nature14236. + +Remi Munos, Thomas Stepleton, Anna Harutyunyan, and Marc G. Bellemare. Safe and efficient ´ off-policy reinforcement learning. In Proceedings of the 30th International Conference on Neural Information Processing Systems, NIPS’16, pp. 1054–1062, USA, 2016. Curran Associates Inc. ISBN 978-1-5108-3881-9. URL http://dl.acm.org/citation.cfm?id $\underline { { \underline { { \mathbf { \Pi } } } } } =$ 3157096. 3157214. + +Vinod Nair and Geoffrey E. Hinton. Rectified linear units improve restricted boltzmann machines. In Proceedings of the 27th International Conference on International Conference on Machine Learning, ICML’10, pp. 807–814, USA, 2010. Omnipress. ISBN 978-1-60558-907-7. URL http://dl.acm.org/citation.cfm?id $\equiv$ 3104322.3104425. + +Gerhard Neumann. Variational inference for policy search in changing situations. In Proceedings of the 28th International Conference on International Conference on Machine Learning, ICML’11, pp. 817–824, USA, 2011. Omnipress. ISBN 978-1-4503-0619-5. URL http://dl.acm.org/ citation.cfm?id=3104482.3104585. + +Gerhard Neumann and Jan R. Peters. Fitted q-iteration by advantage weighted regression. In D. Koller, D. Schuurmans, Y. Bengio, and L. Bottou (eds.), Advances in Neural Information Processing Systems 21, pp. 1177–1184. Curran Associates, Inc., 2009. + +Junhyuk Oh, Yijie Guo, Satinder Singh, and Honglak Lee. Self-imitation learning. In Jennifer Dy and Andreas Krause (eds.), Proceedings of the 35th International Conference on Machine Learning, volume 80 of Proceedings of Machine Learning Research, pp. 3878–3887, Stockholmsmassan, ¨ Stockholm Sweden, 10–15 Jul 2018. PMLR. URL http://proceedings.mlr.press/ v80/oh18b.html. + +Deepak Pathak, Pulkit Agrawal, Alexei A. Efros, and Trevor Darrell. Curiosity-driven exploration by self-supervised prediction. In The IEEE Conference on Computer Vision and Pattern Recognition (CVPR) Workshops, July 2017. + +Xue Bin Peng, Pieter Abbeel, Sergey Levine, and Michiel van de Panne. Deepmimic: Exampleguided deep reinforcement learning of physics-based character skills. ACM Trans. Graph., 37 (4):143:1–143:14, July 2018. ISSN 0730-0301. doi: 10.1145/3197517.3201311. URL http: //doi.acm.org/10.1145/3197517.3201311. + +Jan Peters and Stefan Schaal. Reinforcement learning by reward-weighted regression for operational space control. In Proceedings of the 24th International Conference on Machine Learning, ICML ’07, pp. 745–750, New York, NY, USA, 2007. ACM. ISBN 978-1-59593-793-3. doi: 10.1145/ 1273496.1273590. URL http://doi.acm.org/10.1145/1273496.1273590. + +Jan Peters, Katharina Mulling, and Yasemin Alt ¨ un. Relative entropy policy search. In ¨ Proceedings of the Twenty-Fourth AAAI Conference on Artificial Intelligence, AAAI’10, pp. 1607–1612. AAAI Press, 2010. URL http://dl.acm.org/citation.cfm?id=2898607.2898863. + +Vitchyr Pong. Rlkit. https://github.com/vitchyr/rlkit, 2019. + +Doina Precup, Richard S. Sutton, and Sanjoy Dasgupta. Off-policy temporal difference learning with function approximation. In Proceedings of the Eighteenth International Conference on Machine Learning, ICML ’01, pp. 417–424, San Francisco, CA, USA, 2001. Morgan Kaufmann Publishers Inc. ISBN 1-55860-778-1. URL http://dl.acm.org/citation.cfm?id $=$ 645530.655817. + +Aravind Rajeswaran, Vikash Kumar, Abhishek Gupta, Giulia Vezzani, John Schulman, Emanuel Todorov, and Sergey Levine. Learning Complex Dexterous Manipulation with Deep Reinforcement Learning and Demonstrations. In Proceedings of Robotics: Science and Systems (RSS), 2018. + +John Schulman, Sergey Levine, Pieter Abbeel, Michael Jordan, and Philipp Moritz. Trust region policy optimization. In Francis Bach and David Blei (eds.), Proceedings of the 32nd International Conference on Machine Learning, volume 37 of Proceedings of Machine Learning Research, pp. 1889–1897, Lille, France, 07–09 Jul 2015. PMLR. URL http://proceedings.mlr. press/v37/schulman15.html. + +John Schulman, Filip Wolski, Prafulla Dhariwal, Alec Radford, and Oleg Klimov. Proximal policy optimization algorithms. CoRR, abs/1707.06347, 2017. URL http://arxiv.org/abs/ 1707.06347. + +Richard S. Sutton and Andrew G. Barto. Introduction to Reinforcement Learning. MIT Press, Cambridge, MA, USA, 1st edition, 1998. ISBN 0262193981. + +Richard S Sutton, David A. McAllester, Satinder P. Singh, and Yishay Mansour. Policy gradient methods for reinforcement learning with function approximation. In S. A. Solla, T. K. Leen, and K. Muller (eds.), ¨ Advances in Neural Information Processing Systems 12, pp. 1057–1063. MIT Press, 2000. + +Qing Wang, Jiechao Xiong, Lei Han, peng sun, Han Liu, and Tong Zhang. Exponentially weighted imitation learning for batched historical data. In S. Bengio, H. Wallach, H. Larochelle, K. Grauman, N. Cesa-Bianchi, and R. Garnett (eds.), Advances in Neural Information Processing Systems 31, pp. 6288–6297. Curran Associates, Inc., 2018. + +Ziyu Wang, Victor Bapst, Nicolas Heess, Volodymyr Mnih, Remi Munos, Koray Kavukcuoglu, and ´ Nando de Freitas. Sample efficient actor-critic with experience replay. CoRR, abs/1611.01224, 2016. URL http://arxiv.org/abs/1611.01224. + +Ronald J. Williams. Simple statistical gradient-following algorithms for connectionist reinforcement learning. Mach. Learn., 8(3-4):229–256, May 1992. ISSN 0885-6125. doi: 10.1007/BF00992696. URL https://doi.org/10.1007/BF00992696. \ No newline at end of file diff --git a/parse/train/ToWi1RjuEr8/ToWi1RjuEr8_content_list.json b/parse/train/ToWi1RjuEr8/ToWi1RjuEr8_content_list.json new file mode 100644 index 0000000000000000000000000000000000000000..90119f58c3b6e377ab34bfa6b47a2dc7abf3a771 --- /dev/null +++ b/parse/train/ToWi1RjuEr8/ToWi1RjuEr8_content_list.json @@ -0,0 +1,1405 @@ +[ + { + "type": "text", + "text": "ADVANTAGE-WEIGHTED REGRESSION: SIMPLE ANDSCALABLE OFF-POLICY REINFORCEMENT LEARNING", + "text_level": 1, + "bbox": [ + 176, + 98, + 821, + 146 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Anonymous authors Paper under double-blind review ", + "bbox": [ + 183, + 171, + 398, + 198 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "ABSTRACT ", + "text_level": 1, + "bbox": [ + 454, + 234, + 544, + 251 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "In this work, we aim to develop a simple and scalable reinforcement learning algorithm that uses standard supervised learning methods as subroutines, while also being able to leverage off-policy data. Our proposed approach, which we refer to as advantage-weighted regression (AWR), consists of two standard supervised learning steps: one to regress onto target values for a value function, and another to regress onto weighted target actions for the policy. The method is simple and general, can accommodate continuous and discrete actions, and can be implemented in just a few lines of code on top of standard supervised learning methods. We provide a theoretical motivation for AWR and analyze its properties when incorporating off-policy data from experience replay. We evaluate AWR on a suite of standard OpenAI Gym benchmark tasks, and show that it achieves competitive performance compared to a number of well-established state-of-the-art RL algorithms. AWR is also able to acquire more effective policies than most off-policy algorithms when learning from purely static datasets with no additional environmental interactions. Furthermore, we demonstrate our algorithm on challenging continuous control tasks with highly complex simulated characters. (Video1) ", + "bbox": [ + 233, + 266, + 766, + 488 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1 INTRODUCTION ", + "text_level": 1, + "bbox": [ + 176, + 513, + 336, + 530 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Model-free reinforcement learning can be a general and effective methodology for training agents to acquire sophisticated behaviors with minimal assumptions on the underlying task. However, RL algorithms can be substantially more complex to implement and tune than standard supervised learning methods. Arguably the simplest reinforcement learning methods are policy gradient algorithms (Sutton et al., 2000), which directly differentiate the expected return and perform gradient ascent. Unfortunately, these methods can be notoriously unstable and are typically on-policy, often requiring a substantial number of samples to learn effective behaviors. Our goal is to develop an RL algorithm that is simple, easy to implement, and can readily incorporate off-policy data. ", + "bbox": [ + 174, + 539, + 825, + 650 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "In this work, we propose advantage-weighted regression (AWR), a simple off-policy algorithm for model-free RL. Each iteration of the AWR algorithm simply consists of two supervised regression steps: one for training a value function baseline via regression onto cumulative rewards, and another for training the policy via weighted regression. The complete algorithm is shown in Algorithm 1. AWR can accommodate continuous and discrete actions, and can be implemented in just a few lines of code on top of standard supervised learning methods. Despite its simplicity, we find that AWR achieves competitive results when compared to commonly used on-policy and off-policy RL algorithms, and can effectively incorporate fully off-policy data, which has been a challenge for other RL algorithms. Our derivation presents an interpretation of AWR as a constrained policy optimization procedure, and provides a theoretical analysis of the use of off-policy data with experience replay. ", + "bbox": [ + 174, + 656, + 825, + 796 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "We first revisit the original formulation of reward-weighted regression (RWR) (Peters & Schaal, 2007), an on-policy RL method that utilizes supervised learning to perform policy updates, and then propose a number of new design decisions that significantly improve performance on a suite of standard control benchmark tasks. We then provide a theoretical analysis of AWR, including the capability to incorporate off-policy data with experience replay. Although the design of AWR involves only a few simple design decisions, we show experimentally that these additions provide for a large improvement over previous methods for regression-based policy search, such as RWR, while also being substantially simpler than more modern methods, such as MPO (Abdolmaleki et al., 2018b). We show that AWR achieves competitive performance when compared to several well-established state-of-the-art on-policy and off-policy algorithms. ", + "bbox": [ + 174, + 803, + 825, + 900 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "", + "bbox": [ + 173, + 103, + 825, + 146 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2 PRELIMINARIES ", + "text_level": 1, + "bbox": [ + 174, + 159, + 339, + 174 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "In reinforcement learning, the objective is to learn a policy that maximizes an agent’s expected return. At each time step $t$ , the agent observes the state of the environment $\\mathbf { s } _ { t }$ , and samples an action from a policy $\\mathbf { a } _ { t } \\sim \\pi ( \\mathbf { a } _ { t } | \\mathbf { s } _ { t } )$ . The agent then applies that action, which results in a new state $\\mathbf { s } _ { t + 1 }$ and a scalar reward $r _ { t } = r ( \\mathbf { s } _ { t } , \\mathbf { a } _ { t } )$ . The goal is to learn a policy that maximizes the expected return $J ( \\pi )$ , ", + "bbox": [ + 174, + 183, + 825, + 239 + ], + "page_idx": 1 + }, + { + "type": "equation", + "img_path": "images/e0c503e036e5cfe84a153fe26cebd382e9154913230b839cb64507e89cd48539.jpg", + "text": "$$\nJ ( \\pi ) = \\mathbb { E } _ { \\tau \\sim p _ { \\pi } ( \\tau ) } \\left[ \\sum _ { t = 0 } ^ { \\infty } \\gamma ^ { t } r _ { t } \\right] = \\mathbb { E } _ { \\mathbf { s } \\sim d _ { \\pi } ( \\mathbf { s } ) , a \\sim \\pi ( \\mathbf { a } | \\mathbf { s } ) } \\left[ r ( \\mathbf { s } , \\mathbf { a } ) \\right] ,\n$$", + "text_format": "latex", + "bbox": [ + 300, + 244, + 696, + 289 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "where $p _ { \\pi } ( \\tau )$ represents the likelihood of a trajectory $\\tau = \\{ ( \\mathbf { s } _ { 0 } , \\mathbf { a } _ { 0 } , r _ { 0 } ) , ( \\mathbf { s } _ { 1 } , \\mathbf { a } _ { 1 } , r _ { 1 } ) , \\ldots \\}$ under a policy $\\pi$ , and $\\gamma \\in \\ [ 0 , 1 )$ is the discount factor. $\\begin{array} { r } { d _ { \\pi } ( \\mathbf { s } ) \\ = \\ \\sum _ { t = 0 } ^ { \\infty } \\gamma ^ { t } p ( \\mathbf { s } _ { t } \\ = \\ \\mathbf { s } | \\pi ) } \\end{array}$ represents the unnormalized discounted state distribution induced by the policy $\\pi$ (Sutton & Barto, 1998), and $p ( \\mathbf { s } _ { t } = \\mathbf { s } | \\boldsymbol { \\pi } )$ is the likelihood of the agent being in state s after following $\\pi$ for $t$ timesteps. ", + "bbox": [ + 173, + 292, + 825, + 351 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Our proposed AWR algorithm builds on ideas from reward-weighted regression (RWR) (Peters & Schaal, 2007), a policy search algorithm based on an expectation-maximization framework. At each iteration, the E-step constructs an estimate of the optimal policy according to $\\pi ^ { * } ( \\mathbf { a } | \\mathbf { s } ) \\ \\propto $ $\\pi _ { k } ( \\mathbf { a } | \\mathbf { s } ) \\mathrm { e x p } \\left( \\mathcal { R } _ { \\mathbf { s } , \\mathbf { a } } / \\beta \\right)$ , where $\\pi _ { k }$ represents the policy at the $k$ th iteration, $\\begin{array} { r } { \\mathcal { R } _ { { \\bf s } , { \\bf a } } \\stackrel { - } { = } \\sum _ { t = 0 } ^ { \\infty } \\dot { \\gamma } ^ { t } r _ { t } } \\end{array}$ is the return, and $\\beta > 0$ is a temperature parameter. Then the M-step projects $\\pi ^ { * }$ onto the space of parameterized policies by solving a supervised regression problem: ", + "bbox": [ + 173, + 356, + 825, + 440 + ], + "page_idx": 1 + }, + { + "type": "equation", + "img_path": "images/042de5afeb8fefbbe2b6066e7b46598060b80efd9d882f8fd1161f8a72c47db5.jpg", + "text": "$$\n\\pi _ { k + 1 } = \\arg \\operatorname* { m a x } _ { \\pi } \\mathbb { E } _ { \\mathbf { s } \\sim d _ { \\pi _ { k } } ( \\mathbf { s } ) } \\mathbb { E } _ { \\mathbf { a } \\sim \\pi _ { k } ( \\mathbf { a } | \\mathbf { s } ) } \\left[ \\log \\pi ( \\mathbf { a } | \\mathbf { s } ) \\exp \\left( \\frac { 1 } { \\beta } \\mathcal { R } _ { \\mathbf { s } , \\mathbf { a } } \\right) \\right] .\n$$", + "text_format": "latex", + "bbox": [ + 271, + 439, + 725, + 474 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "The RWR update can be interpreted as fitting a new policy $\\pi _ { k + 1 }$ to samples from the current policy $\\pi _ { k }$ , where the likelihood of each action is weighted by the exponentiated return for that action. ", + "bbox": [ + 173, + 478, + 823, + 507 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "3 ADVANTAGE-WEIGHTED REGRESSION", + "text_level": 1, + "bbox": [ + 174, + 520, + 527, + 536 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "In this work, we present advantage-weighted regression (AWR), a simple off-policy RL algorithm based on reward-weighted regression. We first provide an overview of the AWR algorithm, and then describe its theoretical motivation and analyze its properties. The AWR algorithm is summarized in Algorithm 1. Each iteration $k$ of AWR consists of the following simple steps. First, the current policy $\\pi _ { k } ( \\mathbf { a } | \\mathbf { s } )$ is used to sample a batch of trajectories $\\{ \\tau _ { i } \\}$ that are then stored in the replay buffer $\\mathcal { D }$ , which is structured as a first-in first-out (FIFO) queue (Mnih et al., 2015). Then, a value function $V _ { k } ^ { { \\mathcal { D } } } ( { \\mathbf s } )$ is fitted to all eturn estimates eplay buffer . Finally, the $\\mathcal { D }$ , which can be done with simple Monteme buffer is used to fit a new policy using $\\begin{array} { r } { \\mathcal { R } _ { { \\bf s } , { \\bf a } } ^ { D } = \\sum _ { t = 0 } ^ { T } \\gamma ^ { t } r _ { t } } \\end{array}$ advantage-weighted regreexponentiated advantage $\\begin{array} { r } { \\exp ( \\frac { 1 } { \\beta } A ^ { D } ( { \\bf s } , { \\bf a } ) ) } \\end{array}$ state-action pair in the buffer , with the advantage given by $A ^ { \\mathcal { D } } ( \\mathbf { { s } } , \\mathbf { { a } } ) = \\mathcal { R } _ { { \\mathbf { s } } , \\mathbf { { a } } } ^ { \\mathcal { D } } - \\mathbf { \\mathcal { V } } ^ { \\mathcal { D } } ( \\mathbf { { s } } )$ and $\\beta$ is a hyperparameter. In the following subsections, we first motivate AWR as a constrained policy search problem, and then extend our analysis to incorporate experience replay. ", + "bbox": [ + 173, + 544, + 826, + 717 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "3.1 DERIVATION ", + "text_level": 1, + "bbox": [ + 174, + 733, + 303, + 747 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "In this section, we derive the AWR algorithm as an approximate optimization of a constrained policy search problem. Our goal is to find a policy that maximizes the expected improvement $\\mathsf { \\bar { \\eta } } ( \\pi ) \\mathsf { \\bar { = } } J ( \\pi ) \\bar { - } J ( \\mu )$ over a sampling policy $\\mu ( \\mathbf { a } | \\mathbf { s } )$ . We first derive AWR for the setting where the sampling policy is a single Markovian policy. Then, in the next section, we extend our result to data from multiple policies, as in the case of experience replay. The expected improvement $\\eta ( \\pi )$ can be expressed in terms of the advantage ${ \\mathbf { } } A ^ { \\mu } ( \\mathbf { { \\bar { s } } } , \\mathbf { { a } } ) = { \\mathbf { } } { \\mathcal { R } } _ { { \\mathbf { s } } , \\mathbf { { a } } } ^ { \\mu } - { \\mathbf { \\bar { \\psi } } } V ^ { \\mu } ( \\mathbf { s } )$ with respect to $\\mu$ (Kakade & Langford, 2002; Schulman et al., 2015): ", + "bbox": [ + 173, + 751, + 825, + 851 + ], + "page_idx": 1 + }, + { + "type": "equation", + "img_path": "images/f7e35c33a05ef422d5a1e5f469105454feba29623b920f07f1e6b186e60beec8.jpg", + "text": "$$\n\\eta ( \\pi ) = \\mathbb { E } _ { \\mathbf { s } \\sim d _ { \\pi } ( \\mathbf { s } ) } \\mathbb { E } _ { \\mathbf { a } \\sim \\pi ( \\mathbf { a } | \\mathbf { s } ) } \\left[ \\mathcal { R } _ { \\mathbf { s } , \\mathbf { a } } ^ { \\mu } - V ^ { \\mu } ( \\mathbf { s } ) \\right] ,\n$$", + "text_format": "latex", + "bbox": [ + 351, + 856, + 647, + 875 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "where $\\mathcal { R } _ { \\mathbf { s } , \\mathbf { a } } ^ { \\mu }$ denotes the return obtained by performing action a in state s and following $\\mu$ for the following timesteps, and $\\begin{array} { r } { V ^ { \\mu } ( \\mathbf { s } ) = \\int _ { a . } \\mu ( \\mathbf { a } | \\mathbf { s } ) \\mathcal { R } _ { \\mathbf { s } } ^ { \\mathbf { a } } } \\end{array}$ $d \\mathbf { a }$ corresponds to the value function of $\\mu$ . This objective differs from the ones used in the derivations of related algorithms, such as RWR and ", + "bbox": [ + 174, + 878, + 825, + 924 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Algorithm 1 Advantage-Weighted Regression ", + "text_level": 1, + "bbox": [ + 174, + 103, + 478, + 118 + ], + "page_idx": 2 + }, + { + "type": "table", + "img_path": "images/bdc39497c9a0a297478fd2d1ef6a60dcb864570d02884892fb3dad5c5f7b1e90.jpg", + "table_caption": [], + "table_footnote": [], + "table_body": "
1:π1 ← random policy 2:D←0
3: for iteration k =1,..., kmax do
4:add trajectories {Ti} sampled via πk to D
5:V ← arg minv Es,a~D [|IRa - V(s)ll2]
7: end for6:πk+1 ←arg maxEs,a~D[ogπ(a|s)exp((a-V(s))]
", + "bbox": [ + 178, + 122, + 658, + 241 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "REPS (Peters & Schaal, 2007; Peters et al., 2010; Abdolmaleki et al., 2018b), which maximize the expected return $J ( \\pi )$ instead of the expected improvement. The expected improvement directly gives rise to an objective that involves the advantage. We will see later that this yields a policy update that differ in a subtle but important way from standard RWR. As we show in our experiments, this difference results in a large empirical improvement. ", + "bbox": [ + 173, + 263, + 825, + 334 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "The objective in Equation 3 can be difficult to optimize due to the dependency between $d _ { \\pi } ( \\mathbf { s } )$ and $\\pi$ , as well as the need to collect samples from $\\pi$ . Following Schulman et al. (2015), we can instead optimize an approximation $\\hat { \\eta } ( \\pi )$ of $\\eta ( \\pi )$ using the state distribution of $\\mu$ : ", + "bbox": [ + 174, + 340, + 823, + 383 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/08b8271f01f80af82f816af998a184b66c5b6a1945b8c75aa1e0a258e9e94ca7.jpg", + "text": "$$\n\\hat { \\eta } ( \\pi ) = \\mathbb { E } _ { \\mathbf { s } \\sim d _ { \\mu } ( \\mathbf { s } ) } \\mathbb { E } _ { \\mathbf { a } \\sim \\pi ( \\mathbf { a } | \\mathbf { s } ) } \\left[ \\mathcal { R } _ { \\mathbf { s } , \\mathbf { a } } ^ { \\mu } - V ^ { \\mu } ( \\mathbf { s } ) \\right] .\n$$", + "text_format": "latex", + "bbox": [ + 349, + 385, + 647, + 405 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Here, $\\hat { \\eta } ( \\pi )$ matches $\\eta ( \\pi )$ to first order (Kakade & Langford, 2002), and provides a good estimate of $\\eta$ if $\\pi$ and $\\mu$ are close in terms of the KL-divergence (Schulman et al., 2015). Using this objective, we can formulate the following constrained policy search problem: ", + "bbox": [ + 176, + 406, + 825, + 448 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/04de041cf143a8481a82e0313d2139f7c53dc50f98085490f1a1079208de9aba.jpg", + "text": "$$\n\\begin{array} { r l } { \\underset { \\pi } { \\arg \\operatorname* { m a x } } } & { \\displaystyle \\int _ { \\mathbf { s } } d _ { \\mu } ( \\mathbf { s } ) \\int _ { \\mathbf { a } } \\pi ( \\mathbf { a } | \\mathbf { s } ) \\left[ \\mathcal { R } _ { \\mathbf { s } , \\mathbf { a } } ^ { \\mu } - V ^ { \\mu } ( \\mathbf { s } ) \\right] d \\mathbf { a } d \\mathbf { s } } \\\\ { \\mathrm { s . t . } } & { \\displaystyle \\int _ { \\mathbf { s } } d _ { \\mu } ( \\mathbf { s } ) \\mathrm { D } _ { \\mathrm { K L } } \\left( \\pi ( \\cdot | \\mathbf { s } ) | | \\mu ( \\cdot | \\mathbf { s } ) \\right) d \\mathbf { s } \\leq \\epsilon . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 320, + 449, + 678, + 516 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "The constraint in Equation 6 ensures that the new policy $\\pi$ is close to the data distribution of $\\mu$ , and therefore the surrogate objective $\\hat { \\eta } ( \\pi )$ remains a reasonable approximation to $\\eta ( \\pi )$ . We refer the reader to Schulman et al. (2015) for a detailed derivation and an error bound. ", + "bbox": [ + 174, + 516, + 825, + 559 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "We can derive AWR as an approximate solution to this constrained optimization. This derivation follows a similar procedure as Peters et al. (2010), and begins by forming the Lagrangian of the optimization problem presented above, ", + "bbox": [ + 176, + 564, + 821, + 607 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/d4a6614099fbc513a14d587a93217ba47a4ee38e9d7d621a4839a5420814bd5d.jpg", + "text": "$$\n\\mathcal { L } ( \\pi , \\beta ) = \\int _ { \\mathbf { s } } d _ { \\mu } ( \\mathbf { s } ) \\int _ { \\mathbf { a } } \\pi ( \\mathbf { a } | \\mathbf { s } ) \\left[ \\mathcal { R } _ { \\mathbf { s } , \\mathbf { a } } ^ { \\mu } - V ^ { \\mu } ( \\mathbf { s } ) \\right] d \\mathbf { a } d \\mathbf { s } + \\beta \\left( \\epsilon - \\int _ { \\mathbf { s } } d _ { \\mu } ( \\mathbf { s } ) \\mathrm { D } _ { \\mathrm { K L } } \\left( \\pi ( \\cdot | \\mathbf { s } ) | | \\mu ( \\cdot | \\mathbf { s } ) \\right) d \\mathbf { s } \\right) ,\n$$", + "text_format": "latex", + "bbox": [ + 171, + 608, + 816, + 643 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "where $\\beta$ is a Lagrange multiplier. Differentiating ${ \\mathcal { L } } ( \\pi , \\beta )$ with respect to $\\pi ( \\mathbf { a } | \\mathbf { s } )$ and solving for the optimal policy $\\pi ^ { * }$ results in the following expression for the optimal policy ", + "bbox": [ + 173, + 654, + 821, + 683 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/905045d9e99c6bdb0d3819a411e6251f58bb444bfc3a8221af9f4e8869d09b28.jpg", + "text": "$$\n\\pi ^ { * } ( \\mathbf { a } | \\mathbf { s } ) = \\frac { 1 } { Z ( \\mathbf { s } ) } \\mu ( \\mathbf { a } | \\mathbf { s } ) \\exp \\left( \\frac { 1 } { \\beta } \\left( \\mathcal { R } _ { \\mathbf { s } , \\mathbf { a } } ^ { \\mu } - V ^ { \\mu } ( \\mathbf { s } ) \\right) \\right) ,\n$$", + "text_format": "latex", + "bbox": [ + 325, + 683, + 673, + 718 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "with $Z ( \\mathbf { s } )$ being the partition function. A detailed derivation is available in Appendix A. If $\\pi$ is represented by a function approximator (e.g., a neural network), a new policy can be obtained by projecting $\\pi ^ { * }$ onto the manifold of parameterized policies, ", + "bbox": [ + 174, + 719, + 825, + 761 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/36d24f7d4abf18fae96c1a5bff8fd636bd7cf9e8d34a1ea72617d74b9a9c14bf.jpg", + "text": "$$\n\\begin{array} { r l } { \\underset { \\pi } { \\mathrm { a r g \\ m i n } } \\ : \\ : \\ : \\ : } & { \\mathbb { E } _ { \\mathbf { s } \\sim \\mathcal { D } } \\left[ \\mathrm { D } _ { \\mathbf { K L } } \\left( \\pi ^ { * } ( \\cdot | \\mathbf { s } ) | | \\pi ( \\cdot | \\mathbf { s } ) \\right) \\right] } \\\\ { = \\underset { \\pi } { \\mathrm { a r g \\ m a x } } \\ : \\ : \\ : \\ : } & { \\mathbb { E } _ { \\mathbf { s } \\sim d _ { \\mu } ( \\mathbf { s } ) } \\mathbb { E } _ { \\mathbf { a } \\sim \\mu ( \\mathbf { a } | \\mathbf { s } ) } \\left[ \\log \\pi ( \\mathbf { a } | \\mathbf { s } ) \\mathrm { e x p } \\left( \\frac { 1 } { \\beta } \\left( \\mathcal { R } _ { \\mathbf { s } , \\mathbf { a } } ^ { \\mu } - V ^ { \\mu } ( \\mathbf { s } ) \\right) \\right) \\right] . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 230, + 762, + 767, + 824 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "While this derivation for AWR largely follows the derivations used in prior work (Peters et al., 2010; Abdolmaleki et al., 2018b), our expected improvement objective introduces a baseline $V ^ { \\mu } ( \\mathbf { s } )$ to the policy update, which as we show in our experiments, is a crucial component for an effective algorithm. A similar advantage-weighting scheme has been previously used for fitted Q-iteration (Neumann & Peters, 2009), where the policy is given by $\\begin{array} { r } { \\pi ( \\mathbf { a } | \\mathbf { s } ) ^ { \\cdot } = \\frac { 1 } { Z ( \\mathbf { s } ) } \\mathrm { e x p } \\left( \\left( \\mathcal { R } _ { \\mathbf { s } , \\mathbf { a } } ^ { \\mu } - V ^ { \\mu } ( \\grave { \\mathbf { s } } ) \\right) / \\beta \\right) } \\end{array}$ . In this definition, the likelihood of an action does not depend on the sampling distribution, and therefore does not enforce a trust region with respect to $\\mu$ . ", + "bbox": [ + 173, + 824, + 825, + 924 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "3.2 EXPERIENCE REPLAY AND OFF-POLICY LEARNING ", + "text_level": 1, + "bbox": [ + 173, + 103, + 570, + 117 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "A crucial design decision of AWR is the choice of sampling policy $\\mu ( \\mathbf { a } | \\mathbf { s } )$ . Standard implementations of RWR are typically on-policy, where the sampling policy is selected to be the current policy $\\mu ( \\mathbf { a } | \\mathbf { s } ) = \\pi _ { k } ( \\mathbf { a } | \\mathbf { s } )$ at iteration $k$ . This can be sample inefficient, as data collected at each iteration are discarded after a single update iteration. Importance sampling can be incorporated into RWR to reuse data from previous iterations, but at the cost of larger variance (Kober & Peters, 2009). Instead, we can improve sample efficiency of AWR by incorporating experience replay and explicitly accounting for training data from a mixture of multiple past policies. As described in Algorithm 1, at each iteration, AWR collects a batch of data using the latest policy $\\pi _ { k }$ , and then stores this data in a replay buffer $\\mathcal { D }$ , which also contains data collected from previous policies $\\{ \\pi _ { 1 } , \\cdots , \\pi _ { k } \\}$ . The value function and policy are then updated using samples drawn from $\\mathcal { D }$ . This replay strategy is analogous to modeling the sampling policy as a mixture of policies from previous iterations $\\begin{array} { r } { \\mu _ { k } ( \\tau ) = \\sum _ { i = 1 } ^ { k } w _ { i } \\pi _ { i } ( \\tau ) } \\end{array}$ , where $\\pi _ { i } ( \\tau ) = p ( \\tau | \\pi _ { i } )$ represents the likelihood of a trajectory $\\tau$ under a policy $\\pi _ { i }$ from the ith iteration, and the weight $w _ { i }$ specify the probability of selecting $\\pi _ { i }$ . ", + "bbox": [ + 173, + 128, + 825, + 314 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "We now extend the derivation from the previous section to the off-policy setting with experience replay, and show that Algorithm 1 indeed optimizes the expected improvement over a sampling policy modeled by the replay buffer. Given a replay buffer consisting of trajectories from past policies, the joint state-action distribution of $\\mu$ is given by $\\begin{array} { r } { \\mu ( \\mathbf { s } , \\mathbf { a } ) = \\sum _ { i = 1 } ^ { k } w _ { i } d _ { \\pi _ { i } } ( \\mathbf { s } ) \\pi _ { i } ( \\mathbf { a } | \\mathbf { s } ) } \\end{array}$ , and similarly for the marginal state distribution $\\begin{array} { r } { d _ { \\mu } ( \\mathbf { s } ) = \\sum _ { i = 1 } ^ { k } w _ { i } d _ { \\pi _ { i } } ( \\mathbf { s } ) } \\end{array}$ . The expected improvement can now be expressed with respect to the set of sampling policies in the replay buffer, ", + "bbox": [ + 173, + 319, + 826, + 410 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/dd7414402fec6108d138bf126c5e6d28947900f317c1d191d79d4af4e8d0705c.jpg", + "text": "$$\n\\eta ( \\pi ) = J ( \\pi ) - \\sum _ { i } w _ { i } J ( \\pi _ { i } ) = \\mathbb { E } _ { \\mathbf { s } \\sim d _ { \\pi } ( \\mathbf { s } ) } \\mathbb { E } _ { \\mathbf { a } \\sim \\pi ( \\mathbf { a } | \\mathbf { s } ) } \\left[ \\sum _ { i } w _ { i } A ^ { \\pi _ { i } } ( \\mathbf { s } , \\mathbf { a } ) \\right] ,\n$$", + "text_format": "latex", + "bbox": [ + 263, + 407, + 733, + 449 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "where $A ^ { \\pi _ { i } } ( \\mathbf { s } , \\mathbf { a } ) = \\mathcal { R } _ { \\mathbf { s } , \\mathbf { a } } ^ { \\pi _ { i } } - V ^ { \\pi _ { i } } ( \\mathbf { s } )$ is the advantage with respect to each sampling policy. In Appendix $\\mathbf { B }$ , we show that the update procedure in Algorithm 1 optimizes the following objective: ", + "bbox": [ + 174, + 454, + 823, + 483 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/ca4b32e487d3f21916fa49a578b2cf61399ec2dbb60472981794e202bd5f722a.jpg", + "text": "$$\n\\begin{array} { r l } & { \\underset { \\pi } { \\arg \\operatorname* { m a x } } \\sum _ { i = 1 } ^ { k } w _ { i } \\left( \\mathbb { E } _ { \\mathbf { s } \\sim d _ { \\pi _ { i } } ( \\mathbf { s } ) } \\mathbb { E } _ { \\mathbf { a } \\sim \\pi ( \\mathbf { a } | \\mathbf { s } ) } \\left[ A ^ { \\pi _ { i } } ( \\mathbf { s } , \\mathbf { a } ) \\right] \\right) } \\\\ & { \\quad \\mathbf { s } . \\mathbf { t } . \\quad \\mathbb { E } _ { \\mathbf { s } \\sim d _ { \\mu } ( \\mathbf { s } ) } \\left[ \\operatorname { D } _ { \\mathrm { K L } } \\left( \\pi ( \\cdot | \\mathbf { s } ) | | \\mu ( \\cdot | \\mathbf { s } ) \\right) \\right] \\leq \\epsilon , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 328, + 483, + 666, + 547 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "where µ(a|s) = µ(s,a) = Pi widπi (s)πi(a|s) represents the conditional action distribution defined by the replay buffer. This objective can be solved via the Lagrangian to yield the following update: ", + "bbox": [ + 174, + 551, + 825, + 589 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/610d83fb4461d7d6696dc6e5b454ef2e832925af2797f31aa9ab35c5feebe95a.jpg", + "text": "$$\n\\arg \\operatorname* { m a x } _ { \\pi } \\sum _ { i = 1 } ^ { k } w _ { i } \\mathbb { E } _ { \\mathbf { s } \\sim d _ { \\pi _ { i } } ( \\mathbf { s } ) } \\mathbb { E } _ { \\mathbf { a } \\sim \\pi _ { i } ( \\mathbf { a } | \\mathbf { s } ) } \\left[ \\log \\pi ( \\mathbf { a } | \\mathbf { s } ) \\mathrm { e x p } \\left( \\frac { 1 } { \\beta } \\left( \\mathcal { R } _ { \\mathbf { s } , \\mathbf { a } } ^ { \\pi _ { i } } - \\frac { \\sum _ { j } w _ { j } d _ { \\pi _ { j } } ( \\mathbf { s } ) V ^ { \\pi _ { j } } ( \\mathbf { s } ) } { \\sum _ { j } w _ { j } d _ { \\pi _ { j } } ( \\mathbf { s } ) } \\right) \\right) \\right] ,\n$$", + "text_format": "latex", + "bbox": [ + 181, + 593, + 815, + 637 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "where the expectations can be approximated by simply sampling from $\\mathcal { D }$ following Line 6 of Algorithm 1. A detailed derivation is available in Appendix B. Note, the baseline in the exponent now consists of an average of the value functions of the different policies. This mean value function $\\bar { V } ( \\mathbf { s } )$ can be fitted by simply sampling from the replay buffer following Line 5 of Algorithm 1, ", + "bbox": [ + 174, + 655, + 825, + 712 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/4ed4c423d2a71d70f13729e0b9e92fc8318e582740877940e770278d02d1528c.jpg", + "text": "$$\n\\bar { V } = \\underset { V } { \\arg \\operatorname* { m i n } } \\sum _ { i } w _ { i } \\mathbb { E } _ { { \\mathbf s } , \\sim d _ { \\pi _ { i } } ( { \\mathbf s } ) , { \\mathbf a } \\sim \\pi _ { i } ( { \\mathbf a } | { \\mathbf s } ) } \\left[ | | \\mathcal { R } _ { { \\mathbf s } , { \\mathbf a } } ^ { \\pi _ { i } } - V ( { \\mathbf s } ) | | ^ { 2 } \\right] .\n$$", + "text_format": "latex", + "bbox": [ + 299, + 717, + 699, + 750 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "The optimal solution $\\begin{array} { r } { \\bar { V } ( \\mathbf { s } ) = \\frac { \\sum _ { i } w _ { i } d _ { \\pi _ { i } } ( \\mathbf { s } ) V ^ { \\pi _ { i } } ( \\mathbf { s } ) } { \\sum _ { j } w _ { j } d _ { \\pi _ { j } } ( \\mathbf { s } ) } } \\end{array}$ is exactly the baseline in Equation 14. ", + "bbox": [ + 174, + 753, + 736, + 780 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "3.3 IMPLEMENTATION DETAILS ", + "text_level": 1, + "bbox": [ + 176, + 787, + 406, + 803 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Finally, we discuss several important design decisions for a practical implementation of AWR. Monte Carlo estimates can be used to approximate the expected return $\\mathcal { R } _ { \\mathbf { s } , \\mathbf { a } } ^ { \\mathcal { D } }$ , but this can result in a highvariance estimate. Instead, we approximate $\\mathcal { R } _ { \\mathbf { s } , \\mathbf { a } } ^ { \\mathcal { D } }$ using $\\mathrm { T D } ( \\lambda )$ to obtain a lower-variance estimate (Sutton & Barto, 1998). $\\mathrm { T D } ( \\lambda )$ is applied by bootstrapping with the value function $V _ { k - 1 } ^ { \\mathcal { D } }$ (s) from the previous iteration. To set the value of the Lagrange multiplier $\\beta$ , we found that a simple adaptive heuristic of setting $\\beta$ to the standard deviation of all advantage values $\\sigma _ { A }$ in the replay buffer works well in practice. This is akin to the advantage normalization technique commonly used in implementations of algorithms such as PPO (Dhariwal et al., 2017). Details are available in Appendix C. ", + "bbox": [ + 173, + 806, + 825, + 924 + ], + "page_idx": 3 + }, + { + "type": "image", + "img_path": "images/7c0e471687ed55416395d8d259768717763e8d9157d805db1e6137351b93ea0e.jpg", + "image_caption": [ + "Figure 1: Snapshots of AWR policies trained on OpenAI Gym and motion imitation tasks. Our simple algorithm learns effective policies for a diverse suite of control tasks. " + ], + "image_footnote": [], + "bbox": [ + 178, + 107, + 820, + 260 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "The weights $\\begin{array} { r } { \\omega _ { \\mathbf { s } , \\mathbf { a } } ^ { D } = \\exp \\Big ( \\frac { 1 } { \\beta } \\left( \\mathcal { R } _ { \\mathbf { s } , \\mathbf { a } } ^ { D } - V ^ { \\mathcal { D } } ( \\mathbf { s } ) \\right) \\Big ) } \\end{array}$ used to update the policy can occasionally assume excessively large values, which causes gradients to explode. Therefore, we apply weight clipping $\\hat { \\omega } _ { \\mathbf { s } , \\mathbf { a } } ^ { \\mathcal { D } } = \\operatorname* { m i n } \\left( \\omega _ { \\mathbf { s } , \\mathbf { a } } ^ { \\mathbf { \\breve { D } } } , \\omega _ { \\operatorname* { m a x } } \\right)$ with a threshold $\\omega _ { \\mathrm { m a x } }$ to prevent exploding weights. ", + "bbox": [ + 174, + 303, + 825, + 354 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "4 RELATED WORK ", + "text_level": 1, + "bbox": [ + 176, + 369, + 344, + 386 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Existing RL methods can be broadly categorized into on-policy and off-policy algorithms (Sutton & Barto, 1998). On-policy algorithms generally update the policy using data collected from the same policy. A popular class of on-policy algorithms is policy gradient methods (Williams, 1992; Sutton et al., 2000), which can be effective for a diverse array of complex tasks (Heess et al., 2017; Pathak et al., 2017; Peng et al., 2018; Rajeswaran et al., 2018). However, on-policy algorithms are typically data inefficient. Off-policy algorithms improve sample efficiency by enabling training using data from other sources, such as data from different agents or data from previous iterations of the algorithm. Importance sampling is a simple strategy for off-policy learning (Sutton & Barto, 1998; Meuleau et al., 2000; Hachiya et al., 2009), but can introduce optimization instabilities due to the large variance of the importance sampling estimator. Dynamic programming methods based on Q-function learning can also leverage off-policy data (Precup et al., 2001; Mnih et al., 2015; Lillicrap et al., 2016; Gu et al., 2016; Haarnoja et al., 2018b). But these methods can be notoriously unstable, and in practice, require a variety of stabilization techniques (Hasselt et al., 2016; Wang et al., 2016; Munos et al., 2016; Hessel et al., 2017; Fujimoto et al., 2018; Fu et al., 2019). Furthermore, it can be difficult to apply these methods to fully off-policy data, where an agent is unable to collect additional environmental interactions (Fujimoto et al., 2019; Kumar et al., 2019). ", + "bbox": [ + 174, + 395, + 825, + 618 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Policy search can also be formulated under an expectation-maximization framework (Peters et al., 2010; Neumann, 2011; Abdolmaleki et al., 2018b), an early example of which is reward-weighted regression (RWR) (Peters & Schaal, 2007). RWR presents a simple on-policy RL algorithm that casts policy search as a supervised regression problem. A similar algorithm, relative entropy policy search (REPS) (Peters et al., 2010), can also be derived from the dual formulation of a constrained policy search problem. RWR has a number appealing properties: it has a very simple update rule, and since each iteration corresponds to supervised learning, it can be more stable and easier to implement than many of the previously mentioned RL methods. Despite these advantages, RWR has not been shown to be an effective when combined with neural networks (Schulman et al., 2015; Duan et al., 2016). In this work, we propose a number of modifications to the formulation of RWR to produce an effective off-policy deep RL algorithm, while still retaining much of the simplicity of RWR. ", + "bbox": [ + 174, + 625, + 825, + 777 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "The optimization problem being solved in AWR is similar to REPS (Peters et al., 2010), but REPS optimizes the expected return instead of the expected improvement. The weights in REPS also contains a Bellman error term that resembles advantages, but are computed using a linear value function derived from a feature matching constraint. Learning the REPS value function involves minimization of a dual function, which is a complex function of the Bellman error, while the value function in AWR can be learned with simple supervised regression. More recently, Abdolmaleki et al. (2018b) proposed MPO, a deep RL variant of REPS, which applies a partial EM algorithm for policy optimization. The method first fits a Q-function of the current policy via bootstrapping, and then performs a policy improvement step with respect to this Q-function. MPO uses off-policy data for training a Q-function and employs Retrace(λ) for off-policy correction (Munos et al., 2016). In ", + "bbox": [ + 174, + 784, + 825, + 924 + ], + "page_idx": 4 + }, + { + "type": "image", + "img_path": "images/f4d7a3e7fde0cb6b789cbd4e6862d6eb15cff251382b73b9b8ec553ea60a54eb.jpg", + "image_caption": [], + "image_footnote": [], + "bbox": [ + 173, + 103, + 825, + 214 + ], + "page_idx": 5 + }, + { + "type": "table", + "img_path": "images/5dd21a85e5c4fe859e1c0e8bf61ebae24e92f3286659d0e77425a525cdcb6d1b.jpg", + "table_caption": [ + "Figure 2: Learning curves of the various algorithms when applied to OpenAI Gym tasks. Results are averaged across 10 random seeds. AWR is generally competitive with the best current methods. " + ], + "table_footnote": [], + "table_body": "
TaskTRPOPPODDPGTD3SACLAWERRWRAWR (Ours)
Ant-v22901 ± 854884± 124972 ± 15505997 ± 7657500±3532240± 4971183± 1765372± 163
HalfCheetah-v23302 ± 4287617 ± 18510563 ± 38212324 ± 154916223 ± 9644596± 23312075±3709192 ± 157
Hopper-v21880±3372514± 726855±2822794± 152757±6581830± 553605± 1143498±167
Humanoid-v2552±94668 ± 11534382 ± 4234738±936296±332108±386509±186159 ± 274
LunarLander-v2104± 94121 ± 49185±23229±2
Walker2d-v22765±1685036± 934401± 4704779± 8036210±5112502±388406±645813± 483
", + "bbox": [ + 176, + 255, + 821, + 324 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Table 1: Final returns for different algorithms on the OpenAI Gym tasks, with $\\pm$ corresponding to one standard deviation of the average return across 10 random seeds. In terms of final performance, AWR is generally competitive with prior methods. ", + "bbox": [ + 174, + 332, + 825, + 373 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "contrast, AWR is simpler, as it can simply fit a value function to the observed returns in a replay buffer, and performs weighted supervised regression on the actions to fit the policy. Oh et al. (2018) proposed self-imitation learning (SIL), which augments policy gradient algorithms with an auxiliary behaviour cloning loss to reuse samples from past experiences. Unlike SIL, AWR is a standalone algorithm, and does not need to be combined with an auxiliary RL algorithm. Neumann & Peters (2009) proposed LAWER, a kernel-based fitted Q-iteration algorithm where the Bellman error is weighted by the normalized advantage of each state-action pair. This was then followed by a soft-policy improvement step. Similar to Neumann & Peters (2009), AWR also uses exponentiated advantages, but LAWER’s definition of the policy is different from the one in AWR and does not enforce a trust region constraint. Furthermore, AWR does not perform fitted Q-iteration, and instead utilizes off-policy data in a simple constrained policy search procedure. Wang et al. (2018) applied a similar advantage-weighting scheme for imitation learning, but the method was not demonstrated for the RL setting. In this work, we propose several design decisions that are vital for an effective RL algorithm. We also provide a theoretical analysis of AWR when combined with experience replay, and show that the algorithm optimizes the expected improvement with respect to a mixture of policies modeled by a replay buffer. ", + "bbox": [ + 173, + 383, + 825, + 592 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "5 EXPERIMENTS ", + "text_level": 1, + "bbox": [ + 176, + 604, + 326, + 619 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Our experiments aim to comparatively evaluate the performance of AWR with commonly used on-policy and off-policy deep RL algorithms. We evaluate our method on the OpenAI Gym benchmarks (Brockman et al., 2016), consisting of discrete and continuous control tasks. We also evaluate our method on complex motion imitation tasks with high-dimensional simulated characters. We then demonstrate the effectiveness of AWR on fully off-policy learning, by training on static datasets of demonstrations from demo policies. Behaviors learned by the policies are best seen in the supplementary video1. Code for our implementation of AWR is available at sites.google.com/view/awr-supp/. Detailed hyperparameter settings are provided in Appendix C. ", + "bbox": [ + 174, + 628, + 826, + 739 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "5.1 BENCHMARKS ", + "text_level": 1, + "bbox": [ + 174, + 757, + 315, + 771 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "We compare AWR to a number of state-of-the-art RL algorithms, including on-policy algorithms, such as TRPO (Schulman et al., 2015) and PPO (Schulman et al., 2017), off-policy algorithms, such as DDPG (Lillicrap et al., 2016), TD3 (Fujimoto et al., 2018), and SAC (Haarnoja et al., 2018a), as well as RWR (Peters & Schaal, 2007) and LAWER (Neumann & Peters, 2009).2 TRPO, PPO, and DDPG use the implementations from OpenAI baselines (Dhariwal et al., 2017). TD3 and SAC use the implementations from Fujimoto et al. (2018) and Haarnoja et al. (2018a). RWR and LAWER are implemented following the descriptions in Peters & Schaal (2007) and Neumann & Peters (2009), but neural networks are used instead of kernel-based approximators. ", + "bbox": [ + 174, + 776, + 826, + 887 + ], + "page_idx": 5 + }, + { + "type": "image", + "img_path": "images/939e4b97196a5ea1baaf38ced3bafa63057a2596192d893c1385f6fc296d2543.jpg", + "image_caption": [ + "Figure 3: Left: Learning curves comparing AWR with various components removed. Each component contributes to performance improvements. Right: Learning curves comparing AWR with different capacity replay buffers. AWR remains stable with large buffers containing primarily off-policy data from past iterations. " + ], + "image_footnote": [], + "bbox": [ + 173, + 103, + 821, + 200 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Snapshots of the AWR policies are shown in Figure 1. Figure 2 shows learning curves comparing the different algorithms, and Table 1 summarizes the average returns of the final policies across 10 training runs initialized with different random seeds. Due to the slow wall-clock times of TD3 and SAC, some training runs did not have sufficient time to collect as many samples as other algorithms. Overall, AWR shows competitive performance with the state-of-the-art deep RL algorithms. It is competitive with on-policy methods, such as TRPO and PPO, in both sample efficiency and asymptotic performance. While it is not yet as sample efficient as current state-of-the-art off-policy methods, such SAC and TD3, it is able to achieve a comparable asymptotic performance on most tasks. RWR tends to perform poorly on these tasks, which suggests that, the particular modifications from AWR are critical. AWR also significantly outperforms LAWER across the various tasks. Though both methods use a similar advantaged-weighting scheme, our design decisions for AWR produce a simpler and more effective algorithm. ", + "bbox": [ + 174, + 273, + 825, + 439 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "5.2 ABLATION EXPERIMENTS ", + "text_level": 1, + "bbox": [ + 174, + 455, + 393, + 469 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "To determine the effects of various design decisions, we evaluate the performance of AWR when key components have been removed. The experiments include: an on-policy version of AWR (On-Policy), where updates use only data from the latest policy, a version of AWR without the baseline $V ( \\mathbf { s } )$ (No Baseline), and a version that uses Monte Carlo return estimates instead of $\\mathrm { T D } ( \\lambda )$ (No $\\mathrm { T D } ( \\lambda ) ,$ ). The effects of these components are illustrated in Figure 3. Overall, these design decisions appear to be vital for an effective algorithm, with the most crucial components being the use of experience replay and a baseline. Updates using only on-policy data can lead to instabilities and noticeable degradation in performance, which may be due to overfitting on a smaller dataset. Removing the baseline also noticeably hampers performance. Using simple Monte Carlo return estimates instead of $\\mathrm { T D } ( \\lambda )$ seems to be a viable alternative, and the algorithm still achieves competitive performance on some tasks. When combined, these different components yield substantial performance gains over standard RWR. ", + "bbox": [ + 174, + 477, + 825, + 630 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "To further evaluate the effect of experience replay, we compare policies trained using replay buffer with different capacities. Figure 3 illustrates the learning curves for buffers of size 5k, 20k, 50k, 100k, and $5 0 0 \\mathrm { k }$ , with 50k being the default buffer size in our experiments. The size of the replay buffer appears to have a significant impact on overall performance. Smaller buffer sizes can result in instabilities during training, which again may be an effect of overfitting to a smaller dataset. As the buffer size increases, AWR remains stable even when the dataset is dominated by off-policy data from previous iterations. In fact, AWR appears more stable with larger replay buffers, but progress can also become slower. Since the sampling policy $\\mu ( \\mathbf { a } | \\mathbf { s } )$ is modeled by the replay buffer, a larger buffer can limit the rate at which $\\mu$ changes by maintaining older data for more iterations. ", + "bbox": [ + 174, + 636, + 825, + 762 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "5.3 MOTION IMITATION ", + "text_level": 1, + "bbox": [ + 176, + 777, + 352, + 791 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "In this section, we show that AWR can also solve high-dimensional tasks with complex simulated characters, including a $3 4 \\mathrm { D o F }$ humanoid and 64 DoF dog. The objective of the tasks is to imitate reference motion clips recorded using mocap. The experimental setup follows the framework proposed by Peng et al. (2018). The motions include walking and running (e.g. canter), as well as acrobatic skills, such as cartwheels and spinkicks. Figure 1 shows snapshots of the behaviors learned by the AWR. Table 2 and Figure 4 compare the performance of AWR to RWR and PPO. AWR performs well across the set of challenging skills, consistently achieving comparable or better performance than PPO. RWR struggles with controlling the humanoid, but exhibits stronger performance on the dog. This difference may be due to the more dynamic and acrobatic skills of the humanoid. ", + "bbox": [ + 173, + 797, + 825, + 924 + ], + "page_idx": 6 + }, + { + "type": "table", + "img_path": "images/5c391dbb9c92c96c6453612294ddb3c235e106dfe4f2c0e5931f5c4aeea4e18f.jpg", + "table_caption": [ + "Table 2: Performance of algorithms on the motion imitation tasks. Returns are normalized between the minimum and maximum possible returns. " + ], + "table_footnote": [], + "table_body": "
TaskPPORWRAWR (Ours)
Humanoid:Cartwheel0.76 ±0.020.03±0.010.78±0.07
Humanoid:Spinkick0.70±0.020.05± 0.030.77± 0.04
Dog:Canter0.76±0.030.78±0.040.86± 0.01
Dog:Trot0.86±0.010.86±0.010.86±0.03
Dog:Turn0.75±0.020.75±0.030.82±0.03
", + "bbox": [ + 176, + 101, + 490, + 188 + ], + "page_idx": 7 + }, + { + "type": "image", + "img_path": "images/87d4ca4512b6c8070d7476d2fc3bf8e68347c115c9db6cc02518ecfc41d72dbf.jpg", + "image_caption": [ + "Figure 4: Learning curves on motion imitation tasks. On these challenging tasks, AWR generally learns faster than PPO and RWR. " + ], + "image_footnote": [], + "bbox": [ + 498, + 94, + 823, + 190 + ], + "page_idx": 7 + }, + { + "type": "image", + "img_path": "images/0a480916b5b94b57a18bb7423ee598c2c7ee342d2dff7ecf2edff2777aed5a76.jpg", + "image_caption": [ + "Figure 5: Performance of various algorithms on off-policy learning tasks with static datasets. AWR is able to learn policies that are comparable or better than the original demo policies. " + ], + "image_footnote": [], + "bbox": [ + 173, + 242, + 825, + 334 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "5.4 OFF-POLICY LEARNING WITH STATIC DATASETS ", + "text_level": 1, + "bbox": [ + 173, + 376, + 553, + 390 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Next, we evaluate AWR in a fully off-policy setting, where the algorithm is provided with a static dataset of experiences, and then tasked with learning the best possible policy without collecting any additional data. To evaluate our method, we use the off-policy tasks proposed by Kumar et al. (2019). The dataset consists of trajectories $\\tau = \\{ ( \\mathbf { s } _ { 0 } , \\mathbf { a } _ { 0 } , r _ { 0 } ) , ( \\mathbf { s } _ { 1 } , \\mathbf { a } _ { 1 } , r _ { 1 } ) , \\ldots \\}$ from rollouts of a demo policy. Unlike standard imitation learning tasks, which only observes the states and actions from the demo policy, the dataset also records the reward at each step. The demo policies are trained using SAC on various OpenAI Gym tasks. A dataset of 1 million timesteps is collected for each task. ", + "bbox": [ + 174, + 395, + 825, + 493 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "For AWR, we simply treat the dataset as the replay buffer $\\mathcal { D }$ and directly apply the algorithm without any modifications. Figure 5 compares AWR to the original demo policy (Demo) and a behavioral cloning policy (BC). We also include comparisons to recent off-policy methods: batch-constrained Q-learning (BCQ) (Fujimoto et al., 2019) and bootstrapping error accumulation reduction (BEAR) (Kumar et al., 2019), which have shown strong performance on off-policy learning with static datasets. Note that both of these prior methods are modifications to existing off-policy RL methods, such as TD3 and SAC, which are already quite complex. In contrast, AWR is simple and requires no modifications for the fully off-policy setting. Despite not collecting any additional data, AWR is able to learn effective policies from these fully off-policy datasets, achieving comparable or better performance than the original demo policies. On-policy methods, such as PPO performs poorly in this off-policy setting. Q-function based methods, such as TD3 and SAC, can in principle handle off-policy data but tend to struggle in practice (Fujimoto et al., 2019; Kumar et al., 2019). Unlike Q-function based methods, AWR is less susceptible to issues from out-of-distribution actions as the policy is always trained on observed actions from the behaviour data (Kumar et al., 2019). AWR also shows comparable performance to BEAR and BCQ, which are specifically designed for this off-policy setting and introduce considerable algorithmic overhead. ", + "bbox": [ + 173, + 500, + 825, + 722 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "6 DISCUSSION AND FUTURE WORK ", + "text_level": 1, + "bbox": [ + 176, + 736, + 485, + 751 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "We presented advantage-weighted regression, a simple off-policy reinforcement learning algorithm, where policy updates are performed using standard supervised learning methods. Despite its simplicity, our algorithm is able to solve challenging control tasks with complex simulated agents, and achieve competitive performance on standard benchmarks compared to a number of well-established RL algorithms. Our derivation introduces several new design decisions, and our experiments verify the importance of these components. AWR is also able to learn from fully off-policy datasets, demonstrating comparable performance to state-of-the-art off-policy methods. While AWR is effective for a diverse suite of tasks, it is not yet as sample efficient as the most efficient off-policy algorithms. We believe that exploring techniques for improving sample efficiency and performance on fully off-policy learning can open opportunities to deploy these methods in real world domains. A better theoretical understanding of the convergence properties of these algorithms, especially when combined with experience replay, could also be valuable for the development of future algorithms. ", + "bbox": [ + 174, + 757, + 826, + 924 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "REFERENCES ", + "text_level": 1, + "bbox": [ + 176, + 103, + 285, + 117 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Abbas Abdolmaleki, Jost Tobias Springenberg, Jonas Degrave, Steven Bohez, Yuval Tassa, Dan Belov, Nicolas Manfred Otto Heess, and Martin A. Riedmiller. Relative entropy regularized policy iteration. ArXiv, abs/1812.02256, 2018a. ", + "bbox": [ + 174, + 126, + 823, + 167 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Abbas Abdolmaleki, Jost Tobias Springenberg, Yuval Tassa, Remi Munos, Nicolas Heess, and Martin Riedmiller. Maximum a posteriori policy optimisation. In International Conference on Learning Representations, 2018b. URL https://openreview.net/forum?id $\\underline { { \\underline { { \\mathbf { \\Pi } } } } } =$ S1ANxQW0b. ", + "bbox": [ + 174, + 176, + 821, + 219 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Greg Brockman, Vicki Cheung, Ludwig Pettersson, Jonas Schneider, John Schulman, Jie Tang, and Wojciech Zaremba. Openai gym, 2016. ", + "bbox": [ + 169, + 228, + 823, + 257 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Prafulla Dhariwal, Christopher Hesse, Oleg Klimov, Alex Nichol, Matthias Plappert, Alec Radford, John Schulman, Szymon Sidor, Yuhuai Wu, and Peter Zhokhov. Openai baselines. https: //github.com/openai/baselines, 2017. ", + "bbox": [ + 173, + 265, + 825, + 308 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Yan Duan, Xi Chen, Rein Houthooft, John Schulman, and Pieter Abbeel. Benchmarking deep reinforcement learning for continuous control. In ICML, pp. 1329–1338, 2016. URL http: //proceedings.mlr.press/v48/duan16.html. ", + "bbox": [ + 176, + 315, + 823, + 358 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Justin Fu, Aviral Kumar, Matthew Soh, and Sergey Levine. Diagnosing bottlenecks in deep qlearning algorithms. In Kamalika Chaudhuri and Ruslan Salakhutdinov (eds.), Proceedings of the 36th International Conference on Machine Learning, volume 97 of Proceedings of Machine Learning Research, pp. 2021–2030, Long Beach, California, USA, 09–15 Jun 2019. PMLR. URL http://proceedings.mlr.press/v97/fu19a.html. ", + "bbox": [ + 173, + 367, + 826, + 438 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Scott Fujimoto, Herke van Hoof, and David Meger. Addressing function approximation error in actor-critic methods. In Jennifer Dy and Andreas Krause (eds.), Proceedings of the 35th International Conference on Machine Learning, volume 80 of Proceedings of Machine Learning Research, pp. 1587–1596, Stockholmsmassan, Stockholm Sweden, 10–15 Jul 2018. PMLR. URL¨ http://proceedings.mlr.press/ $\\mathtt { v 8 0 }$ /fujimoto18a.html. ", + "bbox": [ + 174, + 445, + 825, + 516 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Scott Fujimoto, David Meger, and Doina Precup. Off-policy deep reinforcement learning without exploration. In Kamalika Chaudhuri and Ruslan Salakhutdinov (eds.), Proceedings of the 36th International Conference on Machine Learning, volume 97 of Proceedings of Machine Learning Research, pp. 2052–2062, Long Beach, California, USA, 09–15 Jun 2019. PMLR. URL http: //proceedings.mlr.press/v97/fujimoto19a.html. ", + "bbox": [ + 173, + 525, + 825, + 595 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Shixiang Gu, Timothy Lillicrap, Ilya Sutskever, and Sergey Levine. Continuous deep q-learning with model-based acceleration. In Maria Florina Balcan and Kilian Q. Weinberger (eds.), Proceedings of The 33rd International Conference on Machine Learning, volume 48 of Proceedings of Machine Learning Research, pp. 2829–2838, New York, New York, USA, 20–22 Jun 2016. PMLR. URL http://proceedings.mlr.press/v48/gu16.html. ", + "bbox": [ + 174, + 603, + 825, + 674 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Tuomas Haarnoja, Aurick Zhou, Pieter Abbeel, and Sergey Levine. Soft actor-critic: Off-policy maximum entropy deep reinforcement learning with a stochastic actor. In Jennifer Dy and Andreas Krause (eds.), Proceedings of the 35th International Conference on Machine Learning, volume 80 of Proceedings of Machine Learning Research, pp. 1861–1870, Stockholmsmassan, ¨ Stockholm Sweden, 10–15 Jul 2018a. PMLR. URL http://proceedings.mlr.press/ v80/haarnoja18b.html. ", + "bbox": [ + 174, + 683, + 826, + 766 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Tuomas Haarnoja, Aurick Zhou, Pieter Abbeel, and Sergey Levine. Soft actor-critic: Off-policy maximum entropy deep reinforcement learning with a stochastic actor. In Jennifer Dy and Andreas Krause (eds.), Proceedings of the 35th International Conference on Machine Learning, volume 80 of Proceedings of Machine Learning Research, pp. 1861–1870, Stockholmsmassan, ¨ Stockholm Sweden, 10–15 Jul 2018b. PMLR. URL http://proceedings.mlr.press/ v80/haarnoja18b.html. ", + "bbox": [ + 174, + 775, + 826, + 859 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Hirotaka Hachiya, Takayuki Akiyama, Masashi Sugiayma, and Jan Peters. Adaptive importance sampling for value function approximation in off-policy reinforcement learning. Neural Netw., 22(10):1399–1410, December 2009. ISSN 0893-6080. doi: 10.1016/j.neunet.2009.01.002. URL http://dx.doi.org/10.1016/j.neunet.2009.01.002. ", + "bbox": [ + 174, + 867, + 825, + 924 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Danijar Hafner, James Davidson, and Vincent Vanhoucke. Tensorflow agents: Efficient batched reinforcement learning in tensorflow. CoRR, abs/1709.02878, 2017. URL http://arxiv. org/abs/1709.02878. ", + "bbox": [ + 173, + 103, + 825, + 146 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Hado van Hasselt, Arthur Guez, and David Silver. Deep reinforcement learning with double q-learning. In Proceedings of the Thirtieth AAAI Conference on Artificial Intelligence, AAAI’16, pp. 2094– 2100. AAAI Press, 2016. URL http://dl.acm.org/citation.cfm?id=3016100. 3016191. ", + "bbox": [ + 173, + 156, + 828, + 213 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Nicolas Heess, Dhruva TB, Srinivasan Sriram, Jay Lemmon, Josh Merel, Greg Wayne, Yuval Tassa, Tom Erez, Ziyu Wang, S. M. Ali Eslami, Martin A. Riedmiller, and David Silver. Emergence of locomotion behaviours in rich environments. CoRR, abs/1707.02286, 2017. URL http: //arxiv.org/abs/1707.02286. ", + "bbox": [ + 173, + 223, + 826, + 280 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Matteo Hessel, Joseph Modayil, Hado van Hasselt, Tom Schaul, Georg Ostrovski, Will Dabney, Daniel Horgan, Bilal Piot, Mohammad Gheshlaghi Azar, and David Silver. Rainbow: Combining improvements in deep reinforcement learning. CoRR, abs/1710.02298, 2017. URL http: //arxiv.org/abs/1710.02298. ", + "bbox": [ + 173, + 291, + 826, + 347 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Sham Kakade and John Langford. Approximately optimal approximate reinforcement learning. In Proceedings of the Nineteenth International Conference on Machine Learning, ICML ’02, pp. 267–274, San Francisco, CA, USA, 2002. Morgan Kaufmann Publishers Inc. ISBN 1-55860-873-7. URL http://dl.acm.org/citation.cfm?id=645531.656005. ", + "bbox": [ + 174, + 358, + 826, + 415 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Jens Kober and Jan R. Peters. Policy search for motor primitives in robotics. In D. Koller, D. Schuurmans, Y. Bengio, and L. Bottou (eds.), Advances in Neural Information Processing Systems 21, pp. 849–856. Curran Associates, Inc., 2009. ", + "bbox": [ + 173, + 425, + 826, + 468 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Aviral Kumar, Justin Fu, George Tucker, and Sergey Levine. Stabilizing off-policy q-learning via bootstrapping error reduction. CoRR, abs/1906.00949, 2019. URL http://arxiv.org/abs/ 1906.00949. ", + "bbox": [ + 173, + 478, + 825, + 520 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Timothy P. Lillicrap, Jonathan J. Hunt, Alexander Pritzel, Nicolas Manfred Otto Heess, Tom Erez, Yuval Tassa, David Silver, and Daan Wierstra. Continuous control with deep reinforcement learning. ICLR, 2016. ", + "bbox": [ + 174, + 531, + 826, + 574 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Nicolas Meuleau, Leonid Peshkin, Leslie P. Kaelbling, and Kee eung Kim. Off-policy policy search. Technical report, 2000. ", + "bbox": [ + 174, + 584, + 823, + 613 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Volodymyr Mnih, Koray Kavukcuoglu, David Silver, Andrei A. Rusu, Joel Veness, Marc G. Bellemare, Alex Graves, Martin Riedmiller, Andreas K. Fidjeland, Georg Ostrovski, Stig Petersen, Charles Beattie, Amir Sadik, Ioannis Antonoglou, Helen King, Dharshan Kumaran, Daan Wierstra, Shane Legg, and Demis Hassabis. Human-level control through deep reinforcement learning. Nature, 518(7540):529–533, February 2015. ISSN 00280836. URL http://dx.doi.org/10.1038/nature14236. ", + "bbox": [ + 174, + 625, + 826, + 709 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Remi Munos, Thomas Stepleton, Anna Harutyunyan, and Marc G. Bellemare. Safe and efficient ´ off-policy reinforcement learning. In Proceedings of the 30th International Conference on Neural Information Processing Systems, NIPS’16, pp. 1054–1062, USA, 2016. Curran Associates Inc. ISBN 978-1-5108-3881-9. URL http://dl.acm.org/citation.cfm?id $\\underline { { \\underline { { \\mathbf { \\Pi } } } } } =$ 3157096. 3157214. ", + "bbox": [ + 173, + 719, + 826, + 789 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Vinod Nair and Geoffrey E. Hinton. Rectified linear units improve restricted boltzmann machines. In Proceedings of the 27th International Conference on International Conference on Machine Learning, ICML’10, pp. 807–814, USA, 2010. Omnipress. ISBN 978-1-60558-907-7. URL http://dl.acm.org/citation.cfm?id $\\equiv$ 3104322.3104425. ", + "bbox": [ + 174, + 800, + 826, + 857 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Gerhard Neumann. Variational inference for policy search in changing situations. In Proceedings of the 28th International Conference on International Conference on Machine Learning, ICML’11, pp. 817–824, USA, 2011. Omnipress. ISBN 978-1-4503-0619-5. URL http://dl.acm.org/ citation.cfm?id=3104482.3104585. ", + "bbox": [ + 174, + 867, + 826, + 922 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Gerhard Neumann and Jan R. Peters. Fitted q-iteration by advantage weighted regression. In D. Koller, D. Schuurmans, Y. Bengio, and L. Bottou (eds.), Advances in Neural Information Processing Systems 21, pp. 1177–1184. Curran Associates, Inc., 2009. ", + "bbox": [ + 178, + 103, + 823, + 146 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Junhyuk Oh, Yijie Guo, Satinder Singh, and Honglak Lee. Self-imitation learning. In Jennifer Dy and Andreas Krause (eds.), Proceedings of the 35th International Conference on Machine Learning, volume 80 of Proceedings of Machine Learning Research, pp. 3878–3887, Stockholmsmassan, ¨ Stockholm Sweden, 10–15 Jul 2018. PMLR. URL http://proceedings.mlr.press/ v80/oh18b.html. ", + "bbox": [ + 173, + 155, + 826, + 226 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Deepak Pathak, Pulkit Agrawal, Alexei A. Efros, and Trevor Darrell. Curiosity-driven exploration by self-supervised prediction. In The IEEE Conference on Computer Vision and Pattern Recognition (CVPR) Workshops, July 2017. ", + "bbox": [ + 173, + 236, + 825, + 279 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Xue Bin Peng, Pieter Abbeel, Sergey Levine, and Michiel van de Panne. Deepmimic: Exampleguided deep reinforcement learning of physics-based character skills. ACM Trans. Graph., 37 (4):143:1–143:14, July 2018. ISSN 0730-0301. doi: 10.1145/3197517.3201311. URL http: //doi.acm.org/10.1145/3197517.3201311. ", + "bbox": [ + 174, + 287, + 826, + 344 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Jan Peters and Stefan Schaal. Reinforcement learning by reward-weighted regression for operational space control. In Proceedings of the 24th International Conference on Machine Learning, ICML ’07, pp. 745–750, New York, NY, USA, 2007. ACM. ISBN 978-1-59593-793-3. doi: 10.1145/ 1273496.1273590. URL http://doi.acm.org/10.1145/1273496.1273590. ", + "bbox": [ + 174, + 354, + 825, + 411 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Jan Peters, Katharina Mulling, and Yasemin Alt ¨ un. Relative entropy policy search. In ¨ Proceedings of the Twenty-Fourth AAAI Conference on Artificial Intelligence, AAAI’10, pp. 1607–1612. AAAI Press, 2010. URL http://dl.acm.org/citation.cfm?id=2898607.2898863. ", + "bbox": [ + 173, + 420, + 826, + 463 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Vitchyr Pong. Rlkit. https://github.com/vitchyr/rlkit, 2019. ", + "bbox": [ + 174, + 473, + 673, + 488 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Doina Precup, Richard S. Sutton, and Sanjoy Dasgupta. Off-policy temporal difference learning with function approximation. In Proceedings of the Eighteenth International Conference on Machine Learning, ICML ’01, pp. 417–424, San Francisco, CA, USA, 2001. Morgan Kaufmann Publishers Inc. ISBN 1-55860-778-1. URL http://dl.acm.org/citation.cfm?id $=$ 645530.655817. ", + "bbox": [ + 173, + 497, + 825, + 568 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Aravind Rajeswaran, Vikash Kumar, Abhishek Gupta, Giulia Vezzani, John Schulman, Emanuel Todorov, and Sergey Levine. Learning Complex Dexterous Manipulation with Deep Reinforcement Learning and Demonstrations. In Proceedings of Robotics: Science and Systems (RSS), 2018. ", + "bbox": [ + 178, + 577, + 823, + 621 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "John Schulman, Sergey Levine, Pieter Abbeel, Michael Jordan, and Philipp Moritz. Trust region policy optimization. In Francis Bach and David Blei (eds.), Proceedings of the 32nd International Conference on Machine Learning, volume 37 of Proceedings of Machine Learning Research, pp. 1889–1897, Lille, France, 07–09 Jul 2015. PMLR. URL http://proceedings.mlr. press/v37/schulman15.html. ", + "bbox": [ + 173, + 630, + 826, + 700 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "John Schulman, Filip Wolski, Prafulla Dhariwal, Alec Radford, and Oleg Klimov. Proximal policy optimization algorithms. CoRR, abs/1707.06347, 2017. URL http://arxiv.org/abs/ 1707.06347. ", + "bbox": [ + 173, + 710, + 826, + 752 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Richard S. Sutton and Andrew G. Barto. Introduction to Reinforcement Learning. MIT Press, Cambridge, MA, USA, 1st edition, 1998. ISBN 0262193981. ", + "bbox": [ + 174, + 762, + 825, + 791 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Richard S Sutton, David A. McAllester, Satinder P. Singh, and Yishay Mansour. Policy gradient methods for reinforcement learning with function approximation. In S. A. Solla, T. K. Leen, and K. Muller (eds.), ¨ Advances in Neural Information Processing Systems 12, pp. 1057–1063. MIT Press, 2000. ", + "bbox": [ + 173, + 801, + 825, + 857 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Qing Wang, Jiechao Xiong, Lei Han, peng sun, Han Liu, and Tong Zhang. Exponentially weighted imitation learning for batched historical data. In S. Bengio, H. Wallach, H. Larochelle, K. Grauman, N. Cesa-Bianchi, and R. Garnett (eds.), Advances in Neural Information Processing Systems 31, pp. 6288–6297. Curran Associates, Inc., 2018. ", + "bbox": [ + 174, + 867, + 825, + 924 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Ziyu Wang, Victor Bapst, Nicolas Heess, Volodymyr Mnih, Remi Munos, Koray Kavukcuoglu, and ´ Nando de Freitas. Sample efficient actor-critic with experience replay. CoRR, abs/1611.01224, 2016. URL http://arxiv.org/abs/1611.01224. ", + "bbox": [ + 176, + 103, + 826, + 146 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Ronald J. Williams. Simple statistical gradient-following algorithms for connectionist reinforcement learning. Mach. Learn., 8(3-4):229–256, May 1992. ISSN 0885-6125. doi: 10.1007/BF00992696. URL https://doi.org/10.1007/BF00992696. ", + "bbox": [ + 176, + 155, + 823, + 196 + ], + "page_idx": 11 + } +] \ No newline at end of file diff --git a/parse/train/ToWi1RjuEr8/ToWi1RjuEr8_middle.json b/parse/train/ToWi1RjuEr8/ToWi1RjuEr8_middle.json new file mode 100644 index 0000000000000000000000000000000000000000..43b8e28cb3ba98b8e310bf03cdc4c56c854d713e --- /dev/null +++ b/parse/train/ToWi1RjuEr8/ToWi1RjuEr8_middle.json @@ -0,0 +1,33064 @@ +{ + "pdf_info": [ + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 78, + 503, + 116 + ], + "lines": [ + { + "bbox": [ + 106, + 78, + 505, + 97 + ], + "spans": [ + { + "bbox": [ + 106, + 78, + 505, + 97 + ], + "score": 1.0, + "content": "ADVANTAGE-WEIGHTED REGRESSION: SIMPLE AND", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 98, + 504, + 118 + ], + "spans": [ + { + "bbox": [ + 106, + 98, + 504, + 118 + ], + "score": 1.0, + "content": "SCALABLE OFF-POLICY REINFORCEMENT LEARNING", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 112, + 136, + 244, + 157 + ], + "lines": [ + { + "bbox": [ + 113, + 136, + 201, + 147 + ], + "spans": [ + { + "bbox": [ + 113, + 136, + 201, + 147 + ], + "score": 1.0, + "content": "Anonymous authors", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 112, + 146, + 245, + 159 + ], + "spans": [ + { + "bbox": [ + 112, + 146, + 245, + 159 + ], + "score": 1.0, + "content": "Paper under double-blind review", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5 + }, + { + "type": "title", + "bbox": [ + 278, + 186, + 333, + 199 + ], + "lines": [ + { + "bbox": [ + 276, + 186, + 335, + 200 + ], + "spans": [ + { + "bbox": [ + 276, + 186, + 335, + 200 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 143, + 211, + 469, + 387 + ], + "lines": [ + { + "bbox": [ + 140, + 210, + 470, + 225 + ], + "spans": [ + { + "bbox": [ + 140, + 210, + 470, + 225 + ], + "score": 1.0, + "content": "In this work, we aim to develop a simple and scalable reinforcement learning", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 141, + 222, + 469, + 234 + ], + "spans": [ + { + "bbox": [ + 141, + 222, + 469, + 234 + ], + "score": 1.0, + "content": "algorithm that uses standard supervised learning methods as subroutines, while", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 141, + 233, + 470, + 246 + ], + "spans": [ + { + "bbox": [ + 141, + 233, + 470, + 246 + ], + "score": 1.0, + "content": "also being able to leverage off-policy data. Our proposed approach, which we refer", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 141, + 244, + 470, + 257 + ], + "spans": [ + { + "bbox": [ + 141, + 244, + 470, + 257 + ], + "score": 1.0, + "content": "to as advantage-weighted regression (AWR), consists of two standard supervised", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 255, + 470, + 267 + ], + "spans": [ + { + "bbox": [ + 141, + 255, + 470, + 267 + ], + "score": 1.0, + "content": "learning steps: one to regress onto target values for a value function, and another to", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 266, + 470, + 279 + ], + "spans": [ + { + "bbox": [ + 141, + 266, + 470, + 279 + ], + "score": 1.0, + "content": "regress onto weighted target actions for the policy. The method is simple and gen-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 277, + 469, + 289 + ], + "spans": [ + { + "bbox": [ + 141, + 277, + 469, + 289 + ], + "score": 1.0, + "content": "eral, can accommodate continuous and discrete actions, and can be implemented in", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 288, + 469, + 300 + ], + "spans": [ + { + "bbox": [ + 141, + 288, + 469, + 300 + ], + "score": 1.0, + "content": "just a few lines of code on top of standard supervised learning methods. We provide", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 299, + 469, + 311 + ], + "spans": [ + { + "bbox": [ + 141, + 299, + 469, + 311 + ], + "score": 1.0, + "content": "a theoretical motivation for AWR and analyze its properties when incorporating", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 142, + 310, + 470, + 322 + ], + "spans": [ + { + "bbox": [ + 142, + 310, + 470, + 322 + ], + "score": 1.0, + "content": "off-policy data from experience replay. We evaluate AWR on a suite of standard", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 142, + 321, + 469, + 334 + ], + "spans": [ + { + "bbox": [ + 142, + 321, + 469, + 334 + ], + "score": 1.0, + "content": "OpenAI Gym benchmark tasks, and show that it achieves competitive performance", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 142, + 333, + 469, + 344 + ], + "spans": [ + { + "bbox": [ + 142, + 333, + 469, + 344 + ], + "score": 1.0, + "content": "compared to a number of well-established state-of-the-art RL algorithms. AWR is", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 342, + 469, + 356 + ], + "spans": [ + { + "bbox": [ + 141, + 342, + 469, + 356 + ], + "score": 1.0, + "content": "also able to acquire more effective policies than most off-policy algorithms when", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 354, + 470, + 366 + ], + "spans": [ + { + "bbox": [ + 141, + 354, + 470, + 366 + ], + "score": 1.0, + "content": "learning from purely static datasets with no additional environmental interactions.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 364, + 470, + 377 + ], + "spans": [ + { + "bbox": [ + 141, + 364, + 470, + 377 + ], + "score": 1.0, + "content": "Furthermore, we demonstrate our algorithm on challenging continuous control", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 376, + 374, + 387 + ], + "spans": [ + { + "bbox": [ + 141, + 376, + 374, + 387 + ], + "score": 1.0, + "content": "tasks with highly complex simulated characters. (Video1)", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 12.5 + }, + { + "type": "title", + "bbox": [ + 108, + 407, + 206, + 420 + ], + "lines": [ + { + "bbox": [ + 105, + 406, + 208, + 423 + ], + "spans": [ + { + "bbox": [ + 105, + 406, + 208, + 423 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 107, + 427, + 505, + 515 + ], + "lines": [ + { + "bbox": [ + 105, + 426, + 505, + 440 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 505, + 440 + ], + "score": 1.0, + "content": "Model-free reinforcement learning can be a general and effective methodology for training agents", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 438, + 507, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 438, + 507, + 451 + ], + "score": 1.0, + "content": "to acquire sophisticated behaviors with minimal assumptions on the underlying task. However,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 448, + 505, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 505, + 461 + ], + "score": 1.0, + "content": "RL algorithms can be substantially more complex to implement and tune than standard supervised", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 459, + 506, + 473 + ], + "spans": [ + { + "bbox": [ + 105, + 459, + 506, + 473 + ], + "score": 1.0, + "content": "learning methods. Arguably the simplest reinforcement learning methods are policy gradient algo-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 470, + 505, + 483 + ], + "spans": [ + { + "bbox": [ + 105, + 470, + 505, + 483 + ], + "score": 1.0, + "content": "rithms (Sutton et al., 2000), which directly differentiate the expected return and perform gradient", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 482, + 505, + 494 + ], + "spans": [ + { + "bbox": [ + 105, + 482, + 505, + 494 + ], + "score": 1.0, + "content": "ascent. Unfortunately, these methods can be notoriously unstable and are typically on-policy, often", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 492, + 506, + 505 + ], + "spans": [ + { + "bbox": [ + 105, + 492, + 506, + 505 + ], + "score": 1.0, + "content": "requiring a substantial number of samples to learn effective behaviors. Our goal is to develop an RL", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 504, + 458, + 516 + ], + "spans": [ + { + "bbox": [ + 106, + 504, + 458, + 516 + ], + "score": 1.0, + "content": "algorithm that is simple, easy to implement, and can readily incorporate off-policy data.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 25.5 + }, + { + "type": "text", + "bbox": [ + 107, + 520, + 505, + 631 + ], + "lines": [ + { + "bbox": [ + 105, + 520, + 506, + 533 + ], + "spans": [ + { + "bbox": [ + 105, + 520, + 506, + 533 + ], + "score": 1.0, + "content": "In this work, we propose advantage-weighted regression (AWR), a simple off-policy algorithm for", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 531, + 505, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 531, + 505, + 545 + ], + "score": 1.0, + "content": "model-free RL. Each iteration of the AWR algorithm simply consists of two supervised regression", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 543, + 506, + 555 + ], + "spans": [ + { + "bbox": [ + 105, + 543, + 506, + 555 + ], + "score": 1.0, + "content": "steps: one for training a value function baseline via regression onto cumulative rewards, and another", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 554, + 507, + 567 + ], + "spans": [ + { + "bbox": [ + 105, + 554, + 507, + 567 + ], + "score": 1.0, + "content": "for training the policy via weighted regression. The complete algorithm is shown in Algorithm 1.", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 565, + 506, + 577 + ], + "spans": [ + { + "bbox": [ + 105, + 565, + 506, + 577 + ], + "score": 1.0, + "content": "AWR can accommodate continuous and discrete actions, and can be implemented in just a few", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 574, + 506, + 588 + ], + "spans": [ + { + "bbox": [ + 105, + 574, + 506, + 588 + ], + "score": 1.0, + "content": "lines of code on top of standard supervised learning methods. Despite its simplicity, we find that", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 586, + 506, + 599 + ], + "spans": [ + { + "bbox": [ + 105, + 586, + 506, + 599 + ], + "score": 1.0, + "content": "AWR achieves competitive results when compared to commonly used on-policy and off-policy RL", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 598, + 505, + 609 + ], + "spans": [ + { + "bbox": [ + 106, + 598, + 505, + 609 + ], + "score": 1.0, + "content": "algorithms, and can effectively incorporate fully off-policy data, which has been a challenge for other", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 608, + 505, + 621 + ], + "spans": [ + { + "bbox": [ + 105, + 608, + 505, + 621 + ], + "score": 1.0, + "content": "RL algorithms. Our derivation presents an interpretation of AWR as a constrained policy optimization", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 618, + 500, + 633 + ], + "spans": [ + { + "bbox": [ + 105, + 618, + 500, + 633 + ], + "score": 1.0, + "content": "procedure, and provides a theoretical analysis of the use of off-policy data with experience replay.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 34.5 + }, + { + "type": "text", + "bbox": [ + 107, + 636, + 505, + 713 + ], + "lines": [ + { + "bbox": [ + 106, + 636, + 506, + 649 + ], + "spans": [ + { + "bbox": [ + 106, + 636, + 506, + 649 + ], + "score": 1.0, + "content": "We first revisit the original formulation of reward-weighted regression (RWR) (Peters & Schaal,", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 646, + 506, + 661 + ], + "spans": [ + { + "bbox": [ + 105, + 646, + 506, + 661 + ], + "score": 1.0, + "content": "2007), an on-policy RL method that utilizes supervised learning to perform policy updates, and", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 658, + 505, + 671 + ], + "spans": [ + { + "bbox": [ + 105, + 658, + 505, + 671 + ], + "score": 1.0, + "content": "then propose a number of new design decisions that significantly improve performance on a suite", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 667, + 505, + 683 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 505, + 683 + ], + "score": 1.0, + "content": "of standard control benchmark tasks. We then provide a theoretical analysis of AWR, including", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 680, + 505, + 693 + ], + "spans": [ + { + "bbox": [ + 105, + 680, + 505, + 693 + ], + "score": 1.0, + "content": "the capability to incorporate off-policy data with experience replay. Although the design of AWR", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 690, + 506, + 704 + ], + "spans": [ + { + "bbox": [ + 105, + 690, + 506, + 704 + ], + "score": 1.0, + "content": "involves only a few simple design decisions, we show experimentally that these additions provide", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 702, + 507, + 715 + ], + "spans": [ + { + "bbox": [ + 105, + 702, + 507, + 715 + ], + "score": 1.0, + "content": "for a large improvement over previous methods for regression-based policy search, such as RWR,", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 43 + } + ], + "page_idx": 0, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 121, + 722, + 326, + 732 + ], + "lines": [ + { + "bbox": [ + 121, + 720, + 327, + 734 + ], + "spans": [ + { + "bbox": [ + 121, + 720, + 327, + 734 + ], + "score": 1.0, + "content": "1Supplementary video: sites.google.com/view/awr-supp/", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 27, + 307, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 752, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "score": 1.0, + "content": "1", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 78, + 503, + 116 + ], + "lines": [ + { + "bbox": [ + 106, + 78, + 505, + 97 + ], + "spans": [ + { + "bbox": [ + 106, + 78, + 505, + 97 + ], + "score": 1.0, + "content": "ADVANTAGE-WEIGHTED REGRESSION: SIMPLE AND", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 98, + 504, + 118 + ], + "spans": [ + { + "bbox": [ + 106, + 98, + 504, + 118 + ], + "score": 1.0, + "content": "SCALABLE OFF-POLICY REINFORCEMENT LEARNING", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 112, + 136, + 244, + 157 + ], + "lines": [ + { + "bbox": [ + 113, + 136, + 201, + 147 + ], + "spans": [ + { + "bbox": [ + 113, + 136, + 201, + 147 + ], + "score": 1.0, + "content": "Anonymous authors", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 112, + 146, + 245, + 159 + ], + "spans": [ + { + "bbox": [ + 112, + 146, + 245, + 159 + ], + "score": 1.0, + "content": "Paper under double-blind review", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5, + "bbox_fs": [ + 112, + 136, + 245, + 159 + ] + }, + { + "type": "title", + "bbox": [ + 278, + 186, + 333, + 199 + ], + "lines": [ + { + "bbox": [ + 276, + 186, + 335, + 200 + ], + "spans": [ + { + "bbox": [ + 276, + 186, + 335, + 200 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 143, + 211, + 469, + 387 + ], + "lines": [ + { + "bbox": [ + 140, + 210, + 470, + 225 + ], + "spans": [ + { + "bbox": [ + 140, + 210, + 470, + 225 + ], + "score": 1.0, + "content": "In this work, we aim to develop a simple and scalable reinforcement learning", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 141, + 222, + 469, + 234 + ], + "spans": [ + { + "bbox": [ + 141, + 222, + 469, + 234 + ], + "score": 1.0, + "content": "algorithm that uses standard supervised learning methods as subroutines, while", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 141, + 233, + 470, + 246 + ], + "spans": [ + { + "bbox": [ + 141, + 233, + 470, + 246 + ], + "score": 1.0, + "content": "also being able to leverage off-policy data. Our proposed approach, which we refer", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 141, + 244, + 470, + 257 + ], + "spans": [ + { + "bbox": [ + 141, + 244, + 470, + 257 + ], + "score": 1.0, + "content": "to as advantage-weighted regression (AWR), consists of two standard supervised", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 255, + 470, + 267 + ], + "spans": [ + { + "bbox": [ + 141, + 255, + 470, + 267 + ], + "score": 1.0, + "content": "learning steps: one to regress onto target values for a value function, and another to", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 266, + 470, + 279 + ], + "spans": [ + { + "bbox": [ + 141, + 266, + 470, + 279 + ], + "score": 1.0, + "content": "regress onto weighted target actions for the policy. The method is simple and gen-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 277, + 469, + 289 + ], + "spans": [ + { + "bbox": [ + 141, + 277, + 469, + 289 + ], + "score": 1.0, + "content": "eral, can accommodate continuous and discrete actions, and can be implemented in", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 288, + 469, + 300 + ], + "spans": [ + { + "bbox": [ + 141, + 288, + 469, + 300 + ], + "score": 1.0, + "content": "just a few lines of code on top of standard supervised learning methods. We provide", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 299, + 469, + 311 + ], + "spans": [ + { + "bbox": [ + 141, + 299, + 469, + 311 + ], + "score": 1.0, + "content": "a theoretical motivation for AWR and analyze its properties when incorporating", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 142, + 310, + 470, + 322 + ], + "spans": [ + { + "bbox": [ + 142, + 310, + 470, + 322 + ], + "score": 1.0, + "content": "off-policy data from experience replay. We evaluate AWR on a suite of standard", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 142, + 321, + 469, + 334 + ], + "spans": [ + { + "bbox": [ + 142, + 321, + 469, + 334 + ], + "score": 1.0, + "content": "OpenAI Gym benchmark tasks, and show that it achieves competitive performance", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 142, + 333, + 469, + 344 + ], + "spans": [ + { + "bbox": [ + 142, + 333, + 469, + 344 + ], + "score": 1.0, + "content": "compared to a number of well-established state-of-the-art RL algorithms. AWR is", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 342, + 469, + 356 + ], + "spans": [ + { + "bbox": [ + 141, + 342, + 469, + 356 + ], + "score": 1.0, + "content": "also able to acquire more effective policies than most off-policy algorithms when", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 354, + 470, + 366 + ], + "spans": [ + { + "bbox": [ + 141, + 354, + 470, + 366 + ], + "score": 1.0, + "content": "learning from purely static datasets with no additional environmental interactions.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 364, + 470, + 377 + ], + "spans": [ + { + "bbox": [ + 141, + 364, + 470, + 377 + ], + "score": 1.0, + "content": "Furthermore, we demonstrate our algorithm on challenging continuous control", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 376, + 374, + 387 + ], + "spans": [ + { + "bbox": [ + 141, + 376, + 374, + 387 + ], + "score": 1.0, + "content": "tasks with highly complex simulated characters. (Video1)", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 12.5, + "bbox_fs": [ + 140, + 210, + 470, + 387 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 407, + 206, + 420 + ], + "lines": [ + { + "bbox": [ + 105, + 406, + 208, + 423 + ], + "spans": [ + { + "bbox": [ + 105, + 406, + 208, + 423 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 107, + 427, + 505, + 515 + ], + "lines": [ + { + "bbox": [ + 105, + 426, + 505, + 440 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 505, + 440 + ], + "score": 1.0, + "content": "Model-free reinforcement learning can be a general and effective methodology for training agents", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 438, + 507, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 438, + 507, + 451 + ], + "score": 1.0, + "content": "to acquire sophisticated behaviors with minimal assumptions on the underlying task. However,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 448, + 505, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 505, + 461 + ], + "score": 1.0, + "content": "RL algorithms can be substantially more complex to implement and tune than standard supervised", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 459, + 506, + 473 + ], + "spans": [ + { + "bbox": [ + 105, + 459, + 506, + 473 + ], + "score": 1.0, + "content": "learning methods. Arguably the simplest reinforcement learning methods are policy gradient algo-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 470, + 505, + 483 + ], + "spans": [ + { + "bbox": [ + 105, + 470, + 505, + 483 + ], + "score": 1.0, + "content": "rithms (Sutton et al., 2000), which directly differentiate the expected return and perform gradient", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 482, + 505, + 494 + ], + "spans": [ + { + "bbox": [ + 105, + 482, + 505, + 494 + ], + "score": 1.0, + "content": "ascent. Unfortunately, these methods can be notoriously unstable and are typically on-policy, often", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 492, + 506, + 505 + ], + "spans": [ + { + "bbox": [ + 105, + 492, + 506, + 505 + ], + "score": 1.0, + "content": "requiring a substantial number of samples to learn effective behaviors. Our goal is to develop an RL", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 504, + 458, + 516 + ], + "spans": [ + { + "bbox": [ + 106, + 504, + 458, + 516 + ], + "score": 1.0, + "content": "algorithm that is simple, easy to implement, and can readily incorporate off-policy data.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 25.5, + "bbox_fs": [ + 105, + 426, + 507, + 516 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 520, + 505, + 631 + ], + "lines": [ + { + "bbox": [ + 105, + 520, + 506, + 533 + ], + "spans": [ + { + "bbox": [ + 105, + 520, + 506, + 533 + ], + "score": 1.0, + "content": "In this work, we propose advantage-weighted regression (AWR), a simple off-policy algorithm for", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 531, + 505, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 531, + 505, + 545 + ], + "score": 1.0, + "content": "model-free RL. Each iteration of the AWR algorithm simply consists of two supervised regression", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 543, + 506, + 555 + ], + "spans": [ + { + "bbox": [ + 105, + 543, + 506, + 555 + ], + "score": 1.0, + "content": "steps: one for training a value function baseline via regression onto cumulative rewards, and another", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 554, + 507, + 567 + ], + "spans": [ + { + "bbox": [ + 105, + 554, + 507, + 567 + ], + "score": 1.0, + "content": "for training the policy via weighted regression. The complete algorithm is shown in Algorithm 1.", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 565, + 506, + 577 + ], + "spans": [ + { + "bbox": [ + 105, + 565, + 506, + 577 + ], + "score": 1.0, + "content": "AWR can accommodate continuous and discrete actions, and can be implemented in just a few", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 574, + 506, + 588 + ], + "spans": [ + { + "bbox": [ + 105, + 574, + 506, + 588 + ], + "score": 1.0, + "content": "lines of code on top of standard supervised learning methods. Despite its simplicity, we find that", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 586, + 506, + 599 + ], + "spans": [ + { + "bbox": [ + 105, + 586, + 506, + 599 + ], + "score": 1.0, + "content": "AWR achieves competitive results when compared to commonly used on-policy and off-policy RL", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 598, + 505, + 609 + ], + "spans": [ + { + "bbox": [ + 106, + 598, + 505, + 609 + ], + "score": 1.0, + "content": "algorithms, and can effectively incorporate fully off-policy data, which has been a challenge for other", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 608, + 505, + 621 + ], + "spans": [ + { + "bbox": [ + 105, + 608, + 505, + 621 + ], + "score": 1.0, + "content": "RL algorithms. Our derivation presents an interpretation of AWR as a constrained policy optimization", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 618, + 500, + 633 + ], + "spans": [ + { + "bbox": [ + 105, + 618, + 500, + 633 + ], + "score": 1.0, + "content": "procedure, and provides a theoretical analysis of the use of off-policy data with experience replay.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 34.5, + "bbox_fs": [ + 105, + 520, + 507, + 633 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 636, + 505, + 713 + ], + "lines": [ + { + "bbox": [ + 106, + 636, + 506, + 649 + ], + "spans": [ + { + "bbox": [ + 106, + 636, + 506, + 649 + ], + "score": 1.0, + "content": "We first revisit the original formulation of reward-weighted regression (RWR) (Peters & Schaal,", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 646, + 506, + 661 + ], + "spans": [ + { + "bbox": [ + 105, + 646, + 506, + 661 + ], + "score": 1.0, + "content": "2007), an on-policy RL method that utilizes supervised learning to perform policy updates, and", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 658, + 505, + 671 + ], + "spans": [ + { + "bbox": [ + 105, + 658, + 505, + 671 + ], + "score": 1.0, + "content": "then propose a number of new design decisions that significantly improve performance on a suite", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 667, + 505, + 683 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 505, + 683 + ], + "score": 1.0, + "content": "of standard control benchmark tasks. We then provide a theoretical analysis of AWR, including", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 680, + 505, + 693 + ], + "spans": [ + { + "bbox": [ + 105, + 680, + 505, + 693 + ], + "score": 1.0, + "content": "the capability to incorporate off-policy data with experience replay. Although the design of AWR", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 690, + 506, + 704 + ], + "spans": [ + { + "bbox": [ + 105, + 690, + 506, + 704 + ], + "score": 1.0, + "content": "involves only a few simple design decisions, we show experimentally that these additions provide", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 702, + 507, + 715 + ], + "spans": [ + { + "bbox": [ + 105, + 702, + 507, + 715 + ], + "score": 1.0, + "content": "for a large improvement over previous methods for regression-based policy search, such as RWR,", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 82, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 96 + ], + "score": 1.0, + "content": "while also being substantially simpler than more modern methods, such as MPO (Abdolmaleki", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "et al., 2018b). We show that AWR achieves competitive performance when compared to several", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 382, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 382, + 117 + ], + "score": 1.0, + "content": "well-established state-of-the-art on-policy and off-policy algorithms.", + "type": "text", + "cross_page": true + } + ], + "index": 2 + } + ], + "index": 43, + "bbox_fs": [ + 105, + 636, + 507, + 715 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 96 + ], + "score": 1.0, + "content": "while also being substantially simpler than more modern methods, such as MPO (Abdolmaleki", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "et al., 2018b). We show that AWR achieves competitive performance when compared to several", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 382, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 382, + 117 + ], + "score": 1.0, + "content": "well-established state-of-the-art on-policy and off-policy algorithms.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "title", + "bbox": [ + 107, + 126, + 208, + 138 + ], + "lines": [ + { + "bbox": [ + 105, + 125, + 209, + 141 + ], + "spans": [ + { + "bbox": [ + 105, + 125, + 209, + 141 + ], + "score": 1.0, + "content": "2 PRELIMINARIES", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 107, + 145, + 505, + 190 + ], + "lines": [ + { + "bbox": [ + 105, + 145, + 506, + 158 + ], + "spans": [ + { + "bbox": [ + 105, + 145, + 506, + 158 + ], + "score": 1.0, + "content": "In reinforcement learning, the objective is to learn a policy that maximizes an agent’s expected return.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 156, + 505, + 168 + ], + "spans": [ + { + "bbox": [ + 105, + 156, + 178, + 168 + ], + "score": 1.0, + "content": "At each time step", + "type": "text" + }, + { + "bbox": [ + 179, + 158, + 184, + 167 + ], + "score": 0.68, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 184, + 156, + 378, + 168 + ], + "score": 1.0, + "content": ", the agent observes the state of the environment", + "type": "text" + }, + { + "bbox": [ + 378, + 158, + 388, + 167 + ], + "score": 0.86, + "content": "\\mathbf { s } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 388, + 156, + 505, + 168 + ], + "score": 1.0, + "content": ", and samples an action from", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 168, + 506, + 180 + ], + "spans": [ + { + "bbox": [ + 105, + 168, + 141, + 180 + ], + "score": 1.0, + "content": "a policy", + "type": "text" + }, + { + "bbox": [ + 141, + 168, + 199, + 179 + ], + "score": 0.92, + "content": "\\mathbf { a } _ { t } \\sim \\pi ( \\mathbf { a } _ { t } | \\mathbf { s } _ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 168, + 460, + 180 + ], + "score": 1.0, + "content": ". The agent then applies that action, which results in a new state", + "type": "text" + }, + { + "bbox": [ + 460, + 169, + 479, + 179 + ], + "score": 0.88, + "content": "\\mathbf { s } _ { t + 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 480, + 168, + 506, + 180 + ], + "score": 1.0, + "content": "and a", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 178, + 504, + 190 + ], + "spans": [ + { + "bbox": [ + 106, + 178, + 162, + 190 + ], + "score": 1.0, + "content": "scalar reward", + "type": "text" + }, + { + "bbox": [ + 162, + 179, + 218, + 190 + ], + "score": 0.92, + "content": "r _ { t } = r ( \\mathbf { s } _ { t } , \\mathbf { a } _ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 178, + 478, + 190 + ], + "score": 1.0, + "content": ". The goal is to learn a policy that maximizes the expected return", + "type": "text" + }, + { + "bbox": [ + 479, + 178, + 500, + 190 + ], + "score": 0.92, + "content": "J ( \\pi )", + "type": "inline_equation" + }, + { + "bbox": [ + 500, + 178, + 504, + 190 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5.5 + }, + { + "type": "interline_equation", + "bbox": [ + 184, + 194, + 426, + 229 + ], + "lines": [ + { + "bbox": [ + 184, + 194, + 426, + 229 + ], + "spans": [ + { + "bbox": [ + 184, + 194, + 426, + 229 + ], + "score": 0.94, + "content": "J ( \\pi ) = \\mathbb { E } _ { \\tau \\sim p _ { \\pi } ( \\tau ) } \\left[ \\sum _ { t = 0 } ^ { \\infty } \\gamma ^ { t } r _ { t } \\right] = \\mathbb { E } _ { \\mathbf { s } \\sim d _ { \\pi } ( \\mathbf { s } ) , a \\sim \\pi ( \\mathbf { a } | \\mathbf { s } ) } \\left[ r ( \\mathbf { s } , \\mathbf { a } ) \\right] ,", + "type": "interline_equation", + "image_path": "e0c503e036e5cfe84a153fe26cebd382e9154913230b839cb64507e89cd48539.jpg" + } + ] + } + ], + "index": 8.5, + "virtual_lines": [ + { + "bbox": [ + 184, + 194, + 426, + 211.5 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 184, + 211.5, + 426, + 229.0 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 232, + 505, + 278 + ], + "lines": [ + { + "bbox": [ + 104, + 231, + 507, + 247 + ], + "spans": [ + { + "bbox": [ + 104, + 231, + 134, + 247 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 233, + 159, + 245 + ], + "score": 0.93, + "content": "p _ { \\pi } ( \\tau )", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 231, + 327, + 247 + ], + "score": 1.0, + "content": "represents the likelihood of a trajectory", + "type": "text" + }, + { + "bbox": [ + 327, + 233, + 470, + 245 + ], + "score": 0.89, + "content": "\\tau = \\{ ( \\mathbf { s } _ { 0 } , \\mathbf { a } _ { 0 } , r _ { 0 } ) , ( \\mathbf { s } _ { 1 } , \\mathbf { a } _ { 1 } , r _ { 1 } ) , \\ldots \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 470, + 231, + 507, + 247 + ], + "score": 1.0, + "content": "under a", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 104, + 243, + 506, + 259 + ], + "spans": [ + { + "bbox": [ + 104, + 243, + 135, + 259 + ], + "score": 1.0, + "content": "policy", + "type": "text" + }, + { + "bbox": [ + 136, + 246, + 143, + 254 + ], + "score": 0.76, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 143, + 243, + 167, + 259 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 167, + 244, + 212, + 256 + ], + "score": 0.92, + "content": "\\gamma \\in \\ [ 0 , 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 243, + 312, + 259 + ], + "score": 1.0, + "content": "is the discount factor.", + "type": "text" + }, + { + "bbox": [ + 313, + 244, + 442, + 257 + ], + "score": 0.91, + "content": "\\begin{array} { r } { d _ { \\pi } ( \\mathbf { s } ) \\ = \\ \\sum _ { t = 0 } ^ { \\infty } \\gamma ^ { t } p ( \\mathbf { s } _ { t } \\ = \\ \\mathbf { s } | \\pi ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 243, + 506, + 259 + ], + "score": 1.0, + "content": "represents the", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 255, + 505, + 268 + ], + "spans": [ + { + "bbox": [ + 105, + 255, + 376, + 268 + ], + "score": 1.0, + "content": "unnormalized discounted state distribution induced by the policy", + "type": "text" + }, + { + "bbox": [ + 377, + 258, + 384, + 265 + ], + "score": 0.7, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 255, + 505, + 268 + ], + "score": 1.0, + "content": "(Sutton & Barto, 1998), and", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 265, + 469, + 280 + ], + "spans": [ + { + "bbox": [ + 106, + 266, + 155, + 278 + ], + "score": 0.9, + "content": "p ( \\mathbf { s } _ { t } = \\mathbf { s } | \\boldsymbol { \\pi } )", + "type": "inline_equation" + }, + { + "bbox": [ + 155, + 265, + 397, + 280 + ], + "score": 1.0, + "content": "is the likelihood of the agent being in state s after following", + "type": "text" + }, + { + "bbox": [ + 397, + 268, + 404, + 276 + ], + "score": 0.79, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 405, + 265, + 419, + 280 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 420, + 267, + 425, + 276 + ], + "score": 0.77, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 425, + 265, + 469, + 280 + ], + "score": 1.0, + "content": "timesteps.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 11.5 + }, + { + "type": "text", + "bbox": [ + 106, + 282, + 505, + 349 + ], + "lines": [ + { + "bbox": [ + 106, + 282, + 506, + 295 + ], + "spans": [ + { + "bbox": [ + 106, + 282, + 506, + 295 + ], + "score": 1.0, + "content": "Our proposed AWR algorithm builds on ideas from reward-weighted regression (RWR) (Peters &", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 293, + 506, + 306 + ], + "spans": [ + { + "bbox": [ + 106, + 293, + 506, + 306 + ], + "score": 1.0, + "content": "Schaal, 2007), a policy search algorithm based on an expectation-maximization framework. At", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 304, + 505, + 317 + ], + "spans": [ + { + "bbox": [ + 106, + 304, + 459, + 317 + ], + "score": 1.0, + "content": "each iteration, the E-step constructs an estimate of the optimal policy according to", + "type": "text" + }, + { + "bbox": [ + 459, + 305, + 505, + 316 + ], + "score": 0.88, + "content": "\\pi ^ { * } ( \\mathbf { a } | \\mathbf { s } ) \\ \\propto ", + "type": "inline_equation" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 312, + 510, + 334 + ], + "spans": [ + { + "bbox": [ + 106, + 316, + 194, + 328 + ], + "score": 0.91, + "content": "\\pi _ { k } ( \\mathbf { a } | \\mathbf { s } ) \\mathrm { e x p } \\left( \\mathcal { R } _ { \\mathbf { s } , \\mathbf { a } } / \\beta \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 312, + 227, + 334 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 227, + 317, + 239, + 327 + ], + "score": 0.85, + "content": "\\pi _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 312, + 356, + 334 + ], + "score": 1.0, + "content": "represents the policy at the", + "type": "text" + }, + { + "bbox": [ + 357, + 316, + 363, + 326 + ], + "score": 0.56, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 312, + 413, + 334 + ], + "score": 1.0, + "content": "th iteration,", + "type": "text" + }, + { + "bbox": [ + 414, + 316, + 493, + 329 + ], + "score": 0.9, + "content": "\\begin{array} { r } { \\mathcal { R } _ { { \\bf s } , { \\bf a } } \\stackrel { - } { = } \\sum _ { t = 0 } ^ { \\infty } \\dot { \\gamma } ^ { t } r _ { t } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 494, + 312, + 510, + 334 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 326, + 506, + 340 + ], + "spans": [ + { + "bbox": [ + 105, + 326, + 169, + 340 + ], + "score": 1.0, + "content": "the return, and", + "type": "text" + }, + { + "bbox": [ + 169, + 328, + 196, + 338 + ], + "score": 0.9, + "content": "\\beta > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 196, + 326, + 419, + 340 + ], + "score": 1.0, + "content": "is a temperature parameter. Then the M-step projects", + "type": "text" + }, + { + "bbox": [ + 419, + 328, + 430, + 337 + ], + "score": 0.87, + "content": "\\pi ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 431, + 326, + 506, + 340 + ], + "score": 1.0, + "content": "onto the space of", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 104, + 337, + 378, + 351 + ], + "spans": [ + { + "bbox": [ + 104, + 337, + 378, + 351 + ], + "score": 1.0, + "content": "parameterized policies by solving a supervised regression problem:", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 16.5 + }, + { + "type": "interline_equation", + "bbox": [ + 166, + 348, + 444, + 376 + ], + "lines": [ + { + "bbox": [ + 166, + 348, + 444, + 376 + ], + "spans": [ + { + "bbox": [ + 166, + 348, + 444, + 376 + ], + "score": 0.92, + "content": "\\pi _ { k + 1 } = \\arg \\operatorname* { m a x } _ { \\pi } \\mathbb { E } _ { \\mathbf { s } \\sim d _ { \\pi _ { k } } ( \\mathbf { s } ) } \\mathbb { E } _ { \\mathbf { a } \\sim \\pi _ { k } ( \\mathbf { a } | \\mathbf { s } ) } \\left[ \\log \\pi ( \\mathbf { a } | \\mathbf { s } ) \\exp \\left( \\frac { 1 } { \\beta } \\mathcal { R } _ { \\mathbf { s } , \\mathbf { a } } \\right) \\right] .", + "type": "interline_equation", + "image_path": "042de5afeb8fefbbe2b6066e7b46598060b80efd9d882f8fd1161f8a72c47db5.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 166, + 348, + 444, + 357.3333333333333 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 166, + 357.3333333333333, + 444, + 366.66666666666663 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 166, + 366.66666666666663, + 444, + 375.99999999999994 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 379, + 504, + 402 + ], + "lines": [ + { + "bbox": [ + 106, + 378, + 505, + 392 + ], + "spans": [ + { + "bbox": [ + 106, + 378, + 342, + 392 + ], + "score": 1.0, + "content": "The RWR update can be interpreted as fitting a new policy", + "type": "text" + }, + { + "bbox": [ + 343, + 381, + 364, + 392 + ], + "score": 0.9, + "content": "\\pi _ { k + 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 365, + 378, + 505, + 392 + ], + "score": 1.0, + "content": "to samples from the current policy", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 107, + 390, + 486, + 404 + ], + "spans": [ + { + "bbox": [ + 107, + 393, + 118, + 402 + ], + "score": 0.79, + "content": "\\pi _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 118, + 390, + 486, + 404 + ], + "score": 1.0, + "content": ", where the likelihood of each action is weighted by the exponentiated return for that action.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5 + }, + { + "type": "title", + "bbox": [ + 107, + 412, + 323, + 425 + ], + "lines": [ + { + "bbox": [ + 104, + 411, + 323, + 427 + ], + "spans": [ + { + "bbox": [ + 104, + 411, + 323, + 427 + ], + "score": 1.0, + "content": "3 ADVANTAGE-WEIGHTED REGRESSION", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 106, + 431, + 506, + 568 + ], + "lines": [ + { + "bbox": [ + 105, + 432, + 505, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 432, + 505, + 444 + ], + "score": 1.0, + "content": "In this work, we present advantage-weighted regression (AWR), a simple off-policy RL algorithm", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 443, + 505, + 455 + ], + "spans": [ + { + "bbox": [ + 105, + 443, + 505, + 455 + ], + "score": 1.0, + "content": "based on reward-weighted regression. We first provide an overview of the AWR algorithm, and then", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 453, + 506, + 466 + ], + "spans": [ + { + "bbox": [ + 106, + 453, + 506, + 466 + ], + "score": 1.0, + "content": "describe its theoretical motivation and analyze its properties. The AWR algorithm is summarized", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 464, + 505, + 477 + ], + "spans": [ + { + "bbox": [ + 105, + 464, + 232, + 477 + ], + "score": 1.0, + "content": "in Algorithm 1. Each iteration", + "type": "text" + }, + { + "bbox": [ + 232, + 465, + 239, + 474 + ], + "score": 0.82, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 464, + 505, + 477 + ], + "score": 1.0, + "content": "of AWR consists of the following simple steps. First, the current", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 475, + 506, + 488 + ], + "spans": [ + { + "bbox": [ + 106, + 475, + 133, + 488 + ], + "score": 1.0, + "content": "policy", + "type": "text" + }, + { + "bbox": [ + 134, + 475, + 166, + 487 + ], + "score": 0.92, + "content": "\\pi _ { k } ( \\mathbf { a } | \\mathbf { s } )", + "type": "inline_equation" + }, + { + "bbox": [ + 166, + 475, + 327, + 488 + ], + "score": 1.0, + "content": "is used to sample a batch of trajectories", + "type": "text" + }, + { + "bbox": [ + 327, + 475, + 346, + 488 + ], + "score": 0.93, + "content": "\\{ \\tau _ { i } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 475, + 506, + 488 + ], + "score": 1.0, + "content": "that are then stored in the replay buffer", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 107, + 485, + 506, + 499 + ], + "spans": [ + { + "bbox": [ + 107, + 487, + 115, + 496 + ], + "score": 0.78, + "content": "\\mathcal { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 116, + 485, + 506, + 499 + ], + "score": 1.0, + "content": ", which is structured as a first-in first-out (FIFO) queue (Mnih et al., 2015). Then, a value function", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 107, + 495, + 507, + 531 + ], + "spans": [ + { + "bbox": [ + 107, + 497, + 135, + 510 + ], + "score": 0.89, + "content": "V _ { k } ^ { { \\mathcal { D } } } ( { \\mathbf s } )", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 495, + 198, + 531 + ], + "score": 1.0, + "content": "is fitted to all eturn estimates", + "type": "text" + }, + { + "bbox": [ + 275, + 495, + 328, + 531 + ], + "score": 1.0, + "content": "eplay buffer . Finally, the", + "type": "text" + }, + { + "bbox": [ + 328, + 498, + 337, + 507 + ], + "score": 0.81, + "content": "\\mathcal { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 495, + 507, + 531 + ], + "score": 1.0, + "content": ", which can be done with simple Monteme buffer is used to fit a new policy using", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 198, + 509, + 275, + 524 + ], + "spans": [ + { + "bbox": [ + 198, + 509, + 275, + 524 + ], + "score": 0.94, + "content": "\\begin{array} { r } { \\mathcal { R } _ { { \\bf s } , { \\bf a } } ^ { D } = \\sum _ { t = 0 } ^ { T } \\gamma ^ { t } r _ { t } } \\end{array}", + "type": "inline_equation" + } + ], + "index": 33 + }, + { + "bbox": [ + 101, + 522, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 101, + 522, + 208, + 552 + ], + "score": 1.0, + "content": "advantage-weighted regreexponentiated advantage", + "type": "text" + }, + { + "bbox": [ + 208, + 532, + 276, + 547 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\exp ( \\frac { 1 } { \\beta } A ^ { D } ( { \\bf s } , { \\bf a } ) ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 276, + 522, + 395, + 552 + ], + "score": 1.0, + "content": "state-action pair in the buffer , with the advantage given by", + "type": "text" + }, + { + "bbox": [ + 395, + 532, + 505, + 546 + ], + "score": 0.93, + "content": "A ^ { \\mathcal { D } } ( \\mathbf { { s } } , \\mathbf { { a } } ) = \\mathcal { R } _ { { \\mathbf { s } } , \\mathbf { { a } } } ^ { \\mathcal { D } } - \\mathbf { \\mathcal { V } } ^ { \\mathcal { D } } ( \\mathbf { { s } } )", + "type": "inline_equation" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 545, + 506, + 558 + ], + "spans": [ + { + "bbox": [ + 105, + 545, + 124, + 558 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 546, + 132, + 557 + ], + "score": 0.85, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 132, + 545, + 506, + 558 + ], + "score": 1.0, + "content": "is a hyperparameter. In the following subsections, we first motivate AWR as a constrained", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 556, + 449, + 570 + ], + "spans": [ + { + "bbox": [ + 105, + 556, + 449, + 570 + ], + "score": 1.0, + "content": "policy search problem, and then extend our analysis to incorporate experience replay.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 31 + }, + { + "type": "title", + "bbox": [ + 107, + 581, + 186, + 592 + ], + "lines": [ + { + "bbox": [ + 105, + 580, + 187, + 594 + ], + "spans": [ + { + "bbox": [ + 105, + 580, + 187, + 594 + ], + "score": 1.0, + "content": "3.1 DERIVATION", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 106, + 595, + 505, + 674 + ], + "lines": [ + { + "bbox": [ + 105, + 596, + 506, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 506, + 609 + ], + "score": 1.0, + "content": "In this section, we derive the AWR algorithm as an approximate optimization of a constrained", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 607, + 506, + 621 + ], + "spans": [ + { + "bbox": [ + 105, + 607, + 506, + 621 + ], + "score": 1.0, + "content": "policy search problem. Our goal is to find a policy that maximizes the expected improvement", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 107, + 618, + 506, + 631 + ], + "spans": [ + { + "bbox": [ + 107, + 618, + 192, + 630 + ], + "score": 0.92, + "content": "\\mathsf { \\bar { \\eta } } ( \\pi ) \\mathsf { \\bar { = } } J ( \\pi ) \\bar { - } J ( \\mu )", + "type": "inline_equation" + }, + { + "bbox": [ + 193, + 618, + 288, + 631 + ], + "score": 1.0, + "content": "over a sampling policy", + "type": "text" + }, + { + "bbox": [ + 288, + 618, + 315, + 630 + ], + "score": 0.92, + "content": "\\mu ( \\mathbf { a } | \\mathbf { s } )", + "type": "inline_equation" + }, + { + "bbox": [ + 315, + 618, + 506, + 631 + ], + "score": 1.0, + "content": ". We first derive AWR for the setting where the", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 630, + 506, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 630, + 506, + 641 + ], + "score": 1.0, + "content": "sampling policy is a single Markovian policy. Then, in the next section, we extend our result to", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 640, + 505, + 653 + ], + "spans": [ + { + "bbox": [ + 105, + 640, + 484, + 653 + ], + "score": 1.0, + "content": "data from multiple policies, as in the case of experience replay. The expected improvement", + "type": "text" + }, + { + "bbox": [ + 484, + 640, + 505, + 652 + ], + "score": 0.91, + "content": "\\eta ( \\pi )", + "type": "inline_equation" + } + ], + "index": 42 + }, + { + "bbox": [ + 104, + 649, + 507, + 666 + ], + "spans": [ + { + "bbox": [ + 104, + 649, + 281, + 666 + ], + "score": 1.0, + "content": "can be expressed in terms of the advantage", + "type": "text" + }, + { + "bbox": [ + 281, + 651, + 387, + 664 + ], + "score": 0.92, + "content": "{ \\mathbf { } } A ^ { \\mu } ( \\mathbf { { \\bar { s } } } , \\mathbf { { a } } ) = { \\mathbf { } } { \\mathcal { R } } _ { { \\mathbf { s } } , \\mathbf { { a } } } ^ { \\mu } - { \\mathbf { \\bar { \\psi } } } V ^ { \\mu } ( \\mathbf { s } )", + "type": "inline_equation" + }, + { + "bbox": [ + 388, + 649, + 450, + 666 + ], + "score": 1.0, + "content": "with respect to", + "type": "text" + }, + { + "bbox": [ + 451, + 653, + 458, + 663 + ], + "score": 0.82, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 458, + 649, + 507, + 666 + ], + "score": 1.0, + "content": "(Kakade &", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 662, + 269, + 675 + ], + "spans": [ + { + "bbox": [ + 105, + 662, + 269, + 675 + ], + "score": 1.0, + "content": "Langford, 2002; Schulman et al., 2015):", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 41 + }, + { + "type": "interline_equation", + "bbox": [ + 215, + 678, + 396, + 693 + ], + "lines": [ + { + "bbox": [ + 215, + 678, + 396, + 693 + ], + "spans": [ + { + "bbox": [ + 215, + 678, + 396, + 693 + ], + "score": 0.92, + "content": "\\eta ( \\pi ) = \\mathbb { E } _ { \\mathbf { s } \\sim d _ { \\pi } ( \\mathbf { s } ) } \\mathbb { E } _ { \\mathbf { a } \\sim \\pi ( \\mathbf { a } | \\mathbf { s } ) } \\left[ \\mathcal { R } _ { \\mathbf { s } , \\mathbf { a } } ^ { \\mu } - V ^ { \\mu } ( \\mathbf { s } ) \\right] ,", + "type": "interline_equation", + "image_path": "f7e35c33a05ef422d5a1e5f469105454feba29623b920f07f1e6b186e60beec8.jpg" + } + ] + } + ], + "index": 45, + "virtual_lines": [ + { + "bbox": [ + 215, + 678, + 396, + 693 + ], + "spans": [], + "index": 45 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 696, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 695, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 695, + 133, + 712 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 697, + 154, + 710 + ], + "score": 0.91, + "content": "\\mathcal { R } _ { \\mathbf { s } , \\mathbf { a } } ^ { \\mu }", + "type": "inline_equation" + }, + { + "bbox": [ + 155, + 695, + 466, + 712 + ], + "score": 1.0, + "content": "denotes the return obtained by performing action a in state s and following", + "type": "text" + }, + { + "bbox": [ + 466, + 699, + 474, + 708 + ], + "score": 0.79, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 695, + 506, + 712 + ], + "score": 1.0, + "content": "for the", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 104, + 708, + 507, + 725 + ], + "spans": [ + { + "bbox": [ + 104, + 708, + 211, + 725 + ], + "score": 1.0, + "content": "following timesteps, and", + "type": "text" + }, + { + "bbox": [ + 211, + 709, + 303, + 723 + ], + "score": 0.88, + "content": "\\begin{array} { r } { V ^ { \\mu } ( \\mathbf { s } ) = \\int _ { a . } \\mu ( \\mathbf { a } | \\mathbf { s } ) \\mathcal { R } _ { \\mathbf { s } } ^ { \\mathbf { a } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 710, + 318, + 720 + ], + "score": 0.26, + "content": "d \\mathbf { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 708, + 471, + 725 + ], + "score": 1.0, + "content": "corresponds to the value function of", + "type": "text" + }, + { + "bbox": [ + 471, + 711, + 478, + 721 + ], + "score": 0.81, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 479, + 708, + 507, + 725 + ], + "score": 1.0, + "content": ". This", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "objective differs from the ones used in the derivations of related algorithms, such as RWR and", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 47 + } + ], + "page_idx": 1, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 27, + 307, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 763 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 763 + ], + "score": 1.0, + "content": "2", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 116 + ], + "lines": [], + "index": 1, + "bbox_fs": [ + 105, + 82, + 505, + 117 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 107, + 126, + 208, + 138 + ], + "lines": [ + { + "bbox": [ + 105, + 125, + 209, + 141 + ], + "spans": [ + { + "bbox": [ + 105, + 125, + 209, + 141 + ], + "score": 1.0, + "content": "2 PRELIMINARIES", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 107, + 145, + 505, + 190 + ], + "lines": [ + { + "bbox": [ + 105, + 145, + 506, + 158 + ], + "spans": [ + { + "bbox": [ + 105, + 145, + 506, + 158 + ], + "score": 1.0, + "content": "In reinforcement learning, the objective is to learn a policy that maximizes an agent’s expected return.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 156, + 505, + 168 + ], + "spans": [ + { + "bbox": [ + 105, + 156, + 178, + 168 + ], + "score": 1.0, + "content": "At each time step", + "type": "text" + }, + { + "bbox": [ + 179, + 158, + 184, + 167 + ], + "score": 0.68, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 184, + 156, + 378, + 168 + ], + "score": 1.0, + "content": ", the agent observes the state of the environment", + "type": "text" + }, + { + "bbox": [ + 378, + 158, + 388, + 167 + ], + "score": 0.86, + "content": "\\mathbf { s } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 388, + 156, + 505, + 168 + ], + "score": 1.0, + "content": ", and samples an action from", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 168, + 506, + 180 + ], + "spans": [ + { + "bbox": [ + 105, + 168, + 141, + 180 + ], + "score": 1.0, + "content": "a policy", + "type": "text" + }, + { + "bbox": [ + 141, + 168, + 199, + 179 + ], + "score": 0.92, + "content": "\\mathbf { a } _ { t } \\sim \\pi ( \\mathbf { a } _ { t } | \\mathbf { s } _ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 168, + 460, + 180 + ], + "score": 1.0, + "content": ". The agent then applies that action, which results in a new state", + "type": "text" + }, + { + "bbox": [ + 460, + 169, + 479, + 179 + ], + "score": 0.88, + "content": "\\mathbf { s } _ { t + 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 480, + 168, + 506, + 180 + ], + "score": 1.0, + "content": "and a", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 178, + 504, + 190 + ], + "spans": [ + { + "bbox": [ + 106, + 178, + 162, + 190 + ], + "score": 1.0, + "content": "scalar reward", + "type": "text" + }, + { + "bbox": [ + 162, + 179, + 218, + 190 + ], + "score": 0.92, + "content": "r _ { t } = r ( \\mathbf { s } _ { t } , \\mathbf { a } _ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 178, + 478, + 190 + ], + "score": 1.0, + "content": ". The goal is to learn a policy that maximizes the expected return", + "type": "text" + }, + { + "bbox": [ + 479, + 178, + 500, + 190 + ], + "score": 0.92, + "content": "J ( \\pi )", + "type": "inline_equation" + }, + { + "bbox": [ + 500, + 178, + 504, + 190 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5.5, + "bbox_fs": [ + 105, + 145, + 506, + 190 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 184, + 194, + 426, + 229 + ], + "lines": [ + { + "bbox": [ + 184, + 194, + 426, + 229 + ], + "spans": [ + { + "bbox": [ + 184, + 194, + 426, + 229 + ], + "score": 0.94, + "content": "J ( \\pi ) = \\mathbb { E } _ { \\tau \\sim p _ { \\pi } ( \\tau ) } \\left[ \\sum _ { t = 0 } ^ { \\infty } \\gamma ^ { t } r _ { t } \\right] = \\mathbb { E } _ { \\mathbf { s } \\sim d _ { \\pi } ( \\mathbf { s } ) , a \\sim \\pi ( \\mathbf { a } | \\mathbf { s } ) } \\left[ r ( \\mathbf { s } , \\mathbf { a } ) \\right] ,", + "type": "interline_equation", + "image_path": "e0c503e036e5cfe84a153fe26cebd382e9154913230b839cb64507e89cd48539.jpg" + } + ] + } + ], + "index": 8.5, + "virtual_lines": [ + { + "bbox": [ + 184, + 194, + 426, + 211.5 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 184, + 211.5, + 426, + 229.0 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 232, + 505, + 278 + ], + "lines": [ + { + "bbox": [ + 104, + 231, + 507, + 247 + ], + "spans": [ + { + "bbox": [ + 104, + 231, + 134, + 247 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 233, + 159, + 245 + ], + "score": 0.93, + "content": "p _ { \\pi } ( \\tau )", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 231, + 327, + 247 + ], + "score": 1.0, + "content": "represents the likelihood of a trajectory", + "type": "text" + }, + { + "bbox": [ + 327, + 233, + 470, + 245 + ], + "score": 0.89, + "content": "\\tau = \\{ ( \\mathbf { s } _ { 0 } , \\mathbf { a } _ { 0 } , r _ { 0 } ) , ( \\mathbf { s } _ { 1 } , \\mathbf { a } _ { 1 } , r _ { 1 } ) , \\ldots \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 470, + 231, + 507, + 247 + ], + "score": 1.0, + "content": "under a", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 104, + 243, + 506, + 259 + ], + "spans": [ + { + "bbox": [ + 104, + 243, + 135, + 259 + ], + "score": 1.0, + "content": "policy", + "type": "text" + }, + { + "bbox": [ + 136, + 246, + 143, + 254 + ], + "score": 0.76, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 143, + 243, + 167, + 259 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 167, + 244, + 212, + 256 + ], + "score": 0.92, + "content": "\\gamma \\in \\ [ 0 , 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 243, + 312, + 259 + ], + "score": 1.0, + "content": "is the discount factor.", + "type": "text" + }, + { + "bbox": [ + 313, + 244, + 442, + 257 + ], + "score": 0.91, + "content": "\\begin{array} { r } { d _ { \\pi } ( \\mathbf { s } ) \\ = \\ \\sum _ { t = 0 } ^ { \\infty } \\gamma ^ { t } p ( \\mathbf { s } _ { t } \\ = \\ \\mathbf { s } | \\pi ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 243, + 506, + 259 + ], + "score": 1.0, + "content": "represents the", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 255, + 505, + 268 + ], + "spans": [ + { + "bbox": [ + 105, + 255, + 376, + 268 + ], + "score": 1.0, + "content": "unnormalized discounted state distribution induced by the policy", + "type": "text" + }, + { + "bbox": [ + 377, + 258, + 384, + 265 + ], + "score": 0.7, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 255, + 505, + 268 + ], + "score": 1.0, + "content": "(Sutton & Barto, 1998), and", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 265, + 469, + 280 + ], + "spans": [ + { + "bbox": [ + 106, + 266, + 155, + 278 + ], + "score": 0.9, + "content": "p ( \\mathbf { s } _ { t } = \\mathbf { s } | \\boldsymbol { \\pi } )", + "type": "inline_equation" + }, + { + "bbox": [ + 155, + 265, + 397, + 280 + ], + "score": 1.0, + "content": "is the likelihood of the agent being in state s after following", + "type": "text" + }, + { + "bbox": [ + 397, + 268, + 404, + 276 + ], + "score": 0.79, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 405, + 265, + 419, + 280 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 420, + 267, + 425, + 276 + ], + "score": 0.77, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 425, + 265, + 469, + 280 + ], + "score": 1.0, + "content": "timesteps.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 11.5, + "bbox_fs": [ + 104, + 231, + 507, + 280 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 282, + 505, + 349 + ], + "lines": [ + { + "bbox": [ + 106, + 282, + 506, + 295 + ], + "spans": [ + { + "bbox": [ + 106, + 282, + 506, + 295 + ], + "score": 1.0, + "content": "Our proposed AWR algorithm builds on ideas from reward-weighted regression (RWR) (Peters &", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 293, + 506, + 306 + ], + "spans": [ + { + "bbox": [ + 106, + 293, + 506, + 306 + ], + "score": 1.0, + "content": "Schaal, 2007), a policy search algorithm based on an expectation-maximization framework. At", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 304, + 505, + 317 + ], + "spans": [ + { + "bbox": [ + 106, + 304, + 459, + 317 + ], + "score": 1.0, + "content": "each iteration, the E-step constructs an estimate of the optimal policy according to", + "type": "text" + }, + { + "bbox": [ + 459, + 305, + 505, + 316 + ], + "score": 0.88, + "content": "\\pi ^ { * } ( \\mathbf { a } | \\mathbf { s } ) \\ \\propto ", + "type": "inline_equation" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 312, + 510, + 334 + ], + "spans": [ + { + "bbox": [ + 106, + 316, + 194, + 328 + ], + "score": 0.91, + "content": "\\pi _ { k } ( \\mathbf { a } | \\mathbf { s } ) \\mathrm { e x p } \\left( \\mathcal { R } _ { \\mathbf { s } , \\mathbf { a } } / \\beta \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 312, + 227, + 334 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 227, + 317, + 239, + 327 + ], + "score": 0.85, + "content": "\\pi _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 312, + 356, + 334 + ], + "score": 1.0, + "content": "represents the policy at the", + "type": "text" + }, + { + "bbox": [ + 357, + 316, + 363, + 326 + ], + "score": 0.56, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 312, + 413, + 334 + ], + "score": 1.0, + "content": "th iteration,", + "type": "text" + }, + { + "bbox": [ + 414, + 316, + 493, + 329 + ], + "score": 0.9, + "content": "\\begin{array} { r } { \\mathcal { R } _ { { \\bf s } , { \\bf a } } \\stackrel { - } { = } \\sum _ { t = 0 } ^ { \\infty } \\dot { \\gamma } ^ { t } r _ { t } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 494, + 312, + 510, + 334 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 326, + 506, + 340 + ], + "spans": [ + { + "bbox": [ + 105, + 326, + 169, + 340 + ], + "score": 1.0, + "content": "the return, and", + "type": "text" + }, + { + "bbox": [ + 169, + 328, + 196, + 338 + ], + "score": 0.9, + "content": "\\beta > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 196, + 326, + 419, + 340 + ], + "score": 1.0, + "content": "is a temperature parameter. Then the M-step projects", + "type": "text" + }, + { + "bbox": [ + 419, + 328, + 430, + 337 + ], + "score": 0.87, + "content": "\\pi ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 431, + 326, + 506, + 340 + ], + "score": 1.0, + "content": "onto the space of", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 104, + 337, + 378, + 351 + ], + "spans": [ + { + "bbox": [ + 104, + 337, + 378, + 351 + ], + "score": 1.0, + "content": "parameterized policies by solving a supervised regression problem:", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 16.5, + "bbox_fs": [ + 104, + 282, + 510, + 351 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 166, + 348, + 444, + 376 + ], + "lines": [ + { + "bbox": [ + 166, + 348, + 444, + 376 + ], + "spans": [ + { + "bbox": [ + 166, + 348, + 444, + 376 + ], + "score": 0.92, + "content": "\\pi _ { k + 1 } = \\arg \\operatorname* { m a x } _ { \\pi } \\mathbb { E } _ { \\mathbf { s } \\sim d _ { \\pi _ { k } } ( \\mathbf { s } ) } \\mathbb { E } _ { \\mathbf { a } \\sim \\pi _ { k } ( \\mathbf { a } | \\mathbf { s } ) } \\left[ \\log \\pi ( \\mathbf { a } | \\mathbf { s } ) \\exp \\left( \\frac { 1 } { \\beta } \\mathcal { R } _ { \\mathbf { s } , \\mathbf { a } } \\right) \\right] .", + "type": "interline_equation", + "image_path": "042de5afeb8fefbbe2b6066e7b46598060b80efd9d882f8fd1161f8a72c47db5.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 166, + 348, + 444, + 357.3333333333333 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 166, + 357.3333333333333, + 444, + 366.66666666666663 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 166, + 366.66666666666663, + 444, + 375.99999999999994 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 379, + 504, + 402 + ], + "lines": [ + { + "bbox": [ + 106, + 378, + 505, + 392 + ], + "spans": [ + { + "bbox": [ + 106, + 378, + 342, + 392 + ], + "score": 1.0, + "content": "The RWR update can be interpreted as fitting a new policy", + "type": "text" + }, + { + "bbox": [ + 343, + 381, + 364, + 392 + ], + "score": 0.9, + "content": "\\pi _ { k + 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 365, + 378, + 505, + 392 + ], + "score": 1.0, + "content": "to samples from the current policy", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 107, + 390, + 486, + 404 + ], + "spans": [ + { + "bbox": [ + 107, + 393, + 118, + 402 + ], + "score": 0.79, + "content": "\\pi _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 118, + 390, + 486, + 404 + ], + "score": 1.0, + "content": ", where the likelihood of each action is weighted by the exponentiated return for that action.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5, + "bbox_fs": [ + 106, + 378, + 505, + 404 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 412, + 323, + 425 + ], + "lines": [ + { + "bbox": [ + 104, + 411, + 323, + 427 + ], + "spans": [ + { + "bbox": [ + 104, + 411, + 323, + 427 + ], + "score": 1.0, + "content": "3 ADVANTAGE-WEIGHTED REGRESSION", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 106, + 431, + 506, + 568 + ], + "lines": [ + { + "bbox": [ + 105, + 432, + 505, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 432, + 505, + 444 + ], + "score": 1.0, + "content": "In this work, we present advantage-weighted regression (AWR), a simple off-policy RL algorithm", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 443, + 505, + 455 + ], + "spans": [ + { + "bbox": [ + 105, + 443, + 505, + 455 + ], + "score": 1.0, + "content": "based on reward-weighted regression. We first provide an overview of the AWR algorithm, and then", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 453, + 506, + 466 + ], + "spans": [ + { + "bbox": [ + 106, + 453, + 506, + 466 + ], + "score": 1.0, + "content": "describe its theoretical motivation and analyze its properties. The AWR algorithm is summarized", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 464, + 505, + 477 + ], + "spans": [ + { + "bbox": [ + 105, + 464, + 232, + 477 + ], + "score": 1.0, + "content": "in Algorithm 1. Each iteration", + "type": "text" + }, + { + "bbox": [ + 232, + 465, + 239, + 474 + ], + "score": 0.82, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 464, + 505, + 477 + ], + "score": 1.0, + "content": "of AWR consists of the following simple steps. First, the current", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 475, + 506, + 488 + ], + "spans": [ + { + "bbox": [ + 106, + 475, + 133, + 488 + ], + "score": 1.0, + "content": "policy", + "type": "text" + }, + { + "bbox": [ + 134, + 475, + 166, + 487 + ], + "score": 0.92, + "content": "\\pi _ { k } ( \\mathbf { a } | \\mathbf { s } )", + "type": "inline_equation" + }, + { + "bbox": [ + 166, + 475, + 327, + 488 + ], + "score": 1.0, + "content": "is used to sample a batch of trajectories", + "type": "text" + }, + { + "bbox": [ + 327, + 475, + 346, + 488 + ], + "score": 0.93, + "content": "\\{ \\tau _ { i } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 475, + 506, + 488 + ], + "score": 1.0, + "content": "that are then stored in the replay buffer", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 107, + 485, + 506, + 499 + ], + "spans": [ + { + "bbox": [ + 107, + 487, + 115, + 496 + ], + "score": 0.78, + "content": "\\mathcal { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 116, + 485, + 506, + 499 + ], + "score": 1.0, + "content": ", which is structured as a first-in first-out (FIFO) queue (Mnih et al., 2015). Then, a value function", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 107, + 495, + 507, + 531 + ], + "spans": [ + { + "bbox": [ + 107, + 497, + 135, + 510 + ], + "score": 0.89, + "content": "V _ { k } ^ { { \\mathcal { D } } } ( { \\mathbf s } )", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 495, + 198, + 531 + ], + "score": 1.0, + "content": "is fitted to all eturn estimates", + "type": "text" + }, + { + "bbox": [ + 275, + 495, + 328, + 531 + ], + "score": 1.0, + "content": "eplay buffer . Finally, the", + "type": "text" + }, + { + "bbox": [ + 328, + 498, + 337, + 507 + ], + "score": 0.81, + "content": "\\mathcal { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 495, + 507, + 531 + ], + "score": 1.0, + "content": ", which can be done with simple Monteme buffer is used to fit a new policy using", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 198, + 509, + 275, + 524 + ], + "spans": [ + { + "bbox": [ + 198, + 509, + 275, + 524 + ], + "score": 0.94, + "content": "\\begin{array} { r } { \\mathcal { R } _ { { \\bf s } , { \\bf a } } ^ { D } = \\sum _ { t = 0 } ^ { T } \\gamma ^ { t } r _ { t } } \\end{array}", + "type": "inline_equation" + } + ], + "index": 33 + }, + { + "bbox": [ + 101, + 522, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 101, + 522, + 208, + 552 + ], + "score": 1.0, + "content": "advantage-weighted regreexponentiated advantage", + "type": "text" + }, + { + "bbox": [ + 208, + 532, + 276, + 547 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\exp ( \\frac { 1 } { \\beta } A ^ { D } ( { \\bf s } , { \\bf a } ) ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 276, + 522, + 395, + 552 + ], + "score": 1.0, + "content": "state-action pair in the buffer , with the advantage given by", + "type": "text" + }, + { + "bbox": [ + 395, + 532, + 505, + 546 + ], + "score": 0.93, + "content": "A ^ { \\mathcal { D } } ( \\mathbf { { s } } , \\mathbf { { a } } ) = \\mathcal { R } _ { { \\mathbf { s } } , \\mathbf { { a } } } ^ { \\mathcal { D } } - \\mathbf { \\mathcal { V } } ^ { \\mathcal { D } } ( \\mathbf { { s } } )", + "type": "inline_equation" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 545, + 506, + 558 + ], + "spans": [ + { + "bbox": [ + 105, + 545, + 124, + 558 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 546, + 132, + 557 + ], + "score": 0.85, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 132, + 545, + 506, + 558 + ], + "score": 1.0, + "content": "is a hyperparameter. In the following subsections, we first motivate AWR as a constrained", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 556, + 449, + 570 + ], + "spans": [ + { + "bbox": [ + 105, + 556, + 449, + 570 + ], + "score": 1.0, + "content": "policy search problem, and then extend our analysis to incorporate experience replay.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 31, + "bbox_fs": [ + 101, + 432, + 507, + 570 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 581, + 186, + 592 + ], + "lines": [ + { + "bbox": [ + 105, + 580, + 187, + 594 + ], + "spans": [ + { + "bbox": [ + 105, + 580, + 187, + 594 + ], + "score": 1.0, + "content": "3.1 DERIVATION", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 106, + 595, + 505, + 674 + ], + "lines": [ + { + "bbox": [ + 105, + 596, + 506, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 506, + 609 + ], + "score": 1.0, + "content": "In this section, we derive the AWR algorithm as an approximate optimization of a constrained", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 607, + 506, + 621 + ], + "spans": [ + { + "bbox": [ + 105, + 607, + 506, + 621 + ], + "score": 1.0, + "content": "policy search problem. Our goal is to find a policy that maximizes the expected improvement", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 107, + 618, + 506, + 631 + ], + "spans": [ + { + "bbox": [ + 107, + 618, + 192, + 630 + ], + "score": 0.92, + "content": "\\mathsf { \\bar { \\eta } } ( \\pi ) \\mathsf { \\bar { = } } J ( \\pi ) \\bar { - } J ( \\mu )", + "type": "inline_equation" + }, + { + "bbox": [ + 193, + 618, + 288, + 631 + ], + "score": 1.0, + "content": "over a sampling policy", + "type": "text" + }, + { + "bbox": [ + 288, + 618, + 315, + 630 + ], + "score": 0.92, + "content": "\\mu ( \\mathbf { a } | \\mathbf { s } )", + "type": "inline_equation" + }, + { + "bbox": [ + 315, + 618, + 506, + 631 + ], + "score": 1.0, + "content": ". We first derive AWR for the setting where the", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 630, + 506, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 630, + 506, + 641 + ], + "score": 1.0, + "content": "sampling policy is a single Markovian policy. Then, in the next section, we extend our result to", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 640, + 505, + 653 + ], + "spans": [ + { + "bbox": [ + 105, + 640, + 484, + 653 + ], + "score": 1.0, + "content": "data from multiple policies, as in the case of experience replay. The expected improvement", + "type": "text" + }, + { + "bbox": [ + 484, + 640, + 505, + 652 + ], + "score": 0.91, + "content": "\\eta ( \\pi )", + "type": "inline_equation" + } + ], + "index": 42 + }, + { + "bbox": [ + 104, + 649, + 507, + 666 + ], + "spans": [ + { + "bbox": [ + 104, + 649, + 281, + 666 + ], + "score": 1.0, + "content": "can be expressed in terms of the advantage", + "type": "text" + }, + { + "bbox": [ + 281, + 651, + 387, + 664 + ], + "score": 0.92, + "content": "{ \\mathbf { } } A ^ { \\mu } ( \\mathbf { { \\bar { s } } } , \\mathbf { { a } } ) = { \\mathbf { } } { \\mathcal { R } } _ { { \\mathbf { s } } , \\mathbf { { a } } } ^ { \\mu } - { \\mathbf { \\bar { \\psi } } } V ^ { \\mu } ( \\mathbf { s } )", + "type": "inline_equation" + }, + { + "bbox": [ + 388, + 649, + 450, + 666 + ], + "score": 1.0, + "content": "with respect to", + "type": "text" + }, + { + "bbox": [ + 451, + 653, + 458, + 663 + ], + "score": 0.82, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 458, + 649, + 507, + 666 + ], + "score": 1.0, + "content": "(Kakade &", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 662, + 269, + 675 + ], + "spans": [ + { + "bbox": [ + 105, + 662, + 269, + 675 + ], + "score": 1.0, + "content": "Langford, 2002; Schulman et al., 2015):", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 41, + "bbox_fs": [ + 104, + 596, + 507, + 675 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 215, + 678, + 396, + 693 + ], + "lines": [ + { + "bbox": [ + 215, + 678, + 396, + 693 + ], + "spans": [ + { + "bbox": [ + 215, + 678, + 396, + 693 + ], + "score": 0.92, + "content": "\\eta ( \\pi ) = \\mathbb { E } _ { \\mathbf { s } \\sim d _ { \\pi } ( \\mathbf { s } ) } \\mathbb { E } _ { \\mathbf { a } \\sim \\pi ( \\mathbf { a } | \\mathbf { s } ) } \\left[ \\mathcal { R } _ { \\mathbf { s } , \\mathbf { a } } ^ { \\mu } - V ^ { \\mu } ( \\mathbf { s } ) \\right] ,", + "type": "interline_equation", + "image_path": "f7e35c33a05ef422d5a1e5f469105454feba29623b920f07f1e6b186e60beec8.jpg" + } + ] + } + ], + "index": 45, + "virtual_lines": [ + { + "bbox": [ + 215, + 678, + 396, + 693 + ], + "spans": [], + "index": 45 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 696, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 695, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 695, + 133, + 712 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 697, + 154, + 710 + ], + "score": 0.91, + "content": "\\mathcal { R } _ { \\mathbf { s } , \\mathbf { a } } ^ { \\mu }", + "type": "inline_equation" + }, + { + "bbox": [ + 155, + 695, + 466, + 712 + ], + "score": 1.0, + "content": "denotes the return obtained by performing action a in state s and following", + "type": "text" + }, + { + "bbox": [ + 466, + 699, + 474, + 708 + ], + "score": 0.79, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 695, + 506, + 712 + ], + "score": 1.0, + "content": "for the", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 104, + 708, + 507, + 725 + ], + "spans": [ + { + "bbox": [ + 104, + 708, + 211, + 725 + ], + "score": 1.0, + "content": "following timesteps, and", + "type": "text" + }, + { + "bbox": [ + 211, + 709, + 303, + 723 + ], + "score": 0.88, + "content": "\\begin{array} { r } { V ^ { \\mu } ( \\mathbf { s } ) = \\int _ { a . } \\mu ( \\mathbf { a } | \\mathbf { s } ) \\mathcal { R } _ { \\mathbf { s } } ^ { \\mathbf { a } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 710, + 318, + 720 + ], + "score": 0.26, + "content": "d \\mathbf { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 708, + 471, + 725 + ], + "score": 1.0, + "content": "corresponds to the value function of", + "type": "text" + }, + { + "bbox": [ + 471, + 711, + 478, + 721 + ], + "score": 0.81, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 479, + 708, + 507, + 725 + ], + "score": 1.0, + "content": ". This", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "objective differs from the ones used in the derivations of related algorithms, such as RWR and", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 47, + "bbox_fs": [ + 104, + 695, + 507, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 82, + 293, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 294, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 294, + 96 + ], + "score": 1.0, + "content": "Algorithm 1 Advantage-Weighted Regression", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "table", + "bbox": [ + 109, + 97, + 403, + 191 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 109, + 97, + 403, + 191 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 97, + 402, + 191 + ], + "spans": [ + { + "bbox": [ + 109, + 97, + 402, + 191 + ], + "score": 0.652, + "html": "
1:π1 ← random policy 2:D←0
3: for iteration k =1,..., kmax do
4:add trajectories {Ti} sampled via πk to D
5:V ← arg minv Es,a~D [|IRa - V(s)ll2]
7: end for6:πk+1 ←arg maxEs,a~D[ogπ(a|s)exp((a-V(s))]
", + "type": "table", + "image_path": "bdc39497c9a0a297478fd2d1ef6a60dcb864570d02884892fb3dad5c5f7b1e90.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 109, + 97, + 403, + 128.33333333333334 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 109, + 128.33333333333334, + 403, + 159.66666666666669 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 109, + 159.66666666666669, + 403, + 191.00000000000003 + ], + "spans": [], + "index": 3 + } + ] + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 106, + 209, + 505, + 265 + ], + "lines": [ + { + "bbox": [ + 106, + 209, + 505, + 222 + ], + "spans": [ + { + "bbox": [ + 106, + 209, + 505, + 222 + ], + "score": 1.0, + "content": "REPS (Peters & Schaal, 2007; Peters et al., 2010; Abdolmaleki et al., 2018b), which maximize the", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 220, + 505, + 234 + ], + "spans": [ + { + "bbox": [ + 106, + 220, + 169, + 234 + ], + "score": 1.0, + "content": "expected return", + "type": "text" + }, + { + "bbox": [ + 169, + 221, + 191, + 232 + ], + "score": 0.92, + "content": "J ( \\pi )", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 220, + 505, + 234 + ], + "score": 1.0, + "content": "instead of the expected improvement. The expected improvement directly gives", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 231, + 505, + 245 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 505, + 245 + ], + "score": 1.0, + "content": "rise to an objective that involves the advantage. We will see later that this yields a policy update", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 241, + 506, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 241, + 506, + 255 + ], + "score": 1.0, + "content": "that differ in a subtle but important way from standard RWR. As we show in our experiments, this", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 252, + 315, + 267 + ], + "spans": [ + { + "bbox": [ + 105, + 252, + 315, + 267 + ], + "score": 1.0, + "content": "difference results in a large empirical improvement.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 107, + 270, + 504, + 304 + ], + "lines": [ + { + "bbox": [ + 105, + 270, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 105, + 270, + 462, + 282 + ], + "score": 1.0, + "content": "The objective in Equation 3 can be difficult to optimize due to the dependency between", + "type": "text" + }, + { + "bbox": [ + 462, + 270, + 486, + 282 + ], + "score": 0.87, + "content": "d _ { \\pi } ( \\mathbf { s } )", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 270, + 505, + 282 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 107, + 281, + 506, + 293 + ], + "spans": [ + { + "bbox": [ + 107, + 284, + 114, + 291 + ], + "score": 0.71, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 281, + 291, + 293 + ], + "score": 1.0, + "content": ", as well as the need to collect samples from", + "type": "text" + }, + { + "bbox": [ + 292, + 283, + 299, + 291 + ], + "score": 0.73, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 281, + 506, + 293 + ], + "score": 1.0, + "content": ". Following Schulman et al. (2015), we can instead", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 292, + 401, + 305 + ], + "spans": [ + { + "bbox": [ + 105, + 292, + 216, + 305 + ], + "score": 1.0, + "content": "optimize an approximation", + "type": "text" + }, + { + "bbox": [ + 217, + 292, + 236, + 304 + ], + "score": 0.91, + "content": "\\hat { \\eta } ( \\pi )", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 292, + 249, + 305 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 249, + 292, + 269, + 304 + ], + "score": 0.91, + "content": "\\eta ( \\pi )", + "type": "inline_equation" + }, + { + "bbox": [ + 269, + 292, + 389, + 305 + ], + "score": 1.0, + "content": "using the state distribution of", + "type": "text" + }, + { + "bbox": [ + 389, + 294, + 396, + 304 + ], + "score": 0.8, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 397, + 292, + 401, + 305 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10 + }, + { + "type": "interline_equation", + "bbox": [ + 214, + 305, + 396, + 321 + ], + "lines": [ + { + "bbox": [ + 214, + 305, + 396, + 321 + ], + "spans": [ + { + "bbox": [ + 214, + 305, + 396, + 321 + ], + "score": 0.92, + "content": "\\hat { \\eta } ( \\pi ) = \\mathbb { E } _ { \\mathbf { s } \\sim d _ { \\mu } ( \\mathbf { s } ) } \\mathbb { E } _ { \\mathbf { a } \\sim \\pi ( \\mathbf { a } | \\mathbf { s } ) } \\left[ \\mathcal { R } _ { \\mathbf { s } , \\mathbf { a } } ^ { \\mu } - V ^ { \\mu } ( \\mathbf { s } ) \\right] .", + "type": "interline_equation", + "image_path": "08b8271f01f80af82f816af998a184b66c5b6a1945b8c75aa1e0a258e9e94ca7.jpg" + } + ] + } + ], + "index": 12, + "virtual_lines": [ + { + "bbox": [ + 214, + 305, + 396, + 321 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 322, + 505, + 355 + ], + "lines": [ + { + "bbox": [ + 105, + 321, + 506, + 335 + ], + "spans": [ + { + "bbox": [ + 105, + 321, + 130, + 335 + ], + "score": 1.0, + "content": "Here,", + "type": "text" + }, + { + "bbox": [ + 131, + 322, + 151, + 334 + ], + "score": 0.91, + "content": "\\hat { \\eta } ( \\pi )", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 321, + 187, + 335 + ], + "score": 1.0, + "content": "matches", + "type": "text" + }, + { + "bbox": [ + 187, + 322, + 207, + 334 + ], + "score": 0.92, + "content": "\\eta ( \\pi )", + "type": "inline_equation" + }, + { + "bbox": [ + 208, + 321, + 506, + 335 + ], + "score": 1.0, + "content": "to first order (Kakade & Langford, 2002), and provides a good estimate of", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 107, + 333, + 507, + 345 + ], + "spans": [ + { + "bbox": [ + 107, + 335, + 113, + 344 + ], + "score": 0.78, + "content": "\\eta", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 333, + 123, + 345 + ], + "score": 1.0, + "content": "if", + "type": "text" + }, + { + "bbox": [ + 123, + 335, + 130, + 343 + ], + "score": 0.8, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 333, + 148, + 345 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 149, + 335, + 156, + 344 + ], + "score": 0.84, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 156, + 333, + 507, + 345 + ], + "score": 1.0, + "content": "are close in terms of the KL-divergence (Schulman et al., 2015). Using this objective,", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 344, + 376, + 356 + ], + "spans": [ + { + "bbox": [ + 106, + 344, + 376, + 356 + ], + "score": 1.0, + "content": "we can formulate the following constrained policy search problem:", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14 + }, + { + "type": "interline_equation", + "bbox": [ + 196, + 356, + 415, + 409 + ], + "lines": [ + { + "bbox": [ + 196, + 356, + 415, + 409 + ], + "spans": [ + { + "bbox": [ + 196, + 356, + 415, + 409 + ], + "score": 0.93, + "content": "\\begin{array} { r l } { \\underset { \\pi } { \\arg \\operatorname* { m a x } } } & { \\displaystyle \\int _ { \\mathbf { s } } d _ { \\mu } ( \\mathbf { s } ) \\int _ { \\mathbf { a } } \\pi ( \\mathbf { a } | \\mathbf { s } ) \\left[ \\mathcal { R } _ { \\mathbf { s } , \\mathbf { a } } ^ { \\mu } - V ^ { \\mu } ( \\mathbf { s } ) \\right] d \\mathbf { a } d \\mathbf { s } } \\\\ { \\mathrm { s . t . } } & { \\displaystyle \\int _ { \\mathbf { s } } d _ { \\mu } ( \\mathbf { s } ) \\mathrm { D } _ { \\mathrm { K L } } \\left( \\pi ( \\cdot | \\mathbf { s } ) | | \\mu ( \\cdot | \\mathbf { s } ) \\right) d \\mathbf { s } \\leq \\epsilon . } \\end{array}", + "type": "interline_equation", + "image_path": "04de041cf143a8481a82e0313d2139f7c53dc50f98085490f1a1079208de9aba.jpg" + } + ] + } + ], + "index": 17.5, + "virtual_lines": [ + { + "bbox": [ + 196, + 356, + 415, + 369.25 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 196, + 369.25, + 415, + 382.5 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 196, + 382.5, + 415, + 395.75 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 196, + 395.75, + 415, + 409.0 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 409, + 505, + 443 + ], + "lines": [ + { + "bbox": [ + 105, + 408, + 506, + 422 + ], + "spans": [ + { + "bbox": [ + 105, + 408, + 333, + 422 + ], + "score": 1.0, + "content": "The constraint in Equation 6 ensures that the new policy", + "type": "text" + }, + { + "bbox": [ + 333, + 411, + 340, + 419 + ], + "score": 0.79, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 341, + 408, + 477, + 422 + ], + "score": 1.0, + "content": "is close to the data distribution of", + "type": "text" + }, + { + "bbox": [ + 477, + 411, + 484, + 420 + ], + "score": 0.8, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 485, + 408, + 506, + 422 + ], + "score": 1.0, + "content": ", and", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 420, + 505, + 433 + ], + "spans": [ + { + "bbox": [ + 105, + 420, + 242, + 433 + ], + "score": 1.0, + "content": "therefore the surrogate objective", + "type": "text" + }, + { + "bbox": [ + 242, + 420, + 262, + 432 + ], + "score": 0.91, + "content": "\\hat { \\eta } ( \\pi )", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 420, + 425, + 433 + ], + "score": 1.0, + "content": "remains a reasonable approximation to", + "type": "text" + }, + { + "bbox": [ + 426, + 420, + 446, + 432 + ], + "score": 0.92, + "content": "\\eta ( \\pi )", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 420, + 505, + 433 + ], + "score": 1.0, + "content": ". We refer the", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 430, + 415, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 430, + 415, + 442 + ], + "score": 1.0, + "content": "reader to Schulman et al. (2015) for a detailed derivation and an error bound.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 108, + 447, + 503, + 481 + ], + "lines": [ + { + "bbox": [ + 106, + 447, + 505, + 461 + ], + "spans": [ + { + "bbox": [ + 106, + 447, + 505, + 461 + ], + "score": 1.0, + "content": "We can derive AWR as an approximate solution to this constrained optimization. This derivation", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 459, + 505, + 472 + ], + "spans": [ + { + "bbox": [ + 105, + 459, + 505, + 472 + ], + "score": 1.0, + "content": "follows a similar procedure as Peters et al. (2010), and begins by forming the Lagrangian of the", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 470, + 265, + 483 + ], + "spans": [ + { + "bbox": [ + 105, + 470, + 265, + 483 + ], + "score": 1.0, + "content": "optimization problem presented above,", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24 + }, + { + "type": "interline_equation", + "bbox": [ + 105, + 482, + 500, + 510 + ], + "lines": [ + { + "bbox": [ + 105, + 482, + 500, + 510 + ], + "spans": [ + { + "bbox": [ + 105, + 482, + 500, + 510 + ], + "score": 0.93, + "content": "\\mathcal { L } ( \\pi , \\beta ) = \\int _ { \\mathbf { s } } d _ { \\mu } ( \\mathbf { s } ) \\int _ { \\mathbf { a } } \\pi ( \\mathbf { a } | \\mathbf { s } ) \\left[ \\mathcal { R } _ { \\mathbf { s } , \\mathbf { a } } ^ { \\mu } - V ^ { \\mu } ( \\mathbf { s } ) \\right] d \\mathbf { a } d \\mathbf { s } + \\beta \\left( \\epsilon - \\int _ { \\mathbf { s } } d _ { \\mu } ( \\mathbf { s } ) \\mathrm { D } _ { \\mathrm { K L } } \\left( \\pi ( \\cdot | \\mathbf { s } ) | | \\mu ( \\cdot | \\mathbf { s } ) \\right) d \\mathbf { s } \\right) ,", + "type": "interline_equation", + "image_path": "d4a6614099fbc513a14d587a93217ba47a4ee38e9d7d621a4839a5420814bd5d.jpg" + } + ] + } + ], + "index": 27, + "virtual_lines": [ + { + "bbox": [ + 105, + 482, + 500, + 491.3333333333333 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 105, + 491.3333333333333, + 500, + 500.66666666666663 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 105, + 500.66666666666663, + 500, + 509.99999999999994 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 518, + 503, + 541 + ], + "lines": [ + { + "bbox": [ + 106, + 517, + 505, + 532 + ], + "spans": [ + { + "bbox": [ + 106, + 517, + 133, + 532 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 519, + 141, + 530 + ], + "score": 0.85, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 517, + 303, + 532 + ], + "score": 1.0, + "content": "is a Lagrange multiplier. Differentiating", + "type": "text" + }, + { + "bbox": [ + 304, + 518, + 336, + 531 + ], + "score": 0.93, + "content": "{ \\mathcal { L } } ( \\pi , \\beta )", + "type": "inline_equation" + }, + { + "bbox": [ + 336, + 517, + 398, + 532 + ], + "score": 1.0, + "content": "with respect to", + "type": "text" + }, + { + "bbox": [ + 399, + 519, + 426, + 530 + ], + "score": 0.92, + "content": "\\pi ( \\mathbf { a } | \\mathbf { s } )", + "type": "inline_equation" + }, + { + "bbox": [ + 426, + 517, + 505, + 532 + ], + "score": 1.0, + "content": "and solving for the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 528, + 408, + 543 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 167, + 543 + ], + "score": 1.0, + "content": "optimal policy", + "type": "text" + }, + { + "bbox": [ + 167, + 530, + 178, + 540 + ], + "score": 0.86, + "content": "\\pi ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 528, + 408, + 543 + ], + "score": 1.0, + "content": "results in the following expression for the optimal policy", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5 + }, + { + "type": "interline_equation", + "bbox": [ + 199, + 541, + 412, + 569 + ], + "lines": [ + { + "bbox": [ + 199, + 541, + 412, + 569 + ], + "spans": [ + { + "bbox": [ + 199, + 541, + 412, + 569 + ], + "score": 0.94, + "content": "\\pi ^ { * } ( \\mathbf { a } | \\mathbf { s } ) = \\frac { 1 } { Z ( \\mathbf { s } ) } \\mu ( \\mathbf { a } | \\mathbf { s } ) \\exp \\left( \\frac { 1 } { \\beta } \\left( \\mathcal { R } _ { \\mathbf { s } , \\mathbf { a } } ^ { \\mu } - V ^ { \\mu } ( \\mathbf { s } ) \\right) \\right) ,", + "type": "interline_equation", + "image_path": "905045d9e99c6bdb0d3819a411e6251f58bb444bfc3a8221af9f4e8869d09b28.jpg" + } + ] + } + ], + "index": 31.5, + "virtual_lines": [ + { + "bbox": [ + 199, + 541, + 412, + 555.0 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 199, + 555.0, + 412, + 569.0 + ], + "spans": [], + "index": 32 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 570, + 505, + 603 + ], + "lines": [ + { + "bbox": [ + 105, + 569, + 506, + 583 + ], + "spans": [ + { + "bbox": [ + 105, + 569, + 127, + 583 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 128, + 570, + 148, + 582 + ], + "score": 0.91, + "content": "Z ( \\mathbf { s } )", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 569, + 486, + 583 + ], + "score": 1.0, + "content": "being the partition function. A detailed derivation is available in Appendix A. If", + "type": "text" + }, + { + "bbox": [ + 487, + 572, + 494, + 580 + ], + "score": 0.78, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 569, + 506, + 583 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 581, + 505, + 594 + ], + "spans": [ + { + "bbox": [ + 105, + 581, + 505, + 594 + ], + "score": 1.0, + "content": "represented by a function approximator (e.g., a neural network), a new policy can be obtained by", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 592, + 342, + 605 + ], + "spans": [ + { + "bbox": [ + 105, + 592, + 149, + 605 + ], + "score": 1.0, + "content": "projecting", + "type": "text" + }, + { + "bbox": [ + 150, + 593, + 161, + 602 + ], + "score": 0.87, + "content": "\\pi ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 161, + 592, + 342, + 605 + ], + "score": 1.0, + "content": "onto the manifold of parameterized policies,", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34 + }, + { + "type": "interline_equation", + "bbox": [ + 141, + 604, + 470, + 653 + ], + "lines": [ + { + "bbox": [ + 141, + 604, + 470, + 653 + ], + "spans": [ + { + "bbox": [ + 141, + 604, + 470, + 653 + ], + "score": 0.57, + "content": "\\begin{array} { r l } { \\underset { \\pi } { \\mathrm { a r g \\ m i n } } \\ : \\ : \\ : \\ : } & { \\mathbb { E } _ { \\mathbf { s } \\sim \\mathcal { D } } \\left[ \\mathrm { D } _ { \\mathbf { K L } } \\left( \\pi ^ { * } ( \\cdot | \\mathbf { s } ) | | \\pi ( \\cdot | \\mathbf { s } ) \\right) \\right] } \\\\ { = \\underset { \\pi } { \\mathrm { a r g \\ m a x } } \\ : \\ : \\ : \\ : } & { \\mathbb { E } _ { \\mathbf { s } \\sim d _ { \\mu } ( \\mathbf { s } ) } \\mathbb { E } _ { \\mathbf { a } \\sim \\mu ( \\mathbf { a } | \\mathbf { s } ) } \\left[ \\log \\pi ( \\mathbf { a } | \\mathbf { s } ) \\mathrm { e x p } \\left( \\frac { 1 } { \\beta } \\left( \\mathcal { R } _ { \\mathbf { s } , \\mathbf { a } } ^ { \\mu } - V ^ { \\mu } ( \\mathbf { s } ) \\right) \\right) \\right] . } \\end{array}", + "type": "interline_equation", + "image_path": "36d24f7d4abf18fae96c1a5bff8fd636bd7cf9e8d34a1ea72617d74b9a9c14bf.jpg" + } + ] + } + ], + "index": 37, + "virtual_lines": [ + { + "bbox": [ + 141, + 604, + 470, + 620.3333333333334 + ], + "spans": [], + "index": 36 + }, + { + "bbox": [ + 141, + 620.3333333333334, + 470, + 636.6666666666667 + ], + "spans": [], + "index": 37 + }, + { + "bbox": [ + 141, + 636.6666666666667, + 470, + 653.0000000000001 + ], + "spans": [], + "index": 38 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 653, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 652, + 506, + 665 + ], + "spans": [ + { + "bbox": [ + 105, + 652, + 506, + 665 + ], + "score": 1.0, + "content": "While this derivation for AWR largely follows the derivations used in prior work (Peters et al., 2010;", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 663, + 506, + 677 + ], + "spans": [ + { + "bbox": [ + 105, + 663, + 465, + 677 + ], + "score": 1.0, + "content": "Abdolmaleki et al., 2018b), our expected improvement objective introduces a baseline", + "type": "text" + }, + { + "bbox": [ + 466, + 664, + 492, + 676 + ], + "score": 0.9, + "content": "V ^ { \\mu } ( \\mathbf { s } )", + "type": "inline_equation" + }, + { + "bbox": [ + 493, + 663, + 506, + 677 + ], + "score": 1.0, + "content": "to", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 674, + 506, + 687 + ], + "spans": [ + { + "bbox": [ + 105, + 674, + 506, + 687 + ], + "score": 1.0, + "content": "the policy update, which as we show in our experiments, is a crucial component for an effective", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 104, + 685, + 506, + 698 + ], + "spans": [ + { + "bbox": [ + 104, + 685, + 506, + 698 + ], + "score": 1.0, + "content": "algorithm. A similar advantage-weighting scheme has been previously used for fitted Q-iteration", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 102, + 694, + 507, + 714 + ], + "spans": [ + { + "bbox": [ + 102, + 694, + 326, + 714 + ], + "score": 1.0, + "content": "(Neumann & Peters, 2009), where the policy is given by", + "type": "text" + }, + { + "bbox": [ + 326, + 696, + 491, + 711 + ], + "score": 0.89, + "content": "\\begin{array} { r } { \\pi ( \\mathbf { a } | \\mathbf { s } ) ^ { \\cdot } = \\frac { 1 } { Z ( \\mathbf { s } ) } \\mathrm { e x p } \\left( \\left( \\mathcal { R } _ { \\mathbf { s } , \\mathbf { a } } ^ { \\mu } - V ^ { \\mu } ( \\grave { \\mathbf { s } } ) \\right) / \\beta \\right) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 491, + 694, + 507, + 714 + ], + "score": 1.0, + "content": ". In", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "this definition, the likelihood of an action does not depend on the sampling distribution, and therefore", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 720, + 301, + 734 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 291, + 734 + ], + "score": 1.0, + "content": "does not enforce a trust region with respect to", + "type": "text" + }, + { + "bbox": [ + 291, + 723, + 298, + 732 + ], + "score": 0.8, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 720, + 301, + 734 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 42 + } + ], + "page_idx": 2, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 26, + 307, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "score": 1.0, + "content": "3", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 82, + 293, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 294, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 294, + 96 + ], + "score": 1.0, + "content": "Algorithm 1 Advantage-Weighted Regression", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "table", + "bbox": [ + 109, + 97, + 403, + 191 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 109, + 97, + 403, + 191 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 97, + 402, + 191 + ], + "spans": [ + { + "bbox": [ + 109, + 97, + 402, + 191 + ], + "score": 0.652, + "html": "
1:π1 ← random policy 2:D←0
3: for iteration k =1,..., kmax do
4:add trajectories {Ti} sampled via πk to D
5:V ← arg minv Es,a~D [|IRa - V(s)ll2]
7: end for6:πk+1 ←arg maxEs,a~D[ogπ(a|s)exp((a-V(s))]
", + "type": "table", + "image_path": "bdc39497c9a0a297478fd2d1ef6a60dcb864570d02884892fb3dad5c5f7b1e90.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 109, + 97, + 403, + 128.33333333333334 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 109, + 128.33333333333334, + 403, + 159.66666666666669 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 109, + 159.66666666666669, + 403, + 191.00000000000003 + ], + "spans": [], + "index": 3 + } + ] + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 106, + 209, + 505, + 265 + ], + "lines": [ + { + "bbox": [ + 106, + 209, + 505, + 222 + ], + "spans": [ + { + "bbox": [ + 106, + 209, + 505, + 222 + ], + "score": 1.0, + "content": "REPS (Peters & Schaal, 2007; Peters et al., 2010; Abdolmaleki et al., 2018b), which maximize the", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 220, + 505, + 234 + ], + "spans": [ + { + "bbox": [ + 106, + 220, + 169, + 234 + ], + "score": 1.0, + "content": "expected return", + "type": "text" + }, + { + "bbox": [ + 169, + 221, + 191, + 232 + ], + "score": 0.92, + "content": "J ( \\pi )", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 220, + 505, + 234 + ], + "score": 1.0, + "content": "instead of the expected improvement. The expected improvement directly gives", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 231, + 505, + 245 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 505, + 245 + ], + "score": 1.0, + "content": "rise to an objective that involves the advantage. We will see later that this yields a policy update", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 241, + 506, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 241, + 506, + 255 + ], + "score": 1.0, + "content": "that differ in a subtle but important way from standard RWR. As we show in our experiments, this", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 252, + 315, + 267 + ], + "spans": [ + { + "bbox": [ + 105, + 252, + 315, + 267 + ], + "score": 1.0, + "content": "difference results in a large empirical improvement.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 6, + "bbox_fs": [ + 105, + 209, + 506, + 267 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 270, + 504, + 304 + ], + "lines": [ + { + "bbox": [ + 105, + 270, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 105, + 270, + 462, + 282 + ], + "score": 1.0, + "content": "The objective in Equation 3 can be difficult to optimize due to the dependency between", + "type": "text" + }, + { + "bbox": [ + 462, + 270, + 486, + 282 + ], + "score": 0.87, + "content": "d _ { \\pi } ( \\mathbf { s } )", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 270, + 505, + 282 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 107, + 281, + 506, + 293 + ], + "spans": [ + { + "bbox": [ + 107, + 284, + 114, + 291 + ], + "score": 0.71, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 281, + 291, + 293 + ], + "score": 1.0, + "content": ", as well as the need to collect samples from", + "type": "text" + }, + { + "bbox": [ + 292, + 283, + 299, + 291 + ], + "score": 0.73, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 281, + 506, + 293 + ], + "score": 1.0, + "content": ". Following Schulman et al. (2015), we can instead", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 292, + 401, + 305 + ], + "spans": [ + { + "bbox": [ + 105, + 292, + 216, + 305 + ], + "score": 1.0, + "content": "optimize an approximation", + "type": "text" + }, + { + "bbox": [ + 217, + 292, + 236, + 304 + ], + "score": 0.91, + "content": "\\hat { \\eta } ( \\pi )", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 292, + 249, + 305 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 249, + 292, + 269, + 304 + ], + "score": 0.91, + "content": "\\eta ( \\pi )", + "type": "inline_equation" + }, + { + "bbox": [ + 269, + 292, + 389, + 305 + ], + "score": 1.0, + "content": "using the state distribution of", + "type": "text" + }, + { + "bbox": [ + 389, + 294, + 396, + 304 + ], + "score": 0.8, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 397, + 292, + 401, + 305 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10, + "bbox_fs": [ + 105, + 270, + 506, + 305 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 214, + 305, + 396, + 321 + ], + "lines": [ + { + "bbox": [ + 214, + 305, + 396, + 321 + ], + "spans": [ + { + "bbox": [ + 214, + 305, + 396, + 321 + ], + "score": 0.92, + "content": "\\hat { \\eta } ( \\pi ) = \\mathbb { E } _ { \\mathbf { s } \\sim d _ { \\mu } ( \\mathbf { s } ) } \\mathbb { E } _ { \\mathbf { a } \\sim \\pi ( \\mathbf { a } | \\mathbf { s } ) } \\left[ \\mathcal { R } _ { \\mathbf { s } , \\mathbf { a } } ^ { \\mu } - V ^ { \\mu } ( \\mathbf { s } ) \\right] .", + "type": "interline_equation", + "image_path": "08b8271f01f80af82f816af998a184b66c5b6a1945b8c75aa1e0a258e9e94ca7.jpg" + } + ] + } + ], + "index": 12, + "virtual_lines": [ + { + "bbox": [ + 214, + 305, + 396, + 321 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 322, + 505, + 355 + ], + "lines": [ + { + "bbox": [ + 105, + 321, + 506, + 335 + ], + "spans": [ + { + "bbox": [ + 105, + 321, + 130, + 335 + ], + "score": 1.0, + "content": "Here,", + "type": "text" + }, + { + "bbox": [ + 131, + 322, + 151, + 334 + ], + "score": 0.91, + "content": "\\hat { \\eta } ( \\pi )", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 321, + 187, + 335 + ], + "score": 1.0, + "content": "matches", + "type": "text" + }, + { + "bbox": [ + 187, + 322, + 207, + 334 + ], + "score": 0.92, + "content": "\\eta ( \\pi )", + "type": "inline_equation" + }, + { + "bbox": [ + 208, + 321, + 506, + 335 + ], + "score": 1.0, + "content": "to first order (Kakade & Langford, 2002), and provides a good estimate of", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 107, + 333, + 507, + 345 + ], + "spans": [ + { + "bbox": [ + 107, + 335, + 113, + 344 + ], + "score": 0.78, + "content": "\\eta", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 333, + 123, + 345 + ], + "score": 1.0, + "content": "if", + "type": "text" + }, + { + "bbox": [ + 123, + 335, + 130, + 343 + ], + "score": 0.8, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 333, + 148, + 345 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 149, + 335, + 156, + 344 + ], + "score": 0.84, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 156, + 333, + 507, + 345 + ], + "score": 1.0, + "content": "are close in terms of the KL-divergence (Schulman et al., 2015). Using this objective,", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 344, + 376, + 356 + ], + "spans": [ + { + "bbox": [ + 106, + 344, + 376, + 356 + ], + "score": 1.0, + "content": "we can formulate the following constrained policy search problem:", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14, + "bbox_fs": [ + 105, + 321, + 507, + 356 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 196, + 356, + 415, + 409 + ], + "lines": [ + { + "bbox": [ + 196, + 356, + 415, + 409 + ], + "spans": [ + { + "bbox": [ + 196, + 356, + 415, + 409 + ], + "score": 0.93, + "content": "\\begin{array} { r l } { \\underset { \\pi } { \\arg \\operatorname* { m a x } } } & { \\displaystyle \\int _ { \\mathbf { s } } d _ { \\mu } ( \\mathbf { s } ) \\int _ { \\mathbf { a } } \\pi ( \\mathbf { a } | \\mathbf { s } ) \\left[ \\mathcal { R } _ { \\mathbf { s } , \\mathbf { a } } ^ { \\mu } - V ^ { \\mu } ( \\mathbf { s } ) \\right] d \\mathbf { a } d \\mathbf { s } } \\\\ { \\mathrm { s . t . } } & { \\displaystyle \\int _ { \\mathbf { s } } d _ { \\mu } ( \\mathbf { s } ) \\mathrm { D } _ { \\mathrm { K L } } \\left( \\pi ( \\cdot | \\mathbf { s } ) | | \\mu ( \\cdot | \\mathbf { s } ) \\right) d \\mathbf { s } \\leq \\epsilon . } \\end{array}", + "type": "interline_equation", + "image_path": "04de041cf143a8481a82e0313d2139f7c53dc50f98085490f1a1079208de9aba.jpg" + } + ] + } + ], + "index": 17.5, + "virtual_lines": [ + { + "bbox": [ + 196, + 356, + 415, + 369.25 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 196, + 369.25, + 415, + 382.5 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 196, + 382.5, + 415, + 395.75 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 196, + 395.75, + 415, + 409.0 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 409, + 505, + 443 + ], + "lines": [ + { + "bbox": [ + 105, + 408, + 506, + 422 + ], + "spans": [ + { + "bbox": [ + 105, + 408, + 333, + 422 + ], + "score": 1.0, + "content": "The constraint in Equation 6 ensures that the new policy", + "type": "text" + }, + { + "bbox": [ + 333, + 411, + 340, + 419 + ], + "score": 0.79, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 341, + 408, + 477, + 422 + ], + "score": 1.0, + "content": "is close to the data distribution of", + "type": "text" + }, + { + "bbox": [ + 477, + 411, + 484, + 420 + ], + "score": 0.8, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 485, + 408, + 506, + 422 + ], + "score": 1.0, + "content": ", and", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 420, + 505, + 433 + ], + "spans": [ + { + "bbox": [ + 105, + 420, + 242, + 433 + ], + "score": 1.0, + "content": "therefore the surrogate objective", + "type": "text" + }, + { + "bbox": [ + 242, + 420, + 262, + 432 + ], + "score": 0.91, + "content": "\\hat { \\eta } ( \\pi )", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 420, + 425, + 433 + ], + "score": 1.0, + "content": "remains a reasonable approximation to", + "type": "text" + }, + { + "bbox": [ + 426, + 420, + 446, + 432 + ], + "score": 0.92, + "content": "\\eta ( \\pi )", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 420, + 505, + 433 + ], + "score": 1.0, + "content": ". We refer the", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 430, + 415, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 430, + 415, + 442 + ], + "score": 1.0, + "content": "reader to Schulman et al. (2015) for a detailed derivation and an error bound.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21, + "bbox_fs": [ + 105, + 408, + 506, + 442 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 447, + 503, + 481 + ], + "lines": [ + { + "bbox": [ + 106, + 447, + 505, + 461 + ], + "spans": [ + { + "bbox": [ + 106, + 447, + 505, + 461 + ], + "score": 1.0, + "content": "We can derive AWR as an approximate solution to this constrained optimization. This derivation", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 459, + 505, + 472 + ], + "spans": [ + { + "bbox": [ + 105, + 459, + 505, + 472 + ], + "score": 1.0, + "content": "follows a similar procedure as Peters et al. (2010), and begins by forming the Lagrangian of the", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 470, + 265, + 483 + ], + "spans": [ + { + "bbox": [ + 105, + 470, + 265, + 483 + ], + "score": 1.0, + "content": "optimization problem presented above,", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24, + "bbox_fs": [ + 105, + 447, + 505, + 483 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 105, + 482, + 500, + 510 + ], + "lines": [ + { + "bbox": [ + 105, + 482, + 500, + 510 + ], + "spans": [ + { + "bbox": [ + 105, + 482, + 500, + 510 + ], + "score": 0.93, + "content": "\\mathcal { L } ( \\pi , \\beta ) = \\int _ { \\mathbf { s } } d _ { \\mu } ( \\mathbf { s } ) \\int _ { \\mathbf { a } } \\pi ( \\mathbf { a } | \\mathbf { s } ) \\left[ \\mathcal { R } _ { \\mathbf { s } , \\mathbf { a } } ^ { \\mu } - V ^ { \\mu } ( \\mathbf { s } ) \\right] d \\mathbf { a } d \\mathbf { s } + \\beta \\left( \\epsilon - \\int _ { \\mathbf { s } } d _ { \\mu } ( \\mathbf { s } ) \\mathrm { D } _ { \\mathrm { K L } } \\left( \\pi ( \\cdot | \\mathbf { s } ) | | \\mu ( \\cdot | \\mathbf { s } ) \\right) d \\mathbf { s } \\right) ,", + "type": "interline_equation", + "image_path": "d4a6614099fbc513a14d587a93217ba47a4ee38e9d7d621a4839a5420814bd5d.jpg" + } + ] + } + ], + "index": 27, + "virtual_lines": [ + { + "bbox": [ + 105, + 482, + 500, + 491.3333333333333 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 105, + 491.3333333333333, + 500, + 500.66666666666663 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 105, + 500.66666666666663, + 500, + 509.99999999999994 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 518, + 503, + 541 + ], + "lines": [ + { + "bbox": [ + 106, + 517, + 505, + 532 + ], + "spans": [ + { + "bbox": [ + 106, + 517, + 133, + 532 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 519, + 141, + 530 + ], + "score": 0.85, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 517, + 303, + 532 + ], + "score": 1.0, + "content": "is a Lagrange multiplier. Differentiating", + "type": "text" + }, + { + "bbox": [ + 304, + 518, + 336, + 531 + ], + "score": 0.93, + "content": "{ \\mathcal { L } } ( \\pi , \\beta )", + "type": "inline_equation" + }, + { + "bbox": [ + 336, + 517, + 398, + 532 + ], + "score": 1.0, + "content": "with respect to", + "type": "text" + }, + { + "bbox": [ + 399, + 519, + 426, + 530 + ], + "score": 0.92, + "content": "\\pi ( \\mathbf { a } | \\mathbf { s } )", + "type": "inline_equation" + }, + { + "bbox": [ + 426, + 517, + 505, + 532 + ], + "score": 1.0, + "content": "and solving for the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 528, + 408, + 543 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 167, + 543 + ], + "score": 1.0, + "content": "optimal policy", + "type": "text" + }, + { + "bbox": [ + 167, + 530, + 178, + 540 + ], + "score": 0.86, + "content": "\\pi ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 528, + 408, + 543 + ], + "score": 1.0, + "content": "results in the following expression for the optimal policy", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5, + "bbox_fs": [ + 105, + 517, + 505, + 543 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 199, + 541, + 412, + 569 + ], + "lines": [ + { + "bbox": [ + 199, + 541, + 412, + 569 + ], + "spans": [ + { + "bbox": [ + 199, + 541, + 412, + 569 + ], + "score": 0.94, + "content": "\\pi ^ { * } ( \\mathbf { a } | \\mathbf { s } ) = \\frac { 1 } { Z ( \\mathbf { s } ) } \\mu ( \\mathbf { a } | \\mathbf { s } ) \\exp \\left( \\frac { 1 } { \\beta } \\left( \\mathcal { R } _ { \\mathbf { s } , \\mathbf { a } } ^ { \\mu } - V ^ { \\mu } ( \\mathbf { s } ) \\right) \\right) ,", + "type": "interline_equation", + "image_path": "905045d9e99c6bdb0d3819a411e6251f58bb444bfc3a8221af9f4e8869d09b28.jpg" + } + ] + } + ], + "index": 31.5, + "virtual_lines": [ + { + "bbox": [ + 199, + 541, + 412, + 555.0 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 199, + 555.0, + 412, + 569.0 + ], + "spans": [], + "index": 32 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 570, + 505, + 603 + ], + "lines": [ + { + "bbox": [ + 105, + 569, + 506, + 583 + ], + "spans": [ + { + "bbox": [ + 105, + 569, + 127, + 583 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 128, + 570, + 148, + 582 + ], + "score": 0.91, + "content": "Z ( \\mathbf { s } )", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 569, + 486, + 583 + ], + "score": 1.0, + "content": "being the partition function. A detailed derivation is available in Appendix A. If", + "type": "text" + }, + { + "bbox": [ + 487, + 572, + 494, + 580 + ], + "score": 0.78, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 569, + 506, + 583 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 581, + 505, + 594 + ], + "spans": [ + { + "bbox": [ + 105, + 581, + 505, + 594 + ], + "score": 1.0, + "content": "represented by a function approximator (e.g., a neural network), a new policy can be obtained by", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 592, + 342, + 605 + ], + "spans": [ + { + "bbox": [ + 105, + 592, + 149, + 605 + ], + "score": 1.0, + "content": "projecting", + "type": "text" + }, + { + "bbox": [ + 150, + 593, + 161, + 602 + ], + "score": 0.87, + "content": "\\pi ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 161, + 592, + 342, + 605 + ], + "score": 1.0, + "content": "onto the manifold of parameterized policies,", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34, + "bbox_fs": [ + 105, + 569, + 506, + 605 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 141, + 604, + 470, + 653 + ], + "lines": [ + { + "bbox": [ + 141, + 604, + 470, + 653 + ], + "spans": [ + { + "bbox": [ + 141, + 604, + 470, + 653 + ], + "score": 0.57, + "content": "\\begin{array} { r l } { \\underset { \\pi } { \\mathrm { a r g \\ m i n } } \\ : \\ : \\ : \\ : } & { \\mathbb { E } _ { \\mathbf { s } \\sim \\mathcal { D } } \\left[ \\mathrm { D } _ { \\mathbf { K L } } \\left( \\pi ^ { * } ( \\cdot | \\mathbf { s } ) | | \\pi ( \\cdot | \\mathbf { s } ) \\right) \\right] } \\\\ { = \\underset { \\pi } { \\mathrm { a r g \\ m a x } } \\ : \\ : \\ : \\ : } & { \\mathbb { E } _ { \\mathbf { s } \\sim d _ { \\mu } ( \\mathbf { s } ) } \\mathbb { E } _ { \\mathbf { a } \\sim \\mu ( \\mathbf { a } | \\mathbf { s } ) } \\left[ \\log \\pi ( \\mathbf { a } | \\mathbf { s } ) \\mathrm { e x p } \\left( \\frac { 1 } { \\beta } \\left( \\mathcal { R } _ { \\mathbf { s } , \\mathbf { a } } ^ { \\mu } - V ^ { \\mu } ( \\mathbf { s } ) \\right) \\right) \\right] . } \\end{array}", + "type": "interline_equation", + "image_path": "36d24f7d4abf18fae96c1a5bff8fd636bd7cf9e8d34a1ea72617d74b9a9c14bf.jpg" + } + ] + } + ], + "index": 37, + "virtual_lines": [ + { + "bbox": [ + 141, + 604, + 470, + 620.3333333333334 + ], + "spans": [], + "index": 36 + }, + { + "bbox": [ + 141, + 620.3333333333334, + 470, + 636.6666666666667 + ], + "spans": [], + "index": 37 + }, + { + "bbox": [ + 141, + 636.6666666666667, + 470, + 653.0000000000001 + ], + "spans": [], + "index": 38 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 653, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 652, + 506, + 665 + ], + "spans": [ + { + "bbox": [ + 105, + 652, + 506, + 665 + ], + "score": 1.0, + "content": "While this derivation for AWR largely follows the derivations used in prior work (Peters et al., 2010;", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 663, + 506, + 677 + ], + "spans": [ + { + "bbox": [ + 105, + 663, + 465, + 677 + ], + "score": 1.0, + "content": "Abdolmaleki et al., 2018b), our expected improvement objective introduces a baseline", + "type": "text" + }, + { + "bbox": [ + 466, + 664, + 492, + 676 + ], + "score": 0.9, + "content": "V ^ { \\mu } ( \\mathbf { s } )", + "type": "inline_equation" + }, + { + "bbox": [ + 493, + 663, + 506, + 677 + ], + "score": 1.0, + "content": "to", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 674, + 506, + 687 + ], + "spans": [ + { + "bbox": [ + 105, + 674, + 506, + 687 + ], + "score": 1.0, + "content": "the policy update, which as we show in our experiments, is a crucial component for an effective", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 104, + 685, + 506, + 698 + ], + "spans": [ + { + "bbox": [ + 104, + 685, + 506, + 698 + ], + "score": 1.0, + "content": "algorithm. A similar advantage-weighting scheme has been previously used for fitted Q-iteration", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 102, + 694, + 507, + 714 + ], + "spans": [ + { + "bbox": [ + 102, + 694, + 326, + 714 + ], + "score": 1.0, + "content": "(Neumann & Peters, 2009), where the policy is given by", + "type": "text" + }, + { + "bbox": [ + 326, + 696, + 491, + 711 + ], + "score": 0.89, + "content": "\\begin{array} { r } { \\pi ( \\mathbf { a } | \\mathbf { s } ) ^ { \\cdot } = \\frac { 1 } { Z ( \\mathbf { s } ) } \\mathrm { e x p } \\left( \\left( \\mathcal { R } _ { \\mathbf { s } , \\mathbf { a } } ^ { \\mu } - V ^ { \\mu } ( \\grave { \\mathbf { s } } ) \\right) / \\beta \\right) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 491, + 694, + 507, + 714 + ], + "score": 1.0, + "content": ". In", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "this definition, the likelihood of an action does not depend on the sampling distribution, and therefore", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 720, + 301, + 734 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 291, + 734 + ], + "score": 1.0, + "content": "does not enforce a trust region with respect to", + "type": "text" + }, + { + "bbox": [ + 291, + 723, + 298, + 732 + ], + "score": 0.8, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 720, + 301, + 734 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 42, + "bbox_fs": [ + 102, + 652, + 507, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 106, + 82, + 349, + 93 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 351, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 351, + 95 + ], + "score": 1.0, + "content": "3.2 EXPERIENCE REPLAY AND OFF-POLICY LEARNING", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 102, + 505, + 249 + ], + "lines": [ + { + "bbox": [ + 105, + 102, + 506, + 116 + ], + "spans": [ + { + "bbox": [ + 105, + 102, + 368, + 116 + ], + "score": 1.0, + "content": "A crucial design decision of AWR is the choice of sampling policy", + "type": "text" + }, + { + "bbox": [ + 369, + 103, + 396, + 115 + ], + "score": 0.92, + "content": "\\mu ( \\mathbf { a } | \\mathbf { s } )", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 102, + 506, + 116 + ], + "score": 1.0, + "content": ". Standard implementations", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 114, + 506, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 506, + 128 + ], + "score": 1.0, + "content": "of RWR are typically on-policy, where the sampling policy is selected to be the current policy", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 107, + 125, + 505, + 137 + ], + "spans": [ + { + "bbox": [ + 107, + 125, + 178, + 137 + ], + "score": 0.92, + "content": "\\mu ( \\mathbf { a } | \\mathbf { s } ) = \\pi _ { k } ( \\mathbf { a } | \\mathbf { s } )", + "type": "inline_equation" + }, + { + "bbox": [ + 179, + 125, + 225, + 137 + ], + "score": 1.0, + "content": "at iteration", + "type": "text" + }, + { + "bbox": [ + 225, + 126, + 231, + 135 + ], + "score": 0.79, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 125, + 505, + 137 + ], + "score": 1.0, + "content": ". This can be sample inefficient, as data collected at each iteration are", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 136, + 506, + 148 + ], + "spans": [ + { + "bbox": [ + 106, + 136, + 506, + 148 + ], + "score": 1.0, + "content": "discarded after a single update iteration. Importance sampling can be incorporated into RWR to reuse", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 146, + 505, + 159 + ], + "spans": [ + { + "bbox": [ + 106, + 146, + 505, + 159 + ], + "score": 1.0, + "content": "data from previous iterations, but at the cost of larger variance (Kober & Peters, 2009). Instead, we can", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 158, + 506, + 171 + ], + "spans": [ + { + "bbox": [ + 105, + 158, + 506, + 171 + ], + "score": 1.0, + "content": "improve sample efficiency of AWR by incorporating experience replay and explicitly accounting for", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 170, + 506, + 181 + ], + "spans": [ + { + "bbox": [ + 106, + 170, + 506, + 181 + ], + "score": 1.0, + "content": "training data from a mixture of multiple past policies. As described in Algorithm 1, at each iteration,", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 179, + 506, + 192 + ], + "spans": [ + { + "bbox": [ + 105, + 179, + 317, + 192 + ], + "score": 1.0, + "content": "AWR collects a batch of data using the latest policy", + "type": "text" + }, + { + "bbox": [ + 317, + 181, + 329, + 191 + ], + "score": 0.85, + "content": "\\pi _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 179, + 506, + 192 + ], + "score": 1.0, + "content": ", and then stores this data in a replay buffer", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 190, + 506, + 204 + ], + "spans": [ + { + "bbox": [ + 106, + 191, + 115, + 201 + ], + "score": 0.77, + "content": "\\mathcal { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 116, + 190, + 351, + 204 + ], + "score": 1.0, + "content": ", which also contains data collected from previous policies", + "type": "text" + }, + { + "bbox": [ + 351, + 191, + 406, + 203 + ], + "score": 0.93, + "content": "\\{ \\pi _ { 1 } , \\cdots , \\pi _ { k } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 190, + 506, + 204 + ], + "score": 1.0, + "content": ". The value function and", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 201, + 506, + 215 + ], + "spans": [ + { + "bbox": [ + 105, + 201, + 308, + 215 + ], + "score": 1.0, + "content": "policy are then updated using samples drawn from", + "type": "text" + }, + { + "bbox": [ + 309, + 202, + 318, + 212 + ], + "score": 0.76, + "content": "\\mathcal { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 201, + 506, + 215 + ], + "score": 1.0, + "content": ". This replay strategy is analogous to modeling", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 104, + 212, + 507, + 232 + ], + "spans": [ + { + "bbox": [ + 104, + 213, + 378, + 232 + ], + "score": 1.0, + "content": "the sampling policy as a mixture of policies from previous iterations", + "type": "text" + }, + { + "bbox": [ + 378, + 212, + 475, + 227 + ], + "score": 0.94, + "content": "\\begin{array} { r } { \\mu _ { k } ( \\tau ) = \\sum _ { i = 1 } ^ { k } w _ { i } \\pi _ { i } ( \\tau ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 475, + 213, + 507, + 232 + ], + "score": 1.0, + "content": ", where", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 107, + 226, + 506, + 239 + ], + "spans": [ + { + "bbox": [ + 107, + 226, + 173, + 238 + ], + "score": 0.93, + "content": "\\pi _ { i } ( \\tau ) = p ( \\tau | \\pi _ { i } )", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 226, + 336, + 239 + ], + "score": 1.0, + "content": "represents the likelihood of a trajectory", + "type": "text" + }, + { + "bbox": [ + 336, + 228, + 343, + 236 + ], + "score": 0.77, + "content": "\\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 226, + 405, + 239 + ], + "score": 1.0, + "content": "under a policy", + "type": "text" + }, + { + "bbox": [ + 405, + 228, + 415, + 237 + ], + "score": 0.85, + "content": "\\pi _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 415, + 226, + 506, + 239 + ], + "score": 1.0, + "content": "from the ith iteration,", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 235, + 336, + 251 + ], + "spans": [ + { + "bbox": [ + 105, + 235, + 167, + 251 + ], + "score": 1.0, + "content": "and the weight", + "type": "text" + }, + { + "bbox": [ + 168, + 239, + 179, + 248 + ], + "score": 0.86, + "content": "w _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 180, + 235, + 321, + 251 + ], + "score": 1.0, + "content": "specify the probability of selecting", + "type": "text" + }, + { + "bbox": [ + 321, + 239, + 331, + 248 + ], + "score": 0.84, + "content": "\\pi _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 332, + 235, + 336, + 251 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 106, + 253, + 506, + 325 + ], + "lines": [ + { + "bbox": [ + 105, + 252, + 505, + 266 + ], + "spans": [ + { + "bbox": [ + 105, + 252, + 505, + 266 + ], + "score": 1.0, + "content": "We now extend the derivation from the previous section to the off-policy setting with experience", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 264, + 506, + 278 + ], + "spans": [ + { + "bbox": [ + 106, + 264, + 506, + 278 + ], + "score": 1.0, + "content": "replay, and show that Algorithm 1 indeed optimizes the expected improvement over a sampling policy", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 275, + 506, + 289 + ], + "spans": [ + { + "bbox": [ + 105, + 275, + 506, + 289 + ], + "score": 1.0, + "content": "modeled by the replay buffer. Given a replay buffer consisting of trajectories from past policies,", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 286, + 506, + 303 + ], + "spans": [ + { + "bbox": [ + 105, + 287, + 253, + 303 + ], + "score": 1.0, + "content": "the joint state-action distribution of", + "type": "text" + }, + { + "bbox": [ + 254, + 290, + 261, + 300 + ], + "score": 0.8, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 287, + 310, + 303 + ], + "score": 1.0, + "content": "is given by", + "type": "text" + }, + { + "bbox": [ + 310, + 286, + 445, + 301 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\mu ( \\mathbf { s } , \\mathbf { a } ) = \\sum _ { i = 1 } ^ { k } w _ { i } d _ { \\pi _ { i } } ( \\mathbf { s } ) \\pi _ { i } ( \\mathbf { a } | \\mathbf { s } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 287, + 506, + 303 + ], + "score": 1.0, + "content": ", and similarly", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 104, + 299, + 507, + 319 + ], + "spans": [ + { + "bbox": [ + 104, + 299, + 243, + 319 + ], + "score": 1.0, + "content": "for the marginal state distribution", + "type": "text" + }, + { + "bbox": [ + 244, + 300, + 343, + 315 + ], + "score": 0.92, + "content": "\\begin{array} { r } { d _ { \\mu } ( \\mathbf { s } ) = \\sum _ { i = 1 } ^ { k } w _ { i } d _ { \\pi _ { i } } ( \\mathbf { s } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 343, + 299, + 507, + 319 + ], + "score": 1.0, + "content": ". The expected improvement can now be", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 313, + 402, + 326 + ], + "spans": [ + { + "bbox": [ + 106, + 313, + 402, + 326 + ], + "score": 1.0, + "content": "expressed with respect to the set of sampling policies in the replay buffer,", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 16.5 + }, + { + "type": "interline_equation", + "bbox": [ + 161, + 323, + 449, + 356 + ], + "lines": [ + { + "bbox": [ + 161, + 323, + 449, + 356 + ], + "spans": [ + { + "bbox": [ + 161, + 323, + 449, + 356 + ], + "score": 0.92, + "content": "\\eta ( \\pi ) = J ( \\pi ) - \\sum _ { i } w _ { i } J ( \\pi _ { i } ) = \\mathbb { E } _ { \\mathbf { s } \\sim d _ { \\pi } ( \\mathbf { s } ) } \\mathbb { E } _ { \\mathbf { a } \\sim \\pi ( \\mathbf { a } | \\mathbf { s } ) } \\left[ \\sum _ { i } w _ { i } A ^ { \\pi _ { i } } ( \\mathbf { s } , \\mathbf { a } ) \\right] ,", + "type": "interline_equation", + "image_path": "dd7414402fec6108d138bf126c5e6d28947900f317c1d191d79d4af4e8d0705c.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 161, + 323, + 449, + 334.0 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 161, + 334.0, + 449, + 345.0 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 161, + 345.0, + 449, + 356.0 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 360, + 504, + 383 + ], + "lines": [ + { + "bbox": [ + 103, + 356, + 508, + 378 + ], + "spans": [ + { + "bbox": [ + 103, + 356, + 134, + 378 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 360, + 247, + 372 + ], + "score": 0.93, + "content": "A ^ { \\pi _ { i } } ( \\mathbf { s } , \\mathbf { a } ) = \\mathcal { R } _ { \\mathbf { s } , \\mathbf { a } } ^ { \\pi _ { i } } - V ^ { \\pi _ { i } } ( \\mathbf { s } )", + "type": "inline_equation" + }, + { + "bbox": [ + 247, + 356, + 508, + 378 + ], + "score": 1.0, + "content": "is the advantage with respect to each sampling policy. In Ap-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 370, + 506, + 384 + ], + "spans": [ + { + "bbox": [ + 105, + 370, + 137, + 384 + ], + "score": 1.0, + "content": "pendix", + "type": "text" + }, + { + "bbox": [ + 137, + 372, + 145, + 381 + ], + "score": 0.31, + "content": "\\mathbf { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 370, + 506, + 384 + ], + "score": 1.0, + "content": ", we show that the update procedure in Algorithm 1 optimizes the following objective:", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5 + }, + { + "type": "interline_equation", + "bbox": [ + 201, + 383, + 408, + 434 + ], + "lines": [ + { + "bbox": [ + 201, + 383, + 408, + 434 + ], + "spans": [ + { + "bbox": [ + 201, + 383, + 408, + 434 + ], + "score": 0.93, + "content": "\\begin{array} { r l } & { \\underset { \\pi } { \\arg \\operatorname* { m a x } } \\sum _ { i = 1 } ^ { k } w _ { i } \\left( \\mathbb { E } _ { \\mathbf { s } \\sim d _ { \\pi _ { i } } ( \\mathbf { s } ) } \\mathbb { E } _ { \\mathbf { a } \\sim \\pi ( \\mathbf { a } | \\mathbf { s } ) } \\left[ A ^ { \\pi _ { i } } ( \\mathbf { s } , \\mathbf { a } ) \\right] \\right) } \\\\ & { \\quad \\mathbf { s } . \\mathbf { t } . \\quad \\mathbb { E } _ { \\mathbf { s } \\sim d _ { \\mu } ( \\mathbf { s } ) } \\left[ \\operatorname { D } _ { \\mathrm { K L } } \\left( \\pi ( \\cdot | \\mathbf { s } ) | | \\mu ( \\cdot | \\mathbf { s } ) \\right) \\right] \\leq \\epsilon , } \\end{array}", + "type": "interline_equation", + "image_path": "ca4b32e487d3f21916fa49a578b2cf61399ec2dbb60472981794e202bd5f722a.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 201, + 383, + 408, + 400.0 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 201, + 400.0, + 408, + 417.0 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 201, + 417.0, + 408, + 434.0 + ], + "spans": [], + "index": 27 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 437, + 505, + 467 + ], + "lines": [ + { + "bbox": [ + 103, + 434, + 505, + 453 + ], + "spans": [ + { + "bbox": [ + 103, + 434, + 284, + 453 + ], + "score": 1.0, + "content": "where µ(a|s) = µ(s,a) = Pi widπi (s)πi(a|s)", + "type": "text" + }, + { + "bbox": [ + 281, + 440, + 505, + 452 + ], + "score": 1.0, + "content": "represents the conditional action distribution defined by", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 455, + 490, + 467 + ], + "spans": [ + { + "bbox": [ + 106, + 455, + 490, + 467 + ], + "score": 1.0, + "content": "the replay buffer. This objective can be solved via the Lagrangian to yield the following update:", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5 + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 470, + 499, + 505 + ], + "lines": [ + { + "bbox": [ + 111, + 470, + 499, + 505 + ], + "spans": [ + { + "bbox": [ + 111, + 470, + 499, + 505 + ], + "score": 0.93, + "content": "\\arg \\operatorname* { m a x } _ { \\pi } \\sum _ { i = 1 } ^ { k } w _ { i } \\mathbb { E } _ { \\mathbf { s } \\sim d _ { \\pi _ { i } } ( \\mathbf { s } ) } \\mathbb { E } _ { \\mathbf { a } \\sim \\pi _ { i } ( \\mathbf { a } | \\mathbf { s } ) } \\left[ \\log \\pi ( \\mathbf { a } | \\mathbf { s } ) \\mathrm { e x p } \\left( \\frac { 1 } { \\beta } \\left( \\mathcal { R } _ { \\mathbf { s } , \\mathbf { a } } ^ { \\pi _ { i } } - \\frac { \\sum _ { j } w _ { j } d _ { \\pi _ { j } } ( \\mathbf { s } ) V ^ { \\pi _ { j } } ( \\mathbf { s } ) } { \\sum _ { j } w _ { j } d _ { \\pi _ { j } } ( \\mathbf { s } ) } \\right) \\right) \\right] ,", + "type": "interline_equation", + "image_path": "610d83fb4461d7d6696dc6e5b454ef2e832925af2797f31aa9ab35c5feebe95a.jpg" + } + ] + } + ], + "index": 31, + "virtual_lines": [ + { + "bbox": [ + 111, + 470, + 499, + 481.6666666666667 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 111, + 481.6666666666667, + 499, + 493.33333333333337 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 111, + 493.33333333333337, + 499, + 505.00000000000006 + ], + "spans": [], + "index": 32 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 519, + 505, + 564 + ], + "lines": [ + { + "bbox": [ + 105, + 519, + 506, + 532 + ], + "spans": [ + { + "bbox": [ + 105, + 519, + 407, + 532 + ], + "score": 1.0, + "content": "where the expectations can be approximated by simply sampling from", + "type": "text" + }, + { + "bbox": [ + 407, + 520, + 417, + 529 + ], + "score": 0.81, + "content": "\\mathcal { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 519, + 506, + 532 + ], + "score": 1.0, + "content": "following Line 6 of", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 531, + 506, + 543 + ], + "spans": [ + { + "bbox": [ + 105, + 531, + 506, + 543 + ], + "score": 1.0, + "content": "Algorithm 1. A detailed derivation is available in Appendix B. Note, the baseline in the exponent", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 542, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 542, + 505, + 554 + ], + "score": 1.0, + "content": "now consists of an average of the value functions of the different policies. This mean value function", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 107, + 552, + 487, + 565 + ], + "spans": [ + { + "bbox": [ + 107, + 552, + 128, + 565 + ], + "score": 0.89, + "content": "\\bar { V } ( \\mathbf { s } )", + "type": "inline_equation" + }, + { + "bbox": [ + 128, + 552, + 487, + 565 + ], + "score": 1.0, + "content": "can be fitted by simply sampling from the replay buffer following Line 5 of Algorithm 1,", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 34.5 + }, + { + "type": "interline_equation", + "bbox": [ + 183, + 568, + 428, + 594 + ], + "lines": [ + { + "bbox": [ + 183, + 568, + 428, + 594 + ], + "spans": [ + { + "bbox": [ + 183, + 568, + 428, + 594 + ], + "score": 0.94, + "content": "\\bar { V } = \\underset { V } { \\arg \\operatorname* { m i n } } \\sum _ { i } w _ { i } \\mathbb { E } _ { { \\mathbf s } , \\sim d _ { \\pi _ { i } } ( { \\mathbf s } ) , { \\mathbf a } \\sim \\pi _ { i } ( { \\mathbf a } | { \\mathbf s } ) } \\left[ | | \\mathcal { R } _ { { \\mathbf s } , { \\mathbf a } } ^ { \\pi _ { i } } - V ( { \\mathbf s } ) | | ^ { 2 } \\right] .", + "type": "interline_equation", + "image_path": "4ed4c423d2a71d70f13729e0b9e92fc8318e582740877940e770278d02d1528c.jpg" + } + ] + } + ], + "index": 37, + "virtual_lines": [ + { + "bbox": [ + 183, + 568, + 428, + 594 + ], + "spans": [], + "index": 37 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 597, + 451, + 618 + ], + "lines": [ + { + "bbox": [ + 103, + 594, + 454, + 620 + ], + "spans": [ + { + "bbox": [ + 103, + 594, + 192, + 620 + ], + "score": 1.0, + "content": "The optimal solution", + "type": "text" + }, + { + "bbox": [ + 192, + 598, + 296, + 618 + ], + "score": 0.94, + "content": "\\begin{array} { r } { \\bar { V } ( \\mathbf { s } ) = \\frac { \\sum _ { i } w _ { i } d _ { \\pi _ { i } } ( \\mathbf { s } ) V ^ { \\pi _ { i } } ( \\mathbf { s } ) } { \\sum _ { j } w _ { j } d _ { \\pi _ { j } } ( \\mathbf { s } ) } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 594, + 454, + 620 + ], + "score": 1.0, + "content": "is exactly the baseline in Equation 14.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38 + }, + { + "type": "title", + "bbox": [ + 108, + 624, + 249, + 636 + ], + "lines": [ + { + "bbox": [ + 105, + 623, + 250, + 637 + ], + "spans": [ + { + "bbox": [ + 105, + 623, + 250, + 637 + ], + "score": 1.0, + "content": "3.3 IMPLEMENTATION DETAILS", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 106, + 639, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 639, + 505, + 652 + ], + "spans": [ + { + "bbox": [ + 105, + 639, + 505, + 652 + ], + "score": 1.0, + "content": "Finally, we discuss several important design decisions for a practical implementation of AWR. Monte", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 104, + 648, + 508, + 666 + ], + "spans": [ + { + "bbox": [ + 104, + 648, + 366, + 666 + ], + "score": 1.0, + "content": "Carlo estimates can be used to approximate the expected return", + "type": "text" + }, + { + "bbox": [ + 366, + 650, + 387, + 663 + ], + "score": 0.91, + "content": "\\mathcal { R } _ { \\mathbf { s } , \\mathbf { a } } ^ { \\mathcal { D } }", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 648, + 508, + 666 + ], + "score": 1.0, + "content": ", but this can result in a high-", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 104, + 662, + 506, + 678 + ], + "spans": [ + { + "bbox": [ + 104, + 662, + 285, + 678 + ], + "score": 1.0, + "content": "variance estimate. Instead, we approximate", + "type": "text" + }, + { + "bbox": [ + 285, + 663, + 306, + 677 + ], + "score": 0.92, + "content": "\\mathcal { R } _ { \\mathbf { s } , \\mathbf { a } } ^ { \\mathcal { D } }", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 662, + 331, + 678 + ], + "score": 1.0, + "content": "using", + "type": "text" + }, + { + "bbox": [ + 331, + 663, + 359, + 675 + ], + "score": 0.72, + "content": "\\mathrm { T D } ( \\lambda )", + "type": "inline_equation" + }, + { + "bbox": [ + 360, + 662, + 506, + 678 + ], + "score": 1.0, + "content": "to obtain a lower-variance estimate", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 104, + 674, + 507, + 693 + ], + "spans": [ + { + "bbox": [ + 104, + 674, + 202, + 693 + ], + "score": 1.0, + "content": "(Sutton & Barto, 1998).", + "type": "text" + }, + { + "bbox": [ + 203, + 677, + 230, + 688 + ], + "score": 0.66, + "content": "\\mathrm { T D } ( \\lambda )", + "type": "inline_equation" + }, + { + "bbox": [ + 230, + 674, + 433, + 693 + ], + "score": 1.0, + "content": "is applied by bootstrapping with the value function", + "type": "text" + }, + { + "bbox": [ + 433, + 676, + 455, + 689 + ], + "score": 0.84, + "content": "V _ { k - 1 } ^ { \\mathcal { D } }", + "type": "inline_equation" + }, + { + "bbox": [ + 455, + 674, + 507, + 693 + ], + "score": 1.0, + "content": "(s) from the", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 361, + 700 + ], + "score": 1.0, + "content": "previous iteration. To set the value of the Lagrange multiplier", + "type": "text" + }, + { + "bbox": [ + 361, + 688, + 369, + 699 + ], + "score": 0.84, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 687, + 505, + 700 + ], + "score": 1.0, + "content": ", we found that a simple adaptive", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 698, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 182, + 711 + ], + "score": 1.0, + "content": "heuristic of setting", + "type": "text" + }, + { + "bbox": [ + 183, + 699, + 191, + 710 + ], + "score": 0.83, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 698, + 385, + 711 + ], + "score": 1.0, + "content": "to the standard deviation of all advantage values", + "type": "text" + }, + { + "bbox": [ + 385, + 700, + 398, + 710 + ], + "score": 0.86, + "content": "\\sigma _ { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 698, + 505, + 711 + ], + "score": 1.0, + "content": "in the replay buffer works", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 710, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 506, + 722 + ], + "score": 1.0, + "content": "well in practice. This is akin to the advantage normalization technique commonly used in imple-", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 720, + 506, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 506, + 733 + ], + "score": 1.0, + "content": "mentations of algorithms such as PPO (Dhariwal et al., 2017). Details are available in Appendix C.", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 43.5 + } + ], + "page_idx": 3, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 307, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 759 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 309, + 762 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 12, + "width": 8 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 106, + 82, + 349, + 93 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 351, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 351, + 95 + ], + "score": 1.0, + "content": "3.2 EXPERIENCE REPLAY AND OFF-POLICY LEARNING", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 102, + 505, + 249 + ], + "lines": [ + { + "bbox": [ + 105, + 102, + 506, + 116 + ], + "spans": [ + { + "bbox": [ + 105, + 102, + 368, + 116 + ], + "score": 1.0, + "content": "A crucial design decision of AWR is the choice of sampling policy", + "type": "text" + }, + { + "bbox": [ + 369, + 103, + 396, + 115 + ], + "score": 0.92, + "content": "\\mu ( \\mathbf { a } | \\mathbf { s } )", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 102, + 506, + 116 + ], + "score": 1.0, + "content": ". Standard implementations", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 114, + 506, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 506, + 128 + ], + "score": 1.0, + "content": "of RWR are typically on-policy, where the sampling policy is selected to be the current policy", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 107, + 125, + 505, + 137 + ], + "spans": [ + { + "bbox": [ + 107, + 125, + 178, + 137 + ], + "score": 0.92, + "content": "\\mu ( \\mathbf { a } | \\mathbf { s } ) = \\pi _ { k } ( \\mathbf { a } | \\mathbf { s } )", + "type": "inline_equation" + }, + { + "bbox": [ + 179, + 125, + 225, + 137 + ], + "score": 1.0, + "content": "at iteration", + "type": "text" + }, + { + "bbox": [ + 225, + 126, + 231, + 135 + ], + "score": 0.79, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 125, + 505, + 137 + ], + "score": 1.0, + "content": ". This can be sample inefficient, as data collected at each iteration are", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 136, + 506, + 148 + ], + "spans": [ + { + "bbox": [ + 106, + 136, + 506, + 148 + ], + "score": 1.0, + "content": "discarded after a single update iteration. Importance sampling can be incorporated into RWR to reuse", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 146, + 505, + 159 + ], + "spans": [ + { + "bbox": [ + 106, + 146, + 505, + 159 + ], + "score": 1.0, + "content": "data from previous iterations, but at the cost of larger variance (Kober & Peters, 2009). Instead, we can", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 158, + 506, + 171 + ], + "spans": [ + { + "bbox": [ + 105, + 158, + 506, + 171 + ], + "score": 1.0, + "content": "improve sample efficiency of AWR by incorporating experience replay and explicitly accounting for", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 170, + 506, + 181 + ], + "spans": [ + { + "bbox": [ + 106, + 170, + 506, + 181 + ], + "score": 1.0, + "content": "training data from a mixture of multiple past policies. As described in Algorithm 1, at each iteration,", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 179, + 506, + 192 + ], + "spans": [ + { + "bbox": [ + 105, + 179, + 317, + 192 + ], + "score": 1.0, + "content": "AWR collects a batch of data using the latest policy", + "type": "text" + }, + { + "bbox": [ + 317, + 181, + 329, + 191 + ], + "score": 0.85, + "content": "\\pi _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 179, + 506, + 192 + ], + "score": 1.0, + "content": ", and then stores this data in a replay buffer", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 190, + 506, + 204 + ], + "spans": [ + { + "bbox": [ + 106, + 191, + 115, + 201 + ], + "score": 0.77, + "content": "\\mathcal { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 116, + 190, + 351, + 204 + ], + "score": 1.0, + "content": ", which also contains data collected from previous policies", + "type": "text" + }, + { + "bbox": [ + 351, + 191, + 406, + 203 + ], + "score": 0.93, + "content": "\\{ \\pi _ { 1 } , \\cdots , \\pi _ { k } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 190, + 506, + 204 + ], + "score": 1.0, + "content": ". The value function and", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 201, + 506, + 215 + ], + "spans": [ + { + "bbox": [ + 105, + 201, + 308, + 215 + ], + "score": 1.0, + "content": "policy are then updated using samples drawn from", + "type": "text" + }, + { + "bbox": [ + 309, + 202, + 318, + 212 + ], + "score": 0.76, + "content": "\\mathcal { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 201, + 506, + 215 + ], + "score": 1.0, + "content": ". This replay strategy is analogous to modeling", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 104, + 212, + 507, + 232 + ], + "spans": [ + { + "bbox": [ + 104, + 213, + 378, + 232 + ], + "score": 1.0, + "content": "the sampling policy as a mixture of policies from previous iterations", + "type": "text" + }, + { + "bbox": [ + 378, + 212, + 475, + 227 + ], + "score": 0.94, + "content": "\\begin{array} { r } { \\mu _ { k } ( \\tau ) = \\sum _ { i = 1 } ^ { k } w _ { i } \\pi _ { i } ( \\tau ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 475, + 213, + 507, + 232 + ], + "score": 1.0, + "content": ", where", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 107, + 226, + 506, + 239 + ], + "spans": [ + { + "bbox": [ + 107, + 226, + 173, + 238 + ], + "score": 0.93, + "content": "\\pi _ { i } ( \\tau ) = p ( \\tau | \\pi _ { i } )", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 226, + 336, + 239 + ], + "score": 1.0, + "content": "represents the likelihood of a trajectory", + "type": "text" + }, + { + "bbox": [ + 336, + 228, + 343, + 236 + ], + "score": 0.77, + "content": "\\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 226, + 405, + 239 + ], + "score": 1.0, + "content": "under a policy", + "type": "text" + }, + { + "bbox": [ + 405, + 228, + 415, + 237 + ], + "score": 0.85, + "content": "\\pi _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 415, + 226, + 506, + 239 + ], + "score": 1.0, + "content": "from the ith iteration,", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 235, + 336, + 251 + ], + "spans": [ + { + "bbox": [ + 105, + 235, + 167, + 251 + ], + "score": 1.0, + "content": "and the weight", + "type": "text" + }, + { + "bbox": [ + 168, + 239, + 179, + 248 + ], + "score": 0.86, + "content": "w _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 180, + 235, + 321, + 251 + ], + "score": 1.0, + "content": "specify the probability of selecting", + "type": "text" + }, + { + "bbox": [ + 321, + 239, + 331, + 248 + ], + "score": 0.84, + "content": "\\pi _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 332, + 235, + 336, + 251 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 7, + "bbox_fs": [ + 104, + 102, + 507, + 251 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 253, + 506, + 325 + ], + "lines": [ + { + "bbox": [ + 105, + 252, + 505, + 266 + ], + "spans": [ + { + "bbox": [ + 105, + 252, + 505, + 266 + ], + "score": 1.0, + "content": "We now extend the derivation from the previous section to the off-policy setting with experience", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 264, + 506, + 278 + ], + "spans": [ + { + "bbox": [ + 106, + 264, + 506, + 278 + ], + "score": 1.0, + "content": "replay, and show that Algorithm 1 indeed optimizes the expected improvement over a sampling policy", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 275, + 506, + 289 + ], + "spans": [ + { + "bbox": [ + 105, + 275, + 506, + 289 + ], + "score": 1.0, + "content": "modeled by the replay buffer. Given a replay buffer consisting of trajectories from past policies,", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 286, + 506, + 303 + ], + "spans": [ + { + "bbox": [ + 105, + 287, + 253, + 303 + ], + "score": 1.0, + "content": "the joint state-action distribution of", + "type": "text" + }, + { + "bbox": [ + 254, + 290, + 261, + 300 + ], + "score": 0.8, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 287, + 310, + 303 + ], + "score": 1.0, + "content": "is given by", + "type": "text" + }, + { + "bbox": [ + 310, + 286, + 445, + 301 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\mu ( \\mathbf { s } , \\mathbf { a } ) = \\sum _ { i = 1 } ^ { k } w _ { i } d _ { \\pi _ { i } } ( \\mathbf { s } ) \\pi _ { i } ( \\mathbf { a } | \\mathbf { s } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 287, + 506, + 303 + ], + "score": 1.0, + "content": ", and similarly", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 104, + 299, + 507, + 319 + ], + "spans": [ + { + "bbox": [ + 104, + 299, + 243, + 319 + ], + "score": 1.0, + "content": "for the marginal state distribution", + "type": "text" + }, + { + "bbox": [ + 244, + 300, + 343, + 315 + ], + "score": 0.92, + "content": "\\begin{array} { r } { d _ { \\mu } ( \\mathbf { s } ) = \\sum _ { i = 1 } ^ { k } w _ { i } d _ { \\pi _ { i } } ( \\mathbf { s } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 343, + 299, + 507, + 319 + ], + "score": 1.0, + "content": ". The expected improvement can now be", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 313, + 402, + 326 + ], + "spans": [ + { + "bbox": [ + 106, + 313, + 402, + 326 + ], + "score": 1.0, + "content": "expressed with respect to the set of sampling policies in the replay buffer,", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 16.5, + "bbox_fs": [ + 104, + 252, + 507, + 326 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 161, + 323, + 449, + 356 + ], + "lines": [ + { + "bbox": [ + 161, + 323, + 449, + 356 + ], + "spans": [ + { + "bbox": [ + 161, + 323, + 449, + 356 + ], + "score": 0.92, + "content": "\\eta ( \\pi ) = J ( \\pi ) - \\sum _ { i } w _ { i } J ( \\pi _ { i } ) = \\mathbb { E } _ { \\mathbf { s } \\sim d _ { \\pi } ( \\mathbf { s } ) } \\mathbb { E } _ { \\mathbf { a } \\sim \\pi ( \\mathbf { a } | \\mathbf { s } ) } \\left[ \\sum _ { i } w _ { i } A ^ { \\pi _ { i } } ( \\mathbf { s } , \\mathbf { a } ) \\right] ,", + "type": "interline_equation", + "image_path": "dd7414402fec6108d138bf126c5e6d28947900f317c1d191d79d4af4e8d0705c.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 161, + 323, + 449, + 334.0 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 161, + 334.0, + 449, + 345.0 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 161, + 345.0, + 449, + 356.0 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 360, + 504, + 383 + ], + "lines": [ + { + "bbox": [ + 103, + 356, + 508, + 378 + ], + "spans": [ + { + "bbox": [ + 103, + 356, + 134, + 378 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 360, + 247, + 372 + ], + "score": 0.93, + "content": "A ^ { \\pi _ { i } } ( \\mathbf { s } , \\mathbf { a } ) = \\mathcal { R } _ { \\mathbf { s } , \\mathbf { a } } ^ { \\pi _ { i } } - V ^ { \\pi _ { i } } ( \\mathbf { s } )", + "type": "inline_equation" + }, + { + "bbox": [ + 247, + 356, + 508, + 378 + ], + "score": 1.0, + "content": "is the advantage with respect to each sampling policy. In Ap-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 370, + 506, + 384 + ], + "spans": [ + { + "bbox": [ + 105, + 370, + 137, + 384 + ], + "score": 1.0, + "content": "pendix", + "type": "text" + }, + { + "bbox": [ + 137, + 372, + 145, + 381 + ], + "score": 0.31, + "content": "\\mathbf { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 370, + 506, + 384 + ], + "score": 1.0, + "content": ", we show that the update procedure in Algorithm 1 optimizes the following objective:", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5, + "bbox_fs": [ + 103, + 356, + 508, + 384 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 201, + 383, + 408, + 434 + ], + "lines": [ + { + "bbox": [ + 201, + 383, + 408, + 434 + ], + "spans": [ + { + "bbox": [ + 201, + 383, + 408, + 434 + ], + "score": 0.93, + "content": "\\begin{array} { r l } & { \\underset { \\pi } { \\arg \\operatorname* { m a x } } \\sum _ { i = 1 } ^ { k } w _ { i } \\left( \\mathbb { E } _ { \\mathbf { s } \\sim d _ { \\pi _ { i } } ( \\mathbf { s } ) } \\mathbb { E } _ { \\mathbf { a } \\sim \\pi ( \\mathbf { a } | \\mathbf { s } ) } \\left[ A ^ { \\pi _ { i } } ( \\mathbf { s } , \\mathbf { a } ) \\right] \\right) } \\\\ & { \\quad \\mathbf { s } . \\mathbf { t } . \\quad \\mathbb { E } _ { \\mathbf { s } \\sim d _ { \\mu } ( \\mathbf { s } ) } \\left[ \\operatorname { D } _ { \\mathrm { K L } } \\left( \\pi ( \\cdot | \\mathbf { s } ) | | \\mu ( \\cdot | \\mathbf { s } ) \\right) \\right] \\leq \\epsilon , } \\end{array}", + "type": "interline_equation", + "image_path": "ca4b32e487d3f21916fa49a578b2cf61399ec2dbb60472981794e202bd5f722a.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 201, + 383, + 408, + 400.0 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 201, + 400.0, + 408, + 417.0 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 201, + 417.0, + 408, + 434.0 + ], + "spans": [], + "index": 27 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 437, + 505, + 467 + ], + "lines": [ + { + "bbox": [ + 103, + 434, + 505, + 453 + ], + "spans": [ + { + "bbox": [ + 103, + 434, + 284, + 453 + ], + "score": 1.0, + "content": "where µ(a|s) = µ(s,a) = Pi widπi (s)πi(a|s)", + "type": "text" + }, + { + "bbox": [ + 281, + 440, + 505, + 452 + ], + "score": 1.0, + "content": "represents the conditional action distribution defined by", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 455, + 490, + 467 + ], + "spans": [ + { + "bbox": [ + 106, + 455, + 490, + 467 + ], + "score": 1.0, + "content": "the replay buffer. This objective can be solved via the Lagrangian to yield the following update:", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5, + "bbox_fs": [ + 103, + 434, + 505, + 467 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 470, + 499, + 505 + ], + "lines": [ + { + "bbox": [ + 111, + 470, + 499, + 505 + ], + "spans": [ + { + "bbox": [ + 111, + 470, + 499, + 505 + ], + "score": 0.93, + "content": "\\arg \\operatorname* { m a x } _ { \\pi } \\sum _ { i = 1 } ^ { k } w _ { i } \\mathbb { E } _ { \\mathbf { s } \\sim d _ { \\pi _ { i } } ( \\mathbf { s } ) } \\mathbb { E } _ { \\mathbf { a } \\sim \\pi _ { i } ( \\mathbf { a } | \\mathbf { s } ) } \\left[ \\log \\pi ( \\mathbf { a } | \\mathbf { s } ) \\mathrm { e x p } \\left( \\frac { 1 } { \\beta } \\left( \\mathcal { R } _ { \\mathbf { s } , \\mathbf { a } } ^ { \\pi _ { i } } - \\frac { \\sum _ { j } w _ { j } d _ { \\pi _ { j } } ( \\mathbf { s } ) V ^ { \\pi _ { j } } ( \\mathbf { s } ) } { \\sum _ { j } w _ { j } d _ { \\pi _ { j } } ( \\mathbf { s } ) } \\right) \\right) \\right] ,", + "type": "interline_equation", + "image_path": "610d83fb4461d7d6696dc6e5b454ef2e832925af2797f31aa9ab35c5feebe95a.jpg" + } + ] + } + ], + "index": 31, + "virtual_lines": [ + { + "bbox": [ + 111, + 470, + 499, + 481.6666666666667 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 111, + 481.6666666666667, + 499, + 493.33333333333337 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 111, + 493.33333333333337, + 499, + 505.00000000000006 + ], + "spans": [], + "index": 32 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 519, + 505, + 564 + ], + "lines": [ + { + "bbox": [ + 105, + 519, + 506, + 532 + ], + "spans": [ + { + "bbox": [ + 105, + 519, + 407, + 532 + ], + "score": 1.0, + "content": "where the expectations can be approximated by simply sampling from", + "type": "text" + }, + { + "bbox": [ + 407, + 520, + 417, + 529 + ], + "score": 0.81, + "content": "\\mathcal { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 519, + 506, + 532 + ], + "score": 1.0, + "content": "following Line 6 of", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 531, + 506, + 543 + ], + "spans": [ + { + "bbox": [ + 105, + 531, + 506, + 543 + ], + "score": 1.0, + "content": "Algorithm 1. A detailed derivation is available in Appendix B. Note, the baseline in the exponent", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 542, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 542, + 505, + 554 + ], + "score": 1.0, + "content": "now consists of an average of the value functions of the different policies. This mean value function", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 107, + 552, + 487, + 565 + ], + "spans": [ + { + "bbox": [ + 107, + 552, + 128, + 565 + ], + "score": 0.89, + "content": "\\bar { V } ( \\mathbf { s } )", + "type": "inline_equation" + }, + { + "bbox": [ + 128, + 552, + 487, + 565 + ], + "score": 1.0, + "content": "can be fitted by simply sampling from the replay buffer following Line 5 of Algorithm 1,", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 34.5, + "bbox_fs": [ + 105, + 519, + 506, + 565 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 183, + 568, + 428, + 594 + ], + "lines": [ + { + "bbox": [ + 183, + 568, + 428, + 594 + ], + "spans": [ + { + "bbox": [ + 183, + 568, + 428, + 594 + ], + "score": 0.94, + "content": "\\bar { V } = \\underset { V } { \\arg \\operatorname* { m i n } } \\sum _ { i } w _ { i } \\mathbb { E } _ { { \\mathbf s } , \\sim d _ { \\pi _ { i } } ( { \\mathbf s } ) , { \\mathbf a } \\sim \\pi _ { i } ( { \\mathbf a } | { \\mathbf s } ) } \\left[ | | \\mathcal { R } _ { { \\mathbf s } , { \\mathbf a } } ^ { \\pi _ { i } } - V ( { \\mathbf s } ) | | ^ { 2 } \\right] .", + "type": "interline_equation", + "image_path": "4ed4c423d2a71d70f13729e0b9e92fc8318e582740877940e770278d02d1528c.jpg" + } + ] + } + ], + "index": 37, + "virtual_lines": [ + { + "bbox": [ + 183, + 568, + 428, + 594 + ], + "spans": [], + "index": 37 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 597, + 451, + 618 + ], + "lines": [ + { + "bbox": [ + 103, + 594, + 454, + 620 + ], + "spans": [ + { + "bbox": [ + 103, + 594, + 192, + 620 + ], + "score": 1.0, + "content": "The optimal solution", + "type": "text" + }, + { + "bbox": [ + 192, + 598, + 296, + 618 + ], + "score": 0.94, + "content": "\\begin{array} { r } { \\bar { V } ( \\mathbf { s } ) = \\frac { \\sum _ { i } w _ { i } d _ { \\pi _ { i } } ( \\mathbf { s } ) V ^ { \\pi _ { i } } ( \\mathbf { s } ) } { \\sum _ { j } w _ { j } d _ { \\pi _ { j } } ( \\mathbf { s } ) } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 594, + 454, + 620 + ], + "score": 1.0, + "content": "is exactly the baseline in Equation 14.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38, + "bbox_fs": [ + 103, + 594, + 454, + 620 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 624, + 249, + 636 + ], + "lines": [ + { + "bbox": [ + 105, + 623, + 250, + 637 + ], + "spans": [ + { + "bbox": [ + 105, + 623, + 250, + 637 + ], + "score": 1.0, + "content": "3.3 IMPLEMENTATION DETAILS", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 106, + 639, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 639, + 505, + 652 + ], + "spans": [ + { + "bbox": [ + 105, + 639, + 505, + 652 + ], + "score": 1.0, + "content": "Finally, we discuss several important design decisions for a practical implementation of AWR. Monte", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 104, + 648, + 508, + 666 + ], + "spans": [ + { + "bbox": [ + 104, + 648, + 366, + 666 + ], + "score": 1.0, + "content": "Carlo estimates can be used to approximate the expected return", + "type": "text" + }, + { + "bbox": [ + 366, + 650, + 387, + 663 + ], + "score": 0.91, + "content": "\\mathcal { R } _ { \\mathbf { s } , \\mathbf { a } } ^ { \\mathcal { D } }", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 648, + 508, + 666 + ], + "score": 1.0, + "content": ", but this can result in a high-", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 104, + 662, + 506, + 678 + ], + "spans": [ + { + "bbox": [ + 104, + 662, + 285, + 678 + ], + "score": 1.0, + "content": "variance estimate. Instead, we approximate", + "type": "text" + }, + { + "bbox": [ + 285, + 663, + 306, + 677 + ], + "score": 0.92, + "content": "\\mathcal { R } _ { \\mathbf { s } , \\mathbf { a } } ^ { \\mathcal { D } }", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 662, + 331, + 678 + ], + "score": 1.0, + "content": "using", + "type": "text" + }, + { + "bbox": [ + 331, + 663, + 359, + 675 + ], + "score": 0.72, + "content": "\\mathrm { T D } ( \\lambda )", + "type": "inline_equation" + }, + { + "bbox": [ + 360, + 662, + 506, + 678 + ], + "score": 1.0, + "content": "to obtain a lower-variance estimate", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 104, + 674, + 507, + 693 + ], + "spans": [ + { + "bbox": [ + 104, + 674, + 202, + 693 + ], + "score": 1.0, + "content": "(Sutton & Barto, 1998).", + "type": "text" + }, + { + "bbox": [ + 203, + 677, + 230, + 688 + ], + "score": 0.66, + "content": "\\mathrm { T D } ( \\lambda )", + "type": "inline_equation" + }, + { + "bbox": [ + 230, + 674, + 433, + 693 + ], + "score": 1.0, + "content": "is applied by bootstrapping with the value function", + "type": "text" + }, + { + "bbox": [ + 433, + 676, + 455, + 689 + ], + "score": 0.84, + "content": "V _ { k - 1 } ^ { \\mathcal { D } }", + "type": "inline_equation" + }, + { + "bbox": [ + 455, + 674, + 507, + 693 + ], + "score": 1.0, + "content": "(s) from the", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 361, + 700 + ], + "score": 1.0, + "content": "previous iteration. To set the value of the Lagrange multiplier", + "type": "text" + }, + { + "bbox": [ + 361, + 688, + 369, + 699 + ], + "score": 0.84, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 687, + 505, + 700 + ], + "score": 1.0, + "content": ", we found that a simple adaptive", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 698, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 182, + 711 + ], + "score": 1.0, + "content": "heuristic of setting", + "type": "text" + }, + { + "bbox": [ + 183, + 699, + 191, + 710 + ], + "score": 0.83, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 698, + 385, + 711 + ], + "score": 1.0, + "content": "to the standard deviation of all advantage values", + "type": "text" + }, + { + "bbox": [ + 385, + 700, + 398, + 710 + ], + "score": 0.86, + "content": "\\sigma _ { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 698, + 505, + 711 + ], + "score": 1.0, + "content": "in the replay buffer works", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 710, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 506, + 722 + ], + "score": 1.0, + "content": "well in practice. This is akin to the advantage normalization technique commonly used in imple-", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 720, + 506, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 506, + 733 + ], + "score": 1.0, + "content": "mentations of algorithms such as PPO (Dhariwal et al., 2017). Details are available in Appendix C.", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 43.5, + "bbox_fs": [ + 104, + 639, + 508, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 109, + 85, + 502, + 206 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 109, + 85, + 502, + 206 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 85, + 502, + 206 + ], + "spans": [ + { + "bbox": [ + 109, + 85, + 502, + 206 + ], + "score": 0.97, + "type": "image", + "image_path": "7c0e471687ed55416395d8d259768717763e8d9157d805db1e6137351b93ea0e.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 109, + 85, + 502, + 125.33333333333334 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 109, + 125.33333333333334, + 502, + 165.66666666666669 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 109, + 165.66666666666669, + 502, + 206.00000000000003 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 103, + 211, + 505, + 234 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 210, + 504, + 223 + ], + "spans": [ + { + "bbox": [ + 106, + 210, + 504, + 223 + ], + "score": 1.0, + "content": "Figure 1: Snapshots of AWR policies trained on OpenAI Gym and motion imitation tasks. Our simple", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 222, + 384, + 235 + ], + "spans": [ + { + "bbox": [ + 106, + 222, + 384, + 235 + ], + "score": 1.0, + "content": "algorithm learns effective policies for a diverse suite of control tasks.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "text", + "bbox": [ + 107, + 240, + 505, + 281 + ], + "lines": [ + { + "bbox": [ + 103, + 239, + 507, + 262 + ], + "spans": [ + { + "bbox": [ + 103, + 239, + 159, + 262 + ], + "score": 1.0, + "content": "The weights", + "type": "text" + }, + { + "bbox": [ + 159, + 240, + 296, + 261 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\omega _ { \\mathbf { s } , \\mathbf { a } } ^ { D } = \\exp \\Big ( \\frac { 1 } { \\beta } \\left( \\mathcal { R } _ { \\mathbf { s } , \\mathbf { a } } ^ { D } - V ^ { \\mathcal { D } } ( \\mathbf { s } ) \\right) \\Big ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 239, + 507, + 262 + ], + "score": 1.0, + "content": "used to update the policy can occasionally assume", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 255, + 505, + 274 + ], + "spans": [ + { + "bbox": [ + 105, + 255, + 505, + 274 + ], + "score": 1.0, + "content": "excessively large values, which causes gradients to explode. Therefore, we apply weight clipping", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 107, + 264, + 425, + 286 + ], + "spans": [ + { + "bbox": [ + 107, + 268, + 210, + 283 + ], + "score": 0.91, + "content": "\\hat { \\omega } _ { \\mathbf { s } , \\mathbf { a } } ^ { \\mathcal { D } } = \\operatorname* { m i n } \\left( \\omega _ { \\mathbf { s } , \\mathbf { a } } ^ { \\mathbf { \\breve { D } } } , \\omega _ { \\operatorname* { m a x } } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 264, + 278, + 286 + ], + "score": 1.0, + "content": "with a threshold", + "type": "text" + }, + { + "bbox": [ + 279, + 271, + 302, + 281 + ], + "score": 0.89, + "content": "\\omega _ { \\mathrm { m a x } }", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 264, + 425, + 286 + ], + "score": 1.0, + "content": "to prevent exploding weights.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6 + }, + { + "type": "title", + "bbox": [ + 108, + 293, + 211, + 306 + ], + "lines": [ + { + "bbox": [ + 105, + 291, + 213, + 308 + ], + "spans": [ + { + "bbox": [ + 105, + 291, + 213, + 308 + ], + "score": 1.0, + "content": "4 RELATED WORK", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 107, + 313, + 505, + 490 + ], + "lines": [ + { + "bbox": [ + 105, + 313, + 506, + 327 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 506, + 327 + ], + "score": 1.0, + "content": "Existing RL methods can be broadly categorized into on-policy and off-policy algorithms (Sutton", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 325, + 506, + 338 + ], + "spans": [ + { + "bbox": [ + 105, + 325, + 506, + 338 + ], + "score": 1.0, + "content": "& Barto, 1998). On-policy algorithms generally update the policy using data collected from the", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 336, + 506, + 349 + ], + "spans": [ + { + "bbox": [ + 106, + 336, + 506, + 349 + ], + "score": 1.0, + "content": "same policy. A popular class of on-policy algorithms is policy gradient methods (Williams, 1992;", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 347, + 506, + 360 + ], + "spans": [ + { + "bbox": [ + 106, + 347, + 506, + 360 + ], + "score": 1.0, + "content": "Sutton et al., 2000), which can be effective for a diverse array of complex tasks (Heess et al., 2017;", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 357, + 505, + 371 + ], + "spans": [ + { + "bbox": [ + 105, + 357, + 505, + 371 + ], + "score": 1.0, + "content": "Pathak et al., 2017; Peng et al., 2018; Rajeswaran et al., 2018). However, on-policy algorithms are", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 368, + 506, + 383 + ], + "spans": [ + { + "bbox": [ + 105, + 368, + 506, + 383 + ], + "score": 1.0, + "content": "typically data inefficient. Off-policy algorithms improve sample efficiency by enabling training using", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 380, + 505, + 392 + ], + "spans": [ + { + "bbox": [ + 106, + 380, + 505, + 392 + ], + "score": 1.0, + "content": "data from other sources, such as data from different agents or data from previous iterations of the", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 391, + 506, + 403 + ], + "spans": [ + { + "bbox": [ + 106, + 391, + 506, + 403 + ], + "score": 1.0, + "content": "algorithm. Importance sampling is a simple strategy for off-policy learning (Sutton & Barto, 1998;", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 402, + 505, + 414 + ], + "spans": [ + { + "bbox": [ + 106, + 402, + 505, + 414 + ], + "score": 1.0, + "content": "Meuleau et al., 2000; Hachiya et al., 2009), but can introduce optimization instabilities due to the", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 413, + 505, + 425 + ], + "spans": [ + { + "bbox": [ + 105, + 413, + 505, + 425 + ], + "score": 1.0, + "content": "large variance of the importance sampling estimator. Dynamic programming methods based on", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 423, + 506, + 437 + ], + "spans": [ + { + "bbox": [ + 105, + 423, + 506, + 437 + ], + "score": 1.0, + "content": "Q-function learning can also leverage off-policy data (Precup et al., 2001; Mnih et al., 2015; Lillicrap", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 435, + 506, + 447 + ], + "spans": [ + { + "bbox": [ + 106, + 435, + 506, + 447 + ], + "score": 1.0, + "content": "et al., 2016; Gu et al., 2016; Haarnoja et al., 2018b). But these methods can be notoriously unstable,", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 446, + 506, + 458 + ], + "spans": [ + { + "bbox": [ + 106, + 446, + 506, + 458 + ], + "score": 1.0, + "content": "and in practice, require a variety of stabilization techniques (Hasselt et al., 2016; Wang et al., 2016;", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 456, + 505, + 469 + ], + "spans": [ + { + "bbox": [ + 106, + 456, + 505, + 469 + ], + "score": 1.0, + "content": "Munos et al., 2016; Hessel et al., 2017; Fujimoto et al., 2018; Fu et al., 2019). Furthermore, it can be", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 468, + 506, + 480 + ], + "spans": [ + { + "bbox": [ + 106, + 468, + 506, + 480 + ], + "score": 1.0, + "content": "difficult to apply these methods to fully off-policy data, where an agent is unable to collect additional", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 479, + 389, + 491 + ], + "spans": [ + { + "bbox": [ + 106, + 479, + 389, + 491 + ], + "score": 1.0, + "content": "environmental interactions (Fujimoto et al., 2019; Kumar et al., 2019).", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 16.5 + }, + { + "type": "text", + "bbox": [ + 107, + 495, + 505, + 616 + ], + "lines": [ + { + "bbox": [ + 105, + 495, + 506, + 508 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 506, + 508 + ], + "score": 1.0, + "content": "Policy search can also be formulated under an expectation-maximization framework (Peters et al.,", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 505, + 506, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 505, + 506, + 519 + ], + "score": 1.0, + "content": "2010; Neumann, 2011; Abdolmaleki et al., 2018b), an early example of which is reward-weighted", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 517, + 506, + 531 + ], + "spans": [ + { + "bbox": [ + 105, + 517, + 506, + 531 + ], + "score": 1.0, + "content": "regression (RWR) (Peters & Schaal, 2007). RWR presents a simple on-policy RL algorithm that", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 527, + 506, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 506, + 542 + ], + "score": 1.0, + "content": "casts policy search as a supervised regression problem. A similar algorithm, relative entropy policy", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 540, + 506, + 552 + ], + "spans": [ + { + "bbox": [ + 106, + 540, + 506, + 552 + ], + "score": 1.0, + "content": "search (REPS) (Peters et al., 2010), can also be derived from the dual formulation of a constrained", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 550, + 506, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 506, + 563 + ], + "score": 1.0, + "content": "policy search problem. RWR has a number appealing properties: it has a very simple update rule, and", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 561, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 106, + 561, + 505, + 574 + ], + "score": 1.0, + "content": "since each iteration corresponds to supervised learning, it can be more stable and easier to implement", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 573, + 505, + 584 + ], + "spans": [ + { + "bbox": [ + 106, + 573, + 505, + 584 + ], + "score": 1.0, + "content": "than many of the previously mentioned RL methods. Despite these advantages, RWR has not been", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 582, + 506, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 506, + 595 + ], + "score": 1.0, + "content": "shown to be an effective when combined with neural networks (Schulman et al., 2015; Duan et al.,", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 594, + 506, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 506, + 606 + ], + "score": 1.0, + "content": "2016). In this work, we propose a number of modifications to the formulation of RWR to produce an", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 605, + 476, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 476, + 617 + ], + "score": 1.0, + "content": "effective off-policy deep RL algorithm, while still retaining much of the simplicity of RWR.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 107, + 621, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 622, + 505, + 633 + ], + "spans": [ + { + "bbox": [ + 106, + 622, + 505, + 633 + ], + "score": 1.0, + "content": "The optimization problem being solved in AWR is similar to REPS (Peters et al., 2010), but REPS", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 633, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 505, + 645 + ], + "score": 1.0, + "content": "optimizes the expected return instead of the expected improvement. The weights in REPS also", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 644, + 505, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 505, + 656 + ], + "score": 1.0, + "content": "contains a Bellman error term that resembles advantages, but are computed using a linear value", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 654, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 505, + 667 + ], + "score": 1.0, + "content": "function derived from a feature matching constraint. Learning the REPS value function involves", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 666, + 505, + 677 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 505, + 677 + ], + "score": 1.0, + "content": "minimization of a dual function, which is a complex function of the Bellman error, while the value", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 689 + ], + "score": 1.0, + "content": "function in AWR can be learned with simple supervised regression. More recently, Abdolmaleki", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "et al. (2018b) proposed MPO, a deep RL variant of REPS, which applies a partial EM algorithm for", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 699, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 712 + ], + "score": 1.0, + "content": "policy optimization. The method first fits a Q-function of the current policy via bootstrapping, and", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "then performs a policy improvement step with respect to this Q-function. MPO uses off-policy data", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 721, + 505, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 505, + 732 + ], + "score": 1.0, + "content": "for training a Q-function and employs Retrace(λ) for off-policy correction (Munos et al., 2016). In", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 40.5 + } + ], + "page_idx": 4, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 307, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 763 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 763 + ], + "score": 1.0, + "content": "5", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 109, + 85, + 502, + 206 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 109, + 85, + 502, + 206 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 85, + 502, + 206 + ], + "spans": [ + { + "bbox": [ + 109, + 85, + 502, + 206 + ], + "score": 0.97, + "type": "image", + "image_path": "7c0e471687ed55416395d8d259768717763e8d9157d805db1e6137351b93ea0e.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 109, + 85, + 502, + 125.33333333333334 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 109, + 125.33333333333334, + 502, + 165.66666666666669 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 109, + 165.66666666666669, + 502, + 206.00000000000003 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 103, + 211, + 505, + 234 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 210, + 504, + 223 + ], + "spans": [ + { + "bbox": [ + 106, + 210, + 504, + 223 + ], + "score": 1.0, + "content": "Figure 1: Snapshots of AWR policies trained on OpenAI Gym and motion imitation tasks. Our simple", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 222, + 384, + 235 + ], + "spans": [ + { + "bbox": [ + 106, + 222, + 384, + 235 + ], + "score": 1.0, + "content": "algorithm learns effective policies for a diverse suite of control tasks.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "text", + "bbox": [ + 107, + 240, + 505, + 281 + ], + "lines": [ + { + "bbox": [ + 103, + 239, + 507, + 262 + ], + "spans": [ + { + "bbox": [ + 103, + 239, + 159, + 262 + ], + "score": 1.0, + "content": "The weights", + "type": "text" + }, + { + "bbox": [ + 159, + 240, + 296, + 261 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\omega _ { \\mathbf { s } , \\mathbf { a } } ^ { D } = \\exp \\Big ( \\frac { 1 } { \\beta } \\left( \\mathcal { R } _ { \\mathbf { s } , \\mathbf { a } } ^ { D } - V ^ { \\mathcal { D } } ( \\mathbf { s } ) \\right) \\Big ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 239, + 507, + 262 + ], + "score": 1.0, + "content": "used to update the policy can occasionally assume", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 255, + 505, + 274 + ], + "spans": [ + { + "bbox": [ + 105, + 255, + 505, + 274 + ], + "score": 1.0, + "content": "excessively large values, which causes gradients to explode. Therefore, we apply weight clipping", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 107, + 264, + 425, + 286 + ], + "spans": [ + { + "bbox": [ + 107, + 268, + 210, + 283 + ], + "score": 0.91, + "content": "\\hat { \\omega } _ { \\mathbf { s } , \\mathbf { a } } ^ { \\mathcal { D } } = \\operatorname* { m i n } \\left( \\omega _ { \\mathbf { s } , \\mathbf { a } } ^ { \\mathbf { \\breve { D } } } , \\omega _ { \\operatorname* { m a x } } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 264, + 278, + 286 + ], + "score": 1.0, + "content": "with a threshold", + "type": "text" + }, + { + "bbox": [ + 279, + 271, + 302, + 281 + ], + "score": 0.89, + "content": "\\omega _ { \\mathrm { m a x } }", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 264, + 425, + 286 + ], + "score": 1.0, + "content": "to prevent exploding weights.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6, + "bbox_fs": [ + 103, + 239, + 507, + 286 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 293, + 211, + 306 + ], + "lines": [ + { + "bbox": [ + 105, + 291, + 213, + 308 + ], + "spans": [ + { + "bbox": [ + 105, + 291, + 213, + 308 + ], + "score": 1.0, + "content": "4 RELATED WORK", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 107, + 313, + 505, + 490 + ], + "lines": [ + { + "bbox": [ + 105, + 313, + 506, + 327 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 506, + 327 + ], + "score": 1.0, + "content": "Existing RL methods can be broadly categorized into on-policy and off-policy algorithms (Sutton", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 325, + 506, + 338 + ], + "spans": [ + { + "bbox": [ + 105, + 325, + 506, + 338 + ], + "score": 1.0, + "content": "& Barto, 1998). On-policy algorithms generally update the policy using data collected from the", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 336, + 506, + 349 + ], + "spans": [ + { + "bbox": [ + 106, + 336, + 506, + 349 + ], + "score": 1.0, + "content": "same policy. A popular class of on-policy algorithms is policy gradient methods (Williams, 1992;", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 347, + 506, + 360 + ], + "spans": [ + { + "bbox": [ + 106, + 347, + 506, + 360 + ], + "score": 1.0, + "content": "Sutton et al., 2000), which can be effective for a diverse array of complex tasks (Heess et al., 2017;", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 357, + 505, + 371 + ], + "spans": [ + { + "bbox": [ + 105, + 357, + 505, + 371 + ], + "score": 1.0, + "content": "Pathak et al., 2017; Peng et al., 2018; Rajeswaran et al., 2018). However, on-policy algorithms are", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 368, + 506, + 383 + ], + "spans": [ + { + "bbox": [ + 105, + 368, + 506, + 383 + ], + "score": 1.0, + "content": "typically data inefficient. Off-policy algorithms improve sample efficiency by enabling training using", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 380, + 505, + 392 + ], + "spans": [ + { + "bbox": [ + 106, + 380, + 505, + 392 + ], + "score": 1.0, + "content": "data from other sources, such as data from different agents or data from previous iterations of the", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 391, + 506, + 403 + ], + "spans": [ + { + "bbox": [ + 106, + 391, + 506, + 403 + ], + "score": 1.0, + "content": "algorithm. Importance sampling is a simple strategy for off-policy learning (Sutton & Barto, 1998;", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 402, + 505, + 414 + ], + "spans": [ + { + "bbox": [ + 106, + 402, + 505, + 414 + ], + "score": 1.0, + "content": "Meuleau et al., 2000; Hachiya et al., 2009), but can introduce optimization instabilities due to the", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 413, + 505, + 425 + ], + "spans": [ + { + "bbox": [ + 105, + 413, + 505, + 425 + ], + "score": 1.0, + "content": "large variance of the importance sampling estimator. Dynamic programming methods based on", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 423, + 506, + 437 + ], + "spans": [ + { + "bbox": [ + 105, + 423, + 506, + 437 + ], + "score": 1.0, + "content": "Q-function learning can also leverage off-policy data (Precup et al., 2001; Mnih et al., 2015; Lillicrap", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 435, + 506, + 447 + ], + "spans": [ + { + "bbox": [ + 106, + 435, + 506, + 447 + ], + "score": 1.0, + "content": "et al., 2016; Gu et al., 2016; Haarnoja et al., 2018b). But these methods can be notoriously unstable,", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 446, + 506, + 458 + ], + "spans": [ + { + "bbox": [ + 106, + 446, + 506, + 458 + ], + "score": 1.0, + "content": "and in practice, require a variety of stabilization techniques (Hasselt et al., 2016; Wang et al., 2016;", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 456, + 505, + 469 + ], + "spans": [ + { + "bbox": [ + 106, + 456, + 505, + 469 + ], + "score": 1.0, + "content": "Munos et al., 2016; Hessel et al., 2017; Fujimoto et al., 2018; Fu et al., 2019). Furthermore, it can be", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 468, + 506, + 480 + ], + "spans": [ + { + "bbox": [ + 106, + 468, + 506, + 480 + ], + "score": 1.0, + "content": "difficult to apply these methods to fully off-policy data, where an agent is unable to collect additional", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 479, + 389, + 491 + ], + "spans": [ + { + "bbox": [ + 106, + 479, + 389, + 491 + ], + "score": 1.0, + "content": "environmental interactions (Fujimoto et al., 2019; Kumar et al., 2019).", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 16.5, + "bbox_fs": [ + 105, + 313, + 506, + 491 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 495, + 505, + 616 + ], + "lines": [ + { + "bbox": [ + 105, + 495, + 506, + 508 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 506, + 508 + ], + "score": 1.0, + "content": "Policy search can also be formulated under an expectation-maximization framework (Peters et al.,", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 505, + 506, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 505, + 506, + 519 + ], + "score": 1.0, + "content": "2010; Neumann, 2011; Abdolmaleki et al., 2018b), an early example of which is reward-weighted", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 517, + 506, + 531 + ], + "spans": [ + { + "bbox": [ + 105, + 517, + 506, + 531 + ], + "score": 1.0, + "content": "regression (RWR) (Peters & Schaal, 2007). RWR presents a simple on-policy RL algorithm that", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 527, + 506, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 506, + 542 + ], + "score": 1.0, + "content": "casts policy search as a supervised regression problem. A similar algorithm, relative entropy policy", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 540, + 506, + 552 + ], + "spans": [ + { + "bbox": [ + 106, + 540, + 506, + 552 + ], + "score": 1.0, + "content": "search (REPS) (Peters et al., 2010), can also be derived from the dual formulation of a constrained", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 550, + 506, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 506, + 563 + ], + "score": 1.0, + "content": "policy search problem. RWR has a number appealing properties: it has a very simple update rule, and", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 561, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 106, + 561, + 505, + 574 + ], + "score": 1.0, + "content": "since each iteration corresponds to supervised learning, it can be more stable and easier to implement", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 573, + 505, + 584 + ], + "spans": [ + { + "bbox": [ + 106, + 573, + 505, + 584 + ], + "score": 1.0, + "content": "than many of the previously mentioned RL methods. Despite these advantages, RWR has not been", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 582, + 506, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 506, + 595 + ], + "score": 1.0, + "content": "shown to be an effective when combined with neural networks (Schulman et al., 2015; Duan et al.,", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 594, + 506, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 506, + 606 + ], + "score": 1.0, + "content": "2016). In this work, we propose a number of modifications to the formulation of RWR to produce an", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 605, + 476, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 476, + 617 + ], + "score": 1.0, + "content": "effective off-policy deep RL algorithm, while still retaining much of the simplicity of RWR.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 30, + "bbox_fs": [ + 105, + 495, + 506, + 617 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 621, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 622, + 505, + 633 + ], + "spans": [ + { + "bbox": [ + 106, + 622, + 505, + 633 + ], + "score": 1.0, + "content": "The optimization problem being solved in AWR is similar to REPS (Peters et al., 2010), but REPS", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 633, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 505, + 645 + ], + "score": 1.0, + "content": "optimizes the expected return instead of the expected improvement. The weights in REPS also", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 644, + 505, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 505, + 656 + ], + "score": 1.0, + "content": "contains a Bellman error term that resembles advantages, but are computed using a linear value", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 654, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 505, + 667 + ], + "score": 1.0, + "content": "function derived from a feature matching constraint. Learning the REPS value function involves", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 666, + 505, + 677 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 505, + 677 + ], + "score": 1.0, + "content": "minimization of a dual function, which is a complex function of the Bellman error, while the value", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 689 + ], + "score": 1.0, + "content": "function in AWR can be learned with simple supervised regression. More recently, Abdolmaleki", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "et al. (2018b) proposed MPO, a deep RL variant of REPS, which applies a partial EM algorithm for", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 699, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 712 + ], + "score": 1.0, + "content": "policy optimization. The method first fits a Q-function of the current policy via bootstrapping, and", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "then performs a policy improvement step with respect to this Q-function. MPO uses off-policy data", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 721, + 505, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 505, + 732 + ], + "score": 1.0, + "content": "for training a Q-function and employs Retrace(λ) for off-policy correction (Munos et al., 2016). In", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 40.5, + "bbox_fs": [ + 105, + 622, + 506, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 106, + 82, + 505, + 170 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 106, + 82, + 505, + 170 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 170 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 170 + ], + "score": 0.96, + "type": "image", + "image_path": "f4d7a3e7fde0cb6b789cbd4e6862d6eb15cff251382b73b9b8ec553ea60a54eb.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 106, + 82, + 505, + 111.33333333333333 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 106, + 111.33333333333333, + 505, + 140.66666666666666 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 106, + 140.66666666666666, + 505, + 170.0 + ], + "spans": [], + "index": 2 + } + ] + } + ], + "index": 1 + }, + { + "type": "table", + "bbox": [ + 108, + 202, + 503, + 257 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 175, + 504, + 198 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 174, + 506, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 174, + 506, + 189 + ], + "score": 1.0, + "content": "Figure 2: Learning curves of the various algorithms when applied to OpenAI Gym tasks. Results are", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 186, + 490, + 198 + ], + "spans": [ + { + "bbox": [ + 105, + 186, + 490, + 198 + ], + "score": 1.0, + "content": "averaged across 10 random seeds. AWR is generally competitive with the best current methods.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + }, + { + "type": "table_body", + "bbox": [ + 108, + 202, + 503, + 257 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 202, + 503, + 257 + ], + "spans": [ + { + "bbox": [ + 108, + 202, + 503, + 257 + ], + "score": 0.967, + "html": "
TaskTRPOPPODDPGTD3SACLAWERRWRAWR (Ours)
Ant-v22901 ± 854884± 124972 ± 15505997 ± 7657500±3532240± 4971183± 1765372± 163
HalfCheetah-v23302 ± 4287617 ± 18510563 ± 38212324 ± 154916223 ± 9644596± 23312075±3709192 ± 157
Hopper-v21880±3372514± 726855±2822794± 152757±6581830± 553605± 1143498±167
Humanoid-v2552±94668 ± 11534382 ± 4234738±936296±332108±386509±186159 ± 274
LunarLander-v2104± 94121 ± 49185±23229±2
Walker2d-v22765±1685036± 934401± 4704779± 8036210±5112502±388406±645813± 483
", + "type": "table", + "image_path": "5dd21a85e5c4fe859e1c0e8bf61ebae24e92f3286659d0e77425a525cdcb6d1b.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 108, + 202, + 503, + 220.33333333333334 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 108, + 220.33333333333334, + 503, + 238.66666666666669 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 108, + 238.66666666666669, + 503, + 257.0 + ], + "spans": [], + "index": 7 + } + ] + } + ], + "index": 4.75 + }, + { + "type": "text", + "bbox": [ + 107, + 263, + 505, + 296 + ], + "lines": [ + { + "bbox": [ + 105, + 261, + 505, + 276 + ], + "spans": [ + { + "bbox": [ + 105, + 261, + 423, + 276 + ], + "score": 1.0, + "content": "Table 1: Final returns for different algorithms on the OpenAI Gym tasks, with", + "type": "text" + }, + { + "bbox": [ + 423, + 264, + 434, + 273 + ], + "score": 0.76, + "content": "\\pm", + "type": "inline_equation" + }, + { + "bbox": [ + 434, + 261, + 505, + 276 + ], + "score": 1.0, + "content": "corresponding to", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 274, + 506, + 287 + ], + "spans": [ + { + "bbox": [ + 105, + 274, + 506, + 287 + ], + "score": 1.0, + "content": "one standard deviation of the average return across 10 random seeds. In terms of final performance,", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 285, + 310, + 297 + ], + "spans": [ + { + "bbox": [ + 106, + 285, + 310, + 297 + ], + "score": 1.0, + "content": "AWR is generally competitive with prior methods.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 106, + 304, + 505, + 469 + ], + "lines": [ + { + "bbox": [ + 105, + 304, + 506, + 316 + ], + "spans": [ + { + "bbox": [ + 105, + 304, + 506, + 316 + ], + "score": 1.0, + "content": "contrast, AWR is simpler, as it can simply fit a value function to the observed returns in a replay buffer,", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 315, + 506, + 327 + ], + "spans": [ + { + "bbox": [ + 106, + 315, + 506, + 327 + ], + "score": 1.0, + "content": "and performs weighted supervised regression on the actions to fit the policy. Oh et al. (2018) proposed", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 325, + 505, + 339 + ], + "spans": [ + { + "bbox": [ + 105, + 325, + 505, + 339 + ], + "score": 1.0, + "content": "self-imitation learning (SIL), which augments policy gradient algorithms with an auxiliary behaviour", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 337, + 505, + 349 + ], + "spans": [ + { + "bbox": [ + 105, + 337, + 505, + 349 + ], + "score": 1.0, + "content": "cloning loss to reuse samples from past experiences. Unlike SIL, AWR is a standalone algorithm, and", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 347, + 505, + 361 + ], + "spans": [ + { + "bbox": [ + 105, + 347, + 505, + 361 + ], + "score": 1.0, + "content": "does not need to be combined with an auxiliary RL algorithm. Neumann & Peters (2009) proposed", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 359, + 505, + 371 + ], + "spans": [ + { + "bbox": [ + 106, + 359, + 505, + 371 + ], + "score": 1.0, + "content": "LAWER, a kernel-based fitted Q-iteration algorithm where the Bellman error is weighted by the", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 369, + 506, + 382 + ], + "spans": [ + { + "bbox": [ + 105, + 369, + 506, + 382 + ], + "score": 1.0, + "content": "normalized advantage of each state-action pair. This was then followed by a soft-policy improvement", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 381, + 506, + 393 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 506, + 393 + ], + "score": 1.0, + "content": "step. Similar to Neumann & Peters (2009), AWR also uses exponentiated advantages, but LAWER’s", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 391, + 506, + 404 + ], + "spans": [ + { + "bbox": [ + 105, + 391, + 506, + 404 + ], + "score": 1.0, + "content": "definition of the policy is different from the one in AWR and does not enforce a trust region constraint.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 402, + 505, + 415 + ], + "spans": [ + { + "bbox": [ + 105, + 402, + 505, + 415 + ], + "score": 1.0, + "content": "Furthermore, AWR does not perform fitted Q-iteration, and instead utilizes off-policy data in a simple", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 412, + 506, + 428 + ], + "spans": [ + { + "bbox": [ + 105, + 412, + 506, + 428 + ], + "score": 1.0, + "content": "constrained policy search procedure. Wang et al. (2018) applied a similar advantage-weighting", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 424, + 506, + 437 + ], + "spans": [ + { + "bbox": [ + 105, + 424, + 506, + 437 + ], + "score": 1.0, + "content": "scheme for imitation learning, but the method was not demonstrated for the RL setting. In this work,", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 435, + 506, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 435, + 506, + 448 + ], + "score": 1.0, + "content": "we propose several design decisions that are vital for an effective RL algorithm. We also provide a", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 447, + 505, + 459 + ], + "spans": [ + { + "bbox": [ + 106, + 447, + 505, + 459 + ], + "score": 1.0, + "content": "theoretical analysis of AWR when combined with experience replay, and show that the algorithm", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 458, + 506, + 470 + ], + "spans": [ + { + "bbox": [ + 106, + 458, + 506, + 470 + ], + "score": 1.0, + "content": "optimizes the expected improvement with respect to a mixture of policies modeled by a replay buffer.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 18 + }, + { + "type": "title", + "bbox": [ + 108, + 479, + 200, + 491 + ], + "lines": [ + { + "bbox": [ + 104, + 477, + 201, + 493 + ], + "spans": [ + { + "bbox": [ + 104, + 477, + 201, + 493 + ], + "score": 1.0, + "content": "5 EXPERIMENTS", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 107, + 498, + 506, + 586 + ], + "lines": [ + { + "bbox": [ + 106, + 498, + 506, + 511 + ], + "spans": [ + { + "bbox": [ + 106, + 498, + 506, + 511 + ], + "score": 1.0, + "content": "Our experiments aim to comparatively evaluate the performance of AWR with commonly used", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 509, + 506, + 522 + ], + "spans": [ + { + "bbox": [ + 106, + 509, + 506, + 522 + ], + "score": 1.0, + "content": "on-policy and off-policy deep RL algorithms. We evaluate our method on the OpenAI Gym bench-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 521, + 506, + 533 + ], + "spans": [ + { + "bbox": [ + 106, + 521, + 506, + 533 + ], + "score": 1.0, + "content": "marks (Brockman et al., 2016), consisting of discrete and continuous control tasks. We also evaluate", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 532, + 506, + 543 + ], + "spans": [ + { + "bbox": [ + 106, + 532, + 506, + 543 + ], + "score": 1.0, + "content": "our method on complex motion imitation tasks with high-dimensional simulated characters. We then", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 542, + 506, + 555 + ], + "spans": [ + { + "bbox": [ + 105, + 542, + 506, + 555 + ], + "score": 1.0, + "content": "demonstrate the effectiveness of AWR on fully off-policy learning, by training on static datasets of", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 552, + 506, + 565 + ], + "spans": [ + { + "bbox": [ + 105, + 552, + 506, + 565 + ], + "score": 1.0, + "content": "demonstrations from demo policies. Behaviors learned by the policies are best seen in the supplemen-", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 564, + 507, + 577 + ], + "spans": [ + { + "bbox": [ + 105, + 564, + 507, + 577 + ], + "score": 1.0, + "content": "tary video1. Code for our implementation of AWR is available at sites.google.com/view/awr-supp/.", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 574, + 357, + 588 + ], + "spans": [ + { + "bbox": [ + 105, + 574, + 357, + 588 + ], + "score": 1.0, + "content": "Detailed hyperparameter settings are provided in Appendix C.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 30.5 + }, + { + "type": "title", + "bbox": [ + 107, + 600, + 193, + 611 + ], + "lines": [ + { + "bbox": [ + 105, + 599, + 195, + 613 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 195, + 613 + ], + "score": 1.0, + "content": "5.1 BENCHMARKS", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 107, + 615, + 506, + 703 + ], + "lines": [ + { + "bbox": [ + 105, + 614, + 506, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 614, + 506, + 628 + ], + "score": 1.0, + "content": "We compare AWR to a number of state-of-the-art RL algorithms, including on-policy algorithms,", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 625, + 506, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 625, + 506, + 639 + ], + "score": 1.0, + "content": "such as TRPO (Schulman et al., 2015) and PPO (Schulman et al., 2017), off-policy algorithms, such", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 637, + 506, + 649 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 506, + 649 + ], + "score": 1.0, + "content": "as DDPG (Lillicrap et al., 2016), TD3 (Fujimoto et al., 2018), and SAC (Haarnoja et al., 2018a), as", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 646, + 506, + 661 + ], + "spans": [ + { + "bbox": [ + 105, + 646, + 506, + 661 + ], + "score": 1.0, + "content": "well as RWR (Peters & Schaal, 2007) and LAWER (Neumann & Peters, 2009).2 TRPO, PPO, and", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 658, + 506, + 672 + ], + "spans": [ + { + "bbox": [ + 105, + 658, + 506, + 672 + ], + "score": 1.0, + "content": "DDPG use the implementations from OpenAI baselines (Dhariwal et al., 2017). TD3 and SAC use", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 669, + 505, + 682 + ], + "spans": [ + { + "bbox": [ + 106, + 669, + 505, + 682 + ], + "score": 1.0, + "content": "the implementations from Fujimoto et al. (2018) and Haarnoja et al. (2018a). RWR and LAWER are", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 680, + 507, + 694 + ], + "spans": [ + { + "bbox": [ + 105, + 680, + 507, + 694 + ], + "score": 1.0, + "content": "implemented following the descriptions in Peters & Schaal (2007) and Neumann & Peters (2009),", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 691, + 380, + 704 + ], + "spans": [ + { + "bbox": [ + 105, + 691, + 380, + 704 + ], + "score": 1.0, + "content": "but neural networks are used instead of kernel-based approximators.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 39.5 + } + ], + "page_idx": 5, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 711, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 119, + 709, + 506, + 725 + ], + "spans": [ + { + "bbox": [ + 119, + 709, + 506, + 725 + ], + "score": 1.0, + "content": "2While we attempted to compare to MPO (Abdolmaleki et al., 2018b), we were unable to find or implement a", + "type": "text" + } + ] + }, + { + "bbox": [ + 105, + 720, + 506, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 506, + 734 + ], + "score": 1.0, + "content": "version of the algorithm that reproduces the results comparable to those reported by Abdolmaleki et al. (2018b).", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 108, + 27, + 306, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 752, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 310, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 310, + 762 + ], + "score": 1.0, + "content": "6", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 106, + 82, + 505, + 170 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 106, + 82, + 505, + 170 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 170 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 170 + ], + "score": 0.96, + "type": "image", + "image_path": "f4d7a3e7fde0cb6b789cbd4e6862d6eb15cff251382b73b9b8ec553ea60a54eb.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 106, + 82, + 505, + 111.33333333333333 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 106, + 111.33333333333333, + 505, + 140.66666666666666 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 106, + 140.66666666666666, + 505, + 170.0 + ], + "spans": [], + "index": 2 + } + ] + } + ], + "index": 1 + }, + { + "type": "table", + "bbox": [ + 108, + 202, + 503, + 257 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 175, + 504, + 198 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 174, + 506, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 174, + 506, + 189 + ], + "score": 1.0, + "content": "Figure 2: Learning curves of the various algorithms when applied to OpenAI Gym tasks. Results are", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 186, + 490, + 198 + ], + "spans": [ + { + "bbox": [ + 105, + 186, + 490, + 198 + ], + "score": 1.0, + "content": "averaged across 10 random seeds. AWR is generally competitive with the best current methods.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + }, + { + "type": "table_body", + "bbox": [ + 108, + 202, + 503, + 257 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 202, + 503, + 257 + ], + "spans": [ + { + "bbox": [ + 108, + 202, + 503, + 257 + ], + "score": 0.967, + "html": "
TaskTRPOPPODDPGTD3SACLAWERRWRAWR (Ours)
Ant-v22901 ± 854884± 124972 ± 15505997 ± 7657500±3532240± 4971183± 1765372± 163
HalfCheetah-v23302 ± 4287617 ± 18510563 ± 38212324 ± 154916223 ± 9644596± 23312075±3709192 ± 157
Hopper-v21880±3372514± 726855±2822794± 152757±6581830± 553605± 1143498±167
Humanoid-v2552±94668 ± 11534382 ± 4234738±936296±332108±386509±186159 ± 274
LunarLander-v2104± 94121 ± 49185±23229±2
Walker2d-v22765±1685036± 934401± 4704779± 8036210±5112502±388406±645813± 483
", + "type": "table", + "image_path": "5dd21a85e5c4fe859e1c0e8bf61ebae24e92f3286659d0e77425a525cdcb6d1b.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 108, + 202, + 503, + 220.33333333333334 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 108, + 220.33333333333334, + 503, + 238.66666666666669 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 108, + 238.66666666666669, + 503, + 257.0 + ], + "spans": [], + "index": 7 + } + ] + } + ], + "index": 4.75 + }, + { + "type": "text", + "bbox": [ + 107, + 263, + 505, + 296 + ], + "lines": [ + { + "bbox": [ + 105, + 261, + 505, + 276 + ], + "spans": [ + { + "bbox": [ + 105, + 261, + 423, + 276 + ], + "score": 1.0, + "content": "Table 1: Final returns for different algorithms on the OpenAI Gym tasks, with", + "type": "text" + }, + { + "bbox": [ + 423, + 264, + 434, + 273 + ], + "score": 0.76, + "content": "\\pm", + "type": "inline_equation" + }, + { + "bbox": [ + 434, + 261, + 505, + 276 + ], + "score": 1.0, + "content": "corresponding to", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 274, + 506, + 287 + ], + "spans": [ + { + "bbox": [ + 105, + 274, + 506, + 287 + ], + "score": 1.0, + "content": "one standard deviation of the average return across 10 random seeds. In terms of final performance,", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 285, + 310, + 297 + ], + "spans": [ + { + "bbox": [ + 106, + 285, + 310, + 297 + ], + "score": 1.0, + "content": "AWR is generally competitive with prior methods.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9, + "bbox_fs": [ + 105, + 261, + 506, + 297 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 304, + 505, + 469 + ], + "lines": [ + { + "bbox": [ + 105, + 304, + 506, + 316 + ], + "spans": [ + { + "bbox": [ + 105, + 304, + 506, + 316 + ], + "score": 1.0, + "content": "contrast, AWR is simpler, as it can simply fit a value function to the observed returns in a replay buffer,", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 315, + 506, + 327 + ], + "spans": [ + { + "bbox": [ + 106, + 315, + 506, + 327 + ], + "score": 1.0, + "content": "and performs weighted supervised regression on the actions to fit the policy. Oh et al. (2018) proposed", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 325, + 505, + 339 + ], + "spans": [ + { + "bbox": [ + 105, + 325, + 505, + 339 + ], + "score": 1.0, + "content": "self-imitation learning (SIL), which augments policy gradient algorithms with an auxiliary behaviour", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 337, + 505, + 349 + ], + "spans": [ + { + "bbox": [ + 105, + 337, + 505, + 349 + ], + "score": 1.0, + "content": "cloning loss to reuse samples from past experiences. Unlike SIL, AWR is a standalone algorithm, and", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 347, + 505, + 361 + ], + "spans": [ + { + "bbox": [ + 105, + 347, + 505, + 361 + ], + "score": 1.0, + "content": "does not need to be combined with an auxiliary RL algorithm. Neumann & Peters (2009) proposed", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 359, + 505, + 371 + ], + "spans": [ + { + "bbox": [ + 106, + 359, + 505, + 371 + ], + "score": 1.0, + "content": "LAWER, a kernel-based fitted Q-iteration algorithm where the Bellman error is weighted by the", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 369, + 506, + 382 + ], + "spans": [ + { + "bbox": [ + 105, + 369, + 506, + 382 + ], + "score": 1.0, + "content": "normalized advantage of each state-action pair. This was then followed by a soft-policy improvement", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 381, + 506, + 393 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 506, + 393 + ], + "score": 1.0, + "content": "step. Similar to Neumann & Peters (2009), AWR also uses exponentiated advantages, but LAWER’s", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 391, + 506, + 404 + ], + "spans": [ + { + "bbox": [ + 105, + 391, + 506, + 404 + ], + "score": 1.0, + "content": "definition of the policy is different from the one in AWR and does not enforce a trust region constraint.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 402, + 505, + 415 + ], + "spans": [ + { + "bbox": [ + 105, + 402, + 505, + 415 + ], + "score": 1.0, + "content": "Furthermore, AWR does not perform fitted Q-iteration, and instead utilizes off-policy data in a simple", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 412, + 506, + 428 + ], + "spans": [ + { + "bbox": [ + 105, + 412, + 506, + 428 + ], + "score": 1.0, + "content": "constrained policy search procedure. Wang et al. (2018) applied a similar advantage-weighting", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 424, + 506, + 437 + ], + "spans": [ + { + "bbox": [ + 105, + 424, + 506, + 437 + ], + "score": 1.0, + "content": "scheme for imitation learning, but the method was not demonstrated for the RL setting. In this work,", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 435, + 506, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 435, + 506, + 448 + ], + "score": 1.0, + "content": "we propose several design decisions that are vital for an effective RL algorithm. We also provide a", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 447, + 505, + 459 + ], + "spans": [ + { + "bbox": [ + 106, + 447, + 505, + 459 + ], + "score": 1.0, + "content": "theoretical analysis of AWR when combined with experience replay, and show that the algorithm", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 458, + 506, + 470 + ], + "spans": [ + { + "bbox": [ + 106, + 458, + 506, + 470 + ], + "score": 1.0, + "content": "optimizes the expected improvement with respect to a mixture of policies modeled by a replay buffer.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 18, + "bbox_fs": [ + 105, + 304, + 506, + 470 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 479, + 200, + 491 + ], + "lines": [ + { + "bbox": [ + 104, + 477, + 201, + 493 + ], + "spans": [ + { + "bbox": [ + 104, + 477, + 201, + 493 + ], + "score": 1.0, + "content": "5 EXPERIMENTS", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 107, + 498, + 506, + 586 + ], + "lines": [ + { + "bbox": [ + 106, + 498, + 506, + 511 + ], + "spans": [ + { + "bbox": [ + 106, + 498, + 506, + 511 + ], + "score": 1.0, + "content": "Our experiments aim to comparatively evaluate the performance of AWR with commonly used", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 509, + 506, + 522 + ], + "spans": [ + { + "bbox": [ + 106, + 509, + 506, + 522 + ], + "score": 1.0, + "content": "on-policy and off-policy deep RL algorithms. We evaluate our method on the OpenAI Gym bench-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 521, + 506, + 533 + ], + "spans": [ + { + "bbox": [ + 106, + 521, + 506, + 533 + ], + "score": 1.0, + "content": "marks (Brockman et al., 2016), consisting of discrete and continuous control tasks. We also evaluate", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 532, + 506, + 543 + ], + "spans": [ + { + "bbox": [ + 106, + 532, + 506, + 543 + ], + "score": 1.0, + "content": "our method on complex motion imitation tasks with high-dimensional simulated characters. We then", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 542, + 506, + 555 + ], + "spans": [ + { + "bbox": [ + 105, + 542, + 506, + 555 + ], + "score": 1.0, + "content": "demonstrate the effectiveness of AWR on fully off-policy learning, by training on static datasets of", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 552, + 506, + 565 + ], + "spans": [ + { + "bbox": [ + 105, + 552, + 506, + 565 + ], + "score": 1.0, + "content": "demonstrations from demo policies. Behaviors learned by the policies are best seen in the supplemen-", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 564, + 507, + 577 + ], + "spans": [ + { + "bbox": [ + 105, + 564, + 507, + 577 + ], + "score": 1.0, + "content": "tary video1. Code for our implementation of AWR is available at sites.google.com/view/awr-supp/.", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 574, + 357, + 588 + ], + "spans": [ + { + "bbox": [ + 105, + 574, + 357, + 588 + ], + "score": 1.0, + "content": "Detailed hyperparameter settings are provided in Appendix C.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 30.5, + "bbox_fs": [ + 105, + 498, + 507, + 588 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 600, + 193, + 611 + ], + "lines": [ + { + "bbox": [ + 105, + 599, + 195, + 613 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 195, + 613 + ], + "score": 1.0, + "content": "5.1 BENCHMARKS", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 107, + 615, + 506, + 703 + ], + "lines": [ + { + "bbox": [ + 105, + 614, + 506, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 614, + 506, + 628 + ], + "score": 1.0, + "content": "We compare AWR to a number of state-of-the-art RL algorithms, including on-policy algorithms,", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 625, + 506, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 625, + 506, + 639 + ], + "score": 1.0, + "content": "such as TRPO (Schulman et al., 2015) and PPO (Schulman et al., 2017), off-policy algorithms, such", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 637, + 506, + 649 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 506, + 649 + ], + "score": 1.0, + "content": "as DDPG (Lillicrap et al., 2016), TD3 (Fujimoto et al., 2018), and SAC (Haarnoja et al., 2018a), as", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 646, + 506, + 661 + ], + "spans": [ + { + "bbox": [ + 105, + 646, + 506, + 661 + ], + "score": 1.0, + "content": "well as RWR (Peters & Schaal, 2007) and LAWER (Neumann & Peters, 2009).2 TRPO, PPO, and", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 658, + 506, + 672 + ], + "spans": [ + { + "bbox": [ + 105, + 658, + 506, + 672 + ], + "score": 1.0, + "content": "DDPG use the implementations from OpenAI baselines (Dhariwal et al., 2017). TD3 and SAC use", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 669, + 505, + 682 + ], + "spans": [ + { + "bbox": [ + 106, + 669, + 505, + 682 + ], + "score": 1.0, + "content": "the implementations from Fujimoto et al. (2018) and Haarnoja et al. (2018a). RWR and LAWER are", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 680, + 507, + 694 + ], + "spans": [ + { + "bbox": [ + 105, + 680, + 507, + 694 + ], + "score": 1.0, + "content": "implemented following the descriptions in Peters & Schaal (2007) and Neumann & Peters (2009),", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 691, + 380, + 704 + ], + "spans": [ + { + "bbox": [ + 105, + 691, + 380, + 704 + ], + "score": 1.0, + "content": "but neural networks are used instead of kernel-based approximators.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 39.5, + "bbox_fs": [ + 105, + 614, + 507, + 704 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 106, + 82, + 503, + 159 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 106, + 82, + 503, + 159 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 82, + 503, + 159 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 503, + 159 + ], + "score": 0.944, + "type": "image", + "image_path": "939e4b97196a5ea1baaf38ced3bafa63057a2596192d893c1385f6fc296d2543.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 106, + 82, + 503, + 107.66666666666667 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 106, + 107.66666666666667, + 503, + 133.33333333333334 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 106, + 133.33333333333334, + 503, + 159.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 107, + 161, + 505, + 205 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 160, + 506, + 174 + ], + "spans": [ + { + "bbox": [ + 106, + 160, + 506, + 174 + ], + "score": 1.0, + "content": "Figure 3: Left: Learning curves comparing AWR with various components removed. Each com-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 172, + 505, + 185 + ], + "spans": [ + { + "bbox": [ + 105, + 172, + 505, + 185 + ], + "score": 1.0, + "content": "ponent contributes to performance improvements. Right: Learning curves comparing AWR with", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 181, + 505, + 196 + ], + "spans": [ + { + "bbox": [ + 105, + 181, + 505, + 196 + ], + "score": 1.0, + "content": "different capacity replay buffers. AWR remains stable with large buffers containing primarily", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 193, + 251, + 207 + ], + "spans": [ + { + "bbox": [ + 105, + 193, + 251, + 207 + ], + "score": 1.0, + "content": "off-policy data from past iterations.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + } + ], + "index": 2.75 + }, + { + "type": "text", + "bbox": [ + 107, + 217, + 505, + 348 + ], + "lines": [ + { + "bbox": [ + 105, + 215, + 506, + 231 + ], + "spans": [ + { + "bbox": [ + 105, + 215, + 506, + 231 + ], + "score": 1.0, + "content": "Snapshots of the AWR policies are shown in Figure 1. Figure 2 shows learning curves comparing", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 228, + 505, + 240 + ], + "spans": [ + { + "bbox": [ + 106, + 228, + 505, + 240 + ], + "score": 1.0, + "content": "the different algorithms, and Table 1 summarizes the average returns of the final policies across 10", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 239, + 505, + 250 + ], + "spans": [ + { + "bbox": [ + 106, + 239, + 505, + 250 + ], + "score": 1.0, + "content": "training runs initialized with different random seeds. Due to the slow wall-clock times of TD3 and", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 250, + 506, + 262 + ], + "spans": [ + { + "bbox": [ + 106, + 250, + 506, + 262 + ], + "score": 1.0, + "content": "SAC, some training runs did not have sufficient time to collect as many samples as other algorithms.", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 260, + 506, + 273 + ], + "spans": [ + { + "bbox": [ + 105, + 260, + 506, + 273 + ], + "score": 1.0, + "content": "Overall, AWR shows competitive performance with the state-of-the-art deep RL algorithms. It", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 272, + 505, + 283 + ], + "spans": [ + { + "bbox": [ + 106, + 272, + 505, + 283 + ], + "score": 1.0, + "content": "is competitive with on-policy methods, such as TRPO and PPO, in both sample efficiency and", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 282, + 505, + 296 + ], + "spans": [ + { + "bbox": [ + 105, + 282, + 505, + 296 + ], + "score": 1.0, + "content": "asymptotic performance. While it is not yet as sample efficient as current state-of-the-art off-policy", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 293, + 505, + 306 + ], + "spans": [ + { + "bbox": [ + 105, + 293, + 505, + 306 + ], + "score": 1.0, + "content": "methods, such SAC and TD3, it is able to achieve a comparable asymptotic performance on most", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 305, + 505, + 317 + ], + "spans": [ + { + "bbox": [ + 106, + 305, + 505, + 317 + ], + "score": 1.0, + "content": "tasks. RWR tends to perform poorly on these tasks, which suggests that, the particular modifications", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 315, + 505, + 328 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 505, + 328 + ], + "score": 1.0, + "content": "from AWR are critical. AWR also significantly outperforms LAWER across the various tasks. Though", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 326, + 506, + 339 + ], + "spans": [ + { + "bbox": [ + 105, + 326, + 506, + 339 + ], + "score": 1.0, + "content": "both methods use a similar advantaged-weighting scheme, our design decisions for AWR produce a", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 338, + 259, + 350 + ], + "spans": [ + { + "bbox": [ + 106, + 338, + 259, + 350 + ], + "score": 1.0, + "content": "simpler and more effective algorithm.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 12.5 + }, + { + "type": "title", + "bbox": [ + 107, + 361, + 241, + 372 + ], + "lines": [ + { + "bbox": [ + 106, + 361, + 242, + 374 + ], + "spans": [ + { + "bbox": [ + 106, + 361, + 242, + 374 + ], + "score": 1.0, + "content": "5.2 ABLATION EXPERIMENTS", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 107, + 378, + 505, + 499 + ], + "lines": [ + { + "bbox": [ + 105, + 377, + 505, + 390 + ], + "spans": [ + { + "bbox": [ + 105, + 377, + 505, + 390 + ], + "score": 1.0, + "content": "To determine the effects of various design decisions, we evaluate the performance of AWR when key", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 388, + 506, + 402 + ], + "spans": [ + { + "bbox": [ + 105, + 388, + 506, + 402 + ], + "score": 1.0, + "content": "components have been removed. The experiments include: an on-policy version of AWR (On-Policy),", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 400, + 506, + 412 + ], + "spans": [ + { + "bbox": [ + 106, + 400, + 464, + 412 + ], + "score": 1.0, + "content": "where updates use only data from the latest policy, a version of AWR without the baseline", + "type": "text" + }, + { + "bbox": [ + 465, + 400, + 486, + 412 + ], + "score": 0.76, + "content": "V ( \\mathbf { s } )", + "type": "inline_equation" + }, + { + "bbox": [ + 486, + 400, + 506, + 412 + ], + "score": 1.0, + "content": "(No", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 411, + 505, + 423 + ], + "spans": [ + { + "bbox": [ + 106, + 411, + 405, + 423 + ], + "score": 1.0, + "content": "Baseline), and a version that uses Monte Carlo return estimates instead of", + "type": "text" + }, + { + "bbox": [ + 406, + 411, + 433, + 422 + ], + "score": 0.45, + "content": "\\mathrm { T D } ( \\lambda )", + "type": "inline_equation" + }, + { + "bbox": [ + 433, + 411, + 452, + 423 + ], + "score": 1.0, + "content": "(No", + "type": "text" + }, + { + "bbox": [ + 452, + 411, + 480, + 422 + ], + "score": 0.29, + "content": "\\mathrm { T D } ( \\lambda ) ,", + "type": "inline_equation" + }, + { + "bbox": [ + 481, + 411, + 505, + 423 + ], + "score": 1.0, + "content": "). The", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 422, + 505, + 434 + ], + "spans": [ + { + "bbox": [ + 106, + 422, + 505, + 434 + ], + "score": 1.0, + "content": "effects of these components are illustrated in Figure 3. Overall, these design decisions appear to be", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 433, + 505, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 433, + 505, + 446 + ], + "score": 1.0, + "content": "vital for an effective algorithm, with the most crucial components being the use of experience replay", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 444, + 505, + 457 + ], + "spans": [ + { + "bbox": [ + 106, + 444, + 505, + 457 + ], + "score": 1.0, + "content": "and a baseline. Updates using only on-policy data can lead to instabilities and noticeable degradation", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 455, + 505, + 468 + ], + "spans": [ + { + "bbox": [ + 106, + 455, + 505, + 468 + ], + "score": 1.0, + "content": "in performance, which may be due to overfitting on a smaller dataset. Removing the baseline also", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 466, + 505, + 478 + ], + "spans": [ + { + "bbox": [ + 106, + 466, + 451, + 478 + ], + "score": 1.0, + "content": "noticeably hampers performance. Using simple Monte Carlo return estimates instead of", + "type": "text" + }, + { + "bbox": [ + 451, + 466, + 478, + 477 + ], + "score": 0.69, + "content": "\\mathrm { T D } ( \\lambda )", + "type": "inline_equation" + }, + { + "bbox": [ + 478, + 466, + 505, + 478 + ], + "score": 1.0, + "content": "seems", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 476, + 506, + 489 + ], + "spans": [ + { + "bbox": [ + 105, + 476, + 506, + 489 + ], + "score": 1.0, + "content": "to be a viable alternative, and the algorithm still achieves competitive performance on some tasks.", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 487, + 507, + 500 + ], + "spans": [ + { + "bbox": [ + 105, + 487, + 507, + 500 + ], + "score": 1.0, + "content": "When combined, these different components yield substantial performance gains over standard RWR.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 107, + 504, + 505, + 604 + ], + "lines": [ + { + "bbox": [ + 105, + 503, + 506, + 518 + ], + "spans": [ + { + "bbox": [ + 105, + 503, + 506, + 518 + ], + "score": 1.0, + "content": "To further evaluate the effect of experience replay, we compare policies trained using replay buffer", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 515, + 506, + 528 + ], + "spans": [ + { + "bbox": [ + 106, + 515, + 506, + 528 + ], + "score": 1.0, + "content": "with different capacities. Figure 3 illustrates the learning curves for buffers of size 5k, 20k, 50k,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 525, + 505, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 525, + 149, + 540 + ], + "score": 1.0, + "content": "100k, and", + "type": "text" + }, + { + "bbox": [ + 149, + 527, + 171, + 537 + ], + "score": 0.46, + "content": "5 0 0 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 171, + 525, + 505, + 540 + ], + "score": 1.0, + "content": ", with 50k being the default buffer size in our experiments. The size of the replay", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 536, + 506, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 506, + 551 + ], + "score": 1.0, + "content": "buffer appears to have a significant impact on overall performance. Smaller buffer sizes can result", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 547, + 506, + 561 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 506, + 561 + ], + "score": 1.0, + "content": "in instabilities during training, which again may be an effect of overfitting to a smaller dataset. As", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 559, + 505, + 573 + ], + "spans": [ + { + "bbox": [ + 105, + 559, + 505, + 573 + ], + "score": 1.0, + "content": "the buffer size increases, AWR remains stable even when the dataset is dominated by off-policy data", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 570, + 505, + 583 + ], + "spans": [ + { + "bbox": [ + 105, + 570, + 505, + 583 + ], + "score": 1.0, + "content": "from previous iterations. In fact, AWR appears more stable with larger replay buffers, but progress", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 581, + 506, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 581, + 313, + 595 + ], + "score": 1.0, + "content": "can also become slower. Since the sampling policy", + "type": "text" + }, + { + "bbox": [ + 313, + 581, + 341, + 593 + ], + "score": 0.92, + "content": "\\mu ( \\mathbf { a } | \\mathbf { s } )", + "type": "inline_equation" + }, + { + "bbox": [ + 341, + 581, + 506, + 595 + ], + "score": 1.0, + "content": "is modeled by the replay buffer, a larger", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 591, + 466, + 605 + ], + "spans": [ + { + "bbox": [ + 105, + 591, + 239, + 605 + ], + "score": 1.0, + "content": "buffer can limit the rate at which", + "type": "text" + }, + { + "bbox": [ + 239, + 594, + 246, + 604 + ], + "score": 0.8, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 247, + 591, + 466, + 605 + ], + "score": 1.0, + "content": "changes by maintaining older data for more iterations.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 35 + }, + { + "type": "title", + "bbox": [ + 108, + 616, + 216, + 627 + ], + "lines": [ + { + "bbox": [ + 105, + 615, + 218, + 629 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 218, + 629 + ], + "score": 1.0, + "content": "5.3 MOTION IMITATION", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 40 + }, + { + "type": "text", + "bbox": [ + 106, + 632, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 633, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 106, + 633, + 505, + 645 + ], + "score": 1.0, + "content": "In this section, we show that AWR can also solve high-dimensional tasks with complex simulated", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 644, + 505, + 656 + ], + "spans": [ + { + "bbox": [ + 106, + 644, + 200, + 656 + ], + "score": 1.0, + "content": "characters, including a", + "type": "text" + }, + { + "bbox": [ + 200, + 644, + 233, + 654 + ], + "score": 0.34, + "content": "3 4 \\mathrm { D o F }", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 644, + 505, + 656 + ], + "score": 1.0, + "content": "humanoid and 64 DoF dog. The objective of the tasks is to imitate", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 655, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 506, + 668 + ], + "score": 1.0, + "content": "reference motion clips recorded using mocap. The experimental setup follows the framework proposed", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 665, + 506, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 506, + 680 + ], + "score": 1.0, + "content": "by Peng et al. (2018). The motions include walking and running (e.g. canter), as well as acrobatic", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 676, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 505, + 690 + ], + "score": 1.0, + "content": "skills, such as cartwheels and spinkicks. Figure 1 shows snapshots of the behaviors learned by the", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 687, + 505, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 701 + ], + "score": 1.0, + "content": "AWR. Table 2 and Figure 4 compare the performance of AWR to RWR and PPO. AWR performs", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "well across the set of challenging skills, consistently achieving comparable or better performance", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "than PPO. RWR struggles with controlling the humanoid, but exhibits stronger performance on the", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 720, + 473, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 473, + 733 + ], + "score": 1.0, + "content": "dog. This difference may be due to the more dynamic and acrobatic skills of the humanoid.", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 45 + } + ], + "page_idx": 6, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 306, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 308, + 39 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 308, + 39 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "score": 1.0, + "content": "7", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 106, + 82, + 503, + 159 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 106, + 82, + 503, + 159 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 82, + 503, + 159 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 503, + 159 + ], + "score": 0.944, + "type": "image", + "image_path": "939e4b97196a5ea1baaf38ced3bafa63057a2596192d893c1385f6fc296d2543.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 106, + 82, + 503, + 107.66666666666667 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 106, + 107.66666666666667, + 503, + 133.33333333333334 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 106, + 133.33333333333334, + 503, + 159.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 107, + 161, + 505, + 205 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 160, + 506, + 174 + ], + "spans": [ + { + "bbox": [ + 106, + 160, + 506, + 174 + ], + "score": 1.0, + "content": "Figure 3: Left: Learning curves comparing AWR with various components removed. Each com-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 172, + 505, + 185 + ], + "spans": [ + { + "bbox": [ + 105, + 172, + 505, + 185 + ], + "score": 1.0, + "content": "ponent contributes to performance improvements. Right: Learning curves comparing AWR with", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 181, + 505, + 196 + ], + "spans": [ + { + "bbox": [ + 105, + 181, + 505, + 196 + ], + "score": 1.0, + "content": "different capacity replay buffers. AWR remains stable with large buffers containing primarily", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 193, + 251, + 207 + ], + "spans": [ + { + "bbox": [ + 105, + 193, + 251, + 207 + ], + "score": 1.0, + "content": "off-policy data from past iterations.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + } + ], + "index": 2.75 + }, + { + "type": "text", + "bbox": [ + 107, + 217, + 505, + 348 + ], + "lines": [ + { + "bbox": [ + 105, + 215, + 506, + 231 + ], + "spans": [ + { + "bbox": [ + 105, + 215, + 506, + 231 + ], + "score": 1.0, + "content": "Snapshots of the AWR policies are shown in Figure 1. Figure 2 shows learning curves comparing", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 228, + 505, + 240 + ], + "spans": [ + { + "bbox": [ + 106, + 228, + 505, + 240 + ], + "score": 1.0, + "content": "the different algorithms, and Table 1 summarizes the average returns of the final policies across 10", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 239, + 505, + 250 + ], + "spans": [ + { + "bbox": [ + 106, + 239, + 505, + 250 + ], + "score": 1.0, + "content": "training runs initialized with different random seeds. Due to the slow wall-clock times of TD3 and", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 250, + 506, + 262 + ], + "spans": [ + { + "bbox": [ + 106, + 250, + 506, + 262 + ], + "score": 1.0, + "content": "SAC, some training runs did not have sufficient time to collect as many samples as other algorithms.", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 260, + 506, + 273 + ], + "spans": [ + { + "bbox": [ + 105, + 260, + 506, + 273 + ], + "score": 1.0, + "content": "Overall, AWR shows competitive performance with the state-of-the-art deep RL algorithms. It", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 272, + 505, + 283 + ], + "spans": [ + { + "bbox": [ + 106, + 272, + 505, + 283 + ], + "score": 1.0, + "content": "is competitive with on-policy methods, such as TRPO and PPO, in both sample efficiency and", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 282, + 505, + 296 + ], + "spans": [ + { + "bbox": [ + 105, + 282, + 505, + 296 + ], + "score": 1.0, + "content": "asymptotic performance. While it is not yet as sample efficient as current state-of-the-art off-policy", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 293, + 505, + 306 + ], + "spans": [ + { + "bbox": [ + 105, + 293, + 505, + 306 + ], + "score": 1.0, + "content": "methods, such SAC and TD3, it is able to achieve a comparable asymptotic performance on most", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 305, + 505, + 317 + ], + "spans": [ + { + "bbox": [ + 106, + 305, + 505, + 317 + ], + "score": 1.0, + "content": "tasks. RWR tends to perform poorly on these tasks, which suggests that, the particular modifications", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 315, + 505, + 328 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 505, + 328 + ], + "score": 1.0, + "content": "from AWR are critical. AWR also significantly outperforms LAWER across the various tasks. Though", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 326, + 506, + 339 + ], + "spans": [ + { + "bbox": [ + 105, + 326, + 506, + 339 + ], + "score": 1.0, + "content": "both methods use a similar advantaged-weighting scheme, our design decisions for AWR produce a", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 338, + 259, + 350 + ], + "spans": [ + { + "bbox": [ + 106, + 338, + 259, + 350 + ], + "score": 1.0, + "content": "simpler and more effective algorithm.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 12.5, + "bbox_fs": [ + 105, + 215, + 506, + 350 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 361, + 241, + 372 + ], + "lines": [ + { + "bbox": [ + 106, + 361, + 242, + 374 + ], + "spans": [ + { + "bbox": [ + 106, + 361, + 242, + 374 + ], + "score": 1.0, + "content": "5.2 ABLATION EXPERIMENTS", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 107, + 378, + 505, + 499 + ], + "lines": [ + { + "bbox": [ + 105, + 377, + 505, + 390 + ], + "spans": [ + { + "bbox": [ + 105, + 377, + 505, + 390 + ], + "score": 1.0, + "content": "To determine the effects of various design decisions, we evaluate the performance of AWR when key", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 388, + 506, + 402 + ], + "spans": [ + { + "bbox": [ + 105, + 388, + 506, + 402 + ], + "score": 1.0, + "content": "components have been removed. The experiments include: an on-policy version of AWR (On-Policy),", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 400, + 506, + 412 + ], + "spans": [ + { + "bbox": [ + 106, + 400, + 464, + 412 + ], + "score": 1.0, + "content": "where updates use only data from the latest policy, a version of AWR without the baseline", + "type": "text" + }, + { + "bbox": [ + 465, + 400, + 486, + 412 + ], + "score": 0.76, + "content": "V ( \\mathbf { s } )", + "type": "inline_equation" + }, + { + "bbox": [ + 486, + 400, + 506, + 412 + ], + "score": 1.0, + "content": "(No", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 411, + 505, + 423 + ], + "spans": [ + { + "bbox": [ + 106, + 411, + 405, + 423 + ], + "score": 1.0, + "content": "Baseline), and a version that uses Monte Carlo return estimates instead of", + "type": "text" + }, + { + "bbox": [ + 406, + 411, + 433, + 422 + ], + "score": 0.45, + "content": "\\mathrm { T D } ( \\lambda )", + "type": "inline_equation" + }, + { + "bbox": [ + 433, + 411, + 452, + 423 + ], + "score": 1.0, + "content": "(No", + "type": "text" + }, + { + "bbox": [ + 452, + 411, + 480, + 422 + ], + "score": 0.29, + "content": "\\mathrm { T D } ( \\lambda ) ,", + "type": "inline_equation" + }, + { + "bbox": [ + 481, + 411, + 505, + 423 + ], + "score": 1.0, + "content": "). The", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 422, + 505, + 434 + ], + "spans": [ + { + "bbox": [ + 106, + 422, + 505, + 434 + ], + "score": 1.0, + "content": "effects of these components are illustrated in Figure 3. Overall, these design decisions appear to be", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 433, + 505, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 433, + 505, + 446 + ], + "score": 1.0, + "content": "vital for an effective algorithm, with the most crucial components being the use of experience replay", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 444, + 505, + 457 + ], + "spans": [ + { + "bbox": [ + 106, + 444, + 505, + 457 + ], + "score": 1.0, + "content": "and a baseline. Updates using only on-policy data can lead to instabilities and noticeable degradation", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 455, + 505, + 468 + ], + "spans": [ + { + "bbox": [ + 106, + 455, + 505, + 468 + ], + "score": 1.0, + "content": "in performance, which may be due to overfitting on a smaller dataset. Removing the baseline also", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 466, + 505, + 478 + ], + "spans": [ + { + "bbox": [ + 106, + 466, + 451, + 478 + ], + "score": 1.0, + "content": "noticeably hampers performance. Using simple Monte Carlo return estimates instead of", + "type": "text" + }, + { + "bbox": [ + 451, + 466, + 478, + 477 + ], + "score": 0.69, + "content": "\\mathrm { T D } ( \\lambda )", + "type": "inline_equation" + }, + { + "bbox": [ + 478, + 466, + 505, + 478 + ], + "score": 1.0, + "content": "seems", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 476, + 506, + 489 + ], + "spans": [ + { + "bbox": [ + 105, + 476, + 506, + 489 + ], + "score": 1.0, + "content": "to be a viable alternative, and the algorithm still achieves competitive performance on some tasks.", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 487, + 507, + 500 + ], + "spans": [ + { + "bbox": [ + 105, + 487, + 507, + 500 + ], + "score": 1.0, + "content": "When combined, these different components yield substantial performance gains over standard RWR.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 25, + "bbox_fs": [ + 105, + 377, + 507, + 500 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 504, + 505, + 604 + ], + "lines": [ + { + "bbox": [ + 105, + 503, + 506, + 518 + ], + "spans": [ + { + "bbox": [ + 105, + 503, + 506, + 518 + ], + "score": 1.0, + "content": "To further evaluate the effect of experience replay, we compare policies trained using replay buffer", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 515, + 506, + 528 + ], + "spans": [ + { + "bbox": [ + 106, + 515, + 506, + 528 + ], + "score": 1.0, + "content": "with different capacities. Figure 3 illustrates the learning curves for buffers of size 5k, 20k, 50k,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 525, + 505, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 525, + 149, + 540 + ], + "score": 1.0, + "content": "100k, and", + "type": "text" + }, + { + "bbox": [ + 149, + 527, + 171, + 537 + ], + "score": 0.46, + "content": "5 0 0 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 171, + 525, + 505, + 540 + ], + "score": 1.0, + "content": ", with 50k being the default buffer size in our experiments. The size of the replay", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 536, + 506, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 506, + 551 + ], + "score": 1.0, + "content": "buffer appears to have a significant impact on overall performance. Smaller buffer sizes can result", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 547, + 506, + 561 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 506, + 561 + ], + "score": 1.0, + "content": "in instabilities during training, which again may be an effect of overfitting to a smaller dataset. As", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 559, + 505, + 573 + ], + "spans": [ + { + "bbox": [ + 105, + 559, + 505, + 573 + ], + "score": 1.0, + "content": "the buffer size increases, AWR remains stable even when the dataset is dominated by off-policy data", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 570, + 505, + 583 + ], + "spans": [ + { + "bbox": [ + 105, + 570, + 505, + 583 + ], + "score": 1.0, + "content": "from previous iterations. In fact, AWR appears more stable with larger replay buffers, but progress", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 581, + 506, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 581, + 313, + 595 + ], + "score": 1.0, + "content": "can also become slower. Since the sampling policy", + "type": "text" + }, + { + "bbox": [ + 313, + 581, + 341, + 593 + ], + "score": 0.92, + "content": "\\mu ( \\mathbf { a } | \\mathbf { s } )", + "type": "inline_equation" + }, + { + "bbox": [ + 341, + 581, + 506, + 595 + ], + "score": 1.0, + "content": "is modeled by the replay buffer, a larger", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 591, + 466, + 605 + ], + "spans": [ + { + "bbox": [ + 105, + 591, + 239, + 605 + ], + "score": 1.0, + "content": "buffer can limit the rate at which", + "type": "text" + }, + { + "bbox": [ + 239, + 594, + 246, + 604 + ], + "score": 0.8, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 247, + 591, + 466, + 605 + ], + "score": 1.0, + "content": "changes by maintaining older data for more iterations.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 35, + "bbox_fs": [ + 105, + 503, + 506, + 605 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 616, + 216, + 627 + ], + "lines": [ + { + "bbox": [ + 105, + 615, + 218, + 629 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 218, + 629 + ], + "score": 1.0, + "content": "5.3 MOTION IMITATION", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 40 + }, + { + "type": "text", + "bbox": [ + 106, + 632, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 633, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 106, + 633, + 505, + 645 + ], + "score": 1.0, + "content": "In this section, we show that AWR can also solve high-dimensional tasks with complex simulated", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 644, + 505, + 656 + ], + "spans": [ + { + "bbox": [ + 106, + 644, + 200, + 656 + ], + "score": 1.0, + "content": "characters, including a", + "type": "text" + }, + { + "bbox": [ + 200, + 644, + 233, + 654 + ], + "score": 0.34, + "content": "3 4 \\mathrm { D o F }", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 644, + 505, + 656 + ], + "score": 1.0, + "content": "humanoid and 64 DoF dog. The objective of the tasks is to imitate", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 655, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 506, + 668 + ], + "score": 1.0, + "content": "reference motion clips recorded using mocap. The experimental setup follows the framework proposed", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 665, + 506, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 506, + 680 + ], + "score": 1.0, + "content": "by Peng et al. (2018). The motions include walking and running (e.g. canter), as well as acrobatic", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 676, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 505, + 690 + ], + "score": 1.0, + "content": "skills, such as cartwheels and spinkicks. Figure 1 shows snapshots of the behaviors learned by the", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 687, + 505, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 701 + ], + "score": 1.0, + "content": "AWR. Table 2 and Figure 4 compare the performance of AWR to RWR and PPO. AWR performs", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "well across the set of challenging skills, consistently achieving comparable or better performance", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "than PPO. RWR struggles with controlling the humanoid, but exhibits stronger performance on the", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 720, + 473, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 473, + 733 + ], + "score": 1.0, + "content": "dog. This difference may be due to the more dynamic and acrobatic skills of the humanoid.", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 45, + "bbox_fs": [ + 105, + 633, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 108, + 80, + 300, + 149 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 108, + 80, + 300, + 149 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 80, + 300, + 149 + ], + "spans": [ + { + "bbox": [ + 108, + 80, + 300, + 149 + ], + "score": 0.971, + "html": "
TaskPPORWRAWR (Ours)
Humanoid:Cartwheel0.76 ±0.020.03±0.010.78±0.07
Humanoid:Spinkick0.70±0.020.05± 0.030.77± 0.04
Dog:Canter0.76±0.030.78±0.040.86± 0.01
Dog:Trot0.86±0.010.86±0.010.86±0.03
Dog:Turn0.75±0.020.75±0.030.82±0.03
", + "type": "table", + "image_path": "5c391dbb9c92c96c6453612294ddb3c235e106dfe4f2c0e5931f5c4aeea4e18f.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 108, + 80, + 300, + 93.8 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 108, + 93.8, + 300, + 107.6 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 108, + 107.6, + 300, + 121.39999999999999 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 108, + 121.39999999999999, + 300, + 135.2 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 108, + 135.2, + 300, + 149.0 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 106, + 157, + 301, + 190 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 156, + 302, + 168 + ], + "spans": [ + { + "bbox": [ + 105, + 156, + 302, + 168 + ], + "score": 1.0, + "content": "Table 2: Performance of algorithms on the motion", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 168, + 303, + 180 + ], + "spans": [ + { + "bbox": [ + 106, + 168, + 303, + 180 + ], + "score": 1.0, + "content": "imitation tasks. Returns are normalized between", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 178, + 290, + 191 + ], + "spans": [ + { + "bbox": [ + 106, + 178, + 290, + 191 + ], + "score": 1.0, + "content": "the minimum and maximum possible returns.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6 + } + ], + "index": 4.0 + }, + { + "type": "image", + "bbox": [ + 305, + 75, + 504, + 151 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 305, + 75, + 504, + 151 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 305, + 75, + 504, + 151 + ], + "spans": [ + { + "bbox": [ + 305, + 75, + 504, + 151 + ], + "score": 0.967, + "type": "image", + "image_path": "87d4ca4512b6c8070d7476d2fc3bf8e68347c115c9db6cc02518ecfc41d72dbf.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 305, + 75, + 504, + 90.2 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 305, + 90.2, + 504, + 105.4 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 305, + 105.4, + 504, + 120.60000000000001 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 305, + 120.60000000000001, + 504, + 135.8 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 305, + 135.8, + 504, + 151.0 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 304, + 156, + 505, + 189 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 304, + 155, + 505, + 168 + ], + "spans": [ + { + "bbox": [ + 304, + 155, + 505, + 168 + ], + "score": 1.0, + "content": "Figure 4: Learning curves on motion imitation", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 303, + 165, + 505, + 181 + ], + "spans": [ + { + "bbox": [ + 303, + 165, + 505, + 181 + ], + "score": 1.0, + "content": "tasks. On these challenging tasks, AWR generally", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 304, + 178, + 440, + 190 + ], + "spans": [ + { + "bbox": [ + 304, + 178, + 440, + 190 + ], + "score": 1.0, + "content": "learns faster than PPO and RWR.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14 + } + ], + "index": 12.0 + }, + { + "type": "image", + "bbox": [ + 106, + 192, + 505, + 265 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 106, + 192, + 505, + 265 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 192, + 505, + 265 + ], + "spans": [ + { + "bbox": [ + 106, + 192, + 505, + 265 + ], + "score": 0.958, + "type": "image", + "image_path": "0a480916b5b94b57a18bb7423ee598c2c7ee342d2dff7ecf2edff2777aed5a76.jpg" + } + ] + } + ], + "index": 17, + "virtual_lines": [ + { + "bbox": [ + 106, + 192, + 505, + 216.33333333333334 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 106, + 216.33333333333334, + 505, + 240.66666666666669 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 106, + 240.66666666666669, + 505, + 265.0 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 107, + 268, + 505, + 291 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 267, + 505, + 280 + ], + "spans": [ + { + "bbox": [ + 106, + 267, + 505, + 280 + ], + "score": 1.0, + "content": "Figure 5: Performance of various algorithms on off-policy learning tasks with static datasets. AWR is", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 279, + 437, + 292 + ], + "spans": [ + { + "bbox": [ + 106, + 279, + 437, + 292 + ], + "score": 1.0, + "content": "able to learn policies that are comparable or better than the original demo policies.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5 + } + ], + "index": 18.25 + }, + { + "type": "title", + "bbox": [ + 106, + 298, + 339, + 309 + ], + "lines": [ + { + "bbox": [ + 105, + 298, + 340, + 311 + ], + "spans": [ + { + "bbox": [ + 105, + 298, + 340, + 311 + ], + "score": 1.0, + "content": "5.4 OFF-POLICY LEARNING WITH STATIC DATASETS", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 107, + 313, + 505, + 391 + ], + "lines": [ + { + "bbox": [ + 105, + 313, + 505, + 326 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 505, + 326 + ], + "score": 1.0, + "content": "Next, we evaluate AWR in a fully off-policy setting, where the algorithm is provided with a static", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 323, + 506, + 338 + ], + "spans": [ + { + "bbox": [ + 105, + 323, + 506, + 338 + ], + "score": 1.0, + "content": "dataset of experiences, and then tasked with learning the best possible policy without collecting any", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 335, + 506, + 349 + ], + "spans": [ + { + "bbox": [ + 105, + 335, + 506, + 349 + ], + "score": 1.0, + "content": "additional data. To evaluate our method, we use the off-policy tasks proposed by Kumar et al. (2019).", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 345, + 507, + 360 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 243, + 360 + ], + "score": 1.0, + "content": "The dataset consists of trajectories", + "type": "text" + }, + { + "bbox": [ + 243, + 347, + 382, + 358 + ], + "score": 0.92, + "content": "\\tau = \\{ ( \\mathbf { s } _ { 0 } , \\mathbf { a } _ { 0 } , r _ { 0 } ) , ( \\mathbf { s } _ { 1 } , \\mathbf { a } _ { 1 } , r _ { 1 } ) , \\ldots \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 345, + 507, + 360 + ], + "score": 1.0, + "content": "from rollouts of a demo policy.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 357, + 506, + 370 + ], + "spans": [ + { + "bbox": [ + 106, + 357, + 506, + 370 + ], + "score": 1.0, + "content": "Unlike standard imitation learning tasks, which only observes the states and actions from the demo", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 369, + 505, + 381 + ], + "spans": [ + { + "bbox": [ + 106, + 369, + 505, + 381 + ], + "score": 1.0, + "content": "policy, the dataset also records the reward at each step. The demo policies are trained using SAC on", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 380, + 453, + 392 + ], + "spans": [ + { + "bbox": [ + 106, + 380, + 453, + 392 + ], + "score": 1.0, + "content": "various OpenAI Gym tasks. A dataset of 1 million timesteps is collected for each task.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 106, + 396, + 505, + 572 + ], + "lines": [ + { + "bbox": [ + 106, + 396, + 505, + 408 + ], + "spans": [ + { + "bbox": [ + 106, + 396, + 334, + 408 + ], + "score": 1.0, + "content": "For AWR, we simply treat the dataset as the replay buffer", + "type": "text" + }, + { + "bbox": [ + 334, + 397, + 344, + 406 + ], + "score": 0.8, + "content": "\\mathcal { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 396, + 505, + 408 + ], + "score": 1.0, + "content": "and directly apply the algorithm without", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 408, + 505, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 408, + 505, + 419 + ], + "score": 1.0, + "content": "any modifications. Figure 5 compares AWR to the original demo policy (Demo) and a behavioral", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 418, + 505, + 431 + ], + "spans": [ + { + "bbox": [ + 105, + 418, + 505, + 431 + ], + "score": 1.0, + "content": "cloning policy (BC). We also include comparisons to recent off-policy methods: batch-constrained", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 429, + 506, + 443 + ], + "spans": [ + { + "bbox": [ + 106, + 429, + 506, + 443 + ], + "score": 1.0, + "content": "Q-learning (BCQ) (Fujimoto et al., 2019) and bootstrapping error accumulation reduction (BEAR)", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 439, + 506, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 506, + 453 + ], + "score": 1.0, + "content": "(Kumar et al., 2019), which have shown strong performance on off-policy learning with static datasets.", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 451, + 505, + 464 + ], + "spans": [ + { + "bbox": [ + 105, + 451, + 505, + 464 + ], + "score": 1.0, + "content": "Note that both of these prior methods are modifications to existing off-policy RL methods, such", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 462, + 506, + 475 + ], + "spans": [ + { + "bbox": [ + 105, + 462, + 506, + 475 + ], + "score": 1.0, + "content": "as TD3 and SAC, which are already quite complex. In contrast, AWR is simple and requires no", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 473, + 506, + 486 + ], + "spans": [ + { + "bbox": [ + 106, + 473, + 506, + 486 + ], + "score": 1.0, + "content": "modifications for the fully off-policy setting. Despite not collecting any additional data, AWR is", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 483, + 506, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 483, + 506, + 497 + ], + "score": 1.0, + "content": "able to learn effective policies from these fully off-policy datasets, achieving comparable or better", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 495, + 506, + 508 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 506, + 508 + ], + "score": 1.0, + "content": "performance than the original demo policies. On-policy methods, such as PPO performs poorly in", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 505, + 506, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 505, + 506, + 519 + ], + "score": 1.0, + "content": "this off-policy setting. Q-function based methods, such as TD3 and SAC, can in principle handle", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 517, + 505, + 529 + ], + "spans": [ + { + "bbox": [ + 106, + 517, + 505, + 529 + ], + "score": 1.0, + "content": "off-policy data but tend to struggle in practice (Fujimoto et al., 2019; Kumar et al., 2019). Unlike", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 528, + 505, + 540 + ], + "spans": [ + { + "bbox": [ + 106, + 528, + 505, + 540 + ], + "score": 1.0, + "content": "Q-function based methods, AWR is less susceptible to issues from out-of-distribution actions as the", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 539, + 505, + 550 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 505, + 550 + ], + "score": 1.0, + "content": "policy is always trained on observed actions from the behaviour data (Kumar et al., 2019). AWR", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 550, + 505, + 562 + ], + "spans": [ + { + "bbox": [ + 106, + 550, + 505, + 562 + ], + "score": 1.0, + "content": "also shows comparable performance to BEAR and BCQ, which are specifically designed for this", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 561, + 377, + 572 + ], + "spans": [ + { + "bbox": [ + 106, + 561, + 377, + 572 + ], + "score": 1.0, + "content": "off-policy setting and introduce considerable algorithmic overhead.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 36.5 + }, + { + "type": "title", + "bbox": [ + 108, + 583, + 297, + 595 + ], + "lines": [ + { + "bbox": [ + 105, + 581, + 299, + 598 + ], + "spans": [ + { + "bbox": [ + 105, + 581, + 299, + 598 + ], + "score": 1.0, + "content": "6 DISCUSSION AND FUTURE WORK", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 45 + }, + { + "type": "text", + "bbox": [ + 107, + 600, + 506, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 600, + 506, + 613 + ], + "spans": [ + { + "bbox": [ + 106, + 600, + 506, + 613 + ], + "score": 1.0, + "content": "We presented advantage-weighted regression, a simple off-policy reinforcement learning algorithm,", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 611, + 506, + 623 + ], + "spans": [ + { + "bbox": [ + 106, + 611, + 506, + 623 + ], + "score": 1.0, + "content": "where policy updates are performed using standard supervised learning methods. Despite its sim-", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 622, + 506, + 635 + ], + "spans": [ + { + "bbox": [ + 106, + 622, + 506, + 635 + ], + "score": 1.0, + "content": "plicity, our algorithm is able to solve challenging control tasks with complex simulated agents, and", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 633, + 506, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 506, + 645 + ], + "score": 1.0, + "content": "achieve competitive performance on standard benchmarks compared to a number of well-established", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 644, + 505, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 505, + 656 + ], + "score": 1.0, + "content": "RL algorithms. Our derivation introduces several new design decisions, and our experiments verify", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 654, + 507, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 507, + 668 + ], + "score": 1.0, + "content": "the importance of these components. AWR is also able to learn from fully off-policy datasets, demon-", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 666, + 506, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 506, + 678 + ], + "score": 1.0, + "content": "strating comparable performance to state-of-the-art off-policy methods. While AWR is effective for a", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 106, + 677, + 506, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 506, + 689 + ], + "score": 1.0, + "content": "diverse suite of tasks, it is not yet as sample efficient as the most efficient off-policy algorithms. We", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 105, + 686, + 506, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 686, + 506, + 702 + ], + "score": 1.0, + "content": "believe that exploring techniques for improving sample efficiency and performance on fully off-policy", + "type": "text" + } + ], + "index": 54 + }, + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "learning can open opportunities to deploy these methods in real world domains. A better theoretical", + "type": "text" + } + ], + "index": 55 + }, + { + "bbox": [ + 106, + 709, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 723 + ], + "score": 1.0, + "content": "understanding of the convergence properties of these algorithms, especially when combined with", + "type": "text" + } + ], + "index": 56 + }, + { + "bbox": [ + 106, + 721, + 439, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 439, + 733 + ], + "score": 1.0, + "content": "experience replay, could also be valuable for the development of future algorithms.", + "type": "text" + } + ], + "index": 57 + } + ], + "index": 51.5 + } + ], + "page_idx": 7, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 307, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 300, + 750, + 309, + 761 + ], + "spans": [ + { + "bbox": [ + 300, + 750, + 309, + 761 + ], + "score": 1.0, + "content": "8", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 108, + 80, + 300, + 149 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 108, + 80, + 300, + 149 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 80, + 300, + 149 + ], + "spans": [ + { + "bbox": [ + 108, + 80, + 300, + 149 + ], + "score": 0.971, + "html": "
TaskPPORWRAWR (Ours)
Humanoid:Cartwheel0.76 ±0.020.03±0.010.78±0.07
Humanoid:Spinkick0.70±0.020.05± 0.030.77± 0.04
Dog:Canter0.76±0.030.78±0.040.86± 0.01
Dog:Trot0.86±0.010.86±0.010.86±0.03
Dog:Turn0.75±0.020.75±0.030.82±0.03
", + "type": "table", + "image_path": "5c391dbb9c92c96c6453612294ddb3c235e106dfe4f2c0e5931f5c4aeea4e18f.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 108, + 80, + 300, + 93.8 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 108, + 93.8, + 300, + 107.6 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 108, + 107.6, + 300, + 121.39999999999999 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 108, + 121.39999999999999, + 300, + 135.2 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 108, + 135.2, + 300, + 149.0 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 106, + 157, + 301, + 190 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 156, + 302, + 168 + ], + "spans": [ + { + "bbox": [ + 105, + 156, + 302, + 168 + ], + "score": 1.0, + "content": "Table 2: Performance of algorithms on the motion", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 168, + 303, + 180 + ], + "spans": [ + { + "bbox": [ + 106, + 168, + 303, + 180 + ], + "score": 1.0, + "content": "imitation tasks. Returns are normalized between", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 178, + 290, + 191 + ], + "spans": [ + { + "bbox": [ + 106, + 178, + 290, + 191 + ], + "score": 1.0, + "content": "the minimum and maximum possible returns.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6 + } + ], + "index": 4.0 + }, + { + "type": "image", + "bbox": [ + 305, + 75, + 504, + 151 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 305, + 75, + 504, + 151 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 305, + 75, + 504, + 151 + ], + "spans": [ + { + "bbox": [ + 305, + 75, + 504, + 151 + ], + "score": 0.967, + "type": "image", + "image_path": "87d4ca4512b6c8070d7476d2fc3bf8e68347c115c9db6cc02518ecfc41d72dbf.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 305, + 75, + 504, + 90.2 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 305, + 90.2, + 504, + 105.4 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 305, + 105.4, + 504, + 120.60000000000001 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 305, + 120.60000000000001, + 504, + 135.8 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 305, + 135.8, + 504, + 151.0 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 304, + 156, + 505, + 189 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 304, + 155, + 505, + 168 + ], + "spans": [ + { + "bbox": [ + 304, + 155, + 505, + 168 + ], + "score": 1.0, + "content": "Figure 4: Learning curves on motion imitation", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 303, + 165, + 505, + 181 + ], + "spans": [ + { + "bbox": [ + 303, + 165, + 505, + 181 + ], + "score": 1.0, + "content": "tasks. On these challenging tasks, AWR generally", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 304, + 178, + 440, + 190 + ], + "spans": [ + { + "bbox": [ + 304, + 178, + 440, + 190 + ], + "score": 1.0, + "content": "learns faster than PPO and RWR.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14 + } + ], + "index": 12.0 + }, + { + "type": "image", + "bbox": [ + 106, + 192, + 505, + 265 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 106, + 192, + 505, + 265 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 192, + 505, + 265 + ], + "spans": [ + { + "bbox": [ + 106, + 192, + 505, + 265 + ], + "score": 0.958, + "type": "image", + "image_path": "0a480916b5b94b57a18bb7423ee598c2c7ee342d2dff7ecf2edff2777aed5a76.jpg" + } + ] + } + ], + "index": 17, + "virtual_lines": [ + { + "bbox": [ + 106, + 192, + 505, + 216.33333333333334 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 106, + 216.33333333333334, + 505, + 240.66666666666669 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 106, + 240.66666666666669, + 505, + 265.0 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 107, + 268, + 505, + 291 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 267, + 505, + 280 + ], + "spans": [ + { + "bbox": [ + 106, + 267, + 505, + 280 + ], + "score": 1.0, + "content": "Figure 5: Performance of various algorithms on off-policy learning tasks with static datasets. AWR is", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 279, + 437, + 292 + ], + "spans": [ + { + "bbox": [ + 106, + 279, + 437, + 292 + ], + "score": 1.0, + "content": "able to learn policies that are comparable or better than the original demo policies.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5 + } + ], + "index": 18.25 + }, + { + "type": "title", + "bbox": [ + 106, + 298, + 339, + 309 + ], + "lines": [ + { + "bbox": [ + 105, + 298, + 340, + 311 + ], + "spans": [ + { + "bbox": [ + 105, + 298, + 340, + 311 + ], + "score": 1.0, + "content": "5.4 OFF-POLICY LEARNING WITH STATIC DATASETS", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 107, + 313, + 505, + 391 + ], + "lines": [ + { + "bbox": [ + 105, + 313, + 505, + 326 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 505, + 326 + ], + "score": 1.0, + "content": "Next, we evaluate AWR in a fully off-policy setting, where the algorithm is provided with a static", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 323, + 506, + 338 + ], + "spans": [ + { + "bbox": [ + 105, + 323, + 506, + 338 + ], + "score": 1.0, + "content": "dataset of experiences, and then tasked with learning the best possible policy without collecting any", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 335, + 506, + 349 + ], + "spans": [ + { + "bbox": [ + 105, + 335, + 506, + 349 + ], + "score": 1.0, + "content": "additional data. To evaluate our method, we use the off-policy tasks proposed by Kumar et al. (2019).", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 345, + 507, + 360 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 243, + 360 + ], + "score": 1.0, + "content": "The dataset consists of trajectories", + "type": "text" + }, + { + "bbox": [ + 243, + 347, + 382, + 358 + ], + "score": 0.92, + "content": "\\tau = \\{ ( \\mathbf { s } _ { 0 } , \\mathbf { a } _ { 0 } , r _ { 0 } ) , ( \\mathbf { s } _ { 1 } , \\mathbf { a } _ { 1 } , r _ { 1 } ) , \\ldots \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 345, + 507, + 360 + ], + "score": 1.0, + "content": "from rollouts of a demo policy.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 357, + 506, + 370 + ], + "spans": [ + { + "bbox": [ + 106, + 357, + 506, + 370 + ], + "score": 1.0, + "content": "Unlike standard imitation learning tasks, which only observes the states and actions from the demo", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 369, + 505, + 381 + ], + "spans": [ + { + "bbox": [ + 106, + 369, + 505, + 381 + ], + "score": 1.0, + "content": "policy, the dataset also records the reward at each step. The demo policies are trained using SAC on", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 380, + 453, + 392 + ], + "spans": [ + { + "bbox": [ + 106, + 380, + 453, + 392 + ], + "score": 1.0, + "content": "various OpenAI Gym tasks. A dataset of 1 million timesteps is collected for each task.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 25, + "bbox_fs": [ + 105, + 313, + 507, + 392 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 396, + 505, + 572 + ], + "lines": [ + { + "bbox": [ + 106, + 396, + 505, + 408 + ], + "spans": [ + { + "bbox": [ + 106, + 396, + 334, + 408 + ], + "score": 1.0, + "content": "For AWR, we simply treat the dataset as the replay buffer", + "type": "text" + }, + { + "bbox": [ + 334, + 397, + 344, + 406 + ], + "score": 0.8, + "content": "\\mathcal { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 396, + 505, + 408 + ], + "score": 1.0, + "content": "and directly apply the algorithm without", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 408, + 505, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 408, + 505, + 419 + ], + "score": 1.0, + "content": "any modifications. Figure 5 compares AWR to the original demo policy (Demo) and a behavioral", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 418, + 505, + 431 + ], + "spans": [ + { + "bbox": [ + 105, + 418, + 505, + 431 + ], + "score": 1.0, + "content": "cloning policy (BC). We also include comparisons to recent off-policy methods: batch-constrained", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 429, + 506, + 443 + ], + "spans": [ + { + "bbox": [ + 106, + 429, + 506, + 443 + ], + "score": 1.0, + "content": "Q-learning (BCQ) (Fujimoto et al., 2019) and bootstrapping error accumulation reduction (BEAR)", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 439, + 506, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 506, + 453 + ], + "score": 1.0, + "content": "(Kumar et al., 2019), which have shown strong performance on off-policy learning with static datasets.", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 451, + 505, + 464 + ], + "spans": [ + { + "bbox": [ + 105, + 451, + 505, + 464 + ], + "score": 1.0, + "content": "Note that both of these prior methods are modifications to existing off-policy RL methods, such", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 462, + 506, + 475 + ], + "spans": [ + { + "bbox": [ + 105, + 462, + 506, + 475 + ], + "score": 1.0, + "content": "as TD3 and SAC, which are already quite complex. In contrast, AWR is simple and requires no", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 473, + 506, + 486 + ], + "spans": [ + { + "bbox": [ + 106, + 473, + 506, + 486 + ], + "score": 1.0, + "content": "modifications for the fully off-policy setting. Despite not collecting any additional data, AWR is", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 483, + 506, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 483, + 506, + 497 + ], + "score": 1.0, + "content": "able to learn effective policies from these fully off-policy datasets, achieving comparable or better", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 495, + 506, + 508 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 506, + 508 + ], + "score": 1.0, + "content": "performance than the original demo policies. On-policy methods, such as PPO performs poorly in", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 505, + 506, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 505, + 506, + 519 + ], + "score": 1.0, + "content": "this off-policy setting. Q-function based methods, such as TD3 and SAC, can in principle handle", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 517, + 505, + 529 + ], + "spans": [ + { + "bbox": [ + 106, + 517, + 505, + 529 + ], + "score": 1.0, + "content": "off-policy data but tend to struggle in practice (Fujimoto et al., 2019; Kumar et al., 2019). Unlike", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 528, + 505, + 540 + ], + "spans": [ + { + "bbox": [ + 106, + 528, + 505, + 540 + ], + "score": 1.0, + "content": "Q-function based methods, AWR is less susceptible to issues from out-of-distribution actions as the", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 539, + 505, + 550 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 505, + 550 + ], + "score": 1.0, + "content": "policy is always trained on observed actions from the behaviour data (Kumar et al., 2019). AWR", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 550, + 505, + 562 + ], + "spans": [ + { + "bbox": [ + 106, + 550, + 505, + 562 + ], + "score": 1.0, + "content": "also shows comparable performance to BEAR and BCQ, which are specifically designed for this", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 561, + 377, + 572 + ], + "spans": [ + { + "bbox": [ + 106, + 561, + 377, + 572 + ], + "score": 1.0, + "content": "off-policy setting and introduce considerable algorithmic overhead.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 36.5, + "bbox_fs": [ + 105, + 396, + 506, + 572 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 583, + 297, + 595 + ], + "lines": [ + { + "bbox": [ + 105, + 581, + 299, + 598 + ], + "spans": [ + { + "bbox": [ + 105, + 581, + 299, + 598 + ], + "score": 1.0, + "content": "6 DISCUSSION AND FUTURE WORK", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 45 + }, + { + "type": "text", + "bbox": [ + 107, + 600, + 506, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 600, + 506, + 613 + ], + "spans": [ + { + "bbox": [ + 106, + 600, + 506, + 613 + ], + "score": 1.0, + "content": "We presented advantage-weighted regression, a simple off-policy reinforcement learning algorithm,", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 611, + 506, + 623 + ], + "spans": [ + { + "bbox": [ + 106, + 611, + 506, + 623 + ], + "score": 1.0, + "content": "where policy updates are performed using standard supervised learning methods. Despite its sim-", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 622, + 506, + 635 + ], + "spans": [ + { + "bbox": [ + 106, + 622, + 506, + 635 + ], + "score": 1.0, + "content": "plicity, our algorithm is able to solve challenging control tasks with complex simulated agents, and", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 633, + 506, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 506, + 645 + ], + "score": 1.0, + "content": "achieve competitive performance on standard benchmarks compared to a number of well-established", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 644, + 505, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 505, + 656 + ], + "score": 1.0, + "content": "RL algorithms. Our derivation introduces several new design decisions, and our experiments verify", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 654, + 507, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 507, + 668 + ], + "score": 1.0, + "content": "the importance of these components. AWR is also able to learn from fully off-policy datasets, demon-", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 666, + 506, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 506, + 678 + ], + "score": 1.0, + "content": "strating comparable performance to state-of-the-art off-policy methods. While AWR is effective for a", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 106, + 677, + 506, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 506, + 689 + ], + "score": 1.0, + "content": "diverse suite of tasks, it is not yet as sample efficient as the most efficient off-policy algorithms. We", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 105, + 686, + 506, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 686, + 506, + 702 + ], + "score": 1.0, + "content": "believe that exploring techniques for improving sample efficiency and performance on fully off-policy", + "type": "text" + } + ], + "index": 54 + }, + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "learning can open opportunities to deploy these methods in real world domains. A better theoretical", + "type": "text" + } + ], + "index": 55 + }, + { + "bbox": [ + 106, + 709, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 723 + ], + "score": 1.0, + "content": "understanding of the convergence properties of these algorithms, especially when combined with", + "type": "text" + } + ], + "index": 56 + }, + { + "bbox": [ + 106, + 721, + 439, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 439, + 733 + ], + "score": 1.0, + "content": "experience replay, could also be valuable for the development of future algorithms.", + "type": "text" + } + ], + "index": 57 + } + ], + "index": 51.5, + "bbox_fs": [ + 105, + 600, + 507, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 82, + 175, + 93 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 176, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 176, + 95 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 100, + 504, + 133 + ], + "lines": [ + { + "bbox": [ + 105, + 99, + 505, + 113 + ], + "spans": [ + { + "bbox": [ + 105, + 99, + 505, + 113 + ], + "score": 1.0, + "content": "Abbas Abdolmaleki, Jost Tobias Springenberg, Jonas Degrave, Steven Bohez, Yuval Tassa, Dan", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 109, + 505, + 124 + ], + "spans": [ + { + "bbox": [ + 115, + 109, + 505, + 124 + ], + "score": 1.0, + "content": "Belov, Nicolas Manfred Otto Heess, and Martin A. Riedmiller. Relative entropy regularized policy", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 116, + 122, + 282, + 134 + ], + "spans": [ + { + "bbox": [ + 116, + 122, + 282, + 134 + ], + "score": 1.0, + "content": "iteration. ArXiv, abs/1812.02256, 2018a.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 107, + 140, + 503, + 174 + ], + "lines": [ + { + "bbox": [ + 105, + 140, + 505, + 154 + ], + "spans": [ + { + "bbox": [ + 105, + 140, + 505, + 154 + ], + "score": 1.0, + "content": "Abbas Abdolmaleki, Jost Tobias Springenberg, Yuval Tassa, Remi Munos, Nicolas Heess, and Martin", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 115, + 151, + 505, + 165 + ], + "spans": [ + { + "bbox": [ + 115, + 151, + 505, + 165 + ], + "score": 1.0, + "content": "Riedmiller. Maximum a posteriori policy optimisation. In International Conference on Learning", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 162, + 488, + 176 + ], + "spans": [ + { + "bbox": [ + 115, + 162, + 424, + 176 + ], + "score": 1.0, + "content": "Representations, 2018b. URL https://openreview.net/forum?id", + "type": "text" + }, + { + "bbox": [ + 424, + 164, + 431, + 172 + ], + "score": 0.4, + "content": "\\underline { { \\underline { { \\mathbf { \\Pi } } } } } =", + "type": "inline_equation" + }, + { + "bbox": [ + 431, + 162, + 488, + 176 + ], + "score": 1.0, + "content": "S1ANxQW0b.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 104, + 181, + 504, + 204 + ], + "lines": [ + { + "bbox": [ + 106, + 181, + 505, + 194 + ], + "spans": [ + { + "bbox": [ + 106, + 181, + 505, + 194 + ], + "score": 1.0, + "content": "Greg Brockman, Vicki Cheung, Ludwig Pettersson, Jonas Schneider, John Schulman, Jie Tang, and", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 115, + 191, + 276, + 204 + ], + "spans": [ + { + "bbox": [ + 115, + 191, + 276, + 204 + ], + "score": 1.0, + "content": "Wojciech Zaremba. Openai gym, 2016.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5 + }, + { + "type": "text", + "bbox": [ + 106, + 210, + 505, + 244 + ], + "lines": [ + { + "bbox": [ + 105, + 209, + 507, + 223 + ], + "spans": [ + { + "bbox": [ + 105, + 209, + 507, + 223 + ], + "score": 1.0, + "content": "Prafulla Dhariwal, Christopher Hesse, Oleg Klimov, Alex Nichol, Matthias Plappert, Alec Radford,", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 220, + 507, + 235 + ], + "spans": [ + { + "bbox": [ + 115, + 220, + 507, + 235 + ], + "score": 1.0, + "content": "John Schulman, Szymon Sidor, Yuhuai Wu, and Peter Zhokhov. Openai baselines. https:", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 116, + 232, + 320, + 244 + ], + "spans": [ + { + "bbox": [ + 116, + 232, + 320, + 244 + ], + "score": 1.0, + "content": "//github.com/openai/baselines, 2017.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 108, + 250, + 504, + 284 + ], + "lines": [ + { + "bbox": [ + 106, + 249, + 506, + 265 + ], + "spans": [ + { + "bbox": [ + 106, + 249, + 506, + 265 + ], + "score": 1.0, + "content": "Yan Duan, Xi Chen, Rein Houthooft, John Schulman, and Pieter Abbeel. Benchmarking deep", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 261, + 508, + 276 + ], + "spans": [ + { + "bbox": [ + 115, + 261, + 508, + 276 + ], + "score": 1.0, + "content": "reinforcement learning for continuous control. In ICML, pp. 1329–1338, 2016. URL http:", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 116, + 273, + 354, + 285 + ], + "spans": [ + { + "bbox": [ + 116, + 273, + 354, + 285 + ], + "score": 1.0, + "content": "//proceedings.mlr.press/v48/duan16.html.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 106, + 291, + 506, + 347 + ], + "lines": [ + { + "bbox": [ + 104, + 289, + 507, + 306 + ], + "spans": [ + { + "bbox": [ + 104, + 289, + 507, + 306 + ], + "score": 1.0, + "content": "Justin Fu, Aviral Kumar, Matthew Soh, and Sergey Levine. Diagnosing bottlenecks in deep q-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 115, + 301, + 506, + 316 + ], + "spans": [ + { + "bbox": [ + 115, + 301, + 506, + 316 + ], + "score": 1.0, + "content": "learning algorithms. In Kamalika Chaudhuri and Ruslan Salakhutdinov (eds.), Proceedings of", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 116, + 313, + 505, + 326 + ], + "spans": [ + { + "bbox": [ + 116, + 313, + 505, + 326 + ], + "score": 1.0, + "content": "the 36th International Conference on Machine Learning, volume 97 of Proceedings of Machine", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 115, + 324, + 506, + 336 + ], + "spans": [ + { + "bbox": [ + 115, + 324, + 506, + 336 + ], + "score": 1.0, + "content": "Learning Research, pp. 2021–2030, Long Beach, California, USA, 09–15 Jun 2019. PMLR. URL", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 335, + 379, + 349 + ], + "spans": [ + { + "bbox": [ + 115, + 335, + 379, + 349 + ], + "score": 1.0, + "content": "http://proceedings.mlr.press/v97/fu19a.html.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 107, + 353, + 505, + 409 + ], + "lines": [ + { + "bbox": [ + 106, + 353, + 506, + 367 + ], + "spans": [ + { + "bbox": [ + 106, + 353, + 506, + 367 + ], + "score": 1.0, + "content": "Scott Fujimoto, Herke van Hoof, and David Meger. Addressing function approximation error", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 365, + 504, + 376 + ], + "spans": [ + { + "bbox": [ + 115, + 365, + 504, + 376 + ], + "score": 1.0, + "content": "in actor-critic methods. In Jennifer Dy and Andreas Krause (eds.), Proceedings of the 35th", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 374, + 506, + 390 + ], + "spans": [ + { + "bbox": [ + 115, + 374, + 506, + 390 + ], + "score": 1.0, + "content": "International Conference on Machine Learning, volume 80 of Proceedings of Machine Learning", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 115, + 386, + 506, + 398 + ], + "spans": [ + { + "bbox": [ + 115, + 386, + 506, + 398 + ], + "score": 1.0, + "content": "Research, pp. 1587–1596, Stockholmsmassan, Stockholm Sweden, 10–15 Jul 2018. PMLR. URL¨", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 116, + 398, + 414, + 410 + ], + "spans": [ + { + "bbox": [ + 116, + 398, + 289, + 410 + ], + "score": 1.0, + "content": "http://proceedings.mlr.press/", + "type": "text" + }, + { + "bbox": [ + 290, + 398, + 309, + 408 + ], + "score": 0.44, + "content": "\\mathtt { v 8 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 398, + 414, + 410 + ], + "score": 1.0, + "content": "/fujimoto18a.html.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 106, + 416, + 505, + 472 + ], + "lines": [ + { + "bbox": [ + 106, + 416, + 505, + 428 + ], + "spans": [ + { + "bbox": [ + 106, + 416, + 505, + 428 + ], + "score": 1.0, + "content": "Scott Fujimoto, David Meger, and Doina Precup. Off-policy deep reinforcement learning without", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 116, + 427, + 505, + 439 + ], + "spans": [ + { + "bbox": [ + 116, + 427, + 505, + 439 + ], + "score": 1.0, + "content": "exploration. In Kamalika Chaudhuri and Ruslan Salakhutdinov (eds.), Proceedings of the 36th", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 115, + 437, + 506, + 452 + ], + "spans": [ + { + "bbox": [ + 115, + 437, + 506, + 452 + ], + "score": 1.0, + "content": "International Conference on Machine Learning, volume 97 of Proceedings of Machine Learning", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 114, + 447, + 507, + 464 + ], + "spans": [ + { + "bbox": [ + 114, + 447, + 507, + 464 + ], + "score": 1.0, + "content": "Research, pp. 2052–2062, Long Beach, California, USA, 09–15 Jun 2019. PMLR. URL http:", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 116, + 461, + 384, + 473 + ], + "spans": [ + { + "bbox": [ + 116, + 461, + 384, + 473 + ], + "score": 1.0, + "content": "//proceedings.mlr.press/v97/fujimoto19a.html.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 107, + 478, + 505, + 534 + ], + "lines": [ + { + "bbox": [ + 106, + 479, + 504, + 491 + ], + "spans": [ + { + "bbox": [ + 106, + 479, + 504, + 491 + ], + "score": 1.0, + "content": "Shixiang Gu, Timothy Lillicrap, Ilya Sutskever, and Sergey Levine. Continuous deep q-learning with", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 115, + 488, + 505, + 503 + ], + "spans": [ + { + "bbox": [ + 115, + 488, + 505, + 503 + ], + "score": 1.0, + "content": "model-based acceleration. In Maria Florina Balcan and Kilian Q. Weinberger (eds.), Proceedings", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 116, + 501, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 116, + 501, + 505, + 513 + ], + "score": 1.0, + "content": "of The 33rd International Conference on Machine Learning, volume 48 of Proceedings of Machine", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 511, + 506, + 524 + ], + "spans": [ + { + "bbox": [ + 115, + 511, + 506, + 524 + ], + "score": 1.0, + "content": "Learning Research, pp. 2829–2838, New York, New York, USA, 20–22 Jun 2016. PMLR. URL", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 116, + 523, + 372, + 535 + ], + "spans": [ + { + "bbox": [ + 116, + 523, + 372, + 535 + ], + "score": 1.0, + "content": "http://proceedings.mlr.press/v48/gu16.html.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 107, + 541, + 506, + 607 + ], + "lines": [ + { + "bbox": [ + 105, + 541, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 541, + 505, + 554 + ], + "score": 1.0, + "content": "Tuomas Haarnoja, Aurick Zhou, Pieter Abbeel, and Sergey Levine. Soft actor-critic: Off-policy", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 115, + 552, + 506, + 564 + ], + "spans": [ + { + "bbox": [ + 115, + 552, + 506, + 564 + ], + "score": 1.0, + "content": "maximum entropy deep reinforcement learning with a stochastic actor. In Jennifer Dy and", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 114, + 561, + 507, + 577 + ], + "spans": [ + { + "bbox": [ + 114, + 561, + 507, + 577 + ], + "score": 1.0, + "content": "Andreas Krause (eds.), Proceedings of the 35th International Conference on Machine Learning,", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 115, + 574, + 507, + 587 + ], + "spans": [ + { + "bbox": [ + 115, + 574, + 507, + 587 + ], + "score": 1.0, + "content": "volume 80 of Proceedings of Machine Learning Research, pp. 1861–1870, Stockholmsmassan, ¨", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 115, + 584, + 506, + 598 + ], + "spans": [ + { + "bbox": [ + 115, + 584, + 506, + 598 + ], + "score": 1.0, + "content": "Stockholm Sweden, 10–15 Jul 2018a. PMLR. URL http://proceedings.mlr.press/", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 116, + 597, + 240, + 607 + ], + "spans": [ + { + "bbox": [ + 116, + 597, + 240, + 607 + ], + "score": 1.0, + "content": "v80/haarnoja18b.html.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 37.5 + }, + { + "type": "text", + "bbox": [ + 107, + 614, + 506, + 681 + ], + "lines": [ + { + "bbox": [ + 105, + 614, + 505, + 627 + ], + "spans": [ + { + "bbox": [ + 105, + 614, + 505, + 627 + ], + "score": 1.0, + "content": "Tuomas Haarnoja, Aurick Zhou, Pieter Abbeel, and Sergey Levine. Soft actor-critic: Off-policy", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 115, + 626, + 506, + 637 + ], + "spans": [ + { + "bbox": [ + 115, + 626, + 506, + 637 + ], + "score": 1.0, + "content": "maximum entropy deep reinforcement learning with a stochastic actor. In Jennifer Dy and", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 114, + 634, + 507, + 650 + ], + "spans": [ + { + "bbox": [ + 114, + 634, + 507, + 650 + ], + "score": 1.0, + "content": "Andreas Krause (eds.), Proceedings of the 35th International Conference on Machine Learning,", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 115, + 647, + 506, + 660 + ], + "spans": [ + { + "bbox": [ + 115, + 647, + 506, + 660 + ], + "score": 1.0, + "content": "volume 80 of Proceedings of Machine Learning Research, pp. 1861–1870, Stockholmsmassan, ¨", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 115, + 657, + 506, + 671 + ], + "spans": [ + { + "bbox": [ + 115, + 657, + 506, + 671 + ], + "score": 1.0, + "content": "Stockholm Sweden, 10–15 Jul 2018b. PMLR. URL http://proceedings.mlr.press/", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 116, + 670, + 241, + 682 + ], + "spans": [ + { + "bbox": [ + 116, + 670, + 241, + 682 + ], + "score": 1.0, + "content": "v80/haarnoja18b.html.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 43.5 + }, + { + "type": "text", + "bbox": [ + 107, + 687, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "Hirotaka Hachiya, Takayuki Akiyama, Masashi Sugiayma, and Jan Peters. Adaptive importance", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 115, + 699, + 507, + 712 + ], + "spans": [ + { + "bbox": [ + 115, + 699, + 507, + 712 + ], + "score": 1.0, + "content": "sampling for value function approximation in off-policy reinforcement learning. Neural Netw.,", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 116, + 710, + 506, + 721 + ], + "spans": [ + { + "bbox": [ + 116, + 710, + 506, + 721 + ], + "score": 1.0, + "content": "22(10):1399–1410, December 2009. ISSN 0893-6080. doi: 10.1016/j.neunet.2009.01.002. URL", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 116, + 721, + 397, + 732 + ], + "spans": [ + { + "bbox": [ + 116, + 721, + 397, + 732 + ], + "score": 1.0, + "content": "http://dx.doi.org/10.1016/j.neunet.2009.01.002.", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 48.5 + } + ], + "page_idx": 8, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 307, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "score": 1.0, + "content": "9", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 82, + 175, + 93 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 176, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 176, + 95 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 100, + 504, + 133 + ], + "lines": [ + { + "bbox": [ + 105, + 99, + 505, + 113 + ], + "spans": [ + { + "bbox": [ + 105, + 99, + 505, + 113 + ], + "score": 1.0, + "content": "Abbas Abdolmaleki, Jost Tobias Springenberg, Jonas Degrave, Steven Bohez, Yuval Tassa, Dan", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 109, + 505, + 124 + ], + "spans": [ + { + "bbox": [ + 115, + 109, + 505, + 124 + ], + "score": 1.0, + "content": "Belov, Nicolas Manfred Otto Heess, and Martin A. Riedmiller. Relative entropy regularized policy", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 116, + 122, + 282, + 134 + ], + "spans": [ + { + "bbox": [ + 116, + 122, + 282, + 134 + ], + "score": 1.0, + "content": "iteration. ArXiv, abs/1812.02256, 2018a.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2, + "bbox_fs": [ + 105, + 99, + 505, + 134 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 140, + 503, + 174 + ], + "lines": [ + { + "bbox": [ + 105, + 140, + 505, + 154 + ], + "spans": [ + { + "bbox": [ + 105, + 140, + 505, + 154 + ], + "score": 1.0, + "content": "Abbas Abdolmaleki, Jost Tobias Springenberg, Yuval Tassa, Remi Munos, Nicolas Heess, and Martin", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 115, + 151, + 505, + 165 + ], + "spans": [ + { + "bbox": [ + 115, + 151, + 505, + 165 + ], + "score": 1.0, + "content": "Riedmiller. Maximum a posteriori policy optimisation. In International Conference on Learning", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 162, + 488, + 176 + ], + "spans": [ + { + "bbox": [ + 115, + 162, + 424, + 176 + ], + "score": 1.0, + "content": "Representations, 2018b. URL https://openreview.net/forum?id", + "type": "text" + }, + { + "bbox": [ + 424, + 164, + 431, + 172 + ], + "score": 0.4, + "content": "\\underline { { \\underline { { \\mathbf { \\Pi } } } } } =", + "type": "inline_equation" + }, + { + "bbox": [ + 431, + 162, + 488, + 176 + ], + "score": 1.0, + "content": "S1ANxQW0b.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5, + "bbox_fs": [ + 105, + 140, + 505, + 176 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 181, + 504, + 204 + ], + "lines": [ + { + "bbox": [ + 106, + 181, + 505, + 194 + ], + "spans": [ + { + "bbox": [ + 106, + 181, + 505, + 194 + ], + "score": 1.0, + "content": "Greg Brockman, Vicki Cheung, Ludwig Pettersson, Jonas Schneider, John Schulman, Jie Tang, and", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 115, + 191, + 276, + 204 + ], + "spans": [ + { + "bbox": [ + 115, + 191, + 276, + 204 + ], + "score": 1.0, + "content": "Wojciech Zaremba. Openai gym, 2016.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5, + "bbox_fs": [ + 106, + 181, + 505, + 204 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 210, + 505, + 244 + ], + "lines": [ + { + "bbox": [ + 105, + 209, + 507, + 223 + ], + "spans": [ + { + "bbox": [ + 105, + 209, + 507, + 223 + ], + "score": 1.0, + "content": "Prafulla Dhariwal, Christopher Hesse, Oleg Klimov, Alex Nichol, Matthias Plappert, Alec Radford,", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 220, + 507, + 235 + ], + "spans": [ + { + "bbox": [ + 115, + 220, + 507, + 235 + ], + "score": 1.0, + "content": "John Schulman, Szymon Sidor, Yuhuai Wu, and Peter Zhokhov. Openai baselines. https:", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 116, + 232, + 320, + 244 + ], + "spans": [ + { + "bbox": [ + 116, + 232, + 320, + 244 + ], + "score": 1.0, + "content": "//github.com/openai/baselines, 2017.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10, + "bbox_fs": [ + 105, + 209, + 507, + 244 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 250, + 504, + 284 + ], + "lines": [ + { + "bbox": [ + 106, + 249, + 506, + 265 + ], + "spans": [ + { + "bbox": [ + 106, + 249, + 506, + 265 + ], + "score": 1.0, + "content": "Yan Duan, Xi Chen, Rein Houthooft, John Schulman, and Pieter Abbeel. Benchmarking deep", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 261, + 508, + 276 + ], + "spans": [ + { + "bbox": [ + 115, + 261, + 508, + 276 + ], + "score": 1.0, + "content": "reinforcement learning for continuous control. In ICML, pp. 1329–1338, 2016. URL http:", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 116, + 273, + 354, + 285 + ], + "spans": [ + { + "bbox": [ + 116, + 273, + 354, + 285 + ], + "score": 1.0, + "content": "//proceedings.mlr.press/v48/duan16.html.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13, + "bbox_fs": [ + 106, + 249, + 508, + 285 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 291, + 506, + 347 + ], + "lines": [ + { + "bbox": [ + 104, + 289, + 507, + 306 + ], + "spans": [ + { + "bbox": [ + 104, + 289, + 507, + 306 + ], + "score": 1.0, + "content": "Justin Fu, Aviral Kumar, Matthew Soh, and Sergey Levine. Diagnosing bottlenecks in deep q-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 115, + 301, + 506, + 316 + ], + "spans": [ + { + "bbox": [ + 115, + 301, + 506, + 316 + ], + "score": 1.0, + "content": "learning algorithms. In Kamalika Chaudhuri and Ruslan Salakhutdinov (eds.), Proceedings of", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 116, + 313, + 505, + 326 + ], + "spans": [ + { + "bbox": [ + 116, + 313, + 505, + 326 + ], + "score": 1.0, + "content": "the 36th International Conference on Machine Learning, volume 97 of Proceedings of Machine", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 115, + 324, + 506, + 336 + ], + "spans": [ + { + "bbox": [ + 115, + 324, + 506, + 336 + ], + "score": 1.0, + "content": "Learning Research, pp. 2021–2030, Long Beach, California, USA, 09–15 Jun 2019. PMLR. URL", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 335, + 379, + 349 + ], + "spans": [ + { + "bbox": [ + 115, + 335, + 379, + 349 + ], + "score": 1.0, + "content": "http://proceedings.mlr.press/v97/fu19a.html.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 17, + "bbox_fs": [ + 104, + 289, + 507, + 349 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 353, + 505, + 409 + ], + "lines": [ + { + "bbox": [ + 106, + 353, + 506, + 367 + ], + "spans": [ + { + "bbox": [ + 106, + 353, + 506, + 367 + ], + "score": 1.0, + "content": "Scott Fujimoto, Herke van Hoof, and David Meger. Addressing function approximation error", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 365, + 504, + 376 + ], + "spans": [ + { + "bbox": [ + 115, + 365, + 504, + 376 + ], + "score": 1.0, + "content": "in actor-critic methods. In Jennifer Dy and Andreas Krause (eds.), Proceedings of the 35th", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 374, + 506, + 390 + ], + "spans": [ + { + "bbox": [ + 115, + 374, + 506, + 390 + ], + "score": 1.0, + "content": "International Conference on Machine Learning, volume 80 of Proceedings of Machine Learning", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 115, + 386, + 506, + 398 + ], + "spans": [ + { + "bbox": [ + 115, + 386, + 506, + 398 + ], + "score": 1.0, + "content": "Research, pp. 1587–1596, Stockholmsmassan, Stockholm Sweden, 10–15 Jul 2018. PMLR. URL¨", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 116, + 398, + 414, + 410 + ], + "spans": [ + { + "bbox": [ + 116, + 398, + 289, + 410 + ], + "score": 1.0, + "content": "http://proceedings.mlr.press/", + "type": "text" + }, + { + "bbox": [ + 290, + 398, + 309, + 408 + ], + "score": 0.44, + "content": "\\mathtt { v 8 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 398, + 414, + 410 + ], + "score": 1.0, + "content": "/fujimoto18a.html.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 22, + "bbox_fs": [ + 106, + 353, + 506, + 410 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 416, + 505, + 472 + ], + "lines": [ + { + "bbox": [ + 106, + 416, + 505, + 428 + ], + "spans": [ + { + "bbox": [ + 106, + 416, + 505, + 428 + ], + "score": 1.0, + "content": "Scott Fujimoto, David Meger, and Doina Precup. Off-policy deep reinforcement learning without", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 116, + 427, + 505, + 439 + ], + "spans": [ + { + "bbox": [ + 116, + 427, + 505, + 439 + ], + "score": 1.0, + "content": "exploration. In Kamalika Chaudhuri and Ruslan Salakhutdinov (eds.), Proceedings of the 36th", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 115, + 437, + 506, + 452 + ], + "spans": [ + { + "bbox": [ + 115, + 437, + 506, + 452 + ], + "score": 1.0, + "content": "International Conference on Machine Learning, volume 97 of Proceedings of Machine Learning", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 114, + 447, + 507, + 464 + ], + "spans": [ + { + "bbox": [ + 114, + 447, + 507, + 464 + ], + "score": 1.0, + "content": "Research, pp. 2052–2062, Long Beach, California, USA, 09–15 Jun 2019. PMLR. URL http:", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 116, + 461, + 384, + 473 + ], + "spans": [ + { + "bbox": [ + 116, + 461, + 384, + 473 + ], + "score": 1.0, + "content": "//proceedings.mlr.press/v97/fujimoto19a.html.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 27, + "bbox_fs": [ + 106, + 416, + 507, + 473 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 478, + 505, + 534 + ], + "lines": [ + { + "bbox": [ + 106, + 479, + 504, + 491 + ], + "spans": [ + { + "bbox": [ + 106, + 479, + 504, + 491 + ], + "score": 1.0, + "content": "Shixiang Gu, Timothy Lillicrap, Ilya Sutskever, and Sergey Levine. Continuous deep q-learning with", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 115, + 488, + 505, + 503 + ], + "spans": [ + { + "bbox": [ + 115, + 488, + 505, + 503 + ], + "score": 1.0, + "content": "model-based acceleration. In Maria Florina Balcan and Kilian Q. Weinberger (eds.), Proceedings", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 116, + 501, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 116, + 501, + 505, + 513 + ], + "score": 1.0, + "content": "of The 33rd International Conference on Machine Learning, volume 48 of Proceedings of Machine", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 511, + 506, + 524 + ], + "spans": [ + { + "bbox": [ + 115, + 511, + 506, + 524 + ], + "score": 1.0, + "content": "Learning Research, pp. 2829–2838, New York, New York, USA, 20–22 Jun 2016. PMLR. URL", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 116, + 523, + 372, + 535 + ], + "spans": [ + { + "bbox": [ + 116, + 523, + 372, + 535 + ], + "score": 1.0, + "content": "http://proceedings.mlr.press/v48/gu16.html.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 32, + "bbox_fs": [ + 106, + 479, + 506, + 535 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 541, + 506, + 607 + ], + "lines": [ + { + "bbox": [ + 105, + 541, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 541, + 505, + 554 + ], + "score": 1.0, + "content": "Tuomas Haarnoja, Aurick Zhou, Pieter Abbeel, and Sergey Levine. Soft actor-critic: Off-policy", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 115, + 552, + 506, + 564 + ], + "spans": [ + { + "bbox": [ + 115, + 552, + 506, + 564 + ], + "score": 1.0, + "content": "maximum entropy deep reinforcement learning with a stochastic actor. In Jennifer Dy and", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 114, + 561, + 507, + 577 + ], + "spans": [ + { + "bbox": [ + 114, + 561, + 507, + 577 + ], + "score": 1.0, + "content": "Andreas Krause (eds.), Proceedings of the 35th International Conference on Machine Learning,", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 115, + 574, + 507, + 587 + ], + "spans": [ + { + "bbox": [ + 115, + 574, + 507, + 587 + ], + "score": 1.0, + "content": "volume 80 of Proceedings of Machine Learning Research, pp. 1861–1870, Stockholmsmassan, ¨", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 115, + 584, + 506, + 598 + ], + "spans": [ + { + "bbox": [ + 115, + 584, + 506, + 598 + ], + "score": 1.0, + "content": "Stockholm Sweden, 10–15 Jul 2018a. PMLR. URL http://proceedings.mlr.press/", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 116, + 597, + 240, + 607 + ], + "spans": [ + { + "bbox": [ + 116, + 597, + 240, + 607 + ], + "score": 1.0, + "content": "v80/haarnoja18b.html.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 37.5, + "bbox_fs": [ + 105, + 541, + 507, + 607 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 614, + 506, + 681 + ], + "lines": [ + { + "bbox": [ + 105, + 614, + 505, + 627 + ], + "spans": [ + { + "bbox": [ + 105, + 614, + 505, + 627 + ], + "score": 1.0, + "content": "Tuomas Haarnoja, Aurick Zhou, Pieter Abbeel, and Sergey Levine. Soft actor-critic: Off-policy", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 115, + 626, + 506, + 637 + ], + "spans": [ + { + "bbox": [ + 115, + 626, + 506, + 637 + ], + "score": 1.0, + "content": "maximum entropy deep reinforcement learning with a stochastic actor. In Jennifer Dy and", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 114, + 634, + 507, + 650 + ], + "spans": [ + { + "bbox": [ + 114, + 634, + 507, + 650 + ], + "score": 1.0, + "content": "Andreas Krause (eds.), Proceedings of the 35th International Conference on Machine Learning,", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 115, + 647, + 506, + 660 + ], + "spans": [ + { + "bbox": [ + 115, + 647, + 506, + 660 + ], + "score": 1.0, + "content": "volume 80 of Proceedings of Machine Learning Research, pp. 1861–1870, Stockholmsmassan, ¨", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 115, + 657, + 506, + 671 + ], + "spans": [ + { + "bbox": [ + 115, + 657, + 506, + 671 + ], + "score": 1.0, + "content": "Stockholm Sweden, 10–15 Jul 2018b. PMLR. URL http://proceedings.mlr.press/", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 116, + 670, + 241, + 682 + ], + "spans": [ + { + "bbox": [ + 116, + 670, + 241, + 682 + ], + "score": 1.0, + "content": "v80/haarnoja18b.html.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 43.5, + "bbox_fs": [ + 105, + 614, + 507, + 682 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 687, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "Hirotaka Hachiya, Takayuki Akiyama, Masashi Sugiayma, and Jan Peters. Adaptive importance", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 115, + 699, + 507, + 712 + ], + "spans": [ + { + "bbox": [ + 115, + 699, + 507, + 712 + ], + "score": 1.0, + "content": "sampling for value function approximation in off-policy reinforcement learning. Neural Netw.,", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 116, + 710, + 506, + 721 + ], + "spans": [ + { + "bbox": [ + 116, + 710, + 506, + 721 + ], + "score": 1.0, + "content": "22(10):1399–1410, December 2009. ISSN 0893-6080. doi: 10.1016/j.neunet.2009.01.002. URL", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 116, + 721, + 397, + 732 + ], + "spans": [ + { + "bbox": [ + 116, + 721, + 397, + 732 + ], + "score": 1.0, + "content": "http://dx.doi.org/10.1016/j.neunet.2009.01.002.", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 48.5, + "bbox_fs": [ + 106, + 687, + 507, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 116 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Danijar Hafner, James Davidson, and Vincent Vanhoucke. Tensorflow agents: Efficient batched", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 92, + 508, + 106 + ], + "spans": [ + { + "bbox": [ + 115, + 92, + 508, + 106 + ], + "score": 1.0, + "content": "reinforcement learning in tensorflow. CoRR, abs/1709.02878, 2017. URL http://arxiv.", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 117, + 105, + 229, + 115 + ], + "spans": [ + { + "bbox": [ + 117, + 105, + 229, + 115 + ], + "score": 1.0, + "content": "org/abs/1709.02878.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 106, + 124, + 507, + 169 + ], + "lines": [ + { + "bbox": [ + 105, + 123, + 507, + 138 + ], + "spans": [ + { + "bbox": [ + 105, + 123, + 507, + 138 + ], + "score": 1.0, + "content": "Hado van Hasselt, Arthur Guez, and David Silver. Deep reinforcement learning with double q-learning.", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 136, + 507, + 149 + ], + "spans": [ + { + "bbox": [ + 115, + 136, + 507, + 149 + ], + "score": 1.0, + "content": "In Proceedings of the Thirtieth AAAI Conference on Artificial Intelligence, AAAI’16, pp. 2094–", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 114, + 146, + 509, + 160 + ], + "spans": [ + { + "bbox": [ + 114, + 146, + 509, + 160 + ], + "score": 1.0, + "content": "2100. AAAI Press, 2016. URL http://dl.acm.org/citation.cfm?id=3016100.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 116, + 158, + 164, + 169 + ], + "spans": [ + { + "bbox": [ + 116, + 158, + 164, + 169 + ], + "score": 1.0, + "content": "3016191.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + }, + { + "type": "text", + "bbox": [ + 106, + 177, + 506, + 222 + ], + "lines": [ + { + "bbox": [ + 105, + 177, + 506, + 190 + ], + "spans": [ + { + "bbox": [ + 105, + 177, + 506, + 190 + ], + "score": 1.0, + "content": "Nicolas Heess, Dhruva TB, Srinivasan Sriram, Jay Lemmon, Josh Merel, Greg Wayne, Yuval Tassa,", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 114, + 188, + 506, + 201 + ], + "spans": [ + { + "bbox": [ + 114, + 188, + 506, + 201 + ], + "score": 1.0, + "content": "Tom Erez, Ziyu Wang, S. M. Ali Eslami, Martin A. Riedmiller, and David Silver. Emergence", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 115, + 198, + 507, + 213 + ], + "spans": [ + { + "bbox": [ + 115, + 198, + 507, + 213 + ], + "score": 1.0, + "content": "of locomotion behaviours in rich environments. CoRR, abs/1707.02286, 2017. URL http:", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 116, + 212, + 276, + 222 + ], + "spans": [ + { + "bbox": [ + 116, + 212, + 276, + 222 + ], + "score": 1.0, + "content": "//arxiv.org/abs/1707.02286.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 8.5 + }, + { + "type": "text", + "bbox": [ + 106, + 231, + 506, + 275 + ], + "lines": [ + { + "bbox": [ + 105, + 230, + 507, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 230, + 507, + 244 + ], + "score": 1.0, + "content": "Matteo Hessel, Joseph Modayil, Hado van Hasselt, Tom Schaul, Georg Ostrovski, Will Dabney,", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 241, + 506, + 255 + ], + "spans": [ + { + "bbox": [ + 115, + 241, + 506, + 255 + ], + "score": 1.0, + "content": "Daniel Horgan, Bilal Piot, Mohammad Gheshlaghi Azar, and David Silver. Rainbow: Combining", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 253, + 507, + 266 + ], + "spans": [ + { + "bbox": [ + 115, + 253, + 507, + 266 + ], + "score": 1.0, + "content": "improvements in deep reinforcement learning. CoRR, abs/1710.02298, 2017. URL http:", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 116, + 264, + 277, + 276 + ], + "spans": [ + { + "bbox": [ + 116, + 264, + 277, + 276 + ], + "score": 1.0, + "content": "//arxiv.org/abs/1710.02298.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12.5 + }, + { + "type": "text", + "bbox": [ + 107, + 284, + 506, + 329 + ], + "lines": [ + { + "bbox": [ + 105, + 283, + 506, + 297 + ], + "spans": [ + { + "bbox": [ + 105, + 283, + 506, + 297 + ], + "score": 1.0, + "content": "Sham Kakade and John Langford. Approximately optimal approximate reinforcement learning. In", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 115, + 293, + 507, + 309 + ], + "spans": [ + { + "bbox": [ + 115, + 293, + 507, + 309 + ], + "score": 1.0, + "content": "Proceedings of the Nineteenth International Conference on Machine Learning, ICML ’02, pp.", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 306, + 508, + 319 + ], + "spans": [ + { + "bbox": [ + 115, + 306, + 508, + 319 + ], + "score": 1.0, + "content": "267–274, San Francisco, CA, USA, 2002. Morgan Kaufmann Publishers Inc. ISBN 1-55860-873-7.", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 116, + 317, + 424, + 329 + ], + "spans": [ + { + "bbox": [ + 116, + 317, + 424, + 329 + ], + "score": 1.0, + "content": "URL http://dl.acm.org/citation.cfm?id=645531.656005.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 16.5 + }, + { + "type": "text", + "bbox": [ + 106, + 337, + 506, + 371 + ], + "lines": [ + { + "bbox": [ + 106, + 337, + 505, + 349 + ], + "spans": [ + { + "bbox": [ + 106, + 337, + 505, + 349 + ], + "score": 1.0, + "content": "Jens Kober and Jan R. Peters. Policy search for motor primitives in robotics. In D. Koller, D. Schuur-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 115, + 348, + 507, + 362 + ], + "spans": [ + { + "bbox": [ + 115, + 348, + 507, + 362 + ], + "score": 1.0, + "content": "mans, Y. Bengio, and L. Bottou (eds.), Advances in Neural Information Processing Systems 21, pp.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 116, + 359, + 279, + 371 + ], + "spans": [ + { + "bbox": [ + 116, + 359, + 279, + 371 + ], + "score": 1.0, + "content": "849–856. Curran Associates, Inc., 2009.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 106, + 379, + 505, + 412 + ], + "lines": [ + { + "bbox": [ + 105, + 378, + 505, + 393 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 505, + 393 + ], + "score": 1.0, + "content": "Aviral Kumar, Justin Fu, George Tucker, and Sergey Levine. Stabilizing off-policy q-learning via", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 115, + 391, + 505, + 403 + ], + "spans": [ + { + "bbox": [ + 115, + 391, + 505, + 403 + ], + "score": 1.0, + "content": "bootstrapping error reduction. CoRR, abs/1906.00949, 2019. URL http://arxiv.org/abs/", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 402, + 182, + 413 + ], + "spans": [ + { + "bbox": [ + 115, + 402, + 182, + 413 + ], + "score": 1.0, + "content": "1906.00949.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 107, + 421, + 506, + 455 + ], + "lines": [ + { + "bbox": [ + 105, + 420, + 506, + 435 + ], + "spans": [ + { + "bbox": [ + 105, + 420, + 506, + 435 + ], + "score": 1.0, + "content": "Timothy P. Lillicrap, Jonathan J. Hunt, Alexander Pritzel, Nicolas Manfred Otto Heess, Tom Erez,", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 432, + 505, + 445 + ], + "spans": [ + { + "bbox": [ + 115, + 432, + 505, + 445 + ], + "score": 1.0, + "content": "Yuval Tassa, David Silver, and Daan Wierstra. Continuous control with deep reinforcement", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 115, + 443, + 206, + 456 + ], + "spans": [ + { + "bbox": [ + 115, + 443, + 206, + 456 + ], + "score": 1.0, + "content": "learning. ICLR, 2016.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 107, + 463, + 504, + 486 + ], + "lines": [ + { + "bbox": [ + 105, + 462, + 505, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 462, + 505, + 478 + ], + "score": 1.0, + "content": "Nicolas Meuleau, Leonid Peshkin, Leslie P. Kaelbling, and Kee eung Kim. Off-policy policy search.", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 115, + 475, + 210, + 487 + ], + "spans": [ + { + "bbox": [ + 115, + 475, + 210, + 487 + ], + "score": 1.0, + "content": "Technical report, 2000.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5 + }, + { + "type": "text", + "bbox": [ + 107, + 495, + 506, + 562 + ], + "lines": [ + { + "bbox": [ + 106, + 496, + 506, + 507 + ], + "spans": [ + { + "bbox": [ + 106, + 496, + 506, + 507 + ], + "score": 1.0, + "content": "Volodymyr Mnih, Koray Kavukcuoglu, David Silver, Andrei A. Rusu, Joel Veness, Marc G.", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 115, + 505, + 506, + 519 + ], + "spans": [ + { + "bbox": [ + 115, + 505, + 506, + 519 + ], + "score": 1.0, + "content": "Bellemare, Alex Graves, Martin Riedmiller, Andreas K. Fidjeland, Georg Ostrovski, Stig Pe-", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 516, + 507, + 530 + ], + "spans": [ + { + "bbox": [ + 115, + 516, + 507, + 530 + ], + "score": 1.0, + "content": "tersen, Charles Beattie, Amir Sadik, Ioannis Antonoglou, Helen King, Dharshan Kumaran,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 527, + 506, + 541 + ], + "spans": [ + { + "bbox": [ + 115, + 527, + 506, + 541 + ], + "score": 1.0, + "content": "Daan Wierstra, Shane Legg, and Demis Hassabis. Human-level control through deep rein-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 116, + 539, + 505, + 550 + ], + "spans": [ + { + "bbox": [ + 116, + 539, + 505, + 550 + ], + "score": 1.0, + "content": "forcement learning. Nature, 518(7540):529–533, February 2015. ISSN 00280836. URL", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 116, + 550, + 343, + 562 + ], + "spans": [ + { + "bbox": [ + 116, + 550, + 343, + 562 + ], + "score": 1.0, + "content": "http://dx.doi.org/10.1038/nature14236.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 32.5 + }, + { + "type": "text", + "bbox": [ + 106, + 570, + 506, + 625 + ], + "lines": [ + { + "bbox": [ + 106, + 570, + 505, + 582 + ], + "spans": [ + { + "bbox": [ + 106, + 570, + 505, + 582 + ], + "score": 1.0, + "content": "Remi Munos, Thomas Stepleton, Anna Harutyunyan, and Marc G. Bellemare. Safe and efficient ´", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 116, + 580, + 506, + 594 + ], + "spans": [ + { + "bbox": [ + 116, + 580, + 506, + 594 + ], + "score": 1.0, + "content": "off-policy reinforcement learning. In Proceedings of the 30th International Conference on Neural", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 115, + 592, + 507, + 605 + ], + "spans": [ + { + "bbox": [ + 115, + 592, + 507, + 605 + ], + "score": 1.0, + "content": "Information Processing Systems, NIPS’16, pp. 1054–1062, USA, 2016. Curran Associates Inc.", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 115, + 602, + 507, + 616 + ], + "spans": [ + { + "bbox": [ + 115, + 602, + 453, + 616 + ], + "score": 1.0, + "content": "ISBN 978-1-5108-3881-9. URL http://dl.acm.org/citation.cfm?id", + "type": "text" + }, + { + "bbox": [ + 453, + 605, + 460, + 613 + ], + "score": 0.36, + "content": "\\underline { { \\underline { { \\mathbf { \\Pi } } } } } =", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 602, + 507, + 616 + ], + "score": 1.0, + "content": "3157096.", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 116, + 615, + 163, + 626 + ], + "spans": [ + { + "bbox": [ + 116, + 615, + 163, + 626 + ], + "score": 1.0, + "content": "3157214.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 107, + 634, + 506, + 679 + ], + "lines": [ + { + "bbox": [ + 106, + 634, + 507, + 647 + ], + "spans": [ + { + "bbox": [ + 106, + 634, + 507, + 647 + ], + "score": 1.0, + "content": "Vinod Nair and Geoffrey E. Hinton. Rectified linear units improve restricted boltzmann machines.", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 116, + 646, + 506, + 658 + ], + "spans": [ + { + "bbox": [ + 116, + 646, + 506, + 658 + ], + "score": 1.0, + "content": "In Proceedings of the 27th International Conference on International Conference on Machine", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 115, + 657, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 115, + 657, + 506, + 668 + ], + "score": 1.0, + "content": "Learning, ICML’10, pp. 807–814, USA, 2010. Omnipress. ISBN 978-1-60558-907-7. URL", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 115, + 668, + 415, + 680 + ], + "spans": [ + { + "bbox": [ + 115, + 668, + 314, + 680 + ], + "score": 1.0, + "content": "http://dl.acm.org/citation.cfm?id", + "type": "text" + }, + { + "bbox": [ + 315, + 669, + 321, + 677 + ], + "score": 0.25, + "content": "\\equiv", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 668, + 415, + 680 + ], + "score": 1.0, + "content": "3104322.3104425.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 42.5 + }, + { + "type": "text", + "bbox": [ + 107, + 687, + 506, + 731 + ], + "lines": [ + { + "bbox": [ + 106, + 687, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 687, + 506, + 700 + ], + "score": 1.0, + "content": "Gerhard Neumann. Variational inference for policy search in changing situations. In Proceedings of", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 115, + 699, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 115, + 699, + 506, + 712 + ], + "score": 1.0, + "content": "the 28th International Conference on International Conference on Machine Learning, ICML’11,", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 115, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 115, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "pp. 817–824, USA, 2011. Omnipress. ISBN 978-1-4503-0619-5. URL http://dl.acm.org/", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 115, + 721, + 308, + 732 + ], + "spans": [ + { + "bbox": [ + 115, + 721, + 308, + 732 + ], + "score": 1.0, + "content": "citation.cfm?id=3104482.3104585.", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 46.5 + } + ], + "page_idx": 9, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 307, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "10", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 116 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Danijar Hafner, James Davidson, and Vincent Vanhoucke. Tensorflow agents: Efficient batched", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 92, + 508, + 106 + ], + "spans": [ + { + "bbox": [ + 115, + 92, + 508, + 106 + ], + "score": 1.0, + "content": "reinforcement learning in tensorflow. CoRR, abs/1709.02878, 2017. URL http://arxiv.", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 117, + 105, + 229, + 115 + ], + "spans": [ + { + "bbox": [ + 117, + 105, + 229, + 115 + ], + "score": 1.0, + "content": "org/abs/1709.02878.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1, + "bbox_fs": [ + 106, + 82, + 508, + 115 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 124, + 507, + 169 + ], + "lines": [ + { + "bbox": [ + 105, + 123, + 507, + 138 + ], + "spans": [ + { + "bbox": [ + 105, + 123, + 507, + 138 + ], + "score": 1.0, + "content": "Hado van Hasselt, Arthur Guez, and David Silver. Deep reinforcement learning with double q-learning.", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 136, + 507, + 149 + ], + "spans": [ + { + "bbox": [ + 115, + 136, + 507, + 149 + ], + "score": 1.0, + "content": "In Proceedings of the Thirtieth AAAI Conference on Artificial Intelligence, AAAI’16, pp. 2094–", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 114, + 146, + 509, + 160 + ], + "spans": [ + { + "bbox": [ + 114, + 146, + 509, + 160 + ], + "score": 1.0, + "content": "2100. AAAI Press, 2016. URL http://dl.acm.org/citation.cfm?id=3016100.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 116, + 158, + 164, + 169 + ], + "spans": [ + { + "bbox": [ + 116, + 158, + 164, + 169 + ], + "score": 1.0, + "content": "3016191.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5, + "bbox_fs": [ + 105, + 123, + 509, + 169 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 177, + 506, + 222 + ], + "lines": [ + { + "bbox": [ + 105, + 177, + 506, + 190 + ], + "spans": [ + { + "bbox": [ + 105, + 177, + 506, + 190 + ], + "score": 1.0, + "content": "Nicolas Heess, Dhruva TB, Srinivasan Sriram, Jay Lemmon, Josh Merel, Greg Wayne, Yuval Tassa,", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 114, + 188, + 506, + 201 + ], + "spans": [ + { + "bbox": [ + 114, + 188, + 506, + 201 + ], + "score": 1.0, + "content": "Tom Erez, Ziyu Wang, S. M. Ali Eslami, Martin A. Riedmiller, and David Silver. Emergence", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 115, + 198, + 507, + 213 + ], + "spans": [ + { + "bbox": [ + 115, + 198, + 507, + 213 + ], + "score": 1.0, + "content": "of locomotion behaviours in rich environments. CoRR, abs/1707.02286, 2017. URL http:", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 116, + 212, + 276, + 222 + ], + "spans": [ + { + "bbox": [ + 116, + 212, + 276, + 222 + ], + "score": 1.0, + "content": "//arxiv.org/abs/1707.02286.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 8.5, + "bbox_fs": [ + 105, + 177, + 507, + 222 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 231, + 506, + 275 + ], + "lines": [ + { + "bbox": [ + 105, + 230, + 507, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 230, + 507, + 244 + ], + "score": 1.0, + "content": "Matteo Hessel, Joseph Modayil, Hado van Hasselt, Tom Schaul, Georg Ostrovski, Will Dabney,", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 241, + 506, + 255 + ], + "spans": [ + { + "bbox": [ + 115, + 241, + 506, + 255 + ], + "score": 1.0, + "content": "Daniel Horgan, Bilal Piot, Mohammad Gheshlaghi Azar, and David Silver. Rainbow: Combining", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 253, + 507, + 266 + ], + "spans": [ + { + "bbox": [ + 115, + 253, + 507, + 266 + ], + "score": 1.0, + "content": "improvements in deep reinforcement learning. CoRR, abs/1710.02298, 2017. URL http:", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 116, + 264, + 277, + 276 + ], + "spans": [ + { + "bbox": [ + 116, + 264, + 277, + 276 + ], + "score": 1.0, + "content": "//arxiv.org/abs/1710.02298.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12.5, + "bbox_fs": [ + 105, + 230, + 507, + 276 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 284, + 506, + 329 + ], + "lines": [ + { + "bbox": [ + 105, + 283, + 506, + 297 + ], + "spans": [ + { + "bbox": [ + 105, + 283, + 506, + 297 + ], + "score": 1.0, + "content": "Sham Kakade and John Langford. Approximately optimal approximate reinforcement learning. In", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 115, + 293, + 507, + 309 + ], + "spans": [ + { + "bbox": [ + 115, + 293, + 507, + 309 + ], + "score": 1.0, + "content": "Proceedings of the Nineteenth International Conference on Machine Learning, ICML ’02, pp.", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 306, + 508, + 319 + ], + "spans": [ + { + "bbox": [ + 115, + 306, + 508, + 319 + ], + "score": 1.0, + "content": "267–274, San Francisco, CA, USA, 2002. Morgan Kaufmann Publishers Inc. ISBN 1-55860-873-7.", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 116, + 317, + 424, + 329 + ], + "spans": [ + { + "bbox": [ + 116, + 317, + 424, + 329 + ], + "score": 1.0, + "content": "URL http://dl.acm.org/citation.cfm?id=645531.656005.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 16.5, + "bbox_fs": [ + 105, + 283, + 508, + 329 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 337, + 506, + 371 + ], + "lines": [ + { + "bbox": [ + 106, + 337, + 505, + 349 + ], + "spans": [ + { + "bbox": [ + 106, + 337, + 505, + 349 + ], + "score": 1.0, + "content": "Jens Kober and Jan R. Peters. Policy search for motor primitives in robotics. In D. Koller, D. Schuur-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 115, + 348, + 507, + 362 + ], + "spans": [ + { + "bbox": [ + 115, + 348, + 507, + 362 + ], + "score": 1.0, + "content": "mans, Y. Bengio, and L. Bottou (eds.), Advances in Neural Information Processing Systems 21, pp.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 116, + 359, + 279, + 371 + ], + "spans": [ + { + "bbox": [ + 116, + 359, + 279, + 371 + ], + "score": 1.0, + "content": "849–856. Curran Associates, Inc., 2009.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20, + "bbox_fs": [ + 106, + 337, + 507, + 371 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 379, + 505, + 412 + ], + "lines": [ + { + "bbox": [ + 105, + 378, + 505, + 393 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 505, + 393 + ], + "score": 1.0, + "content": "Aviral Kumar, Justin Fu, George Tucker, and Sergey Levine. Stabilizing off-policy q-learning via", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 115, + 391, + 505, + 403 + ], + "spans": [ + { + "bbox": [ + 115, + 391, + 505, + 403 + ], + "score": 1.0, + "content": "bootstrapping error reduction. CoRR, abs/1906.00949, 2019. URL http://arxiv.org/abs/", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 402, + 182, + 413 + ], + "spans": [ + { + "bbox": [ + 115, + 402, + 182, + 413 + ], + "score": 1.0, + "content": "1906.00949.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23, + "bbox_fs": [ + 105, + 378, + 505, + 413 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 421, + 506, + 455 + ], + "lines": [ + { + "bbox": [ + 105, + 420, + 506, + 435 + ], + "spans": [ + { + "bbox": [ + 105, + 420, + 506, + 435 + ], + "score": 1.0, + "content": "Timothy P. Lillicrap, Jonathan J. Hunt, Alexander Pritzel, Nicolas Manfred Otto Heess, Tom Erez,", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 432, + 505, + 445 + ], + "spans": [ + { + "bbox": [ + 115, + 432, + 505, + 445 + ], + "score": 1.0, + "content": "Yuval Tassa, David Silver, and Daan Wierstra. Continuous control with deep reinforcement", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 115, + 443, + 206, + 456 + ], + "spans": [ + { + "bbox": [ + 115, + 443, + 206, + 456 + ], + "score": 1.0, + "content": "learning. ICLR, 2016.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26, + "bbox_fs": [ + 105, + 420, + 506, + 456 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 463, + 504, + 486 + ], + "lines": [ + { + "bbox": [ + 105, + 462, + 505, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 462, + 505, + 478 + ], + "score": 1.0, + "content": "Nicolas Meuleau, Leonid Peshkin, Leslie P. Kaelbling, and Kee eung Kim. Off-policy policy search.", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 115, + 475, + 210, + 487 + ], + "spans": [ + { + "bbox": [ + 115, + 475, + 210, + 487 + ], + "score": 1.0, + "content": "Technical report, 2000.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5, + "bbox_fs": [ + 105, + 462, + 505, + 487 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 495, + 506, + 562 + ], + "lines": [ + { + "bbox": [ + 106, + 496, + 506, + 507 + ], + "spans": [ + { + "bbox": [ + 106, + 496, + 506, + 507 + ], + "score": 1.0, + "content": "Volodymyr Mnih, Koray Kavukcuoglu, David Silver, Andrei A. Rusu, Joel Veness, Marc G.", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 115, + 505, + 506, + 519 + ], + "spans": [ + { + "bbox": [ + 115, + 505, + 506, + 519 + ], + "score": 1.0, + "content": "Bellemare, Alex Graves, Martin Riedmiller, Andreas K. Fidjeland, Georg Ostrovski, Stig Pe-", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 516, + 507, + 530 + ], + "spans": [ + { + "bbox": [ + 115, + 516, + 507, + 530 + ], + "score": 1.0, + "content": "tersen, Charles Beattie, Amir Sadik, Ioannis Antonoglou, Helen King, Dharshan Kumaran,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 527, + 506, + 541 + ], + "spans": [ + { + "bbox": [ + 115, + 527, + 506, + 541 + ], + "score": 1.0, + "content": "Daan Wierstra, Shane Legg, and Demis Hassabis. Human-level control through deep rein-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 116, + 539, + 505, + 550 + ], + "spans": [ + { + "bbox": [ + 116, + 539, + 505, + 550 + ], + "score": 1.0, + "content": "forcement learning. Nature, 518(7540):529–533, February 2015. ISSN 00280836. URL", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 116, + 550, + 343, + 562 + ], + "spans": [ + { + "bbox": [ + 116, + 550, + 343, + 562 + ], + "score": 1.0, + "content": "http://dx.doi.org/10.1038/nature14236.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 32.5, + "bbox_fs": [ + 106, + 496, + 507, + 562 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 570, + 506, + 625 + ], + "lines": [ + { + "bbox": [ + 106, + 570, + 505, + 582 + ], + "spans": [ + { + "bbox": [ + 106, + 570, + 505, + 582 + ], + "score": 1.0, + "content": "Remi Munos, Thomas Stepleton, Anna Harutyunyan, and Marc G. Bellemare. Safe and efficient ´", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 116, + 580, + 506, + 594 + ], + "spans": [ + { + "bbox": [ + 116, + 580, + 506, + 594 + ], + "score": 1.0, + "content": "off-policy reinforcement learning. In Proceedings of the 30th International Conference on Neural", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 115, + 592, + 507, + 605 + ], + "spans": [ + { + "bbox": [ + 115, + 592, + 507, + 605 + ], + "score": 1.0, + "content": "Information Processing Systems, NIPS’16, pp. 1054–1062, USA, 2016. Curran Associates Inc.", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 115, + 602, + 507, + 616 + ], + "spans": [ + { + "bbox": [ + 115, + 602, + 453, + 616 + ], + "score": 1.0, + "content": "ISBN 978-1-5108-3881-9. URL http://dl.acm.org/citation.cfm?id", + "type": "text" + }, + { + "bbox": [ + 453, + 605, + 460, + 613 + ], + "score": 0.36, + "content": "\\underline { { \\underline { { \\mathbf { \\Pi } } } } } =", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 602, + 507, + 616 + ], + "score": 1.0, + "content": "3157096.", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 116, + 615, + 163, + 626 + ], + "spans": [ + { + "bbox": [ + 116, + 615, + 163, + 626 + ], + "score": 1.0, + "content": "3157214.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 38, + "bbox_fs": [ + 106, + 570, + 507, + 626 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 634, + 506, + 679 + ], + "lines": [ + { + "bbox": [ + 106, + 634, + 507, + 647 + ], + "spans": [ + { + "bbox": [ + 106, + 634, + 507, + 647 + ], + "score": 1.0, + "content": "Vinod Nair and Geoffrey E. Hinton. Rectified linear units improve restricted boltzmann machines.", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 116, + 646, + 506, + 658 + ], + "spans": [ + { + "bbox": [ + 116, + 646, + 506, + 658 + ], + "score": 1.0, + "content": "In Proceedings of the 27th International Conference on International Conference on Machine", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 115, + 657, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 115, + 657, + 506, + 668 + ], + "score": 1.0, + "content": "Learning, ICML’10, pp. 807–814, USA, 2010. Omnipress. ISBN 978-1-60558-907-7. URL", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 115, + 668, + 415, + 680 + ], + "spans": [ + { + "bbox": [ + 115, + 668, + 314, + 680 + ], + "score": 1.0, + "content": "http://dl.acm.org/citation.cfm?id", + "type": "text" + }, + { + "bbox": [ + 315, + 669, + 321, + 677 + ], + "score": 0.25, + "content": "\\equiv", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 668, + 415, + 680 + ], + "score": 1.0, + "content": "3104322.3104425.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 42.5, + "bbox_fs": [ + 106, + 634, + 507, + 680 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 687, + 506, + 731 + ], + "lines": [ + { + "bbox": [ + 106, + 687, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 687, + 506, + 700 + ], + "score": 1.0, + "content": "Gerhard Neumann. Variational inference for policy search in changing situations. In Proceedings of", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 115, + 699, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 115, + 699, + 506, + 712 + ], + "score": 1.0, + "content": "the 28th International Conference on International Conference on Machine Learning, ICML’11,", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 115, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 115, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "pp. 817–824, USA, 2011. Omnipress. ISBN 978-1-4503-0619-5. URL http://dl.acm.org/", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 115, + 721, + 308, + 732 + ], + "spans": [ + { + "bbox": [ + 115, + 721, + 308, + 732 + ], + "score": 1.0, + "content": "citation.cfm?id=3104482.3104585.", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 46.5, + "bbox_fs": [ + 106, + 687, + 506, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 109, + 82, + 504, + 116 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 506, + 96 + ], + "score": 1.0, + "content": "Gerhard Neumann and Jan R. Peters. Fitted q-iteration by advantage weighted regression. In D. Koller,", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 114, + 91, + 506, + 108 + ], + "spans": [ + { + "bbox": [ + 114, + 91, + 506, + 108 + ], + "score": 1.0, + "content": "D. Schuurmans, Y. Bengio, and L. Bottou (eds.), Advances in Neural Information Processing", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 116, + 105, + 352, + 117 + ], + "spans": [ + { + "bbox": [ + 116, + 105, + 352, + 117 + ], + "score": 1.0, + "content": "Systems 21, pp. 1177–1184. Curran Associates, Inc., 2009.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 106, + 123, + 506, + 179 + ], + "lines": [ + { + "bbox": [ + 106, + 123, + 505, + 136 + ], + "spans": [ + { + "bbox": [ + 106, + 123, + 505, + 136 + ], + "score": 1.0, + "content": "Junhyuk Oh, Yijie Guo, Satinder Singh, and Honglak Lee. Self-imitation learning. In Jennifer Dy and", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 133, + 507, + 149 + ], + "spans": [ + { + "bbox": [ + 115, + 133, + 507, + 149 + ], + "score": 1.0, + "content": "Andreas Krause (eds.), Proceedings of the 35th International Conference on Machine Learning,", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 116, + 146, + 507, + 159 + ], + "spans": [ + { + "bbox": [ + 116, + 146, + 507, + 159 + ], + "score": 1.0, + "content": "volume 80 of Proceedings of Machine Learning Research, pp. 3878–3887, Stockholmsmassan, ¨", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 155, + 505, + 171 + ], + "spans": [ + { + "bbox": [ + 115, + 155, + 505, + 171 + ], + "score": 1.0, + "content": "Stockholm Sweden, 10–15 Jul 2018. PMLR. URL http://proceedings.mlr.press/", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 116, + 168, + 205, + 179 + ], + "spans": [ + { + "bbox": [ + 116, + 168, + 205, + 179 + ], + "score": 1.0, + "content": "v80/oh18b.html.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 106, + 187, + 505, + 221 + ], + "lines": [ + { + "bbox": [ + 105, + 186, + 505, + 201 + ], + "spans": [ + { + "bbox": [ + 105, + 186, + 505, + 201 + ], + "score": 1.0, + "content": "Deepak Pathak, Pulkit Agrawal, Alexei A. Efros, and Trevor Darrell. Curiosity-driven exploration by", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 115, + 198, + 505, + 211 + ], + "spans": [ + { + "bbox": [ + 115, + 198, + 505, + 211 + ], + "score": 1.0, + "content": "self-supervised prediction. In The IEEE Conference on Computer Vision and Pattern Recognition", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 209, + 243, + 221 + ], + "spans": [ + { + "bbox": [ + 115, + 209, + 243, + 221 + ], + "score": 1.0, + "content": "(CVPR) Workshops, July 2017.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 107, + 228, + 506, + 273 + ], + "lines": [ + { + "bbox": [ + 105, + 228, + 507, + 241 + ], + "spans": [ + { + "bbox": [ + 105, + 228, + 507, + 241 + ], + "score": 1.0, + "content": "Xue Bin Peng, Pieter Abbeel, Sergey Levine, and Michiel van de Panne. Deepmimic: Example-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 240, + 506, + 252 + ], + "spans": [ + { + "bbox": [ + 115, + 240, + 506, + 252 + ], + "score": 1.0, + "content": "guided deep reinforcement learning of physics-based character skills. ACM Trans. Graph., 37", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 250, + 507, + 264 + ], + "spans": [ + { + "bbox": [ + 115, + 250, + 507, + 264 + ], + "score": 1.0, + "content": "(4):143:1–143:14, July 2018. ISSN 0730-0301. doi: 10.1145/3197517.3201311. URL http:", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 115, + 262, + 343, + 273 + ], + "spans": [ + { + "bbox": [ + 115, + 262, + 343, + 273 + ], + "score": 1.0, + "content": "//doi.acm.org/10.1145/3197517.3201311.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12.5 + }, + { + "type": "text", + "bbox": [ + 107, + 281, + 505, + 326 + ], + "lines": [ + { + "bbox": [ + 105, + 281, + 506, + 294 + ], + "spans": [ + { + "bbox": [ + 105, + 281, + 506, + 294 + ], + "score": 1.0, + "content": "Jan Peters and Stefan Schaal. Reinforcement learning by reward-weighted regression for operational", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 115, + 292, + 506, + 305 + ], + "spans": [ + { + "bbox": [ + 115, + 292, + 506, + 305 + ], + "score": 1.0, + "content": "space control. In Proceedings of the 24th International Conference on Machine Learning, ICML", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 303, + 506, + 316 + ], + "spans": [ + { + "bbox": [ + 115, + 303, + 506, + 316 + ], + "score": 1.0, + "content": "’07, pp. 745–750, New York, NY, USA, 2007. ACM. ISBN 978-1-59593-793-3. doi: 10.1145/", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 115, + 313, + 473, + 327 + ], + "spans": [ + { + "bbox": [ + 115, + 313, + 473, + 327 + ], + "score": 1.0, + "content": "1273496.1273590. URL http://doi.acm.org/10.1145/1273496.1273590.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 16.5 + }, + { + "type": "text", + "bbox": [ + 106, + 333, + 506, + 367 + ], + "lines": [ + { + "bbox": [ + 105, + 333, + 506, + 347 + ], + "spans": [ + { + "bbox": [ + 105, + 333, + 506, + 347 + ], + "score": 1.0, + "content": "Jan Peters, Katharina Mulling, and Yasemin Alt ¨ un. Relative entropy policy search. In ¨ Proceedings of", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 116, + 345, + 506, + 357 + ], + "spans": [ + { + "bbox": [ + 116, + 345, + 506, + 357 + ], + "score": 1.0, + "content": "the Twenty-Fourth AAAI Conference on Artificial Intelligence, AAAI’10, pp. 1607–1612. AAAI", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 355, + 490, + 369 + ], + "spans": [ + { + "bbox": [ + 115, + 355, + 490, + 369 + ], + "score": 1.0, + "content": "Press, 2010. URL http://dl.acm.org/citation.cfm?id=2898607.2898863.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 107, + 375, + 412, + 387 + ], + "lines": [ + { + "bbox": [ + 106, + 374, + 413, + 388 + ], + "spans": [ + { + "bbox": [ + 106, + 374, + 413, + 388 + ], + "score": 1.0, + "content": "Vitchyr Pong. Rlkit. https://github.com/vitchyr/rlkit, 2019.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 106, + 394, + 505, + 450 + ], + "lines": [ + { + "bbox": [ + 105, + 393, + 506, + 409 + ], + "spans": [ + { + "bbox": [ + 105, + 393, + 506, + 409 + ], + "score": 1.0, + "content": "Doina Precup, Richard S. Sutton, and Sanjoy Dasgupta. Off-policy temporal difference learning", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 406, + 505, + 419 + ], + "spans": [ + { + "bbox": [ + 115, + 406, + 505, + 419 + ], + "score": 1.0, + "content": "with function approximation. In Proceedings of the Eighteenth International Conference on", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 114, + 416, + 505, + 430 + ], + "spans": [ + { + "bbox": [ + 114, + 416, + 505, + 430 + ], + "score": 1.0, + "content": "Machine Learning, ICML ’01, pp. 417–424, San Francisco, CA, USA, 2001. Morgan Kaufmann", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 427, + 505, + 441 + ], + "spans": [ + { + "bbox": [ + 115, + 427, + 497, + 441 + ], + "score": 1.0, + "content": "Publishers Inc. ISBN 1-55860-778-1. URL http://dl.acm.org/citation.cfm?id", + "type": "text" + }, + { + "bbox": [ + 497, + 429, + 505, + 437 + ], + "score": 0.26, + "content": "=", + "type": "inline_equation" + } + ], + "index": 26 + }, + { + "bbox": [ + 116, + 439, + 199, + 450 + ], + "spans": [ + { + "bbox": [ + 116, + 439, + 199, + 450 + ], + "score": 1.0, + "content": "645530.655817.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 109, + 457, + 504, + 492 + ], + "lines": [ + { + "bbox": [ + 107, + 458, + 505, + 470 + ], + "spans": [ + { + "bbox": [ + 107, + 458, + 505, + 470 + ], + "score": 1.0, + "content": "Aravind Rajeswaran, Vikash Kumar, Abhishek Gupta, Giulia Vezzani, John Schulman, Emanuel", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 116, + 469, + 506, + 482 + ], + "spans": [ + { + "bbox": [ + 116, + 469, + 506, + 482 + ], + "score": 1.0, + "content": "Todorov, and Sergey Levine. Learning Complex Dexterous Manipulation with Deep Reinforcement", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 115, + 480, + 492, + 493 + ], + "spans": [ + { + "bbox": [ + 115, + 480, + 492, + 493 + ], + "score": 1.0, + "content": "Learning and Demonstrations. In Proceedings of Robotics: Science and Systems (RSS), 2018.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 106, + 499, + 506, + 555 + ], + "lines": [ + { + "bbox": [ + 106, + 500, + 505, + 512 + ], + "spans": [ + { + "bbox": [ + 106, + 500, + 505, + 512 + ], + "score": 1.0, + "content": "John Schulman, Sergey Levine, Pieter Abbeel, Michael Jordan, and Philipp Moritz. Trust region", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 510, + 506, + 523 + ], + "spans": [ + { + "bbox": [ + 115, + 510, + 506, + 523 + ], + "score": 1.0, + "content": "policy optimization. In Francis Bach and David Blei (eds.), Proceedings of the 32nd International", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 116, + 522, + 506, + 534 + ], + "spans": [ + { + "bbox": [ + 116, + 522, + 506, + 534 + ], + "score": 1.0, + "content": "Conference on Machine Learning, volume 37 of Proceedings of Machine Learning Research,", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 114, + 532, + 508, + 546 + ], + "spans": [ + { + "bbox": [ + 114, + 532, + 508, + 546 + ], + "score": 1.0, + "content": "pp. 1889–1897, Lille, France, 07–09 Jul 2015. PMLR. URL http://proceedings.mlr.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 115, + 544, + 271, + 556 + ], + "spans": [ + { + "bbox": [ + 115, + 544, + 271, + 556 + ], + "score": 1.0, + "content": "press/v37/schulman15.html.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 106, + 563, + 506, + 596 + ], + "lines": [ + { + "bbox": [ + 105, + 561, + 506, + 577 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 506, + 577 + ], + "score": 1.0, + "content": "John Schulman, Filip Wolski, Prafulla Dhariwal, Alec Radford, and Oleg Klimov. Proximal policy", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 116, + 574, + 505, + 587 + ], + "spans": [ + { + "bbox": [ + 116, + 574, + 505, + 587 + ], + "score": 1.0, + "content": "optimization algorithms. CoRR, abs/1707.06347, 2017. URL http://arxiv.org/abs/", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 116, + 585, + 181, + 596 + ], + "spans": [ + { + "bbox": [ + 116, + 585, + 181, + 596 + ], + "score": 1.0, + "content": "1707.06347.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 107, + 604, + 505, + 627 + ], + "lines": [ + { + "bbox": [ + 105, + 603, + 507, + 619 + ], + "spans": [ + { + "bbox": [ + 105, + 603, + 507, + 619 + ], + "score": 1.0, + "content": "Richard S. Sutton and Andrew G. Barto. Introduction to Reinforcement Learning. MIT Press,", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 117, + 615, + 365, + 628 + ], + "spans": [ + { + "bbox": [ + 117, + 615, + 365, + 628 + ], + "score": 1.0, + "content": "Cambridge, MA, USA, 1st edition, 1998. ISBN 0262193981.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.5 + }, + { + "type": "text", + "bbox": [ + 106, + 635, + 505, + 679 + ], + "lines": [ + { + "bbox": [ + 105, + 635, + 506, + 648 + ], + "spans": [ + { + "bbox": [ + 105, + 635, + 506, + 648 + ], + "score": 1.0, + "content": "Richard S Sutton, David A. McAllester, Satinder P. Singh, and Yishay Mansour. Policy gradient", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 116, + 646, + 506, + 659 + ], + "spans": [ + { + "bbox": [ + 116, + 646, + 506, + 659 + ], + "score": 1.0, + "content": "methods for reinforcement learning with function approximation. In S. A. Solla, T. K. Leen, and", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 115, + 657, + 506, + 670 + ], + "spans": [ + { + "bbox": [ + 115, + 657, + 506, + 670 + ], + "score": 1.0, + "content": "K. Muller (eds.), ¨ Advances in Neural Information Processing Systems 12, pp. 1057–1063. MIT", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 115, + 668, + 167, + 680 + ], + "spans": [ + { + "bbox": [ + 115, + 668, + 167, + 680 + ], + "score": 1.0, + "content": "Press, 2000.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 42.5 + }, + { + "type": "text", + "bbox": [ + 107, + 687, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "score": 1.0, + "content": "Qing Wang, Jiechao Xiong, Lei Han, peng sun, Han Liu, and Tong Zhang. Exponentially weighted", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 115, + 698, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 115, + 698, + 506, + 712 + ], + "score": 1.0, + "content": "imitation learning for batched historical data. In S. Bengio, H. Wallach, H. Larochelle, K. Grauman,", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 115, + 709, + 507, + 722 + ], + "spans": [ + { + "bbox": [ + 115, + 709, + 507, + 722 + ], + "score": 1.0, + "content": "N. Cesa-Bianchi, and R. Garnett (eds.), Advances in Neural Information Processing Systems 31,", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 115, + 720, + 304, + 733 + ], + "spans": [ + { + "bbox": [ + 115, + 720, + 304, + 733 + ], + "score": 1.0, + "content": "pp. 6288–6297. Curran Associates, Inc., 2018.", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 46.5 + } + ], + "page_idx": 10, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 307, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 765 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 765 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 109, + 82, + 504, + 116 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 506, + 96 + ], + "score": 1.0, + "content": "Gerhard Neumann and Jan R. Peters. Fitted q-iteration by advantage weighted regression. In D. Koller,", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 114, + 91, + 506, + 108 + ], + "spans": [ + { + "bbox": [ + 114, + 91, + 506, + 108 + ], + "score": 1.0, + "content": "D. Schuurmans, Y. Bengio, and L. Bottou (eds.), Advances in Neural Information Processing", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 116, + 105, + 352, + 117 + ], + "spans": [ + { + "bbox": [ + 116, + 105, + 352, + 117 + ], + "score": 1.0, + "content": "Systems 21, pp. 1177–1184. Curran Associates, Inc., 2009.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1, + "bbox_fs": [ + 106, + 81, + 506, + 117 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 123, + 506, + 179 + ], + "lines": [ + { + "bbox": [ + 106, + 123, + 505, + 136 + ], + "spans": [ + { + "bbox": [ + 106, + 123, + 505, + 136 + ], + "score": 1.0, + "content": "Junhyuk Oh, Yijie Guo, Satinder Singh, and Honglak Lee. Self-imitation learning. In Jennifer Dy and", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 133, + 507, + 149 + ], + "spans": [ + { + "bbox": [ + 115, + 133, + 507, + 149 + ], + "score": 1.0, + "content": "Andreas Krause (eds.), Proceedings of the 35th International Conference on Machine Learning,", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 116, + 146, + 507, + 159 + ], + "spans": [ + { + "bbox": [ + 116, + 146, + 507, + 159 + ], + "score": 1.0, + "content": "volume 80 of Proceedings of Machine Learning Research, pp. 3878–3887, Stockholmsmassan, ¨", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 155, + 505, + 171 + ], + "spans": [ + { + "bbox": [ + 115, + 155, + 505, + 171 + ], + "score": 1.0, + "content": "Stockholm Sweden, 10–15 Jul 2018. PMLR. URL http://proceedings.mlr.press/", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 116, + 168, + 205, + 179 + ], + "spans": [ + { + "bbox": [ + 116, + 168, + 205, + 179 + ], + "score": 1.0, + "content": "v80/oh18b.html.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5, + "bbox_fs": [ + 106, + 123, + 507, + 179 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 187, + 505, + 221 + ], + "lines": [ + { + "bbox": [ + 105, + 186, + 505, + 201 + ], + "spans": [ + { + "bbox": [ + 105, + 186, + 505, + 201 + ], + "score": 1.0, + "content": "Deepak Pathak, Pulkit Agrawal, Alexei A. Efros, and Trevor Darrell. Curiosity-driven exploration by", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 115, + 198, + 505, + 211 + ], + "spans": [ + { + "bbox": [ + 115, + 198, + 505, + 211 + ], + "score": 1.0, + "content": "self-supervised prediction. In The IEEE Conference on Computer Vision and Pattern Recognition", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 209, + 243, + 221 + ], + "spans": [ + { + "bbox": [ + 115, + 209, + 243, + 221 + ], + "score": 1.0, + "content": "(CVPR) Workshops, July 2017.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9, + "bbox_fs": [ + 105, + 186, + 505, + 221 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 228, + 506, + 273 + ], + "lines": [ + { + "bbox": [ + 105, + 228, + 507, + 241 + ], + "spans": [ + { + "bbox": [ + 105, + 228, + 507, + 241 + ], + "score": 1.0, + "content": "Xue Bin Peng, Pieter Abbeel, Sergey Levine, and Michiel van de Panne. Deepmimic: Example-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 240, + 506, + 252 + ], + "spans": [ + { + "bbox": [ + 115, + 240, + 506, + 252 + ], + "score": 1.0, + "content": "guided deep reinforcement learning of physics-based character skills. ACM Trans. Graph., 37", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 250, + 507, + 264 + ], + "spans": [ + { + "bbox": [ + 115, + 250, + 507, + 264 + ], + "score": 1.0, + "content": "(4):143:1–143:14, July 2018. ISSN 0730-0301. doi: 10.1145/3197517.3201311. URL http:", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 115, + 262, + 343, + 273 + ], + "spans": [ + { + "bbox": [ + 115, + 262, + 343, + 273 + ], + "score": 1.0, + "content": "//doi.acm.org/10.1145/3197517.3201311.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12.5, + "bbox_fs": [ + 105, + 228, + 507, + 273 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 281, + 505, + 326 + ], + "lines": [ + { + "bbox": [ + 105, + 281, + 506, + 294 + ], + "spans": [ + { + "bbox": [ + 105, + 281, + 506, + 294 + ], + "score": 1.0, + "content": "Jan Peters and Stefan Schaal. Reinforcement learning by reward-weighted regression for operational", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 115, + 292, + 506, + 305 + ], + "spans": [ + { + "bbox": [ + 115, + 292, + 506, + 305 + ], + "score": 1.0, + "content": "space control. In Proceedings of the 24th International Conference on Machine Learning, ICML", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 303, + 506, + 316 + ], + "spans": [ + { + "bbox": [ + 115, + 303, + 506, + 316 + ], + "score": 1.0, + "content": "’07, pp. 745–750, New York, NY, USA, 2007. ACM. ISBN 978-1-59593-793-3. doi: 10.1145/", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 115, + 313, + 473, + 327 + ], + "spans": [ + { + "bbox": [ + 115, + 313, + 473, + 327 + ], + "score": 1.0, + "content": "1273496.1273590. URL http://doi.acm.org/10.1145/1273496.1273590.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 16.5, + "bbox_fs": [ + 105, + 281, + 506, + 327 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 333, + 506, + 367 + ], + "lines": [ + { + "bbox": [ + 105, + 333, + 506, + 347 + ], + "spans": [ + { + "bbox": [ + 105, + 333, + 506, + 347 + ], + "score": 1.0, + "content": "Jan Peters, Katharina Mulling, and Yasemin Alt ¨ un. Relative entropy policy search. In ¨ Proceedings of", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 116, + 345, + 506, + 357 + ], + "spans": [ + { + "bbox": [ + 116, + 345, + 506, + 357 + ], + "score": 1.0, + "content": "the Twenty-Fourth AAAI Conference on Artificial Intelligence, AAAI’10, pp. 1607–1612. AAAI", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 355, + 490, + 369 + ], + "spans": [ + { + "bbox": [ + 115, + 355, + 490, + 369 + ], + "score": 1.0, + "content": "Press, 2010. URL http://dl.acm.org/citation.cfm?id=2898607.2898863.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20, + "bbox_fs": [ + 105, + 333, + 506, + 369 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 375, + 412, + 387 + ], + "lines": [ + { + "bbox": [ + 106, + 374, + 413, + 388 + ], + "spans": [ + { + "bbox": [ + 106, + 374, + 413, + 388 + ], + "score": 1.0, + "content": "Vitchyr Pong. Rlkit. https://github.com/vitchyr/rlkit, 2019.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22, + "bbox_fs": [ + 106, + 374, + 413, + 388 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 394, + 505, + 450 + ], + "lines": [ + { + "bbox": [ + 105, + 393, + 506, + 409 + ], + "spans": [ + { + "bbox": [ + 105, + 393, + 506, + 409 + ], + "score": 1.0, + "content": "Doina Precup, Richard S. Sutton, and Sanjoy Dasgupta. Off-policy temporal difference learning", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 406, + 505, + 419 + ], + "spans": [ + { + "bbox": [ + 115, + 406, + 505, + 419 + ], + "score": 1.0, + "content": "with function approximation. In Proceedings of the Eighteenth International Conference on", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 114, + 416, + 505, + 430 + ], + "spans": [ + { + "bbox": [ + 114, + 416, + 505, + 430 + ], + "score": 1.0, + "content": "Machine Learning, ICML ’01, pp. 417–424, San Francisco, CA, USA, 2001. Morgan Kaufmann", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 427, + 505, + 441 + ], + "spans": [ + { + "bbox": [ + 115, + 427, + 497, + 441 + ], + "score": 1.0, + "content": "Publishers Inc. ISBN 1-55860-778-1. URL http://dl.acm.org/citation.cfm?id", + "type": "text" + }, + { + "bbox": [ + 497, + 429, + 505, + 437 + ], + "score": 0.26, + "content": "=", + "type": "inline_equation" + } + ], + "index": 26 + }, + { + "bbox": [ + 116, + 439, + 199, + 450 + ], + "spans": [ + { + "bbox": [ + 116, + 439, + 199, + 450 + ], + "score": 1.0, + "content": "645530.655817.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 25, + "bbox_fs": [ + 105, + 393, + 506, + 450 + ] + }, + { + "type": "text", + "bbox": [ + 109, + 457, + 504, + 492 + ], + "lines": [ + { + "bbox": [ + 107, + 458, + 505, + 470 + ], + "spans": [ + { + "bbox": [ + 107, + 458, + 505, + 470 + ], + "score": 1.0, + "content": "Aravind Rajeswaran, Vikash Kumar, Abhishek Gupta, Giulia Vezzani, John Schulman, Emanuel", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 116, + 469, + 506, + 482 + ], + "spans": [ + { + "bbox": [ + 116, + 469, + 506, + 482 + ], + "score": 1.0, + "content": "Todorov, and Sergey Levine. Learning Complex Dexterous Manipulation with Deep Reinforcement", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 115, + 480, + 492, + 493 + ], + "spans": [ + { + "bbox": [ + 115, + 480, + 492, + 493 + ], + "score": 1.0, + "content": "Learning and Demonstrations. In Proceedings of Robotics: Science and Systems (RSS), 2018.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29, + "bbox_fs": [ + 107, + 458, + 506, + 493 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 499, + 506, + 555 + ], + "lines": [ + { + "bbox": [ + 106, + 500, + 505, + 512 + ], + "spans": [ + { + "bbox": [ + 106, + 500, + 505, + 512 + ], + "score": 1.0, + "content": "John Schulman, Sergey Levine, Pieter Abbeel, Michael Jordan, and Philipp Moritz. Trust region", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 510, + 506, + 523 + ], + "spans": [ + { + "bbox": [ + 115, + 510, + 506, + 523 + ], + "score": 1.0, + "content": "policy optimization. In Francis Bach and David Blei (eds.), Proceedings of the 32nd International", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 116, + 522, + 506, + 534 + ], + "spans": [ + { + "bbox": [ + 116, + 522, + 506, + 534 + ], + "score": 1.0, + "content": "Conference on Machine Learning, volume 37 of Proceedings of Machine Learning Research,", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 114, + 532, + 508, + 546 + ], + "spans": [ + { + "bbox": [ + 114, + 532, + 508, + 546 + ], + "score": 1.0, + "content": "pp. 1889–1897, Lille, France, 07–09 Jul 2015. PMLR. URL http://proceedings.mlr.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 115, + 544, + 271, + 556 + ], + "spans": [ + { + "bbox": [ + 115, + 544, + 271, + 556 + ], + "score": 1.0, + "content": "press/v37/schulman15.html.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 33, + "bbox_fs": [ + 106, + 500, + 508, + 556 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 563, + 506, + 596 + ], + "lines": [ + { + "bbox": [ + 105, + 561, + 506, + 577 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 506, + 577 + ], + "score": 1.0, + "content": "John Schulman, Filip Wolski, Prafulla Dhariwal, Alec Radford, and Oleg Klimov. Proximal policy", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 116, + 574, + 505, + 587 + ], + "spans": [ + { + "bbox": [ + 116, + 574, + 505, + 587 + ], + "score": 1.0, + "content": "optimization algorithms. CoRR, abs/1707.06347, 2017. URL http://arxiv.org/abs/", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 116, + 585, + 181, + 596 + ], + "spans": [ + { + "bbox": [ + 116, + 585, + 181, + 596 + ], + "score": 1.0, + "content": "1707.06347.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37, + "bbox_fs": [ + 105, + 561, + 506, + 596 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 604, + 505, + 627 + ], + "lines": [ + { + "bbox": [ + 105, + 603, + 507, + 619 + ], + "spans": [ + { + "bbox": [ + 105, + 603, + 507, + 619 + ], + "score": 1.0, + "content": "Richard S. Sutton and Andrew G. Barto. Introduction to Reinforcement Learning. MIT Press,", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 117, + 615, + 365, + 628 + ], + "spans": [ + { + "bbox": [ + 117, + 615, + 365, + 628 + ], + "score": 1.0, + "content": "Cambridge, MA, USA, 1st edition, 1998. ISBN 0262193981.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.5, + "bbox_fs": [ + 105, + 603, + 507, + 628 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 635, + 505, + 679 + ], + "lines": [ + { + "bbox": [ + 105, + 635, + 506, + 648 + ], + "spans": [ + { + "bbox": [ + 105, + 635, + 506, + 648 + ], + "score": 1.0, + "content": "Richard S Sutton, David A. McAllester, Satinder P. Singh, and Yishay Mansour. Policy gradient", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 116, + 646, + 506, + 659 + ], + "spans": [ + { + "bbox": [ + 116, + 646, + 506, + 659 + ], + "score": 1.0, + "content": "methods for reinforcement learning with function approximation. In S. A. Solla, T. K. Leen, and", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 115, + 657, + 506, + 670 + ], + "spans": [ + { + "bbox": [ + 115, + 657, + 506, + 670 + ], + "score": 1.0, + "content": "K. Muller (eds.), ¨ Advances in Neural Information Processing Systems 12, pp. 1057–1063. MIT", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 115, + 668, + 167, + 680 + ], + "spans": [ + { + "bbox": [ + 115, + 668, + 167, + 680 + ], + "score": 1.0, + "content": "Press, 2000.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 42.5, + "bbox_fs": [ + 105, + 635, + 506, + 680 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 687, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "score": 1.0, + "content": "Qing Wang, Jiechao Xiong, Lei Han, peng sun, Han Liu, and Tong Zhang. Exponentially weighted", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 115, + 698, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 115, + 698, + 506, + 712 + ], + "score": 1.0, + "content": "imitation learning for batched historical data. In S. Bengio, H. Wallach, H. Larochelle, K. Grauman,", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 115, + 709, + 507, + 722 + ], + "spans": [ + { + "bbox": [ + 115, + 709, + 507, + 722 + ], + "score": 1.0, + "content": "N. Cesa-Bianchi, and R. Garnett (eds.), Advances in Neural Information Processing Systems 31,", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 115, + 720, + 304, + 733 + ], + "spans": [ + { + "bbox": [ + 115, + 720, + 304, + 733 + ], + "score": 1.0, + "content": "pp. 6288–6297. Curran Associates, Inc., 2018.", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 46.5, + "bbox_fs": [ + 105, + 687, + 507, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 108, + 82, + 506, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "score": 1.0, + "content": "Ziyu Wang, Victor Bapst, Nicolas Heess, Volodymyr Mnih, Remi Munos, Koray Kavukcuoglu, and ´", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 92, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 115, + 92, + 506, + 106 + ], + "score": 1.0, + "content": "Nando de Freitas. Sample efficient actor-critic with experience replay. CoRR, abs/1611.01224,", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 104, + 356, + 117 + ], + "spans": [ + { + "bbox": [ + 115, + 104, + 356, + 117 + ], + "score": 1.0, + "content": "2016. URL http://arxiv.org/abs/1611.01224.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 108, + 123, + 504, + 156 + ], + "lines": [ + { + "bbox": [ + 105, + 123, + 506, + 136 + ], + "spans": [ + { + "bbox": [ + 105, + 123, + 506, + 136 + ], + "score": 1.0, + "content": "Ronald J. Williams. Simple statistical gradient-following algorithms for connectionist reinforcement", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 116, + 134, + 506, + 146 + ], + "spans": [ + { + "bbox": [ + 116, + 134, + 506, + 146 + ], + "score": 1.0, + "content": "learning. Mach. Learn., 8(3-4):229–256, May 1992. ISSN 0885-6125. doi: 10.1007/BF00992696.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 116, + 144, + 348, + 158 + ], + "spans": [ + { + "bbox": [ + 116, + 144, + 348, + 158 + ], + "score": 1.0, + "content": "URL https://doi.org/10.1007/BF00992696.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "page_idx": 11, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "12", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 27, + 307, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 108, + 82, + 506, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "score": 1.0, + "content": "Ziyu Wang, Victor Bapst, Nicolas Heess, Volodymyr Mnih, Remi Munos, Koray Kavukcuoglu, and ´", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 92, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 115, + 92, + 506, + 106 + ], + "score": 1.0, + "content": "Nando de Freitas. Sample efficient actor-critic with experience replay. CoRR, abs/1611.01224,", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 104, + 356, + 117 + ], + "spans": [ + { + "bbox": [ + 115, + 104, + 356, + 117 + ], + "score": 1.0, + "content": "2016. URL http://arxiv.org/abs/1611.01224.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1, + "bbox_fs": [ + 105, + 82, + 506, + 117 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 123, + 504, + 156 + ], + "lines": [ + { + "bbox": [ + 105, + 123, + 506, + 136 + ], + "spans": [ + { + "bbox": [ + 105, + 123, + 506, + 136 + ], + "score": 1.0, + "content": "Ronald J. Williams. Simple statistical gradient-following algorithms for connectionist reinforcement", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 116, + 134, + 506, + 146 + ], + "spans": [ + { + "bbox": [ + 116, + 134, + 506, + 146 + ], + "score": 1.0, + "content": "learning. Mach. Learn., 8(3-4):229–256, May 1992. ISSN 0885-6125. doi: 10.1007/BF00992696.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 116, + 144, + 348, + 158 + ], + "spans": [ + { + "bbox": [ + 116, + 144, + 348, + 158 + ], + "score": 1.0, + "content": "URL https://doi.org/10.1007/BF00992696.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4, + "bbox_fs": [ + 105, + 123, + 506, + 158 + ] + } + ] + } + ], + "_backend": "pipeline", + "_version_name": "2.2.2" +} \ No newline at end of file diff --git a/parse/train/ToWi1RjuEr8/ToWi1RjuEr8_model.json b/parse/train/ToWi1RjuEr8/ToWi1RjuEr8_model.json new file mode 100644 index 0000000000000000000000000000000000000000..16df63542ee9865a186f42e79c15bdd18a039993 --- /dev/null +++ b/parse/train/ToWi1RjuEr8/ToWi1RjuEr8_model.json @@ -0,0 +1,17977 @@ +[ + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 398, + 588, + 1303, + 588, + 1303, + 1076, + 398, + 1076 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 1447, + 1404, + 1447, + 1404, + 1753, + 298, + 1753 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 1187, + 1404, + 1187, + 1404, + 1432, + 298, + 1432 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 1768, + 1404, + 1768, + 1404, + 1982, + 298, + 1982 + ], + "score": 0.975 + }, + { + "category_id": 0, + "poly": [ + 301, + 219, + 1398, + 219, + 1398, + 324, + 301, + 324 + ], + "score": 0.964 + }, + { + "category_id": 1, + "poly": [ + 313, + 378, + 680, + 378, + 680, + 438, + 313, + 438 + ], + "score": 0.919 + }, + { + "category_id": 2, + "poly": [ + 338, + 2006, + 907, + 2006, + 907, + 2034, + 338, + 2034 + ], + "score": 0.914 + }, + { + "category_id": 0, + "poly": [ + 302, + 1133, + 573, + 1133, + 573, + 1168, + 302, + 1168 + ], + "score": 0.895 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 854, + 75, + 854, + 104, + 298, + 104 + ], + "score": 0.879 + }, + { + "category_id": 0, + "poly": [ + 773, + 519, + 926, + 519, + 926, + 553, + 773, + 553 + ], + "score": 0.861 + }, + { + "category_id": 2, + "poly": [ + 841, + 2089, + 856, + 2089, + 856, + 2112, + 841, + 2112 + ], + "score": 0.748 + }, + { + "category_id": 15, + "poly": [ + 295.0, + 218.0, + 1403.0, + 218.0, + 1403.0, + 272.0, + 295.0, + 272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 273.0, + 1401.0, + 273.0, + 1401.0, + 329.0, + 295.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 338.0, + 2000.0, + 909.0, + 2000.0, + 909.0, + 2041.0, + 338.0, + 2041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1130.0, + 579.0, + 1130.0, + 579.0, + 1177.0, + 294.0, + 1177.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 857.0, + 72.0, + 857.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 769.0, + 518.0, + 932.0, + 518.0, + 932.0, + 556.0, + 769.0, + 556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2088.0, + 859.0, + 2088.0, + 859.0, + 2118.0, + 840.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 391.0, + 584.0, + 1306.0, + 584.0, + 1306.0, + 626.0, + 391.0, + 626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 619.0, + 1305.0, + 619.0, + 1305.0, + 652.0, + 393.0, + 652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 649.0, + 1306.0, + 649.0, + 1306.0, + 684.0, + 394.0, + 684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 680.0, + 1306.0, + 680.0, + 1306.0, + 715.0, + 393.0, + 715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 710.0, + 1306.0, + 710.0, + 1306.0, + 744.0, + 392.0, + 744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 741.0, + 1307.0, + 741.0, + 1307.0, + 776.0, + 392.0, + 776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 772.0, + 1304.0, + 772.0, + 1304.0, + 803.0, + 394.0, + 803.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 801.0, + 1304.0, + 801.0, + 1304.0, + 835.0, + 392.0, + 835.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 831.0, + 1304.0, + 831.0, + 1304.0, + 866.0, + 392.0, + 866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 863.0, + 1306.0, + 863.0, + 1306.0, + 897.0, + 396.0, + 897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 893.0, + 1305.0, + 893.0, + 1305.0, + 928.0, + 395.0, + 928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 925.0, + 1305.0, + 925.0, + 1305.0, + 957.0, + 395.0, + 957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 952.0, + 1305.0, + 952.0, + 1305.0, + 989.0, + 393.0, + 989.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 984.0, + 1308.0, + 984.0, + 1308.0, + 1019.0, + 393.0, + 1019.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1013.0, + 1306.0, + 1013.0, + 1306.0, + 1049.0, + 392.0, + 1049.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1045.0, + 1040.0, + 1045.0, + 1040.0, + 1077.0, + 394.0, + 1077.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1445.0, + 1406.0, + 1445.0, + 1406.0, + 1482.0, + 292.0, + 1482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1476.0, + 1405.0, + 1476.0, + 1405.0, + 1514.0, + 293.0, + 1514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1509.0, + 1406.0, + 1509.0, + 1406.0, + 1544.0, + 293.0, + 1544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1539.0, + 1409.0, + 1539.0, + 1409.0, + 1575.0, + 294.0, + 1575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1570.0, + 1406.0, + 1570.0, + 1406.0, + 1605.0, + 293.0, + 1605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1597.0, + 1406.0, + 1597.0, + 1406.0, + 1634.0, + 292.0, + 1634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1629.0, + 1406.0, + 1629.0, + 1406.0, + 1665.0, + 293.0, + 1665.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1662.0, + 1405.0, + 1662.0, + 1405.0, + 1694.0, + 296.0, + 1694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1689.0, + 1405.0, + 1689.0, + 1405.0, + 1727.0, + 293.0, + 1727.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1719.0, + 1389.0, + 1719.0, + 1389.0, + 1761.0, + 292.0, + 1761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1185.0, + 1405.0, + 1185.0, + 1405.0, + 1224.0, + 292.0, + 1224.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1217.0, + 1409.0, + 1217.0, + 1409.0, + 1254.0, + 293.0, + 1254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1246.0, + 1405.0, + 1246.0, + 1405.0, + 1282.0, + 293.0, + 1282.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1276.0, + 1408.0, + 1276.0, + 1408.0, + 1316.0, + 292.0, + 1316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1307.0, + 1405.0, + 1307.0, + 1405.0, + 1343.0, + 293.0, + 1343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1339.0, + 1405.0, + 1339.0, + 1405.0, + 1374.0, + 292.0, + 1374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1369.0, + 1407.0, + 1369.0, + 1407.0, + 1404.0, + 292.0, + 1404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1402.0, + 1274.0, + 1402.0, + 1274.0, + 1435.0, + 296.0, + 1435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1768.0, + 1406.0, + 1768.0, + 1406.0, + 1803.0, + 296.0, + 1803.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1795.0, + 1406.0, + 1795.0, + 1406.0, + 1837.0, + 292.0, + 1837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1828.0, + 1404.0, + 1828.0, + 1404.0, + 1865.0, + 293.0, + 1865.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1854.0, + 1405.0, + 1854.0, + 1405.0, + 1898.0, + 292.0, + 1898.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1891.0, + 1405.0, + 1891.0, + 1405.0, + 1925.0, + 294.0, + 1925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1918.0, + 1406.0, + 1918.0, + 1406.0, + 1958.0, + 292.0, + 1958.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1950.0, + 1409.0, + 1950.0, + 1409.0, + 1988.0, + 293.0, + 1988.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 315.0, + 379.0, + 560.0, + 379.0, + 560.0, + 411.0, + 315.0, + 411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 312.0, + 407.0, + 681.0, + 407.0, + 681.0, + 442.0, + 312.0, + 442.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 0, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 1198, + 1406, + 1198, + 1406, + 1580, + 296, + 1580 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 296, + 1655, + 1405, + 1655, + 1405, + 1873, + 296, + 1873 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 297, + 785, + 1405, + 785, + 1405, + 971, + 297, + 971 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 299, + 404, + 1404, + 404, + 1404, + 529, + 299, + 529 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 297, + 647, + 1404, + 647, + 1404, + 773, + 297, + 773 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 1935, + 1403, + 1935, + 1403, + 2035, + 298, + 2035 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 296, + 229, + 1403, + 229, + 1403, + 324, + 296, + 324 + ], + "score": 0.966 + }, + { + "category_id": 1, + "poly": [ + 297, + 1055, + 1400, + 1055, + 1400, + 1119, + 297, + 1119 + ], + "score": 0.956 + }, + { + "category_id": 8, + "poly": [ + 513, + 542, + 1185, + 542, + 1185, + 636, + 513, + 636 + ], + "score": 0.955 + }, + { + "category_id": 8, + "poly": [ + 597, + 1885, + 1101, + 1885, + 1101, + 1927, + 597, + 1927 + ], + "score": 0.946 + }, + { + "category_id": 8, + "poly": [ + 462, + 974, + 1233, + 974, + 1233, + 1043, + 462, + 1043 + ], + "score": 0.942 + }, + { + "category_id": 0, + "poly": [ + 299, + 1147, + 898, + 1147, + 898, + 1182, + 299, + 1182 + ], + "score": 0.928 + }, + { + "category_id": 0, + "poly": [ + 298, + 1616, + 517, + 1616, + 517, + 1647, + 298, + 1647 + ], + "score": 0.915 + }, + { + "category_id": 0, + "poly": [ + 299, + 351, + 579, + 351, + 579, + 386, + 299, + 386 + ], + "score": 0.911 + }, + { + "category_id": 9, + "poly": [ + 1366, + 573, + 1400, + 573, + 1400, + 604, + 1366, + 604 + ], + "score": 0.888 + }, + { + "category_id": 9, + "poly": [ + 1366, + 991, + 1400, + 991, + 1400, + 1021, + 1366, + 1021 + ], + "score": 0.872 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1890, + 1400, + 1890, + 1400, + 1919, + 1366, + 1919 + ], + "score": 0.871 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.731 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 854, + 75, + 854, + 105, + 298, + 105 + ], + "score": 0.495 + }, + { + "category_id": 2, + "poly": [ + 297, + 75, + 854, + 75, + 854, + 105, + 297, + 105 + ], + "score": 0.438 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.178 + }, + { + "category_id": 13, + "poly": [ + 552, + 1414, + 764, + 1414, + 764, + 1456, + 552, + 1456 + ], + "score": 0.94, + "latex": "\\begin{array} { r } { \\mathcal { R } _ { { \\bf s } , { \\bf a } } ^ { D } = \\sum _ { t = 0 } ^ { T } \\gamma ^ { t } r _ { t } } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 513, + 541, + 1184, + 541, + 1184, + 637, + 513, + 637 + ], + "score": 0.94, + "latex": "J ( \\pi ) = \\mathbb { E } _ { \\tau \\sim p _ { \\pi } ( \\tau ) } \\left[ \\sum _ { t = 0 } ^ { \\infty } \\gamma ^ { t } r _ { t } \\right] = \\mathbb { E } _ { \\mathbf { s } \\sim d _ { \\pi } ( \\mathbf { s } ) , a \\sim \\pi ( \\mathbf { a } | \\mathbf { s } ) } \\left[ r ( \\mathbf { s } , \\mathbf { a } ) \\right] ," + }, + { + "category_id": 13, + "poly": [ + 374, + 649, + 442, + 649, + 442, + 682, + 374, + 682 + ], + "score": 0.93, + "latex": "p _ { \\pi } ( \\tau )" + }, + { + "category_id": 13, + "poly": [ + 911, + 1322, + 963, + 1322, + 963, + 1356, + 911, + 1356 + ], + "score": 0.93, + "latex": "\\{ \\tau _ { i } \\}" + }, + { + "category_id": 13, + "poly": [ + 1099, + 1479, + 1405, + 1479, + 1405, + 1519, + 1099, + 1519 + ], + "score": 0.93, + "latex": "A ^ { \\mathcal { D } } ( \\mathbf { { s } } , \\mathbf { { a } } ) = \\mathcal { R } _ { { \\mathbf { s } } , \\mathbf { { a } } } ^ { \\mathcal { D } } - \\mathbf { \\mathcal { V } } ^ { \\mathcal { D } } ( \\mathbf { { s } } )" + }, + { + "category_id": 13, + "poly": [ + 452, + 498, + 607, + 498, + 607, + 530, + 452, + 530 + ], + "score": 0.92, + "latex": "r _ { t } = r ( \\mathbf { s } _ { t } , \\mathbf { a } _ { t } )" + }, + { + "category_id": 13, + "poly": [ + 580, + 1480, + 767, + 1480, + 767, + 1521, + 580, + 1521 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { \\exp ( \\frac { 1 } { \\beta } A ^ { D } ( { \\bf s } , { \\bf a } ) ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 373, + 1322, + 462, + 1322, + 462, + 1355, + 373, + 1355 + ], + "score": 0.92, + "latex": "\\pi _ { k } ( \\mathbf { a } | \\mathbf { s } )" + }, + { + "category_id": 13, + "poly": [ + 298, + 1718, + 536, + 1718, + 536, + 1752, + 298, + 1752 + ], + "score": 0.92, + "latex": "\\mathsf { \\bar { \\eta } } ( \\pi ) \\mathsf { \\bar { = } } J ( \\pi ) \\bar { - } J ( \\mu )" + }, + { + "category_id": 14, + "poly": [ + 599, + 1884, + 1100, + 1884, + 1100, + 1926, + 599, + 1926 + ], + "score": 0.92, + "latex": "\\eta ( \\pi ) = \\mathbb { E } _ { \\mathbf { s } \\sim d _ { \\pi } ( \\mathbf { s } ) } \\mathbb { E } _ { \\mathbf { a } \\sim \\pi ( \\mathbf { a } | \\mathbf { s } ) } \\left[ \\mathcal { R } _ { \\mathbf { s } , \\mathbf { a } } ^ { \\mu } - V ^ { \\mu } ( \\mathbf { s } ) \\right] ," + }, + { + "category_id": 13, + "poly": [ + 465, + 679, + 590, + 679, + 590, + 712, + 465, + 712 + ], + "score": 0.92, + "latex": "\\gamma \\in \\ [ 0 , 1 )" + }, + { + "category_id": 13, + "poly": [ + 394, + 467, + 553, + 467, + 553, + 499, + 394, + 499 + ], + "score": 0.92, + "latex": "\\mathbf { a } _ { t } \\sim \\pi ( \\mathbf { a } _ { t } | \\mathbf { s } _ { t } )" + }, + { + "category_id": 14, + "poly": [ + 463, + 969, + 1236, + 969, + 1236, + 1045, + 463, + 1045 + ], + "score": 0.92, + "latex": "\\pi _ { k + 1 } = \\arg \\operatorname* { m a x } _ { \\pi } \\mathbb { E } _ { \\mathbf { s } \\sim d _ { \\pi _ { k } } ( \\mathbf { s } ) } \\mathbb { E } _ { \\mathbf { a } \\sim \\pi _ { k } ( \\mathbf { a } | \\mathbf { s } ) } \\left[ \\log \\pi ( \\mathbf { a } | \\mathbf { s } ) \\exp \\left( \\frac { 1 } { \\beta } \\mathcal { R } _ { \\mathbf { s } , \\mathbf { a } } \\right) \\right] ." + }, + { + "category_id": 13, + "poly": [ + 782, + 1809, + 1077, + 1809, + 1077, + 1846, + 782, + 1846 + ], + "score": 0.92, + "latex": "{ \\mathbf { } } A ^ { \\mu } ( \\mathbf { { \\bar { s } } } , \\mathbf { { a } } ) = { \\mathbf { } } { \\mathcal { R } } _ { { \\mathbf { s } } , \\mathbf { { a } } } ^ { \\mu } - { \\mathbf { \\bar { \\psi } } } V ^ { \\mu } ( \\mathbf { s } )" + }, + { + "category_id": 13, + "poly": [ + 801, + 1719, + 876, + 1719, + 876, + 1752, + 801, + 1752 + ], + "score": 0.92, + "latex": "\\mu ( \\mathbf { a } | \\mathbf { s } )" + }, + { + "category_id": 13, + "poly": [ + 1331, + 497, + 1389, + 497, + 1389, + 530, + 1331, + 530 + ], + "score": 0.92, + "latex": "J ( \\pi )" + }, + { + "category_id": 13, + "poly": [ + 373, + 1937, + 430, + 1937, + 430, + 1973, + 373, + 1973 + ], + "score": 0.91, + "latex": "\\mathcal { R } _ { \\mathbf { s } , \\mathbf { a } } ^ { \\mu }" + }, + { + "category_id": 13, + "poly": [ + 1347, + 1780, + 1403, + 1780, + 1403, + 1812, + 1347, + 1812 + ], + "score": 0.91, + "latex": "\\eta ( \\pi )" + }, + { + "category_id": 13, + "poly": [ + 297, + 878, + 540, + 878, + 540, + 912, + 297, + 912 + ], + "score": 0.91, + "latex": "\\pi _ { k } ( \\mathbf { a } | \\mathbf { s } ) \\mathrm { e x p } \\left( \\mathcal { R } _ { \\mathbf { s } , \\mathbf { a } } / \\beta \\right)" + }, + { + "category_id": 13, + "poly": [ + 870, + 680, + 1229, + 680, + 1229, + 714, + 870, + 714 + ], + "score": 0.91, + "latex": "\\begin{array} { r } { d _ { \\pi } ( \\mathbf { s } ) \\ = \\ \\sum _ { t = 0 } ^ { \\infty } \\gamma ^ { t } p ( \\mathbf { s } _ { t } \\ = \\ \\mathbf { s } | \\pi ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 297, + 740, + 431, + 740, + 431, + 774, + 297, + 774 + ], + "score": 0.9, + "latex": "p ( \\mathbf { s } _ { t } = \\mathbf { s } | \\boldsymbol { \\pi } )" + }, + { + "category_id": 13, + "poly": [ + 1150, + 878, + 1372, + 878, + 1372, + 914, + 1150, + 914 + ], + "score": 0.9, + "latex": "\\begin{array} { r } { \\mathcal { R } _ { { \\bf s } , { \\bf a } } \\stackrel { - } { = } \\sum _ { t = 0 } ^ { \\infty } \\dot { \\gamma } ^ { t } r _ { t } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 472, + 912, + 546, + 912, + 546, + 941, + 472, + 941 + ], + "score": 0.9, + "latex": "\\beta > 0" + }, + { + "category_id": 13, + "poly": [ + 953, + 1061, + 1013, + 1061, + 1013, + 1089, + 953, + 1089 + ], + "score": 0.9, + "latex": "\\pi _ { k + 1 }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1382, + 376, + 1382, + 376, + 1417, + 298, + 1417 + ], + "score": 0.89, + "latex": "V _ { k } ^ { { \\mathcal { D } } } ( { \\mathbf s } )" + }, + { + "category_id": 13, + "poly": [ + 911, + 648, + 1306, + 648, + 1306, + 681, + 911, + 681 + ], + "score": 0.89, + "latex": "\\tau = \\{ ( \\mathbf { s } _ { 0 } , \\mathbf { a } _ { 0 } , r _ { 0 } ) , ( \\mathbf { s } _ { 1 } , \\mathbf { a } _ { 1 } , r _ { 1 } ) , \\ldots \\}" + }, + { + "category_id": 13, + "poly": [ + 1279, + 471, + 1333, + 471, + 1333, + 498, + 1279, + 498 + ], + "score": 0.88, + "latex": "\\mathbf { s } _ { t + 1 }" + }, + { + "category_id": 13, + "poly": [ + 1276, + 848, + 1403, + 848, + 1403, + 880, + 1276, + 880 + ], + "score": 0.88, + "latex": "\\pi ^ { * } ( \\mathbf { a } | \\mathbf { s } ) \\ \\propto " + }, + { + "category_id": 13, + "poly": [ + 588, + 1971, + 844, + 1971, + 844, + 2010, + 588, + 2010 + ], + "score": 0.88, + "latex": "\\begin{array} { r } { V ^ { \\mu } ( \\mathbf { s } ) = \\int _ { a . } \\mu ( \\mathbf { a } | \\mathbf { s } ) \\mathcal { R } _ { \\mathbf { s } } ^ { \\mathbf { a } } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1165, + 912, + 1197, + 912, + 1197, + 938, + 1165, + 938 + ], + "score": 0.87, + "latex": "\\pi ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 1052, + 440, + 1078, + 440, + 1078, + 466, + 1052, + 466 + ], + "score": 0.86, + "latex": "\\mathbf { s } _ { t }" + }, + { + "category_id": 13, + "poly": [ + 632, + 883, + 665, + 883, + 665, + 909, + 632, + 909 + ], + "score": 0.85, + "latex": "\\pi _ { k }" + }, + { + "category_id": 13, + "poly": [ + 346, + 1517, + 367, + 1517, + 367, + 1549, + 346, + 1549 + ], + "score": 0.85, + "latex": "\\beta" + }, + { + "category_id": 13, + "poly": [ + 646, + 1293, + 665, + 1293, + 665, + 1319, + 646, + 1319 + ], + "score": 0.82, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 1253, + 1814, + 1273, + 1814, + 1273, + 1842, + 1253, + 1842 + ], + "score": 0.82, + "latex": "\\mu" + }, + { + "category_id": 13, + "poly": [ + 1310, + 1977, + 1330, + 1977, + 1330, + 2004, + 1310, + 2004 + ], + "score": 0.81, + "latex": "\\mu" + }, + { + "category_id": 13, + "poly": [ + 913, + 1384, + 938, + 1384, + 938, + 1410, + 913, + 1410 + ], + "score": 0.81, + "latex": "\\mathcal { D }" + }, + { + "category_id": 13, + "poly": [ + 1297, + 1942, + 1318, + 1942, + 1318, + 1969, + 1297, + 1969 + ], + "score": 0.79, + "latex": "\\mu" + }, + { + "category_id": 13, + "poly": [ + 298, + 1093, + 329, + 1093, + 329, + 1117, + 298, + 1117 + ], + "score": 0.79, + "latex": "\\pi _ { k }" + }, + { + "category_id": 13, + "poly": [ + 1104, + 746, + 1124, + 746, + 1124, + 768, + 1104, + 768 + ], + "score": 0.79, + "latex": "\\pi" + }, + { + "category_id": 13, + "poly": [ + 298, + 1355, + 322, + 1355, + 322, + 1379, + 298, + 1379 + ], + "score": 0.78, + "latex": "\\mathcal { D }" + }, + { + "category_id": 13, + "poly": [ + 1167, + 744, + 1181, + 744, + 1181, + 768, + 1167, + 768 + ], + "score": 0.77, + "latex": "t" + }, + { + "category_id": 13, + "poly": [ + 378, + 686, + 398, + 686, + 398, + 708, + 378, + 708 + ], + "score": 0.76, + "latex": "\\pi" + }, + { + "category_id": 13, + "poly": [ + 1048, + 717, + 1069, + 717, + 1069, + 738, + 1048, + 738 + ], + "score": 0.7, + "latex": "\\pi" + }, + { + "category_id": 13, + "poly": [ + 498, + 439, + 512, + 439, + 512, + 464, + 498, + 464 + ], + "score": 0.68, + "latex": "t" + }, + { + "category_id": 13, + "poly": [ + 992, + 880, + 1009, + 880, + 1009, + 906, + 992, + 906 + ], + "score": 0.56, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 851, + 1973, + 885, + 1973, + 885, + 2002, + 851, + 2002 + ], + "score": 0.26, + "latex": "d \\mathbf { a }" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1143.0, + 899.0, + 1143.0, + 899.0, + 1188.0, + 291.0, + 1188.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1613.0, + 521.0, + 1613.0, + 521.0, + 1652.0, + 293.0, + 1652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 348.0, + 582.0, + 348.0, + 582.0, + 392.0, + 292.0, + 392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2120.0, + 838.0, + 2120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 857.0, + 73.0, + 857.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 73.0, + 856.0, + 73.0, + 856.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2120.0, + 838.0, + 2120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1201.0, + 1404.0, + 1201.0, + 1404.0, + 1236.0, + 294.0, + 1236.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1231.0, + 1404.0, + 1231.0, + 1404.0, + 1266.0, + 294.0, + 1266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1261.0, + 1406.0, + 1261.0, + 1406.0, + 1296.0, + 295.0, + 1296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1291.0, + 645.0, + 1291.0, + 645.0, + 1326.0, + 294.0, + 1326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 666.0, + 1291.0, + 1404.0, + 1291.0, + 1404.0, + 1326.0, + 666.0, + 1326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1322.0, + 372.0, + 1322.0, + 372.0, + 1358.0, + 295.0, + 1358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 463.0, + 1322.0, + 910.0, + 1322.0, + 910.0, + 1358.0, + 463.0, + 1358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 964.0, + 1322.0, + 1406.0, + 1322.0, + 1406.0, + 1358.0, + 964.0, + 1358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1349.0, + 297.0, + 1349.0, + 297.0, + 1388.0, + 294.0, + 1388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1349.0, + 1406.0, + 1349.0, + 1406.0, + 1388.0, + 323.0, + 1388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 284.0, + 1375.0, + 297.0, + 1375.0, + 297.0, + 1476.0, + 284.0, + 1476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 377.0, + 1375.0, + 551.0, + 1375.0, + 551.0, + 1476.0, + 377.0, + 1476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 765.0, + 1375.0, + 912.0, + 1375.0, + 912.0, + 1476.0, + 765.0, + 1476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 939.0, + 1375.0, + 1411.0, + 1375.0, + 1411.0, + 1476.0, + 939.0, + 1476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 283.0, + 1452.0, + 579.0, + 1452.0, + 579.0, + 1536.0, + 283.0, + 1536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 768.0, + 1452.0, + 1098.0, + 1452.0, + 1098.0, + 1536.0, + 768.0, + 1536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1406.0, + 1452.0, + 1409.0, + 1452.0, + 1409.0, + 1536.0, + 1406.0, + 1536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1516.0, + 345.0, + 1516.0, + 345.0, + 1550.0, + 294.0, + 1550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 368.0, + 1516.0, + 1406.0, + 1516.0, + 1406.0, + 1550.0, + 368.0, + 1550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1546.0, + 1248.0, + 1546.0, + 1248.0, + 1586.0, + 293.0, + 1586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1656.0, + 1406.0, + 1656.0, + 1406.0, + 1694.0, + 293.0, + 1694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1688.0, + 1407.0, + 1688.0, + 1407.0, + 1725.0, + 293.0, + 1725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1718.0, + 297.0, + 1718.0, + 297.0, + 1754.0, + 294.0, + 1754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 537.0, + 1718.0, + 800.0, + 1718.0, + 800.0, + 1754.0, + 537.0, + 1754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 877.0, + 1718.0, + 1406.0, + 1718.0, + 1406.0, + 1754.0, + 877.0, + 1754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1750.0, + 1406.0, + 1750.0, + 1406.0, + 1783.0, + 294.0, + 1783.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1778.0, + 1346.0, + 1778.0, + 1346.0, + 1816.0, + 293.0, + 1816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1404.0, + 1778.0, + 1408.0, + 1778.0, + 1408.0, + 1816.0, + 1404.0, + 1816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1805.0, + 781.0, + 1805.0, + 781.0, + 1852.0, + 290.0, + 1852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1078.0, + 1805.0, + 1252.0, + 1805.0, + 1252.0, + 1852.0, + 1078.0, + 1852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1274.0, + 1805.0, + 1411.0, + 1805.0, + 1411.0, + 1852.0, + 1274.0, + 1852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1841.0, + 748.0, + 1841.0, + 748.0, + 1876.0, + 294.0, + 1876.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 786.0, + 1407.0, + 786.0, + 1407.0, + 822.0, + 296.0, + 822.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 815.0, + 1406.0, + 815.0, + 1406.0, + 851.0, + 295.0, + 851.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 847.0, + 1275.0, + 847.0, + 1275.0, + 883.0, + 295.0, + 883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 282.0, + 867.0, + 296.0, + 867.0, + 296.0, + 929.0, + 282.0, + 929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 541.0, + 867.0, + 631.0, + 867.0, + 631.0, + 929.0, + 541.0, + 929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 666.0, + 867.0, + 991.0, + 867.0, + 991.0, + 929.0, + 666.0, + 929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1010.0, + 867.0, + 1149.0, + 867.0, + 1149.0, + 929.0, + 1010.0, + 929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1373.0, + 867.0, + 1418.0, + 867.0, + 1418.0, + 929.0, + 1373.0, + 929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 907.0, + 471.0, + 907.0, + 471.0, + 947.0, + 294.0, + 947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 547.0, + 907.0, + 1164.0, + 907.0, + 1164.0, + 947.0, + 547.0, + 947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1198.0, + 907.0, + 1408.0, + 907.0, + 1408.0, + 947.0, + 1198.0, + 947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 938.0, + 1050.0, + 938.0, + 1050.0, + 976.0, + 291.0, + 976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 404.0, + 1408.0, + 404.0, + 1408.0, + 440.0, + 294.0, + 440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 435.0, + 497.0, + 435.0, + 497.0, + 469.0, + 294.0, + 469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 513.0, + 435.0, + 1051.0, + 435.0, + 1051.0, + 469.0, + 513.0, + 469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1079.0, + 435.0, + 1405.0, + 435.0, + 1405.0, + 469.0, + 1079.0, + 469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 468.0, + 393.0, + 468.0, + 393.0, + 500.0, + 294.0, + 500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 554.0, + 468.0, + 1278.0, + 468.0, + 1278.0, + 500.0, + 554.0, + 500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1334.0, + 468.0, + 1406.0, + 468.0, + 1406.0, + 500.0, + 1334.0, + 500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 497.0, + 451.0, + 497.0, + 451.0, + 530.0, + 295.0, + 530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 608.0, + 497.0, + 1330.0, + 497.0, + 1330.0, + 530.0, + 608.0, + 530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1390.0, + 497.0, + 1400.0, + 497.0, + 1400.0, + 530.0, + 1390.0, + 530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 644.0, + 373.0, + 644.0, + 373.0, + 688.0, + 291.0, + 688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 443.0, + 644.0, + 910.0, + 644.0, + 910.0, + 688.0, + 443.0, + 688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1307.0, + 644.0, + 1410.0, + 644.0, + 1410.0, + 688.0, + 1307.0, + 688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 676.0, + 377.0, + 676.0, + 377.0, + 721.0, + 291.0, + 721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 399.0, + 676.0, + 464.0, + 676.0, + 464.0, + 721.0, + 399.0, + 721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 591.0, + 676.0, + 869.0, + 676.0, + 869.0, + 721.0, + 591.0, + 721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1230.0, + 676.0, + 1407.0, + 676.0, + 1407.0, + 721.0, + 1230.0, + 721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 709.0, + 1047.0, + 709.0, + 1047.0, + 745.0, + 294.0, + 745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1070.0, + 709.0, + 1404.0, + 709.0, + 1404.0, + 745.0, + 1070.0, + 745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 738.0, + 296.0, + 738.0, + 296.0, + 778.0, + 292.0, + 778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 432.0, + 738.0, + 1103.0, + 738.0, + 1103.0, + 778.0, + 432.0, + 778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1125.0, + 738.0, + 1166.0, + 738.0, + 1166.0, + 778.0, + 1125.0, + 778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1182.0, + 738.0, + 1303.0, + 738.0, + 1303.0, + 778.0, + 1182.0, + 778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1931.0, + 372.0, + 1931.0, + 372.0, + 1978.0, + 292.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 431.0, + 1931.0, + 1296.0, + 1931.0, + 1296.0, + 1978.0, + 431.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1319.0, + 1931.0, + 1408.0, + 1931.0, + 1408.0, + 1978.0, + 1319.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1967.0, + 587.0, + 1967.0, + 587.0, + 2014.0, + 291.0, + 2014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 845.0, + 1967.0, + 850.0, + 1967.0, + 850.0, + 2014.0, + 845.0, + 2014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 886.0, + 1967.0, + 1309.0, + 1967.0, + 1309.0, + 2014.0, + 886.0, + 2014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1331.0, + 1967.0, + 1409.0, + 1967.0, + 1409.0, + 2014.0, + 1331.0, + 2014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 2002.0, + 1405.0, + 2002.0, + 1405.0, + 2037.0, + 296.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 229.0, + 1405.0, + 229.0, + 1405.0, + 267.0, + 294.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 261.0, + 1405.0, + 261.0, + 1405.0, + 296.0, + 293.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 290.0, + 1063.0, + 290.0, + 1063.0, + 326.0, + 294.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1052.0, + 952.0, + 1052.0, + 952.0, + 1091.0, + 295.0, + 1091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1014.0, + 1052.0, + 1404.0, + 1052.0, + 1404.0, + 1091.0, + 1014.0, + 1091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1084.0, + 297.0, + 1084.0, + 297.0, + 1123.0, + 292.0, + 1123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 1084.0, + 1351.0, + 1084.0, + 1351.0, + 1123.0, + 330.0, + 1123.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 1, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 1814, + 1405, + 1814, + 1405, + 2036, + 296, + 2036 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 296, + 581, + 1404, + 581, + 1404, + 738, + 296, + 738 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 299, + 1584, + 1405, + 1584, + 1405, + 1677, + 299, + 1677 + ], + "score": 0.971 + }, + { + "category_id": 1, + "poly": [ + 300, + 1244, + 1399, + 1244, + 1399, + 1338, + 300, + 1338 + ], + "score": 0.963 + }, + { + "category_id": 1, + "poly": [ + 301, + 895, + 1405, + 895, + 1405, + 987, + 301, + 987 + ], + "score": 0.962 + }, + { + "category_id": 1, + "poly": [ + 298, + 1137, + 1404, + 1137, + 1404, + 1231, + 298, + 1231 + ], + "score": 0.961 + }, + { + "category_id": 1, + "poly": [ + 298, + 751, + 1402, + 751, + 1402, + 845, + 298, + 845 + ], + "score": 0.959 + }, + { + "category_id": 8, + "poly": [ + 553, + 1509, + 1144, + 1509, + 1144, + 1579, + 553, + 1579 + ], + "score": 0.955 + }, + { + "category_id": 8, + "poly": [ + 601, + 851, + 1100, + 851, + 1100, + 892, + 601, + 892 + ], + "score": 0.945 + }, + { + "category_id": 8, + "poly": [ + 614, + 1067, + 1093, + 1067, + 1093, + 1134, + 614, + 1134 + ], + "score": 0.941 + }, + { + "category_id": 1, + "poly": [ + 297, + 1440, + 1398, + 1440, + 1398, + 1503, + 297, + 1503 + ], + "score": 0.936 + }, + { + "category_id": 8, + "poly": [ + 547, + 993, + 1154, + 993, + 1154, + 1063, + 547, + 1063 + ], + "score": 0.922 + }, + { + "category_id": 8, + "poly": [ + 296, + 1343, + 1389, + 1343, + 1389, + 1417, + 296, + 1417 + ], + "score": 0.917 + }, + { + "category_id": 8, + "poly": [ + 624, + 1681, + 954, + 1681, + 954, + 1721, + 624, + 1721 + ], + "score": 0.907 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1085, + 1400, + 1085, + 1400, + 1114, + 1366, + 1114 + ], + "score": 0.884 + }, + { + "category_id": 9, + "poly": [ + 1366, + 855, + 1400, + 855, + 1400, + 884, + 1366, + 884 + ], + "score": 0.881 + }, + { + "category_id": 8, + "poly": [ + 622, + 1737, + 1298, + 1737, + 1298, + 1811, + 622, + 1811 + ], + "score": 0.88 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1529, + 1400, + 1529, + 1400, + 1558, + 1366, + 1558 + ], + "score": 0.874 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1010, + 1400, + 1010, + 1400, + 1040, + 1366, + 1040 + ], + "score": 0.873 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1685, + 1400, + 1685, + 1400, + 1714, + 1366, + 1714 + ], + "score": 0.87 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1761, + 1400, + 1761, + 1400, + 1790, + 1352, + 1790 + ], + "score": 0.864 + }, + { + "category_id": 0, + "poly": [ + 299, + 229, + 814, + 229, + 814, + 262, + 299, + 262 + ], + "score": 0.828 + }, + { + "category_id": 9, + "poly": [ + 1365, + 1413, + 1400, + 1413, + 1400, + 1440, + 1365, + 1440 + ], + "score": 0.817 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.668 + }, + { + "category_id": 5, + "poly": [ + 305, + 271, + 1118, + 271, + 1118, + 532, + 305, + 532 + ], + "score": 0.652, + "html": "
1:π1 ← random policy 2:D←0
3: for iteration k =1,..., kmax do
4:add trajectories {Ti} sampled via πk to D
5:V ← arg minv Es,a~D [|IRa - V(s)ll2]
7: end for6:πk+1 ←arg maxEs,a~D[ogπ(a|s)exp((a-V(s))]
" + }, + { + "category_id": 2, + "poly": [ + 298, + 74, + 854, + 74, + 854, + 105, + 298, + 105 + ], + "score": 0.605 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.469 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 854, + 75, + 854, + 105, + 298, + 105 + ], + "score": 0.356 + }, + { + "category_id": 1, + "poly": [ + 305, + 271, + 1118, + 271, + 1118, + 532, + 305, + 532 + ], + "score": 0.324 + }, + { + "category_id": 14, + "poly": [ + 553, + 1505, + 1145, + 1505, + 1145, + 1582, + 553, + 1582 + ], + "score": 0.94, + "latex": "\\pi ^ { * } ( \\mathbf { a } | \\mathbf { s } ) = \\frac { 1 } { Z ( \\mathbf { s } ) } \\mu ( \\mathbf { a } | \\mathbf { s } ) \\exp \\left( \\frac { 1 } { \\beta } \\left( \\mathcal { R } _ { \\mathbf { s } , \\mathbf { a } } ^ { \\mu } - V ^ { \\mu } ( \\mathbf { s } ) \\right) \\right) ," + }, + { + "category_id": 14, + "poly": [ + 545, + 990, + 1155, + 990, + 1155, + 1137, + 545, + 1137 + ], + "score": 0.93, + "latex": "\\begin{array} { r l } { \\underset { \\pi } { \\arg \\operatorname* { m a x } } } & { \\displaystyle \\int _ { \\mathbf { s } } d _ { \\mu } ( \\mathbf { s } ) \\int _ { \\mathbf { a } } \\pi ( \\mathbf { a } | \\mathbf { s } ) \\left[ \\mathcal { R } _ { \\mathbf { s } , \\mathbf { a } } ^ { \\mu } - V ^ { \\mu } ( \\mathbf { s } ) \\right] d \\mathbf { a } d \\mathbf { s } } \\\\ { \\mathrm { s . t . } } & { \\displaystyle \\int _ { \\mathbf { s } } d _ { \\mu } ( \\mathbf { s } ) \\mathrm { D } _ { \\mathrm { K L } } \\left( \\pi ( \\cdot | \\mathbf { s } ) | | \\mu ( \\cdot | \\mathbf { s } ) \\right) d \\mathbf { s } \\leq \\epsilon . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 845, + 1441, + 934, + 1441, + 934, + 1475, + 845, + 1475 + ], + "score": 0.93, + "latex": "{ \\mathcal { L } } ( \\pi , \\beta )" + }, + { + "category_id": 14, + "poly": [ + 292, + 1340, + 1389, + 1340, + 1389, + 1417, + 292, + 1417 + ], + "score": 0.93, + "latex": "\\mathcal { L } ( \\pi , \\beta ) = \\int _ { \\mathbf { s } } d _ { \\mu } ( \\mathbf { s } ) \\int _ { \\mathbf { a } } \\pi ( \\mathbf { a } | \\mathbf { s } ) \\left[ \\mathcal { R } _ { \\mathbf { s } , \\mathbf { a } } ^ { \\mu } - V ^ { \\mu } ( \\mathbf { s } ) \\right] d \\mathbf { a } d \\mathbf { s } + \\beta \\left( \\epsilon - \\int _ { \\mathbf { s } } d _ { \\mu } ( \\mathbf { s } ) \\mathrm { D } _ { \\mathrm { K L } } \\left( \\pi ( \\cdot | \\mathbf { s } ) | | \\mu ( \\cdot | \\mathbf { s } ) \\right) d \\mathbf { s } \\right) ," + }, + { + "category_id": 13, + "poly": [ + 1109, + 1442, + 1185, + 1442, + 1185, + 1474, + 1109, + 1474 + ], + "score": 0.92, + "latex": "\\pi ( \\mathbf { a } | \\mathbf { s } )" + }, + { + "category_id": 13, + "poly": [ + 472, + 614, + 531, + 614, + 531, + 647, + 472, + 647 + ], + "score": 0.92, + "latex": "J ( \\pi )" + }, + { + "category_id": 13, + "poly": [ + 521, + 895, + 577, + 895, + 577, + 929, + 521, + 929 + ], + "score": 0.92, + "latex": "\\eta ( \\pi )" + }, + { + "category_id": 13, + "poly": [ + 1184, + 1168, + 1240, + 1168, + 1240, + 1202, + 1184, + 1202 + ], + "score": 0.92, + "latex": "\\eta ( \\pi )" + }, + { + "category_id": 14, + "poly": [ + 597, + 849, + 1101, + 849, + 1101, + 892, + 597, + 892 + ], + "score": 0.92, + "latex": "\\hat { \\eta } ( \\pi ) = \\mathbb { E } _ { \\mathbf { s } \\sim d _ { \\mu } ( \\mathbf { s } ) } \\mathbb { E } _ { \\mathbf { a } \\sim \\pi ( \\mathbf { a } | \\mathbf { s } ) } \\left[ \\mathcal { R } _ { \\mathbf { s } , \\mathbf { a } } ^ { \\mu } - V ^ { \\mu } ( \\mathbf { s } ) \\right] ." + }, + { + "category_id": 13, + "poly": [ + 603, + 813, + 658, + 813, + 658, + 847, + 603, + 847 + ], + "score": 0.91, + "latex": "\\hat { \\eta } ( \\pi )" + }, + { + "category_id": 13, + "poly": [ + 693, + 813, + 748, + 813, + 748, + 847, + 693, + 847 + ], + "score": 0.91, + "latex": "\\eta ( \\pi )" + }, + { + "category_id": 13, + "poly": [ + 674, + 1169, + 729, + 1169, + 729, + 1202, + 674, + 1202 + ], + "score": 0.91, + "latex": "\\hat { \\eta } ( \\pi )" + }, + { + "category_id": 13, + "poly": [ + 364, + 895, + 420, + 895, + 420, + 929, + 364, + 929 + ], + "score": 0.91, + "latex": "\\hat { \\eta } ( \\pi )" + }, + { + "category_id": 13, + "poly": [ + 356, + 1585, + 413, + 1585, + 413, + 1618, + 356, + 1618 + ], + "score": 0.91, + "latex": "Z ( \\mathbf { s } )" + }, + { + "category_id": 13, + "poly": [ + 1295, + 1846, + 1369, + 1846, + 1369, + 1878, + 1295, + 1878 + ], + "score": 0.9, + "latex": "V ^ { \\mu } ( \\mathbf { s } )" + }, + { + "category_id": 13, + "poly": [ + 907, + 1934, + 1364, + 1934, + 1364, + 1976, + 907, + 1976 + ], + "score": 0.89, + "latex": "\\begin{array} { r } { \\pi ( \\mathbf { a } | \\mathbf { s } ) ^ { \\cdot } = \\frac { 1 } { Z ( \\mathbf { s } ) } \\mathrm { e x p } \\left( \\left( \\mathcal { R } _ { \\mathbf { s } , \\mathbf { a } } ^ { \\mu } - V ^ { \\mu } ( \\grave { \\mathbf { s } } ) \\right) / \\beta \\right) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 550, + 365, + 601, + 365, + 601, + 397, + 550, + 397 + ], + "score": 0.88, + "latex": "\\{ \\tau _ { i } \\}" + }, + { + "category_id": 13, + "poly": [ + 1286, + 752, + 1352, + 752, + 1352, + 785, + 1286, + 785 + ], + "score": 0.87, + "latex": "d _ { \\pi } ( \\mathbf { s } )" + }, + { + "category_id": 13, + "poly": [ + 417, + 1648, + 448, + 1648, + 448, + 1673, + 417, + 1673 + ], + "score": 0.87, + "latex": "\\pi ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 465, + 1473, + 496, + 1473, + 496, + 1500, + 465, + 1500 + ], + "score": 0.86, + "latex": "\\pi ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 485, + 334, + 673, + 334, + 673, + 364, + 485, + 364 + ], + "score": 0.85, + "latex": "k = 1 , . . . , k _ { \\mathrm { m a x } } \\mathbf { \\epsilon } \\mathrm { ~ }" + }, + { + "category_id": 13, + "poly": [ + 371, + 1443, + 392, + 1443, + 392, + 1473, + 371, + 1473 + ], + "score": 0.85, + "latex": "\\beta" + }, + { + "category_id": 13, + "poly": [ + 414, + 932, + 435, + 932, + 435, + 958, + 414, + 958 + ], + "score": 0.84, + "latex": "\\mu" + }, + { + "category_id": 13, + "poly": [ + 745, + 369, + 777, + 369, + 777, + 394, + 745, + 394 + ], + "score": 0.8, + "latex": "\\pi _ { k }" + }, + { + "category_id": 13, + "poly": [ + 1327, + 1144, + 1347, + 1144, + 1347, + 1169, + 1327, + 1169 + ], + "score": 0.8, + "latex": "\\mu" + }, + { + "category_id": 13, + "poly": [ + 1082, + 819, + 1102, + 819, + 1102, + 846, + 1082, + 846 + ], + "score": 0.8, + "latex": "\\mu" + }, + { + "category_id": 13, + "poly": [ + 810, + 2010, + 829, + 2010, + 829, + 2035, + 810, + 2035 + ], + "score": 0.8, + "latex": "\\mu" + }, + { + "category_id": 13, + "poly": [ + 343, + 931, + 363, + 931, + 363, + 953, + 343, + 953 + ], + "score": 0.8, + "latex": "\\pi" + }, + { + "category_id": 13, + "poly": [ + 927, + 1143, + 947, + 1143, + 947, + 1166, + 927, + 1166 + ], + "score": 0.79, + "latex": "\\pi" + }, + { + "category_id": 13, + "poly": [ + 343, + 277, + 414, + 277, + 414, + 302, + 343, + 302 + ], + "score": 0.78, + "latex": "\\pi _ { 1 } " + }, + { + "category_id": 13, + "poly": [ + 298, + 932, + 316, + 932, + 316, + 958, + 298, + 958 + ], + "score": 0.78, + "latex": "\\eta" + }, + { + "category_id": 13, + "poly": [ + 1353, + 1590, + 1374, + 1590, + 1374, + 1612, + 1353, + 1612 + ], + "score": 0.78, + "latex": "\\pi" + }, + { + "category_id": 13, + "poly": [ + 344, + 303, + 428, + 303, + 428, + 332, + 344, + 332 + ], + "score": 0.74, + "latex": "\\mathcal { D } \\emptyset" + }, + { + "category_id": 13, + "poly": [ + 812, + 788, + 832, + 788, + 832, + 810, + 812, + 810 + ], + "score": 0.73, + "latex": "\\pi" + }, + { + "category_id": 14, + "poly": [ + 368, + 393, + 1121, + 393, + 1121, + 505, + 368, + 505 + ], + "score": 0.73, + "latex": "\\begin{array} { r l } & { V _ { k } ^ { \\mathcal { D } } \\gets \\arg \\operatorname* { m i n } _ { V } \\mathbb { E } _ { { \\mathbf s } , { \\mathbf a } \\sim \\mathcal { D } } [ \\big | \\big | { \\mathcal R } _ { { \\mathbf s } , { \\mathbf a } } ^ { \\mathcal { D } } - V ( { \\mathbf s } ) \\big | \\big | ^ { 2 } ] } \\\\ & { \\pi _ { k + 1 } \\arg \\operatorname* { m a x } _ { \\pi } \\mathbb { E } _ { { \\mathbf s } , { \\mathbf a } \\sim \\mathcal { D } } [ \\log \\pi ( { \\mathbf a } | { \\mathbf s } ) { \\exp } ( \\frac { 1 } { \\beta } ( { \\mathcal R } _ { { \\mathbf s } , { \\mathbf a } } ^ { \\mathcal { D } } - V _ { k } ^ { \\mathcal { D } } ( { \\mathbf s } ) ) ) ] } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 298, + 789, + 317, + 789, + 317, + 810, + 298, + 810 + ], + "score": 0.71, + "latex": "\\pi" + }, + { + "category_id": 13, + "poly": [ + 809, + 365, + 836, + 365, + 836, + 391, + 809, + 391 + ], + "score": 0.69, + "latex": "\\mathcal { D }" + }, + { + "category_id": 14, + "poly": [ + 394, + 1678, + 1307, + 1678, + 1307, + 1815, + 394, + 1815 + ], + "score": 0.57, + "latex": "\\begin{array} { r l } { \\underset { \\pi } { \\mathrm { a r g \\ m i n } } \\ : \\ : \\ : \\ : } & { \\mathbb { E } _ { \\mathbf { s } \\sim \\mathcal { D } } \\left[ \\mathrm { D } _ { \\mathbf { K L } } \\left( \\pi ^ { * } ( \\cdot | \\mathbf { s } ) | | \\pi ( \\cdot | \\mathbf { s } ) \\right) \\right] } \\\\ { = \\underset { \\pi } { \\mathrm { a r g \\ m a x } } \\ : \\ : \\ : \\ : } & { \\mathbb { E } _ { \\mathbf { s } \\sim d _ { \\mu } ( \\mathbf { s } ) } \\mathbb { E } _ { \\mathbf { a } \\sim \\mu ( \\mathbf { a } | \\mathbf { s } ) } \\left[ \\log \\pi ( \\mathbf { a } | \\mathbf { s } ) \\mathrm { e x p } \\left( \\frac { 1 } { \\beta } \\left( \\mathcal { R } _ { \\mathbf { s } , \\mathbf { a } } ^ { \\mu } - V ^ { \\mu } ( \\mathbf { s } ) \\right) \\right) \\right] . } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 593, + 1737, + 1299, + 1737, + 1299, + 1814, + 593, + 1814 + ], + "score": 0.57, + "latex": "\\mathbb { E } _ { \\mathbf { s } \\sim d _ { \\mu } ( \\mathbf { s } ) } \\mathbb { E } _ { \\mathbf { a } \\sim \\mu ( \\mathbf { a } | \\mathbf { s } ) } \\left[ \\log \\pi ( \\mathbf { a } | \\mathbf { s } ) \\mathrm { e x p } \\left( \\frac { 1 } { \\beta } \\left( \\mathcal { R } _ { \\mathbf { s } , \\mathbf { a } } ^ { \\mu } - V ^ { \\mu } ( \\mathbf { s } ) \\right) \\right) \\right] ." + }, + { + "category_id": 14, + "poly": [ + 623, + 1680, + 958, + 1680, + 958, + 1719, + 623, + 1719 + ], + "score": 0.54, + "latex": "\\begin{array} { r } { \\mathbb E _ { \\mathbf s \\sim \\mathcal { D } } \\left[ \\operatorname { D } _ { \\mathrm { K L } } \\left( \\boldsymbol { \\pi } ^ { * } ( \\cdot | \\mathbf s ) | | \\boldsymbol { \\pi } ( \\cdot | \\mathbf s ) \\right) \\right] } \\end{array}" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 224.0, + 819.0, + 224.0, + 819.0, + 268.0, + 294.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2118.0, + 838.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 72.0, + 857.0, + 72.0, + 857.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2118.0, + 838.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 857.0, + 73.0, + 857.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1812.0, + 1407.0, + 1812.0, + 1407.0, + 1848.0, + 293.0, + 1848.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1843.0, + 1294.0, + 1843.0, + 1294.0, + 1882.0, + 293.0, + 1882.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1370.0, + 1843.0, + 1406.0, + 1843.0, + 1406.0, + 1882.0, + 1370.0, + 1882.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1873.0, + 1406.0, + 1873.0, + 1406.0, + 1911.0, + 294.0, + 1911.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1904.0, + 1406.0, + 1904.0, + 1406.0, + 1941.0, + 291.0, + 1941.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 285.0, + 1928.0, + 906.0, + 1928.0, + 906.0, + 1984.0, + 285.0, + 1984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1365.0, + 1928.0, + 1411.0, + 1928.0, + 1411.0, + 1984.0, + 1365.0, + 1984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1973.0, + 1405.0, + 1973.0, + 1405.0, + 2008.0, + 294.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2000.0, + 809.0, + 2000.0, + 809.0, + 2040.0, + 295.0, + 2040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 830.0, + 2000.0, + 838.0, + 2000.0, + 838.0, + 2040.0, + 830.0, + 2040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 583.0, + 1404.0, + 583.0, + 1404.0, + 617.0, + 295.0, + 617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 613.0, + 471.0, + 613.0, + 471.0, + 650.0, + 295.0, + 650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 532.0, + 613.0, + 1405.0, + 613.0, + 1405.0, + 650.0, + 532.0, + 650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 642.0, + 1405.0, + 642.0, + 1405.0, + 681.0, + 293.0, + 681.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 672.0, + 1406.0, + 672.0, + 1406.0, + 710.0, + 294.0, + 710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 702.0, + 875.0, + 702.0, + 875.0, + 743.0, + 294.0, + 743.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1582.0, + 355.0, + 1582.0, + 355.0, + 1620.0, + 294.0, + 1620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 414.0, + 1582.0, + 1352.0, + 1582.0, + 1352.0, + 1620.0, + 414.0, + 1620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1375.0, + 1582.0, + 1406.0, + 1582.0, + 1406.0, + 1620.0, + 1375.0, + 1620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1615.0, + 1405.0, + 1615.0, + 1405.0, + 1652.0, + 294.0, + 1652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1646.0, + 416.0, + 1646.0, + 416.0, + 1681.0, + 293.0, + 1681.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 449.0, + 1646.0, + 951.0, + 1646.0, + 951.0, + 1681.0, + 449.0, + 1681.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1244.0, + 1403.0, + 1244.0, + 1403.0, + 1281.0, + 295.0, + 1281.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1275.0, + 1404.0, + 1275.0, + 1404.0, + 1312.0, + 294.0, + 1312.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1306.0, + 738.0, + 1306.0, + 738.0, + 1343.0, + 294.0, + 1343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 892.0, + 363.0, + 892.0, + 363.0, + 931.0, + 292.0, + 931.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 421.0, + 892.0, + 520.0, + 892.0, + 520.0, + 931.0, + 421.0, + 931.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 578.0, + 892.0, + 1407.0, + 892.0, + 1407.0, + 931.0, + 578.0, + 931.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 925.0, + 297.0, + 925.0, + 297.0, + 961.0, + 294.0, + 961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 925.0, + 342.0, + 925.0, + 342.0, + 961.0, + 317.0, + 961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 364.0, + 925.0, + 413.0, + 925.0, + 413.0, + 961.0, + 364.0, + 961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 436.0, + 925.0, + 1410.0, + 925.0, + 1410.0, + 961.0, + 436.0, + 961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 957.0, + 1047.0, + 957.0, + 1047.0, + 990.0, + 295.0, + 990.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1135.0, + 926.0, + 1135.0, + 926.0, + 1173.0, + 294.0, + 1173.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 948.0, + 1135.0, + 1326.0, + 1135.0, + 1326.0, + 1173.0, + 948.0, + 1173.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1348.0, + 1135.0, + 1406.0, + 1135.0, + 1406.0, + 1173.0, + 1348.0, + 1173.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1167.0, + 673.0, + 1167.0, + 673.0, + 1203.0, + 293.0, + 1203.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 730.0, + 1167.0, + 1183.0, + 1167.0, + 1183.0, + 1203.0, + 730.0, + 1203.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1241.0, + 1167.0, + 1405.0, + 1167.0, + 1405.0, + 1203.0, + 1241.0, + 1203.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1197.0, + 1155.0, + 1197.0, + 1155.0, + 1230.0, + 293.0, + 1230.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 752.0, + 1285.0, + 752.0, + 1285.0, + 786.0, + 294.0, + 786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1353.0, + 752.0, + 1404.0, + 752.0, + 1404.0, + 786.0, + 1353.0, + 786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 783.0, + 297.0, + 783.0, + 297.0, + 816.0, + 293.0, + 816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 783.0, + 811.0, + 783.0, + 811.0, + 816.0, + 318.0, + 816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 833.0, + 783.0, + 1406.0, + 783.0, + 1406.0, + 816.0, + 833.0, + 816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 813.0, + 602.0, + 813.0, + 602.0, + 849.0, + 294.0, + 849.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 659.0, + 813.0, + 692.0, + 813.0, + 692.0, + 849.0, + 659.0, + 849.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 749.0, + 813.0, + 1081.0, + 813.0, + 1081.0, + 849.0, + 749.0, + 849.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1103.0, + 813.0, + 1115.0, + 813.0, + 1115.0, + 849.0, + 1103.0, + 849.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1438.0, + 370.0, + 1438.0, + 370.0, + 1478.0, + 295.0, + 1478.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1438.0, + 844.0, + 1438.0, + 844.0, + 1478.0, + 393.0, + 1478.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 935.0, + 1438.0, + 1108.0, + 1438.0, + 1108.0, + 1478.0, + 935.0, + 1478.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1186.0, + 1438.0, + 1404.0, + 1438.0, + 1404.0, + 1478.0, + 1186.0, + 1478.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1468.0, + 464.0, + 1468.0, + 464.0, + 1511.0, + 293.0, + 1511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 497.0, + 1468.0, + 1136.0, + 1468.0, + 1136.0, + 1511.0, + 497.0, + 1511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 309.0, + 267.0, + 342.0, + 267.0, + 342.0, + 308.0, + 309.0, + 308.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 415.0, + 267.0, + 582.0, + 267.0, + 582.0, + 308.0, + 415.0, + 308.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 301.0, + 343.0, + 301.0, + 343.0, + 331.0, + 307.0, + 331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 429.0, + 301.0, + 432.0, + 301.0, + 432.0, + 331.0, + 429.0, + 331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 303.0, + 329.0, + 484.0, + 329.0, + 484.0, + 369.0, + 303.0, + 369.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 674.0, + 329.0, + 703.0, + 329.0, + 703.0, + 369.0, + 674.0, + 369.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 364.0, + 343.0, + 364.0, + 343.0, + 395.0, + 308.0, + 395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 361.0, + 360.0, + 549.0, + 360.0, + 549.0, + 397.0, + 361.0, + 397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 602.0, + 360.0, + 744.0, + 360.0, + 744.0, + 397.0, + 602.0, + 397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 778.0, + 360.0, + 808.0, + 360.0, + 808.0, + 397.0, + 778.0, + 397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 837.0, + 360.0, + 840.0, + 360.0, + 840.0, + 397.0, + 837.0, + 397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 406.0, + 341.0, + 406.0, + 341.0, + 440.0, + 308.0, + 440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 358.0, + 392.0, + 367.0, + 392.0, + 367.0, + 451.0, + 358.0, + 451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 439.0, + 367.0, + 439.0, + 367.0, + 507.0, + 295.0, + 507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 306.0, + 494.0, + 438.0, + 494.0, + 438.0, + 534.0, + 306.0, + 534.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 2, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 285, + 1405, + 285, + 1405, + 693, + 297, + 693 + ], + "score": 0.985 + }, + { + "category_id": 1, + "poly": [ + 297, + 1775, + 1405, + 1775, + 1405, + 2035, + 297, + 2035 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 296, + 704, + 1406, + 704, + 1406, + 904, + 296, + 904 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 299, + 1443, + 1403, + 1443, + 1403, + 1569, + 299, + 1569 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 299, + 1214, + 1404, + 1214, + 1404, + 1298, + 299, + 1298 + ], + "score": 0.954 + }, + { + "category_id": 8, + "poly": [ + 508, + 1582, + 1189, + 1582, + 1189, + 1650, + 508, + 1650 + ], + "score": 0.947 + }, + { + "category_id": 8, + "poly": [ + 448, + 907, + 1251, + 907, + 1251, + 990, + 448, + 990 + ], + "score": 0.944 + }, + { + "category_id": 1, + "poly": [ + 298, + 1000, + 1401, + 1000, + 1401, + 1065, + 298, + 1065 + ], + "score": 0.944 + }, + { + "category_id": 8, + "poly": [ + 309, + 1309, + 1392, + 1309, + 1392, + 1404, + 309, + 1404 + ], + "score": 0.942 + }, + { + "category_id": 1, + "poly": [ + 298, + 1661, + 1254, + 1661, + 1254, + 1718, + 298, + 1718 + ], + "score": 0.932 + }, + { + "category_id": 8, + "poly": [ + 613, + 1164, + 1077, + 1164, + 1077, + 1204, + 613, + 1204 + ], + "score": 0.916 + }, + { + "category_id": 0, + "poly": [ + 300, + 1735, + 692, + 1735, + 692, + 1768, + 300, + 1768 + ], + "score": 0.912 + }, + { + "category_id": 8, + "poly": [ + 563, + 1073, + 1132, + 1073, + 1132, + 1159, + 563, + 1159 + ], + "score": 0.912 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1167, + 1401, + 1167, + 1401, + 1198, + 1351, + 1198 + ], + "score": 0.898 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1590, + 1400, + 1590, + 1400, + 1621, + 1351, + 1621 + ], + "score": 0.898 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1402, + 1400, + 1402, + 1400, + 1430, + 1352, + 1430 + ], + "score": 0.89 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1099, + 1400, + 1099, + 1400, + 1129, + 1351, + 1129 + ], + "score": 0.887 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 854, + 75, + 854, + 105, + 298, + 105 + ], + "score": 0.887 + }, + { + "category_id": 9, + "poly": [ + 1351, + 928, + 1400, + 928, + 1400, + 959, + 1351, + 959 + ], + "score": 0.882 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 858, + 2088, + 858, + 2111, + 840, + 2111 + ], + "score": 0.78 + }, + { + "category_id": 0, + "poly": [ + 297, + 229, + 972, + 229, + 972, + 261, + 297, + 261 + ], + "score": 0.771 + }, + { + "category_id": 1, + "poly": [ + 297, + 229, + 972, + 229, + 972, + 261, + 297, + 261 + ], + "score": 0.131 + }, + { + "category_id": 13, + "poly": [ + 536, + 1662, + 824, + 1662, + 824, + 1719, + 536, + 1719 + ], + "score": 0.94, + "latex": "\\begin{array} { r } { \\bar { V } ( \\mathbf { s } ) = \\frac { \\sum _ { i } w _ { i } d _ { \\pi _ { i } } ( \\mathbf { s } ) V ^ { \\pi _ { i } } ( \\mathbf { s } ) } { \\sum _ { j } w _ { j } d _ { \\pi _ { j } } ( \\mathbf { s } ) } } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 509, + 1579, + 1190, + 1579, + 1190, + 1651, + 509, + 1651 + ], + "score": 0.94, + "latex": "\\bar { V } = \\underset { V } { \\arg \\operatorname* { m i n } } \\sum _ { i } w _ { i } \\mathbb { E } _ { { \\mathbf s } , \\sim d _ { \\pi _ { i } } ( { \\mathbf s } ) , { \\mathbf a } \\sim \\pi _ { i } ( { \\mathbf a } | { \\mathbf s } ) } \\left[ | | \\mathcal { R } _ { { \\mathbf s } , { \\mathbf a } } ^ { \\pi _ { i } } - V ( { \\mathbf s } ) | | ^ { 2 } \\right] ." + }, + { + "category_id": 13, + "poly": [ + 1052, + 591, + 1320, + 591, + 1320, + 633, + 1052, + 633 + ], + "score": 0.94, + "latex": "\\begin{array} { r } { \\mu _ { k } ( \\tau ) = \\sum _ { i = 1 } ^ { k } w _ { i } \\pi _ { i } ( \\tau ) } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 561, + 1066, + 1135, + 1066, + 1135, + 1207, + 561, + 1207 + ], + "score": 0.93, + "latex": "\\begin{array} { r l } & { \\underset { \\pi } { \\arg \\operatorname* { m a x } } \\sum _ { i = 1 } ^ { k } w _ { i } \\left( \\mathbb { E } _ { \\mathbf { s } \\sim d _ { \\pi _ { i } } ( \\mathbf { s } ) } \\mathbb { E } _ { \\mathbf { a } \\sim \\pi ( \\mathbf { a } | \\mathbf { s } ) } \\left[ A ^ { \\pi _ { i } } ( \\mathbf { s } , \\mathbf { a } ) \\right] \\right) } \\\\ & { \\quad \\mathbf { s } . \\mathbf { t } . \\quad \\mathbb { E } _ { \\mathbf { s } \\sim d _ { \\mu } ( \\mathbf { s } ) } \\left[ \\operatorname { D } _ { \\mathrm { K L } } \\left( \\pi ( \\cdot | \\mathbf { s } ) | | \\mu ( \\cdot | \\mathbf { s } ) \\right) \\right] \\leq \\epsilon , } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 309, + 1307, + 1387, + 1307, + 1387, + 1404, + 309, + 1404 + ], + "score": 0.93, + "latex": "\\arg \\operatorname* { m a x } _ { \\pi } \\sum _ { i = 1 } ^ { k } w _ { i } \\mathbb { E } _ { \\mathbf { s } \\sim d _ { \\pi _ { i } } ( \\mathbf { s } ) } \\mathbb { E } _ { \\mathbf { a } \\sim \\pi _ { i } ( \\mathbf { a } | \\mathbf { s } ) } \\left[ \\log \\pi ( \\mathbf { a } | \\mathbf { s } ) \\mathrm { e x p } \\left( \\frac { 1 } { \\beta } \\left( \\mathcal { R } _ { \\mathbf { s } , \\mathbf { a } } ^ { \\pi _ { i } } - \\frac { \\sum _ { j } w _ { j } d _ { \\pi _ { j } } ( \\mathbf { s } ) V ^ { \\pi _ { j } } ( \\mathbf { s } ) } { \\sum _ { j } w _ { j } d _ { \\pi _ { j } } ( \\mathbf { s } ) } \\right) \\right) \\right] ," + }, + { + "category_id": 13, + "poly": [ + 976, + 531, + 1129, + 531, + 1129, + 565, + 976, + 565 + ], + "score": 0.93, + "latex": "\\{ \\pi _ { 1 } , \\cdots , \\pi _ { k } \\}" + }, + { + "category_id": 13, + "poly": [ + 374, + 1001, + 687, + 1001, + 687, + 1036, + 374, + 1036 + ], + "score": 0.93, + "latex": "A ^ { \\pi _ { i } } ( \\mathbf { s } , \\mathbf { a } ) = \\mathcal { R } _ { \\mathbf { s } , \\mathbf { a } } ^ { \\pi _ { i } } - V ^ { \\pi _ { i } } ( \\mathbf { s } )" + }, + { + "category_id": 13, + "poly": [ + 298, + 628, + 482, + 628, + 482, + 662, + 298, + 662 + ], + "score": 0.93, + "latex": "\\pi _ { i } ( \\tau ) = p ( \\tau | \\pi _ { i } )" + }, + { + "category_id": 13, + "poly": [ + 863, + 797, + 1238, + 797, + 1238, + 838, + 863, + 838 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { \\mu ( \\mathbf { s } , \\mathbf { a } ) = \\sum _ { i = 1 } ^ { k } w _ { i } d _ { \\pi _ { i } } ( \\mathbf { s } ) \\pi _ { i } ( \\mathbf { a } | \\mathbf { s } ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 371, + 1214, + 782, + 1214, + 782, + 1271, + 371, + 1271 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { \\mu ( \\mathbf { a } | \\mathbf { s } ) = \\frac { \\mu ( \\mathbf { s } , \\mathbf { a } ) } { d _ { \\mu } ( \\mathbf { s } ) } = \\frac { \\sum _ { i } w _ { i } d _ { \\pi _ { i } } ( \\mathbf { s } ) \\pi _ { i } ( \\mathbf { a } | \\mathbf { s } ) } { \\sum _ { j } w _ { j } d _ { \\pi _ { j } } ( \\mathbf { s } ) } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 298, + 349, + 497, + 349, + 497, + 381, + 298, + 381 + ], + "score": 0.92, + "latex": "\\mu ( \\mathbf { a } | \\mathbf { s } ) = \\pi _ { k } ( \\mathbf { a } | \\mathbf { s } )" + }, + { + "category_id": 14, + "poly": [ + 449, + 898, + 1248, + 898, + 1248, + 991, + 449, + 991 + ], + "score": 0.92, + "latex": "\\eta ( \\pi ) = J ( \\pi ) - \\sum _ { i } w _ { i } J ( \\pi _ { i } ) = \\mathbb { E } _ { \\mathbf { s } \\sim d _ { \\pi } ( \\mathbf { s } ) } \\mathbb { E } _ { \\mathbf { a } \\sim \\pi ( \\mathbf { a } | \\mathbf { s } ) } \\left[ \\sum _ { i } w _ { i } A ^ { \\pi _ { i } } ( \\mathbf { s } , \\mathbf { a } ) \\right] ," + }, + { + "category_id": 13, + "poly": [ + 678, + 835, + 953, + 835, + 953, + 877, + 678, + 877 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { d _ { \\mu } ( \\mathbf { s } ) = \\sum _ { i = 1 } ^ { k } w _ { i } d _ { \\pi _ { i } } ( \\mathbf { s } ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1025, + 287, + 1100, + 287, + 1100, + 321, + 1025, + 321 + ], + "score": 0.92, + "latex": "\\mu ( \\mathbf { a } | \\mathbf { s } )" + }, + { + "category_id": 13, + "poly": [ + 794, + 1842, + 850, + 1842, + 850, + 1882, + 794, + 1882 + ], + "score": 0.92, + "latex": "\\mathcal { R } _ { \\mathbf { s } , \\mathbf { a } } ^ { \\mathcal { D } }" + }, + { + "category_id": 13, + "poly": [ + 1019, + 1806, + 1075, + 1806, + 1075, + 1844, + 1019, + 1844 + ], + "score": 0.91, + "latex": "\\mathcal { R } _ { \\mathbf { s } , \\mathbf { a } } ^ { \\mathcal { D } }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1534, + 357, + 1534, + 357, + 1570, + 298, + 1570 + ], + "score": 0.89, + "latex": "\\bar { V } ( \\mathbf { s } )" + }, + { + "category_id": 13, + "poly": [ + 1072, + 1946, + 1108, + 1946, + 1108, + 1973, + 1072, + 1973 + ], + "score": 0.86, + "latex": "\\sigma _ { A }" + }, + { + "category_id": 13, + "poly": [ + 467, + 664, + 499, + 664, + 499, + 689, + 467, + 689 + ], + "score": 0.86, + "latex": "w _ { i }" + }, + { + "category_id": 13, + "poly": [ + 1126, + 635, + 1154, + 635, + 1154, + 659, + 1126, + 659 + ], + "score": 0.85, + "latex": "\\pi _ { i }" + }, + { + "category_id": 13, + "poly": [ + 883, + 505, + 916, + 505, + 916, + 531, + 883, + 531 + ], + "score": 0.85, + "latex": "\\pi _ { k }" + }, + { + "category_id": 13, + "poly": [ + 1205, + 1878, + 1265, + 1878, + 1265, + 1916, + 1205, + 1916 + ], + "score": 0.84, + "latex": "V _ { k - 1 } ^ { \\mathcal { D } }" + }, + { + "category_id": 13, + "poly": [ + 894, + 664, + 922, + 664, + 922, + 689, + 894, + 689 + ], + "score": 0.84, + "latex": "\\pi _ { i }" + }, + { + "category_id": 13, + "poly": [ + 1004, + 1913, + 1025, + 1913, + 1025, + 1944, + 1004, + 1944 + ], + "score": 0.84, + "latex": "\\beta" + }, + { + "category_id": 13, + "poly": [ + 509, + 1944, + 531, + 1944, + 531, + 1974, + 509, + 1974 + ], + "score": 0.83, + "latex": "\\beta" + }, + { + "category_id": 13, + "poly": [ + 1133, + 1446, + 1160, + 1446, + 1160, + 1472, + 1133, + 1472 + ], + "score": 0.81, + "latex": "\\mathcal { D }" + }, + { + "category_id": 13, + "poly": [ + 706, + 808, + 726, + 808, + 726, + 835, + 706, + 835 + ], + "score": 0.8, + "latex": "\\mu" + }, + { + "category_id": 13, + "poly": [ + 626, + 350, + 644, + 350, + 644, + 376, + 626, + 376 + ], + "score": 0.79, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 936, + 635, + 955, + 635, + 955, + 656, + 936, + 656 + ], + "score": 0.77, + "latex": "\\tau" + }, + { + "category_id": 13, + "poly": [ + 297, + 532, + 322, + 532, + 322, + 559, + 297, + 559 + ], + "score": 0.77, + "latex": "\\mathcal { D }" + }, + { + "category_id": 13, + "poly": [ + 859, + 563, + 884, + 563, + 884, + 589, + 859, + 589 + ], + "score": 0.76, + "latex": "\\mathcal { D }" + }, + { + "category_id": 13, + "poly": [ + 922, + 1844, + 999, + 1844, + 999, + 1877, + 922, + 1877 + ], + "score": 0.72, + "latex": "\\mathrm { T D } ( \\lambda )" + }, + { + "category_id": 13, + "poly": [ + 564, + 1881, + 639, + 1881, + 639, + 1913, + 564, + 1913 + ], + "score": 0.66, + "latex": "\\mathrm { T D } ( \\lambda )" + }, + { + "category_id": 13, + "poly": [ + 383, + 1035, + 405, + 1035, + 405, + 1059, + 383, + 1059 + ], + "score": 0.31, + "latex": "\\mathbf { B }" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1733.0, + 697.0, + 1733.0, + 697.0, + 1771.0, + 293.0, + 1771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 857.0, + 73.0, + 857.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 837.0, + 2086.0, + 861.0, + 2086.0, + 861.0, + 2118.0, + 837.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 227.0, + 975.0, + 227.0, + 975.0, + 265.0, + 293.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 286.0, + 1024.0, + 286.0, + 1024.0, + 324.0, + 292.0, + 324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1101.0, + 286.0, + 1406.0, + 286.0, + 1406.0, + 324.0, + 1101.0, + 324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 318.0, + 1406.0, + 318.0, + 1406.0, + 356.0, + 294.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 498.0, + 349.0, + 625.0, + 349.0, + 625.0, + 383.0, + 498.0, + 383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 645.0, + 349.0, + 1405.0, + 349.0, + 1405.0, + 383.0, + 645.0, + 383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 379.0, + 1406.0, + 379.0, + 1406.0, + 413.0, + 295.0, + 413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 408.0, + 1403.0, + 408.0, + 1403.0, + 443.0, + 295.0, + 443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 439.0, + 1407.0, + 439.0, + 1407.0, + 476.0, + 292.0, + 476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 473.0, + 1406.0, + 473.0, + 1406.0, + 504.0, + 296.0, + 504.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 499.0, + 882.0, + 499.0, + 882.0, + 535.0, + 292.0, + 535.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 917.0, + 499.0, + 1406.0, + 499.0, + 1406.0, + 535.0, + 917.0, + 535.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 528.0, + 296.0, + 528.0, + 296.0, + 568.0, + 292.0, + 568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 528.0, + 975.0, + 528.0, + 975.0, + 568.0, + 323.0, + 568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1130.0, + 528.0, + 1407.0, + 528.0, + 1407.0, + 568.0, + 1130.0, + 568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 561.0, + 858.0, + 561.0, + 858.0, + 599.0, + 294.0, + 599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 885.0, + 561.0, + 1406.0, + 561.0, + 1406.0, + 599.0, + 885.0, + 599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 592.0, + 1051.0, + 592.0, + 1051.0, + 645.0, + 289.0, + 645.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1321.0, + 592.0, + 1411.0, + 592.0, + 1411.0, + 645.0, + 1321.0, + 645.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 483.0, + 629.0, + 935.0, + 629.0, + 935.0, + 664.0, + 483.0, + 664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 956.0, + 629.0, + 1125.0, + 629.0, + 1125.0, + 664.0, + 956.0, + 664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1155.0, + 629.0, + 1408.0, + 629.0, + 1408.0, + 664.0, + 1155.0, + 664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 655.0, + 466.0, + 655.0, + 466.0, + 698.0, + 293.0, + 698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 500.0, + 655.0, + 893.0, + 655.0, + 893.0, + 698.0, + 500.0, + 698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 923.0, + 655.0, + 935.0, + 655.0, + 935.0, + 698.0, + 923.0, + 698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1775.0, + 1405.0, + 1775.0, + 1405.0, + 1813.0, + 294.0, + 1813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1800.0, + 1018.0, + 1800.0, + 1018.0, + 1851.0, + 290.0, + 1851.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1076.0, + 1800.0, + 1412.0, + 1800.0, + 1412.0, + 1851.0, + 1076.0, + 1851.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1839.0, + 793.0, + 1839.0, + 793.0, + 1886.0, + 291.0, + 1886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 851.0, + 1839.0, + 921.0, + 1839.0, + 921.0, + 1886.0, + 851.0, + 1886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1000.0, + 1839.0, + 1408.0, + 1839.0, + 1408.0, + 1886.0, + 1000.0, + 1886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1874.0, + 563.0, + 1874.0, + 563.0, + 1925.0, + 290.0, + 1925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 640.0, + 1874.0, + 1204.0, + 1874.0, + 1204.0, + 1925.0, + 640.0, + 1925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1266.0, + 1874.0, + 1410.0, + 1874.0, + 1410.0, + 1925.0, + 1266.0, + 1925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1911.0, + 1003.0, + 1911.0, + 1003.0, + 1946.0, + 294.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1026.0, + 1911.0, + 1405.0, + 1911.0, + 1405.0, + 1946.0, + 1026.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1941.0, + 508.0, + 1941.0, + 508.0, + 1976.0, + 294.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 532.0, + 1941.0, + 1071.0, + 1941.0, + 1071.0, + 1976.0, + 532.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1109.0, + 1941.0, + 1405.0, + 1941.0, + 1405.0, + 1976.0, + 1109.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1973.0, + 1408.0, + 1973.0, + 1408.0, + 2007.0, + 295.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2002.0, + 1408.0, + 2002.0, + 1408.0, + 2038.0, + 294.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 702.0, + 1404.0, + 702.0, + 1404.0, + 741.0, + 294.0, + 741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 736.0, + 1406.0, + 736.0, + 1406.0, + 773.0, + 295.0, + 773.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 764.0, + 1408.0, + 764.0, + 1408.0, + 803.0, + 293.0, + 803.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 799.0, + 705.0, + 799.0, + 705.0, + 844.0, + 293.0, + 844.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 727.0, + 799.0, + 862.0, + 799.0, + 862.0, + 844.0, + 727.0, + 844.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1239.0, + 799.0, + 1407.0, + 799.0, + 1407.0, + 844.0, + 1239.0, + 844.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 832.0, + 677.0, + 832.0, + 677.0, + 888.0, + 289.0, + 888.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 954.0, + 832.0, + 1409.0, + 832.0, + 1409.0, + 888.0, + 954.0, + 888.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 871.0, + 1117.0, + 871.0, + 1117.0, + 908.0, + 295.0, + 908.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1444.0, + 1132.0, + 1444.0, + 1132.0, + 1480.0, + 294.0, + 1480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1161.0, + 1444.0, + 1408.0, + 1444.0, + 1408.0, + 1480.0, + 1161.0, + 1480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1477.0, + 1407.0, + 1477.0, + 1407.0, + 1510.0, + 294.0, + 1510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1507.0, + 1405.0, + 1507.0, + 1405.0, + 1540.0, + 294.0, + 1540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 358.0, + 1535.0, + 1353.0, + 1535.0, + 1353.0, + 1572.0, + 358.0, + 1572.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 783.0, + 1223.0, + 1404.0, + 1223.0, + 1404.0, + 1258.0, + 783.0, + 1258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1264.0, + 1362.0, + 1264.0, + 1362.0, + 1299.0, + 295.0, + 1299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.25, + 1207.5, + 789.25, + 1207.5, + 789.25, + 1258.5, + 288.25, + 1258.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 287.0, + 990.0, + 373.0, + 990.0, + 373.0, + 1051.0, + 287.0, + 1051.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 688.0, + 990.0, + 1412.0, + 990.0, + 1412.0, + 1051.0, + 688.0, + 1051.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1030.0, + 382.0, + 1030.0, + 382.0, + 1069.0, + 292.0, + 1069.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 406.0, + 1030.0, + 1408.0, + 1030.0, + 1408.0, + 1069.0, + 406.0, + 1069.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 1650.0, + 535.0, + 1650.0, + 535.0, + 1723.0, + 288.0, + 1723.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 825.0, + 1650.0, + 1262.0, + 1650.0, + 1262.0, + 1723.0, + 825.0, + 1723.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 227.0, + 975.0, + 227.0, + 975.0, + 265.0, + 293.0, + 265.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 3, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 872, + 1405, + 872, + 1405, + 1363, + 298, + 1363 + ], + "score": 0.985 + }, + { + "category_id": 1, + "poly": [ + 298, + 1376, + 1405, + 1376, + 1405, + 1713, + 298, + 1713 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 1727, + 1403, + 1727, + 1403, + 2034, + 298, + 2034 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 668, + 1404, + 668, + 1404, + 783, + 298, + 783 + ], + "score": 0.973 + }, + { + "category_id": 3, + "poly": [ + 304, + 238, + 1396, + 238, + 1396, + 574, + 304, + 574 + ], + "score": 0.97 + }, + { + "category_id": 0, + "poly": [ + 300, + 816, + 588, + 816, + 588, + 851, + 300, + 851 + ], + "score": 0.907 + }, + { + "category_id": 4, + "poly": [ + 288, + 587, + 1403, + 587, + 1403, + 650, + 288, + 650 + ], + "score": 0.896 + }, + { + "category_id": 2, + "poly": [ + 298, + 76, + 854, + 76, + 854, + 104, + 298, + 104 + ], + "score": 0.805 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.734 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 853, + 76, + 853, + 104, + 300, + 104 + ], + "score": 0.286 + }, + { + "category_id": 13, + "poly": [ + 444, + 669, + 824, + 669, + 824, + 725, + 444, + 725 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { \\omega _ { \\mathbf { s } , \\mathbf { a } } ^ { D } = \\exp \\Big ( \\frac { 1 } { \\beta } \\left( \\mathcal { R } _ { \\mathbf { s } , \\mathbf { a } } ^ { D } - V ^ { \\mathcal { D } } ( \\mathbf { s } ) \\right) \\Big ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 298, + 747, + 585, + 747, + 585, + 787, + 298, + 787 + ], + "score": 0.91, + "latex": "\\hat { \\omega } _ { \\mathbf { s } , \\mathbf { a } } ^ { \\mathcal { D } } = \\operatorname* { m i n } \\left( \\omega _ { \\mathbf { s } , \\mathbf { a } } ^ { \\mathbf { \\breve { D } } } , \\omega _ { \\operatorname* { m a x } } \\right)" + }, + { + "category_id": 13, + "poly": [ + 775, + 753, + 839, + 753, + 839, + 781, + 775, + 781 + ], + "score": 0.89, + "latex": "\\omega _ { \\mathrm { m a x } }" + }, + { + "category_id": 15, + "poly": [ + 286.0, + 258.0, + 1391.0, + 258.0, + 1391.0, + 375.0, + 286.0, + 375.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 470.0, + 369.0, + 683.0, + 369.0, + 683.0, + 409.0, + 470.0, + 409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1030.0, + 368.0, + 1215.0, + 368.0, + 1215.0, + 409.0, + 1030.0, + 409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 420.0, + 769.0, + 420.0, + 769.0, + 534.0, + 296.0, + 534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 444.0, + 1383.0, + 444.0, + 1383.0, + 542.0, + 839.0, + 542.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 445.0, + 537.0, + 707.0, + 537.0, + 707.0, + 578.0, + 445.0, + 578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1034.0, + 537.0, + 1214.0, + 537.0, + 1214.0, + 582.0, + 1034.0, + 582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 811.0, + 593.0, + 811.0, + 593.0, + 857.0, + 292.0, + 857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 585.0, + 1402.0, + 585.0, + 1402.0, + 621.0, + 295.0, + 621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 617.0, + 1068.0, + 617.0, + 1068.0, + 653.0, + 295.0, + 653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 857.0, + 73.0, + 857.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2085.0, + 861.0, + 2085.0, + 861.0, + 2120.0, + 839.0, + 2120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 856.0, + 73.0, + 856.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 870.0, + 1406.0, + 870.0, + 1406.0, + 909.0, + 292.0, + 909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 903.0, + 1406.0, + 903.0, + 1406.0, + 941.0, + 293.0, + 941.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 935.0, + 1407.0, + 935.0, + 1407.0, + 970.0, + 295.0, + 970.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 966.0, + 1406.0, + 966.0, + 1406.0, + 1001.0, + 295.0, + 1001.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 993.0, + 1405.0, + 993.0, + 1405.0, + 1031.0, + 293.0, + 1031.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1024.0, + 1406.0, + 1024.0, + 1406.0, + 1066.0, + 292.0, + 1066.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1058.0, + 1403.0, + 1058.0, + 1403.0, + 1089.0, + 296.0, + 1089.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1087.0, + 1407.0, + 1087.0, + 1407.0, + 1121.0, + 295.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1118.0, + 1405.0, + 1118.0, + 1405.0, + 1152.0, + 295.0, + 1152.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1148.0, + 1405.0, + 1148.0, + 1405.0, + 1183.0, + 293.0, + 1183.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1177.0, + 1406.0, + 1177.0, + 1406.0, + 1216.0, + 292.0, + 1216.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1209.0, + 1407.0, + 1209.0, + 1407.0, + 1243.0, + 295.0, + 1243.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1239.0, + 1407.0, + 1239.0, + 1407.0, + 1274.0, + 295.0, + 1274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1269.0, + 1405.0, + 1269.0, + 1405.0, + 1303.0, + 295.0, + 1303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1300.0, + 1406.0, + 1300.0, + 1406.0, + 1334.0, + 295.0, + 1334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1331.0, + 1083.0, + 1331.0, + 1083.0, + 1365.0, + 295.0, + 1365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1376.0, + 1407.0, + 1376.0, + 1407.0, + 1412.0, + 293.0, + 1412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1405.0, + 1406.0, + 1405.0, + 1406.0, + 1443.0, + 293.0, + 1443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1438.0, + 1407.0, + 1438.0, + 1407.0, + 1475.0, + 292.0, + 1475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1466.0, + 1406.0, + 1466.0, + 1406.0, + 1507.0, + 292.0, + 1507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1500.0, + 1406.0, + 1500.0, + 1406.0, + 1535.0, + 295.0, + 1535.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1528.0, + 1407.0, + 1528.0, + 1407.0, + 1566.0, + 292.0, + 1566.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1561.0, + 1403.0, + 1561.0, + 1403.0, + 1595.0, + 295.0, + 1595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1593.0, + 1403.0, + 1593.0, + 1403.0, + 1624.0, + 296.0, + 1624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1619.0, + 1408.0, + 1619.0, + 1408.0, + 1655.0, + 293.0, + 1655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1650.0, + 1406.0, + 1650.0, + 1406.0, + 1686.0, + 293.0, + 1686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1681.0, + 1323.0, + 1681.0, + 1323.0, + 1716.0, + 293.0, + 1716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1729.0, + 1404.0, + 1729.0, + 1404.0, + 1761.0, + 296.0, + 1761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1760.0, + 1405.0, + 1760.0, + 1405.0, + 1794.0, + 294.0, + 1794.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1789.0, + 1404.0, + 1789.0, + 1404.0, + 1823.0, + 293.0, + 1823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1818.0, + 1405.0, + 1818.0, + 1405.0, + 1855.0, + 293.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1851.0, + 1404.0, + 1851.0, + 1404.0, + 1883.0, + 294.0, + 1883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1881.0, + 1404.0, + 1881.0, + 1404.0, + 1916.0, + 294.0, + 1916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1911.0, + 1405.0, + 1911.0, + 1405.0, + 1947.0, + 293.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1943.0, + 1407.0, + 1943.0, + 1407.0, + 1978.0, + 294.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1972.0, + 1407.0, + 1972.0, + 1407.0, + 2006.0, + 293.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 2003.0, + 1403.0, + 2003.0, + 1403.0, + 2034.0, + 296.0, + 2034.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 664.0, + 443.0, + 664.0, + 443.0, + 730.0, + 288.0, + 730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 825.0, + 664.0, + 1409.0, + 664.0, + 1409.0, + 730.0, + 825.0, + 730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 711.0, + 1405.0, + 711.0, + 1405.0, + 762.0, + 292.0, + 762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 736.0, + 297.0, + 736.0, + 297.0, + 795.0, + 289.0, + 795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 586.0, + 736.0, + 774.0, + 736.0, + 774.0, + 795.0, + 586.0, + 795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 736.0, + 1183.0, + 736.0, + 1183.0, + 795.0, + 840.0, + 795.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 4, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 845, + 1405, + 845, + 1405, + 1303, + 297, + 1303 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 1385, + 1406, + 1385, + 1406, + 1630, + 298, + 1630 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 1709, + 1406, + 1709, + 1406, + 1954, + 298, + 1954 + ], + "score": 0.976 + }, + { + "category_id": 5, + "poly": [ + 302, + 562, + 1399, + 562, + 1399, + 715, + 302, + 715 + ], + "score": 0.967, + "html": "
TaskTRPOPPODDPGTD3SACLAWERRWRAWR (Ours)
Ant-v22901 ± 854884± 124972 ± 15505997 ± 7657500±3532240± 4971183± 1765372± 163
HalfCheetah-v23302 ± 4287617 ± 18510563 ± 38212324 ± 154916223 ± 9644596± 23312075±3709192 ± 157
Hopper-v21880±3372514± 726855±2822794± 152757±6581830± 553605± 1143498±167
Humanoid-v2552±94668 ± 11534382 ± 4234738±936296±332108±386509±186159 ± 274
LunarLander-v2104± 94121 ± 49185±23229±2
Walker2d-v22765±1685036± 934401± 4704779± 8036210±5112502±388406±645813± 483
" + }, + { + "category_id": 3, + "poly": [ + 297, + 228, + 1403, + 228, + 1403, + 473, + 297, + 473 + ], + "score": 0.96 + }, + { + "category_id": 1, + "poly": [ + 299, + 731, + 1404, + 731, + 1404, + 824, + 299, + 824 + ], + "score": 0.95 + }, + { + "category_id": 2, + "poly": [ + 296, + 1977, + 1405, + 1977, + 1405, + 2034, + 296, + 2034 + ], + "score": 0.938 + }, + { + "category_id": 0, + "poly": [ + 300, + 1332, + 558, + 1332, + 558, + 1366, + 300, + 1366 + ], + "score": 0.896 + }, + { + "category_id": 0, + "poly": [ + 299, + 1669, + 538, + 1669, + 538, + 1698, + 299, + 1698 + ], + "score": 0.886 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 852, + 76, + 852, + 104, + 300, + 104 + ], + "score": 0.869 + }, + { + "category_id": 2, + "poly": [ + 840, + 2089, + 859, + 2089, + 859, + 2112, + 840, + 2112 + ], + "score": 0.799 + }, + { + "category_id": 6, + "poly": [ + 297, + 488, + 1402, + 488, + 1402, + 550, + 297, + 550 + ], + "score": 0.717 + }, + { + "category_id": 4, + "poly": [ + 297, + 488, + 1402, + 488, + 1402, + 550, + 297, + 550 + ], + "score": 0.375 + }, + { + "category_id": 13, + "poly": [ + 1177, + 734, + 1207, + 734, + 1207, + 761, + 1177, + 761 + ], + "score": 0.76, + "latex": "\\pm" + }, + { + "category_id": 13, + "poly": [ + 412, + 608, + 433, + 608, + 433, + 625, + 412, + 625 + ], + "score": 0.33, + "latex": "\\overline { { . \\mathbf { v } 2 } }" + }, + { + "category_id": 13, + "poly": [ + 1290, + 690, + 1379, + 690, + 1379, + 710, + 1290, + 710 + ], + "score": 0.25, + "latex": "\\overline { { 5 8 1 3 \\pm 4 8 3 } }" + }, + { + "category_id": 15, + "poly": [ + 417.0, + 236.0, + 516.0, + 236.0, + 516.0, + 255.0, + 417.0, + 255.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 698.0, + 235.0, + 771.0, + 235.0, + 771.0, + 256.0, + 698.0, + 256.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 959.0, + 236.0, + 1060.0, + 236.0, + 1060.0, + 255.0, + 959.0, + 255.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1239.0, + 236.0, + 1322.0, + 236.0, + 1322.0, + 255.0, + 1239.0, + 255.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 310.0, + 251.0, + 354.0, + 251.0, + 354.0, + 271.0, + 310.0, + 271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 582.0, + 255.0, + 618.0, + 255.0, + 618.0, + 271.0, + 582.0, + 271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1130.0, + 257.0, + 1165.0, + 257.0, + 1165.0, + 274.0, + 1130.0, + 274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 275.0, + 353.0, + 275.0, + 353.0, + 292.0, + 311.0, + 292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 639.0, + 276.0, + 753.0, + 276.0, + 753.0, + 318.0, + 639.0, + 318.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 865.0, + 269.0, + 893.0, + 269.0, + 893.0, + 286.0, + 865.0, + 286.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1104.0, + 277.0, + 1123.0, + 277.0, + 1123.0, + 286.0, + 1104.0, + 286.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1128.0, + 276.0, + 1164.0, + 276.0, + 1164.0, + 297.0, + 1128.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 297.0, + 354.0, + 297.0, + 354.0, + 313.0, + 311.0, + 313.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 581.0, + 291.0, + 620.0, + 291.0, + 620.0, + 311.0, + 581.0, + 311.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 865.0, + 291.0, + 893.0, + 291.0, + 893.0, + 309.0, + 865.0, + 309.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1128.0, + 298.0, + 1164.0, + 298.0, + 1164.0, + 318.0, + 1128.0, + 318.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 313.0, + 353.0, + 313.0, + 353.0, + 356.0, + 296.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 582.0, + 330.0, + 620.0, + 330.0, + 620.0, + 347.0, + 582.0, + 347.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 763.0, + 319.0, + 806.0, + 319.0, + 806.0, + 341.0, + 763.0, + 341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 878.0, + 315.0, + 894.0, + 315.0, + 894.0, + 330.0, + 878.0, + 330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1128.0, + 318.0, + 1165.0, + 318.0, + 1165.0, + 340.0, + 1128.0, + 340.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 339.0, + 354.0, + 339.0, + 354.0, + 359.0, + 316.0, + 359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 863.0, + 337.0, + 893.0, + 337.0, + 893.0, + 355.0, + 863.0, + 355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1128.0, + 340.0, + 1167.0, + 340.0, + 1167.0, + 360.0, + 1128.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 360.0, + 354.0, + 360.0, + 354.0, + 380.0, + 316.0, + 380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 582.0, + 366.0, + 620.0, + 366.0, + 620.0, + 386.0, + 582.0, + 386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 717.0, + 359.0, + 741.0, + 359.0, + 741.0, + 371.0, + 717.0, + 371.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 360.0, + 894.0, + 360.0, + 894.0, + 377.0, + 861.0, + 377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1128.0, + 361.0, + 1165.0, + 361.0, + 1165.0, + 382.0, + 1128.0, + 382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 382.0, + 354.0, + 382.0, + 354.0, + 402.0, + 316.0, + 402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 858.0, + 380.0, + 895.0, + 380.0, + 895.0, + 401.0, + 858.0, + 401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1128.0, + 379.0, + 1166.0, + 379.0, + 1166.0, + 404.0, + 1128.0, + 404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 336.0, + 404.0, + 358.0, + 404.0, + 358.0, + 422.0, + 336.0, + 422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 601.0, + 404.0, + 624.0, + 404.0, + 624.0, + 422.0, + 601.0, + 422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 860.0, + 403.0, + 896.0, + 403.0, + 896.0, + 424.0, + 860.0, + 424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1146.0, + 403.0, + 1173.0, + 403.0, + 1173.0, + 422.0, + 1146.0, + 422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 341.0, + 415.0, + 368.0, + 415.0, + 368.0, + 433.0, + 341.0, + 433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 398.0, + 415.0, + 423.0, + 415.0, + 423.0, + 433.0, + 398.0, + 433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 454.0, + 415.0, + 481.0, + 415.0, + 481.0, + 433.0, + 454.0, + 433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 511.0, + 415.0, + 536.0, + 415.0, + 536.0, + 433.0, + 511.0, + 433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 560.0, + 415.0, + 586.0, + 415.0, + 586.0, + 434.0, + 560.0, + 434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 605.0, + 415.0, + 633.0, + 415.0, + 633.0, + 433.0, + 605.0, + 433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 653.0, + 415.0, + 679.0, + 415.0, + 679.0, + 433.0, + 653.0, + 433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 701.0, + 415.0, + 727.0, + 415.0, + 727.0, + 433.0, + 701.0, + 433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 747.0, + 415.0, + 773.0, + 415.0, + 773.0, + 433.0, + 747.0, + 433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 793.0, + 415.0, + 821.0, + 415.0, + 821.0, + 433.0, + 793.0, + 433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 834.0, + 415.0, + 860.0, + 415.0, + 860.0, + 433.0, + 834.0, + 433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 879.0, + 414.0, + 909.0, + 414.0, + 909.0, + 436.0, + 879.0, + 436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 928.0, + 415.0, + 953.0, + 415.0, + 953.0, + 433.0, + 928.0, + 433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 974.0, + 415.0, + 1001.0, + 415.0, + 1001.0, + 433.0, + 974.0, + 433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1021.0, + 415.0, + 1047.0, + 415.0, + 1047.0, + 433.0, + 1021.0, + 433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1066.0, + 415.0, + 1094.0, + 415.0, + 1094.0, + 433.0, + 1066.0, + 433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1106.0, + 415.0, + 1133.0, + 415.0, + 1133.0, + 433.0, + 1106.0, + 433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1151.0, + 415.0, + 1178.0, + 415.0, + 1178.0, + 433.0, + 1151.0, + 433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1211.0, + 415.0, + 1236.0, + 415.0, + 1236.0, + 433.0, + 1211.0, + 433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1268.0, + 415.0, + 1295.0, + 415.0, + 1295.0, + 433.0, + 1268.0, + 433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1327.0, + 415.0, + 1351.0, + 415.0, + 1351.0, + 433.0, + 1327.0, + 433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1378.0, + 415.0, + 1403.0, + 415.0, + 1403.0, + 433.0, + 1378.0, + 433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 440.0, + 424.0, + 494.0, + 424.0, + 494.0, + 452.0, + 440.0, + 452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 556.0, + 426.0, + 586.0, + 426.0, + 586.0, + 448.0, + 556.0, + 448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 709.0, + 428.0, + 763.0, + 428.0, + 763.0, + 448.0, + 709.0, + 448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 830.0, + 426.0, + 860.0, + 426.0, + 860.0, + 448.0, + 830.0, + 448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1103.0, + 426.0, + 1133.0, + 426.0, + 1133.0, + 448.0, + 1103.0, + 448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1255.0, + 427.0, + 1307.0, + 427.0, + 1307.0, + 448.0, + 1255.0, + 448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1373.0, + 426.0, + 1403.0, + 426.0, + 1403.0, + 448.0, + 1373.0, + 448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 417.0, + 449.0, + 469.0, + 449.0, + 469.0, + 473.0, + 417.0, + 473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 537.0, + 448.0, + 579.0, + 448.0, + 579.0, + 473.0, + 537.0, + 473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 649.0, + 449.0, + 704.0, + 449.0, + 704.0, + 473.0, + 649.0, + 473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 771.0, + 450.0, + 810.0, + 450.0, + 810.0, + 471.0, + 771.0, + 471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 875.0, + 448.0, + 920.0, + 448.0, + 920.0, + 473.0, + 875.0, + 473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 976.0, + 446.0, + 1048.0, + 446.0, + 1048.0, + 473.0, + 976.0, + 473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1101.0, + 449.0, + 1149.0, + 449.0, + 1149.0, + 473.0, + 1101.0, + 473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1222.0, + 450.0, + 1319.0, + 450.0, + 1319.0, + 473.0, + 1222.0, + 473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 549.0, + 289.0, + 574.0, + 289.0, + 574.0, + 307.0, + 549.0, + 307.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 796.0, + 319.5, + 842.0, + 319.5, + 842.0, + 340.5, + 796.0, + 340.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 1970.0, + 1408.0, + 1970.0, + 1408.0, + 2014.0, + 332.0, + 2014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2002.0, + 1406.0, + 2002.0, + 1406.0, + 2039.0, + 293.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1327.0, + 561.0, + 1327.0, + 561.0, + 1372.0, + 291.0, + 1372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1665.0, + 542.0, + 1665.0, + 542.0, + 1703.0, + 294.0, + 1703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 856.0, + 73.0, + 856.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2087.0, + 862.0, + 2087.0, + 862.0, + 2118.0, + 840.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 485.0, + 1407.0, + 485.0, + 1407.0, + 525.0, + 293.0, + 525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 519.0, + 1362.0, + 519.0, + 1362.0, + 552.0, + 293.0, + 552.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 485.0, + 1407.0, + 485.0, + 1407.0, + 525.0, + 293.0, + 525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 519.0, + 1362.0, + 519.0, + 1362.0, + 552.0, + 293.0, + 552.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 846.0, + 1407.0, + 846.0, + 1407.0, + 880.0, + 294.0, + 880.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 876.0, + 1406.0, + 876.0, + 1406.0, + 911.0, + 296.0, + 911.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 905.0, + 1405.0, + 905.0, + 1405.0, + 942.0, + 294.0, + 942.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 937.0, + 1405.0, + 937.0, + 1405.0, + 971.0, + 294.0, + 971.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 966.0, + 1405.0, + 966.0, + 1405.0, + 1003.0, + 294.0, + 1003.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 998.0, + 1405.0, + 998.0, + 1405.0, + 1033.0, + 295.0, + 1033.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1027.0, + 1406.0, + 1027.0, + 1406.0, + 1063.0, + 292.0, + 1063.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1059.0, + 1406.0, + 1059.0, + 1406.0, + 1094.0, + 294.0, + 1094.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1088.0, + 1408.0, + 1088.0, + 1408.0, + 1124.0, + 292.0, + 1124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1119.0, + 1405.0, + 1119.0, + 1405.0, + 1155.0, + 292.0, + 1155.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1146.0, + 1406.0, + 1146.0, + 1406.0, + 1189.0, + 292.0, + 1189.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1179.0, + 1407.0, + 1179.0, + 1407.0, + 1216.0, + 292.0, + 1216.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1210.0, + 1407.0, + 1210.0, + 1407.0, + 1246.0, + 292.0, + 1246.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1242.0, + 1405.0, + 1242.0, + 1405.0, + 1277.0, + 295.0, + 1277.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1273.0, + 1408.0, + 1273.0, + 1408.0, + 1307.0, + 295.0, + 1307.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1384.0, + 1406.0, + 1384.0, + 1406.0, + 1421.0, + 295.0, + 1421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1416.0, + 1407.0, + 1416.0, + 1407.0, + 1450.0, + 295.0, + 1450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1448.0, + 1406.0, + 1448.0, + 1406.0, + 1481.0, + 295.0, + 1481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1478.0, + 1406.0, + 1478.0, + 1406.0, + 1511.0, + 295.0, + 1511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1506.0, + 1406.0, + 1506.0, + 1406.0, + 1542.0, + 293.0, + 1542.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1536.0, + 1408.0, + 1536.0, + 1408.0, + 1572.0, + 293.0, + 1572.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1567.0, + 1409.0, + 1567.0, + 1409.0, + 1603.0, + 293.0, + 1603.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1596.0, + 993.0, + 1596.0, + 993.0, + 1635.0, + 292.0, + 1635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1708.0, + 1407.0, + 1708.0, + 1407.0, + 1745.0, + 293.0, + 1745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1738.0, + 1407.0, + 1738.0, + 1407.0, + 1775.0, + 293.0, + 1775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1770.0, + 1406.0, + 1770.0, + 1406.0, + 1804.0, + 293.0, + 1804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1796.0, + 1407.0, + 1796.0, + 1407.0, + 1838.0, + 292.0, + 1838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1830.0, + 1407.0, + 1830.0, + 1407.0, + 1867.0, + 293.0, + 1867.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1861.0, + 1404.0, + 1861.0, + 1404.0, + 1895.0, + 295.0, + 1895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1891.0, + 1409.0, + 1891.0, + 1409.0, + 1929.0, + 293.0, + 1929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1920.0, + 1057.0, + 1920.0, + 1057.0, + 1957.0, + 293.0, + 1957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 727.0, + 1176.0, + 727.0, + 1176.0, + 769.0, + 292.0, + 769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1208.0, + 727.0, + 1405.0, + 727.0, + 1405.0, + 769.0, + 1208.0, + 769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 762.0, + 1408.0, + 762.0, + 1408.0, + 798.0, + 293.0, + 798.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 793.0, + 862.0, + 793.0, + 862.0, + 827.0, + 295.0, + 827.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 5, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1758, + 1404, + 1758, + 1404, + 2034, + 297, + 2034 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 298, + 1051, + 1405, + 1051, + 1405, + 1387, + 298, + 1387 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 1401, + 1405, + 1401, + 1405, + 1678, + 298, + 1678 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 603, + 1405, + 603, + 1405, + 969, + 298, + 969 + ], + "score": 0.98 + }, + { + "category_id": 4, + "poly": [ + 298, + 449, + 1405, + 449, + 1405, + 570, + 298, + 570 + ], + "score": 0.958 + }, + { + "category_id": 3, + "poly": [ + 296, + 228, + 1398, + 228, + 1398, + 442, + 296, + 442 + ], + "score": 0.944 + }, + { + "category_id": 0, + "poly": [ + 300, + 1712, + 601, + 1712, + 601, + 1743, + 300, + 1743 + ], + "score": 0.902 + }, + { + "category_id": 0, + "poly": [ + 299, + 1005, + 671, + 1005, + 671, + 1035, + 299, + 1035 + ], + "score": 0.902 + }, + { + "category_id": 2, + "poly": [ + 300, + 77, + 851, + 77, + 851, + 103, + 300, + 103 + ], + "score": 0.871 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 857, + 2088, + 857, + 2111, + 841, + 2111 + ], + "score": 0.748 + }, + { + "category_id": 13, + "poly": [ + 872, + 1616, + 948, + 1616, + 948, + 1649, + 872, + 1649 + ], + "score": 0.92, + "latex": "\\mu ( \\mathbf { a } | \\mathbf { s } )" + }, + { + "category_id": 13, + "poly": [ + 665, + 1651, + 686, + 1651, + 686, + 1679, + 665, + 1679 + ], + "score": 0.8, + "latex": "\\mu" + }, + { + "category_id": 13, + "poly": [ + 1292, + 1112, + 1351, + 1112, + 1351, + 1145, + 1292, + 1145 + ], + "score": 0.76, + "latex": "V ( \\mathbf { s } )" + }, + { + "category_id": 13, + "poly": [ + 1254, + 1296, + 1328, + 1296, + 1328, + 1327, + 1254, + 1327 + ], + "score": 0.69, + "latex": "\\mathrm { T D } ( \\lambda )" + }, + { + "category_id": 13, + "poly": [ + 415, + 1464, + 475, + 1464, + 475, + 1493, + 415, + 1493 + ], + "score": 0.46, + "latex": "5 0 0 \\mathrm { k }" + }, + { + "category_id": 13, + "poly": [ + 1128, + 1143, + 1203, + 1143, + 1203, + 1174, + 1128, + 1174 + ], + "score": 0.45, + "latex": "\\mathrm { T D } ( \\lambda )" + }, + { + "category_id": 13, + "poly": [ + 558, + 1790, + 649, + 1790, + 649, + 1819, + 558, + 1819 + ], + "score": 0.34, + "latex": "3 4 \\mathrm { D o F }" + }, + { + "category_id": 13, + "poly": [ + 1257, + 1144, + 1336, + 1144, + 1336, + 1174, + 1257, + 1174 + ], + "score": 0.29, + "latex": "\\mathrm { T D } ( \\lambda ) ," + }, + { + "category_id": 15, + "poly": [ + 295.0, + 447.0, + 1408.0, + 447.0, + 1408.0, + 486.0, + 295.0, + 486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 478.0, + 1405.0, + 478.0, + 1405.0, + 514.0, + 292.0, + 514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 505.0, + 1403.0, + 505.0, + 1403.0, + 547.0, + 293.0, + 547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 537.0, + 698.0, + 537.0, + 698.0, + 577.0, + 293.0, + 577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 382.0, + 236.0, + 534.0, + 236.0, + 534.0, + 255.0, + 382.0, + 255.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 655.0, + 236.0, + 792.0, + 236.0, + 792.0, + 255.0, + 655.0, + 255.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 920.0, + 236.0, + 1104.0, + 236.0, + 1104.0, + 255.0, + 920.0, + 255.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1195.0, + 236.0, + 1362.0, + 236.0, + 1362.0, + 255.0, + 1195.0, + 255.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1130.0, + 247.0, + 1164.0, + 247.0, + 1164.0, + 264.0, + 1130.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 574.0, + 258.0, + 610.0, + 258.0, + 610.0, + 279.0, + 574.0, + 279.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1129.0, + 269.0, + 1164.0, + 269.0, + 1164.0, + 286.0, + 1129.0, + 286.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 309.0, + 276.0, + 344.0, + 276.0, + 344.0, + 293.0, + 309.0, + 293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 574.0, + 279.0, + 610.0, + 279.0, + 610.0, + 299.0, + 574.0, + 299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 862.0, + 276.0, + 897.0, + 276.0, + 897.0, + 293.0, + 862.0, + 293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 574.0, + 298.0, + 610.0, + 298.0, + 610.0, + 319.0, + 574.0, + 319.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1128.0, + 287.0, + 1164.0, + 287.0, + 1164.0, + 311.0, + 1128.0, + 311.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 307.0, + 345.0, + 307.0, + 345.0, + 358.0, + 296.0, + 358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 506.0, + 339.0, + 569.0, + 339.0, + 569.0, + 358.0, + 506.0, + 358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 574.0, + 319.0, + 610.0, + 319.0, + 610.0, + 361.0, + 574.0, + 361.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 850.0, + 307.0, + 898.0, + 307.0, + 898.0, + 357.0, + 850.0, + 357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 999.0, + 336.0, + 1027.0, + 336.0, + 1027.0, + 348.0, + 999.0, + 348.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1056.0, + 329.0, + 1102.0, + 329.0, + 1102.0, + 358.0, + 1056.0, + 358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1127.0, + 309.0, + 1166.0, + 309.0, + 1166.0, + 353.0, + 1127.0, + 353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 369.0, + 346.0, + 369.0, + 346.0, + 390.0, + 307.0, + 390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 506.0, + 348.0, + 568.0, + 348.0, + 568.0, + 409.0, + 506.0, + 409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 574.0, + 361.0, + 610.0, + 361.0, + 610.0, + 402.0, + 574.0, + 402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 369.0, + 898.0, + 369.0, + 898.0, + 390.0, + 861.0, + 390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1054.0, + 352.0, + 1124.0, + 352.0, + 1124.0, + 410.0, + 1054.0, + 410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1127.0, + 357.0, + 1165.0, + 357.0, + 1165.0, + 398.0, + 1127.0, + 398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 405.0, + 359.0, + 405.0, + 359.0, + 431.0, + 329.0, + 431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 389.0, + 412.0, + 415.0, + 412.0, + 415.0, + 432.0, + 389.0, + 432.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 446.0, + 414.0, + 471.0, + 414.0, + 471.0, + 432.0, + 446.0, + 432.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 503.0, + 412.0, + 529.0, + 412.0, + 529.0, + 432.0, + 503.0, + 432.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 545.0, + 409.0, + 582.0, + 409.0, + 582.0, + 448.0, + 545.0, + 448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 593.0, + 405.0, + 624.0, + 405.0, + 624.0, + 432.0, + 593.0, + 432.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 654.0, + 414.0, + 680.0, + 414.0, + 680.0, + 432.0, + 654.0, + 432.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 713.0, + 414.0, + 738.0, + 414.0, + 738.0, + 432.0, + 713.0, + 432.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 769.0, + 414.0, + 794.0, + 414.0, + 794.0, + 432.0, + 769.0, + 432.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 817.0, + 412.0, + 847.0, + 412.0, + 847.0, + 434.0, + 817.0, + 434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 881.0, + 405.0, + 911.0, + 405.0, + 911.0, + 432.0, + 881.0, + 432.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 942.0, + 414.0, + 968.0, + 414.0, + 968.0, + 432.0, + 942.0, + 432.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 999.0, + 414.0, + 1026.0, + 414.0, + 1026.0, + 432.0, + 999.0, + 432.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1056.0, + 412.0, + 1082.0, + 412.0, + 1082.0, + 432.0, + 1056.0, + 432.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1099.0, + 410.0, + 1136.0, + 410.0, + 1136.0, + 448.0, + 1099.0, + 448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1148.0, + 405.0, + 1178.0, + 405.0, + 1178.0, + 432.0, + 1148.0, + 432.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1209.0, + 412.0, + 1235.0, + 412.0, + 1235.0, + 432.0, + 1209.0, + 432.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1266.0, + 412.0, + 1291.0, + 412.0, + 1291.0, + 432.0, + 1266.0, + 432.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1323.0, + 412.0, + 1349.0, + 412.0, + 1349.0, + 432.0, + 1323.0, + 432.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1367.0, + 410.0, + 1402.0, + 410.0, + 1402.0, + 448.0, + 1367.0, + 448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 433.0, + 426.0, + 484.0, + 426.0, + 484.0, + 445.0, + 433.0, + 445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 817.0, + 426.0, + 844.0, + 426.0, + 844.0, + 444.0, + 817.0, + 444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 986.0, + 426.0, + 1037.0, + 426.0, + 1037.0, + 445.0, + 986.0, + 445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 366.0, + 319.5, + 581.0, + 319.5, + 581.0, + 359.0, + 366.0, + 359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 922.0, + 340.5, + 958.0, + 340.5, + 958.0, + 357.5, + 922.0, + 357.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1709.0, + 606.0, + 1709.0, + 606.0, + 1748.0, + 294.0, + 1748.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1004.0, + 674.0, + 1004.0, + 674.0, + 1039.0, + 295.0, + 1039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 70.0, + 857.0, + 70.0, + 857.0, + 109.0, + 295.0, + 109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2086.0, + 860.0, + 2086.0, + 860.0, + 2118.0, + 839.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1760.0, + 1404.0, + 1760.0, + 1404.0, + 1793.0, + 295.0, + 1793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1790.0, + 557.0, + 1790.0, + 557.0, + 1823.0, + 296.0, + 1823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 650.0, + 1790.0, + 1405.0, + 1790.0, + 1405.0, + 1823.0, + 650.0, + 1823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1820.0, + 1406.0, + 1820.0, + 1406.0, + 1857.0, + 294.0, + 1857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1849.0, + 1406.0, + 1849.0, + 1406.0, + 1889.0, + 294.0, + 1889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1879.0, + 1405.0, + 1879.0, + 1405.0, + 1917.0, + 292.0, + 1917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1909.0, + 1405.0, + 1909.0, + 1405.0, + 1948.0, + 292.0, + 1948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1940.0, + 1405.0, + 1940.0, + 1405.0, + 1978.0, + 292.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1972.0, + 1405.0, + 1972.0, + 1405.0, + 2008.0, + 295.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2002.0, + 1314.0, + 2002.0, + 1314.0, + 2037.0, + 294.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1049.0, + 1405.0, + 1049.0, + 1405.0, + 1086.0, + 293.0, + 1086.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1079.0, + 1408.0, + 1079.0, + 1408.0, + 1119.0, + 292.0, + 1119.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1112.0, + 1291.0, + 1112.0, + 1291.0, + 1147.0, + 295.0, + 1147.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1352.0, + 1112.0, + 1406.0, + 1112.0, + 1406.0, + 1147.0, + 1352.0, + 1147.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1142.0, + 1127.0, + 1142.0, + 1127.0, + 1177.0, + 295.0, + 1177.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1204.0, + 1142.0, + 1256.0, + 1142.0, + 1256.0, + 1177.0, + 1204.0, + 1177.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1337.0, + 1142.0, + 1405.0, + 1142.0, + 1405.0, + 1177.0, + 1337.0, + 1177.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1173.0, + 1405.0, + 1173.0, + 1405.0, + 1208.0, + 295.0, + 1208.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1203.0, + 1405.0, + 1203.0, + 1405.0, + 1240.0, + 293.0, + 1240.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1235.0, + 1405.0, + 1235.0, + 1405.0, + 1270.0, + 295.0, + 1270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1265.0, + 1403.0, + 1265.0, + 1403.0, + 1300.0, + 295.0, + 1300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1296.0, + 1253.0, + 1296.0, + 1253.0, + 1330.0, + 295.0, + 1330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1329.0, + 1296.0, + 1405.0, + 1296.0, + 1405.0, + 1330.0, + 1329.0, + 1330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1324.0, + 1408.0, + 1324.0, + 1408.0, + 1361.0, + 292.0, + 1361.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1353.0, + 1409.0, + 1353.0, + 1409.0, + 1391.0, + 293.0, + 1391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1399.0, + 1407.0, + 1399.0, + 1407.0, + 1439.0, + 293.0, + 1439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1432.0, + 1408.0, + 1432.0, + 1408.0, + 1469.0, + 295.0, + 1469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1461.0, + 414.0, + 1461.0, + 414.0, + 1500.0, + 293.0, + 1500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 476.0, + 1461.0, + 1405.0, + 1461.0, + 1405.0, + 1500.0, + 476.0, + 1500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1490.0, + 1407.0, + 1490.0, + 1407.0, + 1532.0, + 292.0, + 1532.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1522.0, + 1406.0, + 1522.0, + 1406.0, + 1560.0, + 292.0, + 1560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1553.0, + 1405.0, + 1553.0, + 1405.0, + 1592.0, + 293.0, + 1592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1584.0, + 1405.0, + 1584.0, + 1405.0, + 1622.0, + 293.0, + 1622.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1615.0, + 871.0, + 1615.0, + 871.0, + 1653.0, + 293.0, + 1653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 949.0, + 1615.0, + 1406.0, + 1615.0, + 1406.0, + 1653.0, + 949.0, + 1653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1644.0, + 664.0, + 1644.0, + 664.0, + 1682.0, + 293.0, + 1682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 687.0, + 1644.0, + 1297.0, + 1644.0, + 1297.0, + 1682.0, + 687.0, + 1682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 599.0, + 1406.0, + 599.0, + 1406.0, + 643.0, + 293.0, + 643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 634.0, + 1405.0, + 634.0, + 1405.0, + 668.0, + 295.0, + 668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 666.0, + 1403.0, + 666.0, + 1403.0, + 696.0, + 296.0, + 696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 696.0, + 1408.0, + 696.0, + 1408.0, + 730.0, + 295.0, + 730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 724.0, + 1407.0, + 724.0, + 1407.0, + 759.0, + 293.0, + 759.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 758.0, + 1405.0, + 758.0, + 1405.0, + 788.0, + 295.0, + 788.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 786.0, + 1405.0, + 786.0, + 1405.0, + 824.0, + 292.0, + 824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 815.0, + 1405.0, + 815.0, + 1405.0, + 852.0, + 293.0, + 852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 848.0, + 1405.0, + 848.0, + 1405.0, + 882.0, + 295.0, + 882.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 876.0, + 1403.0, + 876.0, + 1403.0, + 912.0, + 293.0, + 912.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 907.0, + 1406.0, + 907.0, + 1406.0, + 944.0, + 293.0, + 944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 940.0, + 721.0, + 940.0, + 721.0, + 974.0, + 296.0, + 974.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 6, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1668, + 1406, + 1668, + 1406, + 2034, + 298, + 2034 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 297, + 1102, + 1405, + 1102, + 1405, + 1589, + 297, + 1589 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 872, + 1405, + 872, + 1405, + 1087, + 298, + 1087 + ], + "score": 0.98 + }, + { + "category_id": 5, + "poly": [ + 302, + 224, + 836, + 224, + 836, + 414, + 302, + 414 + ], + "score": 0.971, + "html": "
TaskPPORWRAWR (Ours)
Humanoid:Cartwheel0.76 ±0.020.03±0.010.78±0.07
Humanoid:Spinkick0.70±0.020.05± 0.030.77± 0.04
Dog:Canter0.76±0.030.78±0.040.86± 0.01
Dog:Trot0.86±0.010.86±0.010.86±0.03
Dog:Turn0.75±0.020.75±0.030.82±0.03
" + }, + { + "category_id": 3, + "poly": [ + 849, + 210, + 1401, + 210, + 1401, + 421, + 849, + 421 + ], + "score": 0.967 + }, + { + "category_id": 3, + "poly": [ + 297, + 536, + 1405, + 536, + 1405, + 737, + 297, + 737 + ], + "score": 0.958 + }, + { + "category_id": 4, + "poly": [ + 845, + 436, + 1403, + 436, + 1403, + 526, + 845, + 526 + ], + "score": 0.946 + }, + { + "category_id": 0, + "poly": [ + 297, + 830, + 944, + 830, + 944, + 861, + 297, + 861 + ], + "score": 0.915 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 854, + 75, + 854, + 105, + 298, + 105 + ], + "score": 0.898 + }, + { + "category_id": 0, + "poly": [ + 301, + 1620, + 826, + 1620, + 826, + 1655, + 301, + 1655 + ], + "score": 0.895 + }, + { + "category_id": 4, + "poly": [ + 299, + 745, + 1404, + 745, + 1404, + 809, + 299, + 809 + ], + "score": 0.886 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 858, + 2088, + 858, + 2112, + 840, + 2112 + ], + "score": 0.796 + }, + { + "category_id": 6, + "poly": [ + 296, + 437, + 837, + 437, + 837, + 528, + 296, + 528 + ], + "score": 0.773 + }, + { + "category_id": 4, + "poly": [ + 296, + 437, + 837, + 437, + 837, + 528, + 296, + 528 + ], + "score": 0.201 + }, + { + "category_id": 13, + "poly": [ + 676, + 964, + 1063, + 964, + 1063, + 997, + 676, + 997 + ], + "score": 0.92, + "latex": "\\tau = \\{ ( \\mathbf { s } _ { 0 } , \\mathbf { a } _ { 0 } , r _ { 0 } ) , ( \\mathbf { s } _ { 1 } , \\mathbf { a } _ { 1 } , r _ { 1 } ) , \\ldots \\}" + }, + { + "category_id": 13, + "poly": [ + 448, + 310, + 546, + 310, + 546, + 327, + 448, + 327 + ], + "score": 0.8, + "latex": "0 . 7 0 \\pm 0 . 0 2" + }, + { + "category_id": 13, + "poly": [ + 930, + 1104, + 956, + 1104, + 956, + 1130, + 930, + 1130 + ], + "score": 0.8, + "latex": "\\mathcal { D }" + }, + { + "category_id": 13, + "poly": [ + 582, + 310, + 681, + 310, + 681, + 327, + 582, + 327 + ], + "score": 0.77, + "latex": "0 . 0 5 \\pm 0 . 0 3" + }, + { + "category_id": 13, + "poly": [ + 448, + 263, + 546, + 263, + 546, + 283, + 448, + 283 + ], + "score": 0.64, + "latex": "0 . 7 6 \\pm 0 . 0 2" + }, + { + "category_id": 13, + "poly": [ + 582, + 263, + 681, + 263, + 681, + 283, + 582, + 283 + ], + "score": 0.58, + "latex": "0 . 0 3 \\pm 0 . 0 1" + }, + { + "category_id": 13, + "poly": [ + 447, + 343, + 546, + 343, + 546, + 361, + 447, + 361 + ], + "score": 0.51, + "latex": "0 . 7 6 \\pm 0 . 0 3" + }, + { + "category_id": 13, + "poly": [ + 710, + 307, + 822, + 307, + 822, + 328, + 710, + 328 + ], + "score": 0.48, + "latex": "\\mathbf { 0 . 7 7 \\pm 0 . 0 4 }" + }, + { + "category_id": 13, + "poly": [ + 581, + 344, + 681, + 344, + 681, + 361, + 581, + 361 + ], + "score": 0.45, + "latex": "0 . 7 8 \\pm 0 . 0 4" + }, + { + "category_id": 13, + "poly": [ + 710, + 259, + 823, + 259, + 823, + 283, + 710, + 283 + ], + "score": 0.41, + "latex": "{ \\bf 0 . 7 8 \\pm 0 . 0 7 }" + }, + { + "category_id": 13, + "poly": [ + 446, + 387, + 547, + 387, + 547, + 410, + 446, + 410 + ], + "score": 0.34, + "latex": "\\overline { { 0 . 7 5 \\pm 0 . 0 2 } }" + }, + { + "category_id": 13, + "poly": [ + 578, + 365, + 686, + 365, + 686, + 385, + 578, + 385 + ], + "score": 0.3, + "latex": "\\mathbf { 0 . 8 6 \\pm 0 . 0 1 }" + }, + { + "category_id": 15, + "poly": [ + 945.0, + 212.0, + 1069.0, + 212.0, + 1069.0, + 230.0, + 945.0, + 230.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1238.0, + 212.0, + 1318.0, + 212.0, + 1318.0, + 231.0, + 1238.0, + 231.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 858.0, + 222.0, + 885.0, + 222.0, + 885.0, + 240.0, + 858.0, + 240.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1129.0, + 222.0, + 1156.0, + 222.0, + 1156.0, + 240.0, + 1129.0, + 240.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 914.0, + 233.0, + 948.0, + 233.0, + 948.0, + 253.0, + 914.0, + 253.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 857.0, + 253.0, + 887.0, + 253.0, + 887.0, + 272.0, + 857.0, + 272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 916.0, + 248.0, + 949.0, + 248.0, + 949.0, + 266.0, + 916.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1129.0, + 254.0, + 1156.0, + 254.0, + 1156.0, + 272.0, + 1129.0, + 272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 915.0, + 262.0, + 981.0, + 262.0, + 981.0, + 281.0, + 915.0, + 281.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 844.0, + 285.0, + 885.0, + 285.0, + 885.0, + 334.0, + 844.0, + 334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1129.0, + 284.0, + 1157.0, + 284.0, + 1157.0, + 335.0, + 1129.0, + 335.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 858.0, + 349.0, + 884.0, + 349.0, + 884.0, + 367.0, + 858.0, + 367.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1129.0, + 349.0, + 1156.0, + 349.0, + 1156.0, + 366.0, + 1129.0, + 366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 857.0, + 379.0, + 891.0, + 379.0, + 891.0, + 399.0, + 857.0, + 399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1128.0, + 381.0, + 1163.0, + 381.0, + 1163.0, + 397.0, + 1128.0, + 397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 873.0, + 392.0, + 898.0, + 392.0, + 898.0, + 407.0, + 873.0, + 407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 902.0, + 390.0, + 960.0, + 390.0, + 960.0, + 408.0, + 902.0, + 408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 962.0, + 391.0, + 1051.0, + 391.0, + 1051.0, + 408.0, + 962.0, + 408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1053.0, + 391.0, + 1081.0, + 391.0, + 1081.0, + 408.0, + 1053.0, + 408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1083.0, + 391.0, + 1134.0, + 391.0, + 1134.0, + 408.0, + 1083.0, + 408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1142.0, + 391.0, + 1172.0, + 391.0, + 1172.0, + 408.0, + 1142.0, + 408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1173.0, + 390.0, + 1200.0, + 390.0, + 1200.0, + 408.0, + 1173.0, + 408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1202.0, + 390.0, + 1403.0, + 390.0, + 1403.0, + 409.0, + 1202.0, + 409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 980.0, + 403.0, + 1033.0, + 403.0, + 1033.0, + 422.0, + 980.0, + 422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1105.0, + 403.0, + 1132.0, + 403.0, + 1132.0, + 420.0, + 1105.0, + 420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1375.0, + 403.0, + 1403.0, + 403.0, + 1403.0, + 420.0, + 1375.0, + 420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 438.0, + 537.0, + 484.0, + 537.0, + 484.0, + 556.0, + 438.0, + 556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 687.0, + 538.0, + 783.0, + 538.0, + 783.0, + 556.0, + 687.0, + 556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 972.0, + 536.0, + 1042.0, + 536.0, + 1042.0, + 557.0, + 972.0, + 557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1241.0, + 536.0, + 1323.0, + 536.0, + 1323.0, + 557.0, + 1241.0, + 557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 375.0, + 557.0, + 413.0, + 557.0, + 413.0, + 576.0, + 375.0, + 576.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 555.0, + 559.0, + 572.0, + 559.0, + 572.0, + 576.0, + 555.0, + 576.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 582.0, + 560.0, + 617.0, + 560.0, + 617.0, + 577.0, + 582.0, + 577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 763.0, + 564.0, + 773.0, + 564.0, + 773.0, + 575.0, + 763.0, + 575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 796.0, + 564.0, + 808.0, + 564.0, + 808.0, + 575.0, + 796.0, + 575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 854.0, + 552.0, + 894.0, + 552.0, + 894.0, + 571.0, + 854.0, + 571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 309.0, + 576.0, + 344.0, + 576.0, + 344.0, + 595.0, + 309.0, + 595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 627.0, + 581.0, + 641.0, + 581.0, + 641.0, + 592.0, + 627.0, + 592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 696.0, + 584.0, + 708.0, + 584.0, + 708.0, + 594.0, + 696.0, + 594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 760.0, + 576.0, + 777.0, + 576.0, + 777.0, + 592.0, + 760.0, + 592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 854.0, + 573.0, + 890.0, + 573.0, + 890.0, + 592.0, + 854.0, + 592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1129.0, + 579.0, + 1163.0, + 579.0, + 1163.0, + 596.0, + 1129.0, + 596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 582.0, + 589.0, + 617.0, + 589.0, + 617.0, + 607.0, + 582.0, + 607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 855.0, + 596.0, + 890.0, + 596.0, + 890.0, + 615.0, + 855.0, + 615.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 610.0, + 344.0, + 610.0, + 344.0, + 657.0, + 297.0, + 657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 900.0, + 614.0, + 914.0, + 614.0, + 914.0, + 624.0, + 900.0, + 624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1036.0, + 611.0, + 1046.0, + 611.0, + 1046.0, + 623.0, + 1036.0, + 623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1129.0, + 610.0, + 1163.0, + 610.0, + 1163.0, + 628.0, + 1129.0, + 628.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 580.0, + 618.0, + 618.0, + 618.0, + 618.0, + 636.0, + 580.0, + 636.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 855.0, + 619.0, + 889.0, + 619.0, + 889.0, + 636.0, + 855.0, + 636.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 899.0, + 624.0, + 910.0, + 624.0, + 910.0, + 635.0, + 899.0, + 635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1035.0, + 622.0, + 1047.0, + 622.0, + 1047.0, + 632.0, + 1035.0, + 632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1173.0, + 619.0, + 1189.0, + 619.0, + 1189.0, + 636.0, + 1173.0, + 636.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 309.0, + 642.0, + 346.0, + 642.0, + 346.0, + 659.0, + 309.0, + 659.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 580.0, + 647.0, + 619.0, + 647.0, + 619.0, + 666.0, + 580.0, + 666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 859.0, + 638.0, + 894.0, + 638.0, + 894.0, + 661.0, + 859.0, + 661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1128.0, + 642.0, + 1164.0, + 642.0, + 1164.0, + 661.0, + 1128.0, + 661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 860.0, + 662.0, + 891.0, + 662.0, + 891.0, + 682.0, + 860.0, + 682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 309.0, + 674.0, + 346.0, + 674.0, + 346.0, + 693.0, + 309.0, + 693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 582.0, + 677.0, + 618.0, + 677.0, + 618.0, + 696.0, + 582.0, + 696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 860.0, + 684.0, + 890.0, + 684.0, + 890.0, + 704.0, + 860.0, + 704.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1128.0, + 674.0, + 1164.0, + 674.0, + 1164.0, + 693.0, + 1128.0, + 693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 708.0, + 348.0, + 708.0, + 348.0, + 724.0, + 328.0, + 724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 716.0, + 374.0, + 716.0, + 374.0, + 736.0, + 350.0, + 736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 380.0, + 716.0, + 411.0, + 716.0, + 411.0, + 735.0, + 380.0, + 735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 413.0, + 716.0, + 443.0, + 716.0, + 443.0, + 735.0, + 413.0, + 735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 446.0, + 716.0, + 578.0, + 716.0, + 578.0, + 735.0, + 446.0, + 735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 601.0, + 708.0, + 618.0, + 708.0, + 618.0, + 722.0, + 601.0, + 722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 623.0, + 714.0, + 647.0, + 714.0, + 647.0, + 736.0, + 623.0, + 736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 653.0, + 716.0, + 682.0, + 716.0, + 682.0, + 735.0, + 653.0, + 735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 686.0, + 716.0, + 718.0, + 716.0, + 718.0, + 735.0, + 686.0, + 735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 720.0, + 716.0, + 750.0, + 716.0, + 750.0, + 735.0, + 720.0, + 735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 753.0, + 716.0, + 851.0, + 716.0, + 851.0, + 735.0, + 753.0, + 735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 872.0, + 708.0, + 890.0, + 708.0, + 890.0, + 724.0, + 872.0, + 724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 895.0, + 716.0, + 919.0, + 716.0, + 919.0, + 736.0, + 895.0, + 736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 960.0, + 718.0, + 988.0, + 718.0, + 988.0, + 733.0, + 960.0, + 733.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 994.0, + 718.0, + 1022.0, + 718.0, + 1022.0, + 733.0, + 994.0, + 733.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1026.0, + 717.0, + 1124.0, + 717.0, + 1124.0, + 735.0, + 1026.0, + 735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1147.0, + 708.0, + 1164.0, + 708.0, + 1164.0, + 724.0, + 1147.0, + 724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1169.0, + 716.0, + 1193.0, + 716.0, + 1193.0, + 736.0, + 1169.0, + 736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1200.0, + 716.0, + 1231.0, + 716.0, + 1231.0, + 736.0, + 1200.0, + 736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1232.0, + 717.0, + 1262.0, + 717.0, + 1262.0, + 736.0, + 1232.0, + 736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1268.0, + 718.0, + 1295.0, + 718.0, + 1295.0, + 733.0, + 1268.0, + 733.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1300.0, + 717.0, + 1398.0, + 717.0, + 1398.0, + 735.0, + 1300.0, + 735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 925.75, + 714.5, + 953.75, + 714.5, + 953.75, + 735.0, + 925.75, + 735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 845.0, + 433.0, + 1404.0, + 433.0, + 1404.0, + 469.0, + 845.0, + 469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 843.0, + 460.0, + 1404.0, + 460.0, + 1404.0, + 503.0, + 843.0, + 503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 846.0, + 497.0, + 1223.0, + 497.0, + 1223.0, + 528.0, + 846.0, + 528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 828.0, + 945.0, + 828.0, + 945.0, + 865.0, + 294.0, + 865.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 857.0, + 73.0, + 857.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1616.0, + 832.0, + 1616.0, + 832.0, + 1662.0, + 292.0, + 1662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 744.0, + 1405.0, + 744.0, + 1405.0, + 780.0, + 295.0, + 780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 776.0, + 1216.0, + 776.0, + 1216.0, + 812.0, + 295.0, + 812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 836.0, + 2085.0, + 859.0, + 2085.0, + 859.0, + 2116.0, + 836.0, + 2116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 436.0, + 841.0, + 436.0, + 841.0, + 469.0, + 294.0, + 469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 467.0, + 842.0, + 467.0, + 842.0, + 500.0, + 295.0, + 500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 496.0, + 806.0, + 496.0, + 806.0, + 531.0, + 295.0, + 531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 436.0, + 841.0, + 436.0, + 841.0, + 469.0, + 294.0, + 469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 467.0, + 842.0, + 467.0, + 842.0, + 500.0, + 295.0, + 500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 496.0, + 806.0, + 496.0, + 806.0, + 531.0, + 295.0, + 531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1668.0, + 1407.0, + 1668.0, + 1407.0, + 1705.0, + 295.0, + 1705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1698.0, + 1407.0, + 1698.0, + 1407.0, + 1732.0, + 295.0, + 1732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1730.0, + 1406.0, + 1730.0, + 1406.0, + 1764.0, + 295.0, + 1764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1760.0, + 1406.0, + 1760.0, + 1406.0, + 1792.0, + 293.0, + 1792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1789.0, + 1404.0, + 1789.0, + 1404.0, + 1824.0, + 293.0, + 1824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1818.0, + 1409.0, + 1818.0, + 1409.0, + 1857.0, + 292.0, + 1857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1851.0, + 1407.0, + 1851.0, + 1407.0, + 1885.0, + 293.0, + 1885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1881.0, + 1406.0, + 1881.0, + 1406.0, + 1915.0, + 295.0, + 1915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1907.0, + 1406.0, + 1907.0, + 1406.0, + 1951.0, + 292.0, + 1951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1943.0, + 1404.0, + 1943.0, + 1404.0, + 1976.0, + 293.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1971.0, + 1404.0, + 1971.0, + 1404.0, + 2009.0, + 295.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 2004.0, + 1222.0, + 2004.0, + 1222.0, + 2038.0, + 296.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1102.0, + 929.0, + 1102.0, + 929.0, + 1136.0, + 295.0, + 1136.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 957.0, + 1102.0, + 1405.0, + 1102.0, + 1405.0, + 1136.0, + 957.0, + 1136.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1134.0, + 1405.0, + 1134.0, + 1405.0, + 1166.0, + 294.0, + 1166.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1163.0, + 1405.0, + 1163.0, + 1405.0, + 1198.0, + 294.0, + 1198.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1193.0, + 1406.0, + 1193.0, + 1406.0, + 1231.0, + 295.0, + 1231.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1221.0, + 1408.0, + 1221.0, + 1408.0, + 1260.0, + 294.0, + 1260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1254.0, + 1405.0, + 1254.0, + 1405.0, + 1290.0, + 294.0, + 1290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1284.0, + 1406.0, + 1284.0, + 1406.0, + 1320.0, + 294.0, + 1320.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1316.0, + 1406.0, + 1316.0, + 1406.0, + 1350.0, + 295.0, + 1350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1344.0, + 1406.0, + 1344.0, + 1406.0, + 1381.0, + 294.0, + 1381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1375.0, + 1406.0, + 1375.0, + 1406.0, + 1413.0, + 294.0, + 1413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1404.0, + 1406.0, + 1404.0, + 1406.0, + 1443.0, + 292.0, + 1443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1437.0, + 1405.0, + 1437.0, + 1405.0, + 1471.0, + 295.0, + 1471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1468.0, + 1405.0, + 1468.0, + 1405.0, + 1501.0, + 295.0, + 1501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1498.0, + 1405.0, + 1498.0, + 1405.0, + 1530.0, + 294.0, + 1530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1529.0, + 1405.0, + 1529.0, + 1405.0, + 1563.0, + 295.0, + 1563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1561.0, + 1049.0, + 1561.0, + 1049.0, + 1591.0, + 296.0, + 1591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 870.0, + 1405.0, + 870.0, + 1405.0, + 906.0, + 293.0, + 906.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 898.0, + 1406.0, + 898.0, + 1406.0, + 940.0, + 292.0, + 940.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 932.0, + 1408.0, + 932.0, + 1408.0, + 970.0, + 293.0, + 970.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 960.0, + 675.0, + 960.0, + 675.0, + 1002.0, + 292.0, + 1002.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1064.0, + 960.0, + 1410.0, + 960.0, + 1410.0, + 1002.0, + 1064.0, + 1002.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 994.0, + 1406.0, + 994.0, + 1406.0, + 1029.0, + 295.0, + 1029.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1025.0, + 1405.0, + 1025.0, + 1405.0, + 1059.0, + 295.0, + 1059.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1056.0, + 1260.0, + 1056.0, + 1260.0, + 1090.0, + 295.0, + 1090.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 7, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 299, + 1911, + 1405, + 1911, + 1405, + 2034, + 299, + 2034 + ], + "score": 0.909 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 854, + 75, + 854, + 105, + 298, + 105 + ], + "score": 0.881 + }, + { + "category_id": 1, + "poly": [ + 297, + 1156, + 1405, + 1156, + 1405, + 1312, + 297, + 1312 + ], + "score": 0.88 + }, + { + "category_id": 1, + "poly": [ + 299, + 1706, + 1406, + 1706, + 1406, + 1892, + 299, + 1892 + ], + "score": 0.873 + }, + { + "category_id": 1, + "poly": [ + 300, + 697, + 1402, + 697, + 1402, + 791, + 300, + 791 + ], + "score": 0.873 + }, + { + "category_id": 1, + "poly": [ + 298, + 1329, + 1405, + 1329, + 1405, + 1485, + 298, + 1485 + ], + "score": 0.871 + }, + { + "category_id": 1, + "poly": [ + 298, + 983, + 1404, + 983, + 1404, + 1138, + 298, + 1138 + ], + "score": 0.87 + }, + { + "category_id": 1, + "poly": [ + 297, + 809, + 1406, + 809, + 1406, + 965, + 297, + 965 + ], + "score": 0.87 + }, + { + "category_id": 1, + "poly": [ + 299, + 1503, + 1406, + 1503, + 1406, + 1688, + 299, + 1688 + ], + "score": 0.864 + }, + { + "category_id": 1, + "poly": [ + 299, + 279, + 1401, + 279, + 1401, + 372, + 299, + 372 + ], + "score": 0.838 + }, + { + "category_id": 1, + "poly": [ + 291, + 503, + 1401, + 503, + 1401, + 567, + 291, + 567 + ], + "score": 0.83 + }, + { + "category_id": 1, + "poly": [ + 296, + 584, + 1404, + 584, + 1404, + 679, + 296, + 679 + ], + "score": 0.824 + }, + { + "category_id": 1, + "poly": [ + 299, + 390, + 1399, + 390, + 1399, + 485, + 299, + 485 + ], + "score": 0.822 + }, + { + "category_id": 0, + "poly": [ + 300, + 228, + 488, + 228, + 488, + 261, + 300, + 261 + ], + "score": 0.819 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 859, + 2088, + 859, + 2111, + 840, + 2111 + ], + "score": 0.773 + }, + { + "category_id": 13, + "poly": [ + 806, + 1107, + 860, + 1107, + 860, + 1136, + 806, + 1136 + ], + "score": 0.44, + "latex": "\\mathtt { v 8 0 }" + }, + { + "category_id": 13, + "poly": [ + 1180, + 456, + 1198, + 456, + 1198, + 478, + 1180, + 478 + ], + "score": 0.4, + "latex": "\\underline { { \\underline { { \\mathbf { \\Pi } } } } } =" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 857.0, + 73.0, + 857.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 227.0, + 491.0, + 227.0, + 491.0, + 265.0, + 295.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2087.0, + 861.0, + 2087.0, + 861.0, + 2117.0, + 839.0, + 2117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1911.0, + 1405.0, + 1911.0, + 1405.0, + 1947.0, + 295.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1942.0, + 1409.0, + 1942.0, + 1409.0, + 1978.0, + 322.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1973.0, + 1407.0, + 1973.0, + 1407.0, + 2005.0, + 323.0, + 2005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 2004.0, + 1103.0, + 2004.0, + 1103.0, + 2036.0, + 323.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1157.0, + 1403.0, + 1157.0, + 1403.0, + 1190.0, + 296.0, + 1190.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1187.0, + 1403.0, + 1187.0, + 1403.0, + 1221.0, + 324.0, + 1221.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1214.0, + 1406.0, + 1214.0, + 1406.0, + 1258.0, + 320.0, + 1258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1242.0, + 1411.0, + 1242.0, + 1411.0, + 1289.0, + 319.0, + 1289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1281.0, + 1067.0, + 1281.0, + 1067.0, + 1314.0, + 324.0, + 1314.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1706.0, + 1404.0, + 1706.0, + 1404.0, + 1743.0, + 294.0, + 1743.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1739.0, + 1406.0, + 1739.0, + 1406.0, + 1772.0, + 321.0, + 1772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1763.0, + 1410.0, + 1763.0, + 1410.0, + 1808.0, + 319.0, + 1808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1799.0, + 1408.0, + 1799.0, + 1408.0, + 1835.0, + 322.0, + 1835.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1827.0, + 1406.0, + 1827.0, + 1406.0, + 1865.0, + 322.0, + 1865.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1863.0, + 670.0, + 1863.0, + 670.0, + 1895.0, + 323.0, + 1895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 692.0, + 1406.0, + 692.0, + 1406.0, + 737.0, + 295.0, + 737.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 725.0, + 1412.0, + 725.0, + 1412.0, + 767.0, + 320.0, + 767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 760.0, + 985.0, + 760.0, + 985.0, + 792.0, + 323.0, + 792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1331.0, + 1402.0, + 1331.0, + 1402.0, + 1364.0, + 297.0, + 1364.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1358.0, + 1405.0, + 1358.0, + 1405.0, + 1399.0, + 321.0, + 1399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1392.0, + 1403.0, + 1392.0, + 1403.0, + 1426.0, + 323.0, + 1426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1420.0, + 1407.0, + 1420.0, + 1407.0, + 1456.0, + 320.0, + 1456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1454.0, + 1036.0, + 1454.0, + 1036.0, + 1487.0, + 323.0, + 1487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 982.0, + 1406.0, + 982.0, + 1406.0, + 1021.0, + 295.0, + 1021.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1014.0, + 1402.0, + 1014.0, + 1402.0, + 1047.0, + 322.0, + 1047.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1041.0, + 1406.0, + 1041.0, + 1406.0, + 1084.0, + 321.0, + 1084.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1074.0, + 1407.0, + 1074.0, + 1407.0, + 1108.0, + 320.0, + 1108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1107.0, + 805.0, + 1107.0, + 805.0, + 1140.0, + 323.0, + 1140.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 1107.0, + 1151.0, + 1107.0, + 1151.0, + 1140.0, + 861.0, + 1140.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 803.0, + 1411.0, + 803.0, + 1411.0, + 851.0, + 291.0, + 851.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 838.0, + 1407.0, + 838.0, + 1407.0, + 879.0, + 321.0, + 879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 872.0, + 1404.0, + 872.0, + 1404.0, + 906.0, + 324.0, + 906.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 902.0, + 1406.0, + 902.0, + 1406.0, + 935.0, + 321.0, + 935.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 932.0, + 1054.0, + 932.0, + 1054.0, + 970.0, + 321.0, + 970.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1503.0, + 1404.0, + 1503.0, + 1404.0, + 1540.0, + 294.0, + 1540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1534.0, + 1406.0, + 1534.0, + 1406.0, + 1569.0, + 321.0, + 1569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1560.0, + 1411.0, + 1560.0, + 1411.0, + 1603.0, + 319.0, + 1603.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1595.0, + 1409.0, + 1595.0, + 1409.0, + 1631.0, + 322.0, + 1631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1623.0, + 1406.0, + 1623.0, + 1406.0, + 1662.0, + 322.0, + 1662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1660.0, + 669.0, + 1660.0, + 669.0, + 1688.0, + 324.0, + 1688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 277.0, + 1405.0, + 277.0, + 1405.0, + 315.0, + 294.0, + 315.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 305.0, + 1405.0, + 305.0, + 1405.0, + 347.0, + 320.0, + 347.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 339.0, + 784.0, + 339.0, + 784.0, + 374.0, + 323.0, + 374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 503.0, + 1404.0, + 503.0, + 1404.0, + 539.0, + 296.0, + 539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 532.0, + 769.0, + 532.0, + 769.0, + 568.0, + 322.0, + 568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 583.0, + 1409.0, + 583.0, + 1409.0, + 622.0, + 293.0, + 622.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 613.0, + 1410.0, + 613.0, + 1410.0, + 653.0, + 320.0, + 653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 647.0, + 889.0, + 647.0, + 889.0, + 679.0, + 323.0, + 679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 390.0, + 1405.0, + 390.0, + 1405.0, + 428.0, + 294.0, + 428.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 420.0, + 1404.0, + 420.0, + 1404.0, + 459.0, + 320.0, + 459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 452.0, + 1179.0, + 452.0, + 1179.0, + 490.0, + 321.0, + 490.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1199.0, + 452.0, + 1358.0, + 452.0, + 1358.0, + 490.0, + 1199.0, + 490.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 8, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 789, + 1406, + 789, + 1406, + 914, + 298, + 914 + ], + "score": 0.915 + }, + { + "category_id": 1, + "poly": [ + 297, + 642, + 1407, + 642, + 1407, + 766, + 297, + 766 + ], + "score": 0.911 + }, + { + "category_id": 1, + "poly": [ + 297, + 937, + 1408, + 937, + 1408, + 1031, + 297, + 1031 + ], + "score": 0.908 + }, + { + "category_id": 1, + "poly": [ + 298, + 1911, + 1407, + 1911, + 1407, + 2033, + 298, + 2033 + ], + "score": 0.907 + }, + { + "category_id": 1, + "poly": [ + 299, + 1172, + 1407, + 1172, + 1407, + 1265, + 299, + 1265 + ], + "score": 0.907 + }, + { + "category_id": 1, + "poly": [ + 298, + 1376, + 1407, + 1376, + 1407, + 1562, + 298, + 1562 + ], + "score": 0.89 + }, + { + "category_id": 1, + "poly": [ + 297, + 1054, + 1404, + 1054, + 1404, + 1147, + 297, + 1147 + ], + "score": 0.888 + }, + { + "category_id": 1, + "poly": [ + 296, + 494, + 1408, + 494, + 1408, + 618, + 296, + 618 + ], + "score": 0.888 + }, + { + "category_id": 1, + "poly": [ + 297, + 346, + 1410, + 346, + 1410, + 470, + 297, + 470 + ], + "score": 0.887 + }, + { + "category_id": 1, + "poly": [ + 298, + 1288, + 1401, + 1288, + 1401, + 1352, + 298, + 1352 + ], + "score": 0.875 + }, + { + "category_id": 1, + "poly": [ + 297, + 229, + 1404, + 229, + 1404, + 323, + 297, + 323 + ], + "score": 0.874 + }, + { + "category_id": 1, + "poly": [ + 298, + 1762, + 1406, + 1762, + 1406, + 1888, + 298, + 1888 + ], + "score": 0.867 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 854, + 75, + 854, + 105, + 298, + 105 + ], + "score": 0.849 + }, + { + "category_id": 1, + "poly": [ + 297, + 1584, + 1408, + 1584, + 1408, + 1738, + 297, + 1738 + ], + "score": 0.845 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 864, + 2088, + 864, + 2113, + 836, + 2113 + ], + "score": 0.809 + }, + { + "category_id": 13, + "poly": [ + 1261, + 1681, + 1279, + 1681, + 1279, + 1704, + 1261, + 1704 + ], + "score": 0.36, + "latex": "\\underline { { \\underline { { \\mathbf { \\Pi } } } } } =" + }, + { + "category_id": 13, + "poly": [ + 875, + 1859, + 894, + 1859, + 894, + 1882, + 875, + 1882 + ], + "score": 0.25, + "latex": "\\equiv" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 857.0, + 73.0, + 857.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 869.0, + 2085.0, + 869.0, + 2123.0, + 831.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 788.0, + 1406.0, + 788.0, + 1406.0, + 826.0, + 293.0, + 826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 816.0, + 1409.0, + 816.0, + 1409.0, + 860.0, + 321.0, + 860.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 850.0, + 1412.0, + 850.0, + 1412.0, + 887.0, + 322.0, + 887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 882.0, + 1180.0, + 882.0, + 1180.0, + 915.0, + 324.0, + 915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 640.0, + 1409.0, + 640.0, + 1409.0, + 680.0, + 292.0, + 680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 670.0, + 1407.0, + 670.0, + 1407.0, + 710.0, + 321.0, + 710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 704.0, + 1410.0, + 704.0, + 1410.0, + 741.0, + 321.0, + 741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 736.0, + 770.0, + 736.0, + 770.0, + 768.0, + 324.0, + 768.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 938.0, + 1405.0, + 938.0, + 1405.0, + 972.0, + 295.0, + 972.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 967.0, + 1410.0, + 967.0, + 1410.0, + 1007.0, + 320.0, + 1007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 999.0, + 777.0, + 999.0, + 777.0, + 1033.0, + 323.0, + 1033.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1911.0, + 1408.0, + 1911.0, + 1408.0, + 1947.0, + 295.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1942.0, + 1408.0, + 1942.0, + 1408.0, + 1978.0, + 322.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1972.0, + 1407.0, + 1972.0, + 1407.0, + 2008.0, + 320.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 2003.0, + 856.0, + 2003.0, + 856.0, + 2034.0, + 322.0, + 2034.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1168.0, + 1408.0, + 1168.0, + 1408.0, + 1210.0, + 293.0, + 1210.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1202.0, + 1405.0, + 1202.0, + 1405.0, + 1238.0, + 322.0, + 1238.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1233.0, + 574.0, + 1233.0, + 574.0, + 1268.0, + 322.0, + 1268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1378.0, + 1408.0, + 1378.0, + 1408.0, + 1410.0, + 297.0, + 1410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1404.0, + 1407.0, + 1404.0, + 1407.0, + 1444.0, + 320.0, + 1444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1436.0, + 1409.0, + 1436.0, + 1409.0, + 1474.0, + 320.0, + 1474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1466.0, + 1407.0, + 1466.0, + 1407.0, + 1503.0, + 320.0, + 1503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1498.0, + 1405.0, + 1498.0, + 1405.0, + 1530.0, + 324.0, + 1530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1530.0, + 955.0, + 1530.0, + 955.0, + 1562.0, + 324.0, + 1562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1052.0, + 1405.0, + 1052.0, + 1405.0, + 1092.0, + 294.0, + 1092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1087.0, + 1405.0, + 1087.0, + 1405.0, + 1121.0, + 322.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1117.0, + 506.0, + 1117.0, + 506.0, + 1148.0, + 322.0, + 1148.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 493.0, + 1408.0, + 493.0, + 1408.0, + 529.0, + 294.0, + 529.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 523.0, + 1406.0, + 523.0, + 1406.0, + 561.0, + 319.0, + 561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 552.0, + 1410.0, + 552.0, + 1410.0, + 593.0, + 321.0, + 593.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 589.0, + 769.0, + 589.0, + 769.0, + 618.0, + 323.0, + 618.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 343.0, + 1410.0, + 343.0, + 1410.0, + 385.0, + 293.0, + 385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 378.0, + 1411.0, + 378.0, + 1411.0, + 414.0, + 322.0, + 414.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 406.0, + 1415.0, + 406.0, + 1415.0, + 445.0, + 319.0, + 445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 441.0, + 457.0, + 441.0, + 457.0, + 471.0, + 323.0, + 471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1285.0, + 1405.0, + 1285.0, + 1405.0, + 1328.0, + 292.0, + 1328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1320.0, + 586.0, + 1320.0, + 586.0, + 1354.0, + 322.0, + 1354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 230.0, + 1405.0, + 230.0, + 1405.0, + 264.0, + 296.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 258.0, + 1413.0, + 258.0, + 1413.0, + 297.0, + 321.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 293.0, + 638.0, + 293.0, + 638.0, + 322.0, + 325.0, + 322.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1763.0, + 1411.0, + 1763.0, + 1411.0, + 1799.0, + 296.0, + 1799.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1796.0, + 1406.0, + 1796.0, + 1406.0, + 1829.0, + 324.0, + 1829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1825.0, + 1408.0, + 1825.0, + 1408.0, + 1858.0, + 321.0, + 1858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1857.0, + 874.0, + 1857.0, + 874.0, + 1890.0, + 322.0, + 1890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 895.0, + 1857.0, + 1154.0, + 1857.0, + 1154.0, + 1890.0, + 895.0, + 1890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1584.0, + 1404.0, + 1584.0, + 1404.0, + 1617.0, + 296.0, + 1617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1613.0, + 1406.0, + 1613.0, + 1406.0, + 1652.0, + 323.0, + 1652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1645.0, + 1410.0, + 1645.0, + 1410.0, + 1681.0, + 320.0, + 1681.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1674.0, + 1260.0, + 1674.0, + 1260.0, + 1713.0, + 320.0, + 1713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1280.0, + 1674.0, + 1410.0, + 1674.0, + 1410.0, + 1713.0, + 1280.0, + 1713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1709.0, + 455.0, + 1709.0, + 455.0, + 1739.0, + 324.0, + 1739.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 9, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1097, + 1405, + 1097, + 1405, + 1251, + 297, + 1251 + ], + "score": 0.942 + }, + { + "category_id": 1, + "poly": [ + 297, + 1388, + 1408, + 1388, + 1408, + 1544, + 297, + 1544 + ], + "score": 0.935 + }, + { + "category_id": 1, + "poly": [ + 298, + 781, + 1405, + 781, + 1405, + 907, + 298, + 907 + ], + "score": 0.933 + }, + { + "category_id": 1, + "poly": [ + 297, + 1564, + 1406, + 1564, + 1406, + 1658, + 297, + 1658 + ], + "score": 0.926 + }, + { + "category_id": 1, + "poly": [ + 297, + 344, + 1407, + 344, + 1407, + 499, + 297, + 499 + ], + "score": 0.925 + }, + { + "category_id": 1, + "poly": [ + 299, + 636, + 1406, + 636, + 1406, + 760, + 299, + 760 + ], + "score": 0.924 + }, + { + "category_id": 1, + "poly": [ + 297, + 927, + 1406, + 927, + 1406, + 1022, + 297, + 1022 + ], + "score": 0.924 + }, + { + "category_id": 1, + "poly": [ + 298, + 1910, + 1405, + 1910, + 1405, + 2034, + 298, + 2034 + ], + "score": 0.92 + }, + { + "category_id": 1, + "poly": [ + 297, + 520, + 1405, + 520, + 1405, + 615, + 297, + 615 + ], + "score": 0.914 + }, + { + "category_id": 1, + "poly": [ + 297, + 1764, + 1405, + 1764, + 1405, + 1888, + 297, + 1888 + ], + "score": 0.914 + }, + { + "category_id": 1, + "poly": [ + 304, + 229, + 1402, + 229, + 1402, + 323, + 304, + 323 + ], + "score": 0.911 + }, + { + "category_id": 1, + "poly": [ + 298, + 1680, + 1404, + 1680, + 1404, + 1744, + 298, + 1744 + ], + "score": 0.882 + }, + { + "category_id": 1, + "poly": [ + 303, + 1272, + 1402, + 1272, + 1402, + 1369, + 303, + 1369 + ], + "score": 0.877 + }, + { + "category_id": 1, + "poly": [ + 298, + 1042, + 1146, + 1042, + 1146, + 1076, + 298, + 1076 + ], + "score": 0.874 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 854, + 75, + 854, + 105, + 298, + 105 + ], + "score": 0.849 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 861, + 2088, + 861, + 2113, + 835, + 2113 + ], + "score": 0.819 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 852, + 75, + 852, + 105, + 300, + 105 + ], + "score": 0.09 + }, + { + "category_id": 13, + "poly": [ + 1383, + 1193, + 1403, + 1193, + 1403, + 1216, + 1383, + 1216 + ], + "score": 0.26, + "latex": "=" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 857.0, + 73.0, + 857.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 867.0, + 2085.0, + 867.0, + 2125.0, + 831.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 856.0, + 73.0, + 856.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1093.0, + 1406.0, + 1093.0, + 1406.0, + 1138.0, + 292.0, + 1138.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1128.0, + 1405.0, + 1128.0, + 1405.0, + 1166.0, + 321.0, + 1166.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1157.0, + 1405.0, + 1157.0, + 1405.0, + 1197.0, + 319.0, + 1197.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1187.0, + 1382.0, + 1187.0, + 1382.0, + 1226.0, + 320.0, + 1226.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1222.0, + 554.0, + 1222.0, + 554.0, + 1251.0, + 324.0, + 1251.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1390.0, + 1404.0, + 1390.0, + 1404.0, + 1423.0, + 295.0, + 1423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1419.0, + 1406.0, + 1419.0, + 1406.0, + 1455.0, + 321.0, + 1455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1451.0, + 1406.0, + 1451.0, + 1406.0, + 1485.0, + 324.0, + 1485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1478.0, + 1413.0, + 1478.0, + 1413.0, + 1518.0, + 319.0, + 1518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1513.0, + 754.0, + 1513.0, + 754.0, + 1545.0, + 320.0, + 1545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 782.0, + 1406.0, + 782.0, + 1406.0, + 818.0, + 293.0, + 818.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 813.0, + 1408.0, + 813.0, + 1408.0, + 848.0, + 321.0, + 848.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 843.0, + 1408.0, + 843.0, + 1408.0, + 879.0, + 322.0, + 879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 872.0, + 1315.0, + 872.0, + 1315.0, + 910.0, + 320.0, + 910.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1561.0, + 1406.0, + 1561.0, + 1406.0, + 1603.0, + 292.0, + 1603.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1595.0, + 1404.0, + 1595.0, + 1404.0, + 1632.0, + 323.0, + 1632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1627.0, + 505.0, + 1627.0, + 505.0, + 1657.0, + 324.0, + 1657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 344.0, + 1403.0, + 344.0, + 1403.0, + 378.0, + 295.0, + 378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 372.0, + 1409.0, + 372.0, + 1409.0, + 414.0, + 320.0, + 414.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 406.0, + 1410.0, + 406.0, + 1410.0, + 443.0, + 323.0, + 443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 433.0, + 1405.0, + 433.0, + 1405.0, + 475.0, + 321.0, + 475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 469.0, + 570.0, + 469.0, + 570.0, + 499.0, + 323.0, + 499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 635.0, + 1409.0, + 635.0, + 1409.0, + 672.0, + 293.0, + 672.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 668.0, + 1407.0, + 668.0, + 1407.0, + 701.0, + 322.0, + 701.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 697.0, + 1411.0, + 697.0, + 1411.0, + 735.0, + 321.0, + 735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 730.0, + 953.0, + 730.0, + 953.0, + 761.0, + 322.0, + 761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 927.0, + 1408.0, + 927.0, + 1408.0, + 965.0, + 294.0, + 965.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 960.0, + 1406.0, + 960.0, + 1406.0, + 994.0, + 324.0, + 994.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 987.0, + 1362.0, + 987.0, + 1362.0, + 1026.0, + 321.0, + 1026.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1909.0, + 1407.0, + 1909.0, + 1407.0, + 1947.0, + 293.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1940.0, + 1408.0, + 1940.0, + 1408.0, + 1978.0, + 320.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1972.0, + 1410.0, + 1972.0, + 1410.0, + 2008.0, + 321.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 2002.0, + 846.0, + 2002.0, + 846.0, + 2037.0, + 320.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 518.0, + 1405.0, + 518.0, + 1405.0, + 559.0, + 294.0, + 559.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 552.0, + 1403.0, + 552.0, + 1403.0, + 588.0, + 321.0, + 588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 582.0, + 675.0, + 582.0, + 675.0, + 616.0, + 321.0, + 616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1764.0, + 1406.0, + 1764.0, + 1406.0, + 1800.0, + 294.0, + 1800.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1796.0, + 1406.0, + 1796.0, + 1406.0, + 1832.0, + 323.0, + 1832.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1826.0, + 1406.0, + 1826.0, + 1406.0, + 1862.0, + 321.0, + 1862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1856.0, + 466.0, + 1856.0, + 466.0, + 1890.0, + 321.0, + 1890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 226.0, + 1408.0, + 226.0, + 1408.0, + 268.0, + 297.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 255.0, + 1407.0, + 255.0, + 1407.0, + 302.0, + 319.0, + 302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 292.0, + 980.0, + 292.0, + 980.0, + 326.0, + 324.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1676.0, + 1409.0, + 1676.0, + 1409.0, + 1720.0, + 292.0, + 1720.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1711.0, + 1016.0, + 1711.0, + 1016.0, + 1747.0, + 325.0, + 1747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 299.0, + 1274.0, + 1405.0, + 1274.0, + 1405.0, + 1308.0, + 299.0, + 1308.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1304.0, + 1406.0, + 1304.0, + 1406.0, + 1339.0, + 324.0, + 1339.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1334.0, + 1367.0, + 1334.0, + 1367.0, + 1371.0, + 322.0, + 1371.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1039.0, + 1148.0, + 1039.0, + 1148.0, + 1080.0, + 295.0, + 1080.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 10, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 302, + 344, + 1402, + 344, + 1402, + 436, + 302, + 436 + ], + "score": 0.856 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 864, + 2088, + 864, + 2112, + 835, + 2112 + ], + "score": 0.831 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 854, + 75, + 854, + 105, + 298, + 105 + ], + "score": 0.816 + }, + { + "category_id": 1, + "poly": [ + 301, + 229, + 1406, + 229, + 1406, + 323, + 301, + 323 + ], + "score": 0.768 + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 869.0, + 2085.0, + 869.0, + 2124.0, + 831.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 857.0, + 73.0, + 857.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 343.0, + 1407.0, + 343.0, + 1407.0, + 380.0, + 294.0, + 380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 374.0, + 1407.0, + 374.0, + 1407.0, + 408.0, + 323.0, + 408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 402.0, + 967.0, + 402.0, + 967.0, + 440.0, + 323.0, + 440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 229.0, + 1406.0, + 229.0, + 1406.0, + 265.0, + 294.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 258.0, + 1407.0, + 258.0, + 1407.0, + 297.0, + 321.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 289.0, + 989.0, + 289.0, + 989.0, + 326.0, + 321.0, + 326.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 11, + "width": 1700, + "height": 2200 + } + } +] \ No newline at end of file diff --git a/parse/train/fgd7we_uZa6/fgd7we_uZa6.md b/parse/train/fgd7we_uZa6/fgd7we_uZa6.md new file mode 100644 index 0000000000000000000000000000000000000000..f4410724b114d418b8b08e780a9e811e6051eec7 --- /dev/null +++ b/parse/train/fgd7we_uZa6/fgd7we_uZa6.md @@ -0,0 +1,854 @@ +# HOW MUCH OVER-PARAMETERIZATION IS SUFFI-CIENT TO LEARN DEEP RELU NETWORKS? + +Zixiang Chen:˚, Yuan Cao:˚, Difan Zou:˚, Quanquan $\mathbf { G u } ^ { \dagger }$ :Department of Computer Science, University of California, Los Angles {chenzx19,yuancao,knowzou,qgu}@cs.ucla.edu + +# ABSTRACT + +A recent line of research on deep learning focuses on the extremely overparameterized setting, and shows that when the network width is larger than a high degree polynomial of the training sample size $n$ and the inverse of the target error $\epsilon ^ { - 1 }$ , deep neural networks learned by (stochastic) gradient descent enjoy nice optimization and generalization guarantees. Very recently, it is shown that under certain margin assumptions on the training data, a polylogarithmic width condition suffices for two-layer ReLU networks to converge and generalize (Ji and Telgarsky, 2020). However, whether deep neural networks can be learned with such a mild over-parameterization is still an open question. In this work, we answer this question affirmatively and establish sharper learning guarantees for deep ReLU networks trained by (stochastic) gradient descent. In specific, under certain assumptions made in previous work, our optimization and generalization guarantees hold with network width polylogarithmic in $n$ and $\epsilon ^ { - \bar { 1 } }$ . Our results push the study of over-parameterized deep neural networks towards more practical settings. + +# 1 INTRODUCTION + +Deep neural networks have become one of the most important and prevalent machine learning models due to their remarkable power in many real-world applications. However, the success of deep learning has not been well-explained in theory. It remains mysterious why standard optimization algorithms tend to find a globally optimal solution, despite the highly non-convex landscape of the training loss function. Moreover, despite the extremely large amount of parameters, deep neural networks rarely over-fit, and can often generalize well to unseen data and achieve good test accuracy. Understanding these mysterious phenomena on the optimization and generalization of deep neural networks is one of the most fundamental problems in deep learning theory. + +Recent breakthroughs have shed light on the optimization and generalization of deep neural networks (DNNs) under the over-parameterized setting, where the hidden layer width is extremely large (much larger than the number of training examples). It has been shown that with the standard random initialization, the training of over-parameterized deep neural networks can be characterized by a kernel function called neural tangent kernel (NTK) (Jacot et al., 2018; Arora et al., 2019b). In the neural tangent kernel regime (or lazy training regime (Chizat et al., 2019)), the neural network function behaves similarly as its first-order Taylor expansion at initialization (Jacot et al., 2018; Lee et al., 2019; Arora et al., 2019b; Cao and Gu, 2019), which enables feasible optimization and generalization analysis. In terms of optimization, a line of work (Du et al., 2019b; Allen-Zhu et al., 2019b; Zou et al., 2019; Zou and Gu, 2019) proved that for sufficiently wide neural networks, (stochastic) gradient descent (GD/SGD) can successfully find a global optimum of the training loss function. For generalization, Allen-Zhu et al. (2019a); Arora et al. (2019a); Cao and Gu (2019) established generalization bounds of neural networks trained with (stochastic) gradient descent, and showed that the neural networks can learn target functions in certain reproducing kernel Hilbert space (RKHS) or the corresponding random feature function class. + +Although existing results in the neural tangent kernel regime have provided important insights into the learning of deep neural networks, they require the neural network to be extremely wide. + +The typical requirement on the network width is a high degree polynomial of the training sample size $n$ and the inverse of the target error $\epsilon ^ { - 1 }$ . As there still remains a huge gap between such network width requirement and the practice, many attempts have been made to improve the overparameterization condition under various conditions on the training data and model initialization (Oymak and Soltanolkotabi, 2019; Zou and Gu, 2019; Kawaguchi and Huang, 2019; Bai and Lee, 2019). For two-layer ReLU networks, a recent work (Ji and Telgarsky, 2020) showed that when the training data are well separated, polylogarithmic width is sufficient to guarantee good optimization and generalization performances. However, their results cannot be extended to deep ReLU networks since their proof technique largely relies on the fact that the network model is 1-homogeneous, which cannot be satisfied by DNNs. Therefore, whether deep neural networks can be learned with such a mild over-parameterization is still an open problem. + +In this paper, we resolve this open problem by showing that polylogarithmic network width is sufficient to learn DNNs. In particular, unlike the existing works that require the DNNs to behave very close to a linear model (up to some small approximation error), we show that a constant linear approximation error is sufficient to establish nice optimization and generalization guarantees for DNNs. Thanks to the relaxed requirement on the linear approximation error, a milder condition on the network width and tighter bounds on the convergence rate and generalization error can be proved. We summarize our contributions as follows: + +• We establish the global convergence guarantee of GD for training deep ReLU networks based on the so-called NTRF function class (Cao and Gu, 2019), a set of linear functions over random features. Specifically, we prove that GD can learn deep ReLU networks with width $m = { \mathrm { p o l y } } ( R )$ to compete with the best function in NTRF function class, where $R$ is the radius of the NTRF function class. +• We also establish the generalization guarantees for both GD and SGD in the same setting. Specifically, we prove a diminishing statistical error for a wide range of network width $m \in ( \widetilde { \Omega } ( 1 ) , \infty )$ , while most of the previous generalization bounds in the NTK regime only works in the setting where the network width $m$ is much greater than the sample size $n$ . Moreover, we establish $\tilde { \mathcal { O } } ( \epsilon ^ { - 2 } )$ $\tilde { \mathcal { O } } ( \epsilon ^ { - 1 } )$ sample complexities for GD and SGD respectively, which are tighter than existing bounds for learning deep ReLU networks (Cao and Gu, 2019), and match the best results when reduced to the two-layer cases (Arora et al., 2019b; Ji and Telgarsky, 2020). +• We further generalize our theoretical analysis to the scenarios with different data separability assumptions in the literature. We show if a large fraction of the training data are well separated, the best function in the NTRF function class with radius $R = \widetilde { \mathcal { O } } ( 1 )$ can learn the training data with error up to $\epsilon$ . This together with our optimization and generalization guarantees immediately suggests that deep ReLU networks can be learned with network width $\bar { m } = \widetilde { \Omega } ( 1 )$ , which has a logarithmic dependence on the target error $\epsilon$ and sample size $n$ . Compared with existing results (Cao and Gu, 2020; Ji and Telgarsky, 2020) which require all training data points to be separated in the NTK regime, our result is stronger since it allows the NTRF function class to misclassify a small proportion of the training data. + +For the ease of comparison, we summarize our results along with the most related previous results in Table 1, in terms of data assumption, the over-parameterization condition and sample complexity. It can be seen that under data separation assumption (See Sections 4.1, 4.2), our result improves existing results for learning deep neural networks by only requiring a polylog $( n , \epsilon ^ { - 1 } )$ network width. + +Notation. For two scalars $a$ and $b$ , we denote $a \wedge b = \operatorname* { m i n } \{ a , b \}$ . For a vector $\mathbf { x } \in \mathbb { R } ^ { d }$ we use $\| \mathbf { x } \| _ { 2 }$ to denote its Euclidean norm. For a matrix $\mathbf { X }$ , we use $\lVert \mathbf { X } \rVert _ { 2 }$ and $\| \mathbf { X } \| _ { F }$ to denote its spectral norm and Frobenius norm respectively, and denote by $\mathbf { X } _ { i j }$ the entry of $\mathbf { X }$ at the $i$ -th row and ř $j$ -th column. Given two matrices $\mathbf { X }$ and $\mathbf { Y }$ with the same dimension, we denote $\begin{array} { r } { \langle { \bf X } , { \bf Y } \rangle = \sum _ { i , j } { \bf X } _ { i j } \mathbf { \bar { Y } } _ { i j } } \end{array}$ . + +Given a collection of matrices $\mathbf { W } = \left\{ \mathbf { W } _ { 1 } , \cdots , \mathbf { W } _ { L } \right\} \in \bigotimes _ { l = 1 } ^ { L } \mathbb { R } ^ { m _ { l } \times m _ { l } ^ { \prime } }$ and a function $f ( \mathbf { W } )$ over $\otimes _ { l = 1 } ^ { L } \mathbb { R } ^ { m _ { l } \times m _ { l } ^ { \prime } }$ , we define by $\nabla _ { \mathbf { W } _ { l } } f ( \mathbf { W } )$ the partial gradient of $f ( \mathbf { W } )$ with respect to $\mathbf { W } _ { l }$ and denote( $\nabla _ { \mathbf { W } } f ( \mathbf { W } ) = \{ \nabla _ { \mathbf { W } _ { l } } f ( \mathbf { W } ) \} _ { l = 1 } ^ { L }$ . We also denote $\begin{array} { r } { \mathbf { \Theta } \mathcal { B } ( \mathbf { W } , \tau ) = \left\{ \mathbf { W } ^ { \prime } : \operatorname* { m a x } _ { l \in [ L ] } \| \mathbf { W } _ { l } ^ { \prime } - \mathbf { W } _ { l } \| _ { F } \leqslant \tau \right\} } \end{array}$ for $\tau \geqslant 0$ . For two collection of matrices ř ř $\mathbf { A } = \left\{ \mathbf { A } _ { 1 } , \cdots , \mathbf { A } _ { n } \right\}$ , $\mathbf { B } = \{ \mathbf { B } _ { 1 } , \cdots , \mathbf { B } _ { n } \}$ , we denote $\begin{array} { r } { \langle \mathbf { A } , \mathbf { B } \rangle = \sum _ { i = 1 } ^ { n } \langle \mathbf { A } _ { i } , \mathbf { B } _ { i } \rangle } \end{array}$ and $\begin{array} { r } { \| \mathbf { A } \| _ { F } ^ { 2 } = \sum _ { i = 1 } ^ { n } \| \mathbf { A } _ { i } \| _ { F } ^ { 2 } } \end{array}$ . + +Table 1: Comparison of neural network learning results in terms of over-parameterization condition and sample complexity. Here $\epsilon$ is the target error rate, $n$ is the sample size, $L$ is the network depth. + +
AssumptionsAlgorithmOver-para. ConditionSample ComplexityNetwork
Zou et al. (2019)Data nondegenerationGDΩ(n¹2L16(n² + e−1))Deep
This paper Data nondegenerationGDΩ2(L22n12)Deep
Cao and Gu (2020)Data separationGD(e-14).2(L)(-4).eO(L)Deep
Ji and Telgarsky (2020)Data separationGDpolylog(n,∈−1)(-2)Shallow
This paper Data separationGD polylog(n,∈-1) · poly(L)O(e-2). eO(L) Deep
Cao and Gu (2019)Data separationSGDΩ2(∈-14) · poly(L)(∈−²) · poly(L)Deep
Ji and Telgarsky (2020)Data separationSGDpolylog(∈-i)0(-1)Shallow
This paper Data separation SGD polylog(∈−1) · poly(L)O(e−1) · poly(L)Deep
+ +# Algorithm 1 Gradient descent with random initialization + +Input: Number of iterations $T$ , step size $\eta$ , training set $S = \left\{ ( \mathbf { x } _ { i } , y _ { i } ) _ { i = 1 } ^ { n } \right\}$ , initialization Wp0q +for $t = 1 , 2 , \dots , T$ do Update $\mathbf { W } ^ { ( t ) } = \mathbf { W } ^ { ( t - 1 ) } - \eta \cdot \nabla _ { \mathbf { W } } L _ { S } ( \mathbf { W } ^ { ( t - 1 ) } ) .$ . +end for +Output: $\mathbf { W } ^ { ( 0 ) } , \ldots , \mathbf { W } ^ { ( T ) }$ . + +Given two sequences $\left\{ x _ { n } \right\}$ and $\left\{ y _ { n } \right\}$ , we denote $x _ { n } = \mathcal { O } ( y _ { n } )$ if $| x _ { n } | \leqslant C _ { 1 } | y _ { n } |$ for some absolute positive constant $C _ { 1 }$ , $x _ { n } = \Omega ( y _ { n } )$ if $| x _ { n } | \geqslant C _ { 2 } | y _ { n } |$ for some absolute positive constant $C _ { 2 }$ , and $x _ { n } = \Theta ( y _ { n } )$ if $C _ { 3 } | y _ { n } | \leqslant | x _ { n } | \leqslant C _ { 4 } | y _ { n } |$ for some absolute constants $C _ { 3 } , C _ { 4 } > 0$ . We also use $\tilde { \mathcal { O } } ( \cdot )$ , $\widetilde { \Omega } ( \cdot )$ to hide logarithmic factors in $\mathcal { O } ( \cdot )$ and $\Omega ( \cdot )$ respectively. Additionally, we denote $x _ { n } = \operatorname { p o l y } ( y _ { n } )$ if $\dot { x _ { n } } = \mathcal { O } ( y _ { n } ^ { D } )$ for some positive constant $D$ , and $x _ { n } = { \mathrm { p o l y l o g } } ( y _ { n } )$ if $x _ { n } = \mathrm { p o l y } ( \log ( y _ { n } ) )$ . + +# 2 PRELIMINARIES ON LEARNING NEURAL NETWORKS + +In this section, we introduce the problem setting in this paper, including definitions of the neural network and loss functions, and the training algorithms, i.e., GD and SGD with random initialization. + +Neural network function. Given an input $\mathbf { x } \in \mathbb { R } ^ { d }$ , the output of deep fully-connected ReLU network is defined as follows, + +$$ +f _ { \mathbf { W } } ( \mathbf { x } ) = m ^ { 1 / 2 } \mathbf { W } _ { L } \sigma ( \mathbf { W } _ { L - 1 } \cdot \cdot \cdot \sigma ( \mathbf { W } _ { 1 } \mathbf { x } ) \cdot \cdot \cdot ) , +$$ + +where $\mathbf { W } _ { 1 } \in \mathbb { R } ^ { m \times d }$ , $\mathbf { W } _ { 2 } , \cdots , \mathbf { W } _ { L - 1 } \in \mathbb { R } ^ { m \times m } ,$ , $\mathbf { W } _ { L } \in \mathbb { R } ^ { 1 \times m }$ , and $\sigma ( x ) = \operatorname* { m a x } \{ 0 , x \}$ is the ReLU activation function. Here, without loss of generality, we assume the width of each layer is equal to $m$ . Yet our theoretical results can be easily generalized to the setting with unequal width layers, as long as the smallest width satisfies our overparameterization condition. We denote the collection of all weight matrices as $\mathbf { W } = \{ \mathbf { W } _ { 1 } , \dots , \mathbf { W } _ { L } \}$ . + +Loss function. Given training dataset $\{ \mathbf { x } _ { i } , y _ { i } \} _ { i = 1 , \ldots , n }$ with input $\mathbf { x } _ { i } \in \mathbb { R } ^ { d }$ and output $y _ { i } \in \left\{ - 1 , + 1 \right\}$ we define the training loss function as + +$$ +L _ { S } ( \mathbf { W } ) = \frac { 1 } { n } \sum _ { i = 1 } ^ { n } L _ { i } ( \mathbf { W } ) , +$$ + +where $L _ { i } ( \mathbf { W } ) = \ell \big ( y _ { i } f _ { \mathbf { W } } ( \mathbf { x } _ { i } ) \big ) = \log \big ( 1 + \exp ( - y _ { i } f _ { \mathbf { W } } ( \mathbf { x } _ { i } ) ) \big )$ is defined as the cross-entropy loss. + +Algorithms. We consider both GD and SGD with Gaussian random initialization. These two algorithms are displayed in Algorithms 1 and 2 respectively. Specifically, the entries in Wp0q1 , $\mathbf { W } _ { 1 } ^ { ( 0 ) } , \cdots , \mathbf { W } _ { L - 1 } ^ { ( 0 ) }$ are generated independently from univariate Gaussian distribution N p0, 2{mq and the entries in Wp0qL are generated independently from $N ( 0 , 1 / m )$ . For GD, we consider using the full gradient to update the model parameters. For SGD, we use a new training data point in each iteration. + +Note that our initialization method in Algorithms 1, 2 is the same as the widely used He initialization (He et al., 2015). Our neural network parameterization is also consistent with the parameterization used in prior work on NTK (Jacot et al., 2018; Allen-Zhu et al., 2019b; Du et al., 2019a; Arora et al., 2019b; Cao and Gu, 2019). + +# Algorithm 2 Stochastic gradient desecent (SGD) with random initialization + +Input: Number of iterations $n$ , step size $\eta$ , initialization $\mathbf { W } ^ { ( 0 ) }$ +for $i = 1 , 2 , \dots , n$ do Draw $\left( \mathbf { x } _ { i } , y _ { i } \right)$ from $\mathcal { D }$ and compute the corresponding gradient $\nabla _ { \mathbf { W } } L _ { i } ( \mathbf { W } ^ { ( i - 1 ) } )$ . Update $\mathbf { W } ^ { ( i ) } = \mathbf { W } ^ { ( i - 1 ) } - \eta \cdot \nabla _ { \mathbf { W } } L _ { i } ( \mathbf { W } ^ { ( i - 1 ) } )$ . +end for +Output: Randomly choose $\widehat { \bf W }$ uniformly from $\{ \mathbf { W } ^ { ( 0 ) } , \ldots , \mathbf { W } ^ { ( n - 1 ) } \}$ . + +# 3 MAIN THEORY + +In this section, we present the optimization and generalization guarantees of GD and SGD for learning deep ReLU networks. We first make the following assumption on the training data points. + +Assumption 3.1. All training data points satisfy $\| \mathbf { x } _ { i } \| _ { 2 } = 1 , i = 1 , \ldots , n .$ . + +This assumption has been widely made in many previous works (Allen-Zhu et al., 2019b;c; Du et al., 2019b;a; Zou et al., 2019) in order to simplify the theoretical analysis. This assumption can be relaxed to be upper bounded and lower bounded by some constant. + +In the following, we give the definition of Neural Tangent Random Feature (NTRF) (Cao and Gu, 2019), which characterizes the functions learnable by over-parameterized ReLU networks. + +Definition 3.2 (Neural Tangent Random Feature, (Cao and Gu, 2019)). Let $\mathbf { W } ^ { ( 0 ) }$ be the initialization weights, and ${ F _ { { \bf W } ^ { ( 0 ) } , { \bf W } } ( { \bf x } ) } = f _ { { \bf W } ^ { ( 0 ) } } ( { \bf x } ) + \langle \nabla f _ { { \bf W } ^ { ( 0 ) } } ( { \bf x } ) , { \bf W } - { \bf W } ^ { ( 0 ) } \rangle$ be a function with respect to the input $\mathbf { x }$ . Then the NTRF function class is defined as follows + +$$ +{ \mathcal { F } } ( \mathbf { W } ^ { ( 0 ) } , R ) = \big \{ F _ { \mathbf { W } ^ { ( 0 ) } , \mathbf { W } } ( \cdot ) : \mathbf { W } \in { \mathcal { B } } ( \mathbf { W } ^ { ( 0 ) } , R \cdot m ^ { - 1 / 2 } ) \big \} . +$$ + +The function class $F _ { \mathbf { W } ^ { ( 0 ) } , \mathbf { W } } ( \mathbf { x } )$ consists of linear models over random features defined based on the network gradients at the initialization. Therefore it captures the key “almost linear” property of wide neural networks in the NTK regime (Lee et al., 2019; Cao and Gu, 2019). In this paper, we use the NTRF function class as a reference class to measure the difficulty of a learning problem. In what follows, we deliver our main theoretical results regarding the optimization and generalization guarantees of learning deep ReLU networks. We study both GD and SGD with random initialization (presented in Algorithms 1 and 2). + +# 3.1 GRADIENT DESCENT + +The following theorem establishes the optimization guarantee of GD for training deep ReLU networks for binary classification. + +Theorem 3.3. For $\delta , R > 0$ , let $\begin{array} { r } { \epsilon _ { \mathrm { N T R F } } = \operatorname* { i n f } _ { \mathit { F } \in \mathcal { F } ( \mathbf { W } ^ { ( 0 ) } , R ) } n ^ { - 1 } \sum _ { i = 1 } ^ { n } \ell \big [ y _ { i } F ( \mathbf { x } _ { i } ) \big ] } \end{array}$ be the minimum training loss achievable by functions in ${ \mathcal { F } } ( { \mathbf { W } } ^ { ( 0 ) } , R )$ . Then there exists + +$$ +m ^ { * } ( \delta , R , L ) = \widetilde { \mathcal { O } } \big ( \mathrm { p o l y } ( R , L ) \cdot \log ^ { 4 / 3 } ( n / \delta ) \big ) , +$$ + +such that if $m \geqslant m ^ { * } ( \delta , R , L )$ , with probability at least $1 - \delta$ over the initialization, GD with step size $\eta = \Theta ( L ^ { - 1 } m ^ { - 1 } )$ can train a neural network to achieve at most $3 \epsilon _ { \mathrm { N T R F } }$ training loss within $T = \mathcal { O } \big ( L ^ { 2 } R ^ { 2 } \epsilon _ { \mathrm { N T R F } } ^ { - 1 } \big )$ iterations. + +Theorem 3.3 shows that the deep ReLU network trained by GD can compete with the best function in the NTRF function class ${ \mathcal { F } } ( { \mathbf { W } } ^ { ( 0 ) } , R )$ if the network width has a polynomial dependency in $R$ and $L$ and a logarithmic dependency in $n$ and $1 / \delta$ . Moreover, if the NTRF function class with $R = \widetilde { \mathcal { O } } ( 1 )$ can learn the training data well (i.e., NTRF is less than a small target error $\epsilon$ ), a polylogarithmic (in terms of $n$ and $\epsilon ^ { - 1 }$ ) network width suffices to guarantee the global convergence of GD, which directly improves over-paramterization condition in the most related work (Cao and Gu, 2019). Besides, we remark here that this assumption on the NTRF function class can be easily satisfied when the training data admits certain separability conditions, which we discuss in detail in Section 4. + +Compared with the results in (Ji and Telgarsky, 2020) which give similar network width requirements for two-layer networks, our result works for deep networks. Moreover, while Ji and Telgarsky (2020) + +essentially required all training data to be separable by a function in the NTRF function class with a constant margin, our result does not require such data separation assumptions, and allows the NTRF function class to misclassify a small proportion of the training data points∗. + +We now characterize the generalization performance of neural networks trained by GD. We denote $L _ { \mathcal { D } } ^ { 0 - 1 } ( \mathbf { W } ) = \mathbb { E } _ { ( \mathbf { x } , y ) \sim \mathcal { D } } [ \mathbb { 1 } \left\{ f _ { \mathbf { W } } ( \mathbf { x } ) \cdot y < \bar { 0 } \right\} ]$ as the expected 0-1 loss (i.e., expected error) of $f _ { \mathbf { W } } ( \mathbf { x } )$ Theorem 3.4. Under the same assumptions as Theorem 3.3, with probability at least $1 - \delta$ , the iterate $\mathbf { W } ^ { ( t ) }$ of Algorithm 1 satisfies that + +$$ +L _ { \mathcal { D } } ^ { 0 - 1 } ( \mathbf { W } ^ { ( t ) } ) \leqslant 2 L _ { S } ( \mathbf { W } ^ { ( t ) } ) + \widetilde { \mathcal { O } } \left( 4 ^ { L } L ^ { 2 } R \sqrt { \frac { m } { n } } \land \left( \frac { L ^ { 3 / 2 } R } { \sqrt { n } } + \frac { L ^ { 1 1 / 3 } R ^ { 4 / 3 } } { m ^ { 1 / 6 } } \right) \right) + \mathcal { O } \left( \sqrt { \frac { \log ( 1 / \delta ) } { n } } \right) +$$ + +for all $t = 0 , \ldots , T$ . + +Theorem 3.4 shows that the test error of the trained neural network can be bounded by its training error plus statistical error terms. Note that the statistical error terms is in the form of a minimum betweena two terms $4 ^ { L } L ^ { 2 } R \sqrt { m / n }$ and $L ^ { 3 / 2 } R / \sqrt { n } + L ^ { 1 1 / 3 } R ^ { 4 / 3 } / m ^ { 1 / 6 }$ . Depending on the network width $m$ , one of these two terms will be the dominating term and diminishes for large a $n$ : (1) if $m = o ( n )$ , the statistical error will be $4 ^ { L } L ^ { 2 } R { \sqrt { m / n } }$ , and diminishes as $n$ increases; and (2) if $m = \Omega ( n )$ , the statistical error is $L ^ { 3 / 2 } R / \sqrt { n } + L ^ { 1 1 / 3 } R ^ { 4 / 3 } / m ^ { 1 / 6 }$ , and again goes to zero as $n$ increases. Moreover, in this paper we have a specific focus on the setting $m = \widetilde { \mathcal { O } } ( 1 )$ , under which Theorem 3.4 gives a statistical error of order $\widetilde { \mathcal { O } } ( n ^ { - 1 / 2 } )$ . This distinguishes our result from previous generalization bounds for deep networks (Cao and Gu, 2020; 2019), which cannot be applied to the setting $m = \widetilde { \mathcal { O } } ( 1 )$ . + +We note that for two-layer ReLU networks (i.e., $L = 2$ ) Ji and Telgarsky (2020) proves a tighter ${ \cal \tilde { O } } ( 1 / n ^ { 1 / 2 } )$ generalization error bound regardless of the neural networks width $m$ , while our result (Theorem 3.4), in the two-layer case, can only give ${ \cal \tilde { O } } ( 1 / n ^ { 1 / 2 } )$ generalization error bound when $m = \widetilde { \cal O } ( 1 )$ or $m = \widetilde \Omega ( n ^ { 3 } )$ . However, different from our proof technique that basically uses the (approximated) linearity of the neural network function, their proof technique largely relies on the 1-homogeneous property of the neural network, which restricted their theory in two-layer cases. An interesting research direction is to explore whether a ${ \cal \tilde { O } } ( 1 / n ^ { 1 / 2 } )$ generalization error bound can be also established for deep networks (regardless of the network width), which we will leave it as a future work. + +# 3.2 STOCHASTIC GRADIENT DESCENT + +Here we study the performance of SGD for training deep ReLU networks. The following theorem establishes a generalization error bound for the output of SGD. + +Theorem 3.5. For $\delta , R > 0$ , let $\begin{array} { r } { \epsilon _ { \mathrm { N T R F } } = \operatorname* { i n f } _ { \mathit { F } \in \mathcal { F } ( \mathbf { W } ^ { ( 0 ) } , R ) } n ^ { - 1 } \sum _ { i = 1 } ^ { n } \ell \big [ y _ { i } F ( \mathbf { x } _ { i } ) \big ] } \end{array}$ be the minimum training loss achievable by functions in ${ \mathcal { F } } ( { \mathbf { W } } ^ { ( 0 ) } , R )$ . Then there exists + +$$ +m ^ { * } ( \delta , R , L ) = \widetilde { \mathcal { O } } \big ( \mathrm { p o l y } ( R , L ) \cdot \log ^ { 4 / 3 } ( n / \delta ) \big ) , +$$ + +such that if $m \geqslant m ^ { * } ( \delta , R , L )$ , with probability at least $1 - \delta$ , SGD with step size $\eta = \Theta \bigl ( m ^ { - 1 }$ $( L R ^ { 2 } n ^ { - 1 } \epsilon _ { \mathrm { N T R F } } ^ { - 1 } \land L ^ { - 1 } ) \big \rangle$ achieves + +$$ +\mathbb { E } \big [ L _ { \mathcal { D } } ^ { 0 - 1 } ( \widehat { \mathbf { W } } ) \big ] \leqslant \frac { 8 L ^ { 2 } R ^ { 2 } } { n } + \frac { 8 \log ( 2 / \delta ) } { n } + 2 4 \epsilon _ { \mathrm { N T R F } } , +$$ + +where the expectation is taken over the uniform draw of $\widehat { \bf W }$ from $\{ \mathbf { W } ^ { ( 0 ) } , \ldots , \mathbf { W } ^ { ( n - 1 ) } \}$ + +For any $\epsilon > 0$ , Theorem 3.5 gives a $\tilde { \mathcal { O } } ( \epsilon ^ { - 1 } )$ sample complexity for deep ReLU networks trained with SGD to achieve $O ( \epsilon _ { \mathrm { N T R F } } + \epsilon )$ test error. Our result extends the result for two-layer networks proved in (Ji and Telgarsky, 2020) to multi-layer networks. Theorem 3.5 also provides sharper results compared with Allen-Zhu et al. (2019a); Cao and Gu (2019) in two aspects: (1) the sample complexity is improved from $n = \widetilde { \mathcal { O } } ( \epsilon ^ { - 2 } )$ to $n = \widetilde { \mathcal { O } } ( \epsilon ^ { - 1 } )$ ; and (2) the overparamterization condition is improved from $m \geqslant \mathrm { p o l y } ( \epsilon ^ { - 1 } )$ to $m = \widetilde \Omega ( 1 )$ . + +# 4 DISCUSSION ON THE NTRF CLASS + +Our theoretical results in Section 3 rely on the radius (i.e., $R )$ of the NTRF function class ${ \mathcal { F } } ( { \bf W } ^ { ( 0 ) } , R )$ and the minimum training loss achievable by functions in ${ \mathcal { F } } ( { \bf W } ^ { ( 0 ) } , R )$ , i.e., NTRF. Note that a larger $R$ naturally implies a smaller $\epsilon _ { \mathrm { N T R F } }$ , but also leads to worse conditions on $m$ . In this section, for any (arbitrarily small) target error rate $\epsilon > 0$ , we discuss various data assumptions studied in the literature under which our results can lead to $\mathcal { O } ( \epsilon )$ training/test errors, and specify the network width requirement. + +# 4.1 DATA SEPARABILITY BY NEURAL TANGENT RANDOM FEATURE + +In this subsection, we consider the setting where a large fraction of the training data can be linearly separated by the neural tangent random features. The assumption is stated as follows. + +Assumption 4.1. There exists a collection of matrices ř $\begin{array} { r l r } { \mathbf { U } ^ { * } } & { { } = } & { \{ \mathbf { U } _ { 1 } ^ { * } , \cdot \cdot \cdot , \mathbf { U } _ { L } ^ { * } \} } \end{array}$ satisfying $\begin{array} { r } { \sum _ { l = 1 } ^ { L } \| \mathbf { U } _ { l } ^ { * } \| _ { F } ^ { 2 } = 1 } \end{array}$ , such that for at least $( 1 - \rho )$ fraction of training data we have + +$$ +\begin{array} { r } { y _ { i } \big \langle \nabla f _ { \mathbf { W } ^ { ( 0 ) } } ( \mathbf { x } _ { i } ) , \mathbf { U } ^ { * } \big \rangle \gtrsim m ^ { 1 / 2 } \gamma , } \end{array} +$$ + +where $\gamma$ is an absolute positive constant† and $\rho \in [ 0 , 1 )$ + +The following corollary provides an upper bound of NTRF under Assumption 4.1 for some $R$ . + +Proposition 4.2. Under Assumption 4.1, for any $\epsilon , \delta > 0$ , if $R \geqslant C \big [ \log ^ { 1 / 2 } ( n / \delta ) + \log ( 1 / \epsilon ) \big ] / \gamma$ for some absolute constant $C$ , then with probability at least $1 - \delta$ , + +$$ +\epsilon _ { \mathrm { N T R F } } : = \operatorname* { i n f } _ { F \in \mathcal { F } ( \mathbf { W } ^ { ( 0 ) } , R ) } n ^ { - 1 } \sum _ { i = 1 } ^ { n } \ell \bigl ( y _ { i } F ( \mathbf { x } _ { i } ) \bigr ) \leqslant \epsilon + \rho \cdot \mathcal { O } ( R ) . +$$ + +Proposition 4.2 covers the setting where the NTRF function class is allowed to misclassify training data, while most of existing work typically assumes that all training data can be perfectly separated with constant margin (i.e., $\rho = 0$ ) (Ji and Telgarsky, 2020; Shamir, 2020). Our results show that for sufficiently small misclassification ratio $\rho = \mathcal { O } ( \epsilon )$ , we have $\epsilon _ { \mathrm { N T R F } } = \tilde { O } ( \epsilon )$ by choosing the radius parameter $R$ logarithimic in $n , \delta ^ { - 1 }$ , and $\epsilon ^ { - 1 }$ . Substituting this result into Theorems 3.3,˘ 3.4 and 3.5, it can be shown that a neural network with width $\bar { m \mathbf { \bar { \alpha } } } = \mathrm { p o l y } ( L , \log ( n / \delta ) , \log ( 1 / \epsilon ) ) )$ suffices to guarantee good optimization and generalization performances for both GD and SGD. Consequently, we can obtain that the bounds on the test error for GD and SGD are $\widetilde { \mathcal { O } } ( n ^ { - 1 / 2 } )$ and $\tilde { \mathcal { O } } ( n ^ { - 1 } )$ respectively. + +# 4.2 DATA SEPARABILITY BY SHALLOW NEURAL TANGENT MODEL + +In this subsection, we study the data separation assumption made in Ji and Telgarsky (2020) and show that our results cover this particular setting. We first restate the assumption as follows. + +Assumption 4.3. There exists $\overline { { \mathbf { u } } } ( \cdot ) : \mathbb { R } ^ { d } \mathbb { R } ^ { d }$ and $\gamma \geqslant 0$ such that $\| \overline { { \mathbf { u } } } ( \mathbf { z } ) \| _ { 2 } \leqslant 1$ for all $\mathbf { z } \in \mathbb { R } ^ { d }$ , and + +$$ +y _ { i } \int _ { \mathbb { R } ^ { d } } \sigma ^ { \prime } ( \langle \mathbf { z } , \mathbf { x } _ { i } \rangle ) \cdot \langle \overline { { \mathbf { u } } } ( \mathbf { z } ) , \mathbf { x } _ { i } \rangle \mathrm { d } \mu _ { \mathrm { N } } ( \mathbf { z } ) \geqslant \gamma +$$ + +for all $i \in [ n ]$ , where $\mu _ { N } ( \cdot )$ denotes the standard normal distribution. + +Assumption 4.3 is related to the linear separability of the gradients of the first layer parameters at random initialization, where the randomness is replaced with an integral by taking the infinite width limit. Note that similar assumptions have also been studied in (Cao and Gu, 2020; Nitanda and Suzuki, 2019; Frei et al., 2019). The assumption made in (Cao and Gu, 2020; Frei et al., 2019) uses gradients with respect to the second layer weights instead of the first layer ones. In the following, we mainly focus on Assumption 4.3, while our result can also be generalized to cover the setting in (Cao and Gu, 2020; Frei et al., 2019). + +In order to make a fair comparison, we reduce our results for multilayer networks to the two-layer setting. In this case, the neural network function takes form + +$$ +f _ { \mathbf { W } } ( \mathbf { x } ) = m ^ { 1 / 2 } \mathbf { W } _ { 2 } \sigma ( \mathbf { W } _ { 1 } \mathbf { x } ) . +$$ + +Then we provide the following proposition, which states that Assumption 4.3 implies a certain choice of $R = \bar { \mathcal { O } } ( 1 )$ such the the minimum training loss achieved by the function in the NTRF function class ${ \mathcal { F } } ( { \mathbf { W } } ^ { ( 0 ) } , R )$ satisfies $\epsilon _ { \mathrm { N T R F } } = O ( \epsilon )$ , where $\epsilon$ is the target error. + +Proposition 4.4. Suppose the training data satisfies Assumption 4.3. For any “ ‰ $\epsilon , \delta > 0$ , let $R =$ $C \big [ \bar { \log } ( n / \delta ) + \log ( 1 / \bar { \epsilon } ) \big ] / \gamma$ for some large enough absolute constant ˘ $C$ . If the neural network width satisfies $m = \Omega \big ( \log ( n / \delta ) / \gamma ^ { 2 } \big )$ , then with probability at least ˘ $1 - \delta$ , there exist $F _ { \mathbf { W } ^ { ( 0 ) } , \overline { { \mathbf { W } } } } ( \mathbf { x } _ { i } ) \in$ ${ \mathcal { F } } ( { \bf W } ^ { ( 0 ) } , R )$ such that $\ell \big ( y _ { i } \cdot F _ { \mathbf { W } ^ { ( 0 ) } , \overline { { \mathbf { W } } } } ( \mathbf { x } _ { i } ) \big ) \leqslant \epsilon , \forall i \in [ n ] .$ . + +Proposition 4.4 shows that under Assumption 4.3, there exists $F _ { \mathbf { W } ^ { ( 0 ) } , \overline { { \mathbf { W } } } } ( \cdot ) \in \mathcal { F } ( \mathbf { W } ^ { ( 0 ) } , R )$ with $R = \widetilde { \mathcal { O } } ( 1 / \gamma )$ such that the cross-entropy loss of $F _ { \mathbf { W } ^ { ( 0 ) } , \overline { { \mathbf { W } } } } ( \cdot )$ at each training data point is bounded by . This implies that $\epsilon _ { \mathrm { N T R F } } \leqslant \epsilon$ . Moreover, by applying Theorem 3.3 with $L = 2$ , the condition on the neural network width becomes $m = \widetilde \Omega ( 1 / \gamma ^ { 8 } ) ^ { \ddag }$ , which matches the results proved in Ji and Telgarsky (2020). Moreover, plugging these results on $m$ and $\epsilon _ { \mathrm { N T R F } }$ into Theorems 3.4 and 3.5, we can conclude that the bounds on the test error for GD and SGD are $\widetilde { \mathcal { O } } ( n ^ { - 1 / 2 } )$ and $\widetilde { \mathcal { O } } ( n ^ { - 1 } )$ respectively. + +# 4.3 CLASS-DEPENDENT DATA NONDEGENERATION + +In previous subsections, we have shown that under certain data separation conditions NTRF can be sufficiently small while the corresponding NTRF function class has $R$ of order $\widetilde { \mathcal { O } } ( 1 )$ . Thus neural networks with polylogarithmic width enjoy nice optimization and generalization guarantees. In this part, we consider the following much milder data separability assumption made in Zou et al. (2019). + +Assumption 4.5. For all $i \neq i ^ { \prime }$ if $y _ { i } \neq y _ { i ^ { \prime } }$ , then $\| \mathbf { x } _ { i } - \mathbf { x } _ { j } \| _ { 2 } \geqslant \phi$ for some absolute constant $\phi$ . + +In contrast to the conventional data nondegeneration assumption (i.e., no duplicate data points) made in Allen-Zhu et al. (2019b); Du et al. (2019b;a); Zou and Gu $( 2 0 1 9 )$ , Assumption 4.5 only requires that the data points from different classes are nondegenerate, thus we call it class-dependent data nondegeneration. + +We have the following proposition which shows that Assumption 4.5 also implies the existence of a good function that achieves $\epsilon$ training error, in the NTRF function class with a certain choice of $R$ . + +Proposition 4.6. Under Assumption 4.5, if + +$$ +R = \Omega \big ( n ^ { 3 / 2 } \phi ^ { - 1 / 2 } \log ( n \delta ^ { - 1 } \epsilon ^ { - 1 } ) \big ) , \qquad m = \widetilde { \Omega } \big ( L ^ { 2 2 } n ^ { 1 2 } \phi ^ { - 4 } \big ) , +$$ + +we have $\epsilon _ { \mathrm { N T R F } } \leqslant \epsilon$ with probability at least $1 - \delta$ . + +Proposition 4.6 suggests that under Assumption 4.5, in order to guarantee $\epsilon _ { \mathrm { N T R F } } \leqslant \epsilon$ , the size of NTRF function class needs to be $\Omega ( n ^ { 3 / 2 } )$ . Plugging this into Theorems 3.4 and 3.5 leads to vacuous bounds on the test error. This makes sense since Assumption 4.5 basically covers the “random label” setting, which is impossible to be learned with small generalization error. Moreover, we would like to point out our theoretical analysis leads to a sharper over-parameterization condition than that\` ˘ proved in Zou et al. (2019), i.e., $\bar { m = \Omega } \big ( n ^ { 1 4 } L ^ { 1 6 } \phi ^ { - 4 } + n ^ { 1 2 } L ^ { 1 6 } \bar { \phi } ^ { - 4 } \epsilon ^ { - 1 } \big )$ , if the network depth satisfies $L \leqslant \widetilde { \mathcal { O } } ( n ^ { 1 / 3 } \vee \epsilon ^ { - 1 / 6 } )$ . + +# 5 PROOF SKETCH OF THE MAIN THEORY + +In this section, we introduce a key technical lemma in Section 5.1, based on which we provide a proof sketch of Theorems 3.3. The full proof of all our results can be found in the appendix. + +Here we introduce a key technical lemma used in the proof of Theorem 3.3. + +Our proof is based on the key observation that near initialization, the neural network function can be approximated by its first-order Taylor expansion. In the following, we first give the definition of the linear approximation error in a $\tau$ -neighborhood around initialization. + +$$ +\epsilon _ { \mathrm { a p p } } ( \tau ) : = \operatorname* { s u p } _ { \substack { i = 1 , \dots , n \mathbf { W } ^ { \prime } , \mathbf { W } \in \mathcal { B } ( \mathbf { W } ^ { ( 0 ) } , \tau ) } } \big | f _ { \mathbf { W } ^ { \prime } } ( \mathbf { x } _ { i } ) - f _ { \mathbf { W } } ( \mathbf { x } _ { i } ) - \big \langle \nabla f _ { \mathbf { W } } ( \mathbf { x } _ { i } ) , \mathbf { W } ^ { \prime } - \mathbf { W } \big \rangle \big | . +$$ + +If all the iterates of GD stay inside a neighborhood around initialization with small linear approximation error, then we may expect that the training of neural networks should be similar to the training of the corresponding linear model, where standard optimization techniques can be applied. Motivated by this, we also give the following definition on the gradient upper bound of neural networks around initialization, which is related to the Lipschitz constant of the optimization objective function. + +$$ +\begin{array} { r } { M ( \tau ) : = \underset { i = 1 , \dots , n } { \operatorname* { s u p } } \underset { l = 1 , \dots , L } { \operatorname* { s u p } } \underset { \mathbf { W } \in \mathcal { B } ( \mathbf { W } ^ { ( 0 ) } , \tau ) } { \operatorname* { s u p } } \Vert \nabla _ { \mathbf { W } _ { l } } f _ { \mathbf { W } } ( \mathbf { x } _ { i } ) \Vert _ { F } . } \end{array} +$$ + +By definition, we can choose $\mathbf { W } ^ { * } \in { \cal B } ( \mathbf { W } ^ { ( 0 ) } , R m ^ { - 1 / 2 } )$ such that $\begin{array} { r } { n ^ { - 1 } \sum _ { i = 1 } ^ { n } \ell \big ( y _ { i } F _ { \mathbf { W } ^ { ( 0 ) } , \mathbf { W } ^ { * } } ( \mathbf { x } _ { i } ) \big ) = } \end{array}$ NTRF. Then we have the following lemma. + +Lemma 5.1. Set $\eta = \mathcal { O } ( L ^ { - 1 } M ( \tau ) ^ { - 2 } )$ . Suppose that $\mathbf { W } ^ { * } \in { \cal B } ( \mathbf { W } ^ { ( 0 ) } , \tau )$ and $\mathbf { W } ^ { ( t ) } \in { \cal B } ( \mathbf { W } ^ { ( 0 ) } , \tau )$ for all $0 \leqslant t \leqslant t ^ { \prime } - 1$ . Then it holds that + +$$ +\frac { 1 } { t ^ { \prime } } \sum _ { t = 0 } ^ { t ^ { \prime } - 1 } L _ { S } ( \mathbf { W } ^ { ( t ) } ) \leqslant \frac { \| \mathbf { W } ^ { ( 0 ) } - \mathbf { W } ^ { * } \| _ { F } ^ { 2 } - \| \mathbf { W } ^ { ( t ^ { \prime } ) } - \mathbf { W } ^ { * } \| _ { F } ^ { 2 } + 2 t ^ { \prime } \eta \epsilon _ { \mathrm { N T R F } } } { t ^ { \prime } \eta \left( \frac { 3 } { 2 } - 4 \epsilon _ { \mathrm { a p p } } ( \tau ) \right) } . +$$ + +Lemma 5.1 plays a central role in our proof. In specific, if $\mathbf { W } ^ { ( t ) } \in { \cal B } ( \mathbf { W } ^ { ( 0 ) } , \tau )$ for all $t \leqslant t ^ { \prime }$ , then Lemma 5.1 implies that the average training loss is in the same order of NTRF as long as the linear approximation error $\epsilon _ { \mathrm { a p p } } ( \tau )$ is bounded by a positive constant. This is in contrast to the proof in Cao and Gu (2019), where $\bar { \epsilon } _ { \mathrm { a p p } } ( \tau )$ appears as an additive term in the upper bound of the training loss, thus requiring $\epsilon _ { \mathrm { a p p } } ( \tau ) = \bar { \mathcal { O } } ( \epsilon _ { \mathrm { N T R F } } )$ to achieve the same error bound as in Lemma 5.1. Since we can show that $\epsilon _ { \mathrm { a p p } } = \tilde { \mathcal { O } } ( m ^ { - 1 / 6 } )$ (See Section A.1), this suggests that $m = \widetilde { \Omega } ( 1 )$ is sufficient to make the average training loss in the same order of NTRF. + +Compared with the recent results for two-layer networks by Ji and Telgarsky (2020), Lemma 5.1 is proved with different techniques. In specific, the proof by Ji and Telgarsky (2020) relies on the 1-homogeneous property of the ReLU activation function, which limits their analysis to two-layer networks with fixed second layer weights. In comparison, our proof does not rely on homogeneity, and is purely based on the linear approximation property of neural networks and some specific properties of the loss function. Therefore, our proof technique can handle deep networks, and is potentially applicable to non-ReLU activation functions and other network architectures (e.g, Convolutional neural networks and Residual networks). + +# 5.2 PROOF SKETCH OF THEOREM 3.3 + +Here we provide a proof sketch of Theorem 3.3. The proof consists of two steps: (i) showing that all $T$ iterates stay close to initialization, and (ii) bounding the empirical loss achieved by gradient descent. Both of these steps are proved based on Lemma 5.1. + +Proof sketch of Theorem 3.3. Recall that we choose \` ˘ $\begin{array} { r l r } { \mathbf { W } ^ { * } } & { { } \in } & { \mathcal { B } ( \mathbf { W } ^ { ( 0 ) } , R m ^ { - 1 / 2 } ) } \end{array}$ such that $\begin{array} { r } { n ^ { - 1 } \sum _ { i = 1 } ^ { n } \ell \big ( y _ { i } F _ { \mathbf { W } ^ { ( 0 ) } , \mathbf { W } ^ { * } } ( \mathbf { x } _ { i } ) \big ) \ = \ \epsilon _ { \mathrm { N T R F } } } \end{array}$ . We set $\tau = \widetilde { \mathcal { O } } ( L ^ { 1 / 2 } m ^ { - 1 / 2 } R )$ , which is chosen slightly larger than $m ^ { - 1 / 2 } R$ since Lemma 5.1 requires the region $B ( \mathbf { W } ^ { ( 0 ) } , \tau )$ to include both $\mathbf { W } ^ { * }$ and $\{ \mathbf { W } ^ { ( t ) } \} _ { t = 0 , \ldots , t ^ { \prime } }$ . Then by Lemmas 4.1 and B.3 in Cao and $\mathrm { G u }$ (2019) we know that $\epsilon _ { \mathrm { a p p } } ( \tau ) =$ ${ \widetilde O } ( \tau ^ { 4 / 3 } m ^ { 1 / 2 } L ^ { 3 } ) = { \widetilde O } ( R ^ { 4 / 3 } L ^ { 1 1 / 3 } m ^ { - 1 / 6 } )$ . Therefore, we can set $m = \widetilde \Omega ( R ^ { 8 } L ^ { 2 2 } )$ to ensure that $\epsilon _ { \mathrm { a p p } } ( \tau ) \leqslant 1 / 8$ . + +Then we proceed to show that all iterates stay inside the region $B ( \mathbf { W } ^ { ( 0 ) } , \tau )$ . Since the L.H.S. of Lemma 5.1 is strictly positive and $\epsilon _ { \mathrm { a p p } } ( \tau ) \leqslant \dot { 1 / 8 }$ , we have for all $t \leqslant T$ , + +$$ +\| \mathbf { W } ^ { ( 0 ) } - \mathbf { W } ^ { * } \| _ { F } ^ { 2 } - \| \mathbf { W } ^ { ( t ) } - \mathbf { W } ^ { * } \| _ { F } ^ { 2 } \geqslant - 2 t \eta \epsilon _ { \mathrm { N T R F } } , +$$ + +which gives an upper bound of $\| \mathbf { W } ^ { ( t ) } - \mathbf { W } ^ { * } \| _ { F }$ . Then by the choice of $\eta , T$ , triangle inequality, and a simple induction argument, we see that $\| \mathbf { W } ^ { ( t ) } - \mathbf { W } ^ { ( 0 ) } \| _ { F } \leqslant m ^ { - 1 / 2 } R + \sqrt { 2 T \eta \epsilon _ { \mathrm { N T R F } } } \ =$ ${ \widetilde O } ( L ^ { 1 / 2 } m ^ { - 1 / 2 } R )$ , which verifies that $\mathbf { W } ^ { ( t ) } \in { \cal B } ( \mathbf { W } ^ { ( 0 ) } , \tau )$ for $t = 0 , \ldots , T - 1$ . + +The second step is to show that GD can find a neural network with at most $3 \epsilon _ { \mathrm { N T R F } }$ training loss within $T$ iterations. To show this, by the bound given in Lemma 5.1 with $\epsilon _ { \mathrm { a p p } } \leqslant 1 / 8$ , we drop the terms $\| \mathbf { W } ^ { ( t ) } - \mathbf { W } ^ { * } \| _ { F } ^ { 2 }$ and rearrange the inequality to obtain + +$$ +\frac { 1 } { T } \sum _ { t = 0 } ^ { T - 1 } L _ { S } ( \mathbf { W } ^ { ( t ) } ) \leqslant \frac { 1 } { \eta T } \| \mathbf { W } ^ { ( 0 ) } - \mathbf { W } ^ { * } \| _ { F } ^ { 2 } + 2 \epsilon _ { \mathrm { N T R F } } . +$$ + +We see that $T$ is large enough to ensure that the first term in the bound above is smaller than NTRF. This implies that the best iterate among $\mathbf { W } ^ { ( 0 ) } , \ldots , \mathbf { W } ^ { ( T - 1 ) }$ achieves an empirical loss at most $3 \epsilon _ { \mathrm { N T R F } }$ . □ + +# 6 CONCLUSION + +In this paper, we established the global convergence and generalization error bounds of GD and SGD for training deep ReLU networks for the binary classification problem. We show that a network width condition that is polylogarithmic in the sample size $n$ and the inverse of target error $\epsilon ^ { - 1 }$ is sufficient to guarantee the learning of deep ReLU networks. Our results resolve an open question raised in Ji and Telgarsky (2020). + +# ACKNOWLEDGEMENT + +We would like to thank the anonymous reviewers for their helpful comments. ZC, YC and QG are partially supported by the National Science Foundation CAREER Award 1906169, IIS-2008981 and Salesforce Deep Learning Research Award. DZ is supported by the Bloomberg Data Science Ph.D. Fellowship. The views and conclusions contained in this paper are those of the authors and should not be interpreted as representing any funding agencies. + +# REFERENCES + +ALLEN-ZHU, Z., LI, Y. and LIANG, Y. (2019a). Learning and generalization in overparameterized neural networks, going beyond two layers. In Advances in Neural Information Processing Systems. + +ALLEN-ZHU, Z., LI, Y. and SONG, Z. (2019b). A convergence theory for deep learning via over-parameterization. In International Conference on Machine Learning. + +ALLEN-ZHU, Z., LI, Y. and SONG, Z. (2019c). On the convergence rate of training recurrent neural networks. In Advances in Neural Information Processing Systems. + +ARORA, S., DU, S., HU, W., LI, Z. and WANG, R. (2019a). Fine-grained analysis of optimization and generalization for overparameterized two-layer neural networks. In International Conference on Machine Learning. + +ARORA, S., DU, S. S., HU, W., LI, Z., SALAKHUTDINOV, R. and WANG, R. (2019b). On exact computation with an infinitely wide neural net. In Advances in Neural Information Processing Systems. + +BAI, Y. and LEE, J. D. (2019). Beyond linearization: On quadratic and higher-order approximation of wide neural networks. In International Conference on Learning Representations. + +BARTLETT, P. L., FOSTER, D. J. and TELGARSKY, M. J. (2017). Spectrally-normalized margin bounds for neural networks. In Advances in Neural Information Processing Systems. + +BARTLETT, P. L. and MENDELSON, S. (2002). Rademacher and Gaussian complexities: Risk bounds and structural results. Journal of Machine Learning Research 3 463–482. + +CAO, Y. and GU, Q. (2019). Generalization bounds of stochastic gradient descent for wide and deep neural networks. In Advances in Neural Information Processing Systems. + +CAO, Y. and GU, Q. (2020). Generalization error bounds of gradient descent for learning overparameterized deep relu networks. In the Thirty-Fourth AAAI Conference on Artificial Intelligence. +CESA-BIANCHI, N., CONCONI, A. and GENTILE, C. (2004). On the generalization ability of on-line learning algorithms. IEEE Transactions on Information Theory 50 2050–2057. +CHIZAT, L., OYALLON, E. and BACH, F. (2019). On lazy training in differentiable programming. In Advances in Neural Information Processing Systems. +DU, S., LEE, J., LI, H., WANG, L. and ZHAI, X. (2019a). Gradient descent finds global minima of deep neural networks. In International Conference on Machine Learning. +DU, S. S., ZHAI, X., POCZOS, B. and SINGH, A. (2019b). Gradient descent provably optimizes over-parameterized neural networks. In International Conference on Learning Representations. +FREI, S., CAO, Y. and GU, Q. (2019). Algorithm-dependent generalization bounds for overparameterized deep residual networks. In Advances in Neural Information Processing Systems. +HE, K., ZHANG, X., REN, S. and SUN, J. (2015). Delving deep into rectifiers: Surpassing humanlevel performance on imagenet classification. In Proceedings of the IEEE international conference on computer vision. +JACOT, A., GABRIEL, F. and HONGLER, C. (2018). Neural tangent kernel: Convergence and generalization in neural networks. In Advances in neural information processing systems. +JI, Z. and TELGARSKY, M. (2018). Risk and parameter convergence of logistic regression. arXiv preprint arXiv:1803.07300 . +JI, Z. and TELGARSKY, M. (2020). Polylogarithmic width suffices for gradient descent to achieve arbitrarily small test error with shallow relu networks. In International Conference on Learning Representations. +KAWAGUCHI, K. and HUANG, J. (2019). Gradient descent finds global minima for generalizable deep neural networks of practical sizes. In 2019 57th Annual Allerton Conference on Communication, Control, and Computing (Allerton). IEEE. +KRIZHEVSKY, A. ET AL. (2009). Learning multiple layers of features from tiny images . +LEE, J., XIAO, L., SCHOENHOLZ, S. S., BAHRI, Y., SOHL-DICKSTEIN, J. and PENNINGTON, J. (2019). Wide neural networks of any depth evolve as linear models under gradient descent. In Advances in Neural Information Processing Systems. +MOHRI, M., ROSTAMIZADEH, A. and TALWALKAR, A. (2018). Foundations of machine learning. MIT press. +NITANDA, A. and SUZUKI, T. (2019). Refined generalization analysis of gradient descent for over-parameterized two-layer neural networks with smooth activations on classification problems. arXiv preprint arXiv:1905.09870 . +OYMAK, S. and SOLTANOLKOTABI, M. (2019). Towards moderate overparameterization: global convergence guarantees for training shallow neural networks. arXiv preprint arXiv:1902.04674 . +SHALEV-SHWARTZ, S. and BEN-DAVID, S. (2014). Understanding machine learning: From theory to algorithms. Cambridge university press. +SHAMIR, O. (2020). Gradient methods never overfit on separable data. arXiv preprint arXiv:2007.00028 . +VERSHYNIN, R. (2010). Introduction to the non-asymptotic analysis of random matrices. arXiv preprint arXiv:1011.3027 . +ZOU, D., CAO, Y., ZHOU, D. and GU, Q. (2019). Gradient descent optimizes over-parameterized deep ReLU networks. Machine Learning . +ZOU, D. and GU, Q. (2019). An improved analysis of training over-parameterized deep neural networks. In Advances in Neural Information Processing Systems. + +# A PROOF OF MAIN THEOREMS + +In this section we provide the full proof of Theorems 3.3, 3.4 and 3.5. + +# A.1 PROOF OF THEOREM 3.3 + +We first provide the following lemma which is useful in the subsequent proof. + +Lemma A.1 (Lemmas 4.1 and B.3 in Cao and Gu (2019)). There exists an absolute constant $\kappa$ such that, with probability at least $1 - \mathcal { O } ( n L ^ { 2 } ) \exp [ - \Omega ( m \tau ^ { 2 / 3 } L ) ]$ , for any $\tau \leqslant \kappa L ^ { - 6 } [ \log ( m ) ] ^ { - 3 / 2 }$ , i t holds that + +$$ +\epsilon _ { \mathrm { a p p } } ( \tau ) \leqslant \widetilde { \mathcal { O } } \bigl ( \tau ^ { 4 / 3 } L ^ { 3 } m ^ { 1 / 2 } \bigr ) , \quad M ( \tau ) \leqslant \widetilde { \mathcal { O } } ( \sqrt { m } ) . +$$ + +Proof of Theorem 3.3. Recall that $\mathbf { W } ^ { * }$ is chosen such that + +$$ +\frac { 1 } { n } \sum _ { i = 1 } ^ { n } \ell \big ( y _ { i } F _ { \mathbf { W } ^ { ( 0 ) } , \mathbf { W } ^ { * } } ( \mathbf { x } _ { i } ) \big ) = \epsilon _ { \mathrm { N T R F } } +$$ + +and $\mathbf { W } ^ { * } \in { \mathcal { B } } ( \mathbf { W } ^ { ( 0 ) } , R m ^ { - 1 / 2 } )$ . Note that to apply Lemma 5.1, we need the region $B ( \mathbf { W } ^ { ( 0 ) } , \tau )$ to include both $\mathbf { W } ^ { * }$ and $\{ \mathbf { W } ^ { ( t ) } \} _ { t = 0 , \dots , t ^ { \prime } }$ . This motivates us to set $\tau = \widetilde { \mathcal { O } } ( L ^ { 1 / 2 } m ^ { - 1 / 2 } R )$ , which is slightly larger than $m ^ { - 1 / 2 } R$ . With this choice of $\tau$ , by Lemma A.1 we have $\epsilon _ { \mathrm { a p p } } ( \tau ) = \widetilde { \mathcal { O } } ( \tau ^ { 4 / 3 } m ^ { 1 / 2 } L ^ { 3 } ) =$ $\widetilde { \mathcal { O } } ( R ^ { 4 / 3 } L ^ { 1 1 / 3 } m ^ { - 1 / 6 } )$ . Therefore, we can set + +$$ +m = \widetilde \Omega ( R ^ { 8 } L ^ { 2 2 } ) +$$ + +to ensure that $\epsilon _ { \mathrm { a p p } } ( \tau ) \leqslant 1 / 8$ , where $\widetilde { \Omega } ( \cdot )$ hides polylogarithmic dependencies on network depth $L$ , NTRF function class size $R$ , and failure probability parameter $\delta$ . Then by Lemma 5.1, we have with probability at least $1 - \delta$ , we have + +$$ +\| \mathbf { W } ^ { ( 0 ) } - \mathbf { W } ^ { * } \| _ { F } ^ { 2 } - \| \mathbf { W } ^ { ( t ^ { \prime } ) } - \mathbf { W } ^ { * } \| _ { F } ^ { 2 } \geqslant \eta \sum _ { t = 0 } ^ { t ^ { \prime } - 1 } L _ { S } ( \mathbf { W } ^ { ( t ) } ) - 2 t ^ { \prime } \eta \epsilon _ { \mathrm { N T R F } } +$$ + +as long as $\mathbf { W } ^ { ( 0 ) } , \ldots , \mathbf { W } ^ { ( t ^ { \prime } - 1 ) } \in \mathcal { B } ( \mathbf { W } ^ { ( 0 ) } , \tau )$ . In the following proof we choose $\eta = \Theta ( L ^ { - 1 } m ^ { - 1 } )$ and $T = \lceil L R ^ { 2 } m ^ { - 1 } \eta ^ { - 1 } \epsilon _ { \mathrm { N T R F } } ^ { - 1 } \rceil$ . + +We prove the theorem by two steps: 1) we show that all iterates $\{ \mathbf { W } ^ { ( 0 ) } , \cdots , \mathbf { W } ^ { ( T ) } \}$ will stay inside the region $B ( \mathbf { W } ^ { ( 0 ) } , \tau )$ ; and 2) we show that GD can find a neural network with at most $3 \epsilon _ { \mathrm { N T R F } }$ training loss within $T$ iterations. + +All iterates stay inside $B ( \mathbf { W } ^ { ( 0 ) } , \tau )$ . We prove this part by induction. Specifically, given $t ^ { \prime } \leqslant T$ , we assume the hypothesis $\mathbf { W } ^ { ( t ) } \in { \cal B } ( \mathbf { W } ^ { ( 0 ) } , \tau )$ holds for all $t < t ^ { \prime }$ and prove that $\mathbf { W } ^ { ( t ^ { \prime } ) } \in { \cal B } ( \mathbf { W } ^ { ( 0 ) } , \tau )$ First, it is clear that $\mathbf { W } ^ { ( 0 ) } \in { \mathcal { B } } ( \mathbf { W } ^ { ( 0 ) } , \tau )$ . Then by (A.2) and the fact that $L _ { S } ( \mathbf { W } ) \geqslant 0$ , we have + +$$ +\| \mathbf { W } ^ { ( t ^ { \prime } ) } - \mathbf { W } ^ { * } \| _ { F } ^ { 2 } \leqslant \| \mathbf { W } ^ { ( 0 ) } - \mathbf { W } ^ { * } \| _ { F } ^ { 2 } + 2 \eta t ^ { \prime } \epsilon _ { \mathrm { N T R F } } +$$ + +Note that $T = \lceil L R ^ { 2 } m ^ { - 1 } \eta ^ { - 1 } \epsilon _ { \mathrm { N T R F } } ^ { - 1 } \rceil$ and $\mathbf { W } ^ { \ast } \in { \mathcal { B } } ( \mathbf { W } ^ { ( 0 ) } , R \cdot m ^ { - 1 / 2 } )$ , we have + +$$ +\sum _ { l = 1 } ^ { L } \| \mathbf { W } _ { l } ^ { ( t ^ { \prime } ) } - \mathbf { W } _ { l } ^ { * } \| _ { F } ^ { 2 } = \| \mathbf { W } ^ { ( t ^ { \prime } ) } - \mathbf { W } ^ { * } \| _ { F } ^ { 2 } \leqslant C L R ^ { 2 } m ^ { - 1 } , +$$ + +where $C \geqslant 4$ is an absolute constant. Therefore, by triangle inequality, we further have the following for all $l \in [ L ]$ , + +$$ +\begin{array} { r l } & { \| \mathbf { W } _ { l } ^ { ( t ^ { \prime } ) } - \mathbf { W } _ { l } ^ { ( 0 ) } \| _ { F } \leqslant \| \mathbf { W } _ { l } ^ { ( t ^ { \prime } ) } - \mathbf { W } _ { l } ^ { * } \| _ { F } + \| \mathbf { W } _ { l } ^ { ( 0 ) } - \mathbf { W } _ { l } ^ { * } \| _ { F } } \\ & { \qquad \leqslant \sqrt { C L } R m ^ { - 1 / 2 } + R m ^ { - 1 / 2 } } \\ & { \qquad \leqslant 2 \sqrt { C L } R m ^ { - 1 / 2 } . } \end{array} +$$ + +Therefore, it is clear that $\| \mathbf { W } _ { l } ^ { ( t ^ { \prime } ) } - \mathbf { W } _ { l } ^ { ( 0 ) } \| _ { F } \leqslant 2 \sqrt { C L } R m ^ { - 1 / 2 } \leqslant \tau$ based on our choice of $\tau$ previously. This completes the proof of the first part. + +# Convergence of gradient descent. (A.2) implies + +$$ +\| \mathbf { W } ^ { ( 0 ) } - \mathbf { W } ^ { * } \| _ { F } ^ { 2 } - \| \mathbf { W } ^ { ( T ) } - \mathbf { W } ^ { * } \| _ { F } ^ { 2 } \geqslant \eta \bigg ( \sum _ { t = 0 } ^ { T - 1 } L _ { S } ( \mathbf { W } ^ { ( t ) } ) - 2 T \epsilon _ { \mathrm { N T R F } } \bigg ) . +$$ + +Dividing by $\eta T$ on the both sides, we get + +$$ +\frac { 1 } { T } \sum _ { t = 0 } ^ { T - 1 } L _ { S } ( \mathbf { W } ^ { ( t ) } ) \leqslant \frac { \| \mathbf { W } ^ { ( 0 ) } - \mathbf { W } ^ { * } \| _ { F } ^ { 2 } } { \eta T } + 2 \epsilon _ { \mathrm { N T R F } } \leqslant \frac { L R ^ { 2 } m ^ { - 1 } } { \eta T } + 2 \epsilon _ { \mathrm { N T R F } } \leqslant 3 \epsilon _ { \mathrm { N T R F } } , +$$ + +where the second inequality is by the fact that $\mathbf { W ^ { * } } ~ \in ~ \mathcal { B } ( \mathbf { W } ^ { ( 0 ) } , R \cdot m ^ { - 1 / 2 } )$ and the last inequality is by our choices of $T$ and $\eta$ which ensure that $T \eta \ \geqslant \ L R ^ { 2 } m ^ { - 1 } \epsilon _ { \mathrm { N T R F } } ^ { - 1 }$ . Notice that $T = \lceil L R ^ { 2 } m ^ { - 1 } \eta ^ { - 1 } \epsilon _ { \mathrm { N T R F } } ^ { - 1 } \rceil = \mathcal { O } ( L ^ { 2 } R ^ { 2 } \epsilon _ { \mathrm { N T R F } } ^ { - 1 } )$ . This completes the proof of the second part, and we are able to complete the proof. □ + +# A.2 PROOF OF THEOREM 3.4 + +Following Cao and Gu (2020), we first introduce the definition of surrogate loss of the network, which is defined by the derivative of the loss function. + +Definition A.2. We define the empirical surrogate error $\mathcal { E } _ { S } ( \mathbf { W } )$ and population surrogate error $\mathcal { E } _ { \mathcal { D } } ( \mathbf { W } )$ as follows: + +$$ +\mathcal { E } _ { S } ( \mathbf { W } ) : = - \frac { 1 } { n } \sum _ { i = 1 } ^ { n } \ell ^ { \prime } \big [ y _ { i } \cdot f _ { \mathbf { W } } ( x _ { i } ) \big ] , ~ \mathcal { E } _ { \mathcal { D } } ( \mathbf { W } ) : = \mathbb { E } _ { ( \mathbf { x } , y ) \sim \mathcal { D } } \big \{ - \ell ^ { \prime } \big [ y \cdot f _ { \mathbf { W } } ( \mathbf { x } ) \big ] \big \} . +$$ + +The following lemma gives uniform-convergence type of results for $\mathcal { E } _ { S } ( \mathbf { W } )$ utilizing the fact that $- \ell ^ { \prime } ( \cdot )$ is bounded and Lipschitz continuous. + +Lemma A.3. For any $\tilde { R } , \delta > 0$ , suppose that $m = \widetilde \Omega ( L ^ { 1 2 } \widetilde R ^ { 2 } ) \cdot [ \log ( 1 / \delta ) ] ^ { 3 / 2 }$ . Then with probability at least $1 - \delta$ , it holds that + +$$ +\left| \mathcal E _ { \mathcal D } ( \mathbf W ) - \mathcal E _ { S } ( \mathbf W ) \right| \leqslant \widetilde O \left( \operatorname* { m i n } \left\{ 4 ^ { L } L ^ { 3 / 2 } \widetilde R \sqrt { \frac { m } { n } } , \frac { L \widetilde R } { \sqrt { n } } + \frac { L ^ { 3 } \widetilde R ^ { 4 / 3 } } { m ^ { 1 / 6 } } \right\} \right) + { \mathcal O } \left( \sqrt { \frac { \log ( 1 / \delta ) } { n } } \right) +$$ + +for all $\mathbf { W } \in { \mathcal { B } } ( \mathbf { W } ^ { ( 0 ) } , \tilde { R } \cdot m ^ { - 1 / 2 } )$ + +We are now ready to prove Theorem 3.4, which combines the trajectory distance analysis in the proof of Theorem 3.3 with Lemma A.3. + +Proof of Theorem 3.4. With exactly the same proof as Theorem 3.3, by (A.3) and induction we have ${ \mathbf W } ^ { ( 0 ) } , { \mathbf W } ^ { ( 1 ) } , \ldots , { \mathbf W } ^ { ( T ) } \in \mathcal { B } ( { \mathbf W } ^ { ( 0 ) } , \widetilde { R } m ^ { - 1 / 2 } )$ with $\tilde { R } = \mathcal { O } ( \sqrt { L } R )$ . Therefore by Lemma A.3, we have + +$$ +\mathcal { E } _ { \mathcal { D } } ( \mathbf { W } ^ { ( t ) } ) - \mathcal { E } _ { S } ( \mathbf { W } ^ { ( t ) } ) | \leqslant \widetilde { \mathcal { O } } \left( \operatorname* { m i n } \left\{ 4 ^ { L } L ^ { 2 } R \sqrt { \frac { m } { n } } , \frac { L ^ { 3 / 2 } R } { \sqrt { n } } + \frac { L ^ { 1 1 / 3 } R ^ { 4 / 3 } } { m ^ { 1 / 6 } } \right\} \right) + \mathcal { O } \left( \sqrt { \frac { \log ( 1 / \delta ) } { n } } \right) +$$ + +for all $t = 0 , 1 , \ldots , T$ . Note that we have ${ \mathbb { 1 } \left\{ z < 0 \right\} \leqslant - 2 \ell ^ { \prime } ( z ) }$ . Therefore, + +$$ +\begin{array} { r l r } { { \Sigma L _ { \mathcal { D } } ^ { 0 - 1 } ( \mathbf { W } ^ { ( t ) } ) \leqslant 2 \mathcal { E } _ { \mathcal { D } } ( \mathbf { W } ^ { ( t ) } ) } } \\ & { } & { \leqslant 2 L _ { S } ( \mathbf { W } ^ { ( t ) } ) + \tilde { \mathcal { O } } \Bigg ( \operatorname* { m i n } \{ 4 ^ { L } L ^ { 2 } R \sqrt { \frac { m } { n } } , \frac { L ^ { 3 / 2 } R } { \sqrt { n } } + \frac { L ^ { 1 1 / 3 } R ^ { 4 / 3 } } { m ^ { 1 / 6 } } \} \Bigg ) + \mathcal { O } \Bigg ( \sqrt { \frac { \log ( 1 / \delta ) } { n } } \Bigg ) } \end{array} +$$ + +for $t = 0 , 1 , \ldots , T$ , where the last inequality is by $\mathcal { E } _ { S } ( \mathbf { W } ) \leqslant L _ { S } ( \mathbf { W } )$ because $- \ell ^ { \prime } ( z ) \leqslant \ell ( z )$ for all $z \in R$ . This finishes the proof. □ + +# A.3 PROOF OF THEOREM 3.5 + +In this section we provide the full proof of Theorem 3.5. We first give the following result, which is the counterpart of Lemma 5.1 for SGD. Again we pick $\mathbf { W } ^ { * } \in { \cal B } ( \mathbf { W } ^ { ( 0 ) } , R m ^ { - 1 / 2 } )$ such that the loss of the corresponding NTRF model $F _ { \mathbf { W } ^ { ( 0 ) } , \mathbf { W } * } ( \mathbf { x } )$ achieves NTRF. + +Lemma A.4. Set $\eta = \mathcal { O } ( L ^ { - 1 } M ( \tau ) ^ { - 2 } )$ . Suppose that $\mathbf { W } ^ { * } \in { \cal B } ( \mathbf { W } ^ { ( 0 ) } , \tau )$ and $\mathbf { W } ^ { ( n ^ { \prime } ) } \in { \cal B } ( \mathbf { W } ^ { ( 0 ) } , \tau )$ for all $0 \leqslant n ^ { \prime } \leqslant n - 1$ . Then it holds that + +$$ +\lVert \mathbf { W } ^ { ( 0 ) } - \mathbf { W } ^ { * } \rVert _ { F } ^ { 2 } - \lVert \mathbf { W } ^ { ( n ^ { \prime } ) } - \mathbf { W } ^ { * } \rVert _ { F } ^ { 2 } \geqslant \Big ( \frac 3 2 - 4 \epsilon _ { \mathrm { a p p } } ( \tau ) \Big ) \eta \sum _ { i = 1 } ^ { n ^ { \prime } } L _ { i } ( \mathbf { W } ^ { ( i - 1 ) } ) - 2 n \eta \epsilon _ { \mathrm { N T R } } . +$$ + +We introduce a surrogate loss $\mathcal { E } _ { i } ( \mathbf { W } ) = - \ell ^ { \prime } [ y _ { i } \cdot f _ { \mathbf { W } } ( \pmb { x } _ { i } ) ]$ and its population version $\mathcal { E } _ { \mathcal { D } } ( \mathbf { W } ) =$ $\mathbb { E } _ { ( \mathbf { x } , \mathbf { y } ) \sim \mathcal { D } } [ - \ell ^ { \prime } [ y \cdot f _ { \mathbf { W } } \mathbf { \bar { ( } } \mathbf { x ) } ] ]$ , which have been used in (Ji and Telgarsky, 2018; Cao and Gu, 2019; Ji and Telgarsky, 2020). Our proof is based on the application of Lemma A.4 and an online-tobatch conversion argument (Cesa-Bianchi et al., 2004; Cao and Gu, 2019; Ji and Telgarsky, 2020). We introduce a surrogate loss $\mathcal { E } _ { i } ( \mathbf { W } ) = - \ell ^ { \prime } [ y _ { i } \cdot f _ { \mathbf { W } } ( \pmb { x } _ { i } ) ]$ and its population version $\mathcal { E } _ { \mathcal { D } } ( \mathbf { W } ) =$ $\mathbb { E } _ { ( \mathbf { x } , \boldsymbol { y } ) \sim \mathcal { D } } [ - \ell ^ { \prime } ( \boldsymbol { y } \cdot f _ { \mathbf { W } } \mathbf { \bar { ( } } \mathbf { x ) } ) ]$ , which have been used in (Ji and Telgarsky, 2018; Cao and Gu, 2019; Nitanda and Suzuki, 2019; Ji and Telgarsky, 2020). + +Proof of Theorem 3.5. Recall that $\mathbf { W } ^ { * }$ is chosen such that + +$$ +\frac { 1 } { n } \sum _ { i = 1 } ^ { n } \ell \big ( y _ { i } F _ { \mathbf { W } ^ { ( 0 ) } , \mathbf { W } ^ { * } } ( \mathbf { x } _ { i } ) \big ) = \epsilon _ { \mathrm { N T R F } } +$$ + +and $\mathbf { W } ^ { * } \in \mathcal { B } ( \mathbf { W } ^ { ( 0 ) } , R m ^ { - 1 / 2 } )$ . To apply Lemma A.4, we need the region $B ( \mathbf { W } ^ { ( 0 ) } , \tau )$ to include both $\mathbf { W } ^ { * }$ and $\{ \mathbf { W } ^ { ( t ) } \} _ { t = 0 , \ldots , t ^ { \prime } }$ . This motivates us to set $\tau = \tilde { \mathcal { O } } ( L ^ { 1 / 2 } m ^ { - 1 / 2 } R )$ , which is slightly larger than $m ^ { - 1 / 2 } R$ . With this choice of $\tau$ , by Lemma A.1 we have $\epsilon _ { \mathrm { a p p } } ( \tau ) = \widetilde { \mathcal { O } } ( \tau ^ { 4 / 3 } m ^ { 1 / 2 } L ^ { 3 } ) =$ $\widetilde { \mathcal { O } } ( R ^ { 4 / 3 } L ^ { 1 1 / 3 } m ^ { - 1 / 6 } )$ . Therefore, we can set + +$$ +m = \widetilde \Omega ( R ^ { 8 } L ^ { 2 2 } ) +$$ + +to ensure that $\epsilon _ { \mathrm { a p p } } ( \tau ) \leqslant 1 / 8$ , where $\widetilde { \Omega } ( \cdot )$ hides polylogarithmic dependencies on network depth $L$ , NTRF function class size $R$ , and failure probability parameter $\delta$ . + +Then by Lemma A.4, we have with probability at least $1 - \delta$ , + +$$ +\| \mathbf { W } ^ { ( 0 ) } - \mathbf { W } ^ { * } \| _ { F } ^ { 2 } - \| \mathbf { W } ^ { ( n ^ { \prime } ) } - \mathbf { W } ^ { * } \| _ { F } ^ { 2 } \geqslant \eta \sum _ { i = 1 } ^ { n ^ { \prime } } L _ { i } ( \mathbf { W } ^ { ( i - 1 ) } ) - 2 n \eta \epsilon _ { \mathrm { N T R F } } +$$ + +as long as $\mathbf { W } ^ { ( 0 ) } , \ldots , \mathbf { W } ^ { ( n ^ { \prime } - 1 ) } \in \mathcal { B } ( \mathbf { W } ^ { ( 0 ) } , \tau )$ . + +We then prove Theorem 3.5 in two steps: 1) all iterates stay inside $B ( \mathbf { W } ^ { ( 0 ) } , \tau )$ ; and 2) convergence of online SGD. + +All iterates stay inside $B ( \mathbf { W } ^ { ( 0 ) } , \tau )$ . Similar to the proof of Theorem 3.3, we prove this part by induction. Assuming $\mathbf { W } ^ { ( i ) }$ satisfies $\mathbf { W } ^ { ( i ) } \in { \cal B } ( \mathbf { W } ^ { ( 0 ) } , \tau )$ for all $i \leqslant n ^ { \prime } - 1$ , by (A.4), we have + +$$ +\begin{array} { r l r } { { \| \mathbf { W } ^ { ( n ^ { \prime } ) } - \mathbf { W } ^ { * } \| _ { F } ^ { 2 } \leqslant \| \mathbf { W } ^ { ( 0 ) } - \mathbf { W } ^ { * } \| _ { F } ^ { 2 } + 2 n \eta \epsilon _ { \mathrm { N T R F } } } } \\ & { } & { \leqslant L R ^ { 2 } \cdot m ^ { - 1 } + 2 n \eta \epsilon _ { \mathrm { N T R F } } , } \end{array} +$$ + +where the last inequality is by $\mathbf { W } ^ { * } \in { \mathcal { B } } ( \mathbf { W } ^ { ( 0 ) } , R m ^ { - 1 / 2 } )$ . Then by triangle inequality, we further get + +$$ +\begin{array} { r l } & { \| \mathbf { W } _ { l } ^ { ( n ^ { \prime } ) } - \mathbf { W } _ { l } ^ { ( 0 ) } \| _ { F } \leqslant \| \mathbf { W } _ { l } ^ { ( n ^ { \prime } ) } - \mathbf { W } _ { l } ^ { * } \| _ { F } + \| \mathbf { W } _ { l } ^ { * } - \mathbf { W } _ { l } ^ { ( 0 ) } \| _ { F } } \\ & { \qquad \leqslant \| \mathbf { W } ^ { ( n ^ { \prime } ) } - \mathbf { W } ^ { * } \| _ { F } + \| \mathbf { W } _ { l } ^ { * } - \mathbf { W } _ { l } ^ { ( 0 ) } \| _ { F } } \\ & { \qquad \leqslant \mathcal { O } ( \sqrt { L } R m ^ { - 1 / 2 } + \sqrt { n \eta \epsilon _ { \mathrm { N T R F } } } ) . } \end{array} +$$ + +Then by our choices of ? $\eta \ = \ \Theta \big ( m ^ { - 1 } \cdot ( L R ^ { 2 } n ^ { - 1 } \epsilon _ { \mathrm { N T R F } } ^ { - 1 } \wedge L ^ { - 1 } ) \big )$ , we have $\lVert \mathbf { W } ^ { ( n ^ { \prime } ) } - \mathbf { W } ^ { ( 0 ) } \rVert _ { F } \leqslant$ $2 \sqrt { L } R m ^ { - 1 / 2 } \leqslant \tau$ . This completes the proof of the first part. + +Convergence of online SGD. By (A.4), we have + +$$ +\| \mathbf { W } ^ { ( 0 ) } - \mathbf { W } ^ { * } \| _ { F } ^ { 2 } - \| \mathbf { W } ^ { ( n ) } - \mathbf { W } ^ { * } \| _ { F } ^ { 2 } \geqslant \eta \biggl ( \sum _ { i = 1 } ^ { n } L _ { i } ( \mathbf { W } ^ { ( i - 1 ) } ) - 2 n \epsilon _ { \mathrm { N T R F } } \biggr ) . +$$ + +Dividing by $\eta n$ on the both sides and rearranging terms, we get + +$$ +\frac { 1 } { n } \sum _ { i = 1 } ^ { n } L _ { i } ( \mathbf { W } ^ { ( i - 1 ) } ) \leqslant \frac { \| \mathbf { W } ^ { ( 0 ) } - \mathbf { W } ^ { * } \| _ { F } ^ { 2 } - \| \mathbf { W } ^ { ( n ) } - \mathbf { W } ^ { * } \| _ { F } ^ { 2 } } { \eta n } + 2 \epsilon _ { \mathrm { N T R F } } \leqslant \frac { L ^ { 2 } R ^ { 2 } } { n } + 3 \epsilon _ { \mathrm { N T R F } } , +$$ + +where the second inequality follows from facts that ˘ $\mathbf { W } ^ { \ast } \in { \mathcal { B } } ( \mathbf { W } ^ { ( 0 ) } , R \cdot m ^ { - 1 / 2 } )$ and $\eta = \Theta ( m ^ { - 1 } \cdot$ ¨ $( L R ^ { 2 } n ^ { - 1 } \epsilon _ { \mathrm { N I R F } } ^ { - 1 } \wedge L ^ { - 1 } ) \big )$ . By Lemma 4.3 in (Ji and Telgarsky, 2020) and the fact that $\mathscr { E } _ { i } ( \mathbf { W } ^ { ( i - 1 ) } ) \leqslant$ $L _ { i } ( \mathbf { W } ^ { ( i - 1 ) } )$ , we have + +$$ +\begin{array} { r l r } { { \frac { 1 } { n } \sum _ { i = 1 } ^ { n } L _ { \mathcal { D } } ^ { 0 - 1 } ( \mathbf { W } ^ { ( i - 1 ) } ) \leqslant \displaystyle \frac { 2 } { n } \sum _ { i = 1 } ^ { n } \mathcal { E } _ { \mathcal { D } } ( \mathbf { W } ^ { ( i - 1 ) } ) } } \\ & { } & { \leqslant \displaystyle \frac { 8 } { n } \sum _ { i = 1 } ^ { n } \mathcal { E } _ { i } ( \mathbf { W } ^ { ( i - 1 ) } ) + \frac { 8 \log ( 1 / \delta ) } { n } } \\ & { } & { \leqslant \displaystyle \frac { 8 L ^ { 2 } R ^ { 2 } } { n } + \frac { 8 \log ( 1 / \delta ) } { n } + 2 4 \epsilon _ { \mathrm { N T R F } } . } \end{array} +$$ + +This completes the proof of the second part. + +# B PROOF OF RESULTS IN SECTION 4 + +# B.1 PROOF OF PROPOSITION 4.2 + +We first provide the following lemma which gives an upper bound of the neural network output at the initialization. + +Lemma B.1 (Lemma 4.4 in Cao and Gu (2019)). Under Assumption 3.1, if $m \geqslant \bar { C } L \log ( n L / \delta )$ with some absolute constant $\bar { C }$ , with probability at least $1 - \delta$ , we have + +$$ +| f _ { \mathbf { W } ^ { ( 0 ) } } ( \mathbf { x } _ { i } ) | \leqslant C \sqrt { \log ( n / \delta ) } +$$ + +for some absolute constant $C$ . + +Proof of Proposition 4.2. Under Assumption 4.1, we can find a collection of matrices ř ${ \bf U } ^ { * } = $ $\{ \mathbf { U } _ { 1 } ^ { * } , \cdot \cdot \cdot , \mathbf { U } _ { L } ^ { * } \}$ with $\begin{array} { r } { \sum _ { l = 1 } ^ { L } \| \mathbf { U } _ { l } ^ { * } \| _ { F } ^ { 2 } = 1 } \end{array}$ such that $y _ { i } \langle \nabla f _ { \mathbf { W } ^ { ( 0 ) } } ( \mathbf { x } _ { i } ) , \mathbf { U } ^ { * } \rangle \geqslant m ^ { 1 / 2 } \gamma$ for at least a $1 - \rho$ fraction of the training data. By Lemma B.1, for all $i \in [ n ]$ we have $| f _ { \mathbf { W } ^ { ( 0 ) } } ( \mathbf { x } _ { i } ) | \leqslant C \sqrt { \log ( n / \delta ) }$ for some absolute constant $C$ . Then for any positive constant $\lambda$ , we have for at least $1 - \rho$ portion of the data, + +$$ +y _ { i } \big ( f _ { \mathbf { W } ^ { ( 0 ) } } ( \mathbf { x } _ { i } ) + \langle \nabla f _ { \mathbf { W } ^ { ( 0 ) } } , \lambda \mathbf { U } ^ { * } \rangle \big ) \geqslant m ^ { 1 / 2 } \lambda \gamma - C \sqrt { \log ( n / \delta ) } . +$$ + +For this fraction of data, we can set + +$$ +\lambda = \frac { C ^ { \prime } \big [ \log ^ { 1 / 2 } ( n / \delta ) + \log ( 1 / \epsilon ) \big ] } { m ^ { 1 / 2 } \gamma } , +$$ + +where $C ^ { \prime }$ is an absolute constant, and get + +$$ +m ^ { 1 / 2 } \lambda \gamma - C \sqrt { \log ( n / \delta ) } \geqslant \log ( 1 / \epsilon ) . +$$ + +Now we let $\mathbf { W ^ { * } } \ = \ \mathbf { W } ^ { ( 0 ) } + \lambda \mathbf { U ^ { * } }$ . By the choice of $R$ in Proposition 4.2, we have ${ \bf W } ^ { * } \in { \cal U }$ $\mathcal { B } ( \mathbf { W } ^ { ( 0 ) } , R \cdot m ^ { - 1 / 2 } )$ . The above inequality implies that for at least ˘ $1 - \rho$ fraction of data, we have $\ell \left( y _ { i } F _ { \mathbf { W } ^ { ( 0 ) } , \mathbf { W } ^ { * } } ( \mathbf { x } _ { i } ) \right) \leqslant \epsilon .$ . For the rest data, we have + +$$ +y _ { i } \big ( f _ { \mathbf { W } ^ { ( 0 ) } } ( \mathbf { x } _ { i } ) + \langle \nabla f _ { \mathbf { W } ^ { ( 0 ) } } , \lambda \mathbf { U } ^ { * } \rangle \big ) \geqslant - C \sqrt { \log ( n / \delta ) } - \lambda \| \nabla f _ { \mathbf { W } ^ { ( 0 ) } } \| _ { 2 } ^ { 2 } \geqslant - C _ { 1 } R +$$ + +for some absolute positive constant $C _ { 1 }$ , where the last inequality follows from fact that $\| \nabla f _ { \mathbf { W } ^ { ( 0 ) } } \| _ { 2 } =$ $\tilde { \mathcal { O } } ( m ^ { 1 / 2 } )$ (see Lemma A.1 for detail). Then note that we use cross-entropy loss, it follows that for\` ˘ this fraction of training data, we have $\ell \left( y _ { i } F _ { \mathbf { W } ^ { ( 0 ) } , \mathbf { W } ^ { * } } ( \mathbf { x } _ { i } ) \right) \leqslant C _ { 2 } R$ for some constant $C _ { 2 }$ . Combining the results of these two fractions of training data, we can conclude + +$$ +\epsilon _ { \mathrm { N T R F } } \leqslant n ^ { - 1 } \sum _ { i = 1 } ^ { n } \ell \big ( y _ { i } F _ { \mathbf { W } ^ { ( 0 ) } , \mathbf { W } ^ { * } } ( \mathbf { x } _ { i } ) \big ) \leqslant ( 1 - \rho ) \epsilon + \rho \cdot \mathcal { O } ( R ) +$$ + +This completes the proof. + +# B.2 PROOF OF PROPOSITION 4.4 + +Proof of Proposition 4.4. We are going to prove that Assumption 4.3 implies the existence of a good function in the NTRF function class. + +By Definition 3.2 and the definition of cross-entropy loss, our goal is to prove that there exists a collection of matrices $\overline { { \mathbf { W } } } = \{ \overline { { \mathbf { W } } } _ { 1 } , \overline { { \mathbf { W } } } _ { 2 } \}$ satisfying $\operatorname* { m a x } \{ \| \overline { { \mathbf { W } } } _ { 1 } - \mathbf { W } _ { 1 } ^ { ( 0 ) } \| _ { F } , \| \overline { { \mathbf { W } } } _ { 2 } - \mathbf { W } _ { 2 } ^ { ( 0 ) } \| _ { 2 } \} \leqslant$ $R \cdot m ^ { - 1 / 2 }$ such that + +$$ +y _ { i } \cdot \left[ f _ { \mathbf { W } ^ { ( 0 ) } } ( \mathbf { x } _ { i } ) + \langle \nabla _ { \mathbf { W } _ { 1 } } f _ { \mathbf { W } ^ { ( 0 ) } } , \overline { { \mathbf { W } } } _ { 1 } - \mathbf { W } _ { 1 } ^ { ( 0 ) } \rangle + \langle \nabla _ { \mathbf { W } _ { 2 } } f _ { \mathbf { W } ^ { ( 0 ) } } , \overline { { \mathbf { W } } } _ { 2 } - \mathbf { W } _ { 2 } ^ { ( 0 ) } \rangle \right] \geqslant \log ( 2 / \epsilon ) . +$$ + +We first consider $\nabla _ { \mathbf { W } _ { 1 } } f _ { \mathbf { W } ^ { ( 0 ) } } \left( \mathbf { x } _ { i } \right)$ , which has the form + +$$ +\big ( \nabla _ { \mathbf { W } _ { 1 } } f _ { \mathbf { W } ^ { ( 0 ) } } ( \mathbf { x } _ { i } ) \big ) _ { j } = m ^ { 1 / 2 } \cdot w _ { 2 , j } ^ { ( 0 ) } \cdot \sigma ^ { \prime } \big ( \langle \mathbf { w } _ { 1 , j } ^ { ( 0 ) } , \mathbf { x } _ { i } \rangle \big ) \cdot \mathbf { x } _ { i } . +$$ + +Note that wp0q2,j and wp0q1,j are independently generated from $\mathcal { N } ( 0 , 1 / m )$ and $\mathcal { N } ( 0 , 2 \mathbf { I } / m )$ respectively, thus we have $\mathbb { P } ( | w _ { 2 , j } ^ { ( 0 ) } | \geqslant 0 . 4 7 m ^ { - 1 / 2 } ) \geqslant 1 / 2$ . By Hoeffeding’s inequality, we know that with probability at least $1 - \exp ( - m / 8 )$ , there are at least $m / 4$ nodes, whose union is denoted by $s$ , satisfying $| w _ { 2 , j } ^ { ( 0 ) } | \geqslant 0 . 4 7 m ^ { - 1 / 2 }$ . Then we only focus on the nodes in the set $s$ . Note that $\mathbf { W } _ { 1 } ^ { ( 0 ) }$ and $\mathbf { W } _ { 2 } ^ { ( 0 ) }$ are independently generated. Then by Assumption 4.3 and Hoeffeding’s inequality, there exists a function $\overline { { \mathbf { u } } } ( \cdot ) : \mathbb { R } ^ { d } \mathbb { R } ^ { d }$ such that with probability at least $1 - \delta ^ { \prime }$ , + +$$ +\frac { 1 } { | \cal { S } | } \sum _ { j \in \cal { S } } y _ { i } \cdot \langle \overline { { \mathbf { u } } } ( \mathbf { w } _ { 1 , j } ^ { ( 0 ) } ) , \mathbf { x } _ { i } \rangle \cdot \sigma ^ { \prime } ( \langle \mathbf { w } _ { 1 , j } ^ { ( 0 ) } , \mathbf { x } _ { i } \rangle ) \geqslant \gamma - \sqrt { \frac { 2 \log ( 1 / \delta ^ { \prime } ) } { | \cal { S } | } } . +$$ + +Define $\mathbf { v } _ { j } = \overline { { \mathbf { u } } } ( \mathbf { w } _ { 1 , j } ^ { ( 0 ) } ) / w _ { 2 , j }$ if $\lvert w _ { 2 , j } \rvert \geqslant 0 . 4 7 m ^ { - 1 / 2 }$ and $\mathbf { v } _ { j } = \mathbf { 0 }$ otherwise. Then we have + +$$ +\begin{array} { r l } & { ~ \displaystyle \sum _ { j = 1 } ^ { m } y _ { i } \cdot w _ { 2 , j } ^ { ( 0 ) } \cdot \langle \mathbf { v } _ { j } , \mathbf { x } _ { i } \rangle \cdot \sigma ^ { \prime } \big ( \langle \mathbf { w } _ { 1 , j } ^ { ( 0 ) } , \mathbf { x } _ { i } \rangle \big ) = \displaystyle \sum _ { j \in S } y _ { i } \cdot \langle \mathbf { \overline { { u } } } ( \mathbf { w } _ { 1 , j } ^ { ( 0 ) } ) , \mathbf { x } _ { i } \rangle \cdot \sigma ^ { \prime } \big ( \langle \mathbf { w } _ { 1 , j } ^ { ( 0 ) } , \mathbf { x } _ { i } \rangle \big ) } \\ & { \quad \quad \quad \geqslant | S | \gamma - \sqrt { 2 | S | \log ( 1 / \delta ^ { \prime } ) } . } \end{array} +$$ + +Set $\delta = 2 n \delta ^ { \prime }$ and apply union bound, we have with probability at least $1 - \delta / 2$ , + +$$ +\sum _ { j = 1 } ^ { m } y _ { i } \cdot w _ { 2 , j } ^ { ( 0 ) } \cdot \left. \mathbf { v } _ { j } , \mathbf { x } _ { i } \right. \cdot \sigma ^ { \prime } ( \left. \mathbf { w } _ { 1 , j } ^ { ( 0 ) } , \mathbf { x } _ { i } \right. ) \geqslant | S | \gamma - \sqrt { 2 | S | \log ( 2 n / \delta ) } . +$$ + +Therefore, note that with probability at least $1 - \exp ( - m / 8 )$ , we have $| { \mathcal { S } } | \geqslant m / 4$ . Moreover, in Assumption 4.3, by $y _ { i } \in \left\{ \pm 1 \right\}$ and $| \sigma ^ { \prime } ( \cdot ) | , \| \overline { { \mathbf { u } } } ( \cdot ) \| _ { 2 } , \| \mathbf { x } _ { i } \| _ { 2 } \leqslant 1$ for $i = 1 , \ldots , n$ , we see that ˘ $\gamma \leqslant 1$ . Then if $m \geqslant 3 2 \log ( n / \delta ) / \gamma ^ { 2 }$ , with probability at least $1 - \delta / 2 - \exp \big ( - 4 \log ( n / \delta ) / \gamma ^ { 2 } \big ) \geqslant 1 - \delta$ , + +$$ +\sum _ { j = 1 } ^ { m } y _ { i } \cdot w _ { 2 , j } ^ { ( 0 ) } \cdot \langle \mathbf { v } _ { j } , \mathbf { x } _ { i } \rangle \cdot \sigma ^ { \prime } ( \langle \mathbf { w } _ { 1 , j } ^ { ( 0 ) } , \mathbf { x } _ { i } \rangle ) \geqslant | \mathcal { S } | \gamma / 2 . +$$ + +Let $\mathbf { U } = ( \mathbf { v } _ { 1 } , \mathbf { v } _ { 2 } , \cdot \cdot \cdot , \mathbf { v } _ { m } ) ^ { \top } / \sqrt { m | S | }$ , we have + +$$ +y _ { i } \langle \nabla _ { \mathbf { W } _ { 1 } } f _ { \mathbf { W } ^ { ( 0 ) } } ( \mathbf { x } _ { i } ) , \mathbf { U } \rangle = \frac { 1 } { \sqrt { | \mathcal { S } | } } \sum _ { j = 1 } ^ { m } y _ { i } \cdot w _ { 2 , j } ^ { ( 0 ) } \cdot \langle \mathbf { v } _ { j } , \mathbf { x } _ { i } \rangle \cdot \sigma ^ { \prime } \big ( \langle \mathbf { w } _ { 1 , j } ^ { ( 0 ) } , \mathbf { x } _ { i } \rangle \big ) \geqslant \frac { \sqrt { | \mathcal { S } | } \gamma } { 2 } \geqslant \frac { m ^ { 1 / 2 } \gamma } { 4 } , +$$ + +where the last inequality is by the fact that $| { \mathcal S } | \geqslant m / 4$ . Besides, note that by concentration and Gaussian tail bound, we have \` $| f _ { \mathbf { W } ^ { ( 0 ) } } ( \mathbf { x } _ { i } ) | \leqslant C \log ( n / \delta )$ for some absolute constant $C$ . Therefore, let $\overline { { \mathbf { W } } } _ { 1 } = \mathbf { W } _ { 1 } ^ { ( 0 ) } + 4 \big ( \log ( 2 / \epsilon ) + C \log ( n / \delta ) \big ) m ^ { - 1 / 2 } \mathbf { U } / \gamma$ and $\overline { { \mathbf { W } } } _ { 2 } = \mathbf { W } _ { 2 } ^ { ( 0 ) }$ , we have + +$$ +y _ { i } \cdot \left[ f _ { \mathbf { W } ^ { ( 0 ) } } ( \mathbf { x } _ { i } ) + \langle \nabla _ { \mathbf { W } _ { 1 } } f _ { \mathbf { W } ^ { ( 0 ) } } , \overline { { \mathbf { W } } } _ { 1 } - \mathbf { W } _ { 1 } ^ { ( 0 ) } \rangle + \langle \nabla _ { \mathbf { W } _ { 2 } } f _ { \mathbf { W } ^ { ( 0 ) } } , \overline { { \mathbf { W } } } _ { 2 } - \mathbf { W } _ { 2 } ^ { ( 0 ) } \rangle \right] \geqslant \log ( 2 / \epsilon ) . +$$ + +Note that $\| \overline { { \mathbf { u } } } ( \cdot ) \| _ { 2 } ~ \leqslant ~ 1$ , we have $\Vert \mathbf { U } \Vert _ { F } \leqslant 1 / 0 . 4 7 \leqslant 2 . 2$ . Therefore, we further have $\Vert \overline { { \mathbf { W } } } _ { 1 } - \mathbf { \Phi } _ { }$ $\mathbf { W } _ { 1 } ^ { ( 0 ) } \| _ { F } \leqslant 8 . 8 \gamma ^ { - 1 } \big ( \log ( 2 / \epsilon ) + C \log ( n / \delta ) \big ) \cdot m ^ { - 1 / 2 }$ . This implies that $\overline { { \mathbf { W } } } \in \mathfrak { B } ( \mathbf { W } ^ { ( 0 ) } , R )$ with $R = \mathcal { O } \big ( \log \big ( n / ( \delta \epsilon ) \big ) / \gamma \big )$ . Applying the inequality $\ell ( \log ( 2 / \epsilon ) ) \leqslant \epsilon$ on (B.1) gives + +$$ +\ell ( y _ { i } \cdot F _ { \mathbf { W } ^ { ( 0 ) } , \overline { { \mathbf { W } } } } ( \mathbf { x } _ { i } ) ) \leqslant \epsilon +$$ + +for all $i = 1 , \ldots , n$ . This completes the proof. + +# B.3 PROOF OF PROPOSITION 4.6 + +Based on our theoretical analysis, the major goal is to show that there exist certain choices of $R$ and $m$ such that the best NTRF model in the function class ${ \mathcal { F } } ( { \mathbf { W } } ^ { ( 0 ) } , R )$ can achieve $\epsilon$ training error. In this proof, we will prove a stronger results by showing that given the quantities of $R$ and $m$ specificed in Proposition 4.6, there exists a NTRF model with parameter \` ˘ $\mathbf { W } ^ { * }$ that satisfies $\begin{array} { r } { n ^ { - 1 } \sum _ { i = 1 } ^ { n ^ { \bullet } } \ell \bigl ( y _ { i } F _ { \mathbf { W } ^ { ( 0 ) } , \mathbf { W } ^ { * } } ( \mathbf { x } _ { i } ) \bigr ) \leqslant \epsilon } \end{array}$ . + +In order to do so, we consider training the NTRF model via a different surrogate loss function.\` ˘ Specifically, we consider squared hinge loss $\widetilde { \ell } ( x ) = \left( \operatorname* { m a x } \{ \lambda - x , 0 \} \right) ^ { 2 }$ , where $\lambda$ denotes the target margin. In the later proof, we choose $\lambda = \log ( 1 / \epsilon ) + 1$ such that the condition $ { \widetilde { \ell } } ( x ) \leqslant 1$ can guarantee that $x \geqslant \log ( \epsilon )$ . Moreover, we consider using gradient flow, i.e., gradient descent with infinitesimal step size, to train the NTRF model. Therefore, in the remaining part of the proof, we consider optimizing the NTRF parameter W with the loss function + +$$ +\widetilde { L } _ { S } ( \mathbf { W } ) = \frac { 1 } { n } \sum _ { i = 1 } ^ { n } \widetilde { \ell } \big ( y _ { i } F _ { \mathbf { W } ^ { ( 0 ) } , \mathbf { W } } ( \mathbf { x } _ { i } ) \big ) . +$$ + +Moreover, for simplicity, we only consider optimizing parameter in the last hidden layer (i.e., $\mathbf { W } _ { L - 1 }$ ). Then the gradient flow can be formulated as + +$$ +\frac { \mathrm { d } \mathbf { W } _ { L - 1 } ( t ) } { \mathrm { d } t } = - \nabla _ { \mathbf { W } _ { L - 1 } } \widetilde { L } _ { S } ( \mathbf { W } ( t ) ) , \quad \frac { \mathrm { d } \mathbf { W } _ { l } ( t ) } { \mathrm { d } t } = \mathbf { 0 } \quad \mathrm { f o r ~ a n y ~ } l \neq L - 1 . +$$ + +Note that the NTRF model is a linear model, thus by Definition 3.2, we have + +$$ +\begin{array} { r l } & { \nabla _ { \mathbf { W } _ { L - 1 } } \tilde { L } _ { S } \big ( \mathbf { W } ( t ) \big ) = y _ { i } \tilde { \ell } ^ { \prime } \big ( y _ { i } F _ { \mathbf { W } ^ { ( 0 ) } , \mathbf { W } ( t ) } ( \mathbf { x } _ { i } ) \big ) \cdot \nabla _ { \mathbf { W } _ { L - 1 } } F _ { \mathbf { W } ^ { ( 0 ) } , \mathbf { W } ( t ) } ( \mathbf { x } _ { i } ) } \\ & { \qquad = y _ { i } \tilde { \ell } ^ { \prime } \big ( y _ { i } F _ { \mathbf { W } ^ { ( 0 ) } , \mathbf { W } ( t ) } ( \mathbf { x } _ { i } ) \big ) \cdot \nabla _ { \mathbf { W } _ { L - 1 } ^ { ( 0 ) } } f _ { \mathbf { W } ^ { ( 0 ) } } ( \mathbf { x } _ { i } ) . } \end{array} +$$ + +Then it is clear that $\nabla _ { \mathbf { W } _ { L - 1 } } \widetilde { L } _ { S } ( \mathbf { W } ( t ) )$ has fixed direction throughout the optimization. + +In order to prove the convergence of gradient flow and characterize the quantity of $R$ , We first provide the following lemma which gives an upper bound of the NTRF model output at the initialization. + +Then we provide the following lemma which characterizes a lower bound of the Frobenius norm of the partial gradient $\nabla _ { \mathbf { W } _ { L - 1 } } \tilde { L } _ { S } ( \mathbf { W } )$ . + +Lemma B.2 (Lemma B.5 in Zou et al. (2019)). Under Assumptions 3.1 and 4.5, if \` ˘ $m = \widetilde \Omega ( n ^ { 2 } \phi ^ { - 1 } )$ , then for all $t \geqslant 0$ , with probability at least $1 - \exp \big ( - O ( m \phi ^ { \cdot } n ) \big )$ , there exist a positive constant $C$ such that + +$$ +\| \nabla _ { \mathbf { W } _ { L - 1 } } \widetilde { L } _ { S } ( \mathbf { W } ( t ) ) \| _ { F } ^ { 2 } \geqslant \frac { C m \phi } { n ^ { 5 } } \bigg [ \sum _ { i = 1 } ^ { n } \widetilde { \ell } ^ { \prime } \big ( y _ { i } F _ { \mathbf { W } ^ { ( 0 ) } , \mathbf { W } ( t ) } ( \mathbf { x } _ { i } ) \big ) \bigg ] ^ { 2 } . +$$ + +We slightly modified the original version of this lemma since we use different models (we consider NTRF model while Zou et al. (2019) considers neural network model). However, by (B.2), it is clear that the gradient $\nabla \tilde { L } _ { S } ( \mathbf { W } )$ can be regarded as a type of the gradient for neural network model at the initialization (i.e., $\nabla _ { \mathbf { W } _ { L - 1 } } L _ { S } ( \mathbf { W } ^ { ( 0 ) } ) )$ is valid. Now we are ready to present the proof. + +Proof of Proposition 4.6. Recall that we only consider training the last hidden weights, i.e., $\mathbf { W } _ { L - 1 }$ , via gradient flow with squared hinge loss, and our goal is to prove that gradient flow is able to find a NTRF model within the function class ř \` ˘ ${ \mathcal { F } } ( { \mathbf { W } } ^ { ( 0 ) } , R )$ around the initialization, i.e., achieving $\begin{array} { r } { n ^ { - 1 } \sum _ { i = 1 } ^ { n } \ell \big ( y _ { i } F _ { \mathbf { W } ^ { ( 0 ) } , \mathbf { W } ^ { * } } ( \mathbf { x } _ { i } ) \big ) \leqslant \epsilon . } \end{array}$ Let $\mathbf W ( t )$ be the weights at time $t$ , gradient flow implies that + +$$ +\frac { 1 \tilde { L } _ { S } ( \mathbf { W } ( t ) ) } { \mathrm { d } t } = - \| \nabla _ { \mathbf { W } _ { L - 1 } } \tilde { L } _ { S } ( \mathbf { W } ( t ) ) \| _ { F } ^ { 2 } \leqslant - \frac { C m \phi } { n ^ { 5 } } \bigg ( \sum _ { i = 1 } ^ { n } \tilde { \ell } ^ { \prime } \big ( y _ { i } F _ { \mathbf { W } ^ { ( 0 ) } , \mathbf { W } ( t ) } ( \mathbf { x } _ { i } ) \big ) \bigg ) ^ { 2 } = \frac { 4 C m \phi \tilde { L } _ { S } ( \mathbf { W } ( t ) ) } { n ^ { 3 } } , +$$ + +where the first equality is due to the fact that we only train the last hidden layer, the first inequalityb is by Lemma B.2 and the second equality follows from the fact that $\widetilde { \ell } ^ { \prime } ( . ) = - 2 \sqrt { \widetilde { \ell } ( . ) }$ . Solving the above inequality gives + +$$ +\widetilde L _ { S } ( \mathbf { W } ( t ) ) \leqslant \widetilde L _ { S } ( \mathbf { W } ( 0 ) ) \cdot \exp \Bigg ( - \frac { 4 C m \phi t } { n ^ { 3 } } \Bigg ) . +$$ + +Then, set $T = \mathcal { O } \big ( n ^ { 3 } m ^ { - 1 } \phi ^ { - 1 } \cdot \log ( \widetilde { L } _ { S } ( \mathbf { W } ( 0 ) ) / \epsilon ^ { \prime } ) \big )$ and $\epsilon ^ { \prime } = 1 / n$ , we have $\widetilde { L } _ { S } ( \mathbf { W } ( t ) ) \leqslant \epsilon ^ { \prime }$ . Then it follows that ř \` $n ^ { - 1 } \sum _ { i = 1 } ^ { n } \ell \big ( y _ { i } F _ { \mathbf { W } ^ { ( 0 ) } , \mathbf { W } ^ { * } } \big ( \mathbf { x } _ { i } \big ) \big ) \leqslant \epsilon$ $\widetilde { \ell } \left( y _ { i } F _ { \mathbf { W } ^ { ( 0 ) } , \mathbf { W } ( t ) } ( \mathbf { x } _ { i } ) \right) \leqslant 1$ . Therefore, , which implies that $\mathbf { W } ( T )$ is exactly the NTRF model we are looking $y _ { i } F _ { \mathbf { W } ^ { ( 0 ) } , \mathbf { W } ( t ) } ( \mathbf { x } _ { i } ) \geqslant \log ( \epsilon )$ and thus + +The next step is to characterize the distance between $\mathbf { W } ( T )$ and $\mathbf { W } ( 0 )$ in order to characterize the quantity of $R$ . Note that $\| \nabla _ { \mathbf { W } _ { L - 1 } } \widetilde { L } _ { S } ( \mathbf { W } ( t ) ) \| _ { F } ^ { 2 } \geqslant 4 C m \phi \widetilde { L } _ { S } ( \mathbf { W } ( t ) ) / n ^ { 3 }$ , we have + +$$ +\frac { \mathrm { d } \sqrt { \tilde { L } _ { S } ( \mathbf { W } ( t ) ) } } { \mathrm { d } t } = - \frac { \| \nabla _ { \mathbf { W } _ { L - 1 } } \tilde { L } _ { S } ( \mathbf { W } ( t ) ) \| _ { F } ^ { 2 } } { 2 \sqrt { \tilde { L } _ { S } ( \mathbf { W } ( t ) ) } } \leqslant - \| \nabla _ { \mathbf { W } _ { L - 1 } } \tilde { L } _ { S } ( \mathbf { W } ( t ) ) \| _ { F } \cdot \frac { C ^ { 1 / 2 } m ^ { 1 / 2 } \phi ^ { 1 / 2 } } { n ^ { 3 / 2 } } . +$$ + +Taking integral on both sides and rearranging terms, we have + +$$ +\int _ { t = 0 } ^ { T } \| \nabla _ { \mathbf { W } _ { L - 1 } } \tilde { L } _ { S } ( \mathbf { W } ( t ) ) \| _ { F } \mathrm { d } t \leqslant \frac { n ^ { 3 / 2 } } { C ^ { 1 / 2 } m ^ { 1 / 2 } \phi ^ { 1 / 2 } } \cdot \left( \sqrt { \tilde { L } _ { S } ( \mathbf { W } ( 0 ) ) } - \sqrt { \tilde { L } _ { S } ( \mathbf { W } ( t ) ) } \right) . +$$ + +Note that the L.H.S. of the above inequality is an upper bound of $\| \mathbf { W } ( t ) - \mathbf { W } ( 0 ) \| _ { F }$ , we have for any $t \geqslant 0$ , + +$$ +\| \mathbf { W } ( t ) - \mathbf { W } ( 0 ) \| _ { F } \leqslant \frac { n ^ { 3 / 2 } } { C ^ { 1 / 2 } m ^ { 1 / 2 } \phi ^ { 1 / 2 } } \cdot \sqrt { \tilde { L } _ { S } ( \mathbf { W } ( 0 ) ) } = \mathcal { O } \biggl ( \frac { n ^ { 3 / 2 } \log \left( n / ( \delta \epsilon ) \right) } { m ^ { 1 / 2 } \phi ^ { 1 / 2 } } \biggr ) , +$$ + +where the second inequality is by Lemma B.1 and our choice of $\lambda = \log ( 1 / \epsilon ) + 1$ . This implies that there exists a point $\mathbf { W } ^ { * }$ within the class ${ \mathcal { F } } ( { \bf W } ^ { ( 0 ) } , R )$ with + +$$ +R = \mathcal { O } \left( \frac { n ^ { 3 / 2 } \log \left( n / ( \delta \epsilon ) \right) } { \phi ^ { 1 / 2 } } \right) +$$ + +such that + +$$ +\epsilon _ { \mathrm { N T R F } } : = n ^ { - 1 } \sum _ { i = 1 } ^ { n } \ell \big ( y _ { i } F _ { \mathbf { W } ^ { ( 0 ) } , \mathbf { W } ^ { * } } ( \mathbf { x } _ { i } ) \big ) \leqslant \epsilon . +$$ + +Then by Theorem 3.3, and, more specifically, (A.1), we can compute the minimal required neural network width as follows, + +$$ +m = \widetilde \Omega ( R ^ { 8 } L ^ { 2 2 } ) = \widetilde \Omega \left( \frac { L ^ { 2 2 } n ^ { 1 2 } } { \phi ^ { 4 } } \right) . +$$ + +This completes the proof. + +# C PROOF OF TECHNICAL LEMMAS + +Here we provide the proof of Lemmas 5.1, A.3 and A.4. + +# C.1 PROOF OF LEMMA 5.1 + +The detailed proof of Lemma 5.1 is given as follows. + +Proof of Lemma 5.1. Based on the update rule of gradient descent, i.e., $\mathbf { W } ^ { ( t + 1 ) } \ = \ \mathbf { W } ^ { ( t ) } \ - $ $\eta \nabla _ { \mathbf { W } } L _ { S } ( \mathbf { W } ^ { ( t ) } )$ , we have the following calculation. + +$$ +\begin{array} { r l r } { { \| { \mathbf { W } } ^ { ( t ) } - { \mathbf { W } } ^ { * } \| _ { F } ^ { 2 } - \| { \mathbf { W } } ^ { ( t + 1 ) } - { \mathbf { W } } ^ { * } \| _ { F } ^ { 2 } } } \\ & { } & { \qquad = \underbrace { \frac { 2 \eta } { n } \displaystyle \sum _ { i = 1 } ^ { n } \langle { \mathbf { W } } ^ { ( t ) } - { \mathbf { W } } ^ { * } , \nabla { \mathbf { w } } L _ { i } ( { \mathbf { W } } ^ { ( t ) } ) \rangle } _ { I _ { 1 } } - \underbrace { \eta ^ { 2 } \displaystyle \sum _ { l = 1 } ^ { L } \| \nabla { \mathbf { w } } _ { l } L _ { S } ( { \mathbf { W } } ^ { ( t ) } ) \| _ { F } ^ { 2 } } _ { I _ { 2 } } , } \end{array} +$$ + +where the equation follows from the fact that $\begin{array} { r } { L _ { S } ( \mathbf { W } ^ { ( t ) } ) = n ^ { - 1 } \sum _ { i = 1 } ^ { n } { L _ { i } ( \mathbf { W } ^ { ( t ) } ) } } \end{array}$ . In what follows, we first bound the term $I _ { 1 }$ on the R.H.S. of (C.1) by approximating the neural network functions with linear models. By assumption, for $t = 0 , \dots , t ^ { \prime } - \bar { 1 } , \mathbf { W } ^ { ( t ) } , \mathbf { W } ^ { \bar { * } } \in \mathcal { B } ( \mathbf { W } ^ { ( 0 ) } , \tau )$ . Therefore by the definition of $\epsilon _ { \mathrm { a p p } } ( \tau )$ , + +$$ +y _ { i } \boldsymbol { \cdot } \big \langle \nabla f _ { \mathbf { W } ^ { ( t ) } } \big ( \mathbf { x } _ { i } \big ) , \mathbf { W } ^ { ( t ) } - \mathbf { W } ^ { * } \big \rangle \leqslant y _ { i } \boldsymbol { \cdot } \big ( f _ { \mathbf { W } ^ { ( t ) } } \big ( \mathbf { x } _ { i } \big ) - f _ { \mathbf { W } ^ { * } } \big ( \mathbf { x } _ { i } \big ) \big ) + \epsilon _ { \mathrm { a p p } } \big ( \tau \big ) +$$ + +Moreover, we also have + +$$ +\begin{array} { r l } & { 0 \leqslant y _ { i } \cdot \big ( f _ { \mathbf { W } ^ { * } } ( \mathbf { x } _ { i } ) - f _ { \mathbf { W } ^ { ( 0 ) } } ( \mathbf { x } _ { i } ) - \langle \nabla f _ { \mathbf { W } ^ { ( 0 ) } } ( \mathbf { x } _ { i } ) , \mathbf { W } ^ { * } - \mathbf { W } ^ { ( 0 ) } \rangle \big ) + \epsilon _ { \mathrm { a p p } } ( \tau ) } \\ & { \quad = y _ { i } \cdot \big ( f _ { \mathbf { W } ^ { * } } ( \mathbf { x } _ { i } ) - F _ { \mathbf { W } ^ { ( 0 ) } , \mathbf { W } ^ { * } } ( \mathbf { x } _ { i } ) \big ) + \epsilon _ { \mathrm { a p p } } ( \tau ) , } \end{array} +$$ + +where the equation follows by the definition of $F _ { \mathbf { W } ^ { ( 0 ) } , \mathbf { W } ^ { * } } ( \mathbf { x } )$ . Adding (C.3) to (C.2) and canceling the terms $y _ { i } \cdot f _ { \mathbf { W } ^ { * } } ( \mathbf { x } _ { i } )$ , we obtain that + +$$ +y _ { i } \cdot \langle \nabla f _ { \mathbf { W } ^ { ( t ) } } ( \mathbf { x } _ { i } ) , \mathbf { W } ^ { ( t ) } - \mathbf { W } ^ { * } \rangle \leqslant y _ { i } \cdot \left( f _ { \mathbf { W } ^ { ( t ) } } ( \mathbf { x } _ { i } ) - F _ { \mathbf { W } ^ { ( 0 ) } , \mathbf { W } ^ { * } } ( \mathbf { x } _ { i } ) \right) + 2 \epsilon _ { \mathrm { a p p } } ( \tau ) . +$$ + +We can now give a lower bound on first term on the R.H.S. of (C.1). For $i = 1 , \ldots , n$ , applying the chain rule on the loss function gradients and utilizing (C.4), we have + +$$ +\begin{array} { r l r } { \langle \mathbf { W } ^ { ( t ) } - \mathbf { W } ^ { * } , \nabla _ { \mathbf { W } } L _ { i } ( \mathbf { W } ^ { ( t ) } ) \rangle = \ell ^ { \prime } \big ( y _ { i } f _ { \mathbf { W } ^ { ( t ) } } ( \mathbf { x } _ { i } ) \big ) \cdot y _ { i } \cdot \big \langle \mathbf { W } ^ { ( t ) } - \mathbf { W } ^ { * } , \nabla _ { \mathbf { W } } f _ { \mathbf { W } ^ { ( t ) } } ( \mathbf { x } _ { i } ) \big \rangle } & { } & \\ { \geqslant \ell ^ { \prime } \big ( y _ { i } f _ { \mathbf { W } ^ { ( t ) } } ( \mathbf { x } _ { i } ) \big ) \cdot \big ( y _ { i } f _ { \mathbf { W } ^ { ( t ) } } ( \mathbf { x } _ { i } ) - y _ { i } f _ { \mathbf { W } ^ { * } } ( \mathbf { x } _ { i } ) + 2 \epsilon _ { \mathrm { a p p } } ( \tau ) \big ) } & { } & \\ { \geqslant \big ( 1 - 2 \epsilon _ { \mathrm { a p p } } ( \tau ) \big ) \ell \big ( y _ { i } f _ { \mathbf { W } ^ { ( t ) } } ( \mathbf { x } _ { i } ) \big ) - \ell \big ( y _ { i } F _ { \mathbf { W } ^ { ( 0 ) } , \mathbf { W } ^ { * } } ( \mathbf { x } _ { i } ) \big ) , \quad ( \mathrm { C } _ { i } - \epsilon ) \big ( \ell ^ { \prime } \big ( x _ { i } f _ { \mathbf { W } ^ { ( 0 ) } , \mathbf { W } ^ { * } } ( \mathbf { x } _ { i } ) \big ) \big ) \enspace . } & { } \end{array} +$$ + +where the first inequality is by the fact that \` $\ell ^ { \prime } \left( y _ { i } f _ { \mathbf { W } ^ { \left( t \right) } } \left( \mathbf { x } _ { i } \right) \right) < 0$ , the second inequality is by convexity of $\ell ( \cdot )$ and the fact that $- \ell ^ { \prime } \left( y _ { i } f _ { \mathbf { W } ^ { ( t ) } } ( \mathbf { x } _ { i } ) \right) \leqslant \ell \left( y _ { i } f _ { \mathbf { W } ^ { ( t ) } } ( \mathbf { x } _ { i } ) \right)$ . + +We now proceed to bound the term $I _ { 2 }$ on the R.H.S. of (C.1). Note that we have $\ell ^ { \prime } ( \cdot ) < 0$ , and therefore the Frobenius norm of the gradient $\nabla _ { \mathbf { W } _ { l } } L _ { S } ( \mathbf { W } ^ { ( t ) } )$ can be upper bounded as follows, + +$$ +\begin{array} { r l } { \| \nabla _ { \mathbf { W } _ { l } } L _ { S } ( \mathbf { W } ^ { ( t ) } ) \| _ { F } = \displaystyle \left\| \frac { 1 } { n } \sum _ { i = 1 } ^ { n } \ell ^ { \prime } \big ( y _ { i } f _ { \mathbf { W } ^ { ( t ) } } ( \mathbf { x } _ { i } ) \big ) \nabla _ { \mathbf { W } _ { l } } f _ { \mathbf { W } ^ { ( t ) } } ( \mathbf { x } _ { i } ) \right\| _ { F } } & { } \\ { \leqslant \displaystyle \frac { 1 } { n } \sum _ { i = 1 } ^ { n } - \ell ^ { \prime } \big ( y _ { i } f _ { \mathbf { W } ^ { ( t ) } } ( \mathbf { x } _ { i } ) \big ) \cdot \| \nabla _ { \mathbf { W } _ { l } } f _ { \mathbf { W } ^ { ( t ) } } ( \mathbf { x } _ { i } ) \| _ { F } , } & { } \end{array} +$$ + +where the inequality follows by triangle inequality. We now utilize the fact that cross-entropy loss satisfies the inequalities $- \ell ^ { \prime } ( \cdot ) \overset { \cdot } { \leqslant } \ell ( \cdot )$ and $- \bar { \ell } ^ { \prime } ( \cdot ) \dot { \leqslant } 1$ . Therefore by definition of $M ( \tau )$ , we have + +$$ +\begin{array} { r l r } { { \sum _ { l = 1 } ^ { L } \| \nabla _ { \mathbf { W } _ { l } } L _ { S } ( \mathbf { W } ^ { ( t ) } ) \| _ { F } ^ { 2 } \leqslant \mathcal { O } \big ( L M ( \tau ) ^ { 2 } \big ) \cdot \bigg ( \frac { 1 } { n } \sum _ { i = 1 } ^ { n } - \ell ^ { \prime } \big ( y _ { i } f _ { \mathbf { W } ^ { ( t ) } } ( \mathbf { x } _ { i } ) \big ) \bigg ) ^ { 2 } } } \\ & { } & { \leqslant \mathcal { O } \big ( L M ( \tau ) ^ { 2 } \big ) \cdot L _ { S } ( \mathbf { W } ^ { ( t ) } ) . } \end{array} +$$ + +Then we can plug (C.5) and (C.6) into (C.1) and obtain + +$$ +\lVert \mathbf { W } ^ { ( t ) } - \mathbf { W } ^ { * } \rVert _ { F } ^ { 2 } - \lVert \mathbf { W } ^ { ( t + 1 ) } - \mathbf { W } ^ { * } \rVert _ { F } ^ { 2 } +$$ + +$$ +\begin{array} { r l } { { } } & { { \displaystyle \geqslant \frac { 2 \eta } { n } \sum _ { i = 1 } ^ { n } \left[ ( 1 - 2 \epsilon _ { \mathrm { a p p } } ( \tau ) ) \ell \big ( y _ { i } f _ { \mathbf { W } ^ { ( t ) } } ( \mathbf { x } _ { i } ) \big ) - \ell \big ( y _ { i } F _ { \mathbf { W } ^ { ( 0 ) } , \mathbf { W } ^ { * } } \big ( \mathbf { x } _ { i } \big ) \big ) \right] - \mathcal { O } \big ( \eta ^ { 2 } L M ( \tau ) ^ { 2 } \big ) \cdot L _ { S } ( \mathbf { W } ^ { ( t ) } ) } } \\ { { } } & { { \displaystyle \geqslant \left[ \frac { 3 } { 2 } - 4 \epsilon _ { \mathrm { a p p } } ( \tau ) \right] \eta L _ { S } ( \mathbf { W } ^ { ( t ) } ) - \frac { 2 \eta } { n } \sum _ { i = 1 } ^ { n } \ell \big ( y _ { i } F _ { \mathbf { W } ^ { ( 0 ) } , \mathbf { W } ^ { * } } \big ( \mathbf { x } _ { i } \big ) \big ) , } } \end{array} +$$ + +where the last inequality is by $\eta = \mathcal { O } ( L ^ { - 1 } M ( \tau ) ^ { - 2 } )$ and merging the third term on the second line into the first term. Taking telescope sum from ř \` ˘ $t = 0$ to $t = t ^ { \prime } - 1$ and plugging in the definition 1n ni“1 \` yiFWp0q,W˚ pxiq “ NTRF completes the proof. □ + +# C.2 PROOF OF LEMMA A.3 + +Proof of Lemma A.3. We first denote $\mathcal { W } = \mathcal { B } ( \mathbf { W } ^ { ( 0 ) } , \widetilde { R } \cdot m ^ { - 1 / 2 } )$ , and define the corresponding neural network function class and surrogate loss function class as ${ \mathcal { F } } = \{ f _ { \mathbf { W } } ( \mathbf { x } ) : \mathbf { W } \in \mathbf { \bar { \mathcal { W } } } \}$ and $\mathcal { G } = \left\{ - \ell [ y \cdot f _ { \mathbf { W } } ( \mathbf { x } ) ] : \mathbf { W } \in \mathcal { W } \right\}$ respectively. + +By standard uniform convergence results in terms of empirical Rademacher complexity (Bartlett and Mendelson, 2002; Mohri et al., 2018; Shalev-Shwartz and Ben-David, 2014), with probability at least $1 - \delta$ we have + +$$ +\begin{array} { l } { \displaystyle \operatorname* { s u p } _ { \mathbf { w } \in \mathcal { W } } | \mathcal { E } _ { S } ( \mathbf { W } ) - \mathcal { E } _ { \mathcal { D } } ( \mathbf { W } ) | = \operatorname* { s u p } _ { \mathbf { w } \in \mathcal { W } } \bigg \vert - \frac { 1 } { n } \displaystyle \sum _ { i = 1 } ^ { n } \ell ^ { \prime } \big [ y _ { i } \cdot f _ { \mathbf { W } } ( \pmb { x } _ { i } ) \big ] + \mathbb { E } _ { ( \mathbf { x } , y ) \sim \mathcal { D } } \ell ^ { \prime } \big [ y \cdot f _ { \mathbf { W } } ( \mathbf { x } ) \big ] \bigg \vert } \\ { \leqslant 2 \widehat { \mathfrak { R } } _ { n } ( \mathcal { G } ) + C _ { 1 } \sqrt { \frac { \log ( 1 / \delta ) } { n } } , } \end{array} +$$ + +where $C _ { 1 }$ is an absolute constant, and + +$$ +\widehat { \pmb { \mathscr { R } } } _ { n } ( { \pmb { \mathscr { G } } } ) = \mathbb { E } _ { \xi _ { i } \sim \mathrm { U n i f } ( \{ \pmb { \mathscr { \pmb { \Sigma } } } \bot \} ) } \left\{ \operatorname* { s u p } _ { \mathbf { W } \in \mathcal { W } } \frac { 1 } { n } \sum _ { i = 1 } ^ { n } \xi _ { i } \ell ^ { \prime } \big [ y _ { i } \cdot f _ { \mathbf { W } } ( \pmb { x } _ { i } ) \big ] \right\} +$$ + +is the empirical Rademacher complexity of the function class $\mathcal { G }$ . We now provide two bounds on $\widehat { \mathfrak { R } } _ { n } ( { \mathcal { G } } )$ , whose combination gives the final result of Lemma A.3. First, by Corollary 5.35 in (Vershynin, 2010), with probability at least $1 - L \cdot \exp ( - \Omega ( m ) )$ , $\| \mathbf { W } _ { l } ^ { ( 0 ) } \| _ { 2 } \leqslant 3$ for all $l \in [ L ]$ . Therefore for all $\mathbf { W } \in \mathcal { W }$ , we have $\| \mathbf { W } _ { l } \| _ { 2 } \leqslant 4$ . Moreover, standard concentration inequalities on the norm of the first row of $\mathbf { W } _ { l } ^ { ( 0 ) }$ also implies that $\Vert \mathbf { W } _ { l } \Vert _ { 2 } \geqslant 0 . 5$ for all $\mathbf { W } \in \mathcal { W }$ and $l \in [ L ]$ . Therefore, an adaptation of the bound in (Bartlett et al., $2 0 1 7 ) ^ { \ P }$ gives + +$$ +\begin{array} { r l } & { \boldsymbol { \widehat { \mathfrak { N } } } _ { n } ( \mathcal { F } ) \leqslant \boldsymbol { \widetilde { \mathcal { O } } } \left( \underset { \mathbf { W } \in \mathcal { W } } { \operatorname* { s u p } } \left\{ \frac { m ^ { 1 / 2 } } { \sqrt { n } } \cdot \left[ \underset { l = 1 } { \overset { L } { \prod } } \lVert \mathbf { W } _ { l } \rVert _ { 2 } \right] \cdot \left[ \underset { l = 1 } { \overset { L } { \sum } } \frac { \lVert \mathbf { W } _ { l } ^ { \top } - \mathbf { W } _ { l } ^ { ( 0 ) \top } \rVert _ { 2 , 1 } ^ { 2 / 3 } } { \lVert \mathbf { W } _ { l } \rVert _ { 2 } ^ { 2 / 3 } } \right] ^ { 3 / 2 } \right\} \right) } \\ & { \qquad \leqslant \boldsymbol { \widetilde { \mathcal { O } } } \left( \underset { \mathbf { W } \in \mathcal { W } } { \operatorname* { s u p } } \left\{ \frac { 4 ^ { L } m ^ { 1 / 2 } } { \sqrt { n } } \cdot \left[ \underset { l = 1 } { \overset { L } { \sum } } ( \sqrt { m } \cdot \lVert \mathbf { W } _ { l } ^ { \top } - \mathbf { W } _ { l } ^ { ( 0 ) \top } \rVert _ { F } ) ^ { 2 / 3 } \right] ^ { 3 / 2 } \right\} \right) } \\ & { \qquad \leqslant \boldsymbol { \widetilde { \mathcal { O } } } \left( 4 ^ { L } L ^ { 3 / 2 } \boldsymbol { \widetilde { R } } \cdot \sqrt { \frac { m } { n } } \right) . } \end{array} +$$ + +We now derive the second bound on $\widehat { \mathfrak { R } } _ { n } ( { \mathcal G } )$ , which is inspired by the proof provided in (Cao and Gu, 2020). Since $y \in \{ + 1 , 1 \}$ , $| \ell ^ { \prime } ( z ) | \leqslant 1$ and $\ell ^ { \prime } ( z )$ is 1-Lipschitz continuous, by standard empirical Rademacher complexity bounds (Bartlett and Mendelson, 2002; Mohri et al., 2018; Shalev-Shwartz and Ben-David, 2014), we have + +$$ +\widehat { \mathfrak { R } } _ { n } ( \mathcal { G } ) \leqslant \widehat { \mathfrak { R } } _ { n } ( \mathcal { F } ) = \mathbb { E } _ { \xi _ { i } \sim \mathrm { U n i f } ( \{ \pm 1 \} ) } \left[ \ * { \operatorname* { s u p } _ { \mathbf { W } \in \mathcal { W } } \frac { 1 } { n } \sum _ { i = 1 } ^ { n } \xi _ { i } f _ { \mathbf { W } } ( \pmb x _ { i } ) } \right] , +$$ + +where $\textstyle { \widehat { \mathfrak { R } } } _ { n } ( { \mathcal { F } } )$ is the empirical Rademacher complexity of the function class $\mathcal { F }$ . We have + +$$ +\widehat { \mathfrak { R } } _ { n } [ F ] \leqslant \underbrace { \mathbb { E } _ { \xi } \Bigg \{ \underbrace { \operatorname* { s u p } _ { \mathbf { W } \in \mathcal { W } } \frac { 1 } { n } \sum _ { i = 1 } ^ { n } \xi _ { i } \big [ f _ { \mathbf { W } } ( \mathbf { x } _ { i } ) - F _ { \mathbf { W } ^ { ( 0 ) } , \mathbf { W } } ( \mathbf { x } _ { i } ) \big ] } _ { I _ { 1 } } \Bigg \} } _ { I _ { 1 } } + \underbrace { \mathbb { E } _ { \xi } \Bigg \{ \underbrace { \operatorname* { s u p } _ { \mathbf { W } \in \mathcal { W } } n } _ { \mathbf { \Sigma } _ { i = 1 } } \sum _ { i = 1 } ^ { n } \xi _ { i } F _ { \mathbf { W } ^ { ( 0 ) } , \mathbf { W } } ( \mathbf { x } _ { i } ) \Bigg \} } _ { I _ { 2 } } , +$$ + +where $F _ { \mathbf { W } ^ { ( 0 ) } , \mathbf { W } } ( \mathbf { x } ) = f _ { \mathbf { W } ^ { ( 0 ) } } ( \mathbf { x } ) + \big \langle \nabla _ { \mathbf { W } } f _ { \mathbf { W } ^ { ( 0 ) } } ( \mathbf { x } ) , \mathbf { W } - \mathbf { W } ^ { ( 0 ) } \big \rangle .$ . For $I _ { 1 }$ , by Lemma 4.1 in (Cao and Gu, 2019), with probability at least $1 - \delta / 2$ we have + +$$ +I _ { 1 } \leqslant \operatorname* { m a x } _ { i \in [ n ] } \big | f _ { \mathbf { W } } ( \pmb { x } _ { i } ) - F _ { \mathbf { W } ^ { ( 0 ) } , \mathbf { W } } ( \pmb { x } _ { i } ) \big | \leqslant \mathcal { O } \big ( L ^ { 3 } \widetilde { R } ^ { 4 / 3 } m ^ { - 1 / 6 } \sqrt { \log ( m ) } \big ) , +$$ + +For $I _ { 2 }$ , note that $\begin{array} { r } { \mathbb { E } _ { \pmb { \xi } } \big [ \operatorname* { s u p } _ { \mathbf { W } \in \mathcal { W } } \sum _ { i = 1 } ^ { n } \xi _ { i } f _ { \mathbf { W } ^ { ( 0 ) } } ( \pmb { x } _ { i } ) \big ] = 0 . } \end{array}$ . By Cauchy-Schwarz inequality we have + +$$ +\begin{array} { l } { { \displaystyle I _ { 2 } = \frac { 1 } { n } \sum _ { l = 1 } ^ { L } \mathbb { E } _ { \boldsymbol \xi } \{ \operatorname* { s u p } _ { \| \widetilde { \mathbf { U } } _ { l } \| _ { F } \leqslant \widetilde { R } m ^ { - 1 / 2 } } \mathrm { T r } [ \widetilde { \mathbf { W } } _ { l } ^ { \top } \sum _ { i = 1 } ^ { n } \xi _ { i } \nabla _ { \mathbf { W } _ { l } } f _ { \mathbf { W } ^ { ( 0 ) } } ( \pmb x _ { i } ) ] \} } } \\ { { \displaystyle \leqslant \frac { \widetilde { R } m ^ { - 1 / 2 } } { n } \sum _ { l = 1 } ^ { L } \mathbb { E } _ { \boldsymbol \xi } [ \| \sum _ { i = 1 } ^ { n } \xi _ { i } \nabla _ { \mathbf { W } _ { l } } f _ { \mathbf { W } ^ { ( 0 ) } } ( \pmb x _ { i } ) \| _ { F } ] . } } \end{array} +$$ + +Therefore + +$$ +\begin{array} { r l } & { I _ { 2 } \leqslant \displaystyle \frac { { \widetilde R } m ^ { - 1 / 2 } } { n } \sum _ { l = 1 } ^ { L } \sqrt { \mathbb { E } _ { \xi } \bigg [ \bigg \| \displaystyle \sum _ { i = 1 } ^ { n } \xi _ { i } \nabla _ { \mathbf { W } _ { l } } f _ { \mathbf { W } ^ { ( 0 ) } } ( { \pmb x } _ { i } ) \bigg \| _ { F } ^ { 2 } \bigg ] } } \\ & { \quad = \displaystyle \frac { { \widetilde R } m ^ { - 1 / 2 } } { n } \sum _ { l = 1 } ^ { L } \sqrt { \displaystyle \sum _ { i = 1 } ^ { n } \left\| \nabla _ { \mathbf { W } _ { l } } f _ { \mathbf { W } ^ { ( 0 ) } } ( { \pmb x } _ { i } ) \right\| _ { F } ^ { 2 } } } \\ & { \quad \leqslant \mathcal { O } \Big ( \displaystyle \frac { L \cdot { \widetilde R } } { \sqrt { n } } \Big ) , } \end{array} +$$ + +where we apply Jensen’s inequality to obtain the first inequality, and the last inequality follows by Lemma B.3 in (Cao and Gu, 2019). Combining the bounds of $I _ { 1 }$ and $I _ { 2 }$ gives + +$$ +\widehat { \mathfrak { R } } _ { n } [ \mathcal { F } ] \leqslant \widetilde { \mathcal { O } } \biggl ( \frac { L \widetilde { R } } { \sqrt { n } } + \frac { L ^ { 3 } \widetilde { R } ^ { 4 / 3 } } { m ^ { 1 / 6 } } \biggr ) . +$$ + +Further combining this bound with (C.7) and recaling $\delta$ completes the proof. + +# C.3 PROOF OF LEMMA A.4 + +Proof of Lemma A.4. Different from the proof of Lemma 5.1, online SGD only queries one data to update the model parameters in each iteration, i.e., $\mathbf { W } ^ { i + 1 } = \mathbf { W } ^ { i } - \eta \nabla L _ { i + 1 } \big ( \mathbf { W } ^ { ( i ) } \big )$ . By this update rule, we have + +$$ +\begin{array} { r l } & { \| { \bf W } ^ { ( i ) } - { \bf W } ^ { * } \| _ { F } ^ { 2 } - \| { \bf W } ^ { ( i + 1 ) } - { \bf W } ^ { * } \| _ { F } ^ { 2 } } \\ & { \qquad = 2 \eta \langle { \bf W } ^ { ( i ) } - { \bf W } ^ { * } , \nabla { \bf w } L _ { i + 1 } ( { \bf W } ^ { ( i ) } ) \rangle - \eta ^ { 2 } \displaystyle \sum _ { l = 1 } ^ { L } \| \nabla { \bf w } _ { l } L _ { i + 1 } ( { \bf W } ^ { ( i ) } ) \| _ { F } ^ { 2 } . } \end{array} +$$ + +With exactly the same proof as (C.5) in the proof of Lemma 5.1, we have + +$$ +\begin{array} { r } { \langle \mathbf { W } ^ { ( t ) } - \mathbf { W } ^ { * } , \nabla _ { \mathbf { W } } L _ { i } ( \mathbf { W } ^ { ( t ) } ) \rangle \geqslant ( 1 - 2 \epsilon _ { \mathrm { a p p } } ( \tau ) ) \ell \big ( y _ { i } f _ { \mathbf { W } ^ { ( t ) } } ( \mathbf { x } _ { i } ) \big ) - \ell \big ( y _ { i } F _ { \mathbf { W } ^ { ( 0 ) } , \mathbf { W } ^ { * } } ( \mathbf { x } _ { i } ) \big ) , } \end{array} +$$ + +for all $i = 0 , \ldots , n ^ { \prime } - 1$ . By the fact that $- \ell ^ { \prime } ( \cdot ) \leqslant \ell ( \cdot )$ and $- \ell ^ { \prime } ( \cdot ) \leqslant 1$ , we have + +$$ +\sum _ { l = 1 } ^ { L } \| \nabla _ { \mathbf { W } _ { l } } L _ { i + 1 } ( \mathbf { W } ^ { ( i ) } ) \| _ { F } ^ { 2 } \leqslant \sum _ { l = 1 } ^ { L } \ell \big ( y _ { i + 1 } f _ { \mathbf { W } _ { t } } ( \mathbf { x } _ { i + 1 } ) \big ) \cdot \| \nabla _ { \mathbf { W } _ { l } } f _ { \mathbf { W } ^ { ( i ) } } \big ( \mathbf { x } _ { i + 1 } \big ) \| _ { F } ^ { 2 } +$$ + +$$ +\leqslant \mathcal { O } \bigl ( L M ( \tau ) ^ { 2 } \bigr ) \cdot L _ { i + 1 } \bigl ( \mathbf { W } ^ { ( i ) } \bigr ) . +$$ + +Then plugging (C.10) and (C.11) into (C.9) gives + +$$ +\begin{array} { r l } & { \| \mathbf { W } ^ { ( i ) } - \mathbf { W } ^ { * } \| _ { F } ^ { 2 } - \| \mathbf { W } ^ { ( i + 1 ) } - \mathbf { W } ^ { * } \| _ { F } ^ { 2 } } \\ & { \quad \geqslant \big ( 2 - 4 \epsilon _ { \mathrm { a p p } } ( \tau ) \big ) \eta L _ { i + 1 } ( \mathbf { W } ^ { ( i ) } ) - 2 \eta \ell \big ( y _ { i } F _ { \mathbf { W } ^ { ( 0 ) } , \mathbf { W } ^ { * } } ( \mathbf { x } _ { i } ) \big ) - \mathcal { O } \big ( \eta ^ { 2 } L M ( \tau ) ^ { 2 } \big ) L _ { i + 1 } ( \mathbf { W } ^ { ( i ) } ) } \\ & { \quad \geqslant \big ( \frac { 3 } { 2 } - 4 \epsilon _ { \mathrm { a p p } } ( \tau ) \big ) \eta L _ { i + 1 } ( \mathbf { W } ^ { ( i ) } ) - 2 \eta \ell \big ( y _ { i } F _ { \mathbf { W } ^ { ( 0 ) } , \mathbf { W } ^ { * } } ( \mathbf { x } _ { i } ) \big ) , } \end{array} +$$ + +where the last inequality is by $\eta = \mathcal { O } ( L ^ { - 1 } M ( \tau ) ^ { - 2 } )$ and merging the third term on the second line into the first term. Taking telescope sum over $i = 0 , \ldots , n ^ { \prime } - 1$ , we obtain + +$$ +\begin{array} { r l } & { \| { \mathbf { W } } ^ { ( 0 ) } - { \mathbf { W } } ^ { * } \| _ { F } ^ { 2 } - \| { \mathbf { W } } ^ { ( n ^ { \prime } ) } - { \mathbf { W } } ^ { * } \| _ { F } ^ { 2 } } \\ & { \quad \geqslant \Big ( \frac { 3 } { 2 } - 4 \epsilon _ { \mathrm { a p p } } ( \tau ) \Big ) \eta \displaystyle \sum _ { i = 1 } ^ { n ^ { \prime } } L _ { i } ( { \mathbf { W } } ^ { ( i - 1 ) } ) - 2 \eta \displaystyle \sum _ { i = 1 } ^ { n ^ { \prime } } \ell \big ( y _ { i } F _ { { \mathbf { W } } ^ { ( 0 ) } , { \mathbf { W } } ^ { * } } ( { \mathbf { x } } _ { i } ) \big ) . } \\ & { \quad \geqslant \Big ( \frac { 3 } { 2 } - 4 \epsilon _ { \mathrm { a p p } } ( \tau ) \Big ) \eta \displaystyle \sum _ { i = 1 } ^ { n ^ { \prime } } L _ { i } ( { \mathbf { W } } ^ { ( i - 1 ) } ) - 2 \eta \displaystyle \sum _ { i = 1 } ^ { n } \ell \big ( y _ { i } F _ { { \mathbf { W } } ^ { ( 0 ) } , { \mathbf { W } } ^ { * } } ( { \mathbf { x } } _ { i } ) \big ) . } \\ & { \quad \geqslant \Big ( \frac { 3 } { 2 } - 4 \epsilon _ { \mathrm { a p p } } ( \tau ) \Big ) \eta \displaystyle \sum _ { i = 1 } ^ { n ^ { \prime } } L _ { i } ( { \mathbf { W } } ^ { ( i - 1 ) } ) - 2 n \eta \epsilon _ { \mathrm { N T R } } . } \end{array} +$$ + +This finishes the proof. + +# D EXPERIMENTS + +In this section, we conduct some simple experiments to validate our theory. Since our paper mainly focuses on binary classification, we use a subset of the original CIFAR10 dataset (Krizhevsky et al., 2009), which only has two classes of images. We train a 5-layer fullyconnected ReLU network on this binary classification dataset with different sample sizes $( n \in$ $\{ 1 0 0 , 2 0 0 , 5 0 0 , 1 0 0 0 , 2 0 0 0 , 5 0 0 0 , 1 0 0 0 0 \} )$ , and plot the minimal neural network width that is required to achieve zero training error in Figure 1 (solid line). We also plot $\mathcal { O } ( n ) , \mathcal { O } ( \log ^ { 3 } ( n ) ) , \mathcal { O } ( \log ^ { 2 } ( n ) )$ and ${ \mathcal { O } } ( \log ( n ) )$ in dashed line for reference. It is evident that the required network width to achieve zero training error is polylogarithmic on the sample size $n$ , which is consistent with our theory. + +![](images/92caaedd995fdf47fc5e38c63323cf6b413b4fe1b294d08809e177d7baaa0c8b.jpg) +Figure 1: Minimum network width that is required to achieve zero training error with respect to the training sample size (blue solid line). The hidden constants in all $O ( \cdot )$ notations are adjusted to ensure their plots (dashed lines) start from the same point. \ No newline at end of file diff --git a/parse/train/fgd7we_uZa6/fgd7we_uZa6_content_list.json b/parse/train/fgd7we_uZa6/fgd7we_uZa6_content_list.json new file mode 100644 index 0000000000000000000000000000000000000000..8809ba1bad092afe23dfdd08eabf87146fb94276 --- /dev/null +++ b/parse/train/fgd7we_uZa6/fgd7we_uZa6_content_list.json @@ -0,0 +1,3765 @@ +[ + { + "type": "text", + "text": "HOW MUCH OVER-PARAMETERIZATION IS SUFFI-CIENT TO LEARN DEEP RELU NETWORKS?", + "text_level": 1, + "bbox": [ + 176, + 98, + 825, + 146 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Zixiang Chen:˚, Yuan Cao:˚, Difan Zou:˚, Quanquan $\\mathbf { G u } ^ { \\dagger }$ :Department of Computer Science, University of California, Los Angles {chenzx19,yuancao,knowzou,qgu}@cs.ucla.edu ", + "bbox": [ + 184, + 167, + 658, + 213 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "ABSTRACT ", + "text_level": 1, + "bbox": [ + 454, + 250, + 544, + 265 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "A recent line of research on deep learning focuses on the extremely overparameterized setting, and shows that when the network width is larger than a high degree polynomial of the training sample size $n$ and the inverse of the target error $\\epsilon ^ { - 1 }$ , deep neural networks learned by (stochastic) gradient descent enjoy nice optimization and generalization guarantees. Very recently, it is shown that under certain margin assumptions on the training data, a polylogarithmic width condition suffices for two-layer ReLU networks to converge and generalize (Ji and Telgarsky, 2020). However, whether deep neural networks can be learned with such a mild over-parameterization is still an open question. In this work, we answer this question affirmatively and establish sharper learning guarantees for deep ReLU networks trained by (stochastic) gradient descent. In specific, under certain assumptions made in previous work, our optimization and generalization guarantees hold with network width polylogarithmic in $n$ and $\\epsilon ^ { - \\bar { 1 } }$ . Our results push the study of over-parameterized deep neural networks towards more practical settings. ", + "bbox": [ + 233, + 280, + 764, + 487 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1 INTRODUCTION ", + "text_level": 1, + "bbox": [ + 176, + 511, + 336, + 526 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Deep neural networks have become one of the most important and prevalent machine learning models due to their remarkable power in many real-world applications. However, the success of deep learning has not been well-explained in theory. It remains mysterious why standard optimization algorithms tend to find a globally optimal solution, despite the highly non-convex landscape of the training loss function. Moreover, despite the extremely large amount of parameters, deep neural networks rarely over-fit, and can often generalize well to unseen data and achieve good test accuracy. Understanding these mysterious phenomena on the optimization and generalization of deep neural networks is one of the most fundamental problems in deep learning theory. ", + "bbox": [ + 174, + 541, + 825, + 652 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Recent breakthroughs have shed light on the optimization and generalization of deep neural networks (DNNs) under the over-parameterized setting, where the hidden layer width is extremely large (much larger than the number of training examples). It has been shown that with the standard random initialization, the training of over-parameterized deep neural networks can be characterized by a kernel function called neural tangent kernel (NTK) (Jacot et al., 2018; Arora et al., 2019b). In the neural tangent kernel regime (or lazy training regime (Chizat et al., 2019)), the neural network function behaves similarly as its first-order Taylor expansion at initialization (Jacot et al., 2018; Lee et al., 2019; Arora et al., 2019b; Cao and Gu, 2019), which enables feasible optimization and generalization analysis. In terms of optimization, a line of work (Du et al., 2019b; Allen-Zhu et al., 2019b; Zou et al., 2019; Zou and Gu, 2019) proved that for sufficiently wide neural networks, (stochastic) gradient descent (GD/SGD) can successfully find a global optimum of the training loss function. For generalization, Allen-Zhu et al. (2019a); Arora et al. (2019a); Cao and Gu (2019) established generalization bounds of neural networks trained with (stochastic) gradient descent, and showed that the neural networks can learn target functions in certain reproducing kernel Hilbert space (RKHS) or the corresponding random feature function class. ", + "bbox": [ + 174, + 660, + 825, + 867 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Although existing results in the neural tangent kernel regime have provided important insights into the learning of deep neural networks, they require the neural network to be extremely wide. ", + "bbox": [ + 176, + 876, + 823, + 904 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "The typical requirement on the network width is a high degree polynomial of the training sample size $n$ and the inverse of the target error $\\epsilon ^ { - 1 }$ . As there still remains a huge gap between such network width requirement and the practice, many attempts have been made to improve the overparameterization condition under various conditions on the training data and model initialization (Oymak and Soltanolkotabi, 2019; Zou and Gu, 2019; Kawaguchi and Huang, 2019; Bai and Lee, 2019). For two-layer ReLU networks, a recent work (Ji and Telgarsky, 2020) showed that when the training data are well separated, polylogarithmic width is sufficient to guarantee good optimization and generalization performances. However, their results cannot be extended to deep ReLU networks since their proof technique largely relies on the fact that the network model is 1-homogeneous, which cannot be satisfied by DNNs. Therefore, whether deep neural networks can be learned with such a mild over-parameterization is still an open problem. ", + "bbox": [ + 174, + 103, + 825, + 256 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "In this paper, we resolve this open problem by showing that polylogarithmic network width is sufficient to learn DNNs. In particular, unlike the existing works that require the DNNs to behave very close to a linear model (up to some small approximation error), we show that a constant linear approximation error is sufficient to establish nice optimization and generalization guarantees for DNNs. Thanks to the relaxed requirement on the linear approximation error, a milder condition on the network width and tighter bounds on the convergence rate and generalization error can be proved. We summarize our contributions as follows: ", + "bbox": [ + 174, + 263, + 825, + 361 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "• We establish the global convergence guarantee of GD for training deep ReLU networks based on the so-called NTRF function class (Cao and Gu, 2019), a set of linear functions over random features. Specifically, we prove that GD can learn deep ReLU networks with width $m = { \\mathrm { p o l y } } ( R )$ to compete with the best function in NTRF function class, where $R$ is the radius of the NTRF function class. \n• We also establish the generalization guarantees for both GD and SGD in the same setting. Specifically, we prove a diminishing statistical error for a wide range of network width $m \\in ( \\widetilde { \\Omega } ( 1 ) , \\infty )$ , while most of the previous generalization bounds in the NTK regime only works in the setting where the network width $m$ is much greater than the sample size $n$ . Moreover, we establish $\\tilde { \\mathcal { O } } ( \\epsilon ^ { - 2 } )$ $\\tilde { \\mathcal { O } } ( \\epsilon ^ { - 1 } )$ sample complexities for GD and SGD respectively, which are tighter than existing bounds for learning deep ReLU networks (Cao and Gu, 2019), and match the best results when reduced to the two-layer cases (Arora et al., 2019b; Ji and Telgarsky, 2020). \n• We further generalize our theoretical analysis to the scenarios with different data separability assumptions in the literature. We show if a large fraction of the training data are well separated, the best function in the NTRF function class with radius $R = \\widetilde { \\mathcal { O } } ( 1 )$ can learn the training data with error up to $\\epsilon$ . This together with our optimization and generalization guarantees immediately suggests that deep ReLU networks can be learned with network width $\\bar { m } = \\widetilde { \\Omega } ( 1 )$ , which has a logarithmic dependence on the target error $\\epsilon$ and sample size $n$ . Compared with existing results (Cao and Gu, 2020; Ji and Telgarsky, 2020) which require all training data points to be separated in the NTK regime, our result is stronger since it allows the NTRF function class to misclassify a small proportion of the training data. ", + "bbox": [ + 171, + 376, + 826, + 703 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "For the ease of comparison, we summarize our results along with the most related previous results in Table 1, in terms of data assumption, the over-parameterization condition and sample complexity. It can be seen that under data separation assumption (See Sections 4.1, 4.2), our result improves existing results for learning deep neural networks by only requiring a polylog $( n , \\epsilon ^ { - 1 } )$ network width. ", + "bbox": [ + 174, + 717, + 825, + 773 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Notation. For two scalars $a$ and $b$ , we denote $a \\wedge b = \\operatorname* { m i n } \\{ a , b \\}$ . For a vector $\\mathbf { x } \\in \\mathbb { R } ^ { d }$ we use $\\| \\mathbf { x } \\| _ { 2 }$ to denote its Euclidean norm. For a matrix $\\mathbf { X }$ , we use $\\lVert \\mathbf { X } \\rVert _ { 2 }$ and $\\| \\mathbf { X } \\| _ { F }$ to denote its spectral norm and Frobenius norm respectively, and denote by $\\mathbf { X } _ { i j }$ the entry of $\\mathbf { X }$ at the $i$ -th row and ř $j$ -th column. Given two matrices $\\mathbf { X }$ and $\\mathbf { Y }$ with the same dimension, we denote $\\begin{array} { r } { \\langle { \\bf X } , { \\bf Y } \\rangle = \\sum _ { i , j } { \\bf X } _ { i j } \\mathbf { \\bar { Y } } _ { i j } } \\end{array}$ . ", + "bbox": [ + 174, + 780, + 825, + 837 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Given a collection of matrices $\\mathbf { W } = \\left\\{ \\mathbf { W } _ { 1 } , \\cdots , \\mathbf { W } _ { L } \\right\\} \\in \\bigotimes _ { l = 1 } ^ { L } \\mathbb { R } ^ { m _ { l } \\times m _ { l } ^ { \\prime } }$ and a function $f ( \\mathbf { W } )$ over $\\otimes _ { l = 1 } ^ { L } \\mathbb { R } ^ { m _ { l } \\times m _ { l } ^ { \\prime } }$ , we define by $\\nabla _ { \\mathbf { W } _ { l } } f ( \\mathbf { W } )$ the partial gradient of $f ( \\mathbf { W } )$ with respect to $\\mathbf { W } _ { l }$ and denote( $\\nabla _ { \\mathbf { W } } f ( \\mathbf { W } ) = \\{ \\nabla _ { \\mathbf { W } _ { l } } f ( \\mathbf { W } ) \\} _ { l = 1 } ^ { L }$ . We also denote $\\begin{array} { r } { \\mathbf { \\Theta } \\mathcal { B } ( \\mathbf { W } , \\tau ) = \\left\\{ \\mathbf { W } ^ { \\prime } : \\operatorname* { m a x } _ { l \\in [ L ] } \\| \\mathbf { W } _ { l } ^ { \\prime } - \\mathbf { W } _ { l } \\| _ { F } \\leqslant \\tau \\right\\} } \\end{array}$ for $\\tau \\geqslant 0$ . For two collection of matrices ř ř $\\mathbf { A } = \\left\\{ \\mathbf { A } _ { 1 } , \\cdots , \\mathbf { A } _ { n } \\right\\}$ , $\\mathbf { B } = \\{ \\mathbf { B } _ { 1 } , \\cdots , \\mathbf { B } _ { n } \\}$ , we denote $\\begin{array} { r } { \\langle \\mathbf { A } , \\mathbf { B } \\rangle = \\sum _ { i = 1 } ^ { n } \\langle \\mathbf { A } _ { i } , \\mathbf { B } _ { i } \\rangle } \\end{array}$ and $\\begin{array} { r } { \\| \\mathbf { A } \\| _ { F } ^ { 2 } = \\sum _ { i = 1 } ^ { n } \\| \\mathbf { A } _ { i } \\| _ { F } ^ { 2 } } \\end{array}$ . ", + "bbox": [ + 173, + 847, + 825, + 926 + ], + "page_idx": 1 + }, + { + "type": "table", + "img_path": "images/76bc855a908c40fb169e8da23013d9d6d80b7fa623827d6a85b0e1022ce515cd.jpg", + "table_caption": [ + "Table 1: Comparison of neural network learning results in terms of over-parameterization condition and sample complexity. Here $\\epsilon$ is the target error rate, $n$ is the sample size, $L$ is the network depth. " + ], + "table_footnote": [], + "table_body": "
AssumptionsAlgorithmOver-para. ConditionSample ComplexityNetwork
Zou et al. (2019)Data nondegenerationGDΩ(n¹2L16(n² + e−1))Deep
This paper Data nondegenerationGDΩ2(L22n12)Deep
Cao and Gu (2020)Data separationGD(e-14).2(L)(-4).eO(L)Deep
Ji and Telgarsky (2020)Data separationGDpolylog(n,∈−1)(-2)Shallow
This paper Data separationGD polylog(n,∈-1) · poly(L)O(e-2). eO(L) Deep
Cao and Gu (2019)Data separationSGDΩ2(∈-14) · poly(L)(∈−²) · poly(L)Deep
Ji and Telgarsky (2020)Data separationSGDpolylog(∈-i)0(-1)Shallow
This paper Data separation SGD polylog(∈−1) · poly(L)O(e−1) · poly(L)Deep
", + "bbox": [ + 179, + 137, + 818, + 262 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Algorithm 1 Gradient descent with random initialization ", + "text_level": 1, + "bbox": [ + 174, + 273, + 549, + 287 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Input: Number of iterations $T$ , step size $\\eta$ , training set $S = \\left\\{ ( \\mathbf { x } _ { i } , y _ { i } ) _ { i = 1 } ^ { n } \\right\\}$ , initialization Wp0q \nfor $t = 1 , 2 , \\dots , T$ do Update $\\mathbf { W } ^ { ( t ) } = \\mathbf { W } ^ { ( t - 1 ) } - \\eta \\cdot \\nabla _ { \\mathbf { W } } L _ { S } ( \\mathbf { W } ^ { ( t - 1 ) } ) .$ . \nend for \nOutput: $\\mathbf { W } ^ { ( 0 ) } , \\ldots , \\mathbf { W } ^ { ( T ) }$ . ", + "bbox": [ + 184, + 292, + 813, + 367 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Given two sequences $\\left\\{ x _ { n } \\right\\}$ and $\\left\\{ y _ { n } \\right\\}$ , we denote $x _ { n } = \\mathcal { O } ( y _ { n } )$ if $| x _ { n } | \\leqslant C _ { 1 } | y _ { n } |$ for some absolute positive constant $C _ { 1 }$ , $x _ { n } = \\Omega ( y _ { n } )$ if $| x _ { n } | \\geqslant C _ { 2 } | y _ { n } |$ for some absolute positive constant $C _ { 2 }$ , and $x _ { n } = \\Theta ( y _ { n } )$ if $C _ { 3 } | y _ { n } | \\leqslant | x _ { n } | \\leqslant C _ { 4 } | y _ { n } |$ for some absolute constants $C _ { 3 } , C _ { 4 } > 0$ . We also use $\\tilde { \\mathcal { O } } ( \\cdot )$ , $\\widetilde { \\Omega } ( \\cdot )$ to hide logarithmic factors in $\\mathcal { O } ( \\cdot )$ and $\\Omega ( \\cdot )$ respectively. Additionally, we denote $x _ { n } = \\operatorname { p o l y } ( y _ { n } )$ if $\\dot { x _ { n } } = \\mathcal { O } ( y _ { n } ^ { D } )$ for some positive constant $D$ , and $x _ { n } = { \\mathrm { p o l y l o g } } ( y _ { n } )$ if $x _ { n } = \\mathrm { p o l y } ( \\log ( y _ { n } ) )$ . ", + "bbox": [ + 173, + 390, + 826, + 468 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "2 PRELIMINARIES ON LEARNING NEURAL NETWORKS ", + "text_level": 1, + "bbox": [ + 174, + 488, + 635, + 503 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "In this section, we introduce the problem setting in this paper, including definitions of the neural network and loss functions, and the training algorithms, i.e., GD and SGD with random initialization. ", + "bbox": [ + 171, + 517, + 825, + 546 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Neural network function. Given an input $\\mathbf { x } \\in \\mathbb { R } ^ { d }$ , the output of deep fully-connected ReLU network is defined as follows, ", + "bbox": [ + 171, + 551, + 825, + 582 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/59b14f536d1c0635a48dade664bf302e1671dcf348497dc3ee23798346e750ff.jpg", + "text": "$$\nf _ { \\mathbf { W } } ( \\mathbf { x } ) = m ^ { 1 / 2 } \\mathbf { W } _ { L } \\sigma ( \\mathbf { W } _ { L - 1 } \\cdot \\cdot \\cdot \\sigma ( \\mathbf { W } _ { 1 } \\mathbf { x } ) \\cdot \\cdot \\cdot ) ,\n$$", + "text_format": "latex", + "bbox": [ + 341, + 583, + 655, + 602 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "where $\\mathbf { W } _ { 1 } \\in \\mathbb { R } ^ { m \\times d }$ , $\\mathbf { W } _ { 2 } , \\cdots , \\mathbf { W } _ { L - 1 } \\in \\mathbb { R } ^ { m \\times m } ,$ , $\\mathbf { W } _ { L } \\in \\mathbb { R } ^ { 1 \\times m }$ , and $\\sigma ( x ) = \\operatorname* { m a x } \\{ 0 , x \\}$ is the ReLU activation function. Here, without loss of generality, we assume the width of each layer is equal to $m$ . Yet our theoretical results can be easily generalized to the setting with unequal width layers, as long as the smallest width satisfies our overparameterization condition. We denote the collection of all weight matrices as $\\mathbf { W } = \\{ \\mathbf { W } _ { 1 } , \\dots , \\mathbf { W } _ { L } \\}$ . ", + "bbox": [ + 173, + 606, + 826, + 679 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Loss function. Given training dataset $\\{ \\mathbf { x } _ { i } , y _ { i } \\} _ { i = 1 , \\ldots , n }$ with input $\\mathbf { x } _ { i } \\in \\mathbb { R } ^ { d }$ and output $y _ { i } \\in \\left\\{ - 1 , + 1 \\right\\}$ we define the training loss function as ", + "bbox": [ + 173, + 684, + 823, + 713 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/5ed9a3edccf63c4b2b6eb169a0788bf5bb64b73bfcc7060d91ebdbf58cb0498e.jpg", + "text": "$$\nL _ { S } ( \\mathbf { W } ) = \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } L _ { i } ( \\mathbf { W } ) ,\n$$", + "text_format": "latex", + "bbox": [ + 411, + 717, + 583, + 756 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "where $L _ { i } ( \\mathbf { W } ) = \\ell \\big ( y _ { i } f _ { \\mathbf { W } } ( \\mathbf { x } _ { i } ) \\big ) = \\log \\big ( 1 + \\exp ( - y _ { i } f _ { \\mathbf { W } } ( \\mathbf { x } _ { i } ) ) \\big )$ is defined as the cross-entropy loss. ", + "bbox": [ + 169, + 760, + 816, + 777 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Algorithms. We consider both GD and SGD with Gaussian random initialization. These two algorithms are displayed in Algorithms 1 and 2 respectively. Specifically, the entries in Wp0q1 , $\\mathbf { W } _ { 1 } ^ { ( 0 ) } , \\cdots , \\mathbf { W } _ { L - 1 } ^ { ( 0 ) }$ are generated independently from univariate Gaussian distribution N p0, 2{mq and the entries in Wp0qL are generated independently from $N ( 0 , 1 / m )$ . For GD, we consider using the full gradient to update the model parameters. For SGD, we use a new training data point in each iteration. ", + "bbox": [ + 173, + 781, + 825, + 862 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Note that our initialization method in Algorithms 1, 2 is the same as the widely used He initialization (He et al., 2015). Our neural network parameterization is also consistent with the parameterization used in prior work on NTK (Jacot et al., 2018; Allen-Zhu et al., 2019b; Du et al., 2019a; Arora et al., 2019b; Cao and Gu, 2019). ", + "bbox": [ + 174, + 867, + 825, + 924 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Algorithm 2 Stochastic gradient desecent (SGD) with random initialization ", + "text_level": 1, + "bbox": [ + 174, + 102, + 671, + 118 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Input: Number of iterations $n$ , step size $\\eta$ , initialization $\\mathbf { W } ^ { ( 0 ) }$ \nfor $i = 1 , 2 , \\dots , n$ do Draw $\\left( \\mathbf { x } _ { i } , y _ { i } \\right)$ from $\\mathcal { D }$ and compute the corresponding gradient $\\nabla _ { \\mathbf { W } } L _ { i } ( \\mathbf { W } ^ { ( i - 1 ) } )$ . Update $\\mathbf { W } ^ { ( i ) } = \\mathbf { W } ^ { ( i - 1 ) } - \\eta \\cdot \\nabla _ { \\mathbf { W } } L _ { i } ( \\mathbf { W } ^ { ( i - 1 ) } )$ . \nend for \nOutput: Randomly choose $\\widehat { \\bf W }$ uniformly from $\\{ \\mathbf { W } ^ { ( 0 ) } , \\ldots , \\mathbf { W } ^ { ( n - 1 ) } \\}$ . ", + "bbox": [ + 187, + 122, + 736, + 210 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "3 MAIN THEORY ", + "text_level": 1, + "bbox": [ + 176, + 236, + 328, + 252 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "In this section, we present the optimization and generalization guarantees of GD and SGD for learning deep ReLU networks. We first make the following assumption on the training data points. ", + "bbox": [ + 173, + 267, + 823, + 296 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Assumption 3.1. All training data points satisfy $\\| \\mathbf { x } _ { i } \\| _ { 2 } = 1 , i = 1 , \\ldots , n .$ . ", + "bbox": [ + 174, + 299, + 658, + 314 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "This assumption has been widely made in many previous works (Allen-Zhu et al., 2019b;c; Du et al., 2019b;a; Zou et al., 2019) in order to simplify the theoretical analysis. This assumption can be relaxed to be upper bounded and lower bounded by some constant. ", + "bbox": [ + 173, + 324, + 826, + 367 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "In the following, we give the definition of Neural Tangent Random Feature (NTRF) (Cao and Gu, 2019), which characterizes the functions learnable by over-parameterized ReLU networks. ", + "bbox": [ + 173, + 373, + 825, + 401 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Definition 3.2 (Neural Tangent Random Feature, (Cao and Gu, 2019)). Let $\\mathbf { W } ^ { ( 0 ) }$ be the initialization weights, and ${ F _ { { \\bf W } ^ { ( 0 ) } , { \\bf W } } ( { \\bf x } ) } = f _ { { \\bf W } ^ { ( 0 ) } } ( { \\bf x } ) + \\langle \\nabla f _ { { \\bf W } ^ { ( 0 ) } } ( { \\bf x } ) , { \\bf W } - { \\bf W } ^ { ( 0 ) } \\rangle$ be a function with respect to the input $\\mathbf { x }$ . Then the NTRF function class is defined as follows ", + "bbox": [ + 173, + 405, + 825, + 449 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/698e5f4e2ad6719f9acb82cdaef21e1c42eae898c66227d8dffa84cbb109e91b.jpg", + "text": "$$\n{ \\mathcal { F } } ( \\mathbf { W } ^ { ( 0 ) } , R ) = \\big \\{ F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } } ( \\cdot ) : \\mathbf { W } \\in { \\mathcal { B } } ( \\mathbf { W } ^ { ( 0 ) } , R \\cdot m ^ { - 1 / 2 } ) \\big \\} .\n$$", + "text_format": "latex", + "bbox": [ + 300, + 454, + 696, + 474 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "The function class $F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } } ( \\mathbf { x } )$ consists of linear models over random features defined based on the network gradients at the initialization. Therefore it captures the key “almost linear” property of wide neural networks in the NTK regime (Lee et al., 2019; Cao and Gu, 2019). In this paper, we use the NTRF function class as a reference class to measure the difficulty of a learning problem. In what follows, we deliver our main theoretical results regarding the optimization and generalization guarantees of learning deep ReLU networks. We study both GD and SGD with random initialization (presented in Algorithms 1 and 2). ", + "bbox": [ + 173, + 486, + 826, + 584 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "3.1 GRADIENT DESCENT ", + "text_level": 1, + "bbox": [ + 176, + 599, + 357, + 614 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "The following theorem establishes the optimization guarantee of GD for training deep ReLU networks for binary classification. ", + "bbox": [ + 174, + 626, + 821, + 655 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Theorem 3.3. For $\\delta , R > 0$ , let $\\begin{array} { r } { \\epsilon _ { \\mathrm { N T R F } } = \\operatorname* { i n f } _ { \\mathit { F } \\in \\mathcal { F } ( \\mathbf { W } ^ { ( 0 ) } , R ) } n ^ { - 1 } \\sum _ { i = 1 } ^ { n } \\ell \\big [ y _ { i } F ( \\mathbf { x } _ { i } ) \\big ] } \\end{array}$ be the minimum training loss achievable by functions in ${ \\mathcal { F } } ( { \\mathbf { W } } ^ { ( 0 ) } , R )$ . Then there exists ", + "bbox": [ + 173, + 657, + 821, + 690 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/352f99524b5fb8f25e9338b5f6d658e553aecd29e08759a37e16797de4d5afeb.jpg", + "text": "$$\nm ^ { * } ( \\delta , R , L ) = \\widetilde { \\mathcal { O } } \\big ( \\mathrm { p o l y } ( R , L ) \\cdot \\log ^ { 4 / 3 } ( n / \\delta ) \\big ) ,\n$$", + "text_format": "latex", + "bbox": [ + 348, + 694, + 647, + 715 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "such that if $m \\geqslant m ^ { * } ( \\delta , R , L )$ , with probability at least $1 - \\delta$ over the initialization, GD with step size $\\eta = \\Theta ( L ^ { - 1 } m ^ { - 1 } )$ can train a neural network to achieve at most $3 \\epsilon _ { \\mathrm { N T R F } }$ training loss within $T = \\mathcal { O } \\big ( L ^ { 2 } R ^ { 2 } \\epsilon _ { \\mathrm { N T R F } } ^ { - 1 } \\big )$ iterations. ", + "bbox": [ + 174, + 718, + 825, + 763 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Theorem 3.3 shows that the deep ReLU network trained by GD can compete with the best function in the NTRF function class ${ \\mathcal { F } } ( { \\mathbf { W } } ^ { ( 0 ) } , R )$ if the network width has a polynomial dependency in $R$ and $L$ and a logarithmic dependency in $n$ and $1 / \\delta$ . Moreover, if the NTRF function class with $R = \\widetilde { \\mathcal { O } } ( 1 )$ can learn the training data well (i.e., \u000fNTRF is less than a small target error $\\epsilon$ ), a polylogarithmic (in terms of $n$ and $\\epsilon ^ { - 1 }$ ) network width suffices to guarantee the global convergence of GD, which directly improves over-paramterization condition in the most related work (Cao and Gu, 2019). Besides, we remark here that this assumption on the NTRF function class can be easily satisfied when the training data admits certain separability conditions, which we discuss in detail in Section 4. ", + "bbox": [ + 173, + 772, + 825, + 888 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Compared with the results in (Ji and Telgarsky, 2020) which give similar network width requirements for two-layer networks, our result works for deep networks. Moreover, while Ji and Telgarsky (2020) ", + "bbox": [ + 174, + 895, + 823, + 924 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "essentially required all training data to be separable by a function in the NTRF function class with a constant margin, our result does not require such data separation assumptions, and allows the NTRF function class to misclassify a small proportion of the training data points∗. ", + "bbox": [ + 174, + 103, + 825, + 147 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "We now characterize the generalization performance of neural networks trained by GD. We denote $L _ { \\mathcal { D } } ^ { 0 - 1 } ( \\mathbf { W } ) = \\mathbb { E } _ { ( \\mathbf { x } , y ) \\sim \\mathcal { D } } [ \\mathbb { 1 } \\left\\{ f _ { \\mathbf { W } } ( \\mathbf { x } ) \\cdot y < \\bar { 0 } \\right\\} ]$ as the expected 0-1 loss (i.e., expected error) of $f _ { \\mathbf { W } } ( \\mathbf { x } )$ Theorem 3.4. Under the same assumptions as Theorem 3.3, with probability at least $1 - \\delta$ , the iterate $\\mathbf { W } ^ { ( t ) }$ of Algorithm 1 satisfies that ", + "bbox": [ + 173, + 152, + 825, + 214 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/b95e5e8408f92b24960defbc915eedaa7db1c3cfc213294c10e8de799dd4caf5.jpg", + "text": "$$\nL _ { \\mathcal { D } } ^ { 0 - 1 } ( \\mathbf { W } ^ { ( t ) } ) \\leqslant 2 L _ { S } ( \\mathbf { W } ^ { ( t ) } ) + \\widetilde { \\mathcal { O } } \\left( 4 ^ { L } L ^ { 2 } R \\sqrt { \\frac { m } { n } } \\land \\left( \\frac { L ^ { 3 / 2 } R } { \\sqrt { n } } + \\frac { L ^ { 1 1 / 3 } R ^ { 4 / 3 } } { m ^ { 1 / 6 } } \\right) \\right) + \\mathcal { O } \\left( \\sqrt { \\frac { \\log ( 1 / \\delta ) } { n } } \\right)\n$$", + "text_format": "latex", + "bbox": [ + 181, + 218, + 825, + 261 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "for all $t = 0 , \\ldots , T$ . ", + "bbox": [ + 174, + 263, + 308, + 279 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Theorem 3.4 shows that the test error of the trained neural network can be bounded by its training error plus statistical error terms. Note that the statistical error terms is in the form of a minimum betweena two terms $4 ^ { L } L ^ { 2 } R \\sqrt { m / n }$ and $L ^ { 3 / 2 } R / \\sqrt { n } + L ^ { 1 1 / 3 } R ^ { 4 / 3 } / m ^ { 1 / 6 }$ . Depending on the network width $m$ , one of these two terms will be the dominating term and diminishes for large a $n$ : (1) if $m = o ( n )$ , the statistical error will be $4 ^ { L } L ^ { 2 } R { \\sqrt { m / n } }$ , and diminishes as $n$ increases; and (2) if $m = \\Omega ( n )$ , the statistical error is $L ^ { 3 / 2 } R / \\sqrt { n } + L ^ { 1 1 / 3 } R ^ { 4 / 3 } / m ^ { 1 / 6 }$ , and again goes to zero as $n$ increases. Moreover, in this paper we have a specific focus on the setting $m = \\widetilde { \\mathcal { O } } ( 1 )$ , under which Theorem 3.4 gives a statistical error of order $\\widetilde { \\mathcal { O } } ( n ^ { - 1 / 2 } )$ . This distinguishes our result from previous generalization bounds for deep networks (Cao and Gu, 2020; 2019), which cannot be applied to the setting $m = \\widetilde { \\mathcal { O } } ( 1 )$ . ", + "bbox": [ + 173, + 287, + 826, + 430 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "We note that for two-layer ReLU networks (i.e., $L = 2$ ) Ji and Telgarsky (2020) proves a tighter ${ \\cal \\tilde { O } } ( 1 / n ^ { 1 / 2 } )$ generalization error bound regardless of the neural networks width $m$ , while our result (Theorem 3.4), in the two-layer case, can only give ${ \\cal \\tilde { O } } ( 1 / n ^ { 1 / 2 } )$ generalization error bound when $m = \\widetilde { \\cal O } ( 1 )$ or $m = \\widetilde \\Omega ( n ^ { 3 } )$ . However, different from our proof technique that basically uses the (approximated) linearity of the neural network function, their proof technique largely relies on the 1-homogeneous property of the neural network, which restricted their theory in two-layer cases. An interesting research direction is to explore whether a ${ \\cal \\tilde { O } } ( 1 / n ^ { 1 / 2 } )$ generalization error bound can be also established for deep networks (regardless of the network width), which we will leave it as a future work. ", + "bbox": [ + 173, + 434, + 826, + 571 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "3.2 STOCHASTIC GRADIENT DESCENT ", + "text_level": 1, + "bbox": [ + 176, + 588, + 450, + 603 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Here we study the performance of SGD for training deep ReLU networks. The following theorem establishes a generalization error bound for the output of SGD. ", + "bbox": [ + 173, + 613, + 823, + 642 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Theorem 3.5. For $\\delta , R > 0$ , let $\\begin{array} { r } { \\epsilon _ { \\mathrm { N T R F } } = \\operatorname* { i n f } _ { \\mathit { F } \\in \\mathcal { F } ( \\mathbf { W } ^ { ( 0 ) } , R ) } n ^ { - 1 } \\sum _ { i = 1 } ^ { n } \\ell \\big [ y _ { i } F ( \\mathbf { x } _ { i } ) \\big ] } \\end{array}$ be the minimum training loss achievable by functions in ${ \\mathcal { F } } ( { \\mathbf { W } } ^ { ( 0 ) } , R )$ . Then there exists ", + "bbox": [ + 173, + 645, + 823, + 678 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/5b659fcc31b0998af840ee00215cf8efd002d302d4e5c891078a7acd6fdef59d.jpg", + "text": "$$\nm ^ { * } ( \\delta , R , L ) = \\widetilde { \\mathcal { O } } \\big ( \\mathrm { p o l y } ( R , L ) \\cdot \\log ^ { 4 / 3 } ( n / \\delta ) \\big ) ,\n$$", + "text_format": "latex", + "bbox": [ + 348, + 683, + 648, + 703 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "such that if $m \\geqslant m ^ { * } ( \\delta , R , L )$ , with probability at least $1 - \\delta$ , SGD with step size $\\eta = \\Theta \\bigl ( m ^ { - 1 }$ $( L R ^ { 2 } n ^ { - 1 } \\epsilon _ { \\mathrm { N T R F } } ^ { - 1 } \\land L ^ { - 1 } ) \\big \\rangle$ achieves ", + "bbox": [ + 173, + 708, + 820, + 741 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/bc02cd9dfc5f0fffdfc83f81e6132f2b01e2c96b125348a2147d1fdf2f91dc11.jpg", + "text": "$$\n\\mathbb { E } \\big [ L _ { \\mathcal { D } } ^ { 0 - 1 } ( \\widehat { \\mathbf { W } } ) \\big ] \\leqslant \\frac { 8 L ^ { 2 } R ^ { 2 } } { n } + \\frac { 8 \\log ( 2 / \\delta ) } { n } + 2 4 \\epsilon _ { \\mathrm { N T R F } } ,\n$$", + "text_format": "latex", + "bbox": [ + 331, + 746, + 665, + 777 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "where the expectation is taken over the uniform draw of $\\widehat { \\bf W }$ from $\\{ \\mathbf { W } ^ { ( 0 ) } , \\ldots , \\mathbf { W } ^ { ( n - 1 ) } \\}$ ", + "bbox": [ + 171, + 782, + 750, + 800 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "For any $\\epsilon > 0$ , Theorem 3.5 gives a $\\tilde { \\mathcal { O } } ( \\epsilon ^ { - 1 } )$ sample complexity for deep ReLU networks trained with SGD to achieve $O ( \\epsilon _ { \\mathrm { N T R F } } + \\epsilon )$ test error. Our result extends the result for two-layer networks proved in (Ji and Telgarsky, 2020) to multi-layer networks. Theorem 3.5 also provides sharper results compared with Allen-Zhu et al. (2019a); Cao and Gu (2019) in two aspects: (1) the sample complexity is improved from $n = \\widetilde { \\mathcal { O } } ( \\epsilon ^ { - 2 } )$ to $n = \\widetilde { \\mathcal { O } } ( \\epsilon ^ { - 1 } )$ ; and (2) the overparamterization condition is improved from $m \\geqslant \\mathrm { p o l y } ( \\epsilon ^ { - 1 } )$ to $m = \\widetilde \\Omega ( 1 )$ . ", + "bbox": [ + 173, + 810, + 826, + 904 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "4 DISCUSSION ON THE NTRF CLASS", + "text_level": 1, + "bbox": [ + 174, + 102, + 500, + 118 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Our theoretical results in Section 3 rely on the radius (i.e., $R )$ of the NTRF function class ${ \\mathcal { F } } ( { \\bf W } ^ { ( 0 ) } , R )$ and the minimum training loss achievable by functions in ${ \\mathcal { F } } ( { \\bf W } ^ { ( 0 ) } , R )$ , i.e., \u000fNTRF. Note that a larger $R$ naturally implies a smaller $\\epsilon _ { \\mathrm { N T R F } }$ , but also leads to worse conditions on $m$ . In this section, for any (arbitrarily small) target error rate $\\epsilon > 0$ , we discuss various data assumptions studied in the literature under which our results can lead to $\\mathcal { O } ( \\epsilon )$ training/test errors, and specify the network width requirement. ", + "bbox": [ + 173, + 133, + 825, + 219 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "4.1 DATA SEPARABILITY BY NEURAL TANGENT RANDOM FEATURE ", + "text_level": 1, + "bbox": [ + 174, + 236, + 658, + 252 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "In this subsection, we consider the setting where a large fraction of the training data can be linearly separated by the neural tangent random features. The assumption is stated as follows. ", + "bbox": [ + 174, + 262, + 825, + 291 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Assumption 4.1. There exists a collection of matrices ř $\\begin{array} { r l r } { \\mathbf { U } ^ { * } } & { { } = } & { \\{ \\mathbf { U } _ { 1 } ^ { * } , \\cdot \\cdot \\cdot , \\mathbf { U } _ { L } ^ { * } \\} } \\end{array}$ satisfying $\\begin{array} { r } { \\sum _ { l = 1 } ^ { L } \\| \\mathbf { U } _ { l } ^ { * } \\| _ { F } ^ { 2 } = 1 } \\end{array}$ , such that for at least $( 1 - \\rho )$ fraction of training data we have ", + "bbox": [ + 173, + 295, + 823, + 329 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/fb8ae2dd56d5ced7e90f86993a451590aee7f4906f791c49a7229754830a4dd6.jpg", + "text": "$$\n\\begin{array} { r } { y _ { i } \\big \\langle \\nabla f _ { \\mathbf { W } ^ { ( 0 ) } } ( \\mathbf { x } _ { i } ) , \\mathbf { U } ^ { * } \\big \\rangle \\gtrsim m ^ { 1 / 2 } \\gamma , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 393, + 337, + 602, + 356 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "where $\\gamma$ is an absolute positive constant† and $\\rho \\in [ 0 , 1 )$ ", + "bbox": [ + 173, + 364, + 539, + 380 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "The following corollary provides an upper bound of \u000fNTRF under Assumption 4.1 for some $R$ . ", + "bbox": [ + 173, + 391, + 787, + 407 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Proposition 4.2. Under Assumption 4.1, for any $\\epsilon , \\delta > 0$ , if $R \\geqslant C \\big [ \\log ^ { 1 / 2 } ( n / \\delta ) + \\log ( 1 / \\epsilon ) \\big ] / \\gamma$ for some absolute constant $C$ , then with probability at least $1 - \\delta$ , ", + "bbox": [ + 171, + 411, + 823, + 441 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/88e6fa0b45945bc61969653e9c5b7c85b3865e5771cf9f7e4f1b6c2e8d693250.jpg", + "text": "$$\n\\epsilon _ { \\mathrm { N T R F } } : = \\operatorname* { i n f } _ { F \\in \\mathcal { F } ( \\mathbf { W } ^ { ( 0 ) } , R ) } n ^ { - 1 } \\sum _ { i = 1 } ^ { n } \\ell \\bigl ( y _ { i } F ( \\mathbf { x } _ { i } ) \\bigr ) \\leqslant \\epsilon + \\rho \\cdot \\mathcal { O } ( R ) .\n$$", + "text_format": "latex", + "bbox": [ + 302, + 449, + 694, + 489 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Proposition 4.2 covers the setting where the NTRF function class is allowed to misclassify training data, while most of existing work typically assumes that all training data can be perfectly separated with constant margin (i.e., $\\rho = 0$ ) (Ji and Telgarsky, 2020; Shamir, 2020). Our results show that for sufficiently small misclassification ratio $\\rho = \\mathcal { O } ( \\epsilon )$ , we have $\\epsilon _ { \\mathrm { N T R F } } = \\tilde { O } ( \\epsilon )$ by choosing the radius parameter $R$ logarithimic in $n , \\delta ^ { - 1 }$ , and $\\epsilon ^ { - 1 }$ . Substituting this result into Theorems 3.3,˘ 3.4 and 3.5, it can be shown that a neural network with width $\\bar { m \\mathbf { \\bar { \\alpha } } } = \\mathrm { p o l y } ( L , \\log ( n / \\delta ) , \\log ( 1 / \\epsilon ) ) )$ suffices to guarantee good optimization and generalization performances for both GD and SGD. Consequently, we can obtain that the bounds on the test error for GD and SGD are $\\widetilde { \\mathcal { O } } ( n ^ { - 1 / 2 } )$ and $\\tilde { \\mathcal { O } } ( n ^ { - 1 } )$ respectively. ", + "bbox": [ + 173, + 501, + 826, + 636 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "4.2 DATA SEPARABILITY BY SHALLOW NEURAL TANGENT MODEL ", + "text_level": 1, + "bbox": [ + 174, + 652, + 651, + 667 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "In this subsection, we study the data separation assumption made in Ji and Telgarsky (2020) and show that our results cover this particular setting. We first restate the assumption as follows. ", + "bbox": [ + 171, + 679, + 821, + 708 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Assumption 4.3. There exists $\\overline { { \\mathbf { u } } } ( \\cdot ) : \\mathbb { R } ^ { d } \\mathbb { R } ^ { d }$ and $\\gamma \\geqslant 0$ such that $\\| \\overline { { \\mathbf { u } } } ( \\mathbf { z } ) \\| _ { 2 } \\leqslant 1$ for all $\\mathbf { z } \\in \\mathbb { R } ^ { d }$ , and ", + "bbox": [ + 178, + 710, + 820, + 728 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/15a7b3ef0f33f22ac342fd80cebdbfee69026c61246ae676d0771d63461ac9f2.jpg", + "text": "$$\ny _ { i } \\int _ { \\mathbb { R } ^ { d } } \\sigma ^ { \\prime } ( \\langle \\mathbf { z } , \\mathbf { x } _ { i } \\rangle ) \\cdot \\langle \\overline { { \\mathbf { u } } } ( \\mathbf { z } ) , \\mathbf { x } _ { i } \\rangle \\mathrm { d } \\mu _ { \\mathrm { N } } ( \\mathbf { z } ) \\geqslant \\gamma\n$$", + "text_format": "latex", + "bbox": [ + 357, + 734, + 640, + 767 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "for all $i \\in [ n ]$ , where $\\mu _ { N } ( \\cdot )$ denotes the standard normal distribution. ", + "bbox": [ + 173, + 773, + 625, + 790 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Assumption 4.3 is related to the linear separability of the gradients of the first layer parameters at random initialization, where the randomness is replaced with an integral by taking the infinite width limit. Note that similar assumptions have also been studied in (Cao and Gu, 2020; Nitanda and Suzuki, 2019; Frei et al., 2019). The assumption made in (Cao and Gu, 2020; Frei et al., 2019) uses gradients with respect to the second layer weights instead of the first layer ones. In the following, we mainly focus on Assumption 4.3, while our result can also be generalized to cover the setting in (Cao and Gu, 2020; Frei et al., 2019). ", + "bbox": [ + 173, + 800, + 825, + 898 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "In order to make a fair comparison, we reduce our results for multilayer networks to the two-layer setting. In this case, the neural network function takes form ", + "bbox": [ + 171, + 103, + 825, + 132 + ], + "page_idx": 6 + }, + { + "type": "equation", + "img_path": "images/d25d1130f5b79c5d1d4aa63ba6b20e110952a6905db54b07381ed73432297a79.jpg", + "text": "$$\nf _ { \\mathbf { W } } ( \\mathbf { x } ) = m ^ { 1 / 2 } \\mathbf { W } _ { 2 } \\sigma ( \\mathbf { W } _ { 1 } \\mathbf { x } ) .\n$$", + "text_format": "latex", + "bbox": [ + 400, + 135, + 596, + 154 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Then we provide the following proposition, which states that Assumption 4.3 implies a certain choice of $R = \\bar { \\mathcal { O } } ( 1 )$ such the the minimum training loss achieved by the function in the NTRF function class ${ \\mathcal { F } } ( { \\mathbf { W } } ^ { ( 0 ) } , R )$ satisfies $\\epsilon _ { \\mathrm { N T R F } } = O ( \\epsilon )$ , where $\\epsilon$ is the target error. ", + "bbox": [ + 173, + 156, + 825, + 204 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Proposition 4.4. Suppose the training data satisfies Assumption 4.3. For any “ ‰ $\\epsilon , \\delta > 0$ , let $R =$ $C \\big [ \\bar { \\log } ( n / \\delta ) + \\log ( 1 / \\bar { \\epsilon } ) \\big ] / \\gamma$ for some large enough absolute constant ˘ $C$ . If the neural network width satisfies $m = \\Omega \\big ( \\log ( n / \\delta ) / \\gamma ^ { 2 } \\big )$ , then with probability at least ˘ $1 - \\delta$ , there exist $F _ { \\mathbf { W } ^ { ( 0 ) } , \\overline { { \\mathbf { W } } } } ( \\mathbf { x } _ { i } ) \\in$ ${ \\mathcal { F } } ( { \\bf W } ^ { ( 0 ) } , R )$ such that $\\ell \\big ( y _ { i } \\cdot F _ { \\mathbf { W } ^ { ( 0 ) } , \\overline { { \\mathbf { W } } } } ( \\mathbf { x } _ { i } ) \\big ) \\leqslant \\epsilon , \\forall i \\in [ n ] .$ . ", + "bbox": [ + 173, + 205, + 825, + 271 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Proposition 4.4 shows that under Assumption 4.3, there exists $F _ { \\mathbf { W } ^ { ( 0 ) } , \\overline { { \\mathbf { W } } } } ( \\cdot ) \\in \\mathcal { F } ( \\mathbf { W } ^ { ( 0 ) } , R )$ with $R = \\widetilde { \\mathcal { O } } ( 1 / \\gamma )$ such that the cross-entropy loss of $F _ { \\mathbf { W } ^ { ( 0 ) } , \\overline { { \\mathbf { W } } } } ( \\cdot )$ at each training data point is bounded by \u000f. This implies that $\\epsilon _ { \\mathrm { N T R F } } \\leqslant \\epsilon$ . Moreover, by applying Theorem 3.3 with $L = 2$ , the condition on the neural network width becomes $m = \\widetilde \\Omega ( 1 / \\gamma ^ { 8 } ) ^ { \\ddag }$ , which matches the results proved in Ji and Telgarsky (2020). Moreover, plugging these results on $m$ and $\\epsilon _ { \\mathrm { N T R F } }$ into Theorems 3.4 and 3.5, we can conclude that the bounds on the test error for GD and SGD are $\\widetilde { \\mathcal { O } } ( n ^ { - 1 / 2 } )$ and $\\widetilde { \\mathcal { O } } ( n ^ { - 1 } )$ respectively. ", + "bbox": [ + 173, + 281, + 825, + 378 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "4.3 CLASS-DEPENDENT DATA NONDEGENERATION ", + "text_level": 1, + "bbox": [ + 173, + 393, + 542, + 409 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "In previous subsections, we have shown that under certain data separation conditions \u000fNTRF can be sufficiently small while the corresponding NTRF function class has $R$ of order $\\widetilde { \\mathcal { O } } ( 1 )$ . Thus neural networks with polylogarithmic width enjoy nice optimization and generalization guarantees. In this part, we consider the following much milder data separability assumption made in Zou et al. (2019). ", + "bbox": [ + 174, + 420, + 825, + 479 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Assumption 4.5. For all $i \\neq i ^ { \\prime }$ if $y _ { i } \\neq y _ { i ^ { \\prime } }$ , then $\\| \\mathbf { x } _ { i } - \\mathbf { x } _ { j } \\| _ { 2 } \\geqslant \\phi$ for some absolute constant $\\phi$ . ", + "bbox": [ + 173, + 481, + 794, + 497 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "In contrast to the conventional data nondegeneration assumption (i.e., no duplicate data points) made in Allen-Zhu et al. (2019b); Du et al. (2019b;a); Zou and Gu $( 2 0 1 9 )$ , Assumption 4.5 only requires that the data points from different classes are nondegenerate, thus we call it class-dependent data nondegeneration. ", + "bbox": [ + 174, + 506, + 825, + 563 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "We have the following proposition which shows that Assumption 4.5 also implies the existence of a good function that achieves $\\epsilon$ training error, in the NTRF function class with a certain choice of $R$ . ", + "bbox": [ + 171, + 569, + 823, + 598 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Proposition 4.6. Under Assumption 4.5, if ", + "bbox": [ + 176, + 601, + 462, + 614 + ], + "page_idx": 6 + }, + { + "type": "equation", + "img_path": "images/273e301161a326045653bf26622e1cbcc77648eb5d2ac3ed46abf46277eb3a87.jpg", + "text": "$$\nR = \\Omega \\big ( n ^ { 3 / 2 } \\phi ^ { - 1 / 2 } \\log ( n \\delta ^ { - 1 } \\epsilon ^ { - 1 } ) \\big ) , \\qquad m = \\widetilde { \\Omega } \\big ( L ^ { 2 2 } n ^ { 1 2 } \\phi ^ { - 4 } \\big ) ,\n$$", + "text_format": "latex", + "bbox": [ + 284, + 617, + 694, + 638 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "we have $\\epsilon _ { \\mathrm { N T R F } } \\leqslant \\epsilon$ with probability at least $1 - \\delta$ . ", + "bbox": [ + 176, + 640, + 500, + 655 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Proposition 4.6 suggests that under Assumption 4.5, in order to guarantee $\\epsilon _ { \\mathrm { N T R F } } \\leqslant \\epsilon$ , the size of NTRF function class needs to be $\\Omega ( n ^ { 3 / 2 } )$ . Plugging this into Theorems 3.4 and 3.5 leads to vacuous bounds on the test error. This makes sense since Assumption 4.5 basically covers the “random label” setting, which is impossible to be learned with small generalization error. Moreover, we would like to point out our theoretical analysis leads to a sharper over-parameterization condition than that\\` ˘ proved in Zou et al. (2019), i.e., $\\bar { m = \\Omega } \\big ( n ^ { 1 4 } L ^ { 1 6 } \\phi ^ { - 4 } + n ^ { 1 2 } L ^ { 1 6 } \\bar { \\phi } ^ { - 4 } \\epsilon ^ { - 1 } \\big )$ , if the network depth satisfies $L \\leqslant \\widetilde { \\mathcal { O } } ( n ^ { 1 / 3 } \\vee \\epsilon ^ { - 1 / 6 } )$ . ", + "bbox": [ + 173, + 664, + 826, + 771 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "5 PROOF SKETCH OF THE MAIN THEORY ", + "text_level": 1, + "bbox": [ + 174, + 790, + 522, + 806 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "In this section, we introduce a key technical lemma in Section 5.1, based on which we provide a proof sketch of Theorems 3.3. The full proof of all our results can be found in the appendix. ", + "bbox": [ + 176, + 819, + 825, + 849 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Here we introduce a key technical lemma used in the proof of Theorem 3.3. ", + "bbox": [ + 174, + 128, + 668, + 145 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Our proof is based on the key observation that near initialization, the neural network function can be approximated by its first-order Taylor expansion. In the following, we first give the definition of the linear approximation error in a $\\tau$ -neighborhood around initialization. ", + "bbox": [ + 171, + 150, + 825, + 193 + ], + "page_idx": 7 + }, + { + "type": "equation", + "img_path": "images/fc62874c860cacb84bb37a2e13076cad34a8f37b5bc277064009fc1729ac343f.jpg", + "text": "$$\n\\epsilon _ { \\mathrm { a p p } } ( \\tau ) : = \\operatorname* { s u p } _ { \\substack { i = 1 , \\dots , n \\mathbf { W } ^ { \\prime } , \\mathbf { W } \\in \\mathcal { B } ( \\mathbf { W } ^ { ( 0 ) } , \\tau ) } } \\big | f _ { \\mathbf { W } ^ { \\prime } } ( \\mathbf { x } _ { i } ) - f _ { \\mathbf { W } } ( \\mathbf { x } _ { i } ) - \\big \\langle \\nabla f _ { \\mathbf { W } } ( \\mathbf { x } _ { i } ) , \\mathbf { W } ^ { \\prime } - \\mathbf { W } \\big \\rangle \\big | .\n$$", + "text_format": "latex", + "bbox": [ + 222, + 194, + 774, + 223 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "If all the iterates of GD stay inside a neighborhood around initialization with small linear approximation error, then we may expect that the training of neural networks should be similar to the training of the corresponding linear model, where standard optimization techniques can be applied. Motivated by this, we also give the following definition on the gradient upper bound of neural networks around initialization, which is related to the Lipschitz constant of the optimization objective function. ", + "bbox": [ + 173, + 227, + 826, + 296 + ], + "page_idx": 7 + }, + { + "type": "equation", + "img_path": "images/219751492f27f2b265a91f41d17b34154a2f1100e553e050d5bf5a11b3dfbf7d.jpg", + "text": "$$\n\\begin{array} { r } { M ( \\tau ) : = \\underset { i = 1 , \\dots , n } { \\operatorname* { s u p } } \\underset { l = 1 , \\dots , L } { \\operatorname* { s u p } } \\underset { \\mathbf { W } \\in \\mathcal { B } ( \\mathbf { W } ^ { ( 0 ) } , \\tau ) } { \\operatorname* { s u p } } \\Vert \\nabla _ { \\mathbf { W } _ { l } } f _ { \\mathbf { W } } ( \\mathbf { x } _ { i } ) \\Vert _ { F } . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 312, + 299, + 684, + 327 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "By definition, we can choose $\\mathbf { W } ^ { * } \\in { \\cal B } ( \\mathbf { W } ^ { ( 0 ) } , R m ^ { - 1 / 2 } )$ such that $\\begin{array} { r } { n ^ { - 1 } \\sum _ { i = 1 } ^ { n } \\ell \\big ( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ^ { * } } ( \\mathbf { x } _ { i } ) \\big ) = } \\end{array}$ \u000fNTRF. Then we have the following lemma. ", + "bbox": [ + 174, + 330, + 820, + 361 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Lemma 5.1. Set $\\eta = \\mathcal { O } ( L ^ { - 1 } M ( \\tau ) ^ { - 2 } )$ . Suppose that $\\mathbf { W } ^ { * } \\in { \\cal B } ( \\mathbf { W } ^ { ( 0 ) } , \\tau )$ and $\\mathbf { W } ^ { ( t ) } \\in { \\cal B } ( \\mathbf { W } ^ { ( 0 ) } , \\tau )$ for all $0 \\leqslant t \\leqslant t ^ { \\prime } - 1$ . Then it holds that ", + "bbox": [ + 173, + 363, + 823, + 393 + ], + "page_idx": 7 + }, + { + "type": "equation", + "img_path": "images/2ec8deb64ab26e69d7454635272ae2f470e29db25f7bf4f79d78a047f755423f.jpg", + "text": "$$\n\\frac { 1 } { t ^ { \\prime } } \\sum _ { t = 0 } ^ { t ^ { \\prime } - 1 } L _ { S } ( \\mathbf { W } ^ { ( t ) } ) \\leqslant \\frac { \\| \\mathbf { W } ^ { ( 0 ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } - \\| \\mathbf { W } ^ { ( t ^ { \\prime } ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } + 2 t ^ { \\prime } \\eta \\epsilon _ { \\mathrm { N T R F } } } { t ^ { \\prime } \\eta \\left( \\frac { 3 } { 2 } - 4 \\epsilon _ { \\mathrm { a p p } } ( \\tau ) \\right) } .\n$$", + "text_format": "latex", + "bbox": [ + 261, + 395, + 736, + 438 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Lemma 5.1 plays a central role in our proof. In specific, if $\\mathbf { W } ^ { ( t ) } \\in { \\cal B } ( \\mathbf { W } ^ { ( 0 ) } , \\tau )$ for all $t \\leqslant t ^ { \\prime }$ , then Lemma 5.1 implies that the average training loss is in the same order of \u000fNTRF as long as the linear approximation error $\\epsilon _ { \\mathrm { a p p } } ( \\tau )$ is bounded by a positive constant. This is in contrast to the proof in Cao and Gu (2019), where $\\bar { \\epsilon } _ { \\mathrm { a p p } } ( \\tau )$ appears as an additive term in the upper bound of the training loss, thus requiring $\\epsilon _ { \\mathrm { a p p } } ( \\tau ) = \\bar { \\mathcal { O } } ( \\epsilon _ { \\mathrm { N T R F } } )$ to achieve the same error bound as in Lemma 5.1. Since we can show that $\\epsilon _ { \\mathrm { a p p } } = \\tilde { \\mathcal { O } } ( m ^ { - 1 / 6 } )$ (See Section A.1), this suggests that $m = \\widetilde { \\Omega } ( 1 )$ is sufficient to make the average training loss in the same order of \u000fNTRF. ", + "bbox": [ + 173, + 448, + 825, + 551 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Compared with the recent results for two-layer networks by Ji and Telgarsky (2020), Lemma 5.1 is proved with different techniques. In specific, the proof by Ji and Telgarsky (2020) relies on the 1-homogeneous property of the ReLU activation function, which limits their analysis to two-layer networks with fixed second layer weights. In comparison, our proof does not rely on homogeneity, and is purely based on the linear approximation property of neural networks and some specific properties of the loss function. Therefore, our proof technique can handle deep networks, and is potentially applicable to non-ReLU activation functions and other network architectures (e.g, Convolutional neural networks and Residual networks). ", + "bbox": [ + 173, + 556, + 825, + 669 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "5.2 PROOF SKETCH OF THEOREM 3.3 ", + "text_level": 1, + "bbox": [ + 176, + 684, + 444, + 699 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Here we provide a proof sketch of Theorem 3.3. The proof consists of two steps: (i) showing that all $T$ iterates stay close to initialization, and (ii) bounding the empirical loss achieved by gradient descent. Both of these steps are proved based on Lemma 5.1. ", + "bbox": [ + 173, + 710, + 825, + 753 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Proof sketch of Theorem 3.3. Recall that we choose \\` ˘ $\\begin{array} { r l r } { \\mathbf { W } ^ { * } } & { { } \\in } & { \\mathcal { B } ( \\mathbf { W } ^ { ( 0 ) } , R m ^ { - 1 / 2 } ) } \\end{array}$ such that $\\begin{array} { r } { n ^ { - 1 } \\sum _ { i = 1 } ^ { n } \\ell \\big ( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ^ { * } } ( \\mathbf { x } _ { i } ) \\big ) \\ = \\ \\epsilon _ { \\mathrm { N T R F } } } \\end{array}$ . We set $\\tau = \\widetilde { \\mathcal { O } } ( L ^ { 1 / 2 } m ^ { - 1 / 2 } R )$ , which is chosen slightly larger than $m ^ { - 1 / 2 } R$ since Lemma 5.1 requires the region $B ( \\mathbf { W } ^ { ( 0 ) } , \\tau )$ to include both $\\mathbf { W } ^ { * }$ and $\\{ \\mathbf { W } ^ { ( t ) } \\} _ { t = 0 , \\ldots , t ^ { \\prime } }$ . Then by Lemmas 4.1 and B.3 in Cao and $\\mathrm { G u }$ (2019) we know that $\\epsilon _ { \\mathrm { a p p } } ( \\tau ) =$ ${ \\widetilde O } ( \\tau ^ { 4 / 3 } m ^ { 1 / 2 } L ^ { 3 } ) = { \\widetilde O } ( R ^ { 4 / 3 } L ^ { 1 1 / 3 } m ^ { - 1 / 6 } )$ . Therefore, we can set $m = \\widetilde \\Omega ( R ^ { 8 } L ^ { 2 2 } )$ to ensure that $\\epsilon _ { \\mathrm { a p p } } ( \\tau ) \\leqslant 1 / 8$ . ", + "bbox": [ + 173, + 767, + 825, + 866 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Then we proceed to show that all iterates stay inside the region $B ( \\mathbf { W } ^ { ( 0 ) } , \\tau )$ . Since the L.H.S. of Lemma 5.1 is strictly positive and $\\epsilon _ { \\mathrm { a p p } } ( \\tau ) \\leqslant \\dot { 1 / 8 }$ , we have for all $t \\leqslant T$ , ", + "bbox": [ + 171, + 873, + 825, + 904 + ], + "page_idx": 7 + }, + { + "type": "equation", + "img_path": "images/5aa86cb4870bf21d6849b64f08d570328562778861bf0ddbb57796719d987235.jpg", + "text": "$$\n\\| \\mathbf { W } ^ { ( 0 ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } - \\| \\mathbf { W } ^ { ( t ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } \\geqslant - 2 t \\eta \\epsilon _ { \\mathrm { N T R F } } ,\n$$", + "text_format": "latex", + "bbox": [ + 328, + 906, + 666, + 925 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "which gives an upper bound of $\\| \\mathbf { W } ^ { ( t ) } - \\mathbf { W } ^ { * } \\| _ { F }$ . Then by the choice of $\\eta , T$ , triangle inequality, and a simple induction argument, we see that $\\| \\mathbf { W } ^ { ( t ) } - \\mathbf { W } ^ { ( 0 ) } \\| _ { F } \\leqslant m ^ { - 1 / 2 } R + \\sqrt { 2 T \\eta \\epsilon _ { \\mathrm { N T R F } } } \\ =$ ${ \\widetilde O } ( L ^ { 1 / 2 } m ^ { - 1 / 2 } R )$ , which verifies that $\\mathbf { W } ^ { ( t ) } \\in { \\cal B } ( \\mathbf { W } ^ { ( 0 ) } , \\tau )$ for $t = 0 , \\ldots , T - 1$ . ", + "bbox": [ + 174, + 102, + 825, + 151 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "The second step is to show that GD can find a neural network with at most $3 \\epsilon _ { \\mathrm { N T R F } }$ training loss within $T$ iterations. To show this, by the bound given in Lemma 5.1 with $\\epsilon _ { \\mathrm { a p p } } \\leqslant 1 / 8$ , we drop the terms $\\| \\mathbf { W } ^ { ( t ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 }$ and rearrange the inequality to obtain ", + "bbox": [ + 174, + 156, + 825, + 202 + ], + "page_idx": 8 + }, + { + "type": "equation", + "img_path": "images/9aab9488256c7cb2bc6ef14c541085465e3f1315bdb73335fe59c12800bf8365.jpg", + "text": "$$\n\\frac { 1 } { T } \\sum _ { t = 0 } ^ { T - 1 } L _ { S } ( \\mathbf { W } ^ { ( t ) } ) \\leqslant \\frac { 1 } { \\eta T } \\| \\mathbf { W } ^ { ( 0 ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } + 2 \\epsilon _ { \\mathrm { N T R F } } .\n$$", + "text_format": "latex", + "bbox": [ + 325, + 207, + 671, + 250 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "We see that $T$ is large enough to ensure that the first term in the bound above is smaller than \u000fNTRF. This implies that the best iterate among $\\mathbf { W } ^ { ( 0 ) } , \\ldots , \\mathbf { W } ^ { ( T - 1 ) }$ achieves an empirical loss at most $3 \\epsilon _ { \\mathrm { N T R F } }$ . □ ", + "bbox": [ + 174, + 253, + 826, + 297 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "6 CONCLUSION ", + "text_level": 1, + "bbox": [ + 174, + 318, + 318, + 333 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "In this paper, we established the global convergence and generalization error bounds of GD and SGD for training deep ReLU networks for the binary classification problem. We show that a network width condition that is polylogarithmic in the sample size $n$ and the inverse of target error $\\epsilon ^ { - 1 }$ is sufficient to guarantee the learning of deep ReLU networks. Our results resolve an open question raised in Ji and Telgarsky (2020). ", + "bbox": [ + 173, + 348, + 825, + 419 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "ACKNOWLEDGEMENT ", + "text_level": 1, + "bbox": [ + 176, + 434, + 328, + 448 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "We would like to thank the anonymous reviewers for their helpful comments. ZC, YC and QG are partially supported by the National Science Foundation CAREER Award 1906169, IIS-2008981 and Salesforce Deep Learning Research Award. DZ is supported by the Bloomberg Data Science Ph.D. Fellowship. The views and conclusions contained in this paper are those of the authors and should not be interpreted as representing any funding agencies. ", + "bbox": [ + 174, + 457, + 825, + 529 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "REFERENCES ", + "text_level": 1, + "bbox": [ + 174, + 547, + 285, + 563 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "ALLEN-ZHU, Z., LI, Y. and LIANG, Y. (2019a). Learning and generalization in overparameterized neural networks, going beyond two layers. In Advances in Neural Information Processing Systems. ", + "bbox": [ + 173, + 570, + 825, + 599 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "ALLEN-ZHU, Z., LI, Y. and SONG, Z. (2019b). A convergence theory for deep learning via over-parameterization. In International Conference on Machine Learning. ", + "bbox": [ + 174, + 607, + 821, + 637 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "ALLEN-ZHU, Z., LI, Y. and SONG, Z. (2019c). On the convergence rate of training recurrent neural networks. In Advances in Neural Information Processing Systems. ", + "bbox": [ + 174, + 645, + 820, + 674 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "ARORA, S., DU, S., HU, W., LI, Z. and WANG, R. (2019a). Fine-grained analysis of optimization and generalization for overparameterized two-layer neural networks. In International Conference on Machine Learning. ", + "bbox": [ + 174, + 681, + 823, + 724 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "ARORA, S., DU, S. S., HU, W., LI, Z., SALAKHUTDINOV, R. and WANG, R. (2019b). On exact computation with an infinitely wide neural net. In Advances in Neural Information Processing Systems. ", + "bbox": [ + 174, + 732, + 823, + 776 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "BAI, Y. and LEE, J. D. (2019). Beyond linearization: On quadratic and higher-order approximation of wide neural networks. In International Conference on Learning Representations. ", + "bbox": [ + 174, + 784, + 823, + 813 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "BARTLETT, P. L., FOSTER, D. J. and TELGARSKY, M. J. (2017). Spectrally-normalized margin bounds for neural networks. In Advances in Neural Information Processing Systems. ", + "bbox": [ + 176, + 820, + 823, + 849 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "BARTLETT, P. L. and MENDELSON, S. (2002). Rademacher and Gaussian complexities: Risk bounds and structural results. Journal of Machine Learning Research 3 463–482. ", + "bbox": [ + 176, + 857, + 820, + 887 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "CAO, Y. and GU, Q. (2019). Generalization bounds of stochastic gradient descent for wide and deep neural networks. In Advances in Neural Information Processing Systems. ", + "bbox": [ + 176, + 895, + 821, + 924 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "CAO, Y. and GU, Q. (2020). Generalization error bounds of gradient descent for learning overparameterized deep relu networks. In the Thirty-Fourth AAAI Conference on Artificial Intelligence. \nCESA-BIANCHI, N., CONCONI, A. and GENTILE, C. (2004). On the generalization ability of on-line learning algorithms. IEEE Transactions on Information Theory 50 2050–2057. \nCHIZAT, L., OYALLON, E. and BACH, F. (2019). On lazy training in differentiable programming. In Advances in Neural Information Processing Systems. \nDU, S., LEE, J., LI, H., WANG, L. and ZHAI, X. (2019a). Gradient descent finds global minima of deep neural networks. In International Conference on Machine Learning. \nDU, S. S., ZHAI, X., POCZOS, B. and SINGH, A. (2019b). Gradient descent provably optimizes over-parameterized neural networks. In International Conference on Learning Representations. \nFREI, S., CAO, Y. and GU, Q. (2019). Algorithm-dependent generalization bounds for overparameterized deep residual networks. In Advances in Neural Information Processing Systems. \nHE, K., ZHANG, X., REN, S. and SUN, J. (2015). Delving deep into rectifiers: Surpassing humanlevel performance on imagenet classification. In Proceedings of the IEEE international conference on computer vision. \nJACOT, A., GABRIEL, F. and HONGLER, C. (2018). Neural tangent kernel: Convergence and generalization in neural networks. In Advances in neural information processing systems. \nJI, Z. and TELGARSKY, M. (2018). Risk and parameter convergence of logistic regression. arXiv preprint arXiv:1803.07300 . \nJI, Z. and TELGARSKY, M. (2020). Polylogarithmic width suffices for gradient descent to achieve arbitrarily small test error with shallow relu networks. In International Conference on Learning Representations. \nKAWAGUCHI, K. and HUANG, J. (2019). Gradient descent finds global minima for generalizable deep neural networks of practical sizes. In 2019 57th Annual Allerton Conference on Communication, Control, and Computing (Allerton). IEEE. \nKRIZHEVSKY, A. ET AL. (2009). Learning multiple layers of features from tiny images . \nLEE, J., XIAO, L., SCHOENHOLZ, S. S., BAHRI, Y., SOHL-DICKSTEIN, J. and PENNINGTON, J. (2019). Wide neural networks of any depth evolve as linear models under gradient descent. In Advances in Neural Information Processing Systems. \nMOHRI, M., ROSTAMIZADEH, A. and TALWALKAR, A. (2018). Foundations of machine learning. MIT press. \nNITANDA, A. and SUZUKI, T. (2019). Refined generalization analysis of gradient descent for over-parameterized two-layer neural networks with smooth activations on classification problems. arXiv preprint arXiv:1905.09870 . \nOYMAK, S. and SOLTANOLKOTABI, M. (2019). Towards moderate overparameterization: global convergence guarantees for training shallow neural networks. arXiv preprint arXiv:1902.04674 . \nSHALEV-SHWARTZ, S. and BEN-DAVID, S. (2014). Understanding machine learning: From theory to algorithms. Cambridge university press. \nSHAMIR, O. (2020). Gradient methods never overfit on separable data. arXiv preprint arXiv:2007.00028 . \nVERSHYNIN, R. (2010). Introduction to the non-asymptotic analysis of random matrices. arXiv preprint arXiv:1011.3027 . \nZOU, D., CAO, Y., ZHOU, D. and GU, Q. (2019). Gradient descent optimizes over-parameterized deep ReLU networks. Machine Learning . \nZOU, D. and GU, Q. (2019). An improved analysis of training over-parameterized deep neural networks. In Advances in Neural Information Processing Systems. ", + "bbox": [ + 168, + 31, + 828, + 935 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "A PROOF OF MAIN THEOREMS ", + "text_level": 1, + "bbox": [ + 176, + 102, + 447, + 118 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "In this section we provide the full proof of Theorems 3.3, 3.4 and 3.5. ", + "bbox": [ + 173, + 132, + 629, + 148 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "A.1 PROOF OF THEOREM 3.3 ", + "text_level": 1, + "bbox": [ + 176, + 164, + 390, + 179 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "We first provide the following lemma which is useful in the subsequent proof. ", + "bbox": [ + 173, + 189, + 683, + 205 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Lemma A.1 (Lemmas 4.1 and B.3 in Cao and Gu (2019)). There exists an absolute constant $\\kappa$ such that, with probability at least $1 - \\mathcal { O } ( n L ^ { 2 } ) \\exp [ - \\Omega ( m \\tau ^ { 2 / 3 } L ) ]$ , for any $\\tau \\leqslant \\kappa L ^ { - 6 } [ \\log ( m ) ] ^ { - 3 / 2 }$ , i t holds that ", + "bbox": [ + 173, + 208, + 826, + 251 + ], + "page_idx": 10 + }, + { + "type": "equation", + "img_path": "images/8fd5633b85bdfb78988356b035bfa4986d3c33a8027063d12a5dc54c89b5bb40.jpg", + "text": "$$\n\\epsilon _ { \\mathrm { a p p } } ( \\tau ) \\leqslant \\widetilde { \\mathcal { O } } \\bigl ( \\tau ^ { 4 / 3 } L ^ { 3 } m ^ { 1 / 2 } \\bigr ) , \\quad M ( \\tau ) \\leqslant \\widetilde { \\mathcal { O } } ( \\sqrt { m } ) .\n$$", + "text_format": "latex", + "bbox": [ + 334, + 252, + 661, + 275 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Proof of Theorem 3.3. Recall that $\\mathbf { W } ^ { * }$ is chosen such that ", + "bbox": [ + 173, + 286, + 558, + 301 + ], + "page_idx": 10 + }, + { + "type": "equation", + "img_path": "images/349275ef8bcc161ee9f4ffd6c38eba91dc74699deb9ff1e710ff3ae0d1413806.jpg", + "text": "$$\n\\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } \\ell \\big ( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ^ { * } } ( \\mathbf { x } _ { i } ) \\big ) = \\epsilon _ { \\mathrm { N T R F } }\n$$", + "text_format": "latex", + "bbox": [ + 380, + 306, + 617, + 347 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "and $\\mathbf { W } ^ { * } \\in { \\mathcal { B } } ( \\mathbf { W } ^ { ( 0 ) } , R m ^ { - 1 / 2 } )$ . Note that to apply Lemma 5.1, we need the region $B ( \\mathbf { W } ^ { ( 0 ) } , \\tau )$ to include both $\\mathbf { W } ^ { * }$ and $\\{ \\mathbf { W } ^ { ( t ) } \\} _ { t = 0 , \\dots , t ^ { \\prime } }$ . This motivates us to set $\\tau = \\widetilde { \\mathcal { O } } ( L ^ { 1 / 2 } m ^ { - 1 / 2 } R )$ , which is slightly larger than $m ^ { - 1 / 2 } R$ . With this choice of $\\tau$ , by Lemma A.1 we have $\\epsilon _ { \\mathrm { a p p } } ( \\tau ) = \\widetilde { \\mathcal { O } } ( \\tau ^ { 4 / 3 } m ^ { 1 / 2 } L ^ { 3 } ) =$ $\\widetilde { \\mathcal { O } } ( R ^ { 4 / 3 } L ^ { 1 1 / 3 } m ^ { - 1 / 6 } )$ . Therefore, we can set ", + "bbox": [ + 173, + 352, + 826, + 419 + ], + "page_idx": 10 + }, + { + "type": "equation", + "img_path": "images/827c73fb83de0d5510764e2e2c5d6af55ff844bf04d20a13cc278e54f0f21d65.jpg", + "text": "$$\nm = \\widetilde \\Omega ( R ^ { 8 } L ^ { 2 2 } )\n$$", + "text_format": "latex", + "bbox": [ + 444, + 424, + 553, + 444 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "to ensure that $\\epsilon _ { \\mathrm { a p p } } ( \\tau ) \\leqslant 1 / 8$ , where $\\widetilde { \\Omega } ( \\cdot )$ hides polylogarithmic dependencies on network depth $L$ , NTRF function class size $R$ , and failure probability parameter $\\delta$ . Then by Lemma 5.1, we have with probability at least $1 - \\delta$ , we have ", + "bbox": [ + 173, + 450, + 828, + 494 + ], + "page_idx": 10 + }, + { + "type": "equation", + "img_path": "images/3c85a7fc6ed2aac7fe077682e0a88b4da1bc24ffdb86f9ac56a1c95884283531.jpg", + "text": "$$\n\\| \\mathbf { W } ^ { ( 0 ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } - \\| \\mathbf { W } ^ { ( t ^ { \\prime } ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } \\geqslant \\eta \\sum _ { t = 0 } ^ { t ^ { \\prime } - 1 } L _ { S } ( \\mathbf { W } ^ { ( t ) } ) - 2 t ^ { \\prime } \\eta \\epsilon _ { \\mathrm { N T R F } }\n$$", + "text_format": "latex", + "bbox": [ + 267, + 500, + 728, + 542 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "as long as $\\mathbf { W } ^ { ( 0 ) } , \\ldots , \\mathbf { W } ^ { ( t ^ { \\prime } - 1 ) } \\in \\mathcal { B } ( \\mathbf { W } ^ { ( 0 ) } , \\tau )$ . In the following proof we choose $\\eta = \\Theta ( L ^ { - 1 } m ^ { - 1 } )$ and $T = \\lceil L R ^ { 2 } m ^ { - 1 } \\eta ^ { - 1 } \\epsilon _ { \\mathrm { N T R F } } ^ { - 1 } \\rceil$ . ", + "bbox": [ + 173, + 547, + 825, + 582 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "We prove the theorem by two steps: 1) we show that all iterates $\\{ \\mathbf { W } ^ { ( 0 ) } , \\cdots , \\mathbf { W } ^ { ( T ) } \\}$ will stay inside the region $B ( \\mathbf { W } ^ { ( 0 ) } , \\tau )$ ; and 2) we show that GD can find a neural network with at most $3 \\epsilon _ { \\mathrm { N T R F } }$ training loss within $T$ iterations. ", + "bbox": [ + 173, + 587, + 825, + 633 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "All iterates stay inside $B ( \\mathbf { W } ^ { ( 0 ) } , \\tau )$ . We prove this part by induction. Specifically, given $t ^ { \\prime } \\leqslant T$ , we assume the hypothesis $\\mathbf { W } ^ { ( t ) } \\in { \\cal B } ( \\mathbf { W } ^ { ( 0 ) } , \\tau )$ holds for all $t < t ^ { \\prime }$ and prove that $\\mathbf { W } ^ { ( t ^ { \\prime } ) } \\in { \\cal B } ( \\mathbf { W } ^ { ( 0 ) } , \\tau )$ First, it is clear that $\\mathbf { W } ^ { ( 0 ) } \\in { \\mathcal { B } } ( \\mathbf { W } ^ { ( 0 ) } , \\tau )$ . Then by (A.2) and the fact that $L _ { S } ( \\mathbf { W } ) \\geqslant 0$ , we have ", + "bbox": [ + 173, + 640, + 826, + 689 + ], + "page_idx": 10 + }, + { + "type": "equation", + "img_path": "images/14ebcfe68fb2a1208600a48edc85d7428cf522af1e6063d04e2909cd9bf33c94.jpg", + "text": "$$\n\\| \\mathbf { W } ^ { ( t ^ { \\prime } ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } \\leqslant \\| \\mathbf { W } ^ { ( 0 ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } + 2 \\eta t ^ { \\prime } \\epsilon _ { \\mathrm { N T R F } }\n$$", + "text_format": "latex", + "bbox": [ + 331, + 694, + 665, + 713 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Note that $T = \\lceil L R ^ { 2 } m ^ { - 1 } \\eta ^ { - 1 } \\epsilon _ { \\mathrm { N T R F } } ^ { - 1 } \\rceil$ and $\\mathbf { W } ^ { \\ast } \\in { \\mathcal { B } } ( \\mathbf { W } ^ { ( 0 ) } , R \\cdot m ^ { - 1 / 2 } )$ , we have ", + "bbox": [ + 176, + 718, + 686, + 737 + ], + "page_idx": 10 + }, + { + "type": "equation", + "img_path": "images/611a895b24ee2a34b182937742fd0ddd6d91d7a9ba602bd47adb40c2bb55e3b6.jpg", + "text": "$$\n\\sum _ { l = 1 } ^ { L } \\| \\mathbf { W } _ { l } ^ { ( t ^ { \\prime } ) } - \\mathbf { W } _ { l } ^ { * } \\| _ { F } ^ { 2 } = \\| \\mathbf { W } ^ { ( t ^ { \\prime } ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } \\leqslant C L R ^ { 2 } m ^ { - 1 } ,\n$$", + "text_format": "latex", + "bbox": [ + 308, + 741, + 684, + 784 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "where $C \\geqslant 4$ is an absolute constant. Therefore, by triangle inequality, we further have the following for all $l \\in [ L ]$ , ", + "bbox": [ + 173, + 787, + 823, + 818 + ], + "page_idx": 10 + }, + { + "type": "equation", + "img_path": "images/3194527084a01da78adebff7e3a9c6944952b985fe7562d68691638d1993d8e4.jpg", + "text": "$$\n\\begin{array} { r l } & { \\| \\mathbf { W } _ { l } ^ { ( t ^ { \\prime } ) } - \\mathbf { W } _ { l } ^ { ( 0 ) } \\| _ { F } \\leqslant \\| \\mathbf { W } _ { l } ^ { ( t ^ { \\prime } ) } - \\mathbf { W } _ { l } ^ { * } \\| _ { F } + \\| \\mathbf { W } _ { l } ^ { ( 0 ) } - \\mathbf { W } _ { l } ^ { * } \\| _ { F } } \\\\ & { \\qquad \\leqslant \\sqrt { C L } R m ^ { - 1 / 2 } + R m ^ { - 1 / 2 } } \\\\ & { \\qquad \\leqslant 2 \\sqrt { C L } R m ^ { - 1 / 2 } . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 303, + 819, + 692, + 886 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Therefore, it is clear that $\\| \\mathbf { W } _ { l } ^ { ( t ^ { \\prime } ) } - \\mathbf { W } _ { l } ^ { ( 0 ) } \\| _ { F } \\leqslant 2 \\sqrt { C L } R m ^ { - 1 / 2 } \\leqslant \\tau$ based on our choice of $\\tau$ previously. This completes the proof of the first part. ", + "bbox": [ + 174, + 891, + 823, + 925 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Convergence of gradient descent. (A.2) implies ", + "text_level": 1, + "bbox": [ + 174, + 103, + 498, + 119 + ], + "page_idx": 11 + }, + { + "type": "equation", + "img_path": "images/f177f9514052317e7f29c2baffb1fb995ce6b0eff7634445d3c08261e1c4d24f.jpg", + "text": "$$\n\\| \\mathbf { W } ^ { ( 0 ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } - \\| \\mathbf { W } ^ { ( T ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } \\geqslant \\eta \\bigg ( \\sum _ { t = 0 } ^ { T - 1 } L _ { S } ( \\mathbf { W } ^ { ( t ) } ) - 2 T \\epsilon _ { \\mathrm { N T R F } } \\bigg ) .\n$$", + "text_format": "latex", + "bbox": [ + 256, + 127, + 740, + 170 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Dividing by $\\eta T$ on the both sides, we get ", + "bbox": [ + 174, + 178, + 446, + 193 + ], + "page_idx": 11 + }, + { + "type": "equation", + "img_path": "images/5561be09a92eb3a8c38a4011286f25e5c65811469261a5f7ec8efe76bda53b7f.jpg", + "text": "$$\n\\frac { 1 } { T } \\sum _ { t = 0 } ^ { T - 1 } L _ { S } ( \\mathbf { W } ^ { ( t ) } ) \\leqslant \\frac { \\| \\mathbf { W } ^ { ( 0 ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } } { \\eta T } + 2 \\epsilon _ { \\mathrm { N T R F } } \\leqslant \\frac { L R ^ { 2 } m ^ { - 1 } } { \\eta T } + 2 \\epsilon _ { \\mathrm { N T R F } } \\leqslant 3 \\epsilon _ { \\mathrm { N T R F } } ,\n$$", + "text_format": "latex", + "bbox": [ + 225, + 202, + 769, + 243 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "where the second inequality is by the fact that $\\mathbf { W ^ { * } } ~ \\in ~ \\mathcal { B } ( \\mathbf { W } ^ { ( 0 ) } , R \\cdot m ^ { - 1 / 2 } )$ and the last inequality is by our choices of $T$ and $\\eta$ which ensure that $T \\eta \\ \\geqslant \\ L R ^ { 2 } m ^ { - 1 } \\epsilon _ { \\mathrm { N T R F } } ^ { - 1 }$ . Notice that $T = \\lceil L R ^ { 2 } m ^ { - 1 } \\eta ^ { - 1 } \\epsilon _ { \\mathrm { N T R F } } ^ { - 1 } \\rceil = \\mathcal { O } ( L ^ { 2 } R ^ { 2 } \\epsilon _ { \\mathrm { N T R F } } ^ { - 1 } )$ . This completes the proof of the second part, and we are able to complete the proof. □ ", + "bbox": [ + 173, + 253, + 826, + 315 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "A.2 PROOF OF THEOREM 3.4 ", + "text_level": 1, + "bbox": [ + 174, + 333, + 390, + 348 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Following Cao and Gu (2020), we first introduce the definition of surrogate loss of the network, which is defined by the derivative of the loss function. ", + "bbox": [ + 173, + 359, + 823, + 390 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Definition A.2. We define the empirical surrogate error $\\mathcal { E } _ { S } ( \\mathbf { W } )$ and population surrogate error $\\mathcal { E } _ { \\mathcal { D } } ( \\mathbf { W } )$ as follows: ", + "bbox": [ + 171, + 393, + 823, + 424 + ], + "page_idx": 11 + }, + { + "type": "equation", + "img_path": "images/54da982e36a2bff0c54a6d98a056b6e419e3c147eef38c2b4aaa2b631eaa9d17.jpg", + "text": "$$\n\\mathcal { E } _ { S } ( \\mathbf { W } ) : = - \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } \\ell ^ { \\prime } \\big [ y _ { i } \\cdot f _ { \\mathbf { W } } ( x _ { i } ) \\big ] , ~ \\mathcal { E } _ { \\mathcal { D } } ( \\mathbf { W } ) : = \\mathbb { E } _ { ( \\mathbf { x } , y ) \\sim \\mathcal { D } } \\big \\{ - \\ell ^ { \\prime } \\big [ y \\cdot f _ { \\mathbf { W } } ( \\mathbf { x } ) \\big ] \\big \\} .\n$$", + "text_format": "latex", + "bbox": [ + 236, + 433, + 761, + 473 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "The following lemma gives uniform-convergence type of results for $\\mathcal { E } _ { S } ( \\mathbf { W } )$ utilizing the fact that $- \\ell ^ { \\prime } ( \\cdot )$ is bounded and Lipschitz continuous. ", + "bbox": [ + 173, + 488, + 823, + 518 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Lemma A.3. For any $\\tilde { R } , \\delta > 0$ , suppose that $m = \\widetilde \\Omega ( L ^ { 1 2 } \\widetilde R ^ { 2 } ) \\cdot [ \\log ( 1 / \\delta ) ] ^ { 3 / 2 }$ . Then with probability at least $1 - \\delta$ , it holds that ", + "bbox": [ + 173, + 522, + 821, + 555 + ], + "page_idx": 11 + }, + { + "type": "equation", + "img_path": "images/d9f2e16c475970354ccbc036faf05ec6ced8724b26891c387898f6bb39d87f8b.jpg", + "text": "$$\n\\left| \\mathcal E _ { \\mathcal D } ( \\mathbf W ) - \\mathcal E _ { S } ( \\mathbf W ) \\right| \\leqslant \\widetilde O \\left( \\operatorname* { m i n } \\left\\{ 4 ^ { L } L ^ { 3 / 2 } \\widetilde R \\sqrt { \\frac { m } { n } } , \\frac { L \\widetilde R } { \\sqrt { n } } + \\frac { L ^ { 3 } \\widetilde R ^ { 4 / 3 } } { m ^ { 1 / 6 } } \\right\\} \\right) + { \\mathcal O } \\left( \\sqrt { \\frac { \\log ( 1 / \\delta ) } { n } } \\right)\n$$", + "text_format": "latex", + "bbox": [ + 199, + 561, + 795, + 604 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "for all $\\mathbf { W } \\in { \\mathcal { B } } ( \\mathbf { W } ^ { ( 0 ) } , \\tilde { R } \\cdot m ^ { - 1 / 2 } )$ ", + "bbox": [ + 173, + 613, + 393, + 632 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "We are now ready to prove Theorem 3.4, which combines the trajectory distance analysis in the proof of Theorem 3.3 with Lemma A.3. ", + "bbox": [ + 173, + 643, + 825, + 672 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Proof of Theorem 3.4. With exactly the same proof as Theorem 3.3, by (A.3) and induction we have ${ \\mathbf W } ^ { ( 0 ) } , { \\mathbf W } ^ { ( 1 ) } , \\ldots , { \\mathbf W } ^ { ( T ) } \\in \\mathcal { B } ( { \\mathbf W } ^ { ( 0 ) } , \\widetilde { R } m ^ { - 1 / 2 } )$ with $\\tilde { R } = \\mathcal { O } ( \\sqrt { L } R )$ . Therefore by Lemma A.3, we have ", + "bbox": [ + 173, + 695, + 826, + 741 + ], + "page_idx": 11 + }, + { + "type": "equation", + "img_path": "images/9b80653edea7cc66256355fbc0367f8dcc39df0fa49c66789801174d214a1690.jpg", + "text": "$$\n\\mathcal { E } _ { \\mathcal { D } } ( \\mathbf { W } ^ { ( t ) } ) - \\mathcal { E } _ { S } ( \\mathbf { W } ^ { ( t ) } ) | \\leqslant \\widetilde { \\mathcal { O } } \\left( \\operatorname* { m i n } \\left\\{ 4 ^ { L } L ^ { 2 } R \\sqrt { \\frac { m } { n } } , \\frac { L ^ { 3 / 2 } R } { \\sqrt { n } } + \\frac { L ^ { 1 1 / 3 } R ^ { 4 / 3 } } { m ^ { 1 / 6 } } \\right\\} \\right) + \\mathcal { O } \\left( \\sqrt { \\frac { \\log ( 1 / \\delta ) } { n } } \\right)\n$$", + "text_format": "latex", + "bbox": [ + 181, + 746, + 825, + 790 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "for all $t = 0 , 1 , \\ldots , T$ . Note that we have ${ \\mathbb { 1 } \\left\\{ z < 0 \\right\\} \\leqslant - 2 \\ell ^ { \\prime } ( z ) }$ . Therefore, ", + "bbox": [ + 173, + 797, + 665, + 815 + ], + "page_idx": 11 + }, + { + "type": "equation", + "img_path": "images/7104988fdc48d20d019ce699512147794750e8329d567bcfbe6424422b2bc2df.jpg", + "text": "$$\n\\begin{array} { r l r } { { \\Sigma L _ { \\mathcal { D } } ^ { 0 - 1 } ( \\mathbf { W } ^ { ( t ) } ) \\leqslant 2 \\mathcal { E } _ { \\mathcal { D } } ( \\mathbf { W } ^ { ( t ) } ) } } \\\\ & { } & { \\leqslant 2 L _ { S } ( \\mathbf { W } ^ { ( t ) } ) + \\tilde { \\mathcal { O } } \\Bigg ( \\operatorname* { m i n } \\{ 4 ^ { L } L ^ { 2 } R \\sqrt { \\frac { m } { n } } , \\frac { L ^ { 3 / 2 } R } { \\sqrt { n } } + \\frac { L ^ { 1 1 / 3 } R ^ { 4 / 3 } } { m ^ { 1 / 6 } } \\} \\Bigg ) + \\mathcal { O } \\Bigg ( \\sqrt { \\frac { \\log ( 1 / \\delta ) } { n } } \\Bigg ) } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 181, + 821, + 839, + 887 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "for $t = 0 , 1 , \\ldots , T$ , where the last inequality is by $\\mathcal { E } _ { S } ( \\mathbf { W } ) \\leqslant L _ { S } ( \\mathbf { W } )$ because $- \\ell ^ { \\prime } ( z ) \\leqslant \\ell ( z )$ for all $z \\in R$ . This finishes the proof. □ ", + "bbox": [ + 173, + 895, + 831, + 924 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "A.3 PROOF OF THEOREM 3.5 ", + "text_level": 1, + "bbox": [ + 176, + 103, + 390, + 118 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "In this section we provide the full proof of Theorem 3.5. We first give the following result, which is the counterpart of Lemma 5.1 for SGD. Again we pick $\\mathbf { W } ^ { * } \\in { \\cal B } ( \\mathbf { W } ^ { ( 0 ) } , R m ^ { - 1 / 2 } )$ such that the loss of the corresponding NTRF model $F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } * } ( \\mathbf { x } )$ achieves \u000fNTRF. ", + "bbox": [ + 173, + 128, + 826, + 174 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Lemma A.4. Set $\\eta = \\mathcal { O } ( L ^ { - 1 } M ( \\tau ) ^ { - 2 } )$ . Suppose that $\\mathbf { W } ^ { * } \\in { \\cal B } ( \\mathbf { W } ^ { ( 0 ) } , \\tau )$ and $\\mathbf { W } ^ { ( n ^ { \\prime } ) } \\in { \\cal B } ( \\mathbf { W } ^ { ( 0 ) } , \\tau )$ for all $0 \\leqslant n ^ { \\prime } \\leqslant n - 1$ . Then it holds that ", + "bbox": [ + 171, + 178, + 823, + 209 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/7b6b42cf19fa2b8fd5c2128ea15b131fba310a5055ff7fa3edc7bdb57021ceec.jpg", + "text": "$$\n\\lVert \\mathbf { W } ^ { ( 0 ) } - \\mathbf { W } ^ { * } \\rVert _ { F } ^ { 2 } - \\lVert \\mathbf { W } ^ { ( n ^ { \\prime } ) } - \\mathbf { W } ^ { * } \\rVert _ { F } ^ { 2 } \\geqslant \\Big ( \\frac 3 2 - 4 \\epsilon _ { \\mathrm { a p p } } ( \\tau ) \\Big ) \\eta \\sum _ { i = 1 } ^ { n ^ { \\prime } } L _ { i } ( \\mathbf { W } ^ { ( i - 1 ) } ) - 2 n \\eta \\epsilon _ { \\mathrm { N T R } } .\n$$", + "text_format": "latex", + "bbox": [ + 205, + 212, + 789, + 256 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "We introduce a surrogate loss $\\mathcal { E } _ { i } ( \\mathbf { W } ) = - \\ell ^ { \\prime } [ y _ { i } \\cdot f _ { \\mathbf { W } } ( \\pmb { x } _ { i } ) ]$ and its population version $\\mathcal { E } _ { \\mathcal { D } } ( \\mathbf { W } ) =$ $\\mathbb { E } _ { ( \\mathbf { x } , \\mathbf { y } ) \\sim \\mathcal { D } } [ - \\ell ^ { \\prime } [ y \\cdot f _ { \\mathbf { W } } \\mathbf { \\bar { ( } } \\mathbf { x ) } ] ]$ , which have been used in (Ji and Telgarsky, 2018; Cao and Gu, 2019; Ji and Telgarsky, 2020). Our proof is based on the application of Lemma A.4 and an online-tobatch conversion argument (Cesa-Bianchi et al., 2004; Cao and Gu, 2019; Ji and Telgarsky, 2020). We introduce a surrogate loss $\\mathcal { E } _ { i } ( \\mathbf { W } ) = - \\ell ^ { \\prime } [ y _ { i } \\cdot f _ { \\mathbf { W } } ( \\pmb { x } _ { i } ) ]$ and its population version $\\mathcal { E } _ { \\mathcal { D } } ( \\mathbf { W } ) =$ $\\mathbb { E } _ { ( \\mathbf { x } , \\boldsymbol { y } ) \\sim \\mathcal { D } } [ - \\ell ^ { \\prime } ( \\boldsymbol { y } \\cdot f _ { \\mathbf { W } } \\mathbf { \\bar { ( } } \\mathbf { x ) } ) ]$ , which have been used in (Ji and Telgarsky, 2018; Cao and Gu, 2019; Nitanda and Suzuki, 2019; Ji and Telgarsky, 2020). ", + "bbox": [ + 173, + 266, + 828, + 367 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Proof of Theorem 3.5. Recall that $\\mathbf { W } ^ { * }$ is chosen such that ", + "bbox": [ + 173, + 380, + 558, + 395 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/c577bc7606c76f25790aaa68d8177544aa0c57e9f822382b3f510142222c05d9.jpg", + "text": "$$\n\\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } \\ell \\big ( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ^ { * } } ( \\mathbf { x } _ { i } ) \\big ) = \\epsilon _ { \\mathrm { N T R F } }\n$$", + "text_format": "latex", + "bbox": [ + 380, + 400, + 617, + 440 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "and $\\mathbf { W } ^ { * } \\in \\mathcal { B } ( \\mathbf { W } ^ { ( 0 ) } , R m ^ { - 1 / 2 } )$ . To apply Lemma A.4, we need the region $B ( \\mathbf { W } ^ { ( 0 ) } , \\tau )$ to include both $\\mathbf { W } ^ { * }$ and $\\{ \\mathbf { W } ^ { ( t ) } \\} _ { t = 0 , \\ldots , t ^ { \\prime } }$ . This motivates us to set $\\tau = \\tilde { \\mathcal { O } } ( L ^ { 1 / 2 } m ^ { - 1 / 2 } R )$ , which is slightly larger than $m ^ { - 1 / 2 } R$ . With this choice of $\\tau$ , by Lemma A.1 we have $\\epsilon _ { \\mathrm { a p p } } ( \\tau ) = \\widetilde { \\mathcal { O } } ( \\tau ^ { 4 / 3 } m ^ { 1 / 2 } L ^ { 3 } ) =$ $\\widetilde { \\mathcal { O } } ( R ^ { 4 / 3 } L ^ { 1 1 / 3 } m ^ { - 1 / 6 } )$ . Therefore, we can set ", + "bbox": [ + 173, + 444, + 825, + 512 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/5118333fd1ea31506fc8d7c19fa3b850062c45de73c4c0502e6af909a9d0383a.jpg", + "text": "$$\nm = \\widetilde \\Omega ( R ^ { 8 } L ^ { 2 2 } )\n$$", + "text_format": "latex", + "bbox": [ + 444, + 517, + 553, + 536 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "to ensure that $\\epsilon _ { \\mathrm { a p p } } ( \\tau ) \\leqslant 1 / 8$ , where $\\widetilde { \\Omega } ( \\cdot )$ hides polylogarithmic dependencies on network depth $L$ , NTRF function class size $R$ , and failure probability parameter $\\delta$ . ", + "bbox": [ + 173, + 544, + 825, + 574 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Then by Lemma A.4, we have with probability at least $1 - \\delta$ , ", + "bbox": [ + 173, + 580, + 576, + 595 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/1d108029139195faaa71383dc09e9bac9fff841c36e179ffa1bee56bf98418db.jpg", + "text": "$$\n\\| \\mathbf { W } ^ { ( 0 ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } - \\| \\mathbf { W } ^ { ( n ^ { \\prime } ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } \\geqslant \\eta \\sum _ { i = 1 } ^ { n ^ { \\prime } } L _ { i } ( \\mathbf { W } ^ { ( i - 1 ) } ) - 2 n \\eta \\epsilon _ { \\mathrm { N T R F } }\n$$", + "text_format": "latex", + "bbox": [ + 263, + 601, + 735, + 643 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "as long as $\\mathbf { W } ^ { ( 0 ) } , \\ldots , \\mathbf { W } ^ { ( n ^ { \\prime } - 1 ) } \\in \\mathcal { B } ( \\mathbf { W } ^ { ( 0 ) } , \\tau )$ . ", + "bbox": [ + 174, + 647, + 477, + 666 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "We then prove Theorem 3.5 in two steps: 1) all iterates stay inside $B ( \\mathbf { W } ^ { ( 0 ) } , \\tau )$ ; and 2) convergence of online SGD. ", + "bbox": [ + 176, + 672, + 823, + 702 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "All iterates stay inside $B ( \\mathbf { W } ^ { ( 0 ) } , \\tau )$ . Similar to the proof of Theorem 3.3, we prove this part by induction. Assuming $\\mathbf { W } ^ { ( i ) }$ satisfies $\\mathbf { W } ^ { ( i ) } \\in { \\cal B } ( \\mathbf { W } ^ { ( 0 ) } , \\tau )$ for all $i \\leqslant n ^ { \\prime } - 1$ , by (A.4), we have ", + "bbox": [ + 173, + 708, + 823, + 739 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/f3de783e1c3017b7e11641d5d203f3f51803e19b58f7bb8ad374e5bc85c5af70.jpg", + "text": "$$\n\\begin{array} { r l r } { { \\| \\mathbf { W } ^ { ( n ^ { \\prime } ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } \\leqslant \\| \\mathbf { W } ^ { ( 0 ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } + 2 n \\eta \\epsilon _ { \\mathrm { N T R F } } } } \\\\ & { } & { \\leqslant L R ^ { 2 } \\cdot m ^ { - 1 } + 2 n \\eta \\epsilon _ { \\mathrm { N T R F } } , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 331, + 744, + 666, + 785 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "where the last inequality is by $\\mathbf { W } ^ { * } \\in { \\mathcal { B } } ( \\mathbf { W } ^ { ( 0 ) } , R m ^ { - 1 / 2 } )$ . Then by triangle inequality, we further get ", + "bbox": [ + 169, + 790, + 823, + 808 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/3e61e75e6932f76cb8d95f619ba58e5d33e6a205406d0c7ba854016f06fa4466.jpg", + "text": "$$\n\\begin{array} { r l } & { \\| \\mathbf { W } _ { l } ^ { ( n ^ { \\prime } ) } - \\mathbf { W } _ { l } ^ { ( 0 ) } \\| _ { F } \\leqslant \\| \\mathbf { W } _ { l } ^ { ( n ^ { \\prime } ) } - \\mathbf { W } _ { l } ^ { * } \\| _ { F } + \\| \\mathbf { W } _ { l } ^ { * } - \\mathbf { W } _ { l } ^ { ( 0 ) } \\| _ { F } } \\\\ & { \\qquad \\leqslant \\| \\mathbf { W } ^ { ( n ^ { \\prime } ) } - \\mathbf { W } ^ { * } \\| _ { F } + \\| \\mathbf { W } _ { l } ^ { * } - \\mathbf { W } _ { l } ^ { ( 0 ) } \\| _ { F } } \\\\ & { \\qquad \\leqslant \\mathcal { O } ( \\sqrt { L } R m ^ { - 1 / 2 } + \\sqrt { n \\eta \\epsilon _ { \\mathrm { N T R F } } } ) . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 300, + 811, + 697, + 878 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Then by our choices of ? $\\eta \\ = \\ \\Theta \\big ( m ^ { - 1 } \\cdot ( L R ^ { 2 } n ^ { - 1 } \\epsilon _ { \\mathrm { N T R F } } ^ { - 1 } \\wedge L ^ { - 1 } ) \\big )$ , we have $\\lVert \\mathbf { W } ^ { ( n ^ { \\prime } ) } - \\mathbf { W } ^ { ( 0 ) } \\rVert _ { F } \\leqslant$ $2 \\sqrt { L } R m ^ { - 1 / 2 } \\leqslant \\tau$ . This completes the proof of the first part. ", + "bbox": [ + 173, + 890, + 823, + 924 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Convergence of online SGD. By (A.4), we have ", + "bbox": [ + 173, + 103, + 495, + 118 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/3250bc5b02c17d86f20c79759664bf2dc6f60e34897d96599d14d99a0a1d636a.jpg", + "text": "$$\n\\| \\mathbf { W } ^ { ( 0 ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } - \\| \\mathbf { W } ^ { ( n ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } \\geqslant \\eta \\biggl ( \\sum _ { i = 1 } ^ { n } L _ { i } ( \\mathbf { W } ^ { ( i - 1 ) } ) - 2 n \\epsilon _ { \\mathrm { N T R F } } \\biggr ) .\n$$", + "text_format": "latex", + "bbox": [ + 254, + 125, + 741, + 165 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Dividing by $\\eta n$ on the both sides and rearranging terms, we get ", + "bbox": [ + 173, + 170, + 589, + 185 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/c0b9cedfd22144c8a6091bd9f25ce8814313bfeefd590d69be88a59ee42a2b6f.jpg", + "text": "$$\n\\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } L _ { i } ( \\mathbf { W } ^ { ( i - 1 ) } ) \\leqslant \\frac { \\| \\mathbf { W } ^ { ( 0 ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } - \\| \\mathbf { W } ^ { ( n ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } } { \\eta n } + 2 \\epsilon _ { \\mathrm { N T R F } } \\leqslant \\frac { L ^ { 2 } R ^ { 2 } } { n } + 3 \\epsilon _ { \\mathrm { N T R F } } ,\n$$", + "text_format": "latex", + "bbox": [ + 204, + 190, + 790, + 228 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "where the second inequality follows from facts that ˘ $\\mathbf { W } ^ { \\ast } \\in { \\mathcal { B } } ( \\mathbf { W } ^ { ( 0 ) } , R \\cdot m ^ { - 1 / 2 } )$ and $\\eta = \\Theta ( m ^ { - 1 } \\cdot$ ¨ $( L R ^ { 2 } n ^ { - 1 } \\epsilon _ { \\mathrm { N I R F } } ^ { - 1 } \\wedge L ^ { - 1 } ) \\big )$ . By Lemma 4.3 in (Ji and Telgarsky, 2020) and the fact that $\\mathscr { E } _ { i } ( \\mathbf { W } ^ { ( i - 1 ) } ) \\leqslant$ $L _ { i } ( \\mathbf { W } ^ { ( i - 1 ) } )$ , we have ", + "bbox": [ + 174, + 238, + 823, + 287 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/ab701447ac3384f706cf6b375362463804b74d8c291297acd8d793da9bf8fd30.jpg", + "text": "$$\n\\begin{array} { r l r } { { \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } L _ { \\mathcal { D } } ^ { 0 - 1 } ( \\mathbf { W } ^ { ( i - 1 ) } ) \\leqslant \\displaystyle \\frac { 2 } { n } \\sum _ { i = 1 } ^ { n } \\mathcal { E } _ { \\mathcal { D } } ( \\mathbf { W } ^ { ( i - 1 ) } ) } } \\\\ & { } & { \\leqslant \\displaystyle \\frac { 8 } { n } \\sum _ { i = 1 } ^ { n } \\mathcal { E } _ { i } ( \\mathbf { W } ^ { ( i - 1 ) } ) + \\frac { 8 \\log ( 1 / \\delta ) } { n } } \\\\ & { } & { \\leqslant \\displaystyle \\frac { 8 L ^ { 2 } R ^ { 2 } } { n } + \\frac { 8 \\log ( 1 / \\delta ) } { n } + 2 4 \\epsilon _ { \\mathrm { N T R F } } . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 305, + 294, + 689, + 410 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "This completes the proof of the second part. ", + "bbox": [ + 176, + 412, + 462, + 428 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "B PROOF OF RESULTS IN SECTION 4 ", + "text_level": 1, + "bbox": [ + 174, + 446, + 493, + 464 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "B.1 PROOF OF PROPOSITION 4.2 ", + "text_level": 1, + "bbox": [ + 176, + 478, + 413, + 493 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "We first provide the following lemma which gives an upper bound of the neural network output at the initialization. ", + "bbox": [ + 173, + 503, + 823, + 534 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Lemma B.1 (Lemma 4.4 in Cao and Gu (2019)). Under Assumption 3.1, if $m \\geqslant \\bar { C } L \\log ( n L / \\delta )$ with some absolute constant $\\bar { C }$ , with probability at least $1 - \\delta$ , we have ", + "bbox": [ + 173, + 536, + 823, + 566 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/756deb8aa0d3419cc4a7f828fa4b75b034ed271bcaeadf5727b90a0c66858718.jpg", + "text": "$$\n| f _ { \\mathbf { W } ^ { ( 0 ) } } ( \\mathbf { x } _ { i } ) | \\leqslant C \\sqrt { \\log ( n / \\delta ) }\n$$", + "text_format": "latex", + "bbox": [ + 403, + 571, + 594, + 593 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "for some absolute constant $C$ . ", + "bbox": [ + 174, + 598, + 370, + 613 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Proof of Proposition 4.2. Under Assumption 4.1, we can find a collection of matrices ř ${ \\bf U } ^ { * } = $ $\\{ \\mathbf { U } _ { 1 } ^ { * } , \\cdot \\cdot \\cdot , \\mathbf { U } _ { L } ^ { * } \\}$ with $\\begin{array} { r } { \\sum _ { l = 1 } ^ { L } \\| \\mathbf { U } _ { l } ^ { * } \\| _ { F } ^ { 2 } = 1 } \\end{array}$ such that $y _ { i } \\langle \\nabla f _ { \\mathbf { W } ^ { ( 0 ) } } ( \\mathbf { x } _ { i } ) , \\mathbf { U } ^ { * } \\rangle \\geqslant m ^ { 1 / 2 } \\gamma$ for at least a $1 - \\rho$ fraction of the training data. By Lemma B.1, for all $i \\in [ n ]$ we have $| f _ { \\mathbf { W } ^ { ( 0 ) } } ( \\mathbf { x } _ { i } ) | \\leqslant C \\sqrt { \\log ( n / \\delta ) }$ for some absolute constant $C$ . Then for any positive constant $\\lambda$ , we have for at least $1 - \\rho$ portion of the data, ", + "bbox": [ + 173, + 627, + 825, + 704 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/84efaec906cdba75466f5ea399d04947df48f3c5efe1f111772d020059bcfb58.jpg", + "text": "$$\ny _ { i } \\big ( f _ { \\mathbf { W } ^ { ( 0 ) } } ( \\mathbf { x } _ { i } ) + \\langle \\nabla f _ { \\mathbf { W } ^ { ( 0 ) } } , \\lambda \\mathbf { U } ^ { * } \\rangle \\big ) \\geqslant m ^ { 1 / 2 } \\lambda \\gamma - C \\sqrt { \\log ( n / \\delta ) } .\n$$", + "text_format": "latex", + "bbox": [ + 294, + 709, + 702, + 731 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "For this fraction of data, we can set ", + "bbox": [ + 174, + 736, + 406, + 750 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/0236c0890f07e46feb6b4e1d42e75ba955b4671faea08bf026ed0bccd81a1af0.jpg", + "text": "$$\n\\lambda = \\frac { C ^ { \\prime } \\big [ \\log ^ { 1 / 2 } ( n / \\delta ) + \\log ( 1 / \\epsilon ) \\big ] } { m ^ { 1 / 2 } \\gamma } ,\n$$", + "text_format": "latex", + "bbox": [ + 383, + 755, + 612, + 792 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "where $C ^ { \\prime }$ is an absolute constant, and get ", + "bbox": [ + 174, + 799, + 444, + 814 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/026dbcd46f20fe5e4b80eec81a6f19da2681080c76b56a34dba7265b0d9a771c.jpg", + "text": "$$\nm ^ { 1 / 2 } \\lambda \\gamma - C \\sqrt { \\log ( n / \\delta ) } \\geqslant \\log ( 1 / \\epsilon ) .\n$$", + "text_format": "latex", + "bbox": [ + 375, + 820, + 620, + 840 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Now we let $\\mathbf { W ^ { * } } \\ = \\ \\mathbf { W } ^ { ( 0 ) } + \\lambda \\mathbf { U ^ { * } }$ . By the choice of $R$ in Proposition 4.2, we have ${ \\bf W } ^ { * } \\in { \\cal U }$ $\\mathcal { B } ( \\mathbf { W } ^ { ( 0 ) } , R \\cdot m ^ { - 1 / 2 } )$ . The above inequality implies that for at least ˘ $1 - \\rho$ fraction of data, we have $\\ell \\left( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ^ { * } } ( \\mathbf { x } _ { i } ) \\right) \\leqslant \\epsilon .$ . For the rest data, we have ", + "bbox": [ + 173, + 848, + 826, + 893 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/d7cb67a287aacd300159e1a19da5ef07963c0fcc2fa1cb4f50f7e96764a7ade3.jpg", + "text": "$$\ny _ { i } \\big ( f _ { \\mathbf { W } ^ { ( 0 ) } } ( \\mathbf { x } _ { i } ) + \\langle \\nabla f _ { \\mathbf { W } ^ { ( 0 ) } } , \\lambda \\mathbf { U } ^ { * } \\rangle \\big ) \\geqslant - C \\sqrt { \\log ( n / \\delta ) } - \\lambda \\| \\nabla f _ { \\mathbf { W } ^ { ( 0 ) } } \\| _ { 2 } ^ { 2 } \\geqslant - C _ { 1 } R\n$$", + "text_format": "latex", + "bbox": [ + 240, + 901, + 758, + 922 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "for some absolute positive constant $C _ { 1 }$ , where the last inequality follows from fact that $\\| \\nabla f _ { \\mathbf { W } ^ { ( 0 ) } } \\| _ { 2 } =$ $\\tilde { \\mathcal { O } } ( m ^ { 1 / 2 } )$ (see Lemma A.1 for detail). Then note that we use cross-entropy loss, it follows that for\\` ˘ this fraction of training data, we have $\\ell \\left( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ^ { * } } ( \\mathbf { x } _ { i } ) \\right) \\leqslant C _ { 2 } R$ for some constant $C _ { 2 }$ . Combining the results of these two fractions of training data, we can conclude ", + "bbox": [ + 173, + 102, + 825, + 162 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/f03f9e39baf398dac9c076a0a5badffcf3e091e34a5c57208a2fa3101415e402.jpg", + "text": "$$\n\\epsilon _ { \\mathrm { N T R F } } \\leqslant n ^ { - 1 } \\sum _ { i = 1 } ^ { n } \\ell \\big ( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ^ { * } } ( \\mathbf { x } _ { i } ) \\big ) \\leqslant ( 1 - \\rho ) \\epsilon + \\rho \\cdot \\mathcal { O } ( R )\n$$", + "text_format": "latex", + "bbox": [ + 295, + 167, + 702, + 207 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "This completes the proof. ", + "bbox": [ + 174, + 210, + 343, + 227 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "B.2 PROOF OF PROPOSITION 4.4 ", + "text_level": 1, + "bbox": [ + 174, + 263, + 413, + 277 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Proof of Proposition 4.4. We are going to prove that Assumption 4.3 implies the existence of a good function in the NTRF function class. ", + "bbox": [ + 173, + 289, + 825, + 319 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "By Definition 3.2 and the definition of cross-entropy loss, our goal is to prove that there exists a collection of matrices $\\overline { { \\mathbf { W } } } = \\{ \\overline { { \\mathbf { W } } } _ { 1 } , \\overline { { \\mathbf { W } } } _ { 2 } \\}$ satisfying $\\operatorname* { m a x } \\{ \\| \\overline { { \\mathbf { W } } } _ { 1 } - \\mathbf { W } _ { 1 } ^ { ( 0 ) } \\| _ { F } , \\| \\overline { { \\mathbf { W } } } _ { 2 } - \\mathbf { W } _ { 2 } ^ { ( 0 ) } \\| _ { 2 } \\} \\leqslant$ $R \\cdot m ^ { - 1 / 2 }$ such that ", + "bbox": [ + 173, + 324, + 825, + 372 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/9838152c89e782996889de5e45383902c2982ee6e855c06bbcce59e8c9b69630.jpg", + "text": "$$\ny _ { i } \\cdot \\left[ f _ { \\mathbf { W } ^ { ( 0 ) } } ( \\mathbf { x } _ { i } ) + \\langle \\nabla _ { \\mathbf { W } _ { 1 } } f _ { \\mathbf { W } ^ { ( 0 ) } } , \\overline { { \\mathbf { W } } } _ { 1 } - \\mathbf { W } _ { 1 } ^ { ( 0 ) } \\rangle + \\langle \\nabla _ { \\mathbf { W } _ { 2 } } f _ { \\mathbf { W } ^ { ( 0 ) } } , \\overline { { \\mathbf { W } } } _ { 2 } - \\mathbf { W } _ { 2 } ^ { ( 0 ) } \\rangle \\right] \\geqslant \\log ( 2 / \\epsilon ) .\n$$", + "text_format": "latex", + "bbox": [ + 202, + 375, + 792, + 396 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "We first consider $\\nabla _ { \\mathbf { W } _ { 1 } } f _ { \\mathbf { W } ^ { ( 0 ) } } \\left( \\mathbf { x } _ { i } \\right)$ , which has the form ", + "bbox": [ + 174, + 398, + 527, + 415 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/c4e5b1f4f0e74ce4724eb51738d5f8e9a06247a0221f999eeae944151ef952ae.jpg", + "text": "$$\n\\big ( \\nabla _ { \\mathbf { W } _ { 1 } } f _ { \\mathbf { W } ^ { ( 0 ) } } ( \\mathbf { x } _ { i } ) \\big ) _ { j } = m ^ { 1 / 2 } \\cdot w _ { 2 , j } ^ { ( 0 ) } \\cdot \\sigma ^ { \\prime } \\big ( \\langle \\mathbf { w } _ { 1 , j } ^ { ( 0 ) } , \\mathbf { x } _ { i } \\rangle \\big ) \\cdot \\mathbf { x } _ { i } .\n$$", + "text_format": "latex", + "bbox": [ + 318, + 419, + 678, + 444 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Note that wp0q2,j and wp0q1,j are independently generated from $\\mathcal { N } ( 0 , 1 / m )$ and $\\mathcal { N } ( 0 , 2 \\mathbf { I } / m )$ respectively, thus we have $\\mathbb { P } ( | w _ { 2 , j } ^ { ( 0 ) } | \\geqslant 0 . 4 7 m ^ { - 1 / 2 } ) \\geqslant 1 / 2$ . By Hoeffeding’s inequality, we know that with probability at least $1 - \\exp ( - m / 8 )$ , there are at least $m / 4$ nodes, whose union is denoted by $s$ , satisfying $| w _ { 2 , j } ^ { ( 0 ) } | \\geqslant 0 . 4 7 m ^ { - 1 / 2 }$ . Then we only focus on the nodes in the set $s$ . Note that $\\mathbf { W } _ { 1 } ^ { ( 0 ) }$ and $\\mathbf { W } _ { 2 } ^ { ( 0 ) }$ are independently generated. Then by Assumption 4.3 and Hoeffeding’s inequality, there exists a function $\\overline { { \\mathbf { u } } } ( \\cdot ) : \\mathbb { R } ^ { d } \\mathbb { R } ^ { d }$ such that with probability at least $1 - \\delta ^ { \\prime }$ , ", + "bbox": [ + 173, + 448, + 826, + 555 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/eacad4c81f25675a40b417f83bae4296a8626a8d69473974344e0ae629ea1247.jpg", + "text": "$$\n\\frac { 1 } { | \\cal { S } | } \\sum _ { j \\in \\cal { S } } y _ { i } \\cdot \\langle \\overline { { \\mathbf { u } } } ( \\mathbf { w } _ { 1 , j } ^ { ( 0 ) } ) , \\mathbf { x } _ { i } \\rangle \\cdot \\sigma ^ { \\prime } ( \\langle \\mathbf { w } _ { 1 , j } ^ { ( 0 ) } , \\mathbf { x } _ { i } \\rangle ) \\geqslant \\gamma - \\sqrt { \\frac { 2 \\log ( 1 / \\delta ^ { \\prime } ) } { | \\cal { S } | } } .\n$$", + "text_format": "latex", + "bbox": [ + 285, + 559, + 712, + 604 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Define $\\mathbf { v } _ { j } = \\overline { { \\mathbf { u } } } ( \\mathbf { w } _ { 1 , j } ^ { ( 0 ) } ) / w _ { 2 , j }$ if $\\lvert w _ { 2 , j } \\rvert \\geqslant 0 . 4 7 m ^ { - 1 / 2 }$ and $\\mathbf { v } _ { j } = \\mathbf { 0 }$ otherwise. Then we have ", + "bbox": [ + 169, + 611, + 751, + 630 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/8942c4d2f2cbc4509c797ce3b678692420f63e3eb9ddce2b4494731dfa3a9fca.jpg", + "text": "$$\n\\begin{array} { r l } & { ~ \\displaystyle \\sum _ { j = 1 } ^ { m } y _ { i } \\cdot w _ { 2 , j } ^ { ( 0 ) } \\cdot \\langle \\mathbf { v } _ { j } , \\mathbf { x } _ { i } \\rangle \\cdot \\sigma ^ { \\prime } \\big ( \\langle \\mathbf { w } _ { 1 , j } ^ { ( 0 ) } , \\mathbf { x } _ { i } \\rangle \\big ) = \\displaystyle \\sum _ { j \\in S } y _ { i } \\cdot \\langle \\mathbf { \\overline { { u } } } ( \\mathbf { w } _ { 1 , j } ^ { ( 0 ) } ) , \\mathbf { x } _ { i } \\rangle \\cdot \\sigma ^ { \\prime } \\big ( \\langle \\mathbf { w } _ { 1 , j } ^ { ( 0 ) } , \\mathbf { x } _ { i } \\rangle \\big ) } \\\\ & { \\quad \\quad \\quad \\geqslant | S | \\gamma - \\sqrt { 2 | S | \\log ( 1 / \\delta ^ { \\prime } ) } . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 236, + 636, + 761, + 700 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Set $\\delta = 2 n \\delta ^ { \\prime }$ and apply union bound, we have with probability at least $1 - \\delta / 2$ , ", + "bbox": [ + 173, + 702, + 696, + 718 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/874fde4dbbe4b35c788d18e3b7c75c6d57bed9f4357ef8f048206a1f80b1a3b2.jpg", + "text": "$$\n\\sum _ { j = 1 } ^ { m } y _ { i } \\cdot w _ { 2 , j } ^ { ( 0 ) } \\cdot \\left. \\mathbf { v } _ { j } , \\mathbf { x } _ { i } \\right. \\cdot \\sigma ^ { \\prime } ( \\left. \\mathbf { w } _ { 1 , j } ^ { ( 0 ) } , \\mathbf { x } _ { i } \\right. ) \\geqslant | S | \\gamma - \\sqrt { 2 | S | \\log ( 2 n / \\delta ) } .\n$$", + "text_format": "latex", + "bbox": [ + 274, + 722, + 722, + 763 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Therefore, note that with probability at least $1 - \\exp ( - m / 8 )$ , we have $| { \\mathcal { S } } | \\geqslant m / 4$ . Moreover, in Assumption 4.3, by $y _ { i } \\in \\left\\{ \\pm 1 \\right\\}$ and $| \\sigma ^ { \\prime } ( \\cdot ) | , \\| \\overline { { \\mathbf { u } } } ( \\cdot ) \\| _ { 2 } , \\| \\mathbf { x } _ { i } \\| _ { 2 } \\leqslant 1$ for $i = 1 , \\ldots , n$ , we see that ˘ $\\gamma \\leqslant 1$ . Then if $m \\geqslant 3 2 \\log ( n / \\delta ) / \\gamma ^ { 2 }$ , with probability at least $1 - \\delta / 2 - \\exp \\big ( - 4 \\log ( n / \\delta ) / \\gamma ^ { 2 } \\big ) \\geqslant 1 - \\delta$ , ", + "bbox": [ + 174, + 768, + 826, + 813 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/eb9063b443ecb3b3139e6949c47227f835d6c5972c342d622620bf0fd4da8374.jpg", + "text": "$$\n\\sum _ { j = 1 } ^ { m } y _ { i } \\cdot w _ { 2 , j } ^ { ( 0 ) } \\cdot \\langle \\mathbf { v } _ { j } , \\mathbf { x } _ { i } \\rangle \\cdot \\sigma ^ { \\prime } ( \\langle \\mathbf { w } _ { 1 , j } ^ { ( 0 ) } , \\mathbf { x } _ { i } \\rangle ) \\geqslant | \\mathcal { S } | \\gamma / 2 .\n$$", + "text_format": "latex", + "bbox": [ + 333, + 818, + 661, + 858 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Let $\\mathbf { U } = ( \\mathbf { v } _ { 1 } , \\mathbf { v } _ { 2 } , \\cdot \\cdot \\cdot , \\mathbf { v } _ { m } ) ^ { \\top } / \\sqrt { m | S | }$ , we have ", + "bbox": [ + 173, + 863, + 482, + 882 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/986fd2271e2e06855c98f7f2312a30861a3341b86219bd9bd1b2bac9d8c85b96.jpg", + "text": "$$\ny _ { i } \\langle \\nabla _ { \\mathbf { W } _ { 1 } } f _ { \\mathbf { W } ^ { ( 0 ) } } ( \\mathbf { x } _ { i } ) , \\mathbf { U } \\rangle = \\frac { 1 } { \\sqrt { | \\mathcal { S } | } } \\sum _ { j = 1 } ^ { m } y _ { i } \\cdot w _ { 2 , j } ^ { ( 0 ) } \\cdot \\langle \\mathbf { v } _ { j } , \\mathbf { x } _ { i } \\rangle \\cdot \\sigma ^ { \\prime } \\big ( \\langle \\mathbf { w } _ { 1 , j } ^ { ( 0 ) } , \\mathbf { x } _ { i } \\rangle \\big ) \\geqslant \\frac { \\sqrt { | \\mathcal { S } | } \\gamma } { 2 } \\geqslant \\frac { m ^ { 1 / 2 } \\gamma } { 4 } ,\n$$", + "text_format": "latex", + "bbox": [ + 189, + 887, + 803, + 928 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "where the last inequality is by the fact that $| { \\mathcal S } | \\geqslant m / 4$ . Besides, note that by concentration and Gaussian tail bound, we have \\` $| f _ { \\mathbf { W } ^ { ( 0 ) } } ( \\mathbf { x } _ { i } ) | \\leqslant C \\log ( n / \\delta )$ for some absolute constant $C$ . Therefore, let $\\overline { { \\mathbf { W } } } _ { 1 } = \\mathbf { W } _ { 1 } ^ { ( 0 ) } + 4 \\big ( \\log ( 2 / \\epsilon ) + C \\log ( n / \\delta ) \\big ) m ^ { - 1 / 2 } \\mathbf { U } / \\gamma$ and $\\overline { { \\mathbf { W } } } _ { 2 } = \\mathbf { W } _ { 2 } ^ { ( 0 ) }$ , we have ", + "bbox": [ + 173, + 102, + 826, + 151 + ], + "page_idx": 15 + }, + { + "type": "equation", + "img_path": "images/7d88e7bc858293c343cf40fbf261146cb31a527768c19de698914960dc1fa711.jpg", + "text": "$$\ny _ { i } \\cdot \\left[ f _ { \\mathbf { W } ^ { ( 0 ) } } ( \\mathbf { x } _ { i } ) + \\langle \\nabla _ { \\mathbf { W } _ { 1 } } f _ { \\mathbf { W } ^ { ( 0 ) } } , \\overline { { \\mathbf { W } } } _ { 1 } - \\mathbf { W } _ { 1 } ^ { ( 0 ) } \\rangle + \\langle \\nabla _ { \\mathbf { W } _ { 2 } } f _ { \\mathbf { W } ^ { ( 0 ) } } , \\overline { { \\mathbf { W } } } _ { 2 } - \\mathbf { W } _ { 2 } ^ { ( 0 ) } \\rangle \\right] \\geqslant \\log ( 2 / \\epsilon ) .\n$$", + "text_format": "latex", + "bbox": [ + 184, + 155, + 777, + 178 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Note that $\\| \\overline { { \\mathbf { u } } } ( \\cdot ) \\| _ { 2 } ~ \\leqslant ~ 1$ , we have $\\Vert \\mathbf { U } \\Vert _ { F } \\leqslant 1 / 0 . 4 7 \\leqslant 2 . 2$ . Therefore, we further have $\\Vert \\overline { { \\mathbf { W } } } _ { 1 } - \\mathbf { \\Phi } _ { }$ $\\mathbf { W } _ { 1 } ^ { ( 0 ) } \\| _ { F } \\leqslant 8 . 8 \\gamma ^ { - 1 } \\big ( \\log ( 2 / \\epsilon ) + C \\log ( n / \\delta ) \\big ) \\cdot m ^ { - 1 / 2 }$ . This implies that $\\overline { { \\mathbf { W } } } \\in \\mathfrak { B } ( \\mathbf { W } ^ { ( 0 ) } , R )$ with $R = \\mathcal { O } \\big ( \\log \\big ( n / ( \\delta \\epsilon ) \\big ) / \\gamma \\big )$ . Applying the inequality $\\ell ( \\log ( 2 / \\epsilon ) ) \\leqslant \\epsilon$ on (B.1) gives ", + "bbox": [ + 173, + 181, + 825, + 233 + ], + "page_idx": 15 + }, + { + "type": "equation", + "img_path": "images/94f0cd21266947ec9be8336c18b513796314aa62dc640428d9ff5b075e6b4b00.jpg", + "text": "$$\n\\ell ( y _ { i } \\cdot F _ { \\mathbf { W } ^ { ( 0 ) } , \\overline { { \\mathbf { W } } } } ( \\mathbf { x } _ { i } ) ) \\leqslant \\epsilon\n$$", + "text_format": "latex", + "bbox": [ + 415, + 237, + 581, + 256 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "for all $i = 1 , \\ldots , n$ . This completes the proof. ", + "bbox": [ + 173, + 260, + 477, + 275 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "B.3 PROOF OF PROPOSITION 4.6 ", + "text_level": 1, + "bbox": [ + 176, + 291, + 413, + 305 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Based on our theoretical analysis, the major goal is to show that there exist certain choices of $R$ and $m$ such that the best NTRF model in the function class ${ \\mathcal { F } } ( { \\mathbf { W } } ^ { ( 0 ) } , R )$ can achieve $\\epsilon$ training error. In this proof, we will prove a stronger results by showing that given the quantities of $R$ and $m$ specificed in Proposition 4.6, there exists a NTRF model with parameter \\` ˘ $\\mathbf { W } ^ { * }$ that satisfies $\\begin{array} { r } { n ^ { - 1 } \\sum _ { i = 1 } ^ { n ^ { \\bullet } } \\ell \\bigl ( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ^ { * } } ( \\mathbf { x } _ { i } ) \\bigr ) \\leqslant \\epsilon } \\end{array}$ . ", + "bbox": [ + 173, + 316, + 826, + 390 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "In order to do so, we consider training the NTRF model via a different surrogate loss function.\\` ˘ Specifically, we consider squared hinge loss $\\widetilde { \\ell } ( x ) = \\left( \\operatorname* { m a x } \\{ \\lambda - x , 0 \\} \\right) ^ { 2 }$ , where $\\lambda$ denotes the target margin. In the later proof, we choose $\\lambda = \\log ( 1 / \\epsilon ) + 1$ such that the condition $ { \\widetilde { \\ell } } ( x ) \\leqslant 1$ can guarantee that $x \\geqslant \\log ( \\epsilon )$ . Moreover, we consider using gradient flow, i.e., gradient descent with infinitesimal step size, to train the NTRF model. Therefore, in the remaining part of the proof, we consider optimizing the NTRF parameter W with the loss function ", + "bbox": [ + 173, + 393, + 826, + 487 + ], + "page_idx": 15 + }, + { + "type": "equation", + "img_path": "images/89f9b0d79a872249ecbabb24556bd0bbda7f950e85952fb941f39b033fad16b0.jpg", + "text": "$$\n\\widetilde { L } _ { S } ( \\mathbf { W } ) = \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } \\widetilde { \\ell } \\big ( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } } ( \\mathbf { x } _ { i } ) \\big ) .\n$$", + "text_format": "latex", + "bbox": [ + 375, + 491, + 622, + 530 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Moreover, for simplicity, we only consider optimizing parameter in the last hidden layer (i.e., $\\mathbf { W } _ { L - 1 }$ ). Then the gradient flow can be formulated as ", + "bbox": [ + 173, + 534, + 823, + 561 + ], + "page_idx": 15 + }, + { + "type": "equation", + "img_path": "images/ead3fa603f2cf4245dcd55dbffa770333c3a5c7a8e3e9d5fb2cf9abf55ef5bc1.jpg", + "text": "$$\n\\frac { \\mathrm { d } \\mathbf { W } _ { L - 1 } ( t ) } { \\mathrm { d } t } = - \\nabla _ { \\mathbf { W } _ { L - 1 } } \\widetilde { L } _ { S } ( \\mathbf { W } ( t ) ) , \\quad \\frac { \\mathrm { d } \\mathbf { W } _ { l } ( t ) } { \\mathrm { d } t } = \\mathbf { 0 } \\quad \\mathrm { f o r ~ a n y ~ } l \\neq L - 1 .\n$$", + "text_format": "latex", + "bbox": [ + 254, + 565, + 741, + 598 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Note that the NTRF model is a linear model, thus by Definition 3.2, we have ", + "bbox": [ + 173, + 599, + 676, + 614 + ], + "page_idx": 15 + }, + { + "type": "equation", + "img_path": "images/c855dd18490cbf7f3722702be474b6527a7ed95525a88fab1fb3a3885f577e8f.jpg", + "text": "$$\n\\begin{array} { r l } & { \\nabla _ { \\mathbf { W } _ { L - 1 } } \\tilde { L } _ { S } \\big ( \\mathbf { W } ( t ) \\big ) = y _ { i } \\tilde { \\ell } ^ { \\prime } \\big ( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ( t ) } ( \\mathbf { x } _ { i } ) \\big ) \\cdot \\nabla _ { \\mathbf { W } _ { L - 1 } } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ( t ) } ( \\mathbf { x } _ { i } ) } \\\\ & { \\qquad = y _ { i } \\tilde { \\ell } ^ { \\prime } \\big ( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ( t ) } ( \\mathbf { x } _ { i } ) \\big ) \\cdot \\nabla _ { \\mathbf { W } _ { L - 1 } ^ { ( 0 ) } } f _ { \\mathbf { W } ^ { ( 0 ) } } ( \\mathbf { x } _ { i } ) . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 259, + 618, + 736, + 667 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Then it is clear that $\\nabla _ { \\mathbf { W } _ { L - 1 } } \\widetilde { L } _ { S } ( \\mathbf { W } ( t ) )$ has fixed direction throughout the optimization. ", + "bbox": [ + 176, + 672, + 741, + 690 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "In order to prove the convergence of gradient flow and characterize the quantity of $R$ , We first provide the following lemma which gives an upper bound of the NTRF model output at the initialization. ", + "bbox": [ + 174, + 695, + 823, + 724 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Then we provide the following lemma which characterizes a lower bound of the Frobenius norm of the partial gradient $\\nabla _ { \\mathbf { W } _ { L - 1 } } \\tilde { L } _ { S } ( \\mathbf { W } )$ . ", + "bbox": [ + 174, + 729, + 821, + 762 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Lemma B.2 (Lemma B.5 in Zou et al. (2019)). Under Assumptions 3.1 and 4.5, if \\` ˘ $m = \\widetilde \\Omega ( n ^ { 2 } \\phi ^ { - 1 } )$ , then for all $t \\geqslant 0$ , with probability at least $1 - \\exp \\big ( - O ( m \\phi ^ { \\cdot } n ) \\big )$ , there exist a positive constant $C$ such that ", + "bbox": [ + 173, + 767, + 826, + 810 + ], + "page_idx": 15 + }, + { + "type": "equation", + "img_path": "images/e2a33f4ef007155699e64e642806e585aa59257cbf95bc0120b4c28c2fe70f42.jpg", + "text": "$$\n\\| \\nabla _ { \\mathbf { W } _ { L - 1 } } \\widetilde { L } _ { S } ( \\mathbf { W } ( t ) ) \\| _ { F } ^ { 2 } \\geqslant \\frac { C m \\phi } { n ^ { 5 } } \\bigg [ \\sum _ { i = 1 } ^ { n } \\widetilde { \\ell } ^ { \\prime } \\big ( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ( t ) } ( \\mathbf { x } _ { i } ) \\big ) \\bigg ] ^ { 2 } .\n$$", + "text_format": "latex", + "bbox": [ + 290, + 813, + 705, + 853 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "We slightly modified the original version of this lemma since we use different models (we consider NTRF model while Zou et al. (2019) considers neural network model). However, by (B.2), it is clear that the gradient $\\nabla \\tilde { L } _ { S } ( \\mathbf { W } )$ can be regarded as a type of the gradient for neural network model at the initialization (i.e., $\\nabla _ { \\mathbf { W } _ { L - 1 } } L _ { S } ( \\mathbf { W } ^ { ( 0 ) } ) )$ is valid. Now we are ready to present the proof. ", + "bbox": [ + 173, + 863, + 825, + 925 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Proof of Proposition 4.6. Recall that we only consider training the last hidden weights, i.e., $\\mathbf { W } _ { L - 1 }$ , via gradient flow with squared hinge loss, and our goal is to prove that gradient flow is able to find a NTRF model within the function class ř \\` ˘ ${ \\mathcal { F } } ( { \\mathbf { W } } ^ { ( 0 ) } , R )$ around the initialization, i.e., achieving $\\begin{array} { r } { n ^ { - 1 } \\sum _ { i = 1 } ^ { n } \\ell \\big ( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ^ { * } } ( \\mathbf { x } _ { i } ) \\big ) \\leqslant \\epsilon . } \\end{array}$ Let $\\mathbf W ( t )$ be the weights at time $t$ , gradient flow implies that ", + "bbox": [ + 173, + 102, + 826, + 162 + ], + "page_idx": 16 + }, + { + "type": "equation", + "img_path": "images/b9a247181fbda73054810cdfd5eee8da45c295c54f23d512d9683ac09e1cb5e7.jpg", + "text": "$$\n\\frac { 1 \\tilde { L } _ { S } ( \\mathbf { W } ( t ) ) } { \\mathrm { d } t } = - \\| \\nabla _ { \\mathbf { W } _ { L - 1 } } \\tilde { L } _ { S } ( \\mathbf { W } ( t ) ) \\| _ { F } ^ { 2 } \\leqslant - \\frac { C m \\phi } { n ^ { 5 } } \\bigg ( \\sum _ { i = 1 } ^ { n } \\tilde { \\ell } ^ { \\prime } \\big ( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ( t ) } ( \\mathbf { x } _ { i } ) \\big ) \\bigg ) ^ { 2 } = \\frac { 4 C m \\phi \\tilde { L } _ { S } ( \\mathbf { W } ( t ) ) } { n ^ { 3 } } ,\n$$", + "text_format": "latex", + "bbox": [ + 181, + 169, + 839, + 209 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "where the first equality is due to the fact that we only train the last hidden layer, the first inequalityb is by Lemma B.2 and the second equality follows from the fact that $\\widetilde { \\ell } ^ { \\prime } ( . ) = - 2 \\sqrt { \\widetilde { \\ell } ( . ) }$ . Solving the above inequality gives ", + "bbox": [ + 173, + 213, + 826, + 267 + ], + "page_idx": 16 + }, + { + "type": "equation", + "img_path": "images/c70f8c141404dee9f146d15b78abb9b128f456043af55cf0c2e37a8e8cf29e67.jpg", + "text": "$$\n\\widetilde L _ { S } ( \\mathbf { W } ( t ) ) \\leqslant \\widetilde L _ { S } ( \\mathbf { W } ( 0 ) ) \\cdot \\exp \\Bigg ( - \\frac { 4 C m \\phi t } { n ^ { 3 } } \\Bigg ) .\n$$", + "text_format": "latex", + "bbox": [ + 341, + 271, + 655, + 306 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Then, set $T = \\mathcal { O } \\big ( n ^ { 3 } m ^ { - 1 } \\phi ^ { - 1 } \\cdot \\log ( \\widetilde { L } _ { S } ( \\mathbf { W } ( 0 ) ) / \\epsilon ^ { \\prime } ) \\big )$ and $\\epsilon ^ { \\prime } = 1 / n$ , we have $\\widetilde { L } _ { S } ( \\mathbf { W } ( t ) ) \\leqslant \\epsilon ^ { \\prime }$ . Then it follows that ř \\` $n ^ { - 1 } \\sum _ { i = 1 } ^ { n } \\ell \\big ( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ^ { * } } \\big ( \\mathbf { x } _ { i } \\big ) \\big ) \\leqslant \\epsilon$ $\\widetilde { \\ell } \\left( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ( t ) } ( \\mathbf { x } _ { i } ) \\right) \\leqslant 1$ . Therefore, , which implies that $\\mathbf { W } ( T )$ is exactly the NTRF model we are looking $y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ( t ) } ( \\mathbf { x } _ { i } ) \\geqslant \\log ( \\epsilon )$ and thus ", + "bbox": [ + 173, + 311, + 826, + 378 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "The next step is to characterize the distance between $\\mathbf { W } ( T )$ and $\\mathbf { W } ( 0 )$ in order to characterize the quantity of $R$ . Note that $\\| \\nabla _ { \\mathbf { W } _ { L - 1 } } \\widetilde { L } _ { S } ( \\mathbf { W } ( t ) ) \\| _ { F } ^ { 2 } \\geqslant 4 C m \\phi \\widetilde { L } _ { S } ( \\mathbf { W } ( t ) ) / n ^ { 3 }$ , we have ", + "bbox": [ + 173, + 383, + 825, + 417 + ], + "page_idx": 16 + }, + { + "type": "equation", + "img_path": "images/62969375d08b29605c62b2926c5f0523e81e883d3113fcaf2e1816f325314b72.jpg", + "text": "$$\n\\frac { \\mathrm { d } \\sqrt { \\tilde { L } _ { S } ( \\mathbf { W } ( t ) ) } } { \\mathrm { d } t } = - \\frac { \\| \\nabla _ { \\mathbf { W } _ { L - 1 } } \\tilde { L } _ { S } ( \\mathbf { W } ( t ) ) \\| _ { F } ^ { 2 } } { 2 \\sqrt { \\tilde { L } _ { S } ( \\mathbf { W } ( t ) ) } } \\leqslant - \\| \\nabla _ { \\mathbf { W } _ { L - 1 } } \\tilde { L } _ { S } ( \\mathbf { W } ( t ) ) \\| _ { F } \\cdot \\frac { C ^ { 1 / 2 } m ^ { 1 / 2 } \\phi ^ { 1 / 2 } } { n ^ { 3 / 2 } } .\n$$", + "text_format": "latex", + "bbox": [ + 204, + 428, + 792, + 478 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Taking integral on both sides and rearranging terms, we have ", + "bbox": [ + 173, + 482, + 575, + 497 + ], + "page_idx": 16 + }, + { + "type": "equation", + "img_path": "images/a2f22cdf7302bbeda5b5a51764b2b64ccf8fc605817b71c865f30ff558137690.jpg", + "text": "$$\n\\int _ { t = 0 } ^ { T } \\| \\nabla _ { \\mathbf { W } _ { L - 1 } } \\tilde { L } _ { S } ( \\mathbf { W } ( t ) ) \\| _ { F } \\mathrm { d } t \\leqslant \\frac { n ^ { 3 / 2 } } { C ^ { 1 / 2 } m ^ { 1 / 2 } \\phi ^ { 1 / 2 } } \\cdot \\left( \\sqrt { \\tilde { L } _ { S } ( \\mathbf { W } ( 0 ) ) } - \\sqrt { \\tilde { L } _ { S } ( \\mathbf { W } ( t ) ) } \\right) .\n$$", + "text_format": "latex", + "bbox": [ + 217, + 502, + 779, + 540 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Note that the L.H.S. of the above inequality is an upper bound of $\\| \\mathbf { W } ( t ) - \\mathbf { W } ( 0 ) \\| _ { F }$ , we have for any $t \\geqslant 0$ , ", + "bbox": [ + 173, + 545, + 826, + 574 + ], + "page_idx": 16 + }, + { + "type": "equation", + "img_path": "images/000580e773bbaf7fdd71e7ed12030cde3ba0b6594f3c8a1d4dd9d7bfb72747cf.jpg", + "text": "$$\n\\| \\mathbf { W } ( t ) - \\mathbf { W } ( 0 ) \\| _ { F } \\leqslant \\frac { n ^ { 3 / 2 } } { C ^ { 1 / 2 } m ^ { 1 / 2 } \\phi ^ { 1 / 2 } } \\cdot \\sqrt { \\tilde { L } _ { S } ( \\mathbf { W } ( 0 ) ) } = \\mathcal { O } \\biggl ( \\frac { n ^ { 3 / 2 } \\log \\left( n / ( \\delta \\epsilon ) \\right) } { m ^ { 1 / 2 } \\phi ^ { 1 / 2 } } \\biggr ) ,\n$$", + "text_format": "latex", + "bbox": [ + 233, + 579, + 763, + 616 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "where the second inequality is by Lemma B.1 and our choice of $\\lambda = \\log ( 1 / \\epsilon ) + 1$ . This implies that there exists a point $\\mathbf { W } ^ { * }$ within the class ${ \\mathcal { F } } ( { \\bf W } ^ { ( 0 ) } , R )$ with ", + "bbox": [ + 173, + 621, + 825, + 652 + ], + "page_idx": 16 + }, + { + "type": "equation", + "img_path": "images/a77b86bd549a6da6152f92aecc6a42fa8495e0ca9c328d78dd083c850c2cc84f.jpg", + "text": "$$\nR = \\mathcal { O } \\left( \\frac { n ^ { 3 / 2 } \\log \\left( n / ( \\delta \\epsilon ) \\right) } { \\phi ^ { 1 / 2 } } \\right)\n$$", + "text_format": "latex", + "bbox": [ + 401, + 657, + 596, + 695 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "such that ", + "bbox": [ + 173, + 700, + 236, + 714 + ], + "page_idx": 16 + }, + { + "type": "equation", + "img_path": "images/a0c627ffe71d82219f9be6b21d4763a2edd7df5b92eb175f7fd55f3874878b37.jpg", + "text": "$$\n\\epsilon _ { \\mathrm { N T R F } } : = n ^ { - 1 } \\sum _ { i = 1 } ^ { n } \\ell \\big ( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ^ { * } } ( \\mathbf { x } _ { i } ) \\big ) \\leqslant \\epsilon .\n$$", + "text_format": "latex", + "bbox": [ + 356, + 718, + 642, + 757 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Then by Theorem 3.3, and, more specifically, (A.1), we can compute the minimal required neural network width as follows, ", + "bbox": [ + 173, + 762, + 821, + 791 + ], + "page_idx": 16 + }, + { + "type": "equation", + "img_path": "images/3141bc9b2ada03b35bf0961e32e3cb50500c1ef9313c43208ab30ba1b13fa64b.jpg", + "text": "$$\nm = \\widetilde \\Omega ( R ^ { 8 } L ^ { 2 2 } ) = \\widetilde \\Omega \\left( \\frac { L ^ { 2 2 } n ^ { 1 2 } } { \\phi ^ { 4 } } \\right) .\n$$", + "text_format": "latex", + "bbox": [ + 385, + 795, + 612, + 838 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "This completes the proof. ", + "bbox": [ + 174, + 843, + 341, + 858 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "C PROOF OF TECHNICAL LEMMAS ", + "text_level": 1, + "bbox": [ + 174, + 877, + 478, + 895 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Here we provide the proof of Lemmas 5.1, A.3 and A.4. ", + "bbox": [ + 173, + 909, + 542, + 924 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "C.1 PROOF OF LEMMA 5.1 ", + "text_level": 1, + "bbox": [ + 174, + 103, + 372, + 117 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "The detailed proof of Lemma 5.1 is given as follows. ", + "bbox": [ + 173, + 128, + 521, + 145 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "Proof of Lemma 5.1. Based on the update rule of gradient descent, i.e., $\\mathbf { W } ^ { ( t + 1 ) } \\ = \\ \\mathbf { W } ^ { ( t ) } \\ - $ $\\eta \\nabla _ { \\mathbf { W } } L _ { S } ( \\mathbf { W } ^ { ( t ) } )$ , we have the following calculation. ", + "bbox": [ + 173, + 160, + 823, + 191 + ], + "page_idx": 17 + }, + { + "type": "equation", + "img_path": "images/4692840b2a5cb320765c0df06684eadfc23c9ec3de3eea04857509945334f383.jpg", + "text": "$$\n\\begin{array} { r l r } { { \\| { \\mathbf { W } } ^ { ( t ) } - { \\mathbf { W } } ^ { * } \\| _ { F } ^ { 2 } - \\| { \\mathbf { W } } ^ { ( t + 1 ) } - { \\mathbf { W } } ^ { * } \\| _ { F } ^ { 2 } } } \\\\ & { } & { \\qquad = \\underbrace { \\frac { 2 \\eta } { n } \\displaystyle \\sum _ { i = 1 } ^ { n } \\langle { \\mathbf { W } } ^ { ( t ) } - { \\mathbf { W } } ^ { * } , \\nabla { \\mathbf { w } } L _ { i } ( { \\mathbf { W } } ^ { ( t ) } ) \\rangle } _ { I _ { 1 } } - \\underbrace { \\eta ^ { 2 } \\displaystyle \\sum _ { l = 1 } ^ { L } \\| \\nabla { \\mathbf { w } } _ { l } L _ { S } ( { \\mathbf { W } } ^ { ( t ) } ) \\| _ { F } ^ { 2 } } _ { I _ { 2 } } , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 250, + 195, + 745, + 281 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "where the equation follows from the fact that $\\begin{array} { r } { L _ { S } ( \\mathbf { W } ^ { ( t ) } ) = n ^ { - 1 } \\sum _ { i = 1 } ^ { n } { L _ { i } ( \\mathbf { W } ^ { ( t ) } ) } } \\end{array}$ . In what follows, we first bound the term $I _ { 1 }$ on the R.H.S. of (C.1) by approximating the neural network functions with linear models. By assumption, for $t = 0 , \\dots , t ^ { \\prime } - \\bar { 1 } , \\mathbf { W } ^ { ( t ) } , \\mathbf { W } ^ { \\bar { * } } \\in \\mathcal { B } ( \\mathbf { W } ^ { ( 0 ) } , \\tau )$ . Therefore by the definition of $\\epsilon _ { \\mathrm { a p p } } ( \\tau )$ , ", + "bbox": [ + 173, + 286, + 826, + 348 + ], + "page_idx": 17 + }, + { + "type": "equation", + "img_path": "images/75c85ad666b1de93ff20a2e3ed8894aa1d13488aa85640eeee307f26104e0f2e.jpg", + "text": "$$\ny _ { i } \\boldsymbol { \\cdot } \\big \\langle \\nabla f _ { \\mathbf { W } ^ { ( t ) } } \\big ( \\mathbf { x } _ { i } \\big ) , \\mathbf { W } ^ { ( t ) } - \\mathbf { W } ^ { * } \\big \\rangle \\leqslant y _ { i } \\boldsymbol { \\cdot } \\big ( f _ { \\mathbf { W } ^ { ( t ) } } \\big ( \\mathbf { x } _ { i } \\big ) - f _ { \\mathbf { W } ^ { * } } \\big ( \\mathbf { x } _ { i } \\big ) \\big ) + \\epsilon _ { \\mathrm { a p p } } \\big ( \\tau \\big )\n$$", + "text_format": "latex", + "bbox": [ + 251, + 353, + 745, + 375 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "Moreover, we also have ", + "bbox": [ + 174, + 378, + 333, + 393 + ], + "page_idx": 17 + }, + { + "type": "equation", + "img_path": "images/34a99005b9a2dfb56fb99818a75fce0c6546e60426451fa634e82d405b27ed92.jpg", + "text": "$$\n\\begin{array} { r l } & { 0 \\leqslant y _ { i } \\cdot \\big ( f _ { \\mathbf { W } ^ { * } } ( \\mathbf { x } _ { i } ) - f _ { \\mathbf { W } ^ { ( 0 ) } } ( \\mathbf { x } _ { i } ) - \\langle \\nabla f _ { \\mathbf { W } ^ { ( 0 ) } } ( \\mathbf { x } _ { i } ) , \\mathbf { W } ^ { * } - \\mathbf { W } ^ { ( 0 ) } \\rangle \\big ) + \\epsilon _ { \\mathrm { a p p } } ( \\tau ) } \\\\ & { \\quad = y _ { i } \\cdot \\big ( f _ { \\mathbf { W } ^ { * } } ( \\mathbf { x } _ { i } ) - F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ^ { * } } ( \\mathbf { x } _ { i } ) \\big ) + \\epsilon _ { \\mathrm { a p p } } ( \\tau ) , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 248, + 397, + 746, + 440 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "where the equation follows by the definition of $F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ^ { * } } ( \\mathbf { x } )$ . Adding (C.3) to (C.2) and canceling the terms $y _ { i } \\cdot f _ { \\mathbf { W } ^ { * } } ( \\mathbf { x } _ { i } )$ , we obtain that ", + "bbox": [ + 174, + 445, + 825, + 476 + ], + "page_idx": 17 + }, + { + "type": "equation", + "img_path": "images/03a7541f49ac52a523891a1dd748eb8cfada227389e422f56d253043db5f6d79.jpg", + "text": "$$\ny _ { i } \\cdot \\langle \\nabla f _ { \\mathbf { W } ^ { ( t ) } } ( \\mathbf { x } _ { i } ) , \\mathbf { W } ^ { ( t ) } - \\mathbf { W } ^ { * } \\rangle \\leqslant y _ { i } \\cdot \\left( f _ { \\mathbf { W } ^ { ( t ) } } ( \\mathbf { x } _ { i } ) - F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ^ { * } } ( \\mathbf { x } _ { i } ) \\right) + 2 \\epsilon _ { \\mathrm { a p p } } ( \\tau ) .\n$$", + "text_format": "latex", + "bbox": [ + 210, + 481, + 753, + 503 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "We can now give a lower bound on first term on the R.H.S. of (C.1). For $i = 1 , \\ldots , n$ , applying the chain rule on the loss function gradients and utilizing (C.4), we have ", + "bbox": [ + 173, + 513, + 825, + 545 + ], + "page_idx": 17 + }, + { + "type": "equation", + "img_path": "images/4629a849f5ae4b1fa84ccb272cc5effd38a761c3dc458ed552ec8b108bb1cb57.jpg", + "text": "$$\n\\begin{array} { r l r } { \\langle \\mathbf { W } ^ { ( t ) } - \\mathbf { W } ^ { * } , \\nabla _ { \\mathbf { W } } L _ { i } ( \\mathbf { W } ^ { ( t ) } ) \\rangle = \\ell ^ { \\prime } \\big ( y _ { i } f _ { \\mathbf { W } ^ { ( t ) } } ( \\mathbf { x } _ { i } ) \\big ) \\cdot y _ { i } \\cdot \\big \\langle \\mathbf { W } ^ { ( t ) } - \\mathbf { W } ^ { * } , \\nabla _ { \\mathbf { W } } f _ { \\mathbf { W } ^ { ( t ) } } ( \\mathbf { x } _ { i } ) \\big \\rangle } & { } & \\\\ { \\geqslant \\ell ^ { \\prime } \\big ( y _ { i } f _ { \\mathbf { W } ^ { ( t ) } } ( \\mathbf { x } _ { i } ) \\big ) \\cdot \\big ( y _ { i } f _ { \\mathbf { W } ^ { ( t ) } } ( \\mathbf { x } _ { i } ) - y _ { i } f _ { \\mathbf { W } ^ { * } } ( \\mathbf { x } _ { i } ) + 2 \\epsilon _ { \\mathrm { a p p } } ( \\tau ) \\big ) } & { } & \\\\ { \\geqslant \\big ( 1 - 2 \\epsilon _ { \\mathrm { a p p } } ( \\tau ) \\big ) \\ell \\big ( y _ { i } f _ { \\mathbf { W } ^ { ( t ) } } ( \\mathbf { x } _ { i } ) \\big ) - \\ell \\big ( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ^ { * } } ( \\mathbf { x } _ { i } ) \\big ) , \\quad ( \\mathrm { C } _ { i } - \\epsilon ) \\big ( \\ell ^ { \\prime } \\big ( x _ { i } f _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ^ { * } } ( \\mathbf { x } _ { i } ) \\big ) \\big ) \\enspace . } & { } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 189, + 549, + 800, + 613 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "where the first inequality is by the fact that \\` $\\ell ^ { \\prime } \\left( y _ { i } f _ { \\mathbf { W } ^ { \\left( t \\right) } } \\left( \\mathbf { x } _ { i } \\right) \\right) < 0$ , the second inequality is by convexity of $\\ell ( \\cdot )$ and the fact that $- \\ell ^ { \\prime } \\left( y _ { i } f _ { \\mathbf { W } ^ { ( t ) } } ( \\mathbf { x } _ { i } ) \\right) \\leqslant \\ell \\left( y _ { i } f _ { \\mathbf { W } ^ { ( t ) } } ( \\mathbf { x } _ { i } ) \\right)$ . ", + "bbox": [ + 173, + 617, + 823, + 651 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "We now proceed to bound the term $I _ { 2 }$ on the R.H.S. of (C.1). Note that we have $\\ell ^ { \\prime } ( \\cdot ) < 0$ , and therefore the Frobenius norm of the gradient $\\nabla _ { \\mathbf { W } _ { l } } L _ { S } ( \\mathbf { W } ^ { ( t ) } )$ can be upper bounded as follows, ", + "bbox": [ + 174, + 656, + 823, + 689 + ], + "page_idx": 17 + }, + { + "type": "equation", + "img_path": "images/55be6fde453e8e83aadcb0f657d329c7174e9ea16441f6e04e7c15e81232823c.jpg", + "text": "$$\n\\begin{array} { r l } { \\| \\nabla _ { \\mathbf { W } _ { l } } L _ { S } ( \\mathbf { W } ^ { ( t ) } ) \\| _ { F } = \\displaystyle \\left\\| \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } \\ell ^ { \\prime } \\big ( y _ { i } f _ { \\mathbf { W } ^ { ( t ) } } ( \\mathbf { x } _ { i } ) \\big ) \\nabla _ { \\mathbf { W } _ { l } } f _ { \\mathbf { W } ^ { ( t ) } } ( \\mathbf { x } _ { i } ) \\right\\| _ { F } } & { } \\\\ { \\leqslant \\displaystyle \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } - \\ell ^ { \\prime } \\big ( y _ { i } f _ { \\mathbf { W } ^ { ( t ) } } ( \\mathbf { x } _ { i } ) \\big ) \\cdot \\| \\nabla _ { \\mathbf { W } _ { l } } f _ { \\mathbf { W } ^ { ( t ) } } ( \\mathbf { x } _ { i } ) \\| _ { F } , } & { } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 271, + 695, + 725, + 776 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "where the inequality follows by triangle inequality. We now utilize the fact that cross-entropy loss satisfies the inequalities $- \\ell ^ { \\prime } ( \\cdot ) \\overset { \\cdot } { \\leqslant } \\ell ( \\cdot )$ and $- \\bar { \\ell } ^ { \\prime } ( \\cdot ) \\dot { \\leqslant } 1$ . Therefore by definition of $M ( \\tau )$ , we have ", + "bbox": [ + 169, + 780, + 825, + 810 + ], + "page_idx": 17 + }, + { + "type": "equation", + "img_path": "images/d0048c3a115cca0613ea1fbbdcfd4e4427e8149bf0208bf5f5e7496d4197471e.jpg", + "text": "$$\n\\begin{array} { r l r } { { \\sum _ { l = 1 } ^ { L } \\| \\nabla _ { \\mathbf { W } _ { l } } L _ { S } ( \\mathbf { W } ^ { ( t ) } ) \\| _ { F } ^ { 2 } \\leqslant \\mathcal { O } \\big ( L M ( \\tau ) ^ { 2 } \\big ) \\cdot \\bigg ( \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } - \\ell ^ { \\prime } \\big ( y _ { i } f _ { \\mathbf { W } ^ { ( t ) } } ( \\mathbf { x } _ { i } ) \\big ) \\bigg ) ^ { 2 } } } \\\\ & { } & { \\leqslant \\mathcal { O } \\big ( L M ( \\tau ) ^ { 2 } \\big ) \\cdot L _ { S } ( \\mathbf { W } ^ { ( t ) } ) . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 264, + 815, + 728, + 882 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "Then we can plug (C.5) and (C.6) into (C.1) and obtain ", + "bbox": [ + 173, + 885, + 537, + 900 + ], + "page_idx": 17 + }, + { + "type": "equation", + "img_path": "images/1ca9a83270f102fc4270284c0e8dba36c1a9d0f32e0927d050d4121183a334bb.jpg", + "text": "$$\n\\lVert \\mathbf { W } ^ { ( t ) } - \\mathbf { W } ^ { * } \\rVert _ { F } ^ { 2 } - \\lVert \\mathbf { W } ^ { ( t + 1 ) } - \\mathbf { W } ^ { * } \\rVert _ { F } ^ { 2 }\n$$", + "text_format": "latex", + "bbox": [ + 173, + 906, + 429, + 925 + ], + "page_idx": 17 + }, + { + "type": "equation", + "img_path": "images/ac46d5d995e6f5b29f16f4a6219793cccef63378142ffa4fba9da4ca35f9075f.jpg", + "text": "$$\n\\begin{array} { r l } { { } } & { { \\displaystyle \\geqslant \\frac { 2 \\eta } { n } \\sum _ { i = 1 } ^ { n } \\left[ ( 1 - 2 \\epsilon _ { \\mathrm { a p p } } ( \\tau ) ) \\ell \\big ( y _ { i } f _ { \\mathbf { W } ^ { ( t ) } } ( \\mathbf { x } _ { i } ) \\big ) - \\ell \\big ( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ^ { * } } \\big ( \\mathbf { x } _ { i } \\big ) \\big ) \\right] - \\mathcal { O } \\big ( \\eta ^ { 2 } L M ( \\tau ) ^ { 2 } \\big ) \\cdot L _ { S } ( \\mathbf { W } ^ { ( t ) } ) } } \\\\ { { } } & { { \\displaystyle \\geqslant \\left[ \\frac { 3 } { 2 } - 4 \\epsilon _ { \\mathrm { a p p } } ( \\tau ) \\right] \\eta L _ { S } ( \\mathbf { W } ^ { ( t ) } ) - \\frac { 2 \\eta } { n } \\sum _ { i = 1 } ^ { n } \\ell \\big ( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ^ { * } } \\big ( \\mathbf { x } _ { i } \\big ) \\big ) , } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 189, + 101, + 833, + 180 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "where the last inequality is by $\\eta = \\mathcal { O } ( L ^ { - 1 } M ( \\tau ) ^ { - 2 } )$ and merging the third term on the second line into the first term. Taking telescope sum from ř \\` ˘ $t = 0$ to $t = t ^ { \\prime } - 1$ and plugging in the definition 1n ni“1 \\` yiFWp0q,W˚ pxiq “ \u000fNTRF completes the proof. □ ", + "bbox": [ + 176, + 184, + 826, + 229 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "C.2 PROOF OF LEMMA A.3 ", + "text_level": 1, + "bbox": [ + 174, + 243, + 375, + 258 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "Proof of Lemma A.3. We first denote $\\mathcal { W } = \\mathcal { B } ( \\mathbf { W } ^ { ( 0 ) } , \\widetilde { R } \\cdot m ^ { - 1 / 2 } )$ , and define the corresponding neural network function class and surrogate loss function class as ${ \\mathcal { F } } = \\{ f _ { \\mathbf { W } } ( \\mathbf { x } ) : \\mathbf { W } \\in \\mathbf { \\bar { \\mathcal { W } } } \\}$ and $\\mathcal { G } = \\left\\{ - \\ell [ y \\cdot f _ { \\mathbf { W } } ( \\mathbf { x } ) ] : \\mathbf { W } \\in \\mathcal { W } \\right\\}$ respectively. ", + "bbox": [ + 173, + 267, + 825, + 313 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "By standard uniform convergence results in terms of empirical Rademacher complexity (Bartlett and Mendelson, 2002; Mohri et al., 2018; Shalev-Shwartz and Ben-David, 2014), with probability at least $1 - \\delta$ we have ", + "bbox": [ + 174, + 319, + 826, + 361 + ], + "page_idx": 18 + }, + { + "type": "equation", + "img_path": "images/935f16d2727af48cf0f6f25877c2152b8b99fe09b2a0c5e2177b7839463ef7e3.jpg", + "text": "$$\n\\begin{array} { l } { \\displaystyle \\operatorname* { s u p } _ { \\mathbf { w } \\in \\mathcal { W } } | \\mathcal { E } _ { S } ( \\mathbf { W } ) - \\mathcal { E } _ { \\mathcal { D } } ( \\mathbf { W } ) | = \\operatorname* { s u p } _ { \\mathbf { w } \\in \\mathcal { W } } \\bigg \\vert - \\frac { 1 } { n } \\displaystyle \\sum _ { i = 1 } ^ { n } \\ell ^ { \\prime } \\big [ y _ { i } \\cdot f _ { \\mathbf { W } } ( \\pmb { x } _ { i } ) \\big ] + \\mathbb { E } _ { ( \\mathbf { x } , y ) \\sim \\mathcal { D } } \\ell ^ { \\prime } \\big [ y \\cdot f _ { \\mathbf { W } } ( \\mathbf { x } ) \\big ] \\bigg \\vert } \\\\ { \\leqslant 2 \\widehat { \\mathfrak { R } } _ { n } ( \\mathcal { G } ) + C _ { 1 } \\sqrt { \\frac { \\log ( 1 / \\delta ) } { n } } , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 207, + 363, + 790, + 443 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "where $C _ { 1 }$ is an absolute constant, and ", + "bbox": [ + 174, + 444, + 423, + 459 + ], + "page_idx": 18 + }, + { + "type": "equation", + "img_path": "images/fae13ef1701874efa9ef7e30b4c2efc59afc4534582140b985caa5e0d7380b25.jpg", + "text": "$$\n\\widehat { \\pmb { \\mathscr { R } } } _ { n } ( { \\pmb { \\mathscr { G } } } ) = \\mathbb { E } _ { \\xi _ { i } \\sim \\mathrm { U n i f } ( \\{ \\pmb { \\mathscr { \\pmb { \\Sigma } } } \\bot \\} ) } \\left\\{ \\operatorname* { s u p } _ { \\mathbf { W } \\in \\mathcal { W } } \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } \\xi _ { i } \\ell ^ { \\prime } \\big [ y _ { i } \\cdot f _ { \\mathbf { W } } ( \\pmb { x } _ { i } ) \\big ] \\right\\}\n$$", + "text_format": "latex", + "bbox": [ + 302, + 462, + 694, + 505 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "is the empirical Rademacher complexity of the function class $\\mathcal { G }$ . We now provide two bounds on $\\widehat { \\mathfrak { R } } _ { n } ( { \\mathcal { G } } )$ , whose combination gives the final result of Lemma A.3. First, by Corollary 5.35 in (Vershynin, 2010), with probability at least $1 - L \\cdot \\exp ( - \\Omega ( m ) )$ , $\\| \\mathbf { W } _ { l } ^ { ( 0 ) } \\| _ { 2 } \\leqslant 3$ for all $l \\in [ L ]$ . Therefore for all $\\mathbf { W } \\in \\mathcal { W }$ , we have $\\| \\mathbf { W } _ { l } \\| _ { 2 } \\leqslant 4$ . Moreover, standard concentration inequalities on the norm of the first row of $\\mathbf { W } _ { l } ^ { ( 0 ) }$ also implies that $\\Vert \\mathbf { W } _ { l } \\Vert _ { 2 } \\geqslant 0 . 5$ for all $\\mathbf { W } \\in \\mathcal { W }$ and $l \\in [ L ]$ . Therefore, an adaptation of the bound in (Bartlett et al., $2 0 1 7 ) ^ { \\ P }$ gives ", + "bbox": [ + 171, + 507, + 826, + 604 + ], + "page_idx": 18 + }, + { + "type": "equation", + "img_path": "images/8a8496e727469c9849cc652cbaa5d36206ed4e4f5fdafd3c9706d5ba6ef9b12a.jpg", + "text": "$$\n\\begin{array} { r l } & { \\boldsymbol { \\widehat { \\mathfrak { N } } } _ { n } ( \\mathcal { F } ) \\leqslant \\boldsymbol { \\widetilde { \\mathcal { O } } } \\left( \\underset { \\mathbf { W } \\in \\mathcal { W } } { \\operatorname* { s u p } } \\left\\{ \\frac { m ^ { 1 / 2 } } { \\sqrt { n } } \\cdot \\left[ \\underset { l = 1 } { \\overset { L } { \\prod } } \\lVert \\mathbf { W } _ { l } \\rVert _ { 2 } \\right] \\cdot \\left[ \\underset { l = 1 } { \\overset { L } { \\sum } } \\frac { \\lVert \\mathbf { W } _ { l } ^ { \\top } - \\mathbf { W } _ { l } ^ { ( 0 ) \\top } \\rVert _ { 2 , 1 } ^ { 2 / 3 } } { \\lVert \\mathbf { W } _ { l } \\rVert _ { 2 } ^ { 2 / 3 } } \\right] ^ { 3 / 2 } \\right\\} \\right) } \\\\ & { \\qquad \\leqslant \\boldsymbol { \\widetilde { \\mathcal { O } } } \\left( \\underset { \\mathbf { W } \\in \\mathcal { W } } { \\operatorname* { s u p } } \\left\\{ \\frac { 4 ^ { L } m ^ { 1 / 2 } } { \\sqrt { n } } \\cdot \\left[ \\underset { l = 1 } { \\overset { L } { \\sum } } ( \\sqrt { m } \\cdot \\lVert \\mathbf { W } _ { l } ^ { \\top } - \\mathbf { W } _ { l } ^ { ( 0 ) \\top } \\rVert _ { F } ) ^ { 2 / 3 } \\right] ^ { 3 / 2 } \\right\\} \\right) } \\\\ & { \\qquad \\leqslant \\boldsymbol { \\widetilde { \\mathcal { O } } } \\left( 4 ^ { L } L ^ { 3 / 2 } \\boldsymbol { \\widetilde { R } } \\cdot \\sqrt { \\frac { m } { n } } \\right) . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 232, + 608, + 764, + 743 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "We now derive the second bound on $\\widehat { \\mathfrak { R } } _ { n } ( { \\mathcal G } )$ , which is inspired by the proof provided in (Cao and Gu, 2020). Since $y \\in \\{ + 1 , 1 \\}$ , $| \\ell ^ { \\prime } ( z ) | \\leqslant 1$ and $\\ell ^ { \\prime } ( z )$ is 1-Lipschitz continuous, by standard empirical Rademacher complexity bounds (Bartlett and Mendelson, 2002; Mohri et al., 2018; Shalev-Shwartz and Ben-David, 2014), we have ", + "bbox": [ + 173, + 747, + 825, + 806 + ], + "page_idx": 18 + }, + { + "type": "equation", + "img_path": "images/fe7030dd165c7e287243a11577687af06224c21a5bbf697fddfbabe3d22ed1bb.jpg", + "text": "$$\n\\widehat { \\mathfrak { R } } _ { n } ( \\mathcal { G } ) \\leqslant \\widehat { \\mathfrak { R } } _ { n } ( \\mathcal { F } ) = \\mathbb { E } _ { \\xi _ { i } \\sim \\mathrm { U n i f } ( \\{ \\pm 1 \\} ) } \\left[ \\ * { \\operatorname* { s u p } _ { \\mathbf { W } \\in \\mathcal { W } } \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } \\xi _ { i } f _ { \\mathbf { W } } ( \\pmb x _ { i } ) } \\right] ,\n$$", + "text_format": "latex", + "bbox": [ + 294, + 809, + 702, + 852 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "where $\\textstyle { \\widehat { \\mathfrak { R } } } _ { n } ( { \\mathcal { F } } )$ is the empirical Rademacher complexity of the function class $\\mathcal { F }$ . We have ", + "bbox": [ + 174, + 102, + 753, + 119 + ], + "page_idx": 19 + }, + { + "type": "equation", + "img_path": "images/07b5dea74a50aff80713e934fc63366bd015aff0c259e244f4425ef1a15befd2.jpg", + "text": "$$\n\\widehat { \\mathfrak { R } } _ { n } [ F ] \\leqslant \\underbrace { \\mathbb { E } _ { \\xi } \\Bigg \\{ \\underbrace { \\operatorname* { s u p } _ { \\mathbf { W } \\in \\mathcal { W } } \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } \\xi _ { i } \\big [ f _ { \\mathbf { W } } ( \\mathbf { x } _ { i } ) - F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } } ( \\mathbf { x } _ { i } ) \\big ] } _ { I _ { 1 } } \\Bigg \\} } _ { I _ { 1 } } + \\underbrace { \\mathbb { E } _ { \\xi } \\Bigg \\{ \\underbrace { \\operatorname* { s u p } _ { \\mathbf { W } \\in \\mathcal { W } } n } _ { \\mathbf { \\Sigma } _ { i = 1 } } \\sum _ { i = 1 } ^ { n } \\xi _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } } ( \\mathbf { x } _ { i } ) \\Bigg \\} } _ { I _ { 2 } } ,\n$$", + "text_format": "latex", + "bbox": [ + 181, + 125, + 816, + 190 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "where $F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } } ( \\mathbf { x } ) = f _ { \\mathbf { W } ^ { ( 0 ) } } ( \\mathbf { x } ) + \\big \\langle \\nabla _ { \\mathbf { W } } f _ { \\mathbf { W } ^ { ( 0 ) } } ( \\mathbf { x } ) , \\mathbf { W } - \\mathbf { W } ^ { ( 0 ) } \\big \\rangle .$ . For $I _ { 1 }$ , by Lemma 4.1 in (Cao and Gu, 2019), with probability at least $1 - \\delta / 2$ we have ", + "bbox": [ + 174, + 208, + 826, + 241 + ], + "page_idx": 19 + }, + { + "type": "equation", + "img_path": "images/35093c29833f2453e8b97448b2854e7bd708118ff031ede285e29dc9efa5868a.jpg", + "text": "$$\nI _ { 1 } \\leqslant \\operatorname* { m a x } _ { i \\in [ n ] } \\big | f _ { \\mathbf { W } } ( \\pmb { x } _ { i } ) - F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } } ( \\pmb { x } _ { i } ) \\big | \\leqslant \\mathcal { O } \\big ( L ^ { 3 } \\widetilde { R } ^ { 4 / 3 } m ^ { - 1 / 6 } \\sqrt { \\log ( m ) } \\big ) ,\n$$", + "text_format": "latex", + "bbox": [ + 269, + 247, + 727, + 275 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "For $I _ { 2 }$ , note that $\\begin{array} { r } { \\mathbb { E } _ { \\pmb { \\xi } } \\big [ \\operatorname* { s u p } _ { \\mathbf { W } \\in \\mathcal { W } } \\sum _ { i = 1 } ^ { n } \\xi _ { i } f _ { \\mathbf { W } ^ { ( 0 ) } } ( \\pmb { x } _ { i } ) \\big ] = 0 . } \\end{array}$ . By Cauchy-Schwarz inequality we have ", + "bbox": [ + 171, + 281, + 803, + 301 + ], + "page_idx": 19 + }, + { + "type": "equation", + "img_path": "images/aade36cb7e03d0bec0d40f77fd7243cfd1868a195eb1cb71be89a4e8c37f90f6.jpg", + "text": "$$\n\\begin{array} { l } { { \\displaystyle I _ { 2 } = \\frac { 1 } { n } \\sum _ { l = 1 } ^ { L } \\mathbb { E } _ { \\boldsymbol \\xi } \\{ \\operatorname* { s u p } _ { \\| \\widetilde { \\mathbf { U } } _ { l } \\| _ { F } \\leqslant \\widetilde { R } m ^ { - 1 / 2 } } \\mathrm { T r } [ \\widetilde { \\mathbf { W } } _ { l } ^ { \\top } \\sum _ { i = 1 } ^ { n } \\xi _ { i } \\nabla _ { \\mathbf { W } _ { l } } f _ { \\mathbf { W } ^ { ( 0 ) } } ( \\pmb x _ { i } ) ] \\} } } \\\\ { { \\displaystyle \\leqslant \\frac { \\widetilde { R } m ^ { - 1 / 2 } } { n } \\sum _ { l = 1 } ^ { L } \\mathbb { E } _ { \\boldsymbol \\xi } [ \\| \\sum _ { i = 1 } ^ { n } \\xi _ { i } \\nabla _ { \\mathbf { W } _ { l } } f _ { \\mathbf { W } ^ { ( 0 ) } } ( \\pmb x _ { i } ) \\| _ { F } ] . } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 281, + 306, + 717, + 395 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "Therefore ", + "bbox": [ + 173, + 400, + 240, + 414 + ], + "page_idx": 19 + }, + { + "type": "equation", + "img_path": "images/c82e5230b0323534a6dced02cd3e407d4a09455caf2845c9b6f1d23c67b57d8b.jpg", + "text": "$$\n\\begin{array} { r l } & { I _ { 2 } \\leqslant \\displaystyle \\frac { { \\widetilde R } m ^ { - 1 / 2 } } { n } \\sum _ { l = 1 } ^ { L } \\sqrt { \\mathbb { E } _ { \\xi } \\bigg [ \\bigg \\| \\displaystyle \\sum _ { i = 1 } ^ { n } \\xi _ { i } \\nabla _ { \\mathbf { W } _ { l } } f _ { \\mathbf { W } ^ { ( 0 ) } } ( { \\pmb x } _ { i } ) \\bigg \\| _ { F } ^ { 2 } \\bigg ] } } \\\\ & { \\quad = \\displaystyle \\frac { { \\widetilde R } m ^ { - 1 / 2 } } { n } \\sum _ { l = 1 } ^ { L } \\sqrt { \\displaystyle \\sum _ { i = 1 } ^ { n } \\left\\| \\nabla _ { \\mathbf { W } _ { l } } f _ { \\mathbf { W } ^ { ( 0 ) } } ( { \\pmb x } _ { i } ) \\right\\| _ { F } ^ { 2 } } } \\\\ & { \\quad \\leqslant \\mathcal { O } \\Big ( \\displaystyle \\frac { L \\cdot { \\widetilde R } } { \\sqrt { n } } \\Big ) , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 325, + 419, + 673, + 559 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "where we apply Jensen’s inequality to obtain the first inequality, and the last inequality follows by Lemma B.3 in (Cao and Gu, 2019). Combining the bounds of $I _ { 1 }$ and $I _ { 2 }$ gives ", + "bbox": [ + 173, + 563, + 825, + 592 + ], + "page_idx": 19 + }, + { + "type": "equation", + "img_path": "images/ca4f9f978df345ed4f296eed97c8b7bb5bcec1cb514894939706e372617ba43b.jpg", + "text": "$$\n\\widehat { \\mathfrak { R } } _ { n } [ \\mathcal { F } ] \\leqslant \\widetilde { \\mathcal { O } } \\biggl ( \\frac { L \\widetilde { R } } { \\sqrt { n } } + \\frac { L ^ { 3 } \\widetilde { R } ^ { 4 / 3 } } { m ^ { 1 / 6 } } \\biggr ) .\n$$", + "text_format": "latex", + "bbox": [ + 390, + 597, + 607, + 635 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "Further combining this bound with (C.7) and recaling $\\delta$ completes the proof. ", + "bbox": [ + 174, + 640, + 674, + 656 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "C.3 PROOF OF LEMMA A.4 ", + "text_level": 1, + "bbox": [ + 174, + 671, + 377, + 686 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "Proof of Lemma A.4. Different from the proof of Lemma 5.1, online SGD only queries one data to update the model parameters in each iteration, i.e., $\\mathbf { W } ^ { i + 1 } = \\mathbf { W } ^ { i } - \\eta \\nabla L _ { i + 1 } \\big ( \\mathbf { W } ^ { ( i ) } \\big )$ . By this update rule, we have ", + "bbox": [ + 176, + 696, + 825, + 741 + ], + "page_idx": 19 + }, + { + "type": "equation", + "img_path": "images/fd3244e424ab0d0787d70af935a87f6bc8cc222df30c81f880b6e35c6c92f165.jpg", + "text": "$$\n\\begin{array} { r l } & { \\| { \\bf W } ^ { ( i ) } - { \\bf W } ^ { * } \\| _ { F } ^ { 2 } - \\| { \\bf W } ^ { ( i + 1 ) } - { \\bf W } ^ { * } \\| _ { F } ^ { 2 } } \\\\ & { \\qquad = 2 \\eta \\langle { \\bf W } ^ { ( i ) } - { \\bf W } ^ { * } , \\nabla { \\bf w } L _ { i + 1 } ( { \\bf W } ^ { ( i ) } ) \\rangle - \\eta ^ { 2 } \\displaystyle \\sum _ { l = 1 } ^ { L } \\| \\nabla { \\bf w } _ { l } L _ { i + 1 } ( { \\bf W } ^ { ( i ) } ) \\| _ { F } ^ { 2 } . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 248, + 744, + 746, + 810 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "With exactly the same proof as (C.5) in the proof of Lemma 5.1, we have ", + "bbox": [ + 173, + 814, + 653, + 830 + ], + "page_idx": 19 + }, + { + "type": "equation", + "img_path": "images/24fd2ef9d93a86f32761bce2a64d2ca5df6a1f87aca744370c6ace2d709a86e5.jpg", + "text": "$$\n\\begin{array} { r } { \\langle \\mathbf { W } ^ { ( t ) } - \\mathbf { W } ^ { * } , \\nabla _ { \\mathbf { W } } L _ { i } ( \\mathbf { W } ^ { ( t ) } ) \\rangle \\geqslant ( 1 - 2 \\epsilon _ { \\mathrm { a p p } } ( \\tau ) ) \\ell \\big ( y _ { i } f _ { \\mathbf { W } ^ { ( t ) } } ( \\mathbf { x } _ { i } ) \\big ) - \\ell \\big ( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ^ { * } } ( \\mathbf { x } _ { i } ) \\big ) , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 186, + 837, + 767, + 858 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "for all $i = 0 , \\ldots , n ^ { \\prime } - 1$ . By the fact that $- \\ell ^ { \\prime } ( \\cdot ) \\leqslant \\ell ( \\cdot )$ and $- \\ell ^ { \\prime } ( \\cdot ) \\leqslant 1$ , we have ", + "bbox": [ + 178, + 863, + 700, + 880 + ], + "page_idx": 19 + }, + { + "type": "equation", + "img_path": "images/c9fd4ab6bfba4d4dcc6db267354a95c8bde0429902200bf8d633206d12c77e64.jpg", + "text": "$$\n\\sum _ { l = 1 } ^ { L } \\| \\nabla _ { \\mathbf { W } _ { l } } L _ { i + 1 } ( \\mathbf { W } ^ { ( i ) } ) \\| _ { F } ^ { 2 } \\leqslant \\sum _ { l = 1 } ^ { L } \\ell \\big ( y _ { i + 1 } f _ { \\mathbf { W } _ { t } } ( \\mathbf { x } _ { i + 1 } ) \\big ) \\cdot \\| \\nabla _ { \\mathbf { W } _ { l } } f _ { \\mathbf { W } ^ { ( i ) } } \\big ( \\mathbf { x } _ { i + 1 } \\big ) \\| _ { F } ^ { 2 }\n$$", + "text_format": "latex", + "bbox": [ + 251, + 886, + 745, + 928 + ], + "page_idx": 19 + }, + { + "type": "equation", + "img_path": "images/821bd0ed4013b0d64d6feb2696cee40dd54dde1d581a84a3f2879fc758105fe0.jpg", + "text": "$$\n\\leqslant \\mathcal { O } \\bigl ( L M ( \\tau ) ^ { 2 } \\bigr ) \\cdot L _ { i + 1 } \\bigl ( \\mathbf { W } ^ { ( i ) } \\bigr ) .\n$$", + "text_format": "latex", + "bbox": [ + 418, + 101, + 627, + 121 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "Then plugging (C.10) and (C.11) into (C.9) gives ", + "bbox": [ + 173, + 126, + 498, + 142 + ], + "page_idx": 20 + }, + { + "type": "equation", + "img_path": "images/863c19d2b20ae140839984f20b7c9f326e3148b0db1ded794a7fc64dd1f39488.jpg", + "text": "$$\n\\begin{array} { r l } & { \\| \\mathbf { W } ^ { ( i ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } - \\| \\mathbf { W } ^ { ( i + 1 ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } } \\\\ & { \\quad \\geqslant \\big ( 2 - 4 \\epsilon _ { \\mathrm { a p p } } ( \\tau ) \\big ) \\eta L _ { i + 1 } ( \\mathbf { W } ^ { ( i ) } ) - 2 \\eta \\ell \\big ( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ^ { * } } ( \\mathbf { x } _ { i } ) \\big ) - \\mathcal { O } \\big ( \\eta ^ { 2 } L M ( \\tau ) ^ { 2 } \\big ) L _ { i + 1 } ( \\mathbf { W } ^ { ( i ) } ) } \\\\ & { \\quad \\geqslant \\big ( \\frac { 3 } { 2 } - 4 \\epsilon _ { \\mathrm { a p p } } ( \\tau ) \\big ) \\eta L _ { i + 1 } ( \\mathbf { W } ^ { ( i ) } ) - 2 \\eta \\ell \\big ( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ^ { * } } ( \\mathbf { x } _ { i } ) \\big ) , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 196, + 146, + 802, + 219 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "where the last inequality is by $\\eta = \\mathcal { O } ( L ^ { - 1 } M ( \\tau ) ^ { - 2 } )$ and merging the third term on the second line into the first term. Taking telescope sum over $i = 0 , \\ldots , n ^ { \\prime } - 1$ , we obtain ", + "bbox": [ + 171, + 226, + 825, + 256 + ], + "page_idx": 20 + }, + { + "type": "equation", + "img_path": "images/af70c215bfc34cbc0fa25912a3eb07245f55023c1f4cc93336d16599296fc9c3.jpg", + "text": "$$\n\\begin{array} { r l } & { \\| { \\mathbf { W } } ^ { ( 0 ) } - { \\mathbf { W } } ^ { * } \\| _ { F } ^ { 2 } - \\| { \\mathbf { W } } ^ { ( n ^ { \\prime } ) } - { \\mathbf { W } } ^ { * } \\| _ { F } ^ { 2 } } \\\\ & { \\quad \\geqslant \\Big ( \\frac { 3 } { 2 } - 4 \\epsilon _ { \\mathrm { a p p } } ( \\tau ) \\Big ) \\eta \\displaystyle \\sum _ { i = 1 } ^ { n ^ { \\prime } } L _ { i } ( { \\mathbf { W } } ^ { ( i - 1 ) } ) - 2 \\eta \\displaystyle \\sum _ { i = 1 } ^ { n ^ { \\prime } } \\ell \\big ( y _ { i } F _ { { \\mathbf { W } } ^ { ( 0 ) } , { \\mathbf { W } } ^ { * } } ( { \\mathbf { x } } _ { i } ) \\big ) . } \\\\ & { \\quad \\geqslant \\Big ( \\frac { 3 } { 2 } - 4 \\epsilon _ { \\mathrm { a p p } } ( \\tau ) \\Big ) \\eta \\displaystyle \\sum _ { i = 1 } ^ { n ^ { \\prime } } L _ { i } ( { \\mathbf { W } } ^ { ( i - 1 ) } ) - 2 \\eta \\displaystyle \\sum _ { i = 1 } ^ { n } \\ell \\big ( y _ { i } F _ { { \\mathbf { W } } ^ { ( 0 ) } , { \\mathbf { W } } ^ { * } } ( { \\mathbf { x } } _ { i } ) \\big ) . } \\\\ & { \\quad \\geqslant \\Big ( \\frac { 3 } { 2 } - 4 \\epsilon _ { \\mathrm { a p p } } ( \\tau ) \\Big ) \\eta \\displaystyle \\sum _ { i = 1 } ^ { n ^ { \\prime } } L _ { i } ( { \\mathbf { W } } ^ { ( i - 1 ) } ) - 2 n \\eta \\epsilon _ { \\mathrm { N T R } } . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 261, + 262, + 735, + 417 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "This finishes the proof. ", + "bbox": [ + 174, + 421, + 326, + 436 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "D EXPERIMENTS ", + "text_level": 1, + "bbox": [ + 174, + 455, + 331, + 472 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "In this section, we conduct some simple experiments to validate our theory. Since our paper mainly focuses on binary classification, we use a subset of the original CIFAR10 dataset (Krizhevsky et al., 2009), which only has two classes of images. We train a 5-layer fullyconnected ReLU network on this binary classification dataset with different sample sizes $( n \\in$ $\\{ 1 0 0 , 2 0 0 , 5 0 0 , 1 0 0 0 , 2 0 0 0 , 5 0 0 0 , 1 0 0 0 0 \\} )$ , and plot the minimal neural network width that is required to achieve zero training error in Figure 1 (solid line). We also plot $\\mathcal { O } ( n ) , \\mathcal { O } ( \\log ^ { 3 } ( n ) ) , \\mathcal { O } ( \\log ^ { 2 } ( n ) )$ and ${ \\mathcal { O } } ( \\log ( n ) )$ in dashed line for reference. It is evident that the required network width to achieve zero training error is polylogarithmic on the sample size $n$ , which is consistent with our theory. ", + "bbox": [ + 173, + 487, + 826, + 602 + ], + "page_idx": 20 + }, + { + "type": "image", + "img_path": "images/92caaedd995fdf47fc5e38c63323cf6b413b4fe1b294d08809e177d7baaa0c8b.jpg", + "image_caption": [ + "Figure 1: Minimum network width that is required to achieve zero training error with respect to the training sample size (blue solid line). The hidden constants in all $O ( \\cdot )$ notations are adjusted to ensure their plots (dashed lines) start from the same point. " + ], + "image_footnote": [], + "bbox": [ + 181, + 612, + 816, + 794 + ], + "page_idx": 20 + } +] \ No newline at end of file diff --git a/parse/train/fgd7we_uZa6/fgd7we_uZa6_middle.json b/parse/train/fgd7we_uZa6/fgd7we_uZa6_middle.json new file mode 100644 index 0000000000000000000000000000000000000000..b76cc27419b836a3b4555f976bf228a77eb55a95 --- /dev/null +++ b/parse/train/fgd7we_uZa6/fgd7we_uZa6_middle.json @@ -0,0 +1,72217 @@ +{ + "pdf_info": [ + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 78, + 505, + 116 + ], + "lines": [ + { + "bbox": [ + 106, + 78, + 507, + 97 + ], + "spans": [ + { + "bbox": [ + 106, + 78, + 507, + 97 + ], + "score": 1.0, + "content": "HOW MUCH OVER-PARAMETERIZATION IS SUFFI-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 98, + 428, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 98, + 428, + 117 + ], + "score": 1.0, + "content": "CIENT TO LEARN DEEP RELU NETWORKS?", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 113, + 133, + 403, + 169 + ], + "lines": [ + { + "bbox": [ + 113, + 133, + 365, + 148 + ], + "spans": [ + { + "bbox": [ + 113, + 133, + 345, + 148 + ], + "score": 1.0, + "content": "Zixiang Chen:˚, Yuan Cao:˚, Difan Zou:˚, Quanquan", + "type": "text" + }, + { + "bbox": [ + 345, + 134, + 365, + 146 + ], + "score": 0.59, + "content": "\\mathbf { G u } ^ { \\dagger }", + "type": "inline_equation" + } + ], + "index": 2 + }, + { + "bbox": [ + 113, + 146, + 403, + 160 + ], + "spans": [ + { + "bbox": [ + 113, + 146, + 403, + 160 + ], + "score": 1.0, + "content": ":Department of Computer Science, University of California, Los Angles", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 114, + 159, + 340, + 170 + ], + "spans": [ + { + "bbox": [ + 114, + 159, + 340, + 170 + ], + "score": 1.0, + "content": "{chenzx19,yuancao,knowzou,qgu}@cs.ucla.edu", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3 + }, + { + "type": "title", + "bbox": [ + 278, + 198, + 333, + 210 + ], + "lines": [ + { + "bbox": [ + 276, + 198, + 335, + 211 + ], + "spans": [ + { + "bbox": [ + 276, + 198, + 335, + 211 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 143, + 222, + 468, + 386 + ], + "lines": [ + { + "bbox": [ + 141, + 221, + 470, + 234 + ], + "spans": [ + { + "bbox": [ + 141, + 221, + 470, + 234 + ], + "score": 1.0, + "content": "A recent line of research on deep learning focuses on the extremely over-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 140, + 232, + 470, + 245 + ], + "spans": [ + { + "bbox": [ + 140, + 232, + 470, + 245 + ], + "score": 1.0, + "content": "parameterized setting, and shows that when the network width is larger than", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 141, + 243, + 470, + 257 + ], + "spans": [ + { + "bbox": [ + 141, + 243, + 349, + 257 + ], + "score": 1.0, + "content": "a high degree polynomial of the training sample size", + "type": "text" + }, + { + "bbox": [ + 350, + 245, + 357, + 254 + ], + "score": 0.73, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 358, + 243, + 470, + 257 + ], + "score": 1.0, + "content": "and the inverse of the target", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 140, + 253, + 469, + 268 + ], + "spans": [ + { + "bbox": [ + 140, + 253, + 165, + 268 + ], + "score": 1.0, + "content": "error", + "type": "text" + }, + { + "bbox": [ + 165, + 254, + 181, + 264 + ], + "score": 0.89, + "content": "\\epsilon ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 253, + 469, + 268 + ], + "score": 1.0, + "content": ", deep neural networks learned by (stochastic) gradient descent enjoy", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 266, + 470, + 278 + ], + "spans": [ + { + "bbox": [ + 141, + 266, + 470, + 278 + ], + "score": 1.0, + "content": "nice optimization and generalization guarantees. Very recently, it is shown that", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 276, + 470, + 289 + ], + "spans": [ + { + "bbox": [ + 141, + 276, + 470, + 289 + ], + "score": 1.0, + "content": "under certain margin assumptions on the training data, a polylogarithmic width", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 287, + 470, + 300 + ], + "spans": [ + { + "bbox": [ + 141, + 287, + 470, + 300 + ], + "score": 1.0, + "content": "condition suffices for two-layer ReLU networks to converge and generalize (Ji", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 298, + 470, + 311 + ], + "spans": [ + { + "bbox": [ + 141, + 298, + 470, + 311 + ], + "score": 1.0, + "content": "and Telgarsky, 2020). However, whether deep neural networks can be learned", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 309, + 470, + 322 + ], + "spans": [ + { + "bbox": [ + 141, + 309, + 470, + 322 + ], + "score": 1.0, + "content": "with such a mild over-parameterization is still an open question. In this work, we", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 320, + 470, + 333 + ], + "spans": [ + { + "bbox": [ + 141, + 320, + 470, + 333 + ], + "score": 1.0, + "content": "answer this question affirmatively and establish sharper learning guarantees for", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 331, + 470, + 344 + ], + "spans": [ + { + "bbox": [ + 141, + 331, + 470, + 344 + ], + "score": 1.0, + "content": "deep ReLU networks trained by (stochastic) gradient descent. In specific, under", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 142, + 343, + 469, + 354 + ], + "spans": [ + { + "bbox": [ + 142, + 343, + 469, + 354 + ], + "score": 1.0, + "content": "certain assumptions made in previous work, our optimization and generalization", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 353, + 470, + 365 + ], + "spans": [ + { + "bbox": [ + 141, + 353, + 372, + 365 + ], + "score": 1.0, + "content": "guarantees hold with network width polylogarithmic in", + "type": "text" + }, + { + "bbox": [ + 372, + 354, + 380, + 363 + ], + "score": 0.73, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 380, + 353, + 399, + 365 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 399, + 353, + 415, + 363 + ], + "score": 0.89, + "content": "\\epsilon ^ { - \\bar { 1 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 415, + 353, + 470, + 365 + ], + "score": 1.0, + "content": ". Our results", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 364, + 470, + 376 + ], + "spans": [ + { + "bbox": [ + 141, + 364, + 470, + 376 + ], + "score": 1.0, + "content": "push the study of over-parameterized deep neural networks towards more practical", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 375, + 178, + 388 + ], + "spans": [ + { + "bbox": [ + 141, + 375, + 178, + 388 + ], + "score": 1.0, + "content": "settings.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 13 + }, + { + "type": "title", + "bbox": [ + 108, + 405, + 206, + 417 + ], + "lines": [ + { + "bbox": [ + 105, + 403, + 208, + 420 + ], + "spans": [ + { + "bbox": [ + 105, + 403, + 208, + 420 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 107, + 429, + 505, + 517 + ], + "lines": [ + { + "bbox": [ + 105, + 429, + 505, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 505, + 442 + ], + "score": 1.0, + "content": "Deep neural networks have become one of the most important and prevalent machine learning models", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 439, + 505, + 454 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 505, + 454 + ], + "score": 1.0, + "content": "due to their remarkable power in many real-world applications. However, the success of deep learning", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 452, + 504, + 463 + ], + "spans": [ + { + "bbox": [ + 106, + 452, + 504, + 463 + ], + "score": 1.0, + "content": "has not been well-explained in theory. It remains mysterious why standard optimization algorithms", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 462, + 504, + 474 + ], + "spans": [ + { + "bbox": [ + 105, + 462, + 504, + 474 + ], + "score": 1.0, + "content": "tend to find a globally optimal solution, despite the highly non-convex landscape of the training loss", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 473, + 505, + 486 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 505, + 486 + ], + "score": 1.0, + "content": "function. Moreover, despite the extremely large amount of parameters, deep neural networks rarely", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 483, + 505, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 483, + 505, + 498 + ], + "score": 1.0, + "content": "over-fit, and can often generalize well to unseen data and achieve good test accuracy. Understanding", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 496, + 505, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 496, + 505, + 507 + ], + "score": 1.0, + "content": "these mysterious phenomena on the optimization and generalization of deep neural networks is one", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 505, + 343, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 505, + 343, + 520 + ], + "score": 1.0, + "content": "of the most fundamental problems in deep learning theory.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 25.5 + }, + { + "type": "text", + "bbox": [ + 107, + 523, + 505, + 687 + ], + "lines": [ + { + "bbox": [ + 106, + 522, + 505, + 535 + ], + "spans": [ + { + "bbox": [ + 106, + 522, + 505, + 535 + ], + "score": 1.0, + "content": "Recent breakthroughs have shed light on the optimization and generalization of deep neural networks", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 534, + 505, + 547 + ], + "spans": [ + { + "bbox": [ + 106, + 534, + 505, + 547 + ], + "score": 1.0, + "content": "(DNNs) under the over-parameterized setting, where the hidden layer width is extremely large (much", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 544, + 505, + 557 + ], + "spans": [ + { + "bbox": [ + 105, + 544, + 505, + 557 + ], + "score": 1.0, + "content": "larger than the number of training examples). It has been shown that with the standard random", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 556, + 506, + 569 + ], + "spans": [ + { + "bbox": [ + 106, + 556, + 506, + 569 + ], + "score": 1.0, + "content": "initialization, the training of over-parameterized deep neural networks can be characterized by a", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 566, + 506, + 579 + ], + "spans": [ + { + "bbox": [ + 105, + 566, + 506, + 579 + ], + "score": 1.0, + "content": "kernel function called neural tangent kernel (NTK) (Jacot et al., 2018; Arora et al., 2019b). In", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 578, + 506, + 590 + ], + "spans": [ + { + "bbox": [ + 106, + 578, + 506, + 590 + ], + "score": 1.0, + "content": "the neural tangent kernel regime (or lazy training regime (Chizat et al., 2019)), the neural network", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 588, + 506, + 601 + ], + "spans": [ + { + "bbox": [ + 106, + 588, + 506, + 601 + ], + "score": 1.0, + "content": "function behaves similarly as its first-order Taylor expansion at initialization (Jacot et al., 2018;", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 600, + 506, + 612 + ], + "spans": [ + { + "bbox": [ + 106, + 600, + 506, + 612 + ], + "score": 1.0, + "content": "Lee et al., 2019; Arora et al., 2019b; Cao and Gu, 2019), which enables feasible optimization and", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 610, + 507, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 507, + 623 + ], + "score": 1.0, + "content": "generalization analysis. In terms of optimization, a line of work (Du et al., 2019b; Allen-Zhu et al.,", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 621, + 507, + 634 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 507, + 634 + ], + "score": 1.0, + "content": "2019b; Zou et al., 2019; Zou and Gu, 2019) proved that for sufficiently wide neural networks,", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 632, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 106, + 632, + 505, + 645 + ], + "score": 1.0, + "content": "(stochastic) gradient descent (GD/SGD) can successfully find a global optimum of the training loss", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 643, + 506, + 655 + ], + "spans": [ + { + "bbox": [ + 105, + 643, + 506, + 655 + ], + "score": 1.0, + "content": "function. For generalization, Allen-Zhu et al. (2019a); Arora et al. (2019a); Cao and Gu (2019)", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 654, + 506, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 506, + 667 + ], + "score": 1.0, + "content": "established generalization bounds of neural networks trained with (stochastic) gradient descent, and", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 665, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 505, + 678 + ], + "score": 1.0, + "content": "showed that the neural networks can learn target functions in certain reproducing kernel Hilbert space", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 677, + 350, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 350, + 689 + ], + "score": 1.0, + "content": "(RKHS) or the corresponding random feature function class.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 108, + 694, + 504, + 716 + ], + "lines": [ + { + "bbox": [ + 106, + 693, + 505, + 706 + ], + "spans": [ + { + "bbox": [ + 106, + 693, + 505, + 706 + ], + "score": 1.0, + "content": "Although existing results in the neural tangent kernel regime have provided important insights", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 704, + 505, + 717 + ], + "spans": [ + { + "bbox": [ + 106, + 704, + 505, + 717 + ], + "score": 1.0, + "content": "into the learning of deep neural networks, they require the neural network to be extremely wide.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45.5 + } + ], + "page_idx": 0, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 120, + 722, + 192, + 731 + ], + "lines": [ + { + "bbox": [ + 118, + 720, + 194, + 733 + ], + "spans": [ + { + "bbox": [ + 118, + 720, + 194, + 733 + ], + "score": 1.0, + "content": "∗Equal contribution.", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 108, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "score": 1.0, + "content": "1", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 78, + 505, + 116 + ], + "lines": [ + { + "bbox": [ + 106, + 78, + 507, + 97 + ], + "spans": [ + { + "bbox": [ + 106, + 78, + 507, + 97 + ], + "score": 1.0, + "content": "HOW MUCH OVER-PARAMETERIZATION IS SUFFI-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 98, + 428, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 98, + 428, + 117 + ], + "score": 1.0, + "content": "CIENT TO LEARN DEEP RELU NETWORKS?", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 113, + 133, + 403, + 169 + ], + "lines": [ + { + "bbox": [ + 113, + 133, + 365, + 148 + ], + "spans": [ + { + "bbox": [ + 113, + 133, + 345, + 148 + ], + "score": 1.0, + "content": "Zixiang Chen:˚, Yuan Cao:˚, Difan Zou:˚, Quanquan", + "type": "text" + }, + { + "bbox": [ + 345, + 134, + 365, + 146 + ], + "score": 0.59, + "content": "\\mathbf { G u } ^ { \\dagger }", + "type": "inline_equation" + } + ], + "index": 2 + }, + { + "bbox": [ + 113, + 146, + 403, + 160 + ], + "spans": [ + { + "bbox": [ + 113, + 146, + 403, + 160 + ], + "score": 1.0, + "content": ":Department of Computer Science, University of California, Los Angles", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 114, + 159, + 340, + 170 + ], + "spans": [ + { + "bbox": [ + 114, + 159, + 340, + 170 + ], + "score": 1.0, + "content": "{chenzx19,yuancao,knowzou,qgu}@cs.ucla.edu", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3, + "bbox_fs": [ + 113, + 133, + 403, + 170 + ] + }, + { + "type": "title", + "bbox": [ + 278, + 198, + 333, + 210 + ], + "lines": [ + { + "bbox": [ + 276, + 198, + 335, + 211 + ], + "spans": [ + { + "bbox": [ + 276, + 198, + 335, + 211 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 143, + 222, + 468, + 386 + ], + "lines": [ + { + "bbox": [ + 141, + 221, + 470, + 234 + ], + "spans": [ + { + "bbox": [ + 141, + 221, + 470, + 234 + ], + "score": 1.0, + "content": "A recent line of research on deep learning focuses on the extremely over-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 140, + 232, + 470, + 245 + ], + "spans": [ + { + "bbox": [ + 140, + 232, + 470, + 245 + ], + "score": 1.0, + "content": "parameterized setting, and shows that when the network width is larger than", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 141, + 243, + 470, + 257 + ], + "spans": [ + { + "bbox": [ + 141, + 243, + 349, + 257 + ], + "score": 1.0, + "content": "a high degree polynomial of the training sample size", + "type": "text" + }, + { + "bbox": [ + 350, + 245, + 357, + 254 + ], + "score": 0.73, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 358, + 243, + 470, + 257 + ], + "score": 1.0, + "content": "and the inverse of the target", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 140, + 253, + 469, + 268 + ], + "spans": [ + { + "bbox": [ + 140, + 253, + 165, + 268 + ], + "score": 1.0, + "content": "error", + "type": "text" + }, + { + "bbox": [ + 165, + 254, + 181, + 264 + ], + "score": 0.89, + "content": "\\epsilon ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 253, + 469, + 268 + ], + "score": 1.0, + "content": ", deep neural networks learned by (stochastic) gradient descent enjoy", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 266, + 470, + 278 + ], + "spans": [ + { + "bbox": [ + 141, + 266, + 470, + 278 + ], + "score": 1.0, + "content": "nice optimization and generalization guarantees. Very recently, it is shown that", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 276, + 470, + 289 + ], + "spans": [ + { + "bbox": [ + 141, + 276, + 470, + 289 + ], + "score": 1.0, + "content": "under certain margin assumptions on the training data, a polylogarithmic width", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 287, + 470, + 300 + ], + "spans": [ + { + "bbox": [ + 141, + 287, + 470, + 300 + ], + "score": 1.0, + "content": "condition suffices for two-layer ReLU networks to converge and generalize (Ji", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 298, + 470, + 311 + ], + "spans": [ + { + "bbox": [ + 141, + 298, + 470, + 311 + ], + "score": 1.0, + "content": "and Telgarsky, 2020). However, whether deep neural networks can be learned", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 309, + 470, + 322 + ], + "spans": [ + { + "bbox": [ + 141, + 309, + 470, + 322 + ], + "score": 1.0, + "content": "with such a mild over-parameterization is still an open question. In this work, we", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 320, + 470, + 333 + ], + "spans": [ + { + "bbox": [ + 141, + 320, + 470, + 333 + ], + "score": 1.0, + "content": "answer this question affirmatively and establish sharper learning guarantees for", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 331, + 470, + 344 + ], + "spans": [ + { + "bbox": [ + 141, + 331, + 470, + 344 + ], + "score": 1.0, + "content": "deep ReLU networks trained by (stochastic) gradient descent. In specific, under", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 142, + 343, + 469, + 354 + ], + "spans": [ + { + "bbox": [ + 142, + 343, + 469, + 354 + ], + "score": 1.0, + "content": "certain assumptions made in previous work, our optimization and generalization", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 353, + 470, + 365 + ], + "spans": [ + { + "bbox": [ + 141, + 353, + 372, + 365 + ], + "score": 1.0, + "content": "guarantees hold with network width polylogarithmic in", + "type": "text" + }, + { + "bbox": [ + 372, + 354, + 380, + 363 + ], + "score": 0.73, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 380, + 353, + 399, + 365 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 399, + 353, + 415, + 363 + ], + "score": 0.89, + "content": "\\epsilon ^ { - \\bar { 1 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 415, + 353, + 470, + 365 + ], + "score": 1.0, + "content": ". Our results", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 364, + 470, + 376 + ], + "spans": [ + { + "bbox": [ + 141, + 364, + 470, + 376 + ], + "score": 1.0, + "content": "push the study of over-parameterized deep neural networks towards more practical", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 375, + 178, + 388 + ], + "spans": [ + { + "bbox": [ + 141, + 375, + 178, + 388 + ], + "score": 1.0, + "content": "settings.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 13, + "bbox_fs": [ + 140, + 221, + 470, + 388 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 405, + 206, + 417 + ], + "lines": [ + { + "bbox": [ + 105, + 403, + 208, + 420 + ], + "spans": [ + { + "bbox": [ + 105, + 403, + 208, + 420 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 107, + 429, + 505, + 517 + ], + "lines": [ + { + "bbox": [ + 105, + 429, + 505, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 505, + 442 + ], + "score": 1.0, + "content": "Deep neural networks have become one of the most important and prevalent machine learning models", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 439, + 505, + 454 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 505, + 454 + ], + "score": 1.0, + "content": "due to their remarkable power in many real-world applications. However, the success of deep learning", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 452, + 504, + 463 + ], + "spans": [ + { + "bbox": [ + 106, + 452, + 504, + 463 + ], + "score": 1.0, + "content": "has not been well-explained in theory. It remains mysterious why standard optimization algorithms", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 462, + 504, + 474 + ], + "spans": [ + { + "bbox": [ + 105, + 462, + 504, + 474 + ], + "score": 1.0, + "content": "tend to find a globally optimal solution, despite the highly non-convex landscape of the training loss", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 473, + 505, + 486 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 505, + 486 + ], + "score": 1.0, + "content": "function. Moreover, despite the extremely large amount of parameters, deep neural networks rarely", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 483, + 505, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 483, + 505, + 498 + ], + "score": 1.0, + "content": "over-fit, and can often generalize well to unseen data and achieve good test accuracy. Understanding", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 496, + 505, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 496, + 505, + 507 + ], + "score": 1.0, + "content": "these mysterious phenomena on the optimization and generalization of deep neural networks is one", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 505, + 343, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 505, + 343, + 520 + ], + "score": 1.0, + "content": "of the most fundamental problems in deep learning theory.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 25.5, + "bbox_fs": [ + 105, + 429, + 505, + 520 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 523, + 505, + 687 + ], + "lines": [ + { + "bbox": [ + 106, + 522, + 505, + 535 + ], + "spans": [ + { + "bbox": [ + 106, + 522, + 505, + 535 + ], + "score": 1.0, + "content": "Recent breakthroughs have shed light on the optimization and generalization of deep neural networks", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 534, + 505, + 547 + ], + "spans": [ + { + "bbox": [ + 106, + 534, + 505, + 547 + ], + "score": 1.0, + "content": "(DNNs) under the over-parameterized setting, where the hidden layer width is extremely large (much", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 544, + 505, + 557 + ], + "spans": [ + { + "bbox": [ + 105, + 544, + 505, + 557 + ], + "score": 1.0, + "content": "larger than the number of training examples). It has been shown that with the standard random", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 556, + 506, + 569 + ], + "spans": [ + { + "bbox": [ + 106, + 556, + 506, + 569 + ], + "score": 1.0, + "content": "initialization, the training of over-parameterized deep neural networks can be characterized by a", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 566, + 506, + 579 + ], + "spans": [ + { + "bbox": [ + 105, + 566, + 506, + 579 + ], + "score": 1.0, + "content": "kernel function called neural tangent kernel (NTK) (Jacot et al., 2018; Arora et al., 2019b). In", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 578, + 506, + 590 + ], + "spans": [ + { + "bbox": [ + 106, + 578, + 506, + 590 + ], + "score": 1.0, + "content": "the neural tangent kernel regime (or lazy training regime (Chizat et al., 2019)), the neural network", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 588, + 506, + 601 + ], + "spans": [ + { + "bbox": [ + 106, + 588, + 506, + 601 + ], + "score": 1.0, + "content": "function behaves similarly as its first-order Taylor expansion at initialization (Jacot et al., 2018;", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 600, + 506, + 612 + ], + "spans": [ + { + "bbox": [ + 106, + 600, + 506, + 612 + ], + "score": 1.0, + "content": "Lee et al., 2019; Arora et al., 2019b; Cao and Gu, 2019), which enables feasible optimization and", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 610, + 507, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 507, + 623 + ], + "score": 1.0, + "content": "generalization analysis. In terms of optimization, a line of work (Du et al., 2019b; Allen-Zhu et al.,", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 621, + 507, + 634 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 507, + 634 + ], + "score": 1.0, + "content": "2019b; Zou et al., 2019; Zou and Gu, 2019) proved that for sufficiently wide neural networks,", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 632, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 106, + 632, + 505, + 645 + ], + "score": 1.0, + "content": "(stochastic) gradient descent (GD/SGD) can successfully find a global optimum of the training loss", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 643, + 506, + 655 + ], + "spans": [ + { + "bbox": [ + 105, + 643, + 506, + 655 + ], + "score": 1.0, + "content": "function. For generalization, Allen-Zhu et al. (2019a); Arora et al. (2019a); Cao and Gu (2019)", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 654, + 506, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 506, + 667 + ], + "score": 1.0, + "content": "established generalization bounds of neural networks trained with (stochastic) gradient descent, and", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 665, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 505, + 678 + ], + "score": 1.0, + "content": "showed that the neural networks can learn target functions in certain reproducing kernel Hilbert space", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 677, + 350, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 350, + 689 + ], + "score": 1.0, + "content": "(RKHS) or the corresponding random feature function class.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 37, + "bbox_fs": [ + 105, + 522, + 507, + 689 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 694, + 504, + 716 + ], + "lines": [ + { + "bbox": [ + 106, + 693, + 505, + 706 + ], + "spans": [ + { + "bbox": [ + 106, + 693, + 505, + 706 + ], + "score": 1.0, + "content": "Although existing results in the neural tangent kernel regime have provided important insights", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 704, + 505, + 717 + ], + "spans": [ + { + "bbox": [ + 106, + 704, + 505, + 717 + ], + "score": 1.0, + "content": "into the learning of deep neural networks, they require the neural network to be extremely wide.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45.5, + "bbox_fs": [ + 106, + 693, + 505, + 717 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 203 + ], + "lines": [ + { + "bbox": [ + 106, + 83, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 505, + 95 + ], + "score": 1.0, + "content": "The typical requirement on the network width is a high degree polynomial of the training sample", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 92, + 506, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 92, + 126, + 107 + ], + "score": 1.0, + "content": "size", + "type": "text" + }, + { + "bbox": [ + 126, + 96, + 133, + 104 + ], + "score": 0.68, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 134, + 92, + 280, + 107 + ], + "score": 1.0, + "content": "and the inverse of the target error", + "type": "text" + }, + { + "bbox": [ + 280, + 93, + 295, + 104 + ], + "score": 0.9, + "content": "\\epsilon ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 296, + 92, + 506, + 107 + ], + "score": 1.0, + "content": ". As there still remains a huge gap between such", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 506, + 117 + ], + "score": 1.0, + "content": "network width requirement and the practice, many attempts have been made to improve the over-", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 104, + 115, + 506, + 128 + ], + "spans": [ + { + "bbox": [ + 104, + 115, + 506, + 128 + ], + "score": 1.0, + "content": "parameterization condition under various conditions on the training data and model initialization", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 506, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 506, + 140 + ], + "score": 1.0, + "content": "(Oymak and Soltanolkotabi, 2019; Zou and Gu, 2019; Kawaguchi and Huang, 2019; Bai and Lee,", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 137, + 505, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 505, + 150 + ], + "score": 1.0, + "content": "2019). For two-layer ReLU networks, a recent work (Ji and Telgarsky, 2020) showed that when the", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 149, + 505, + 161 + ], + "spans": [ + { + "bbox": [ + 106, + 149, + 505, + 161 + ], + "score": 1.0, + "content": "training data are well separated, polylogarithmic width is sufficient to guarantee good optimization", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 159, + 505, + 172 + ], + "spans": [ + { + "bbox": [ + 106, + 159, + 505, + 172 + ], + "score": 1.0, + "content": "and generalization performances. However, their results cannot be extended to deep ReLU networks", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 171, + 505, + 183 + ], + "spans": [ + { + "bbox": [ + 106, + 171, + 505, + 183 + ], + "score": 1.0, + "content": "since their proof technique largely relies on the fact that the network model is 1-homogeneous, which", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 181, + 506, + 194 + ], + "spans": [ + { + "bbox": [ + 105, + 181, + 506, + 194 + ], + "score": 1.0, + "content": "cannot be satisfied by DNNs. Therefore, whether deep neural networks can be learned with such a", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 192, + 315, + 205 + ], + "spans": [ + { + "bbox": [ + 106, + 192, + 315, + 205 + ], + "score": 1.0, + "content": "mild over-parameterization is still an open problem.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 107, + 209, + 505, + 286 + ], + "lines": [ + { + "bbox": [ + 105, + 209, + 506, + 221 + ], + "spans": [ + { + "bbox": [ + 105, + 209, + 506, + 221 + ], + "score": 1.0, + "content": "In this paper, we resolve this open problem by showing that polylogarithmic network width is", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 219, + 505, + 233 + ], + "spans": [ + { + "bbox": [ + 105, + 219, + 505, + 233 + ], + "score": 1.0, + "content": "sufficient to learn DNNs. In particular, unlike the existing works that require the DNNs to behave", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 231, + 505, + 243 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 505, + 243 + ], + "score": 1.0, + "content": "very close to a linear model (up to some small approximation error), we show that a constant linear", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 242, + 505, + 254 + ], + "spans": [ + { + "bbox": [ + 105, + 242, + 505, + 254 + ], + "score": 1.0, + "content": "approximation error is sufficient to establish nice optimization and generalization guarantees for", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 252, + 506, + 266 + ], + "spans": [ + { + "bbox": [ + 105, + 252, + 506, + 266 + ], + "score": 1.0, + "content": "DNNs. Thanks to the relaxed requirement on the linear approximation error, a milder condition on", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 263, + 507, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 263, + 507, + 277 + ], + "score": 1.0, + "content": "the network width and tighter bounds on the convergence rate and generalization error can be proved.", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 275, + 284, + 286 + ], + "spans": [ + { + "bbox": [ + 106, + 275, + 284, + 286 + ], + "score": 1.0, + "content": "We summarize our contributions as follows:", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 105, + 298, + 506, + 557 + ], + "lines": [ + { + "bbox": [ + 106, + 297, + 505, + 312 + ], + "spans": [ + { + "bbox": [ + 106, + 297, + 505, + 312 + ], + "score": 1.0, + "content": "• We establish the global convergence guarantee of GD for training deep ReLU networks based", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 309, + 505, + 321 + ], + "spans": [ + { + "bbox": [ + 115, + 309, + 505, + 321 + ], + "score": 1.0, + "content": "on the so-called NTRF function class (Cao and Gu, 2019), a set of linear functions over random", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 115, + 319, + 504, + 333 + ], + "spans": [ + { + "bbox": [ + 115, + 319, + 447, + 333 + ], + "score": 1.0, + "content": "features. Specifically, we prove that GD can learn deep ReLU networks with width", + "type": "text" + }, + { + "bbox": [ + 447, + 320, + 504, + 332 + ], + "score": 0.9, + "content": "m = { \\mathrm { p o l y } } ( R )", + "type": "inline_equation" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 331, + 505, + 343 + ], + "spans": [ + { + "bbox": [ + 115, + 331, + 387, + 343 + ], + "score": 1.0, + "content": "to compete with the best function in NTRF function class, where", + "type": "text" + }, + { + "bbox": [ + 387, + 332, + 396, + 341 + ], + "score": 0.8, + "content": "R", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 331, + 505, + 343 + ], + "score": 1.0, + "content": "is the radius of the NTRF", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 116, + 342, + 176, + 355 + ], + "spans": [ + { + "bbox": [ + 116, + 342, + 176, + 355 + ], + "score": 1.0, + "content": "function class.", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 361, + 506, + 375 + ], + "spans": [ + { + "bbox": [ + 106, + 361, + 506, + 375 + ], + "score": 1.0, + "content": "• We also establish the generalization guarantees for both GD and SGD in the same setting. Specifi-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 373, + 506, + 388 + ], + "spans": [ + { + "bbox": [ + 115, + 374, + 441, + 388 + ], + "score": 1.0, + "content": "cally, we prove a diminishing statistical error for a wide range of network width", + "type": "text" + }, + { + "bbox": [ + 441, + 373, + 502, + 387 + ], + "score": 0.93, + "content": "m \\in ( \\widetilde { \\Omega } ( 1 ) , \\infty )", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 374, + 506, + 388 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 114, + 384, + 506, + 400 + ], + "spans": [ + { + "bbox": [ + 114, + 384, + 506, + 400 + ], + "score": 1.0, + "content": "while most of the previous generalization bounds in the NTK regime only works in the setting", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 397, + 504, + 411 + ], + "spans": [ + { + "bbox": [ + 115, + 398, + 214, + 411 + ], + "score": 1.0, + "content": "where the network width", + "type": "text" + }, + { + "bbox": [ + 215, + 400, + 225, + 408 + ], + "score": 0.72, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 398, + 368, + 411 + ], + "score": 1.0, + "content": "is much greater than the sample size", + "type": "text" + }, + { + "bbox": [ + 368, + 401, + 375, + 408 + ], + "score": 0.68, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 398, + 472, + 411 + ], + "score": 1.0, + "content": ". Moreover, we establish", + "type": "text" + }, + { + "bbox": [ + 473, + 397, + 504, + 411 + ], + "score": 0.93, + "content": "\\tilde { \\mathcal { O } } ( \\epsilon ^ { - 2 } )", + "type": "inline_equation" + } + ], + "index": 26 + }, + { + "bbox": [ + 117, + 410, + 505, + 425 + ], + "spans": [ + { + "bbox": [ + 117, + 410, + 148, + 424 + ], + "score": 0.92, + "content": "\\tilde { \\mathcal { O } } ( \\epsilon ^ { - 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 410, + 505, + 425 + ], + "score": 1.0, + "content": "sample complexities for GD and SGD respectively, which are tighter than existing bounds", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 116, + 423, + 505, + 435 + ], + "spans": [ + { + "bbox": [ + 116, + 423, + 505, + 435 + ], + "score": 1.0, + "content": "for learning deep ReLU networks (Cao and Gu, 2019), and match the best results when reduced to", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 115, + 434, + 377, + 447 + ], + "spans": [ + { + "bbox": [ + 115, + 434, + 377, + 447 + ], + "score": 1.0, + "content": "the two-layer cases (Arora et al., 2019b; Ji and Telgarsky, 2020).", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 109, + 452, + 505, + 467 + ], + "spans": [ + { + "bbox": [ + 109, + 452, + 505, + 467 + ], + "score": 1.0, + "content": "• We further generalize our theoretical analysis to the scenarios with different data separability", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 115, + 464, + 506, + 477 + ], + "spans": [ + { + "bbox": [ + 115, + 464, + 506, + 477 + ], + "score": 1.0, + "content": "assumptions in the literature. We show if a large fraction of the training data are well separated,", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 475, + 506, + 491 + ], + "spans": [ + { + "bbox": [ + 115, + 476, + 350, + 491 + ], + "score": 1.0, + "content": "the best function in the NTRF function class with radius", + "type": "text" + }, + { + "bbox": [ + 350, + 475, + 394, + 489 + ], + "score": 0.95, + "content": "R = \\widetilde { \\mathcal { O } } ( 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 394, + 476, + 506, + 491 + ], + "score": 1.0, + "content": "can learn the training data", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 488, + 505, + 502 + ], + "spans": [ + { + "bbox": [ + 115, + 488, + 180, + 502 + ], + "score": 1.0, + "content": "with error up to", + "type": "text" + }, + { + "bbox": [ + 181, + 491, + 186, + 498 + ], + "score": 0.35, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 186, + 488, + 505, + 502 + ], + "score": 1.0, + "content": ". This together with our optimization and generalization guarantees immediately", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 114, + 499, + 506, + 514 + ], + "spans": [ + { + "bbox": [ + 114, + 501, + 405, + 514 + ], + "score": 1.0, + "content": "suggests that deep ReLU networks can be learned with network width", + "type": "text" + }, + { + "bbox": [ + 406, + 499, + 450, + 513 + ], + "score": 0.93, + "content": "\\bar { m } = \\widetilde { \\Omega } ( 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 501, + 506, + 514 + ], + "score": 1.0, + "content": ", which has a", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 115, + 513, + 505, + 525 + ], + "spans": [ + { + "bbox": [ + 115, + 513, + 291, + 525 + ], + "score": 1.0, + "content": "logarithmic dependence on the target error", + "type": "text" + }, + { + "bbox": [ + 291, + 515, + 297, + 522 + ], + "score": 0.65, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 513, + 364, + 525 + ], + "score": 1.0, + "content": "and sample size", + "type": "text" + }, + { + "bbox": [ + 365, + 514, + 372, + 522 + ], + "score": 0.64, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 513, + 505, + 525 + ], + "score": 1.0, + "content": ". Compared with existing results", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 115, + 523, + 505, + 536 + ], + "spans": [ + { + "bbox": [ + 115, + 523, + 505, + 536 + ], + "score": 1.0, + "content": "(Cao and Gu, 2020; Ji and Telgarsky, 2020) which require all training data points to be separated", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 115, + 535, + 505, + 546 + ], + "spans": [ + { + "bbox": [ + 115, + 535, + 505, + 546 + ], + "score": 1.0, + "content": "in the NTK regime, our result is stronger since it allows the NTRF function class to misclassify a", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 115, + 545, + 266, + 558 + ], + "spans": [ + { + "bbox": [ + 115, + 545, + 266, + 558 + ], + "score": 1.0, + "content": "small proportion of the training data.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 107, + 568, + 505, + 613 + ], + "lines": [ + { + "bbox": [ + 105, + 567, + 506, + 581 + ], + "spans": [ + { + "bbox": [ + 105, + 567, + 506, + 581 + ], + "score": 1.0, + "content": "For the ease of comparison, we summarize our results along with the most related previous results in", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 579, + 506, + 592 + ], + "spans": [ + { + "bbox": [ + 105, + 579, + 506, + 592 + ], + "score": 1.0, + "content": "Table 1, in terms of data assumption, the over-parameterization condition and sample complexity.", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 590, + 505, + 603 + ], + "spans": [ + { + "bbox": [ + 105, + 590, + 505, + 603 + ], + "score": 1.0, + "content": "It can be seen that under data separation assumption (See Sections 4.1, 4.2), our result improves", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 601, + 506, + 614 + ], + "spans": [ + { + "bbox": [ + 105, + 601, + 410, + 614 + ], + "score": 1.0, + "content": "existing results for learning deep neural networks by only requiring a polylog", + "type": "text" + }, + { + "bbox": [ + 411, + 601, + 443, + 614 + ], + "score": 0.79, + "content": "( n , \\epsilon ^ { - 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 601, + 506, + 614 + ], + "score": 1.0, + "content": "network width.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 40.5 + }, + { + "type": "text", + "bbox": [ + 107, + 618, + 505, + 663 + ], + "lines": [ + { + "bbox": [ + 104, + 616, + 504, + 632 + ], + "spans": [ + { + "bbox": [ + 104, + 616, + 213, + 632 + ], + "score": 1.0, + "content": "Notation. For two scalars", + "type": "text" + }, + { + "bbox": [ + 213, + 621, + 220, + 628 + ], + "score": 0.73, + "content": "a", + "type": "inline_equation" + }, + { + "bbox": [ + 220, + 616, + 238, + 632 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 238, + 619, + 244, + 629 + ], + "score": 0.71, + "content": "b", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 616, + 291, + 632 + ], + "score": 1.0, + "content": ", we denote", + "type": "text" + }, + { + "bbox": [ + 291, + 618, + 367, + 630 + ], + "score": 0.9, + "content": "a \\wedge b = \\operatorname* { m i n } \\{ a , b \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 367, + 616, + 422, + 632 + ], + "score": 1.0, + "content": ". For a vector", + "type": "text" + }, + { + "bbox": [ + 423, + 617, + 452, + 629 + ], + "score": 0.9, + "content": "\\mathbf { x } \\in \\mathbb { R } ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 452, + 616, + 484, + 632 + ], + "score": 1.0, + "content": "we use", + "type": "text" + }, + { + "bbox": [ + 484, + 618, + 504, + 631 + ], + "score": 0.91, + "content": "\\| \\mathbf { x } \\| _ { 2 }", + "type": "inline_equation" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 629, + 505, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 629, + 282, + 641 + ], + "score": 1.0, + "content": "to denote its Euclidean norm. For a matrix", + "type": "text" + }, + { + "bbox": [ + 282, + 630, + 292, + 639 + ], + "score": 0.65, + "content": "\\mathbf { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 629, + 327, + 641 + ], + "score": 1.0, + "content": ", we use", + "type": "text" + }, + { + "bbox": [ + 327, + 630, + 349, + 641 + ], + "score": 0.91, + "content": "\\lVert \\mathbf { X } \\rVert _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 350, + 629, + 369, + 641 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 369, + 630, + 393, + 641 + ], + "score": 0.92, + "content": "\\| \\mathbf { X } \\| _ { F }", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 629, + 505, + 641 + ], + "score": 1.0, + "content": "to denote its spectral norm", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 640, + 506, + 653 + ], + "spans": [ + { + "bbox": [ + 105, + 640, + 299, + 653 + ], + "score": 1.0, + "content": "and Frobenius norm respectively, and denote by", + "type": "text" + }, + { + "bbox": [ + 300, + 641, + 317, + 653 + ], + "score": 0.91, + "content": "\\mathbf { X } _ { i j }", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 640, + 366, + 653 + ], + "score": 1.0, + "content": "the entry of", + "type": "text" + }, + { + "bbox": [ + 367, + 641, + 376, + 650 + ], + "score": 0.72, + "content": "\\mathbf { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 377, + 640, + 402, + 653 + ], + "score": 1.0, + "content": "at the", + "type": "text" + }, + { + "bbox": [ + 402, + 641, + 407, + 650 + ], + "score": 0.77, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 640, + 453, + 653 + ], + "score": 1.0, + "content": "-th row and ř", + "type": "text" + }, + { + "bbox": [ + 454, + 641, + 460, + 651 + ], + "score": 0.82, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 640, + 506, + 653 + ], + "score": 1.0, + "content": "-th column.", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 650, + 474, + 665 + ], + "spans": [ + { + "bbox": [ + 105, + 650, + 186, + 665 + ], + "score": 1.0, + "content": "Given two matrices", + "type": "text" + }, + { + "bbox": [ + 187, + 651, + 196, + 661 + ], + "score": 0.47, + "content": "\\mathbf { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 197, + 650, + 214, + 665 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 215, + 651, + 225, + 661 + ], + "score": 0.62, + "content": "\\mathbf { Y }", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 650, + 373, + 665 + ], + "score": 1.0, + "content": "with the same dimension, we denote", + "type": "text" + }, + { + "bbox": [ + 374, + 651, + 470, + 665 + ], + "score": 0.94, + "content": "\\begin{array} { r } { \\langle { \\bf X } , { \\bf Y } \\rangle = \\sum _ { i , j } { \\bf X } _ { i j } \\mathbf { \\bar { Y } } _ { i j } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 470, + 650, + 474, + 665 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 44.5 + }, + { + "type": "text", + "bbox": [ + 106, + 671, + 505, + 734 + ], + "lines": [ + { + "bbox": [ + 104, + 668, + 506, + 686 + ], + "spans": [ + { + "bbox": [ + 104, + 668, + 232, + 686 + ], + "score": 1.0, + "content": "Given a collection of matrices", + "type": "text" + }, + { + "bbox": [ + 233, + 670, + 393, + 685 + ], + "score": 0.91, + "content": "\\mathbf { W } = \\left\\{ \\mathbf { W } _ { 1 } , \\cdots , \\mathbf { W } _ { L } \\right\\} \\in \\bigotimes _ { l = 1 } ^ { L } \\mathbb { R } ^ { m _ { l } \\times m _ { l } ^ { \\prime } }", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 668, + 456, + 686 + ], + "score": 1.0, + "content": "and a function", + "type": "text" + }, + { + "bbox": [ + 457, + 672, + 483, + 684 + ], + "score": 0.92, + "content": "f ( \\mathbf { W } )", + "type": "inline_equation" + }, + { + "bbox": [ + 483, + 668, + 506, + 686 + ], + "score": 1.0, + "content": "over", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 682, + 506, + 699 + ], + "spans": [ + { + "bbox": [ + 106, + 683, + 162, + 698 + ], + "score": 0.92, + "content": "\\otimes _ { l = 1 } ^ { L } \\mathbb { R } ^ { m _ { l } \\times m _ { l } ^ { \\prime } }", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 682, + 218, + 699 + ], + "score": 1.0, + "content": ", we define by", + "type": "text" + }, + { + "bbox": [ + 219, + 685, + 266, + 697 + ], + "score": 0.92, + "content": "\\nabla _ { \\mathbf { W } _ { l } } f ( \\mathbf { W } )", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 682, + 354, + 699 + ], + "score": 1.0, + "content": "the partial gradient of", + "type": "text" + }, + { + "bbox": [ + 355, + 685, + 381, + 697 + ], + "score": 0.9, + "content": "f ( \\mathbf { W } )", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 682, + 442, + 699 + ], + "score": 1.0, + "content": "with respect to", + "type": "text" + }, + { + "bbox": [ + 443, + 685, + 459, + 696 + ], + "score": 0.88, + "content": "\\mathbf { W } _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 459, + 682, + 506, + 699 + ], + "score": 1.0, + "content": "and denote(", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 106, + 695, + 503, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 697, + 234, + 710 + ], + "score": 0.9, + "content": "\\nabla _ { \\mathbf { W } } f ( \\mathbf { W } ) = \\{ \\nabla _ { \\mathbf { W } _ { l } } f ( \\mathbf { W } ) \\} _ { l = 1 } ^ { L }", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 695, + 303, + 712 + ], + "score": 1.0, + "content": ". We also denote", + "type": "text" + }, + { + "bbox": [ + 304, + 697, + 503, + 710 + ], + "score": 0.88, + "content": "\\begin{array} { r } { \\mathbf { \\Theta } \\mathcal { B } ( \\mathbf { W } , \\tau ) = \\left\\{ \\mathbf { W } ^ { \\prime } : \\operatorname* { m a x } _ { l \\in [ L ] } \\| \\mathbf { W } _ { l } ^ { \\prime } - \\mathbf { W } _ { l } \\| _ { F } \\leqslant \\tau \\right\\} } \\end{array}", + "type": "inline_equation" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 708, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 121, + 722 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 121, + 711, + 149, + 720 + ], + "score": 0.86, + "content": "\\tau \\geqslant 0", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 708, + 282, + 722 + ], + "score": 1.0, + "content": ". For two collection of matrices ř ř", + "type": "text" + }, + { + "bbox": [ + 282, + 710, + 367, + 721 + ], + "score": 0.84, + "content": "\\mathbf { A } = \\left\\{ \\mathbf { A } _ { 1 } , \\cdots , \\mathbf { A } _ { n } \\right\\}", + "type": "inline_equation" + }, + { + "bbox": [ + 367, + 708, + 372, + 722 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 372, + 710, + 455, + 722 + ], + "score": 0.9, + "content": "\\mathbf { B } = \\{ \\mathbf { B } _ { 1 } , \\cdots , \\mathbf { B } _ { n } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 456, + 708, + 505, + 722 + ], + "score": 1.0, + "content": ", we denote", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 106, + 718, + 321, + 735 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 209, + 733 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\langle \\mathbf { A } , \\mathbf { B } \\rangle = \\sum _ { i = 1 } ^ { n } \\langle \\mathbf { A } _ { i } , \\mathbf { B } _ { i } \\rangle } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 718, + 227, + 735 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 228, + 720, + 316, + 734 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\| \\mathbf { A } \\| _ { F } ^ { 2 } = \\sum _ { i = 1 } ^ { n } \\| \\mathbf { A } _ { i } \\| _ { F } ^ { 2 } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 316, + 718, + 321, + 735 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 51 + } + ], + "index": 49 + } + ], + "page_idx": 1, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 763 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 763 + ], + "score": 1.0, + "content": "2", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 203 + ], + "lines": [ + { + "bbox": [ + 106, + 83, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 505, + 95 + ], + "score": 1.0, + "content": "The typical requirement on the network width is a high degree polynomial of the training sample", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 92, + 506, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 92, + 126, + 107 + ], + "score": 1.0, + "content": "size", + "type": "text" + }, + { + "bbox": [ + 126, + 96, + 133, + 104 + ], + "score": 0.68, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 134, + 92, + 280, + 107 + ], + "score": 1.0, + "content": "and the inverse of the target error", + "type": "text" + }, + { + "bbox": [ + 280, + 93, + 295, + 104 + ], + "score": 0.9, + "content": "\\epsilon ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 296, + 92, + 506, + 107 + ], + "score": 1.0, + "content": ". As there still remains a huge gap between such", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 506, + 117 + ], + "score": 1.0, + "content": "network width requirement and the practice, many attempts have been made to improve the over-", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 104, + 115, + 506, + 128 + ], + "spans": [ + { + "bbox": [ + 104, + 115, + 506, + 128 + ], + "score": 1.0, + "content": "parameterization condition under various conditions on the training data and model initialization", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 506, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 506, + 140 + ], + "score": 1.0, + "content": "(Oymak and Soltanolkotabi, 2019; Zou and Gu, 2019; Kawaguchi and Huang, 2019; Bai and Lee,", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 137, + 505, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 505, + 150 + ], + "score": 1.0, + "content": "2019). For two-layer ReLU networks, a recent work (Ji and Telgarsky, 2020) showed that when the", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 149, + 505, + 161 + ], + "spans": [ + { + "bbox": [ + 106, + 149, + 505, + 161 + ], + "score": 1.0, + "content": "training data are well separated, polylogarithmic width is sufficient to guarantee good optimization", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 159, + 505, + 172 + ], + "spans": [ + { + "bbox": [ + 106, + 159, + 505, + 172 + ], + "score": 1.0, + "content": "and generalization performances. However, their results cannot be extended to deep ReLU networks", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 171, + 505, + 183 + ], + "spans": [ + { + "bbox": [ + 106, + 171, + 505, + 183 + ], + "score": 1.0, + "content": "since their proof technique largely relies on the fact that the network model is 1-homogeneous, which", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 181, + 506, + 194 + ], + "spans": [ + { + "bbox": [ + 105, + 181, + 506, + 194 + ], + "score": 1.0, + "content": "cannot be satisfied by DNNs. Therefore, whether deep neural networks can be learned with such a", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 192, + 315, + 205 + ], + "spans": [ + { + "bbox": [ + 106, + 192, + 315, + 205 + ], + "score": 1.0, + "content": "mild over-parameterization is still an open problem.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 5, + "bbox_fs": [ + 104, + 83, + 506, + 205 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 209, + 505, + 286 + ], + "lines": [ + { + "bbox": [ + 105, + 209, + 506, + 221 + ], + "spans": [ + { + "bbox": [ + 105, + 209, + 506, + 221 + ], + "score": 1.0, + "content": "In this paper, we resolve this open problem by showing that polylogarithmic network width is", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 219, + 505, + 233 + ], + "spans": [ + { + "bbox": [ + 105, + 219, + 505, + 233 + ], + "score": 1.0, + "content": "sufficient to learn DNNs. In particular, unlike the existing works that require the DNNs to behave", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 231, + 505, + 243 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 505, + 243 + ], + "score": 1.0, + "content": "very close to a linear model (up to some small approximation error), we show that a constant linear", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 242, + 505, + 254 + ], + "spans": [ + { + "bbox": [ + 105, + 242, + 505, + 254 + ], + "score": 1.0, + "content": "approximation error is sufficient to establish nice optimization and generalization guarantees for", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 252, + 506, + 266 + ], + "spans": [ + { + "bbox": [ + 105, + 252, + 506, + 266 + ], + "score": 1.0, + "content": "DNNs. Thanks to the relaxed requirement on the linear approximation error, a milder condition on", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 263, + 507, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 263, + 507, + 277 + ], + "score": 1.0, + "content": "the network width and tighter bounds on the convergence rate and generalization error can be proved.", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 275, + 284, + 286 + ], + "spans": [ + { + "bbox": [ + 106, + 275, + 284, + 286 + ], + "score": 1.0, + "content": "We summarize our contributions as follows:", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 14, + "bbox_fs": [ + 105, + 209, + 507, + 286 + ] + }, + { + "type": "list", + "bbox": [ + 105, + 298, + 506, + 557 + ], + "lines": [ + { + "bbox": [ + 106, + 297, + 505, + 312 + ], + "spans": [ + { + "bbox": [ + 106, + 297, + 505, + 312 + ], + "score": 1.0, + "content": "• We establish the global convergence guarantee of GD for training deep ReLU networks based", + "type": "text" + } + ], + "index": 18, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 309, + 505, + 321 + ], + "spans": [ + { + "bbox": [ + 115, + 309, + 505, + 321 + ], + "score": 1.0, + "content": "on the so-called NTRF function class (Cao and Gu, 2019), a set of linear functions over random", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 115, + 319, + 504, + 333 + ], + "spans": [ + { + "bbox": [ + 115, + 319, + 447, + 333 + ], + "score": 1.0, + "content": "features. Specifically, we prove that GD can learn deep ReLU networks with width", + "type": "text" + }, + { + "bbox": [ + 447, + 320, + 504, + 332 + ], + "score": 0.9, + "content": "m = { \\mathrm { p o l y } } ( R )", + "type": "inline_equation" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 331, + 505, + 343 + ], + "spans": [ + { + "bbox": [ + 115, + 331, + 387, + 343 + ], + "score": 1.0, + "content": "to compete with the best function in NTRF function class, where", + "type": "text" + }, + { + "bbox": [ + 387, + 332, + 396, + 341 + ], + "score": 0.8, + "content": "R", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 331, + 505, + 343 + ], + "score": 1.0, + "content": "is the radius of the NTRF", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 116, + 342, + 176, + 355 + ], + "spans": [ + { + "bbox": [ + 116, + 342, + 176, + 355 + ], + "score": 1.0, + "content": "function class.", + "type": "text" + } + ], + "index": 22, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 361, + 506, + 375 + ], + "spans": [ + { + "bbox": [ + 106, + 361, + 506, + 375 + ], + "score": 1.0, + "content": "• We also establish the generalization guarantees for both GD and SGD in the same setting. Specifi-", + "type": "text" + } + ], + "index": 23, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 373, + 506, + 388 + ], + "spans": [ + { + "bbox": [ + 115, + 374, + 441, + 388 + ], + "score": 1.0, + "content": "cally, we prove a diminishing statistical error for a wide range of network width", + "type": "text" + }, + { + "bbox": [ + 441, + 373, + 502, + 387 + ], + "score": 0.93, + "content": "m \\in ( \\widetilde { \\Omega } ( 1 ) , \\infty )", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 374, + 506, + 388 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 114, + 384, + 506, + 400 + ], + "spans": [ + { + "bbox": [ + 114, + 384, + 506, + 400 + ], + "score": 1.0, + "content": "while most of the previous generalization bounds in the NTK regime only works in the setting", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 397, + 504, + 411 + ], + "spans": [ + { + "bbox": [ + 115, + 398, + 214, + 411 + ], + "score": 1.0, + "content": "where the network width", + "type": "text" + }, + { + "bbox": [ + 215, + 400, + 225, + 408 + ], + "score": 0.72, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 398, + 368, + 411 + ], + "score": 1.0, + "content": "is much greater than the sample size", + "type": "text" + }, + { + "bbox": [ + 368, + 401, + 375, + 408 + ], + "score": 0.68, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 398, + 472, + 411 + ], + "score": 1.0, + "content": ". Moreover, we establish", + "type": "text" + }, + { + "bbox": [ + 473, + 397, + 504, + 411 + ], + "score": 0.93, + "content": "\\tilde { \\mathcal { O } } ( \\epsilon ^ { - 2 } )", + "type": "inline_equation" + } + ], + "index": 26 + }, + { + "bbox": [ + 117, + 410, + 505, + 425 + ], + "spans": [ + { + "bbox": [ + 117, + 410, + 148, + 424 + ], + "score": 0.92, + "content": "\\tilde { \\mathcal { O } } ( \\epsilon ^ { - 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 410, + 505, + 425 + ], + "score": 1.0, + "content": "sample complexities for GD and SGD respectively, which are tighter than existing bounds", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 116, + 423, + 505, + 435 + ], + "spans": [ + { + "bbox": [ + 116, + 423, + 505, + 435 + ], + "score": 1.0, + "content": "for learning deep ReLU networks (Cao and Gu, 2019), and match the best results when reduced to", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 115, + 434, + 377, + 447 + ], + "spans": [ + { + "bbox": [ + 115, + 434, + 377, + 447 + ], + "score": 1.0, + "content": "the two-layer cases (Arora et al., 2019b; Ji and Telgarsky, 2020).", + "type": "text" + } + ], + "index": 29, + "is_list_end_line": true + }, + { + "bbox": [ + 109, + 452, + 505, + 467 + ], + "spans": [ + { + "bbox": [ + 109, + 452, + 505, + 467 + ], + "score": 1.0, + "content": "• We further generalize our theoretical analysis to the scenarios with different data separability", + "type": "text" + } + ], + "index": 30, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 464, + 506, + 477 + ], + "spans": [ + { + "bbox": [ + 115, + 464, + 506, + 477 + ], + "score": 1.0, + "content": "assumptions in the literature. We show if a large fraction of the training data are well separated,", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 475, + 506, + 491 + ], + "spans": [ + { + "bbox": [ + 115, + 476, + 350, + 491 + ], + "score": 1.0, + "content": "the best function in the NTRF function class with radius", + "type": "text" + }, + { + "bbox": [ + 350, + 475, + 394, + 489 + ], + "score": 0.95, + "content": "R = \\widetilde { \\mathcal { O } } ( 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 394, + 476, + 506, + 491 + ], + "score": 1.0, + "content": "can learn the training data", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 488, + 505, + 502 + ], + "spans": [ + { + "bbox": [ + 115, + 488, + 180, + 502 + ], + "score": 1.0, + "content": "with error up to", + "type": "text" + }, + { + "bbox": [ + 181, + 491, + 186, + 498 + ], + "score": 0.35, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 186, + 488, + 505, + 502 + ], + "score": 1.0, + "content": ". This together with our optimization and generalization guarantees immediately", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 114, + 499, + 506, + 514 + ], + "spans": [ + { + "bbox": [ + 114, + 501, + 405, + 514 + ], + "score": 1.0, + "content": "suggests that deep ReLU networks can be learned with network width", + "type": "text" + }, + { + "bbox": [ + 406, + 499, + 450, + 513 + ], + "score": 0.93, + "content": "\\bar { m } = \\widetilde { \\Omega } ( 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 501, + 506, + 514 + ], + "score": 1.0, + "content": ", which has a", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 115, + 513, + 505, + 525 + ], + "spans": [ + { + "bbox": [ + 115, + 513, + 291, + 525 + ], + "score": 1.0, + "content": "logarithmic dependence on the target error", + "type": "text" + }, + { + "bbox": [ + 291, + 515, + 297, + 522 + ], + "score": 0.65, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 513, + 364, + 525 + ], + "score": 1.0, + "content": "and sample size", + "type": "text" + }, + { + "bbox": [ + 365, + 514, + 372, + 522 + ], + "score": 0.64, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 513, + 505, + 525 + ], + "score": 1.0, + "content": ". Compared with existing results", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 115, + 523, + 505, + 536 + ], + "spans": [ + { + "bbox": [ + 115, + 523, + 505, + 536 + ], + "score": 1.0, + "content": "(Cao and Gu, 2020; Ji and Telgarsky, 2020) which require all training data points to be separated", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 115, + 535, + 505, + 546 + ], + "spans": [ + { + "bbox": [ + 115, + 535, + 505, + 546 + ], + "score": 1.0, + "content": "in the NTK regime, our result is stronger since it allows the NTRF function class to misclassify a", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 115, + 545, + 266, + 558 + ], + "spans": [ + { + "bbox": [ + 115, + 545, + 266, + 558 + ], + "score": 1.0, + "content": "small proportion of the training data.", + "type": "text" + } + ], + "index": 38, + "is_list_end_line": true + } + ], + "index": 28, + "bbox_fs": [ + 106, + 297, + 506, + 558 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 568, + 505, + 613 + ], + "lines": [ + { + "bbox": [ + 105, + 567, + 506, + 581 + ], + "spans": [ + { + "bbox": [ + 105, + 567, + 506, + 581 + ], + "score": 1.0, + "content": "For the ease of comparison, we summarize our results along with the most related previous results in", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 579, + 506, + 592 + ], + "spans": [ + { + "bbox": [ + 105, + 579, + 506, + 592 + ], + "score": 1.0, + "content": "Table 1, in terms of data assumption, the over-parameterization condition and sample complexity.", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 590, + 505, + 603 + ], + "spans": [ + { + "bbox": [ + 105, + 590, + 505, + 603 + ], + "score": 1.0, + "content": "It can be seen that under data separation assumption (See Sections 4.1, 4.2), our result improves", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 601, + 506, + 614 + ], + "spans": [ + { + "bbox": [ + 105, + 601, + 410, + 614 + ], + "score": 1.0, + "content": "existing results for learning deep neural networks by only requiring a polylog", + "type": "text" + }, + { + "bbox": [ + 411, + 601, + 443, + 614 + ], + "score": 0.79, + "content": "( n , \\epsilon ^ { - 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 601, + 506, + 614 + ], + "score": 1.0, + "content": "network width.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 40.5, + "bbox_fs": [ + 105, + 567, + 506, + 614 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 618, + 505, + 663 + ], + "lines": [ + { + "bbox": [ + 104, + 616, + 504, + 632 + ], + "spans": [ + { + "bbox": [ + 104, + 616, + 213, + 632 + ], + "score": 1.0, + "content": "Notation. For two scalars", + "type": "text" + }, + { + "bbox": [ + 213, + 621, + 220, + 628 + ], + "score": 0.73, + "content": "a", + "type": "inline_equation" + }, + { + "bbox": [ + 220, + 616, + 238, + 632 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 238, + 619, + 244, + 629 + ], + "score": 0.71, + "content": "b", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 616, + 291, + 632 + ], + "score": 1.0, + "content": ", we denote", + "type": "text" + }, + { + "bbox": [ + 291, + 618, + 367, + 630 + ], + "score": 0.9, + "content": "a \\wedge b = \\operatorname* { m i n } \\{ a , b \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 367, + 616, + 422, + 632 + ], + "score": 1.0, + "content": ". For a vector", + "type": "text" + }, + { + "bbox": [ + 423, + 617, + 452, + 629 + ], + "score": 0.9, + "content": "\\mathbf { x } \\in \\mathbb { R } ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 452, + 616, + 484, + 632 + ], + "score": 1.0, + "content": "we use", + "type": "text" + }, + { + "bbox": [ + 484, + 618, + 504, + 631 + ], + "score": 0.91, + "content": "\\| \\mathbf { x } \\| _ { 2 }", + "type": "inline_equation" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 629, + 505, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 629, + 282, + 641 + ], + "score": 1.0, + "content": "to denote its Euclidean norm. For a matrix", + "type": "text" + }, + { + "bbox": [ + 282, + 630, + 292, + 639 + ], + "score": 0.65, + "content": "\\mathbf { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 629, + 327, + 641 + ], + "score": 1.0, + "content": ", we use", + "type": "text" + }, + { + "bbox": [ + 327, + 630, + 349, + 641 + ], + "score": 0.91, + "content": "\\lVert \\mathbf { X } \\rVert _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 350, + 629, + 369, + 641 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 369, + 630, + 393, + 641 + ], + "score": 0.92, + "content": "\\| \\mathbf { X } \\| _ { F }", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 629, + 505, + 641 + ], + "score": 1.0, + "content": "to denote its spectral norm", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 640, + 506, + 653 + ], + "spans": [ + { + "bbox": [ + 105, + 640, + 299, + 653 + ], + "score": 1.0, + "content": "and Frobenius norm respectively, and denote by", + "type": "text" + }, + { + "bbox": [ + 300, + 641, + 317, + 653 + ], + "score": 0.91, + "content": "\\mathbf { X } _ { i j }", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 640, + 366, + 653 + ], + "score": 1.0, + "content": "the entry of", + "type": "text" + }, + { + "bbox": [ + 367, + 641, + 376, + 650 + ], + "score": 0.72, + "content": "\\mathbf { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 377, + 640, + 402, + 653 + ], + "score": 1.0, + "content": "at the", + "type": "text" + }, + { + "bbox": [ + 402, + 641, + 407, + 650 + ], + "score": 0.77, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 640, + 453, + 653 + ], + "score": 1.0, + "content": "-th row and ř", + "type": "text" + }, + { + "bbox": [ + 454, + 641, + 460, + 651 + ], + "score": 0.82, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 640, + 506, + 653 + ], + "score": 1.0, + "content": "-th column.", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 650, + 474, + 665 + ], + "spans": [ + { + "bbox": [ + 105, + 650, + 186, + 665 + ], + "score": 1.0, + "content": "Given two matrices", + "type": "text" + }, + { + "bbox": [ + 187, + 651, + 196, + 661 + ], + "score": 0.47, + "content": "\\mathbf { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 197, + 650, + 214, + 665 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 215, + 651, + 225, + 661 + ], + "score": 0.62, + "content": "\\mathbf { Y }", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 650, + 373, + 665 + ], + "score": 1.0, + "content": "with the same dimension, we denote", + "type": "text" + }, + { + "bbox": [ + 374, + 651, + 470, + 665 + ], + "score": 0.94, + "content": "\\begin{array} { r } { \\langle { \\bf X } , { \\bf Y } \\rangle = \\sum _ { i , j } { \\bf X } _ { i j } \\mathbf { \\bar { Y } } _ { i j } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 470, + 650, + 474, + 665 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 44.5, + "bbox_fs": [ + 104, + 616, + 506, + 665 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 671, + 505, + 734 + ], + "lines": [ + { + "bbox": [ + 104, + 668, + 506, + 686 + ], + "spans": [ + { + "bbox": [ + 104, + 668, + 232, + 686 + ], + "score": 1.0, + "content": "Given a collection of matrices", + "type": "text" + }, + { + "bbox": [ + 233, + 670, + 393, + 685 + ], + "score": 0.91, + "content": "\\mathbf { W } = \\left\\{ \\mathbf { W } _ { 1 } , \\cdots , \\mathbf { W } _ { L } \\right\\} \\in \\bigotimes _ { l = 1 } ^ { L } \\mathbb { R } ^ { m _ { l } \\times m _ { l } ^ { \\prime } }", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 668, + 456, + 686 + ], + "score": 1.0, + "content": "and a function", + "type": "text" + }, + { + "bbox": [ + 457, + 672, + 483, + 684 + ], + "score": 0.92, + "content": "f ( \\mathbf { W } )", + "type": "inline_equation" + }, + { + "bbox": [ + 483, + 668, + 506, + 686 + ], + "score": 1.0, + "content": "over", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 682, + 506, + 699 + ], + "spans": [ + { + "bbox": [ + 106, + 683, + 162, + 698 + ], + "score": 0.92, + "content": "\\otimes _ { l = 1 } ^ { L } \\mathbb { R } ^ { m _ { l } \\times m _ { l } ^ { \\prime } }", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 682, + 218, + 699 + ], + "score": 1.0, + "content": ", we define by", + "type": "text" + }, + { + "bbox": [ + 219, + 685, + 266, + 697 + ], + "score": 0.92, + "content": "\\nabla _ { \\mathbf { W } _ { l } } f ( \\mathbf { W } )", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 682, + 354, + 699 + ], + "score": 1.0, + "content": "the partial gradient of", + "type": "text" + }, + { + "bbox": [ + 355, + 685, + 381, + 697 + ], + "score": 0.9, + "content": "f ( \\mathbf { W } )", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 682, + 442, + 699 + ], + "score": 1.0, + "content": "with respect to", + "type": "text" + }, + { + "bbox": [ + 443, + 685, + 459, + 696 + ], + "score": 0.88, + "content": "\\mathbf { W } _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 459, + 682, + 506, + 699 + ], + "score": 1.0, + "content": "and denote(", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 106, + 695, + 503, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 697, + 234, + 710 + ], + "score": 0.9, + "content": "\\nabla _ { \\mathbf { W } } f ( \\mathbf { W } ) = \\{ \\nabla _ { \\mathbf { W } _ { l } } f ( \\mathbf { W } ) \\} _ { l = 1 } ^ { L }", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 695, + 303, + 712 + ], + "score": 1.0, + "content": ". We also denote", + "type": "text" + }, + { + "bbox": [ + 304, + 697, + 503, + 710 + ], + "score": 0.88, + "content": "\\begin{array} { r } { \\mathbf { \\Theta } \\mathcal { B } ( \\mathbf { W } , \\tau ) = \\left\\{ \\mathbf { W } ^ { \\prime } : \\operatorname* { m a x } _ { l \\in [ L ] } \\| \\mathbf { W } _ { l } ^ { \\prime } - \\mathbf { W } _ { l } \\| _ { F } \\leqslant \\tau \\right\\} } \\end{array}", + "type": "inline_equation" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 708, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 121, + 722 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 121, + 711, + 149, + 720 + ], + "score": 0.86, + "content": "\\tau \\geqslant 0", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 708, + 282, + 722 + ], + "score": 1.0, + "content": ". For two collection of matrices ř ř", + "type": "text" + }, + { + "bbox": [ + 282, + 710, + 367, + 721 + ], + "score": 0.84, + "content": "\\mathbf { A } = \\left\\{ \\mathbf { A } _ { 1 } , \\cdots , \\mathbf { A } _ { n } \\right\\}", + "type": "inline_equation" + }, + { + "bbox": [ + 367, + 708, + 372, + 722 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 372, + 710, + 455, + 722 + ], + "score": 0.9, + "content": "\\mathbf { B } = \\{ \\mathbf { B } _ { 1 } , \\cdots , \\mathbf { B } _ { n } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 456, + 708, + 505, + 722 + ], + "score": 1.0, + "content": ", we denote", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 106, + 718, + 321, + 735 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 209, + 733 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\langle \\mathbf { A } , \\mathbf { B } \\rangle = \\sum _ { i = 1 } ^ { n } \\langle \\mathbf { A } _ { i } , \\mathbf { B } _ { i } \\rangle } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 718, + 227, + 735 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 228, + 720, + 316, + 734 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\| \\mathbf { A } \\| _ { F } ^ { 2 } = \\sum _ { i = 1 } ^ { n } \\| \\mathbf { A } _ { i } \\| _ { F } ^ { 2 } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 316, + 718, + 321, + 735 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 51 + } + ], + "index": 49, + "bbox_fs": [ + 104, + 668, + 506, + 735 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 110, + 109, + 501, + 208 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 104, + 82, + 504, + 105 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Table 1: Comparison of neural network learning results in terms of over-parameterization condition", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 501, + 105 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 225, + 105 + ], + "score": 1.0, + "content": "and sample complexity. Here", + "type": "text" + }, + { + "bbox": [ + 226, + 95, + 231, + 103 + ], + "score": 0.65, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 93, + 322, + 105 + ], + "score": 1.0, + "content": "is the target error rate,", + "type": "text" + }, + { + "bbox": [ + 323, + 95, + 330, + 103 + ], + "score": 0.74, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 93, + 406, + 105 + ], + "score": 1.0, + "content": "is the sample size,", + "type": "text" + }, + { + "bbox": [ + 406, + 93, + 414, + 103 + ], + "score": 0.77, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 415, + 93, + 501, + 105 + ], + "score": 1.0, + "content": "is the network depth.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "table_body", + "bbox": [ + 110, + 109, + 501, + 208 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 110, + 109, + 501, + 208 + ], + "spans": [ + { + "bbox": [ + 110, + 109, + 501, + 208 + ], + "score": 0.98, + "html": "
AssumptionsAlgorithmOver-para. ConditionSample ComplexityNetwork
Zou et al. (2019)Data nondegenerationGDΩ(n¹2L16(n² + e−1))Deep
This paper Data nondegenerationGDΩ2(L22n12)Deep
Cao and Gu (2020)Data separationGD(e-14).2(L)(-4).eO(L)Deep
Ji and Telgarsky (2020)Data separationGDpolylog(n,∈−1)(-2)Shallow
This paper Data separationGD polylog(n,∈-1) · poly(L)O(e-2). eO(L) Deep
Cao and Gu (2019)Data separationSGDΩ2(∈-14) · poly(L)(∈−²) · poly(L)Deep
Ji and Telgarsky (2020)Data separationSGDpolylog(∈-i)0(-1)Shallow
This paper Data separation SGD polylog(∈−1) · poly(L)O(e−1) · poly(L)Deep
", + "type": "table", + "image_path": "76bc855a908c40fb169e8da23013d9d6d80b7fa623827d6a85b0e1022ce515cd.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 110, + 109, + 501, + 142.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 110, + 142.0, + 501, + 175.0 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 110, + 175.0, + 501, + 208.0 + ], + "spans": [], + "index": 4 + } + ] + } + ], + "index": 1.75 + }, + { + "type": "title", + "bbox": [ + 107, + 217, + 336, + 228 + ], + "lines": [ + { + "bbox": [ + 105, + 216, + 336, + 230 + ], + "spans": [ + { + "bbox": [ + 105, + 216, + 336, + 230 + ], + "score": 1.0, + "content": "Algorithm 1 Gradient descent with random initialization", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 113, + 232, + 498, + 291 + ], + "lines": [ + { + "bbox": [ + 114, + 230, + 493, + 246 + ], + "spans": [ + { + "bbox": [ + 114, + 230, + 232, + 246 + ], + "score": 1.0, + "content": "Input: Number of iterations", + "type": "text" + }, + { + "bbox": [ + 232, + 233, + 240, + 243 + ], + "score": 0.76, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 241, + 230, + 280, + 246 + ], + "score": 1.0, + "content": ", step size", + "type": "text" + }, + { + "bbox": [ + 281, + 235, + 288, + 244 + ], + "score": 0.75, + "content": "\\eta", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 230, + 338, + 246 + ], + "score": 1.0, + "content": ", training set", + "type": "text" + }, + { + "bbox": [ + 338, + 232, + 411, + 245 + ], + "score": 0.91, + "content": "S = \\left\\{ ( \\mathbf { x } _ { i } , y _ { i } ) _ { i = 1 } ^ { n } \\right\\}", + "type": "inline_equation" + }, + { + "bbox": [ + 412, + 230, + 493, + 246 + ], + "score": 1.0, + "content": ", initialization Wp0q", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 115, + 242, + 209, + 255 + ], + "spans": [ + { + "bbox": [ + 115, + 242, + 131, + 255 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 132, + 244, + 194, + 254 + ], + "score": 0.72, + "content": "t = 1 , 2 , \\dots , T", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 242, + 209, + 255 + ], + "score": 1.0, + "content": "do", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 124, + 252, + 325, + 267 + ], + "spans": [ + { + "bbox": [ + 124, + 252, + 158, + 267 + ], + "score": 1.0, + "content": "Update", + "type": "text" + }, + { + "bbox": [ + 158, + 254, + 322, + 267 + ], + "score": 0.86, + "content": "\\mathbf { W } ^ { ( t ) } = \\mathbf { W } ^ { ( t - 1 ) } - \\eta \\cdot \\nabla _ { \\mathbf { W } } L _ { S } ( \\mathbf { W } ^ { ( t - 1 ) } ) .", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 252, + 325, + 267 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 115, + 264, + 151, + 277 + ], + "spans": [ + { + "bbox": [ + 115, + 264, + 151, + 277 + ], + "score": 1.0, + "content": "end for", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 114, + 274, + 229, + 289 + ], + "spans": [ + { + "bbox": [ + 114, + 274, + 154, + 289 + ], + "score": 1.0, + "content": "Output:", + "type": "text" + }, + { + "bbox": [ + 154, + 275, + 225, + 288 + ], + "score": 0.87, + "content": "\\mathbf { W } ^ { ( 0 ) } , \\ldots , \\mathbf { W } ^ { ( T ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 274, + 229, + 289 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 106, + 309, + 506, + 371 + ], + "lines": [ + { + "bbox": [ + 106, + 310, + 506, + 324 + ], + "spans": [ + { + "bbox": [ + 106, + 310, + 195, + 324 + ], + "score": 1.0, + "content": "Given two sequences", + "type": "text" + }, + { + "bbox": [ + 196, + 311, + 217, + 322 + ], + "score": 0.91, + "content": "\\left\\{ x _ { n } \\right\\}", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 310, + 236, + 324 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 236, + 311, + 256, + 322 + ], + "score": 0.9, + "content": "\\left\\{ y _ { n } \\right\\}", + "type": "inline_equation" + }, + { + "bbox": [ + 256, + 310, + 305, + 324 + ], + "score": 1.0, + "content": ", we denote", + "type": "text" + }, + { + "bbox": [ + 305, + 311, + 358, + 323 + ], + "score": 0.93, + "content": "x _ { n } = \\mathcal { O } ( y _ { n } )", + "type": "inline_equation" + }, + { + "bbox": [ + 358, + 310, + 369, + 324 + ], + "score": 1.0, + "content": "if", + "type": "text" + }, + { + "bbox": [ + 369, + 311, + 428, + 323 + ], + "score": 0.93, + "content": "| x _ { n } | \\leqslant C _ { 1 } | y _ { n } |", + "type": "inline_equation" + }, + { + "bbox": [ + 429, + 310, + 506, + 324 + ], + "score": 1.0, + "content": "for some absolute", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 321, + 506, + 334 + ], + "spans": [ + { + "bbox": [ + 105, + 322, + 178, + 334 + ], + "score": 1.0, + "content": "positive constant", + "type": "text" + }, + { + "bbox": [ + 178, + 322, + 191, + 333 + ], + "score": 0.82, + "content": "C _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 322, + 195, + 334 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 195, + 322, + 249, + 334 + ], + "score": 0.91, + "content": "x _ { n } = \\Omega ( y _ { n } )", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 322, + 259, + 334 + ], + "score": 1.0, + "content": "if", + "type": "text" + }, + { + "bbox": [ + 260, + 321, + 321, + 334 + ], + "score": 0.93, + "content": "| x _ { n } | \\geqslant C _ { 2 } | y _ { n } |", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 322, + 470, + 334 + ], + "score": 1.0, + "content": "for some absolute positive constant", + "type": "text" + }, + { + "bbox": [ + 470, + 322, + 483, + 333 + ], + "score": 0.88, + "content": "C _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 483, + 322, + 506, + 334 + ], + "score": 1.0, + "content": ", and", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 333, + 505, + 347 + ], + "spans": [ + { + "bbox": [ + 106, + 334, + 158, + 347 + ], + "score": 0.91, + "content": "x _ { n } = \\Theta ( y _ { n } )", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 334, + 168, + 347 + ], + "score": 1.0, + "content": "if", + "type": "text" + }, + { + "bbox": [ + 168, + 334, + 267, + 347 + ], + "score": 0.92, + "content": "C _ { 3 } | y _ { n } | \\leqslant | x _ { n } | \\leqslant C _ { 4 } | y _ { n } |", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 334, + 381, + 347 + ], + "score": 1.0, + "content": "for some absolute constants", + "type": "text" + }, + { + "bbox": [ + 381, + 335, + 429, + 347 + ], + "score": 0.92, + "content": "C _ { 3 } , C _ { 4 } > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 429, + 334, + 482, + 347 + ], + "score": 1.0, + "content": ". We also use", + "type": "text" + }, + { + "bbox": [ + 483, + 333, + 502, + 347 + ], + "score": 0.91, + "content": "\\tilde { \\mathcal { O } } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 334, + 505, + 347 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 107, + 346, + 504, + 362 + ], + "spans": [ + { + "bbox": [ + 107, + 346, + 125, + 360 + ], + "score": 0.9, + "content": "\\widetilde { \\Omega } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 126, + 346, + 240, + 362 + ], + "score": 1.0, + "content": "to hide logarithmic factors in", + "type": "text" + }, + { + "bbox": [ + 240, + 348, + 259, + 360 + ], + "score": 0.91, + "content": "\\mathcal { O } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 260, + 346, + 276, + 362 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 277, + 348, + 295, + 360 + ], + "score": 0.89, + "content": "\\Omega ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 295, + 346, + 442, + 362 + ], + "score": 1.0, + "content": "respectively. Additionally, we denote", + "type": "text" + }, + { + "bbox": [ + 442, + 348, + 504, + 360 + ], + "score": 0.91, + "content": "x _ { n } = \\operatorname { p o l y } ( y _ { n } )", + "type": "inline_equation" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 358, + 477, + 372 + ], + "spans": [ + { + "bbox": [ + 105, + 358, + 115, + 372 + ], + "score": 1.0, + "content": "if", + "type": "text" + }, + { + "bbox": [ + 115, + 358, + 169, + 371 + ], + "score": 0.93, + "content": "\\dot { x _ { n } } = \\mathcal { O } ( y _ { n } ^ { D } )", + "type": "inline_equation" + }, + { + "bbox": [ + 169, + 358, + 277, + 372 + ], + "score": 1.0, + "content": "for some positive constant", + "type": "text" + }, + { + "bbox": [ + 277, + 360, + 287, + 369 + ], + "score": 0.83, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 287, + 358, + 307, + 372 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 308, + 359, + 382, + 371 + ], + "score": 0.92, + "content": "x _ { n } = { \\mathrm { p o l y l o g } } ( y _ { n } )", + "type": "inline_equation" + }, + { + "bbox": [ + 382, + 358, + 392, + 372 + ], + "score": 1.0, + "content": "if", + "type": "text" + }, + { + "bbox": [ + 392, + 360, + 473, + 371 + ], + "score": 0.91, + "content": "x _ { n } = \\mathrm { p o l y } ( \\log ( y _ { n } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 473, + 358, + 477, + 372 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13 + }, + { + "type": "title", + "bbox": [ + 107, + 387, + 389, + 399 + ], + "lines": [ + { + "bbox": [ + 105, + 385, + 390, + 401 + ], + "spans": [ + { + "bbox": [ + 105, + 385, + 390, + 401 + ], + "score": 1.0, + "content": "2 PRELIMINARIES ON LEARNING NEURAL NETWORKS", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 105, + 410, + 505, + 433 + ], + "lines": [ + { + "bbox": [ + 105, + 410, + 505, + 423 + ], + "spans": [ + { + "bbox": [ + 105, + 410, + 505, + 423 + ], + "score": 1.0, + "content": "In this section, we introduce the problem setting in this paper, including definitions of the neural", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 421, + 506, + 434 + ], + "spans": [ + { + "bbox": [ + 105, + 421, + 506, + 434 + ], + "score": 1.0, + "content": "network and loss functions, and the training algorithms, i.e., GD and SGD with random initialization.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5 + }, + { + "type": "text", + "bbox": [ + 105, + 437, + 505, + 461 + ], + "lines": [ + { + "bbox": [ + 105, + 437, + 506, + 452 + ], + "spans": [ + { + "bbox": [ + 105, + 437, + 275, + 452 + ], + "score": 1.0, + "content": "Neural network function. Given an input", + "type": "text" + }, + { + "bbox": [ + 276, + 438, + 306, + 449 + ], + "score": 0.91, + "content": "\\mathbf { x } \\in \\mathbb { R } ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 437, + 506, + 452 + ], + "score": 1.0, + "content": ", the output of deep fully-connected ReLU network", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 448, + 194, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 194, + 462 + ], + "score": 1.0, + "content": "is defined as follows,", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5 + }, + { + "type": "interline_equation", + "bbox": [ + 209, + 462, + 401, + 477 + ], + "lines": [ + { + "bbox": [ + 209, + 462, + 401, + 477 + ], + "spans": [ + { + "bbox": [ + 209, + 462, + 401, + 477 + ], + "score": 0.9, + "content": "f _ { \\mathbf { W } } ( \\mathbf { x } ) = m ^ { 1 / 2 } \\mathbf { W } _ { L } \\sigma ( \\mathbf { W } _ { L - 1 } \\cdot \\cdot \\cdot \\sigma ( \\mathbf { W } _ { 1 } \\mathbf { x } ) \\cdot \\cdot \\cdot ) ,", + "type": "interline_equation", + "image_path": "59b14f536d1c0635a48dade664bf302e1671dcf348497dc3ee23798346e750ff.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 209, + 462, + 401, + 477 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 480, + 506, + 538 + ], + "lines": [ + { + "bbox": [ + 104, + 478, + 506, + 495 + ], + "spans": [ + { + "bbox": [ + 104, + 478, + 133, + 495 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 481, + 186, + 493 + ], + "score": 0.85, + "content": "\\mathbf { W } _ { 1 } \\in \\mathbb { R } ^ { m \\times d }", + "type": "inline_equation" + }, + { + "bbox": [ + 186, + 478, + 190, + 495 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 190, + 481, + 299, + 493 + ], + "score": 0.71, + "content": "\\mathbf { W } _ { 2 } , \\cdots , \\mathbf { W } _ { L - 1 } \\in \\mathbb { R } ^ { m \\times m } ,", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 478, + 302, + 495 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 302, + 481, + 356, + 493 + ], + "score": 0.89, + "content": "\\mathbf { W } _ { L } \\in \\mathbb { R } ^ { 1 \\times m }", + "type": "inline_equation" + }, + { + "bbox": [ + 356, + 478, + 376, + 495 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 377, + 482, + 453, + 494 + ], + "score": 0.95, + "content": "\\sigma ( x ) = \\operatorname* { m a x } \\{ 0 , x \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 454, + 478, + 506, + 495 + ], + "score": 1.0, + "content": "is the ReLU", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 492, + 506, + 506 + ], + "spans": [ + { + "bbox": [ + 105, + 492, + 493, + 506 + ], + "score": 1.0, + "content": "activation function. Here, without loss of generality, we assume the width of each layer is equal to", + "type": "text" + }, + { + "bbox": [ + 493, + 495, + 503, + 503 + ], + "score": 0.72, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 492, + 506, + 506 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 501, + 506, + 518 + ], + "spans": [ + { + "bbox": [ + 105, + 501, + 506, + 518 + ], + "score": 1.0, + "content": "Yet our theoretical results can be easily generalized to the setting with unequal width layers, as long", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 514, + 505, + 527 + ], + "spans": [ + { + "bbox": [ + 106, + 514, + 505, + 527 + ], + "score": 1.0, + "content": "as the smallest width satisfies our overparameterization condition. We denote the collection of all", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 524, + 279, + 539 + ], + "spans": [ + { + "bbox": [ + 105, + 524, + 183, + 539 + ], + "score": 1.0, + "content": "weight matrices as", + "type": "text" + }, + { + "bbox": [ + 183, + 525, + 274, + 538 + ], + "score": 0.92, + "content": "\\mathbf { W } = \\{ \\mathbf { W } _ { 1 } , \\dots , \\mathbf { W } _ { L } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 524, + 279, + 539 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 106, + 542, + 504, + 565 + ], + "lines": [ + { + "bbox": [ + 104, + 540, + 502, + 557 + ], + "spans": [ + { + "bbox": [ + 104, + 540, + 259, + 557 + ], + "score": 1.0, + "content": "Loss function. Given training dataset", + "type": "text" + }, + { + "bbox": [ + 259, + 542, + 321, + 555 + ], + "score": 0.92, + "content": "\\{ \\mathbf { x } _ { i } , y _ { i } \\} _ { i = 1 , \\ldots , n }", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 540, + 364, + 557 + ], + "score": 1.0, + "content": "with input", + "type": "text" + }, + { + "bbox": [ + 365, + 542, + 398, + 554 + ], + "score": 0.92, + "content": "\\mathbf { x } _ { i } \\in \\mathbb { R } ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 398, + 540, + 443, + 557 + ], + "score": 1.0, + "content": "and output", + "type": "text" + }, + { + "bbox": [ + 444, + 542, + 502, + 555 + ], + "score": 0.92, + "content": "y _ { i } \\in \\left\\{ - 1 , + 1 \\right\\}", + "type": "inline_equation" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 553, + 260, + 567 + ], + "spans": [ + { + "bbox": [ + 106, + 553, + 260, + 567 + ], + "score": 1.0, + "content": "we define the training loss function as", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5 + }, + { + "type": "interline_equation", + "bbox": [ + 252, + 568, + 357, + 599 + ], + "lines": [ + { + "bbox": [ + 252, + 568, + 357, + 599 + ], + "spans": [ + { + "bbox": [ + 252, + 568, + 357, + 599 + ], + "score": 0.94, + "content": "L _ { S } ( \\mathbf { W } ) = \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } L _ { i } ( \\mathbf { W } ) ,", + "type": "interline_equation", + "image_path": "5ed9a3edccf63c4b2b6eb169a0788bf5bb64b73bfcc7060d91ebdbf58cb0498e.jpg" + } + ] + } + ], + "index": 29.5, + "virtual_lines": [ + { + "bbox": [ + 252, + 568, + 357, + 583.5 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 252, + 583.5, + 357, + 599.0 + ], + "spans": [], + "index": 30 + } + ] + }, + { + "type": "text", + "bbox": [ + 104, + 602, + 500, + 616 + ], + "lines": [ + { + "bbox": [ + 106, + 601, + 500, + 617 + ], + "spans": [ + { + "bbox": [ + 106, + 601, + 132, + 617 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 602, + 355, + 616 + ], + "score": 0.9, + "content": "L _ { i } ( \\mathbf { W } ) = \\ell \\big ( y _ { i } f _ { \\mathbf { W } } ( \\mathbf { x } _ { i } ) \\big ) = \\log \\big ( 1 + \\exp ( - y _ { i } f _ { \\mathbf { W } } ( \\mathbf { x } _ { i } ) ) \\big )", + "type": "inline_equation" + }, + { + "bbox": [ + 356, + 601, + 500, + 617 + ], + "score": 1.0, + "content": "is defined as the cross-entropy loss.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 106, + 619, + 505, + 683 + ], + "lines": [ + { + "bbox": [ + 106, + 620, + 506, + 632 + ], + "spans": [ + { + "bbox": [ + 106, + 620, + 506, + 632 + ], + "score": 1.0, + "content": "Algorithms. We consider both GD and SGD with Gaussian random initialization. These two algo-", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 103, + 629, + 504, + 649 + ], + "spans": [ + { + "bbox": [ + 103, + 629, + 456, + 649 + ], + "score": 1.0, + "content": "rithms are displayed in Algorithms 1 and 2 respectively. Specifically, the entries in Wp0q1 ,", + "type": "text" + }, + { + "bbox": [ + 429, + 631, + 504, + 646 + ], + "score": 0.88, + "content": "\\mathbf { W } _ { 1 } ^ { ( 0 ) } , \\cdots , \\mathbf { W } _ { L - 1 } ^ { ( 0 ) }", + "type": "inline_equation" + } + ], + "index": 33 + }, + { + "bbox": [ + 102, + 644, + 509, + 666 + ], + "spans": [ + { + "bbox": [ + 102, + 644, + 509, + 666 + ], + "score": 1.0, + "content": "are generated independently from univariate Gaussian distribution N p0, 2{mq and the entries in Wp0qL", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 660, + 506, + 672 + ], + "spans": [ + { + "bbox": [ + 105, + 660, + 242, + 672 + ], + "score": 1.0, + "content": "are generated independently from", + "type": "text" + }, + { + "bbox": [ + 242, + 660, + 287, + 672 + ], + "score": 0.93, + "content": "N ( 0 , 1 / m )", + "type": "inline_equation" + }, + { + "bbox": [ + 287, + 660, + 506, + 672 + ], + "score": 1.0, + "content": ". For GD, we consider using the full gradient to update", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 671, + 439, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 671, + 439, + 684 + ], + "score": 1.0, + "content": "the model parameters. For SGD, we use a new training data point in each iteration.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 107, + 687, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 686, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 686, + 505, + 700 + ], + "score": 1.0, + "content": "Note that our initialization method in Algorithms 1, 2 is the same as the widely used He initialization", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "(He et al., 2015). Our neural network parameterization is also consistent with the parameterization", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "used in prior work on NTK (Jacot et al., 2018; Allen-Zhu et al., 2019b; Du et al., 2019a; Arora et al.,", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 719, + 218, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 719, + 218, + 732 + ], + "score": 1.0, + "content": "2019b; Cao and Gu, 2019).", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 38.5 + } + ], + "page_idx": 2, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "score": 1.0, + "content": "3", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 110, + 109, + 501, + 208 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 104, + 82, + 504, + 105 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Table 1: Comparison of neural network learning results in terms of over-parameterization condition", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 501, + 105 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 225, + 105 + ], + "score": 1.0, + "content": "and sample complexity. Here", + "type": "text" + }, + { + "bbox": [ + 226, + 95, + 231, + 103 + ], + "score": 0.65, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 93, + 322, + 105 + ], + "score": 1.0, + "content": "is the target error rate,", + "type": "text" + }, + { + "bbox": [ + 323, + 95, + 330, + 103 + ], + "score": 0.74, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 93, + 406, + 105 + ], + "score": 1.0, + "content": "is the sample size,", + "type": "text" + }, + { + "bbox": [ + 406, + 93, + 414, + 103 + ], + "score": 0.77, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 415, + 93, + 501, + 105 + ], + "score": 1.0, + "content": "is the network depth.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "table_body", + "bbox": [ + 110, + 109, + 501, + 208 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 110, + 109, + 501, + 208 + ], + "spans": [ + { + "bbox": [ + 110, + 109, + 501, + 208 + ], + "score": 0.98, + "html": "
AssumptionsAlgorithmOver-para. ConditionSample ComplexityNetwork
Zou et al. (2019)Data nondegenerationGDΩ(n¹2L16(n² + e−1))Deep
This paper Data nondegenerationGDΩ2(L22n12)Deep
Cao and Gu (2020)Data separationGD(e-14).2(L)(-4).eO(L)Deep
Ji and Telgarsky (2020)Data separationGDpolylog(n,∈−1)(-2)Shallow
This paper Data separationGD polylog(n,∈-1) · poly(L)O(e-2). eO(L) Deep
Cao and Gu (2019)Data separationSGDΩ2(∈-14) · poly(L)(∈−²) · poly(L)Deep
Ji and Telgarsky (2020)Data separationSGDpolylog(∈-i)0(-1)Shallow
This paper Data separation SGD polylog(∈−1) · poly(L)O(e−1) · poly(L)Deep
", + "type": "table", + "image_path": "76bc855a908c40fb169e8da23013d9d6d80b7fa623827d6a85b0e1022ce515cd.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 110, + 109, + 501, + 142.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 110, + 142.0, + 501, + 175.0 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 110, + 175.0, + 501, + 208.0 + ], + "spans": [], + "index": 4 + } + ] + } + ], + "index": 1.75 + }, + { + "type": "title", + "bbox": [ + 107, + 217, + 336, + 228 + ], + "lines": [ + { + "bbox": [ + 105, + 216, + 336, + 230 + ], + "spans": [ + { + "bbox": [ + 105, + 216, + 336, + 230 + ], + "score": 1.0, + "content": "Algorithm 1 Gradient descent with random initialization", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "list", + "bbox": [ + 113, + 232, + 498, + 291 + ], + "lines": [ + { + "bbox": [ + 114, + 230, + 493, + 246 + ], + "spans": [ + { + "bbox": [ + 114, + 230, + 232, + 246 + ], + "score": 1.0, + "content": "Input: Number of iterations", + "type": "text" + }, + { + "bbox": [ + 232, + 233, + 240, + 243 + ], + "score": 0.76, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 241, + 230, + 280, + 246 + ], + "score": 1.0, + "content": ", step size", + "type": "text" + }, + { + "bbox": [ + 281, + 235, + 288, + 244 + ], + "score": 0.75, + "content": "\\eta", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 230, + 338, + 246 + ], + "score": 1.0, + "content": ", training set", + "type": "text" + }, + { + "bbox": [ + 338, + 232, + 411, + 245 + ], + "score": 0.91, + "content": "S = \\left\\{ ( \\mathbf { x } _ { i } , y _ { i } ) _ { i = 1 } ^ { n } \\right\\}", + "type": "inline_equation" + }, + { + "bbox": [ + 412, + 230, + 493, + 246 + ], + "score": 1.0, + "content": ", initialization Wp0q", + "type": "text" + } + ], + "index": 6, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 242, + 209, + 255 + ], + "spans": [ + { + "bbox": [ + 115, + 242, + 131, + 255 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 132, + 244, + 194, + 254 + ], + "score": 0.72, + "content": "t = 1 , 2 , \\dots , T", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 242, + 209, + 255 + ], + "score": 1.0, + "content": "do", + "type": "text" + } + ], + "index": 7, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 124, + 252, + 325, + 267 + ], + "spans": [ + { + "bbox": [ + 124, + 252, + 158, + 267 + ], + "score": 1.0, + "content": "Update", + "type": "text" + }, + { + "bbox": [ + 158, + 254, + 322, + 267 + ], + "score": 0.86, + "content": "\\mathbf { W } ^ { ( t ) } = \\mathbf { W } ^ { ( t - 1 ) } - \\eta \\cdot \\nabla _ { \\mathbf { W } } L _ { S } ( \\mathbf { W } ^ { ( t - 1 ) } ) .", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 252, + 325, + 267 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 8, + "is_list_end_line": true + }, + { + "bbox": [ + 115, + 264, + 151, + 277 + ], + "spans": [ + { + "bbox": [ + 115, + 264, + 151, + 277 + ], + "score": 1.0, + "content": "end for", + "type": "text" + } + ], + "index": 9, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 114, + 274, + 229, + 289 + ], + "spans": [ + { + "bbox": [ + 114, + 274, + 154, + 289 + ], + "score": 1.0, + "content": "Output:", + "type": "text" + }, + { + "bbox": [ + 154, + 275, + 225, + 288 + ], + "score": 0.87, + "content": "\\mathbf { W } ^ { ( 0 ) } , \\ldots , \\mathbf { W } ^ { ( T ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 274, + 229, + 289 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 10, + "is_list_start_line": true, + "is_list_end_line": true + } + ], + "index": 8, + "bbox_fs": [ + 114, + 230, + 493, + 289 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 309, + 506, + 371 + ], + "lines": [ + { + "bbox": [ + 106, + 310, + 506, + 324 + ], + "spans": [ + { + "bbox": [ + 106, + 310, + 195, + 324 + ], + "score": 1.0, + "content": "Given two sequences", + "type": "text" + }, + { + "bbox": [ + 196, + 311, + 217, + 322 + ], + "score": 0.91, + "content": "\\left\\{ x _ { n } \\right\\}", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 310, + 236, + 324 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 236, + 311, + 256, + 322 + ], + "score": 0.9, + "content": "\\left\\{ y _ { n } \\right\\}", + "type": "inline_equation" + }, + { + "bbox": [ + 256, + 310, + 305, + 324 + ], + "score": 1.0, + "content": ", we denote", + "type": "text" + }, + { + "bbox": [ + 305, + 311, + 358, + 323 + ], + "score": 0.93, + "content": "x _ { n } = \\mathcal { O } ( y _ { n } )", + "type": "inline_equation" + }, + { + "bbox": [ + 358, + 310, + 369, + 324 + ], + "score": 1.0, + "content": "if", + "type": "text" + }, + { + "bbox": [ + 369, + 311, + 428, + 323 + ], + "score": 0.93, + "content": "| x _ { n } | \\leqslant C _ { 1 } | y _ { n } |", + "type": "inline_equation" + }, + { + "bbox": [ + 429, + 310, + 506, + 324 + ], + "score": 1.0, + "content": "for some absolute", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 321, + 506, + 334 + ], + "spans": [ + { + "bbox": [ + 105, + 322, + 178, + 334 + ], + "score": 1.0, + "content": "positive constant", + "type": "text" + }, + { + "bbox": [ + 178, + 322, + 191, + 333 + ], + "score": 0.82, + "content": "C _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 322, + 195, + 334 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 195, + 322, + 249, + 334 + ], + "score": 0.91, + "content": "x _ { n } = \\Omega ( y _ { n } )", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 322, + 259, + 334 + ], + "score": 1.0, + "content": "if", + "type": "text" + }, + { + "bbox": [ + 260, + 321, + 321, + 334 + ], + "score": 0.93, + "content": "| x _ { n } | \\geqslant C _ { 2 } | y _ { n } |", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 322, + 470, + 334 + ], + "score": 1.0, + "content": "for some absolute positive constant", + "type": "text" + }, + { + "bbox": [ + 470, + 322, + 483, + 333 + ], + "score": 0.88, + "content": "C _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 483, + 322, + 506, + 334 + ], + "score": 1.0, + "content": ", and", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 333, + 505, + 347 + ], + "spans": [ + { + "bbox": [ + 106, + 334, + 158, + 347 + ], + "score": 0.91, + "content": "x _ { n } = \\Theta ( y _ { n } )", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 334, + 168, + 347 + ], + "score": 1.0, + "content": "if", + "type": "text" + }, + { + "bbox": [ + 168, + 334, + 267, + 347 + ], + "score": 0.92, + "content": "C _ { 3 } | y _ { n } | \\leqslant | x _ { n } | \\leqslant C _ { 4 } | y _ { n } |", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 334, + 381, + 347 + ], + "score": 1.0, + "content": "for some absolute constants", + "type": "text" + }, + { + "bbox": [ + 381, + 335, + 429, + 347 + ], + "score": 0.92, + "content": "C _ { 3 } , C _ { 4 } > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 429, + 334, + 482, + 347 + ], + "score": 1.0, + "content": ". We also use", + "type": "text" + }, + { + "bbox": [ + 483, + 333, + 502, + 347 + ], + "score": 0.91, + "content": "\\tilde { \\mathcal { O } } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 334, + 505, + 347 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 107, + 346, + 504, + 362 + ], + "spans": [ + { + "bbox": [ + 107, + 346, + 125, + 360 + ], + "score": 0.9, + "content": "\\widetilde { \\Omega } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 126, + 346, + 240, + 362 + ], + "score": 1.0, + "content": "to hide logarithmic factors in", + "type": "text" + }, + { + "bbox": [ + 240, + 348, + 259, + 360 + ], + "score": 0.91, + "content": "\\mathcal { O } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 260, + 346, + 276, + 362 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 277, + 348, + 295, + 360 + ], + "score": 0.89, + "content": "\\Omega ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 295, + 346, + 442, + 362 + ], + "score": 1.0, + "content": "respectively. Additionally, we denote", + "type": "text" + }, + { + "bbox": [ + 442, + 348, + 504, + 360 + ], + "score": 0.91, + "content": "x _ { n } = \\operatorname { p o l y } ( y _ { n } )", + "type": "inline_equation" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 358, + 477, + 372 + ], + "spans": [ + { + "bbox": [ + 105, + 358, + 115, + 372 + ], + "score": 1.0, + "content": "if", + "type": "text" + }, + { + "bbox": [ + 115, + 358, + 169, + 371 + ], + "score": 0.93, + "content": "\\dot { x _ { n } } = \\mathcal { O } ( y _ { n } ^ { D } )", + "type": "inline_equation" + }, + { + "bbox": [ + 169, + 358, + 277, + 372 + ], + "score": 1.0, + "content": "for some positive constant", + "type": "text" + }, + { + "bbox": [ + 277, + 360, + 287, + 369 + ], + "score": 0.83, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 287, + 358, + 307, + 372 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 308, + 359, + 382, + 371 + ], + "score": 0.92, + "content": "x _ { n } = { \\mathrm { p o l y l o g } } ( y _ { n } )", + "type": "inline_equation" + }, + { + "bbox": [ + 382, + 358, + 392, + 372 + ], + "score": 1.0, + "content": "if", + "type": "text" + }, + { + "bbox": [ + 392, + 360, + 473, + 371 + ], + "score": 0.91, + "content": "x _ { n } = \\mathrm { p o l y } ( \\log ( y _ { n } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 473, + 358, + 477, + 372 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13, + "bbox_fs": [ + 105, + 310, + 506, + 372 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 387, + 389, + 399 + ], + "lines": [ + { + "bbox": [ + 105, + 385, + 390, + 401 + ], + "spans": [ + { + "bbox": [ + 105, + 385, + 390, + 401 + ], + "score": 1.0, + "content": "2 PRELIMINARIES ON LEARNING NEURAL NETWORKS", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 105, + 410, + 505, + 433 + ], + "lines": [ + { + "bbox": [ + 105, + 410, + 505, + 423 + ], + "spans": [ + { + "bbox": [ + 105, + 410, + 505, + 423 + ], + "score": 1.0, + "content": "In this section, we introduce the problem setting in this paper, including definitions of the neural", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 421, + 506, + 434 + ], + "spans": [ + { + "bbox": [ + 105, + 421, + 506, + 434 + ], + "score": 1.0, + "content": "network and loss functions, and the training algorithms, i.e., GD and SGD with random initialization.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5, + "bbox_fs": [ + 105, + 410, + 506, + 434 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 437, + 505, + 461 + ], + "lines": [ + { + "bbox": [ + 105, + 437, + 506, + 452 + ], + "spans": [ + { + "bbox": [ + 105, + 437, + 275, + 452 + ], + "score": 1.0, + "content": "Neural network function. Given an input", + "type": "text" + }, + { + "bbox": [ + 276, + 438, + 306, + 449 + ], + "score": 0.91, + "content": "\\mathbf { x } \\in \\mathbb { R } ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 437, + 506, + 452 + ], + "score": 1.0, + "content": ", the output of deep fully-connected ReLU network", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 448, + 194, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 194, + 462 + ], + "score": 1.0, + "content": "is defined as follows,", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5, + "bbox_fs": [ + 105, + 437, + 506, + 462 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 209, + 462, + 401, + 477 + ], + "lines": [ + { + "bbox": [ + 209, + 462, + 401, + 477 + ], + "spans": [ + { + "bbox": [ + 209, + 462, + 401, + 477 + ], + "score": 0.9, + "content": "f _ { \\mathbf { W } } ( \\mathbf { x } ) = m ^ { 1 / 2 } \\mathbf { W } _ { L } \\sigma ( \\mathbf { W } _ { L - 1 } \\cdot \\cdot \\cdot \\sigma ( \\mathbf { W } _ { 1 } \\mathbf { x } ) \\cdot \\cdot \\cdot ) ,", + "type": "interline_equation", + "image_path": "59b14f536d1c0635a48dade664bf302e1671dcf348497dc3ee23798346e750ff.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 209, + 462, + 401, + 477 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 480, + 506, + 538 + ], + "lines": [ + { + "bbox": [ + 104, + 478, + 506, + 495 + ], + "spans": [ + { + "bbox": [ + 104, + 478, + 133, + 495 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 481, + 186, + 493 + ], + "score": 0.85, + "content": "\\mathbf { W } _ { 1 } \\in \\mathbb { R } ^ { m \\times d }", + "type": "inline_equation" + }, + { + "bbox": [ + 186, + 478, + 190, + 495 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 190, + 481, + 299, + 493 + ], + "score": 0.71, + "content": "\\mathbf { W } _ { 2 } , \\cdots , \\mathbf { W } _ { L - 1 } \\in \\mathbb { R } ^ { m \\times m } ,", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 478, + 302, + 495 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 302, + 481, + 356, + 493 + ], + "score": 0.89, + "content": "\\mathbf { W } _ { L } \\in \\mathbb { R } ^ { 1 \\times m }", + "type": "inline_equation" + }, + { + "bbox": [ + 356, + 478, + 376, + 495 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 377, + 482, + 453, + 494 + ], + "score": 0.95, + "content": "\\sigma ( x ) = \\operatorname* { m a x } \\{ 0 , x \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 454, + 478, + 506, + 495 + ], + "score": 1.0, + "content": "is the ReLU", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 492, + 506, + 506 + ], + "spans": [ + { + "bbox": [ + 105, + 492, + 493, + 506 + ], + "score": 1.0, + "content": "activation function. Here, without loss of generality, we assume the width of each layer is equal to", + "type": "text" + }, + { + "bbox": [ + 493, + 495, + 503, + 503 + ], + "score": 0.72, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 492, + 506, + 506 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 501, + 506, + 518 + ], + "spans": [ + { + "bbox": [ + 105, + 501, + 506, + 518 + ], + "score": 1.0, + "content": "Yet our theoretical results can be easily generalized to the setting with unequal width layers, as long", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 514, + 505, + 527 + ], + "spans": [ + { + "bbox": [ + 106, + 514, + 505, + 527 + ], + "score": 1.0, + "content": "as the smallest width satisfies our overparameterization condition. We denote the collection of all", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 524, + 279, + 539 + ], + "spans": [ + { + "bbox": [ + 105, + 524, + 183, + 539 + ], + "score": 1.0, + "content": "weight matrices as", + "type": "text" + }, + { + "bbox": [ + 183, + 525, + 274, + 538 + ], + "score": 0.92, + "content": "\\mathbf { W } = \\{ \\mathbf { W } _ { 1 } , \\dots , \\mathbf { W } _ { L } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 524, + 279, + 539 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 24, + "bbox_fs": [ + 104, + 478, + 506, + 539 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 542, + 504, + 565 + ], + "lines": [ + { + "bbox": [ + 104, + 540, + 502, + 557 + ], + "spans": [ + { + "bbox": [ + 104, + 540, + 259, + 557 + ], + "score": 1.0, + "content": "Loss function. Given training dataset", + "type": "text" + }, + { + "bbox": [ + 259, + 542, + 321, + 555 + ], + "score": 0.92, + "content": "\\{ \\mathbf { x } _ { i } , y _ { i } \\} _ { i = 1 , \\ldots , n }", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 540, + 364, + 557 + ], + "score": 1.0, + "content": "with input", + "type": "text" + }, + { + "bbox": [ + 365, + 542, + 398, + 554 + ], + "score": 0.92, + "content": "\\mathbf { x } _ { i } \\in \\mathbb { R } ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 398, + 540, + 443, + 557 + ], + "score": 1.0, + "content": "and output", + "type": "text" + }, + { + "bbox": [ + 444, + 542, + 502, + 555 + ], + "score": 0.92, + "content": "y _ { i } \\in \\left\\{ - 1 , + 1 \\right\\}", + "type": "inline_equation" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 553, + 260, + 567 + ], + "spans": [ + { + "bbox": [ + 106, + 553, + 260, + 567 + ], + "score": 1.0, + "content": "we define the training loss function as", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5, + "bbox_fs": [ + 104, + 540, + 502, + 567 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 252, + 568, + 357, + 599 + ], + "lines": [ + { + "bbox": [ + 252, + 568, + 357, + 599 + ], + "spans": [ + { + "bbox": [ + 252, + 568, + 357, + 599 + ], + "score": 0.94, + "content": "L _ { S } ( \\mathbf { W } ) = \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } L _ { i } ( \\mathbf { W } ) ,", + "type": "interline_equation", + "image_path": "5ed9a3edccf63c4b2b6eb169a0788bf5bb64b73bfcc7060d91ebdbf58cb0498e.jpg" + } + ] + } + ], + "index": 29.5, + "virtual_lines": [ + { + "bbox": [ + 252, + 568, + 357, + 583.5 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 252, + 583.5, + 357, + 599.0 + ], + "spans": [], + "index": 30 + } + ] + }, + { + "type": "text", + "bbox": [ + 104, + 602, + 500, + 616 + ], + "lines": [ + { + "bbox": [ + 106, + 601, + 500, + 617 + ], + "spans": [ + { + "bbox": [ + 106, + 601, + 132, + 617 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 602, + 355, + 616 + ], + "score": 0.9, + "content": "L _ { i } ( \\mathbf { W } ) = \\ell \\big ( y _ { i } f _ { \\mathbf { W } } ( \\mathbf { x } _ { i } ) \\big ) = \\log \\big ( 1 + \\exp ( - y _ { i } f _ { \\mathbf { W } } ( \\mathbf { x } _ { i } ) ) \\big )", + "type": "inline_equation" + }, + { + "bbox": [ + 356, + 601, + 500, + 617 + ], + "score": 1.0, + "content": "is defined as the cross-entropy loss.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31, + "bbox_fs": [ + 106, + 601, + 500, + 617 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 619, + 505, + 683 + ], + "lines": [ + { + "bbox": [ + 106, + 620, + 506, + 632 + ], + "spans": [ + { + "bbox": [ + 106, + 620, + 506, + 632 + ], + "score": 1.0, + "content": "Algorithms. We consider both GD and SGD with Gaussian random initialization. These two algo-", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 103, + 629, + 504, + 649 + ], + "spans": [ + { + "bbox": [ + 103, + 629, + 456, + 649 + ], + "score": 1.0, + "content": "rithms are displayed in Algorithms 1 and 2 respectively. Specifically, the entries in Wp0q1 ,", + "type": "text" + }, + { + "bbox": [ + 429, + 631, + 504, + 646 + ], + "score": 0.88, + "content": "\\mathbf { W } _ { 1 } ^ { ( 0 ) } , \\cdots , \\mathbf { W } _ { L - 1 } ^ { ( 0 ) }", + "type": "inline_equation" + } + ], + "index": 33 + }, + { + "bbox": [ + 102, + 644, + 509, + 666 + ], + "spans": [ + { + "bbox": [ + 102, + 644, + 509, + 666 + ], + "score": 1.0, + "content": "are generated independently from univariate Gaussian distribution N p0, 2{mq and the entries in Wp0qL", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 660, + 506, + 672 + ], + "spans": [ + { + "bbox": [ + 105, + 660, + 242, + 672 + ], + "score": 1.0, + "content": "are generated independently from", + "type": "text" + }, + { + "bbox": [ + 242, + 660, + 287, + 672 + ], + "score": 0.93, + "content": "N ( 0 , 1 / m )", + "type": "inline_equation" + }, + { + "bbox": [ + 287, + 660, + 506, + 672 + ], + "score": 1.0, + "content": ". For GD, we consider using the full gradient to update", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 671, + 439, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 671, + 439, + 684 + ], + "score": 1.0, + "content": "the model parameters. For SGD, we use a new training data point in each iteration.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 34, + "bbox_fs": [ + 102, + 620, + 509, + 684 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 687, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 686, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 686, + 505, + 700 + ], + "score": 1.0, + "content": "Note that our initialization method in Algorithms 1, 2 is the same as the widely used He initialization", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "(He et al., 2015). Our neural network parameterization is also consistent with the parameterization", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "used in prior work on NTK (Jacot et al., 2018; Allen-Zhu et al., 2019b; Du et al., 2019a; Arora et al.,", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 719, + 218, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 719, + 218, + 732 + ], + "score": 1.0, + "content": "2019b; Cao and Gu, 2019).", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 38.5, + "bbox_fs": [ + 105, + 686, + 506, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 81, + 411, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 411, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 411, + 96 + ], + "score": 1.0, + "content": "Algorithm 2 Stochastic gradient desecent (SGD) with random initialization", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 115, + 97, + 451, + 167 + ], + "lines": [ + { + "bbox": [ + 114, + 96, + 366, + 110 + ], + "spans": [ + { + "bbox": [ + 114, + 96, + 232, + 110 + ], + "score": 1.0, + "content": "Input: Number of iterations", + "type": "text" + }, + { + "bbox": [ + 232, + 100, + 239, + 108 + ], + "score": 0.68, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 240, + 96, + 279, + 110 + ], + "score": 1.0, + "content": ", step size", + "type": "text" + }, + { + "bbox": [ + 280, + 100, + 286, + 109 + ], + "score": 0.64, + "content": "\\eta", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 96, + 343, + 110 + ], + "score": 1.0, + "content": ", initialization", + "type": "text" + }, + { + "bbox": [ + 343, + 96, + 366, + 108 + ], + "score": 0.41, + "content": "\\mathbf { W } ^ { ( 0 ) }", + "type": "inline_equation" + } + ], + "index": 1 + }, + { + "bbox": [ + 116, + 108, + 207, + 120 + ], + "spans": [ + { + "bbox": [ + 116, + 108, + 131, + 120 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 132, + 109, + 192, + 120 + ], + "score": 0.85, + "content": "i = 1 , 2 , \\dots , n", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 108, + 207, + 120 + ], + "score": 1.0, + "content": "do", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 123, + 118, + 451, + 133 + ], + "spans": [ + { + "bbox": [ + 123, + 118, + 151, + 133 + ], + "score": 1.0, + "content": "Draw", + "type": "text" + }, + { + "bbox": [ + 151, + 120, + 182, + 131 + ], + "score": 0.9, + "content": "\\left( \\mathbf { x } _ { i } , y _ { i } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 118, + 205, + 133 + ], + "score": 1.0, + "content": "from", + "type": "text" + }, + { + "bbox": [ + 205, + 120, + 214, + 129 + ], + "score": 0.76, + "content": "\\mathcal { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 215, + 118, + 378, + 133 + ], + "score": 1.0, + "content": "and compute the corresponding gradient", + "type": "text" + }, + { + "bbox": [ + 379, + 118, + 447, + 132 + ], + "score": 0.91, + "content": "\\nabla _ { \\mathbf { W } } L _ { i } ( \\mathbf { W } ^ { ( i - 1 ) } )", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 118, + 451, + 133 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 125, + 129, + 323, + 145 + ], + "spans": [ + { + "bbox": [ + 125, + 129, + 158, + 145 + ], + "score": 1.0, + "content": "Update", + "type": "text" + }, + { + "bbox": [ + 158, + 131, + 318, + 144 + ], + "score": 0.91, + "content": "\\mathbf { W } ^ { ( i ) } = \\mathbf { W } ^ { ( i - 1 ) } - \\eta \\cdot \\nabla _ { \\mathbf { W } } L _ { i } ( \\mathbf { W } ^ { ( i - 1 ) } )", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 129, + 323, + 145 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 116, + 143, + 150, + 154 + ], + "spans": [ + { + "bbox": [ + 116, + 143, + 150, + 154 + ], + "score": 1.0, + "content": "end for", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 150, + 399, + 168 + ], + "spans": [ + { + "bbox": [ + 115, + 150, + 228, + 168 + ], + "score": 1.0, + "content": "Output: Randomly choose", + "type": "text" + }, + { + "bbox": [ + 228, + 151, + 241, + 164 + ], + "score": 0.76, + "content": "\\widehat { \\bf W }", + "type": "inline_equation" + }, + { + "bbox": [ + 242, + 150, + 307, + 168 + ], + "score": 1.0, + "content": "uniformly from", + "type": "text" + }, + { + "bbox": [ + 307, + 153, + 396, + 166 + ], + "score": 0.85, + "content": "\\{ \\mathbf { W } ^ { ( 0 ) } , \\ldots , \\mathbf { W } ^ { ( n - 1 ) } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 150, + 399, + 168 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 3.5 + }, + { + "type": "title", + "bbox": [ + 108, + 187, + 201, + 200 + ], + "lines": [ + { + "bbox": [ + 104, + 186, + 203, + 203 + ], + "spans": [ + { + "bbox": [ + 104, + 186, + 203, + 203 + ], + "score": 1.0, + "content": "3 MAIN THEORY", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 106, + 212, + 504, + 235 + ], + "lines": [ + { + "bbox": [ + 105, + 210, + 506, + 226 + ], + "spans": [ + { + "bbox": [ + 105, + 210, + 506, + 226 + ], + "score": 1.0, + "content": "In this section, we present the optimization and generalization guarantees of GD and SGD for learning", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 223, + 466, + 236 + ], + "spans": [ + { + "bbox": [ + 106, + 223, + 466, + 236 + ], + "score": 1.0, + "content": "deep ReLU networks. We first make the following assumption on the training data points.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5 + }, + { + "type": "text", + "bbox": [ + 107, + 237, + 403, + 249 + ], + "lines": [ + { + "bbox": [ + 106, + 236, + 403, + 251 + ], + "spans": [ + { + "bbox": [ + 106, + 236, + 302, + 251 + ], + "score": 1.0, + "content": "Assumption 3.1. All training data points satisfy", + "type": "text" + }, + { + "bbox": [ + 303, + 237, + 400, + 249 + ], + "score": 0.76, + "content": "\\| \\mathbf { x } _ { i } \\| _ { 2 } = 1 , i = 1 , \\ldots , n .", + "type": "inline_equation" + }, + { + "bbox": [ + 400, + 236, + 403, + 251 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 106, + 257, + 506, + 291 + ], + "lines": [ + { + "bbox": [ + 105, + 257, + 506, + 270 + ], + "spans": [ + { + "bbox": [ + 105, + 257, + 506, + 270 + ], + "score": 1.0, + "content": "This assumption has been widely made in many previous works (Allen-Zhu et al., 2019b;c; Du et al.,", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 268, + 506, + 280 + ], + "spans": [ + { + "bbox": [ + 106, + 268, + 506, + 280 + ], + "score": 1.0, + "content": "2019b;a; Zou et al., 2019) in order to simplify the theoretical analysis. This assumption can be relaxed", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 280, + 343, + 292 + ], + "spans": [ + { + "bbox": [ + 106, + 280, + 343, + 292 + ], + "score": 1.0, + "content": "to be upper bounded and lower bounded by some constant.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 106, + 296, + 505, + 318 + ], + "lines": [ + { + "bbox": [ + 105, + 296, + 506, + 309 + ], + "spans": [ + { + "bbox": [ + 105, + 296, + 506, + 309 + ], + "score": 1.0, + "content": "In the following, we give the definition of Neural Tangent Random Feature (NTRF) (Cao and Gu,", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 306, + 469, + 320 + ], + "spans": [ + { + "bbox": [ + 105, + 306, + 469, + 320 + ], + "score": 1.0, + "content": "2019), which characterizes the functions learnable by over-parameterized ReLU networks.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5 + }, + { + "type": "text", + "bbox": [ + 106, + 321, + 505, + 356 + ], + "lines": [ + { + "bbox": [ + 105, + 320, + 506, + 335 + ], + "spans": [ + { + "bbox": [ + 105, + 320, + 402, + 335 + ], + "score": 1.0, + "content": "Definition 3.2 (Neural Tangent Random Feature, (Cao and Gu, 2019)). Let", + "type": "text" + }, + { + "bbox": [ + 403, + 321, + 426, + 333 + ], + "score": 0.84, + "content": "\\mathbf { W } ^ { ( 0 ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 426, + 320, + 506, + 335 + ], + "score": 1.0, + "content": "be the initialization", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 104, + 332, + 506, + 348 + ], + "spans": [ + { + "bbox": [ + 104, + 332, + 160, + 348 + ], + "score": 1.0, + "content": "weights, and", + "type": "text" + }, + { + "bbox": [ + 160, + 334, + 385, + 347 + ], + "score": 0.9, + "content": "{ F _ { { \\bf W } ^ { ( 0 ) } , { \\bf W } } ( { \\bf x } ) } = f _ { { \\bf W } ^ { ( 0 ) } } ( { \\bf x } ) + \\langle \\nabla f _ { { \\bf W } ^ { ( 0 ) } } ( { \\bf x } ) , { \\bf W } - { \\bf W } ^ { ( 0 ) } \\rangle", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 332, + 506, + 348 + ], + "score": 1.0, + "content": "be a function with respect to", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 345, + 363, + 357 + ], + "spans": [ + { + "bbox": [ + 106, + 345, + 144, + 357 + ], + "score": 1.0, + "content": "the input", + "type": "text" + }, + { + "bbox": [ + 144, + 347, + 151, + 355 + ], + "score": 0.63, + "content": "\\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 152, + 345, + 363, + 357 + ], + "score": 1.0, + "content": ". Then the NTRF function class is defined as follows", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17 + }, + { + "type": "interline_equation", + "bbox": [ + 184, + 360, + 426, + 376 + ], + "lines": [ + { + "bbox": [ + 184, + 360, + 426, + 376 + ], + "spans": [ + { + "bbox": [ + 184, + 360, + 426, + 376 + ], + "score": 0.88, + "content": "{ \\mathcal { F } } ( \\mathbf { W } ^ { ( 0 ) } , R ) = \\big \\{ F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } } ( \\cdot ) : \\mathbf { W } \\in { \\mathcal { B } } ( \\mathbf { W } ^ { ( 0 ) } , R \\cdot m ^ { - 1 / 2 } ) \\big \\} .", + "type": "interline_equation", + "image_path": "698e5f4e2ad6719f9acb82cdaef21e1c42eae898c66227d8dffa84cbb109e91b.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 184, + 360, + 426, + 376 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 385, + 506, + 463 + ], + "lines": [ + { + "bbox": [ + 105, + 384, + 506, + 399 + ], + "spans": [ + { + "bbox": [ + 105, + 384, + 185, + 399 + ], + "score": 1.0, + "content": "The function class", + "type": "text" + }, + { + "bbox": [ + 185, + 385, + 236, + 398 + ], + "score": 0.94, + "content": "F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } } ( \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 384, + 506, + 399 + ], + "score": 1.0, + "content": "consists of linear models over random features defined based on", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 396, + 505, + 409 + ], + "spans": [ + { + "bbox": [ + 106, + 396, + 505, + 409 + ], + "score": 1.0, + "content": "the network gradients at the initialization. Therefore it captures the key “almost linear” property of", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 406, + 506, + 421 + ], + "spans": [ + { + "bbox": [ + 105, + 406, + 506, + 421 + ], + "score": 1.0, + "content": "wide neural networks in the NTK regime (Lee et al., 2019; Cao and Gu, 2019). In this paper, we", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 418, + 505, + 431 + ], + "spans": [ + { + "bbox": [ + 105, + 418, + 505, + 431 + ], + "score": 1.0, + "content": "use the NTRF function class as a reference class to measure the difficulty of a learning problem. In", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 429, + 505, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 505, + 442 + ], + "score": 1.0, + "content": "what follows, we deliver our main theoretical results regarding the optimization and generalization", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 440, + 506, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 440, + 506, + 453 + ], + "score": 1.0, + "content": "guarantees of learning deep ReLU networks. We study both GD and SGD with random initialization", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 452, + 246, + 464 + ], + "spans": [ + { + "bbox": [ + 106, + 452, + 246, + 464 + ], + "score": 1.0, + "content": "(presented in Algorithms 1 and 2).", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 23 + }, + { + "type": "title", + "bbox": [ + 108, + 475, + 219, + 487 + ], + "lines": [ + { + "bbox": [ + 105, + 475, + 221, + 488 + ], + "spans": [ + { + "bbox": [ + 105, + 475, + 221, + 488 + ], + "score": 1.0, + "content": "3.1 GRADIENT DESCENT", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 107, + 496, + 503, + 519 + ], + "lines": [ + { + "bbox": [ + 105, + 495, + 505, + 510 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 505, + 510 + ], + "score": 1.0, + "content": "The following theorem establishes the optimization guarantee of GD for training deep ReLU networks", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 507, + 205, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 507, + 205, + 520 + ], + "score": 1.0, + "content": "for binary classification.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5 + }, + { + "type": "text", + "bbox": [ + 106, + 521, + 503, + 547 + ], + "lines": [ + { + "bbox": [ + 103, + 516, + 507, + 539 + ], + "spans": [ + { + "bbox": [ + 103, + 516, + 185, + 539 + ], + "score": 1.0, + "content": "Theorem 3.3. For", + "type": "text" + }, + { + "bbox": [ + 185, + 522, + 224, + 533 + ], + "score": 0.91, + "content": "\\delta , R > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 224, + 516, + 242, + 539 + ], + "score": 1.0, + "content": ", let", + "type": "text" + }, + { + "bbox": [ + 242, + 521, + 433, + 535 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\epsilon _ { \\mathrm { N T R F } } = \\operatorname* { i n f } _ { \\mathit { F } \\in \\mathcal { F } ( \\mathbf { W } ^ { ( 0 ) } , R ) } n ^ { - 1 } \\sum _ { i = 1 } ^ { n } \\ell \\big [ y _ { i } F ( \\mathbf { x } _ { i } ) \\big ] } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 433, + 516, + 507, + 539 + ], + "score": 1.0, + "content": "be the minimum", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 533, + 392, + 548 + ], + "spans": [ + { + "bbox": [ + 106, + 533, + 265, + 548 + ], + "score": 1.0, + "content": "training loss achievable by functions in", + "type": "text" + }, + { + "bbox": [ + 265, + 534, + 316, + 547 + ], + "score": 0.93, + "content": "{ \\mathcal { F } } ( { \\mathbf { W } } ^ { ( 0 ) } , R )", + "type": "inline_equation" + }, + { + "bbox": [ + 316, + 533, + 392, + 548 + ], + "score": 1.0, + "content": ". Then there exists", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5 + }, + { + "type": "interline_equation", + "bbox": [ + 213, + 550, + 396, + 567 + ], + "lines": [ + { + "bbox": [ + 213, + 550, + 396, + 567 + ], + "spans": [ + { + "bbox": [ + 213, + 550, + 396, + 567 + ], + "score": 0.91, + "content": "m ^ { * } ( \\delta , R , L ) = \\widetilde { \\mathcal { O } } \\big ( \\mathrm { p o l y } ( R , L ) \\cdot \\log ^ { 4 / 3 } ( n / \\delta ) \\big ) ,", + "type": "interline_equation", + "image_path": "352f99524b5fb8f25e9338b5f6d658e553aecd29e08759a37e16797de4d5afeb.jpg" + } + ] + } + ], + "index": 32, + "virtual_lines": [ + { + "bbox": [ + 213, + 550, + 396, + 567 + ], + "spans": [], + "index": 32 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 569, + 505, + 605 + ], + "lines": [ + { + "bbox": [ + 105, + 568, + 505, + 583 + ], + "spans": [ + { + "bbox": [ + 105, + 568, + 154, + 583 + ], + "score": 1.0, + "content": "such that if", + "type": "text" + }, + { + "bbox": [ + 155, + 569, + 227, + 581 + ], + "score": 0.91, + "content": "m \\geqslant m ^ { * } ( \\delta , R , L )", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 568, + 331, + 583 + ], + "score": 1.0, + "content": ", with probability at least", + "type": "text" + }, + { + "bbox": [ + 331, + 570, + 355, + 580 + ], + "score": 0.86, + "content": "1 - \\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 355, + 568, + 505, + 583 + ], + "score": 1.0, + "content": "over the initialization, GD with step", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 579, + 505, + 593 + ], + "spans": [ + { + "bbox": [ + 105, + 579, + 125, + 593 + ], + "score": 1.0, + "content": "size", + "type": "text" + }, + { + "bbox": [ + 126, + 581, + 199, + 592 + ], + "score": 0.87, + "content": "\\eta = \\Theta ( L ^ { - 1 } m ^ { - 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 579, + 392, + 593 + ], + "score": 1.0, + "content": "can train a neural network to achieve at most", + "type": "text" + }, + { + "bbox": [ + 392, + 581, + 421, + 592 + ], + "score": 0.58, + "content": "3 \\epsilon _ { \\mathrm { N T R F } }", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 579, + 505, + 593 + ], + "score": 1.0, + "content": "training loss within", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 107, + 588, + 237, + 608 + ], + "spans": [ + { + "bbox": [ + 107, + 592, + 191, + 605 + ], + "score": 0.92, + "content": "T = \\mathcal { O } \\big ( L ^ { 2 } R ^ { 2 } \\epsilon _ { \\mathrm { N T R F } } ^ { - 1 } \\big )", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 588, + 237, + 608 + ], + "score": 1.0, + "content": "iterations.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 106, + 612, + 505, + 704 + ], + "lines": [ + { + "bbox": [ + 105, + 612, + 505, + 625 + ], + "spans": [ + { + "bbox": [ + 105, + 612, + 505, + 625 + ], + "score": 1.0, + "content": "Theorem 3.3 shows that the deep ReLU network trained by GD can compete with the best function in", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 104, + 622, + 504, + 638 + ], + "spans": [ + { + "bbox": [ + 104, + 622, + 205, + 638 + ], + "score": 1.0, + "content": "the NTRF function class", + "type": "text" + }, + { + "bbox": [ + 205, + 624, + 257, + 637 + ], + "score": 0.94, + "content": "{ \\mathcal { F } } ( { \\mathbf { W } } ^ { ( 0 ) } , R )", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 622, + 469, + 638 + ], + "score": 1.0, + "content": "if the network width has a polynomial dependency in", + "type": "text" + }, + { + "bbox": [ + 469, + 625, + 478, + 635 + ], + "score": 0.81, + "content": "R", + "type": "inline_equation" + }, + { + "bbox": [ + 478, + 622, + 496, + 638 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 496, + 625, + 504, + 635 + ], + "score": 0.77, + "content": "L", + "type": "inline_equation" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 636, + 504, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 240, + 650 + ], + "score": 1.0, + "content": "and a logarithmic dependency in", + "type": "text" + }, + { + "bbox": [ + 241, + 640, + 248, + 648 + ], + "score": 0.79, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 637, + 266, + 650 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 266, + 637, + 281, + 650 + ], + "score": 0.84, + "content": "1 / \\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 637, + 460, + 650 + ], + "score": 1.0, + "content": ". Moreover, if the NTRF function class with", + "type": "text" + }, + { + "bbox": [ + 461, + 636, + 504, + 650 + ], + "score": 0.92, + "content": "R = \\widetilde { \\mathcal { O } } ( 1 )", + "type": "inline_equation" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 649, + 505, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 405, + 662 + ], + "score": 1.0, + "content": "can learn the training data well (i.e., \u000fNTRF is less than a small target error", + "type": "text" + }, + { + "bbox": [ + 405, + 651, + 410, + 659 + ], + "score": 0.49, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 411, + 649, + 505, + 662 + ], + "score": 1.0, + "content": "), a polylogarithmic (in", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 104, + 658, + 506, + 674 + ], + "spans": [ + { + "bbox": [ + 104, + 658, + 141, + 674 + ], + "score": 1.0, + "content": "terms of", + "type": "text" + }, + { + "bbox": [ + 141, + 662, + 148, + 670 + ], + "score": 0.76, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 658, + 165, + 674 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 165, + 659, + 181, + 671 + ], + "score": 0.89, + "content": "\\epsilon ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 658, + 506, + 674 + ], + "score": 1.0, + "content": ") network width suffices to guarantee the global convergence of GD, which directly", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 670, + 506, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 670, + 506, + 684 + ], + "score": 1.0, + "content": "improves over-paramterization condition in the most related work (Cao and Gu, 2019). Besides, we", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 680, + 505, + 695 + ], + "spans": [ + { + "bbox": [ + 105, + 680, + 505, + 695 + ], + "score": 1.0, + "content": "remark here that this assumption on the NTRF function class can be easily satisfied when the training", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 693, + 439, + 704 + ], + "spans": [ + { + "bbox": [ + 106, + 693, + 439, + 704 + ], + "score": 1.0, + "content": "data admits certain separability conditions, which we discuss in detail in Section 4.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 39.5 + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "Compared with the results in (Ji and Telgarsky, 2020) which give similar network width requirements", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 721, + 505, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 505, + 732 + ], + "score": 1.0, + "content": "for two-layer networks, our result works for deep networks. Moreover, while Ji and Telgarsky (2020)", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 44.5 + } + ], + "page_idx": 3, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 759 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 309, + 762 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 12, + "width": 8 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 81, + 411, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 411, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 411, + 96 + ], + "score": 1.0, + "content": "Algorithm 2 Stochastic gradient desecent (SGD) with random initialization", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "list", + "bbox": [ + 115, + 97, + 451, + 167 + ], + "lines": [ + { + "bbox": [ + 114, + 96, + 366, + 110 + ], + "spans": [ + { + "bbox": [ + 114, + 96, + 232, + 110 + ], + "score": 1.0, + "content": "Input: Number of iterations", + "type": "text" + }, + { + "bbox": [ + 232, + 100, + 239, + 108 + ], + "score": 0.68, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 240, + 96, + 279, + 110 + ], + "score": 1.0, + "content": ", step size", + "type": "text" + }, + { + "bbox": [ + 280, + 100, + 286, + 109 + ], + "score": 0.64, + "content": "\\eta", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 96, + 343, + 110 + ], + "score": 1.0, + "content": ", initialization", + "type": "text" + }, + { + "bbox": [ + 343, + 96, + 366, + 108 + ], + "score": 0.41, + "content": "\\mathbf { W } ^ { ( 0 ) }", + "type": "inline_equation" + } + ], + "index": 1, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 116, + 108, + 207, + 120 + ], + "spans": [ + { + "bbox": [ + 116, + 108, + 131, + 120 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 132, + 109, + 192, + 120 + ], + "score": 0.85, + "content": "i = 1 , 2 , \\dots , n", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 108, + 207, + 120 + ], + "score": 1.0, + "content": "do", + "type": "text" + } + ], + "index": 2, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 123, + 118, + 451, + 133 + ], + "spans": [ + { + "bbox": [ + 123, + 118, + 151, + 133 + ], + "score": 1.0, + "content": "Draw", + "type": "text" + }, + { + "bbox": [ + 151, + 120, + 182, + 131 + ], + "score": 0.9, + "content": "\\left( \\mathbf { x } _ { i } , y _ { i } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 118, + 205, + 133 + ], + "score": 1.0, + "content": "from", + "type": "text" + }, + { + "bbox": [ + 205, + 120, + 214, + 129 + ], + "score": 0.76, + "content": "\\mathcal { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 215, + 118, + 378, + 133 + ], + "score": 1.0, + "content": "and compute the corresponding gradient", + "type": "text" + }, + { + "bbox": [ + 379, + 118, + 447, + 132 + ], + "score": 0.91, + "content": "\\nabla _ { \\mathbf { W } } L _ { i } ( \\mathbf { W } ^ { ( i - 1 ) } )", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 118, + 451, + 133 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 125, + 129, + 323, + 145 + ], + "spans": [ + { + "bbox": [ + 125, + 129, + 158, + 145 + ], + "score": 1.0, + "content": "Update", + "type": "text" + }, + { + "bbox": [ + 158, + 131, + 318, + 144 + ], + "score": 0.91, + "content": "\\mathbf { W } ^ { ( i ) } = \\mathbf { W } ^ { ( i - 1 ) } - \\eta \\cdot \\nabla _ { \\mathbf { W } } L _ { i } ( \\mathbf { W } ^ { ( i - 1 ) } )", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 129, + 323, + 145 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 4, + "is_list_end_line": true + }, + { + "bbox": [ + 116, + 143, + 150, + 154 + ], + "spans": [ + { + "bbox": [ + 116, + 143, + 150, + 154 + ], + "score": 1.0, + "content": "end for", + "type": "text" + } + ], + "index": 5, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 115, + 150, + 399, + 168 + ], + "spans": [ + { + "bbox": [ + 115, + 150, + 228, + 168 + ], + "score": 1.0, + "content": "Output: Randomly choose", + "type": "text" + }, + { + "bbox": [ + 228, + 151, + 241, + 164 + ], + "score": 0.76, + "content": "\\widehat { \\bf W }", + "type": "inline_equation" + }, + { + "bbox": [ + 242, + 150, + 307, + 168 + ], + "score": 1.0, + "content": "uniformly from", + "type": "text" + }, + { + "bbox": [ + 307, + 153, + 396, + 166 + ], + "score": 0.85, + "content": "\\{ \\mathbf { W } ^ { ( 0 ) } , \\ldots , \\mathbf { W } ^ { ( n - 1 ) } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 150, + 399, + 168 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 6, + "is_list_start_line": true, + "is_list_end_line": true + } + ], + "index": 3.5, + "bbox_fs": [ + 114, + 96, + 451, + 168 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 187, + 201, + 200 + ], + "lines": [ + { + "bbox": [ + 104, + 186, + 203, + 203 + ], + "spans": [ + { + "bbox": [ + 104, + 186, + 203, + 203 + ], + "score": 1.0, + "content": "3 MAIN THEORY", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 106, + 212, + 504, + 235 + ], + "lines": [ + { + "bbox": [ + 105, + 210, + 506, + 226 + ], + "spans": [ + { + "bbox": [ + 105, + 210, + 506, + 226 + ], + "score": 1.0, + "content": "In this section, we present the optimization and generalization guarantees of GD and SGD for learning", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 223, + 466, + 236 + ], + "spans": [ + { + "bbox": [ + 106, + 223, + 466, + 236 + ], + "score": 1.0, + "content": "deep ReLU networks. We first make the following assumption on the training data points.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5, + "bbox_fs": [ + 105, + 210, + 506, + 236 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 237, + 403, + 249 + ], + "lines": [ + { + "bbox": [ + 106, + 236, + 403, + 251 + ], + "spans": [ + { + "bbox": [ + 106, + 236, + 302, + 251 + ], + "score": 1.0, + "content": "Assumption 3.1. All training data points satisfy", + "type": "text" + }, + { + "bbox": [ + 303, + 237, + 400, + 249 + ], + "score": 0.76, + "content": "\\| \\mathbf { x } _ { i } \\| _ { 2 } = 1 , i = 1 , \\ldots , n .", + "type": "inline_equation" + }, + { + "bbox": [ + 400, + 236, + 403, + 251 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10, + "bbox_fs": [ + 106, + 236, + 403, + 251 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 257, + 506, + 291 + ], + "lines": [ + { + "bbox": [ + 105, + 257, + 506, + 270 + ], + "spans": [ + { + "bbox": [ + 105, + 257, + 506, + 270 + ], + "score": 1.0, + "content": "This assumption has been widely made in many previous works (Allen-Zhu et al., 2019b;c; Du et al.,", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 268, + 506, + 280 + ], + "spans": [ + { + "bbox": [ + 106, + 268, + 506, + 280 + ], + "score": 1.0, + "content": "2019b;a; Zou et al., 2019) in order to simplify the theoretical analysis. This assumption can be relaxed", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 280, + 343, + 292 + ], + "spans": [ + { + "bbox": [ + 106, + 280, + 343, + 292 + ], + "score": 1.0, + "content": "to be upper bounded and lower bounded by some constant.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12, + "bbox_fs": [ + 105, + 257, + 506, + 292 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 296, + 505, + 318 + ], + "lines": [ + { + "bbox": [ + 105, + 296, + 506, + 309 + ], + "spans": [ + { + "bbox": [ + 105, + 296, + 506, + 309 + ], + "score": 1.0, + "content": "In the following, we give the definition of Neural Tangent Random Feature (NTRF) (Cao and Gu,", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 306, + 469, + 320 + ], + "spans": [ + { + "bbox": [ + 105, + 306, + 469, + 320 + ], + "score": 1.0, + "content": "2019), which characterizes the functions learnable by over-parameterized ReLU networks.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5, + "bbox_fs": [ + 105, + 296, + 506, + 320 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 321, + 505, + 356 + ], + "lines": [ + { + "bbox": [ + 105, + 320, + 506, + 335 + ], + "spans": [ + { + "bbox": [ + 105, + 320, + 402, + 335 + ], + "score": 1.0, + "content": "Definition 3.2 (Neural Tangent Random Feature, (Cao and Gu, 2019)). Let", + "type": "text" + }, + { + "bbox": [ + 403, + 321, + 426, + 333 + ], + "score": 0.84, + "content": "\\mathbf { W } ^ { ( 0 ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 426, + 320, + 506, + 335 + ], + "score": 1.0, + "content": "be the initialization", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 104, + 332, + 506, + 348 + ], + "spans": [ + { + "bbox": [ + 104, + 332, + 160, + 348 + ], + "score": 1.0, + "content": "weights, and", + "type": "text" + }, + { + "bbox": [ + 160, + 334, + 385, + 347 + ], + "score": 0.9, + "content": "{ F _ { { \\bf W } ^ { ( 0 ) } , { \\bf W } } ( { \\bf x } ) } = f _ { { \\bf W } ^ { ( 0 ) } } ( { \\bf x } ) + \\langle \\nabla f _ { { \\bf W } ^ { ( 0 ) } } ( { \\bf x } ) , { \\bf W } - { \\bf W } ^ { ( 0 ) } \\rangle", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 332, + 506, + 348 + ], + "score": 1.0, + "content": "be a function with respect to", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 345, + 363, + 357 + ], + "spans": [ + { + "bbox": [ + 106, + 345, + 144, + 357 + ], + "score": 1.0, + "content": "the input", + "type": "text" + }, + { + "bbox": [ + 144, + 347, + 151, + 355 + ], + "score": 0.63, + "content": "\\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 152, + 345, + 363, + 357 + ], + "score": 1.0, + "content": ". Then the NTRF function class is defined as follows", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17, + "bbox_fs": [ + 104, + 320, + 506, + 357 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 184, + 360, + 426, + 376 + ], + "lines": [ + { + "bbox": [ + 184, + 360, + 426, + 376 + ], + "spans": [ + { + "bbox": [ + 184, + 360, + 426, + 376 + ], + "score": 0.88, + "content": "{ \\mathcal { F } } ( \\mathbf { W } ^ { ( 0 ) } , R ) = \\big \\{ F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } } ( \\cdot ) : \\mathbf { W } \\in { \\mathcal { B } } ( \\mathbf { W } ^ { ( 0 ) } , R \\cdot m ^ { - 1 / 2 } ) \\big \\} .", + "type": "interline_equation", + "image_path": "698e5f4e2ad6719f9acb82cdaef21e1c42eae898c66227d8dffa84cbb109e91b.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 184, + 360, + 426, + 376 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 385, + 506, + 463 + ], + "lines": [ + { + "bbox": [ + 105, + 384, + 506, + 399 + ], + "spans": [ + { + "bbox": [ + 105, + 384, + 185, + 399 + ], + "score": 1.0, + "content": "The function class", + "type": "text" + }, + { + "bbox": [ + 185, + 385, + 236, + 398 + ], + "score": 0.94, + "content": "F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } } ( \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 384, + 506, + 399 + ], + "score": 1.0, + "content": "consists of linear models over random features defined based on", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 396, + 505, + 409 + ], + "spans": [ + { + "bbox": [ + 106, + 396, + 505, + 409 + ], + "score": 1.0, + "content": "the network gradients at the initialization. Therefore it captures the key “almost linear” property of", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 406, + 506, + 421 + ], + "spans": [ + { + "bbox": [ + 105, + 406, + 506, + 421 + ], + "score": 1.0, + "content": "wide neural networks in the NTK regime (Lee et al., 2019; Cao and Gu, 2019). In this paper, we", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 418, + 505, + 431 + ], + "spans": [ + { + "bbox": [ + 105, + 418, + 505, + 431 + ], + "score": 1.0, + "content": "use the NTRF function class as a reference class to measure the difficulty of a learning problem. In", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 429, + 505, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 505, + 442 + ], + "score": 1.0, + "content": "what follows, we deliver our main theoretical results regarding the optimization and generalization", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 440, + 506, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 440, + 506, + 453 + ], + "score": 1.0, + "content": "guarantees of learning deep ReLU networks. We study both GD and SGD with random initialization", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 452, + 246, + 464 + ], + "spans": [ + { + "bbox": [ + 106, + 452, + 246, + 464 + ], + "score": 1.0, + "content": "(presented in Algorithms 1 and 2).", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 23, + "bbox_fs": [ + 105, + 384, + 506, + 464 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 475, + 219, + 487 + ], + "lines": [ + { + "bbox": [ + 105, + 475, + 221, + 488 + ], + "spans": [ + { + "bbox": [ + 105, + 475, + 221, + 488 + ], + "score": 1.0, + "content": "3.1 GRADIENT DESCENT", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 107, + 496, + 503, + 519 + ], + "lines": [ + { + "bbox": [ + 105, + 495, + 505, + 510 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 505, + 510 + ], + "score": 1.0, + "content": "The following theorem establishes the optimization guarantee of GD for training deep ReLU networks", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 507, + 205, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 507, + 205, + 520 + ], + "score": 1.0, + "content": "for binary classification.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5, + "bbox_fs": [ + 105, + 495, + 505, + 520 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 521, + 503, + 547 + ], + "lines": [ + { + "bbox": [ + 103, + 516, + 507, + 539 + ], + "spans": [ + { + "bbox": [ + 103, + 516, + 185, + 539 + ], + "score": 1.0, + "content": "Theorem 3.3. For", + "type": "text" + }, + { + "bbox": [ + 185, + 522, + 224, + 533 + ], + "score": 0.91, + "content": "\\delta , R > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 224, + 516, + 242, + 539 + ], + "score": 1.0, + "content": ", let", + "type": "text" + }, + { + "bbox": [ + 242, + 521, + 433, + 535 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\epsilon _ { \\mathrm { N T R F } } = \\operatorname* { i n f } _ { \\mathit { F } \\in \\mathcal { F } ( \\mathbf { W } ^ { ( 0 ) } , R ) } n ^ { - 1 } \\sum _ { i = 1 } ^ { n } \\ell \\big [ y _ { i } F ( \\mathbf { x } _ { i } ) \\big ] } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 433, + 516, + 507, + 539 + ], + "score": 1.0, + "content": "be the minimum", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 533, + 392, + 548 + ], + "spans": [ + { + "bbox": [ + 106, + 533, + 265, + 548 + ], + "score": 1.0, + "content": "training loss achievable by functions in", + "type": "text" + }, + { + "bbox": [ + 265, + 534, + 316, + 547 + ], + "score": 0.93, + "content": "{ \\mathcal { F } } ( { \\mathbf { W } } ^ { ( 0 ) } , R )", + "type": "inline_equation" + }, + { + "bbox": [ + 316, + 533, + 392, + 548 + ], + "score": 1.0, + "content": ". Then there exists", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5, + "bbox_fs": [ + 103, + 516, + 507, + 548 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 213, + 550, + 396, + 567 + ], + "lines": [ + { + "bbox": [ + 213, + 550, + 396, + 567 + ], + "spans": [ + { + "bbox": [ + 213, + 550, + 396, + 567 + ], + "score": 0.91, + "content": "m ^ { * } ( \\delta , R , L ) = \\widetilde { \\mathcal { O } } \\big ( \\mathrm { p o l y } ( R , L ) \\cdot \\log ^ { 4 / 3 } ( n / \\delta ) \\big ) ,", + "type": "interline_equation", + "image_path": "352f99524b5fb8f25e9338b5f6d658e553aecd29e08759a37e16797de4d5afeb.jpg" + } + ] + } + ], + "index": 32, + "virtual_lines": [ + { + "bbox": [ + 213, + 550, + 396, + 567 + ], + "spans": [], + "index": 32 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 569, + 505, + 605 + ], + "lines": [ + { + "bbox": [ + 105, + 568, + 505, + 583 + ], + "spans": [ + { + "bbox": [ + 105, + 568, + 154, + 583 + ], + "score": 1.0, + "content": "such that if", + "type": "text" + }, + { + "bbox": [ + 155, + 569, + 227, + 581 + ], + "score": 0.91, + "content": "m \\geqslant m ^ { * } ( \\delta , R , L )", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 568, + 331, + 583 + ], + "score": 1.0, + "content": ", with probability at least", + "type": "text" + }, + { + "bbox": [ + 331, + 570, + 355, + 580 + ], + "score": 0.86, + "content": "1 - \\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 355, + 568, + 505, + 583 + ], + "score": 1.0, + "content": "over the initialization, GD with step", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 579, + 505, + 593 + ], + "spans": [ + { + "bbox": [ + 105, + 579, + 125, + 593 + ], + "score": 1.0, + "content": "size", + "type": "text" + }, + { + "bbox": [ + 126, + 581, + 199, + 592 + ], + "score": 0.87, + "content": "\\eta = \\Theta ( L ^ { - 1 } m ^ { - 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 579, + 392, + 593 + ], + "score": 1.0, + "content": "can train a neural network to achieve at most", + "type": "text" + }, + { + "bbox": [ + 392, + 581, + 421, + 592 + ], + "score": 0.58, + "content": "3 \\epsilon _ { \\mathrm { N T R F } }", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 579, + 505, + 593 + ], + "score": 1.0, + "content": "training loss within", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 107, + 588, + 237, + 608 + ], + "spans": [ + { + "bbox": [ + 107, + 592, + 191, + 605 + ], + "score": 0.92, + "content": "T = \\mathcal { O } \\big ( L ^ { 2 } R ^ { 2 } \\epsilon _ { \\mathrm { N T R F } } ^ { - 1 } \\big )", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 588, + 237, + 608 + ], + "score": 1.0, + "content": "iterations.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34, + "bbox_fs": [ + 105, + 568, + 505, + 608 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 612, + 505, + 704 + ], + "lines": [ + { + "bbox": [ + 105, + 612, + 505, + 625 + ], + "spans": [ + { + "bbox": [ + 105, + 612, + 505, + 625 + ], + "score": 1.0, + "content": "Theorem 3.3 shows that the deep ReLU network trained by GD can compete with the best function in", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 104, + 622, + 504, + 638 + ], + "spans": [ + { + "bbox": [ + 104, + 622, + 205, + 638 + ], + "score": 1.0, + "content": "the NTRF function class", + "type": "text" + }, + { + "bbox": [ + 205, + 624, + 257, + 637 + ], + "score": 0.94, + "content": "{ \\mathcal { F } } ( { \\mathbf { W } } ^ { ( 0 ) } , R )", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 622, + 469, + 638 + ], + "score": 1.0, + "content": "if the network width has a polynomial dependency in", + "type": "text" + }, + { + "bbox": [ + 469, + 625, + 478, + 635 + ], + "score": 0.81, + "content": "R", + "type": "inline_equation" + }, + { + "bbox": [ + 478, + 622, + 496, + 638 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 496, + 625, + 504, + 635 + ], + "score": 0.77, + "content": "L", + "type": "inline_equation" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 636, + 504, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 240, + 650 + ], + "score": 1.0, + "content": "and a logarithmic dependency in", + "type": "text" + }, + { + "bbox": [ + 241, + 640, + 248, + 648 + ], + "score": 0.79, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 637, + 266, + 650 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 266, + 637, + 281, + 650 + ], + "score": 0.84, + "content": "1 / \\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 637, + 460, + 650 + ], + "score": 1.0, + "content": ". Moreover, if the NTRF function class with", + "type": "text" + }, + { + "bbox": [ + 461, + 636, + 504, + 650 + ], + "score": 0.92, + "content": "R = \\widetilde { \\mathcal { O } } ( 1 )", + "type": "inline_equation" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 649, + 505, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 405, + 662 + ], + "score": 1.0, + "content": "can learn the training data well (i.e., \u000fNTRF is less than a small target error", + "type": "text" + }, + { + "bbox": [ + 405, + 651, + 410, + 659 + ], + "score": 0.49, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 411, + 649, + 505, + 662 + ], + "score": 1.0, + "content": "), a polylogarithmic (in", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 104, + 658, + 506, + 674 + ], + "spans": [ + { + "bbox": [ + 104, + 658, + 141, + 674 + ], + "score": 1.0, + "content": "terms of", + "type": "text" + }, + { + "bbox": [ + 141, + 662, + 148, + 670 + ], + "score": 0.76, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 658, + 165, + 674 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 165, + 659, + 181, + 671 + ], + "score": 0.89, + "content": "\\epsilon ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 658, + 506, + 674 + ], + "score": 1.0, + "content": ") network width suffices to guarantee the global convergence of GD, which directly", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 670, + 506, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 670, + 506, + 684 + ], + "score": 1.0, + "content": "improves over-paramterization condition in the most related work (Cao and Gu, 2019). Besides, we", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 680, + 505, + 695 + ], + "spans": [ + { + "bbox": [ + 105, + 680, + 505, + 695 + ], + "score": 1.0, + "content": "remark here that this assumption on the NTRF function class can be easily satisfied when the training", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 693, + 439, + 704 + ], + "spans": [ + { + "bbox": [ + 106, + 693, + 439, + 704 + ], + "score": 1.0, + "content": "data admits certain separability conditions, which we discuss in detail in Section 4.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 39.5, + "bbox_fs": [ + 104, + 612, + 506, + 704 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "Compared with the results in (Ji and Telgarsky, 2020) which give similar network width requirements", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 721, + 505, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 505, + 732 + ], + "score": 1.0, + "content": "for two-layer networks, our result works for deep networks. Moreover, while Ji and Telgarsky (2020)", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 44.5, + "bbox_fs": [ + 106, + 709, + 505, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 117 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 506, + 94 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 506, + 94 + ], + "score": 1.0, + "content": "essentially required all training data to be separable by a function in the NTRF function class with a", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 94, + 506, + 105 + ], + "spans": [ + { + "bbox": [ + 105, + 94, + 506, + 105 + ], + "score": 1.0, + "content": "constant margin, our result does not require such data separation assumptions, and allows the NTRF", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 409, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 409, + 117 + ], + "score": 1.0, + "content": "function class to misclassify a small proportion of the training data points∗.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 106, + 121, + 505, + 170 + ], + "lines": [ + { + "bbox": [ + 104, + 120, + 505, + 134 + ], + "spans": [ + { + "bbox": [ + 104, + 120, + 505, + 134 + ], + "score": 1.0, + "content": "We now characterize the generalization performance of neural networks trained by GD. We denote", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 127, + 502, + 150 + ], + "spans": [ + { + "bbox": [ + 106, + 132, + 280, + 146 + ], + "score": 0.92, + "content": "L _ { \\mathcal { D } } ^ { 0 - 1 } ( \\mathbf { W } ) = \\mathbb { E } _ { ( \\mathbf { x } , y ) \\sim \\mathcal { D } } [ \\mathbb { 1 } \\left\\{ f _ { \\mathbf { W } } ( \\mathbf { x } ) \\cdot y < \\bar { 0 } \\right\\} ]", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 127, + 473, + 150 + ], + "score": 1.0, + "content": "as the expected 0-1 loss (i.e., expected error) of", + "type": "text" + }, + { + "bbox": [ + 473, + 132, + 502, + 144 + ], + "score": 0.92, + "content": "f _ { \\mathbf { W } } ( \\mathbf { x } )", + "type": "inline_equation" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 145, + 505, + 160 + ], + "spans": [ + { + "bbox": [ + 105, + 145, + 439, + 160 + ], + "score": 1.0, + "content": "Theorem 3.4. Under the same assumptions as Theorem 3.3, with probability at least", + "type": "text" + }, + { + "bbox": [ + 439, + 147, + 460, + 157 + ], + "score": 0.81, + "content": "1 - \\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 145, + 505, + 160 + ], + "score": 1.0, + "content": ", the iterate", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 157, + 244, + 171 + ], + "spans": [ + { + "bbox": [ + 106, + 157, + 128, + 169 + ], + "score": 0.87, + "content": "\\mathbf { W } ^ { ( t ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 129, + 157, + 244, + 171 + ], + "score": 1.0, + "content": "of Algorithm 1 satisfies that", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 173, + 505, + 207 + ], + "lines": [ + { + "bbox": [ + 111, + 173, + 505, + 207 + ], + "spans": [ + { + "bbox": [ + 111, + 173, + 505, + 207 + ], + "score": 0.91, + "content": "L _ { \\mathcal { D } } ^ { 0 - 1 } ( \\mathbf { W } ^ { ( t ) } ) \\leqslant 2 L _ { S } ( \\mathbf { W } ^ { ( t ) } ) + \\widetilde { \\mathcal { O } } \\left( 4 ^ { L } L ^ { 2 } R \\sqrt { \\frac { m } { n } } \\land \\left( \\frac { L ^ { 3 / 2 } R } { \\sqrt { n } } + \\frac { L ^ { 1 1 / 3 } R ^ { 4 / 3 } } { m ^ { 1 / 6 } } \\right) \\right) + \\mathcal { O } \\left( \\sqrt { \\frac { \\log ( 1 / \\delta ) } { n } } \\right)", + "type": "interline_equation", + "image_path": "b95e5e8408f92b24960defbc915eedaa7db1c3cfc213294c10e8de799dd4caf5.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 111, + 173, + 505, + 184.33333333333334 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 111, + 184.33333333333334, + 505, + 195.66666666666669 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 111, + 195.66666666666669, + 505, + 207.00000000000003 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 209, + 189, + 221 + ], + "lines": [ + { + "bbox": [ + 105, + 208, + 189, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 208, + 133, + 222 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 133, + 209, + 185, + 221 + ], + "score": 0.91, + "content": "t = 0 , \\ldots , T", + "type": "inline_equation" + }, + { + "bbox": [ + 186, + 208, + 189, + 222 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 106, + 228, + 506, + 341 + ], + "lines": [ + { + "bbox": [ + 105, + 228, + 505, + 242 + ], + "spans": [ + { + "bbox": [ + 105, + 228, + 505, + 242 + ], + "score": 1.0, + "content": "Theorem 3.4 shows that the test error of the trained neural network can be bounded by its training error", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 239, + 505, + 253 + ], + "spans": [ + { + "bbox": [ + 105, + 239, + 505, + 253 + ], + "score": 1.0, + "content": "plus statistical error terms. Note that the statistical error terms is in the form of a minimum betweena", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 104, + 249, + 507, + 267 + ], + "spans": [ + { + "bbox": [ + 104, + 249, + 149, + 267 + ], + "score": 1.0, + "content": "two terms", + "type": "text" + }, + { + "bbox": [ + 150, + 251, + 209, + 266 + ], + "score": 0.93, + "content": "4 ^ { L } L ^ { 2 } R \\sqrt { m / n }", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 249, + 227, + 267 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 228, + 251, + 352, + 264 + ], + "score": 0.93, + "content": "L ^ { 3 / 2 } R / \\sqrt { n } + L ^ { 1 1 / 3 } R ^ { 4 / 3 } / m ^ { 1 / 6 }", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 249, + 492, + 267 + ], + "score": 1.0, + "content": ". Depending on the network width", + "type": "text" + }, + { + "bbox": [ + 492, + 254, + 502, + 263 + ], + "score": 0.78, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 249, + 507, + 267 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 262, + 506, + 278 + ], + "spans": [ + { + "bbox": [ + 105, + 262, + 422, + 278 + ], + "score": 1.0, + "content": "one of these two terms will be the dominating term and diminishes for large a", + "type": "text" + }, + { + "bbox": [ + 423, + 265, + 429, + 274 + ], + "score": 0.62, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 430, + 262, + 459, + 278 + ], + "score": 1.0, + "content": ": (1) if", + "type": "text" + }, + { + "bbox": [ + 459, + 263, + 502, + 276 + ], + "score": 0.92, + "content": "m = o ( n )", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 262, + 506, + 278 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 275, + 506, + 289 + ], + "spans": [ + { + "bbox": [ + 105, + 275, + 214, + 289 + ], + "score": 1.0, + "content": "the statistical error will be", + "type": "text" + }, + { + "bbox": [ + 214, + 275, + 274, + 288 + ], + "score": 0.92, + "content": "4 ^ { L } L ^ { 2 } R { \\sqrt { m / n } }", + "type": "inline_equation" + }, + { + "bbox": [ + 274, + 275, + 351, + 289 + ], + "score": 1.0, + "content": ", and diminishes as", + "type": "text" + }, + { + "bbox": [ + 352, + 278, + 359, + 286 + ], + "score": 0.75, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 360, + 275, + 442, + 289 + ], + "score": 1.0, + "content": "increases; and (2) if", + "type": "text" + }, + { + "bbox": [ + 442, + 276, + 486, + 288 + ], + "score": 0.93, + "content": "m = \\Omega ( n )", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 275, + 506, + 289 + ], + "score": 1.0, + "content": ", the", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 104, + 286, + 507, + 303 + ], + "spans": [ + { + "bbox": [ + 104, + 286, + 179, + 303 + ], + "score": 1.0, + "content": "statistical error is", + "type": "text" + }, + { + "bbox": [ + 179, + 288, + 303, + 302 + ], + "score": 0.92, + "content": "L ^ { 3 / 2 } R / \\sqrt { n } + L ^ { 1 1 / 3 } R ^ { 4 / 3 } / m ^ { 1 / 6 }", + "type": "inline_equation" + }, + { + "bbox": [ + 303, + 286, + 410, + 303 + ], + "score": 1.0, + "content": ", and again goes to zero as", + "type": "text" + }, + { + "bbox": [ + 411, + 291, + 418, + 299 + ], + "score": 0.76, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 418, + 286, + 507, + 303 + ], + "score": 1.0, + "content": "increases. Moreover,", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 104, + 300, + 506, + 315 + ], + "spans": [ + { + "bbox": [ + 104, + 302, + 318, + 315 + ], + "score": 1.0, + "content": "in this paper we have a specific focus on the setting", + "type": "text" + }, + { + "bbox": [ + 318, + 300, + 362, + 315 + ], + "score": 0.93, + "content": "m = \\widetilde { \\mathcal { O } } ( 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 302, + 506, + 315 + ], + "score": 1.0, + "content": ", under which Theorem 3.4 gives a", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 313, + 506, + 329 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 201, + 329 + ], + "score": 1.0, + "content": "statistical error of order", + "type": "text" + }, + { + "bbox": [ + 201, + 313, + 241, + 327 + ], + "score": 0.93, + "content": "\\widetilde { \\mathcal { O } } ( n ^ { - 1 / 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 242, + 313, + 506, + 329 + ], + "score": 1.0, + "content": ". This distinguishes our result from previous generalization bounds", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 326, + 491, + 341 + ], + "spans": [ + { + "bbox": [ + 106, + 328, + 443, + 341 + ], + "score": 1.0, + "content": "for deep networks (Cao and Gu, 2020; 2019), which cannot be applied to the setting", + "type": "text" + }, + { + "bbox": [ + 443, + 326, + 487, + 341 + ], + "score": 0.93, + "content": "m = \\widetilde { \\mathcal { O } } ( 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 488, + 328, + 491, + 341 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 106, + 344, + 506, + 453 + ], + "lines": [ + { + "bbox": [ + 105, + 344, + 506, + 358 + ], + "spans": [ + { + "bbox": [ + 105, + 344, + 306, + 358 + ], + "score": 1.0, + "content": "We note that for two-layer ReLU networks (i.e.,", + "type": "text" + }, + { + "bbox": [ + 307, + 346, + 334, + 356 + ], + "score": 0.87, + "content": "L = 2", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 344, + 506, + 358 + ], + "score": 1.0, + "content": ") Ji and Telgarsky (2020) proves a tighter", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 107, + 356, + 506, + 371 + ], + "spans": [ + { + "bbox": [ + 107, + 357, + 150, + 371 + ], + "score": 0.92, + "content": "{ \\cal \\tilde { O } } ( 1 / n ^ { 1 / 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 150, + 356, + 425, + 371 + ], + "score": 1.0, + "content": "generalization error bound regardless of the neural networks width", + "type": "text" + }, + { + "bbox": [ + 425, + 361, + 434, + 369 + ], + "score": 0.77, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 435, + 356, + 506, + 371 + ], + "score": 1.0, + "content": ", while our result", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 104, + 370, + 506, + 384 + ], + "spans": [ + { + "bbox": [ + 104, + 370, + 322, + 384 + ], + "score": 1.0, + "content": "(Theorem 3.4), in the two-layer case, can only give", + "type": "text" + }, + { + "bbox": [ + 323, + 370, + 366, + 384 + ], + "score": 0.94, + "content": "{ \\cal \\tilde { O } } ( 1 / n ^ { 1 / 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 366, + 370, + 506, + 384 + ], + "score": 1.0, + "content": "generalization error bound when", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 107, + 383, + 506, + 398 + ], + "spans": [ + { + "bbox": [ + 107, + 383, + 153, + 397 + ], + "score": 0.93, + "content": "m = \\widetilde { \\cal O } ( 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 153, + 384, + 166, + 398 + ], + "score": 1.0, + "content": "or", + "type": "text" + }, + { + "bbox": [ + 167, + 383, + 217, + 397 + ], + "score": 0.94, + "content": "m = \\widetilde \\Omega ( n ^ { 3 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 384, + 506, + 398 + ], + "score": 1.0, + "content": ". However, different from our proof technique that basically uses the", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 395, + 506, + 409 + ], + "spans": [ + { + "bbox": [ + 105, + 395, + 506, + 409 + ], + "score": 1.0, + "content": "(approximated) linearity of the neural network function, their proof technique largely relies on the", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 104, + 406, + 506, + 420 + ], + "spans": [ + { + "bbox": [ + 104, + 406, + 506, + 420 + ], + "score": 1.0, + "content": "1-homogeneous property of the neural network, which restricted their theory in two-layer cases. An", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 417, + 506, + 433 + ], + "spans": [ + { + "bbox": [ + 105, + 419, + 321, + 433 + ], + "score": 1.0, + "content": "interesting research direction is to explore whether a", + "type": "text" + }, + { + "bbox": [ + 322, + 417, + 365, + 432 + ], + "score": 0.93, + "content": "{ \\cal \\tilde { O } } ( 1 / n ^ { 1 / 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 365, + 419, + 506, + 433 + ], + "score": 1.0, + "content": "generalization error bound can be", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 430, + 506, + 443 + ], + "spans": [ + { + "bbox": [ + 105, + 430, + 506, + 443 + ], + "score": 1.0, + "content": "also established for deep networks (regardless of the network width), which we will leave it as a", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 441, + 158, + 454 + ], + "spans": [ + { + "bbox": [ + 105, + 441, + 158, + 454 + ], + "score": 1.0, + "content": "future work.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 24 + }, + { + "type": "title", + "bbox": [ + 108, + 466, + 276, + 478 + ], + "lines": [ + { + "bbox": [ + 105, + 466, + 277, + 479 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 277, + 479 + ], + "score": 1.0, + "content": "3.2 STOCHASTIC GRADIENT DESCENT", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 106, + 486, + 504, + 509 + ], + "lines": [ + { + "bbox": [ + 106, + 486, + 505, + 500 + ], + "spans": [ + { + "bbox": [ + 106, + 486, + 505, + 500 + ], + "score": 1.0, + "content": "Here we study the performance of SGD for training deep ReLU networks. The following theorem", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 498, + 360, + 510 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 360, + 510 + ], + "score": 1.0, + "content": "establishes a generalization error bound for the output of SGD.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5 + }, + { + "type": "text", + "bbox": [ + 106, + 511, + 504, + 537 + ], + "lines": [ + { + "bbox": [ + 104, + 507, + 507, + 529 + ], + "spans": [ + { + "bbox": [ + 104, + 507, + 185, + 529 + ], + "score": 1.0, + "content": "Theorem 3.5. For", + "type": "text" + }, + { + "bbox": [ + 185, + 512, + 224, + 523 + ], + "score": 0.91, + "content": "\\delta , R > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 507, + 241, + 529 + ], + "score": 1.0, + "content": ", let", + "type": "text" + }, + { + "bbox": [ + 242, + 511, + 433, + 525 + ], + "score": 0.9, + "content": "\\begin{array} { r } { \\epsilon _ { \\mathrm { N T R F } } = \\operatorname* { i n f } _ { \\mathit { F } \\in \\mathcal { F } ( \\mathbf { W } ^ { ( 0 ) } , R ) } n ^ { - 1 } \\sum _ { i = 1 } ^ { n } \\ell \\big [ y _ { i } F ( \\mathbf { x } _ { i } ) \\big ] } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 433, + 507, + 507, + 529 + ], + "score": 1.0, + "content": "be the minimum", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 523, + 392, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 523, + 265, + 538 + ], + "score": 1.0, + "content": "training loss achievable by functions in", + "type": "text" + }, + { + "bbox": [ + 265, + 525, + 316, + 538 + ], + "score": 0.93, + "content": "{ \\mathcal { F } } ( { \\mathbf { W } } ^ { ( 0 ) } , R )", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 523, + 392, + 538 + ], + "score": 1.0, + "content": ". Then there exists", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5 + }, + { + "type": "interline_equation", + "bbox": [ + 213, + 541, + 397, + 557 + ], + "lines": [ + { + "bbox": [ + 213, + 541, + 397, + 557 + ], + "spans": [ + { + "bbox": [ + 213, + 541, + 397, + 557 + ], + "score": 0.91, + "content": "m ^ { * } ( \\delta , R , L ) = \\widetilde { \\mathcal { O } } \\big ( \\mathrm { p o l y } ( R , L ) \\cdot \\log ^ { 4 / 3 } ( n / \\delta ) \\big ) ,", + "type": "interline_equation", + "image_path": "5b659fcc31b0998af840ee00215cf8efd002d302d4e5c891078a7acd6fdef59d.jpg" + } + ] + } + ], + "index": 34, + "virtual_lines": [ + { + "bbox": [ + 213, + 541, + 397, + 557 + ], + "spans": [], + "index": 34 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 561, + 502, + 587 + ], + "lines": [ + { + "bbox": [ + 104, + 559, + 501, + 575 + ], + "spans": [ + { + "bbox": [ + 104, + 559, + 155, + 575 + ], + "score": 1.0, + "content": "such that if", + "type": "text" + }, + { + "bbox": [ + 155, + 561, + 230, + 574 + ], + "score": 0.92, + "content": "m \\geqslant m ^ { * } ( \\delta , R , L )", + "type": "inline_equation" + }, + { + "bbox": [ + 230, + 559, + 334, + 575 + ], + "score": 1.0, + "content": ", with probability at least", + "type": "text" + }, + { + "bbox": [ + 335, + 562, + 358, + 572 + ], + "score": 0.84, + "content": "1 - \\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 359, + 559, + 445, + 575 + ], + "score": 1.0, + "content": ", SGD with step size", + "type": "text" + }, + { + "bbox": [ + 445, + 561, + 501, + 575 + ], + "score": 0.92, + "content": "\\eta = \\Theta \\bigl ( m ^ { - 1 }", + "type": "inline_equation" + } + ], + "index": 35 + }, + { + "bbox": [ + 107, + 572, + 246, + 590 + ], + "spans": [ + { + "bbox": [ + 107, + 573, + 205, + 588 + ], + "score": 0.91, + "content": "( L R ^ { 2 } n ^ { - 1 } \\epsilon _ { \\mathrm { N T R F } } ^ { - 1 } \\land L ^ { - 1 } ) \\big \\rangle", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 572, + 246, + 590 + ], + "score": 1.0, + "content": "achieves", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5 + }, + { + "type": "interline_equation", + "bbox": [ + 203, + 591, + 407, + 616 + ], + "lines": [ + { + "bbox": [ + 203, + 591, + 407, + 616 + ], + "spans": [ + { + "bbox": [ + 203, + 591, + 407, + 616 + ], + "score": 0.91, + "content": "\\mathbb { E } \\big [ L _ { \\mathcal { D } } ^ { 0 - 1 } ( \\widehat { \\mathbf { W } } ) \\big ] \\leqslant \\frac { 8 L ^ { 2 } R ^ { 2 } } { n } + \\frac { 8 \\log ( 2 / \\delta ) } { n } + 2 4 \\epsilon _ { \\mathrm { N T R F } } ,", + "type": "interline_equation", + "image_path": "bc02cd9dfc5f0fffdfc83f81e6132f2b01e2c96b125348a2147d1fdf2f91dc11.jpg" + } + ] + } + ], + "index": 37, + "virtual_lines": [ + { + "bbox": [ + 203, + 591, + 407, + 616 + ], + "spans": [], + "index": 37 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 620, + 459, + 634 + ], + "lines": [ + { + "bbox": [ + 104, + 617, + 456, + 637 + ], + "spans": [ + { + "bbox": [ + 104, + 617, + 331, + 637 + ], + "score": 1.0, + "content": "where the expectation is taken over the uniform draw of", + "type": "text" + }, + { + "bbox": [ + 332, + 619, + 344, + 632 + ], + "score": 0.84, + "content": "\\widehat { \\bf W }", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 617, + 368, + 637 + ], + "score": 1.0, + "content": "from", + "type": "text" + }, + { + "bbox": [ + 368, + 620, + 456, + 634 + ], + "score": 0.86, + "content": "\\{ \\mathbf { W } ^ { ( 0 ) } , \\ldots , \\mathbf { W } ^ { ( n - 1 ) } \\}", + "type": "inline_equation" + } + ], + "index": 38 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 106, + 642, + 506, + 716 + ], + "lines": [ + { + "bbox": [ + 105, + 642, + 506, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 643, + 138, + 657 + ], + "score": 1.0, + "content": "For any", + "type": "text" + }, + { + "bbox": [ + 139, + 645, + 162, + 655 + ], + "score": 0.89, + "content": "\\epsilon > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 643, + 248, + 657 + ], + "score": 1.0, + "content": ", Theorem 3.5 gives a", + "type": "text" + }, + { + "bbox": [ + 248, + 642, + 279, + 657 + ], + "score": 0.93, + "content": "\\tilde { \\mathcal { O } } ( \\epsilon ^ { - 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 643, + 506, + 657 + ], + "score": 1.0, + "content": "sample complexity for deep ReLU networks trained with", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 655, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 170, + 668 + ], + "score": 1.0, + "content": "SGD to achieve", + "type": "text" + }, + { + "bbox": [ + 170, + 655, + 222, + 667 + ], + "score": 0.92, + "content": "O ( \\epsilon _ { \\mathrm { N T R F } } + \\epsilon )", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 655, + 506, + 668 + ], + "score": 1.0, + "content": "test error. Our result extends the result for two-layer networks proved in", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 666, + 506, + 679 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 506, + 679 + ], + "score": 1.0, + "content": "(Ji and Telgarsky, 2020) to multi-layer networks. Theorem 3.5 also provides sharper results compared", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 676, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 505, + 690 + ], + "score": 1.0, + "content": "with Allen-Zhu et al. (2019a); Cao and Gu (2019) in two aspects: (1) the sample complexity is", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 688, + 506, + 703 + ], + "spans": [ + { + "bbox": [ + 105, + 689, + 169, + 703 + ], + "score": 1.0, + "content": "improved from", + "type": "text" + }, + { + "bbox": [ + 169, + 688, + 220, + 702 + ], + "score": 0.93, + "content": "n = \\widetilde { \\mathcal { O } } ( \\epsilon ^ { - 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 220, + 689, + 231, + 703 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 232, + 688, + 282, + 702 + ], + "score": 0.93, + "content": "n = \\widetilde { \\mathcal { O } } ( \\epsilon ^ { - 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 283, + 689, + 506, + 703 + ], + "score": 1.0, + "content": "; and (2) the overparamterization condition is improved", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 701, + 250, + 716 + ], + "spans": [ + { + "bbox": [ + 106, + 703, + 128, + 716 + ], + "score": 1.0, + "content": "from", + "type": "text" + }, + { + "bbox": [ + 128, + 703, + 191, + 715 + ], + "score": 0.91, + "content": "m \\geqslant \\mathrm { p o l y } ( \\epsilon ^ { - 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 703, + 203, + 716 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 203, + 701, + 246, + 715 + ], + "score": 0.92, + "content": "m = \\widetilde \\Omega ( 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 703, + 250, + 716 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 41.5 + } + ], + "page_idx": 4, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 120, + 721, + 284, + 732 + ], + "lines": [ + { + "bbox": [ + 118, + 720, + 286, + 732 + ], + "spans": [ + { + "bbox": [ + 118, + 720, + 286, + 732 + ], + "score": 1.0, + "content": "∗A detailed discussion is given in Section 4.2.", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "score": 1.0, + "content": "5", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 117 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 506, + 94 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 506, + 94 + ], + "score": 1.0, + "content": "essentially required all training data to be separable by a function in the NTRF function class with a", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 94, + 506, + 105 + ], + "spans": [ + { + "bbox": [ + 105, + 94, + 506, + 105 + ], + "score": 1.0, + "content": "constant margin, our result does not require such data separation assumptions, and allows the NTRF", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 409, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 409, + 117 + ], + "score": 1.0, + "content": "function class to misclassify a small proportion of the training data points∗.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1, + "bbox_fs": [ + 105, + 82, + 506, + 117 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 121, + 505, + 170 + ], + "lines": [ + { + "bbox": [ + 104, + 120, + 505, + 134 + ], + "spans": [ + { + "bbox": [ + 104, + 120, + 505, + 134 + ], + "score": 1.0, + "content": "We now characterize the generalization performance of neural networks trained by GD. We denote", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 127, + 502, + 150 + ], + "spans": [ + { + "bbox": [ + 106, + 132, + 280, + 146 + ], + "score": 0.92, + "content": "L _ { \\mathcal { D } } ^ { 0 - 1 } ( \\mathbf { W } ) = \\mathbb { E } _ { ( \\mathbf { x } , y ) \\sim \\mathcal { D } } [ \\mathbb { 1 } \\left\\{ f _ { \\mathbf { W } } ( \\mathbf { x } ) \\cdot y < \\bar { 0 } \\right\\} ]", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 127, + 473, + 150 + ], + "score": 1.0, + "content": "as the expected 0-1 loss (i.e., expected error) of", + "type": "text" + }, + { + "bbox": [ + 473, + 132, + 502, + 144 + ], + "score": 0.92, + "content": "f _ { \\mathbf { W } } ( \\mathbf { x } )", + "type": "inline_equation" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 145, + 505, + 160 + ], + "spans": [ + { + "bbox": [ + 105, + 145, + 439, + 160 + ], + "score": 1.0, + "content": "Theorem 3.4. Under the same assumptions as Theorem 3.3, with probability at least", + "type": "text" + }, + { + "bbox": [ + 439, + 147, + 460, + 157 + ], + "score": 0.81, + "content": "1 - \\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 145, + 505, + 160 + ], + "score": 1.0, + "content": ", the iterate", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 157, + 244, + 171 + ], + "spans": [ + { + "bbox": [ + 106, + 157, + 128, + 169 + ], + "score": 0.87, + "content": "\\mathbf { W } ^ { ( t ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 129, + 157, + 244, + 171 + ], + "score": 1.0, + "content": "of Algorithm 1 satisfies that", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5, + "bbox_fs": [ + 104, + 120, + 505, + 171 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 173, + 505, + 207 + ], + "lines": [ + { + "bbox": [ + 111, + 173, + 505, + 207 + ], + "spans": [ + { + "bbox": [ + 111, + 173, + 505, + 207 + ], + "score": 0.91, + "content": "L _ { \\mathcal { D } } ^ { 0 - 1 } ( \\mathbf { W } ^ { ( t ) } ) \\leqslant 2 L _ { S } ( \\mathbf { W } ^ { ( t ) } ) + \\widetilde { \\mathcal { O } } \\left( 4 ^ { L } L ^ { 2 } R \\sqrt { \\frac { m } { n } } \\land \\left( \\frac { L ^ { 3 / 2 } R } { \\sqrt { n } } + \\frac { L ^ { 1 1 / 3 } R ^ { 4 / 3 } } { m ^ { 1 / 6 } } \\right) \\right) + \\mathcal { O } \\left( \\sqrt { \\frac { \\log ( 1 / \\delta ) } { n } } \\right)", + "type": "interline_equation", + "image_path": "b95e5e8408f92b24960defbc915eedaa7db1c3cfc213294c10e8de799dd4caf5.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 111, + 173, + 505, + 184.33333333333334 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 111, + 184.33333333333334, + 505, + 195.66666666666669 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 111, + 195.66666666666669, + 505, + 207.00000000000003 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 209, + 189, + 221 + ], + "lines": [ + { + "bbox": [ + 105, + 208, + 189, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 208, + 133, + 222 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 133, + 209, + 185, + 221 + ], + "score": 0.91, + "content": "t = 0 , \\ldots , T", + "type": "inline_equation" + }, + { + "bbox": [ + 186, + 208, + 189, + 222 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10, + "bbox_fs": [ + 105, + 208, + 189, + 222 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 228, + 506, + 341 + ], + "lines": [ + { + "bbox": [ + 105, + 228, + 505, + 242 + ], + "spans": [ + { + "bbox": [ + 105, + 228, + 505, + 242 + ], + "score": 1.0, + "content": "Theorem 3.4 shows that the test error of the trained neural network can be bounded by its training error", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 239, + 505, + 253 + ], + "spans": [ + { + "bbox": [ + 105, + 239, + 505, + 253 + ], + "score": 1.0, + "content": "plus statistical error terms. Note that the statistical error terms is in the form of a minimum betweena", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 104, + 249, + 507, + 267 + ], + "spans": [ + { + "bbox": [ + 104, + 249, + 149, + 267 + ], + "score": 1.0, + "content": "two terms", + "type": "text" + }, + { + "bbox": [ + 150, + 251, + 209, + 266 + ], + "score": 0.93, + "content": "4 ^ { L } L ^ { 2 } R \\sqrt { m / n }", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 249, + 227, + 267 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 228, + 251, + 352, + 264 + ], + "score": 0.93, + "content": "L ^ { 3 / 2 } R / \\sqrt { n } + L ^ { 1 1 / 3 } R ^ { 4 / 3 } / m ^ { 1 / 6 }", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 249, + 492, + 267 + ], + "score": 1.0, + "content": ". Depending on the network width", + "type": "text" + }, + { + "bbox": [ + 492, + 254, + 502, + 263 + ], + "score": 0.78, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 249, + 507, + 267 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 262, + 506, + 278 + ], + "spans": [ + { + "bbox": [ + 105, + 262, + 422, + 278 + ], + "score": 1.0, + "content": "one of these two terms will be the dominating term and diminishes for large a", + "type": "text" + }, + { + "bbox": [ + 423, + 265, + 429, + 274 + ], + "score": 0.62, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 430, + 262, + 459, + 278 + ], + "score": 1.0, + "content": ": (1) if", + "type": "text" + }, + { + "bbox": [ + 459, + 263, + 502, + 276 + ], + "score": 0.92, + "content": "m = o ( n )", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 262, + 506, + 278 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 275, + 506, + 289 + ], + "spans": [ + { + "bbox": [ + 105, + 275, + 214, + 289 + ], + "score": 1.0, + "content": "the statistical error will be", + "type": "text" + }, + { + "bbox": [ + 214, + 275, + 274, + 288 + ], + "score": 0.92, + "content": "4 ^ { L } L ^ { 2 } R { \\sqrt { m / n } }", + "type": "inline_equation" + }, + { + "bbox": [ + 274, + 275, + 351, + 289 + ], + "score": 1.0, + "content": ", and diminishes as", + "type": "text" + }, + { + "bbox": [ + 352, + 278, + 359, + 286 + ], + "score": 0.75, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 360, + 275, + 442, + 289 + ], + "score": 1.0, + "content": "increases; and (2) if", + "type": "text" + }, + { + "bbox": [ + 442, + 276, + 486, + 288 + ], + "score": 0.93, + "content": "m = \\Omega ( n )", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 275, + 506, + 289 + ], + "score": 1.0, + "content": ", the", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 104, + 286, + 507, + 303 + ], + "spans": [ + { + "bbox": [ + 104, + 286, + 179, + 303 + ], + "score": 1.0, + "content": "statistical error is", + "type": "text" + }, + { + "bbox": [ + 179, + 288, + 303, + 302 + ], + "score": 0.92, + "content": "L ^ { 3 / 2 } R / \\sqrt { n } + L ^ { 1 1 / 3 } R ^ { 4 / 3 } / m ^ { 1 / 6 }", + "type": "inline_equation" + }, + { + "bbox": [ + 303, + 286, + 410, + 303 + ], + "score": 1.0, + "content": ", and again goes to zero as", + "type": "text" + }, + { + "bbox": [ + 411, + 291, + 418, + 299 + ], + "score": 0.76, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 418, + 286, + 507, + 303 + ], + "score": 1.0, + "content": "increases. Moreover,", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 104, + 300, + 506, + 315 + ], + "spans": [ + { + "bbox": [ + 104, + 302, + 318, + 315 + ], + "score": 1.0, + "content": "in this paper we have a specific focus on the setting", + "type": "text" + }, + { + "bbox": [ + 318, + 300, + 362, + 315 + ], + "score": 0.93, + "content": "m = \\widetilde { \\mathcal { O } } ( 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 302, + 506, + 315 + ], + "score": 1.0, + "content": ", under which Theorem 3.4 gives a", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 313, + 506, + 329 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 201, + 329 + ], + "score": 1.0, + "content": "statistical error of order", + "type": "text" + }, + { + "bbox": [ + 201, + 313, + 241, + 327 + ], + "score": 0.93, + "content": "\\widetilde { \\mathcal { O } } ( n ^ { - 1 / 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 242, + 313, + 506, + 329 + ], + "score": 1.0, + "content": ". This distinguishes our result from previous generalization bounds", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 326, + 491, + 341 + ], + "spans": [ + { + "bbox": [ + 106, + 328, + 443, + 341 + ], + "score": 1.0, + "content": "for deep networks (Cao and Gu, 2020; 2019), which cannot be applied to the setting", + "type": "text" + }, + { + "bbox": [ + 443, + 326, + 487, + 341 + ], + "score": 0.93, + "content": "m = \\widetilde { \\mathcal { O } } ( 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 488, + 328, + 491, + 341 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 15, + "bbox_fs": [ + 104, + 228, + 507, + 341 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 344, + 506, + 453 + ], + "lines": [ + { + "bbox": [ + 105, + 344, + 506, + 358 + ], + "spans": [ + { + "bbox": [ + 105, + 344, + 306, + 358 + ], + "score": 1.0, + "content": "We note that for two-layer ReLU networks (i.e.,", + "type": "text" + }, + { + "bbox": [ + 307, + 346, + 334, + 356 + ], + "score": 0.87, + "content": "L = 2", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 344, + 506, + 358 + ], + "score": 1.0, + "content": ") Ji and Telgarsky (2020) proves a tighter", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 107, + 356, + 506, + 371 + ], + "spans": [ + { + "bbox": [ + 107, + 357, + 150, + 371 + ], + "score": 0.92, + "content": "{ \\cal \\tilde { O } } ( 1 / n ^ { 1 / 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 150, + 356, + 425, + 371 + ], + "score": 1.0, + "content": "generalization error bound regardless of the neural networks width", + "type": "text" + }, + { + "bbox": [ + 425, + 361, + 434, + 369 + ], + "score": 0.77, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 435, + 356, + 506, + 371 + ], + "score": 1.0, + "content": ", while our result", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 104, + 370, + 506, + 384 + ], + "spans": [ + { + "bbox": [ + 104, + 370, + 322, + 384 + ], + "score": 1.0, + "content": "(Theorem 3.4), in the two-layer case, can only give", + "type": "text" + }, + { + "bbox": [ + 323, + 370, + 366, + 384 + ], + "score": 0.94, + "content": "{ \\cal \\tilde { O } } ( 1 / n ^ { 1 / 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 366, + 370, + 506, + 384 + ], + "score": 1.0, + "content": "generalization error bound when", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 107, + 383, + 506, + 398 + ], + "spans": [ + { + "bbox": [ + 107, + 383, + 153, + 397 + ], + "score": 0.93, + "content": "m = \\widetilde { \\cal O } ( 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 153, + 384, + 166, + 398 + ], + "score": 1.0, + "content": "or", + "type": "text" + }, + { + "bbox": [ + 167, + 383, + 217, + 397 + ], + "score": 0.94, + "content": "m = \\widetilde \\Omega ( n ^ { 3 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 384, + 506, + 398 + ], + "score": 1.0, + "content": ". However, different from our proof technique that basically uses the", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 395, + 506, + 409 + ], + "spans": [ + { + "bbox": [ + 105, + 395, + 506, + 409 + ], + "score": 1.0, + "content": "(approximated) linearity of the neural network function, their proof technique largely relies on the", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 104, + 406, + 506, + 420 + ], + "spans": [ + { + "bbox": [ + 104, + 406, + 506, + 420 + ], + "score": 1.0, + "content": "1-homogeneous property of the neural network, which restricted their theory in two-layer cases. An", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 417, + 506, + 433 + ], + "spans": [ + { + "bbox": [ + 105, + 419, + 321, + 433 + ], + "score": 1.0, + "content": "interesting research direction is to explore whether a", + "type": "text" + }, + { + "bbox": [ + 322, + 417, + 365, + 432 + ], + "score": 0.93, + "content": "{ \\cal \\tilde { O } } ( 1 / n ^ { 1 / 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 365, + 419, + 506, + 433 + ], + "score": 1.0, + "content": "generalization error bound can be", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 430, + 506, + 443 + ], + "spans": [ + { + "bbox": [ + 105, + 430, + 506, + 443 + ], + "score": 1.0, + "content": "also established for deep networks (regardless of the network width), which we will leave it as a", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 441, + 158, + 454 + ], + "spans": [ + { + "bbox": [ + 105, + 441, + 158, + 454 + ], + "score": 1.0, + "content": "future work.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 24, + "bbox_fs": [ + 104, + 344, + 506, + 454 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 466, + 276, + 478 + ], + "lines": [ + { + "bbox": [ + 105, + 466, + 277, + 479 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 277, + 479 + ], + "score": 1.0, + "content": "3.2 STOCHASTIC GRADIENT DESCENT", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 106, + 486, + 504, + 509 + ], + "lines": [ + { + "bbox": [ + 106, + 486, + 505, + 500 + ], + "spans": [ + { + "bbox": [ + 106, + 486, + 505, + 500 + ], + "score": 1.0, + "content": "Here we study the performance of SGD for training deep ReLU networks. The following theorem", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 498, + 360, + 510 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 360, + 510 + ], + "score": 1.0, + "content": "establishes a generalization error bound for the output of SGD.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5, + "bbox_fs": [ + 105, + 486, + 505, + 510 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 511, + 504, + 537 + ], + "lines": [ + { + "bbox": [ + 104, + 507, + 507, + 529 + ], + "spans": [ + { + "bbox": [ + 104, + 507, + 185, + 529 + ], + "score": 1.0, + "content": "Theorem 3.5. For", + "type": "text" + }, + { + "bbox": [ + 185, + 512, + 224, + 523 + ], + "score": 0.91, + "content": "\\delta , R > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 507, + 241, + 529 + ], + "score": 1.0, + "content": ", let", + "type": "text" + }, + { + "bbox": [ + 242, + 511, + 433, + 525 + ], + "score": 0.9, + "content": "\\begin{array} { r } { \\epsilon _ { \\mathrm { N T R F } } = \\operatorname* { i n f } _ { \\mathit { F } \\in \\mathcal { F } ( \\mathbf { W } ^ { ( 0 ) } , R ) } n ^ { - 1 } \\sum _ { i = 1 } ^ { n } \\ell \\big [ y _ { i } F ( \\mathbf { x } _ { i } ) \\big ] } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 433, + 507, + 507, + 529 + ], + "score": 1.0, + "content": "be the minimum", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 523, + 392, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 523, + 265, + 538 + ], + "score": 1.0, + "content": "training loss achievable by functions in", + "type": "text" + }, + { + "bbox": [ + 265, + 525, + 316, + 538 + ], + "score": 0.93, + "content": "{ \\mathcal { F } } ( { \\mathbf { W } } ^ { ( 0 ) } , R )", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 523, + 392, + 538 + ], + "score": 1.0, + "content": ". Then there exists", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5, + "bbox_fs": [ + 104, + 507, + 507, + 538 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 213, + 541, + 397, + 557 + ], + "lines": [ + { + "bbox": [ + 213, + 541, + 397, + 557 + ], + "spans": [ + { + "bbox": [ + 213, + 541, + 397, + 557 + ], + "score": 0.91, + "content": "m ^ { * } ( \\delta , R , L ) = \\widetilde { \\mathcal { O } } \\big ( \\mathrm { p o l y } ( R , L ) \\cdot \\log ^ { 4 / 3 } ( n / \\delta ) \\big ) ,", + "type": "interline_equation", + "image_path": "5b659fcc31b0998af840ee00215cf8efd002d302d4e5c891078a7acd6fdef59d.jpg" + } + ] + } + ], + "index": 34, + "virtual_lines": [ + { + "bbox": [ + 213, + 541, + 397, + 557 + ], + "spans": [], + "index": 34 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 561, + 502, + 587 + ], + "lines": [ + { + "bbox": [ + 104, + 559, + 501, + 575 + ], + "spans": [ + { + "bbox": [ + 104, + 559, + 155, + 575 + ], + "score": 1.0, + "content": "such that if", + "type": "text" + }, + { + "bbox": [ + 155, + 561, + 230, + 574 + ], + "score": 0.92, + "content": "m \\geqslant m ^ { * } ( \\delta , R , L )", + "type": "inline_equation" + }, + { + "bbox": [ + 230, + 559, + 334, + 575 + ], + "score": 1.0, + "content": ", with probability at least", + "type": "text" + }, + { + "bbox": [ + 335, + 562, + 358, + 572 + ], + "score": 0.84, + "content": "1 - \\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 359, + 559, + 445, + 575 + ], + "score": 1.0, + "content": ", SGD with step size", + "type": "text" + }, + { + "bbox": [ + 445, + 561, + 501, + 575 + ], + "score": 0.92, + "content": "\\eta = \\Theta \\bigl ( m ^ { - 1 }", + "type": "inline_equation" + } + ], + "index": 35 + }, + { + "bbox": [ + 107, + 572, + 246, + 590 + ], + "spans": [ + { + "bbox": [ + 107, + 573, + 205, + 588 + ], + "score": 0.91, + "content": "( L R ^ { 2 } n ^ { - 1 } \\epsilon _ { \\mathrm { N T R F } } ^ { - 1 } \\land L ^ { - 1 } ) \\big \\rangle", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 572, + 246, + 590 + ], + "score": 1.0, + "content": "achieves", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5, + "bbox_fs": [ + 104, + 559, + 501, + 590 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 203, + 591, + 407, + 616 + ], + "lines": [ + { + "bbox": [ + 203, + 591, + 407, + 616 + ], + "spans": [ + { + "bbox": [ + 203, + 591, + 407, + 616 + ], + "score": 0.91, + "content": "\\mathbb { E } \\big [ L _ { \\mathcal { D } } ^ { 0 - 1 } ( \\widehat { \\mathbf { W } } ) \\big ] \\leqslant \\frac { 8 L ^ { 2 } R ^ { 2 } } { n } + \\frac { 8 \\log ( 2 / \\delta ) } { n } + 2 4 \\epsilon _ { \\mathrm { N T R F } } ,", + "type": "interline_equation", + "image_path": "bc02cd9dfc5f0fffdfc83f81e6132f2b01e2c96b125348a2147d1fdf2f91dc11.jpg" + } + ] + } + ], + "index": 37, + "virtual_lines": [ + { + "bbox": [ + 203, + 591, + 407, + 616 + ], + "spans": [], + "index": 37 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 620, + 459, + 634 + ], + "lines": [ + { + "bbox": [ + 104, + 617, + 456, + 637 + ], + "spans": [ + { + "bbox": [ + 104, + 617, + 331, + 637 + ], + "score": 1.0, + "content": "where the expectation is taken over the uniform draw of", + "type": "text" + }, + { + "bbox": [ + 332, + 619, + 344, + 632 + ], + "score": 0.84, + "content": "\\widehat { \\bf W }", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 617, + 368, + 637 + ], + "score": 1.0, + "content": "from", + "type": "text" + }, + { + "bbox": [ + 368, + 620, + 456, + 634 + ], + "score": 0.86, + "content": "\\{ \\mathbf { W } ^ { ( 0 ) } , \\ldots , \\mathbf { W } ^ { ( n - 1 ) } \\}", + "type": "inline_equation" + } + ], + "index": 38 + } + ], + "index": 38, + "bbox_fs": [ + 104, + 617, + 456, + 637 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 642, + 506, + 716 + ], + "lines": [ + { + "bbox": [ + 105, + 642, + 506, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 643, + 138, + 657 + ], + "score": 1.0, + "content": "For any", + "type": "text" + }, + { + "bbox": [ + 139, + 645, + 162, + 655 + ], + "score": 0.89, + "content": "\\epsilon > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 643, + 248, + 657 + ], + "score": 1.0, + "content": ", Theorem 3.5 gives a", + "type": "text" + }, + { + "bbox": [ + 248, + 642, + 279, + 657 + ], + "score": 0.93, + "content": "\\tilde { \\mathcal { O } } ( \\epsilon ^ { - 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 643, + 506, + 657 + ], + "score": 1.0, + "content": "sample complexity for deep ReLU networks trained with", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 655, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 170, + 668 + ], + "score": 1.0, + "content": "SGD to achieve", + "type": "text" + }, + { + "bbox": [ + 170, + 655, + 222, + 667 + ], + "score": 0.92, + "content": "O ( \\epsilon _ { \\mathrm { N T R F } } + \\epsilon )", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 655, + 506, + 668 + ], + "score": 1.0, + "content": "test error. Our result extends the result for two-layer networks proved in", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 666, + 506, + 679 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 506, + 679 + ], + "score": 1.0, + "content": "(Ji and Telgarsky, 2020) to multi-layer networks. Theorem 3.5 also provides sharper results compared", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 676, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 505, + 690 + ], + "score": 1.0, + "content": "with Allen-Zhu et al. (2019a); Cao and Gu (2019) in two aspects: (1) the sample complexity is", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 688, + 506, + 703 + ], + "spans": [ + { + "bbox": [ + 105, + 689, + 169, + 703 + ], + "score": 1.0, + "content": "improved from", + "type": "text" + }, + { + "bbox": [ + 169, + 688, + 220, + 702 + ], + "score": 0.93, + "content": "n = \\widetilde { \\mathcal { O } } ( \\epsilon ^ { - 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 220, + 689, + 231, + 703 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 232, + 688, + 282, + 702 + ], + "score": 0.93, + "content": "n = \\widetilde { \\mathcal { O } } ( \\epsilon ^ { - 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 283, + 689, + 506, + 703 + ], + "score": 1.0, + "content": "; and (2) the overparamterization condition is improved", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 701, + 250, + 716 + ], + "spans": [ + { + "bbox": [ + 106, + 703, + 128, + 716 + ], + "score": 1.0, + "content": "from", + "type": "text" + }, + { + "bbox": [ + 128, + 703, + 191, + 715 + ], + "score": 0.91, + "content": "m \\geqslant \\mathrm { p o l y } ( \\epsilon ^ { - 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 703, + 203, + 716 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 203, + 701, + 246, + 715 + ], + "score": 0.92, + "content": "m = \\widetilde \\Omega ( 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 703, + 250, + 716 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 41.5, + "bbox_fs": [ + 105, + 642, + 506, + 716 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 81, + 306, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 79, + 307, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 79, + 307, + 96 + ], + "score": 1.0, + "content": "4 DISCUSSION ON THE NTRF CLASS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 106, + 505, + 174 + ], + "lines": [ + { + "bbox": [ + 106, + 105, + 504, + 119 + ], + "spans": [ + { + "bbox": [ + 106, + 105, + 331, + 119 + ], + "score": 1.0, + "content": "Our theoretical results in Section 3 rely on the radius (i.e.,", + "type": "text" + }, + { + "bbox": [ + 332, + 107, + 343, + 117 + ], + "score": 0.67, + "content": "R )", + "type": "inline_equation" + }, + { + "bbox": [ + 343, + 105, + 452, + 119 + ], + "score": 1.0, + "content": "of the NTRF function class", + "type": "text" + }, + { + "bbox": [ + 452, + 106, + 504, + 119 + ], + "score": 0.93, + "content": "{ \\mathcal { F } } ( { \\bf W } ^ { ( 0 ) } , R )", + "type": "inline_equation" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 116, + 506, + 132 + ], + "spans": [ + { + "bbox": [ + 105, + 116, + 334, + 132 + ], + "score": 1.0, + "content": "and the minimum training loss achievable by functions in", + "type": "text" + }, + { + "bbox": [ + 335, + 118, + 386, + 131 + ], + "score": 0.93, + "content": "{ \\mathcal { F } } ( { \\bf W } ^ { ( 0 ) } , R )", + "type": "inline_equation" + }, + { + "bbox": [ + 386, + 116, + 506, + 132 + ], + "score": 1.0, + "content": ", i.e., \u000fNTRF. Note that a larger", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 107, + 130, + 506, + 143 + ], + "spans": [ + { + "bbox": [ + 107, + 130, + 115, + 140 + ], + "score": 0.72, + "content": "R", + "type": "inline_equation" + }, + { + "bbox": [ + 116, + 130, + 229, + 143 + ], + "score": 1.0, + "content": "naturally implies a smaller", + "type": "text" + }, + { + "bbox": [ + 229, + 132, + 253, + 141 + ], + "score": 0.6, + "content": "\\epsilon _ { \\mathrm { N T R F } }", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 130, + 412, + 143 + ], + "score": 1.0, + "content": ", but also leads to worse conditions on", + "type": "text" + }, + { + "bbox": [ + 412, + 132, + 422, + 140 + ], + "score": 0.6, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 422, + 130, + 506, + 143 + ], + "score": 1.0, + "content": ". In this section, for", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 141, + 505, + 153 + ], + "spans": [ + { + "bbox": [ + 105, + 141, + 265, + 153 + ], + "score": 1.0, + "content": "any (arbitrarily small) target error rate", + "type": "text" + }, + { + "bbox": [ + 266, + 141, + 290, + 151 + ], + "score": 0.9, + "content": "\\epsilon > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 141, + 505, + 153 + ], + "score": 1.0, + "content": ", we discuss various data assumptions studied in the", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 151, + 505, + 164 + ], + "spans": [ + { + "bbox": [ + 105, + 151, + 284, + 164 + ], + "score": 1.0, + "content": "literature under which our results can lead to", + "type": "text" + }, + { + "bbox": [ + 285, + 152, + 306, + 164 + ], + "score": 0.91, + "content": "\\mathcal { O } ( \\epsilon )", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 151, + 505, + 164 + ], + "score": 1.0, + "content": "training/test errors, and specify the network width", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 164, + 160, + 176 + ], + "spans": [ + { + "bbox": [ + 106, + 164, + 160, + 176 + ], + "score": 1.0, + "content": "requirement.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 3.5 + }, + { + "type": "title", + "bbox": [ + 107, + 187, + 403, + 200 + ], + "lines": [ + { + "bbox": [ + 106, + 187, + 404, + 200 + ], + "spans": [ + { + "bbox": [ + 106, + 187, + 404, + 200 + ], + "score": 1.0, + "content": "4.1 DATA SEPARABILITY BY NEURAL TANGENT RANDOM FEATURE", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 107, + 208, + 505, + 231 + ], + "lines": [ + { + "bbox": [ + 105, + 208, + 505, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 208, + 505, + 222 + ], + "score": 1.0, + "content": "In this subsection, we consider the setting where a large fraction of the training data can be linearly", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 220, + 450, + 232 + ], + "spans": [ + { + "bbox": [ + 105, + 220, + 450, + 232 + ], + "score": 1.0, + "content": "separated by the neural tangent random features. The assumption is stated as follows.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5 + }, + { + "type": "text", + "bbox": [ + 106, + 234, + 504, + 261 + ], + "lines": [ + { + "bbox": [ + 104, + 230, + 506, + 250 + ], + "spans": [ + { + "bbox": [ + 104, + 230, + 353, + 250 + ], + "score": 1.0, + "content": "Assumption 4.1. There exists a collection of matrices ř", + "type": "text" + }, + { + "bbox": [ + 354, + 234, + 458, + 248 + ], + "score": 0.89, + "content": "\\begin{array} { r l r } { \\mathbf { U } ^ { * } } & { { } = } & { \\{ \\mathbf { U } _ { 1 } ^ { * } , \\cdot \\cdot \\cdot , \\mathbf { U } _ { L } ^ { * } \\} } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 459, + 230, + 506, + 250 + ], + "score": 1.0, + "content": "satisfying", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 243, + 432, + 265 + ], + "spans": [ + { + "bbox": [ + 106, + 246, + 179, + 262 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\sum _ { l = 1 } ^ { L } \\| \\mathbf { U } _ { l } ^ { * } \\| _ { F } ^ { 2 } = 1 } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 179, + 243, + 266, + 265 + ], + "score": 1.0, + "content": ", such that for at least", + "type": "text" + }, + { + "bbox": [ + 266, + 248, + 296, + 261 + ], + "score": 0.92, + "content": "( 1 - \\rho )", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 243, + 432, + 265 + ], + "score": 1.0, + "content": "fraction of training data we have", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5 + }, + { + "type": "interline_equation", + "bbox": [ + 241, + 267, + 369, + 282 + ], + "lines": [ + { + "bbox": [ + 241, + 267, + 369, + 282 + ], + "spans": [ + { + "bbox": [ + 241, + 267, + 369, + 282 + ], + "score": 0.9, + "content": "\\begin{array} { r } { y _ { i } \\big \\langle \\nabla f _ { \\mathbf { W } ^ { ( 0 ) } } ( \\mathbf { x } _ { i } ) , \\mathbf { U } ^ { * } \\big \\rangle \\gtrsim m ^ { 1 / 2 } \\gamma , } \\end{array}", + "type": "interline_equation", + "image_path": "fb8ae2dd56d5ced7e90f86993a451590aee7f4906f791c49a7229754830a4dd6.jpg" + } + ] + } + ], + "index": 12, + "virtual_lines": [ + { + "bbox": [ + 241, + 267, + 369, + 282 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 289, + 330, + 301 + ], + "lines": [ + { + "bbox": [ + 105, + 286, + 327, + 304 + ], + "spans": [ + { + "bbox": [ + 105, + 286, + 132, + 304 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 292, + 140, + 301 + ], + "score": 0.81, + "content": "\\gamma", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 286, + 288, + 304 + ], + "score": 1.0, + "content": "is an absolute positive constant† and", + "type": "text" + }, + { + "bbox": [ + 288, + 289, + 327, + 302 + ], + "score": 0.91, + "content": "\\rho \\in [ 0 , 1 )", + "type": "inline_equation" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 106, + 310, + 482, + 323 + ], + "lines": [ + { + "bbox": [ + 105, + 310, + 481, + 324 + ], + "spans": [ + { + "bbox": [ + 105, + 310, + 469, + 324 + ], + "score": 1.0, + "content": "The following corollary provides an upper bound of \u000fNTRF under Assumption 4.1 for some", + "type": "text" + }, + { + "bbox": [ + 469, + 312, + 478, + 321 + ], + "score": 0.81, + "content": "R", + "type": "inline_equation" + }, + { + "bbox": [ + 478, + 310, + 481, + 324 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 105, + 326, + 504, + 350 + ], + "lines": [ + { + "bbox": [ + 105, + 325, + 506, + 342 + ], + "spans": [ + { + "bbox": [ + 105, + 325, + 302, + 342 + ], + "score": 1.0, + "content": "Proposition 4.2. Under Assumption 4.1, for any", + "type": "text" + }, + { + "bbox": [ + 302, + 328, + 335, + 339 + ], + "score": 0.91, + "content": "\\epsilon , \\delta > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 325, + 347, + 342 + ], + "score": 1.0, + "content": ", if", + "type": "text" + }, + { + "bbox": [ + 347, + 325, + 490, + 341 + ], + "score": 0.91, + "content": "R \\geqslant C \\big [ \\log ^ { 1 / 2 } ( n / \\delta ) + \\log ( 1 / \\epsilon ) \\big ] / \\gamma", + "type": "inline_equation" + }, + { + "bbox": [ + 491, + 325, + 506, + 342 + ], + "score": 1.0, + "content": "for", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 338, + 358, + 351 + ], + "spans": [ + { + "bbox": [ + 105, + 338, + 201, + 351 + ], + "score": 1.0, + "content": "some absolute constant", + "type": "text" + }, + { + "bbox": [ + 201, + 339, + 210, + 349 + ], + "score": 0.82, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 338, + 331, + 351 + ], + "score": 1.0, + "content": ", then with probability at least", + "type": "text" + }, + { + "bbox": [ + 331, + 339, + 354, + 349 + ], + "score": 0.85, + "content": "1 - \\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 338, + 358, + 351 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5 + }, + { + "type": "interline_equation", + "bbox": [ + 185, + 356, + 425, + 388 + ], + "lines": [ + { + "bbox": [ + 185, + 356, + 425, + 388 + ], + "spans": [ + { + "bbox": [ + 185, + 356, + 425, + 388 + ], + "score": 0.93, + "content": "\\epsilon _ { \\mathrm { N T R F } } : = \\operatorname* { i n f } _ { F \\in \\mathcal { F } ( \\mathbf { W } ^ { ( 0 ) } , R ) } n ^ { - 1 } \\sum _ { i = 1 } ^ { n } \\ell \\bigl ( y _ { i } F ( \\mathbf { x } _ { i } ) \\bigr ) \\leqslant \\epsilon + \\rho \\cdot \\mathcal { O } ( R ) .", + "type": "interline_equation", + "image_path": "88e6fa0b45945bc61969653e9c5b7c85b3865e5771cf9f7e4f1b6c2e8d693250.jpg" + } + ] + } + ], + "index": 17.5, + "virtual_lines": [ + { + "bbox": [ + 185, + 356, + 425, + 372.0 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 185, + 372.0, + 425, + 388.0 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 397, + 506, + 504 + ], + "lines": [ + { + "bbox": [ + 105, + 397, + 505, + 412 + ], + "spans": [ + { + "bbox": [ + 105, + 397, + 505, + 412 + ], + "score": 1.0, + "content": "Proposition 4.2 covers the setting where the NTRF function class is allowed to misclassify training", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 409, + 505, + 422 + ], + "spans": [ + { + "bbox": [ + 105, + 409, + 505, + 422 + ], + "score": 1.0, + "content": "data, while most of existing work typically assumes that all training data can be perfectly separated", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 420, + 506, + 433 + ], + "spans": [ + { + "bbox": [ + 105, + 420, + 216, + 433 + ], + "score": 1.0, + "content": "with constant margin (i.e.,", + "type": "text" + }, + { + "bbox": [ + 217, + 421, + 243, + 432 + ], + "score": 0.89, + "content": "\\rho = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 243, + 420, + 506, + 433 + ], + "score": 1.0, + "content": ") (Ji and Telgarsky, 2020; Shamir, 2020). Our results show that", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 432, + 506, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 432, + 289, + 446 + ], + "score": 1.0, + "content": "for sufficiently small misclassification ratio", + "type": "text" + }, + { + "bbox": [ + 289, + 433, + 332, + 445 + ], + "score": 0.91, + "content": "\\rho = \\mathcal { O } ( \\epsilon )", + "type": "inline_equation" + }, + { + "bbox": [ + 332, + 432, + 374, + 446 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + }, + { + "bbox": [ + 375, + 432, + 434, + 445 + ], + "score": 0.92, + "content": "\\epsilon _ { \\mathrm { N T R F } } = \\tilde { O } ( \\epsilon )", + "type": "inline_equation" + }, + { + "bbox": [ + 434, + 432, + 506, + 446 + ], + "score": 1.0, + "content": "by choosing the", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 443, + 507, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 443, + 178, + 457 + ], + "score": 1.0, + "content": "radius parameter", + "type": "text" + }, + { + "bbox": [ + 179, + 445, + 188, + 454 + ], + "score": 0.74, + "content": "R", + "type": "inline_equation" + }, + { + "bbox": [ + 188, + 443, + 253, + 457 + ], + "score": 1.0, + "content": "logarithimic in", + "type": "text" + }, + { + "bbox": [ + 254, + 444, + 282, + 455 + ], + "score": 0.63, + "content": "n , \\delta ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 283, + 443, + 306, + 457 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 306, + 444, + 321, + 454 + ], + "score": 0.87, + "content": "\\epsilon ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 443, + 507, + 457 + ], + "score": 1.0, + "content": ". Substituting this result into Theorems 3.3,˘", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 454, + 503, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 454, + 363, + 468 + ], + "score": 1.0, + "content": "3.4 and 3.5, it can be shown that a neural network with width", + "type": "text" + }, + { + "bbox": [ + 363, + 455, + 503, + 467 + ], + "score": 0.9, + "content": "\\bar { m \\mathbf { \\bar { \\alpha } } } = \\mathrm { p o l y } ( L , \\log ( n / \\delta ) , \\log ( 1 / \\epsilon ) ) )", + "type": "inline_equation" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 466, + 506, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 506, + 478 + ], + "score": 1.0, + "content": "suffices to guarantee good optimization and generalization performances for both GD and SGD.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 477, + 506, + 492 + ], + "spans": [ + { + "bbox": [ + 105, + 478, + 446, + 492 + ], + "score": 1.0, + "content": "Consequently, we can obtain that the bounds on the test error for GD and SGD are", + "type": "text" + }, + { + "bbox": [ + 446, + 477, + 486, + 491 + ], + "score": 0.93, + "content": "\\widetilde { \\mathcal { O } } ( n ^ { - 1 / 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 478, + 506, + 492 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 107, + 489, + 195, + 507 + ], + "spans": [ + { + "bbox": [ + 107, + 490, + 140, + 504 + ], + "score": 0.92, + "content": "\\tilde { \\mathcal { O } } ( n ^ { - 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 489, + 195, + 507 + ], + "score": 1.0, + "content": "respectively.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 23 + }, + { + "type": "title", + "bbox": [ + 107, + 517, + 399, + 529 + ], + "lines": [ + { + "bbox": [ + 106, + 517, + 401, + 530 + ], + "spans": [ + { + "bbox": [ + 106, + 517, + 401, + 530 + ], + "score": 1.0, + "content": "4.2 DATA SEPARABILITY BY SHALLOW NEURAL TANGENT MODEL", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 105, + 538, + 503, + 561 + ], + "lines": [ + { + "bbox": [ + 106, + 538, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 106, + 538, + 505, + 551 + ], + "score": 1.0, + "content": "In this subsection, we study the data separation assumption made in Ji and Telgarsky (2020) and show", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 549, + 452, + 562 + ], + "spans": [ + { + "bbox": [ + 106, + 549, + 452, + 562 + ], + "score": 1.0, + "content": "that our results cover this particular setting. We first restate the assumption as follows.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5 + }, + { + "type": "text", + "bbox": [ + 109, + 563, + 502, + 577 + ], + "lines": [ + { + "bbox": [ + 107, + 562, + 505, + 578 + ], + "spans": [ + { + "bbox": [ + 107, + 562, + 229, + 578 + ], + "score": 1.0, + "content": "Assumption 4.3. There exists", + "type": "text" + }, + { + "bbox": [ + 230, + 563, + 295, + 577 + ], + "score": 0.91, + "content": "\\overline { { \\mathbf { u } } } ( \\cdot ) : \\mathbb { R } ^ { d } \\mathbb { R } ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 295, + 562, + 312, + 578 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 313, + 565, + 338, + 576 + ], + "score": 0.91, + "content": "\\gamma \\geqslant 0", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 562, + 377, + 578 + ], + "score": 1.0, + "content": "such that", + "type": "text" + }, + { + "bbox": [ + 377, + 564, + 428, + 577 + ], + "score": 0.93, + "content": "\\| \\overline { { \\mathbf { u } } } ( \\mathbf { z } ) \\| _ { 2 } \\leqslant 1", + "type": "inline_equation" + }, + { + "bbox": [ + 429, + 562, + 455, + 578 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 456, + 564, + 484, + 575 + ], + "score": 0.9, + "content": "\\mathbf { z } \\in \\mathbb { R } ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 485, + 562, + 505, + 578 + ], + "score": 1.0, + "content": ", and", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "interline_equation", + "bbox": [ + 219, + 582, + 392, + 608 + ], + "lines": [ + { + "bbox": [ + 219, + 582, + 392, + 608 + ], + "spans": [ + { + "bbox": [ + 219, + 582, + 392, + 608 + ], + "score": 0.93, + "content": "y _ { i } \\int _ { \\mathbb { R } ^ { d } } \\sigma ^ { \\prime } ( \\langle \\mathbf { z } , \\mathbf { x } _ { i } \\rangle ) \\cdot \\langle \\overline { { \\mathbf { u } } } ( \\mathbf { z } ) , \\mathbf { x } _ { i } \\rangle \\mathrm { d } \\mu _ { \\mathrm { N } } ( \\mathbf { z } ) \\geqslant \\gamma", + "type": "interline_equation", + "image_path": "15a7b3ef0f33f22ac342fd80cebdbfee69026c61246ae676d0771d63461ac9f2.jpg" + } + ] + } + ], + "index": 32, + "virtual_lines": [ + { + "bbox": [ + 219, + 582, + 392, + 608 + ], + "spans": [], + "index": 32 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 613, + 383, + 626 + ], + "lines": [ + { + "bbox": [ + 106, + 613, + 384, + 627 + ], + "spans": [ + { + "bbox": [ + 106, + 613, + 133, + 627 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 133, + 614, + 161, + 626 + ], + "score": 0.93, + "content": "i \\in [ n ]", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 613, + 191, + 627 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 192, + 614, + 217, + 626 + ], + "score": 0.92, + "content": "\\mu _ { N } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 613, + 384, + 627 + ], + "score": 1.0, + "content": "denotes the standard normal distribution.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 106, + 634, + 505, + 712 + ], + "lines": [ + { + "bbox": [ + 106, + 635, + 506, + 648 + ], + "spans": [ + { + "bbox": [ + 106, + 635, + 506, + 648 + ], + "score": 1.0, + "content": "Assumption 4.3 is related to the linear separability of the gradients of the first layer parameters at", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 646, + 505, + 658 + ], + "spans": [ + { + "bbox": [ + 106, + 646, + 505, + 658 + ], + "score": 1.0, + "content": "random initialization, where the randomness is replaced with an integral by taking the infinite width", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 657, + 505, + 669 + ], + "spans": [ + { + "bbox": [ + 105, + 657, + 505, + 669 + ], + "score": 1.0, + "content": "limit. Note that similar assumptions have also been studied in (Cao and Gu, 2020; Nitanda and", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 667, + 505, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 505, + 680 + ], + "score": 1.0, + "content": "Suzuki, 2019; Frei et al., 2019). The assumption made in (Cao and Gu, 2020; Frei et al., 2019) uses", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 678, + 505, + 691 + ], + "spans": [ + { + "bbox": [ + 106, + 678, + 505, + 691 + ], + "score": 1.0, + "content": "gradients with respect to the second layer weights instead of the first layer ones. In the following, we", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 689, + 505, + 703 + ], + "spans": [ + { + "bbox": [ + 105, + 689, + 505, + 703 + ], + "score": 1.0, + "content": "mainly focus on Assumption 4.3, while our result can also be generalized to cover the setting in (Cao", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 700, + 236, + 713 + ], + "spans": [ + { + "bbox": [ + 106, + 700, + 236, + 713 + ], + "score": 1.0, + "content": "and Gu, 2020; Frei et al., 2019).", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 37 + } + ], + "page_idx": 5, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 117, + 720, + 443, + 733 + ], + "lines": [ + { + "bbox": [ + 117, + 717, + 444, + 735 + ], + "spans": [ + { + "bbox": [ + 117, + 717, + 162, + 735 + ], + "score": 1.0, + "content": "†The factor", + "type": "text" + }, + { + "bbox": [ + 162, + 720, + 182, + 731 + ], + "score": 0.87, + "content": "m ^ { 1 / 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 717, + 270, + 735 + ], + "score": 1.0, + "content": "is introduced here since", + "type": "text" + }, + { + "bbox": [ + 270, + 721, + 332, + 732 + ], + "score": 0.92, + "content": "\\| \\nabla _ { \\mathbf { W } ^ { ( 0 ) } } f ( \\mathbf { x } _ { i } ) \\| _ { F }", + "type": "inline_equation" + }, + { + "bbox": [ + 332, + 717, + 406, + 735 + ], + "score": 1.0, + "content": "is typically of order", + "type": "text" + }, + { + "bbox": [ + 406, + 720, + 440, + 732 + ], + "score": 0.92, + "content": "O ( m ^ { 1 / 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 717, + 444, + 735 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 18, + "width": 3 + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 26, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 310, + 761 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 310, + 761 + ], + "score": 1.0, + "content": "6", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 81, + 306, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 79, + 307, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 79, + 307, + 96 + ], + "score": 1.0, + "content": "4 DISCUSSION ON THE NTRF CLASS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 106, + 505, + 174 + ], + "lines": [ + { + "bbox": [ + 106, + 105, + 504, + 119 + ], + "spans": [ + { + "bbox": [ + 106, + 105, + 331, + 119 + ], + "score": 1.0, + "content": "Our theoretical results in Section 3 rely on the radius (i.e.,", + "type": "text" + }, + { + "bbox": [ + 332, + 107, + 343, + 117 + ], + "score": 0.67, + "content": "R )", + "type": "inline_equation" + }, + { + "bbox": [ + 343, + 105, + 452, + 119 + ], + "score": 1.0, + "content": "of the NTRF function class", + "type": "text" + }, + { + "bbox": [ + 452, + 106, + 504, + 119 + ], + "score": 0.93, + "content": "{ \\mathcal { F } } ( { \\bf W } ^ { ( 0 ) } , R )", + "type": "inline_equation" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 116, + 506, + 132 + ], + "spans": [ + { + "bbox": [ + 105, + 116, + 334, + 132 + ], + "score": 1.0, + "content": "and the minimum training loss achievable by functions in", + "type": "text" + }, + { + "bbox": [ + 335, + 118, + 386, + 131 + ], + "score": 0.93, + "content": "{ \\mathcal { F } } ( { \\bf W } ^ { ( 0 ) } , R )", + "type": "inline_equation" + }, + { + "bbox": [ + 386, + 116, + 506, + 132 + ], + "score": 1.0, + "content": ", i.e., \u000fNTRF. Note that a larger", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 107, + 130, + 506, + 143 + ], + "spans": [ + { + "bbox": [ + 107, + 130, + 115, + 140 + ], + "score": 0.72, + "content": "R", + "type": "inline_equation" + }, + { + "bbox": [ + 116, + 130, + 229, + 143 + ], + "score": 1.0, + "content": "naturally implies a smaller", + "type": "text" + }, + { + "bbox": [ + 229, + 132, + 253, + 141 + ], + "score": 0.6, + "content": "\\epsilon _ { \\mathrm { N T R F } }", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 130, + 412, + 143 + ], + "score": 1.0, + "content": ", but also leads to worse conditions on", + "type": "text" + }, + { + "bbox": [ + 412, + 132, + 422, + 140 + ], + "score": 0.6, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 422, + 130, + 506, + 143 + ], + "score": 1.0, + "content": ". In this section, for", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 141, + 505, + 153 + ], + "spans": [ + { + "bbox": [ + 105, + 141, + 265, + 153 + ], + "score": 1.0, + "content": "any (arbitrarily small) target error rate", + "type": "text" + }, + { + "bbox": [ + 266, + 141, + 290, + 151 + ], + "score": 0.9, + "content": "\\epsilon > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 141, + 505, + 153 + ], + "score": 1.0, + "content": ", we discuss various data assumptions studied in the", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 151, + 505, + 164 + ], + "spans": [ + { + "bbox": [ + 105, + 151, + 284, + 164 + ], + "score": 1.0, + "content": "literature under which our results can lead to", + "type": "text" + }, + { + "bbox": [ + 285, + 152, + 306, + 164 + ], + "score": 0.91, + "content": "\\mathcal { O } ( \\epsilon )", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 151, + 505, + 164 + ], + "score": 1.0, + "content": "training/test errors, and specify the network width", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 164, + 160, + 176 + ], + "spans": [ + { + "bbox": [ + 106, + 164, + 160, + 176 + ], + "score": 1.0, + "content": "requirement.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 3.5, + "bbox_fs": [ + 105, + 105, + 506, + 176 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 187, + 403, + 200 + ], + "lines": [ + { + "bbox": [ + 106, + 187, + 404, + 200 + ], + "spans": [ + { + "bbox": [ + 106, + 187, + 404, + 200 + ], + "score": 1.0, + "content": "4.1 DATA SEPARABILITY BY NEURAL TANGENT RANDOM FEATURE", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 107, + 208, + 505, + 231 + ], + "lines": [ + { + "bbox": [ + 105, + 208, + 505, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 208, + 505, + 222 + ], + "score": 1.0, + "content": "In this subsection, we consider the setting where a large fraction of the training data can be linearly", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 220, + 450, + 232 + ], + "spans": [ + { + "bbox": [ + 105, + 220, + 450, + 232 + ], + "score": 1.0, + "content": "separated by the neural tangent random features. The assumption is stated as follows.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5, + "bbox_fs": [ + 105, + 208, + 505, + 232 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 234, + 504, + 261 + ], + "lines": [ + { + "bbox": [ + 104, + 230, + 506, + 250 + ], + "spans": [ + { + "bbox": [ + 104, + 230, + 353, + 250 + ], + "score": 1.0, + "content": "Assumption 4.1. There exists a collection of matrices ř", + "type": "text" + }, + { + "bbox": [ + 354, + 234, + 458, + 248 + ], + "score": 0.89, + "content": "\\begin{array} { r l r } { \\mathbf { U } ^ { * } } & { { } = } & { \\{ \\mathbf { U } _ { 1 } ^ { * } , \\cdot \\cdot \\cdot , \\mathbf { U } _ { L } ^ { * } \\} } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 459, + 230, + 506, + 250 + ], + "score": 1.0, + "content": "satisfying", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 243, + 432, + 265 + ], + "spans": [ + { + "bbox": [ + 106, + 246, + 179, + 262 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\sum _ { l = 1 } ^ { L } \\| \\mathbf { U } _ { l } ^ { * } \\| _ { F } ^ { 2 } = 1 } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 179, + 243, + 266, + 265 + ], + "score": 1.0, + "content": ", such that for at least", + "type": "text" + }, + { + "bbox": [ + 266, + 248, + 296, + 261 + ], + "score": 0.92, + "content": "( 1 - \\rho )", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 243, + 432, + 265 + ], + "score": 1.0, + "content": "fraction of training data we have", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5, + "bbox_fs": [ + 104, + 230, + 506, + 265 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 241, + 267, + 369, + 282 + ], + "lines": [ + { + "bbox": [ + 241, + 267, + 369, + 282 + ], + "spans": [ + { + "bbox": [ + 241, + 267, + 369, + 282 + ], + "score": 0.9, + "content": "\\begin{array} { r } { y _ { i } \\big \\langle \\nabla f _ { \\mathbf { W } ^ { ( 0 ) } } ( \\mathbf { x } _ { i } ) , \\mathbf { U } ^ { * } \\big \\rangle \\gtrsim m ^ { 1 / 2 } \\gamma , } \\end{array}", + "type": "interline_equation", + "image_path": "fb8ae2dd56d5ced7e90f86993a451590aee7f4906f791c49a7229754830a4dd6.jpg" + } + ] + } + ], + "index": 12, + "virtual_lines": [ + { + "bbox": [ + 241, + 267, + 369, + 282 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 289, + 330, + 301 + ], + "lines": [ + { + "bbox": [ + 105, + 286, + 327, + 304 + ], + "spans": [ + { + "bbox": [ + 105, + 286, + 132, + 304 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 292, + 140, + 301 + ], + "score": 0.81, + "content": "\\gamma", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 286, + 288, + 304 + ], + "score": 1.0, + "content": "is an absolute positive constant† and", + "type": "text" + }, + { + "bbox": [ + 288, + 289, + 327, + 302 + ], + "score": 0.91, + "content": "\\rho \\in [ 0 , 1 )", + "type": "inline_equation" + } + ], + "index": 13 + } + ], + "index": 13, + "bbox_fs": [ + 105, + 286, + 327, + 304 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 310, + 482, + 323 + ], + "lines": [ + { + "bbox": [ + 105, + 310, + 481, + 324 + ], + "spans": [ + { + "bbox": [ + 105, + 310, + 469, + 324 + ], + "score": 1.0, + "content": "The following corollary provides an upper bound of \u000fNTRF under Assumption 4.1 for some", + "type": "text" + }, + { + "bbox": [ + 469, + 312, + 478, + 321 + ], + "score": 0.81, + "content": "R", + "type": "inline_equation" + }, + { + "bbox": [ + 478, + 310, + 481, + 324 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14, + "bbox_fs": [ + 105, + 310, + 481, + 324 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 326, + 504, + 350 + ], + "lines": [ + { + "bbox": [ + 105, + 325, + 506, + 342 + ], + "spans": [ + { + "bbox": [ + 105, + 325, + 302, + 342 + ], + "score": 1.0, + "content": "Proposition 4.2. Under Assumption 4.1, for any", + "type": "text" + }, + { + "bbox": [ + 302, + 328, + 335, + 339 + ], + "score": 0.91, + "content": "\\epsilon , \\delta > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 325, + 347, + 342 + ], + "score": 1.0, + "content": ", if", + "type": "text" + }, + { + "bbox": [ + 347, + 325, + 490, + 341 + ], + "score": 0.91, + "content": "R \\geqslant C \\big [ \\log ^ { 1 / 2 } ( n / \\delta ) + \\log ( 1 / \\epsilon ) \\big ] / \\gamma", + "type": "inline_equation" + }, + { + "bbox": [ + 491, + 325, + 506, + 342 + ], + "score": 1.0, + "content": "for", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 338, + 358, + 351 + ], + "spans": [ + { + "bbox": [ + 105, + 338, + 201, + 351 + ], + "score": 1.0, + "content": "some absolute constant", + "type": "text" + }, + { + "bbox": [ + 201, + 339, + 210, + 349 + ], + "score": 0.82, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 338, + 331, + 351 + ], + "score": 1.0, + "content": ", then with probability at least", + "type": "text" + }, + { + "bbox": [ + 331, + 339, + 354, + 349 + ], + "score": 0.85, + "content": "1 - \\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 338, + 358, + 351 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5, + "bbox_fs": [ + 105, + 325, + 506, + 351 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 185, + 356, + 425, + 388 + ], + "lines": [ + { + "bbox": [ + 185, + 356, + 425, + 388 + ], + "spans": [ + { + "bbox": [ + 185, + 356, + 425, + 388 + ], + "score": 0.93, + "content": "\\epsilon _ { \\mathrm { N T R F } } : = \\operatorname* { i n f } _ { F \\in \\mathcal { F } ( \\mathbf { W } ^ { ( 0 ) } , R ) } n ^ { - 1 } \\sum _ { i = 1 } ^ { n } \\ell \\bigl ( y _ { i } F ( \\mathbf { x } _ { i } ) \\bigr ) \\leqslant \\epsilon + \\rho \\cdot \\mathcal { O } ( R ) .", + "type": "interline_equation", + "image_path": "88e6fa0b45945bc61969653e9c5b7c85b3865e5771cf9f7e4f1b6c2e8d693250.jpg" + } + ] + } + ], + "index": 17.5, + "virtual_lines": [ + { + "bbox": [ + 185, + 356, + 425, + 372.0 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 185, + 372.0, + 425, + 388.0 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 397, + 506, + 504 + ], + "lines": [ + { + "bbox": [ + 105, + 397, + 505, + 412 + ], + "spans": [ + { + "bbox": [ + 105, + 397, + 505, + 412 + ], + "score": 1.0, + "content": "Proposition 4.2 covers the setting where the NTRF function class is allowed to misclassify training", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 409, + 505, + 422 + ], + "spans": [ + { + "bbox": [ + 105, + 409, + 505, + 422 + ], + "score": 1.0, + "content": "data, while most of existing work typically assumes that all training data can be perfectly separated", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 420, + 506, + 433 + ], + "spans": [ + { + "bbox": [ + 105, + 420, + 216, + 433 + ], + "score": 1.0, + "content": "with constant margin (i.e.,", + "type": "text" + }, + { + "bbox": [ + 217, + 421, + 243, + 432 + ], + "score": 0.89, + "content": "\\rho = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 243, + 420, + 506, + 433 + ], + "score": 1.0, + "content": ") (Ji and Telgarsky, 2020; Shamir, 2020). Our results show that", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 432, + 506, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 432, + 289, + 446 + ], + "score": 1.0, + "content": "for sufficiently small misclassification ratio", + "type": "text" + }, + { + "bbox": [ + 289, + 433, + 332, + 445 + ], + "score": 0.91, + "content": "\\rho = \\mathcal { O } ( \\epsilon )", + "type": "inline_equation" + }, + { + "bbox": [ + 332, + 432, + 374, + 446 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + }, + { + "bbox": [ + 375, + 432, + 434, + 445 + ], + "score": 0.92, + "content": "\\epsilon _ { \\mathrm { N T R F } } = \\tilde { O } ( \\epsilon )", + "type": "inline_equation" + }, + { + "bbox": [ + 434, + 432, + 506, + 446 + ], + "score": 1.0, + "content": "by choosing the", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 443, + 507, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 443, + 178, + 457 + ], + "score": 1.0, + "content": "radius parameter", + "type": "text" + }, + { + "bbox": [ + 179, + 445, + 188, + 454 + ], + "score": 0.74, + "content": "R", + "type": "inline_equation" + }, + { + "bbox": [ + 188, + 443, + 253, + 457 + ], + "score": 1.0, + "content": "logarithimic in", + "type": "text" + }, + { + "bbox": [ + 254, + 444, + 282, + 455 + ], + "score": 0.63, + "content": "n , \\delta ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 283, + 443, + 306, + 457 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 306, + 444, + 321, + 454 + ], + "score": 0.87, + "content": "\\epsilon ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 443, + 507, + 457 + ], + "score": 1.0, + "content": ". Substituting this result into Theorems 3.3,˘", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 454, + 503, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 454, + 363, + 468 + ], + "score": 1.0, + "content": "3.4 and 3.5, it can be shown that a neural network with width", + "type": "text" + }, + { + "bbox": [ + 363, + 455, + 503, + 467 + ], + "score": 0.9, + "content": "\\bar { m \\mathbf { \\bar { \\alpha } } } = \\mathrm { p o l y } ( L , \\log ( n / \\delta ) , \\log ( 1 / \\epsilon ) ) )", + "type": "inline_equation" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 466, + 506, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 506, + 478 + ], + "score": 1.0, + "content": "suffices to guarantee good optimization and generalization performances for both GD and SGD.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 477, + 506, + 492 + ], + "spans": [ + { + "bbox": [ + 105, + 478, + 446, + 492 + ], + "score": 1.0, + "content": "Consequently, we can obtain that the bounds on the test error for GD and SGD are", + "type": "text" + }, + { + "bbox": [ + 446, + 477, + 486, + 491 + ], + "score": 0.93, + "content": "\\widetilde { \\mathcal { O } } ( n ^ { - 1 / 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 478, + 506, + 492 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 107, + 489, + 195, + 507 + ], + "spans": [ + { + "bbox": [ + 107, + 490, + 140, + 504 + ], + "score": 0.92, + "content": "\\tilde { \\mathcal { O } } ( n ^ { - 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 489, + 195, + 507 + ], + "score": 1.0, + "content": "respectively.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 23, + "bbox_fs": [ + 105, + 397, + 507, + 507 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 517, + 399, + 529 + ], + "lines": [ + { + "bbox": [ + 106, + 517, + 401, + 530 + ], + "spans": [ + { + "bbox": [ + 106, + 517, + 401, + 530 + ], + "score": 1.0, + "content": "4.2 DATA SEPARABILITY BY SHALLOW NEURAL TANGENT MODEL", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 105, + 538, + 503, + 561 + ], + "lines": [ + { + "bbox": [ + 106, + 538, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 106, + 538, + 505, + 551 + ], + "score": 1.0, + "content": "In this subsection, we study the data separation assumption made in Ji and Telgarsky (2020) and show", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 549, + 452, + 562 + ], + "spans": [ + { + "bbox": [ + 106, + 549, + 452, + 562 + ], + "score": 1.0, + "content": "that our results cover this particular setting. We first restate the assumption as follows.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5, + "bbox_fs": [ + 106, + 538, + 505, + 562 + ] + }, + { + "type": "text", + "bbox": [ + 109, + 563, + 502, + 577 + ], + "lines": [ + { + "bbox": [ + 107, + 562, + 505, + 578 + ], + "spans": [ + { + "bbox": [ + 107, + 562, + 229, + 578 + ], + "score": 1.0, + "content": "Assumption 4.3. There exists", + "type": "text" + }, + { + "bbox": [ + 230, + 563, + 295, + 577 + ], + "score": 0.91, + "content": "\\overline { { \\mathbf { u } } } ( \\cdot ) : \\mathbb { R } ^ { d } \\mathbb { R } ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 295, + 562, + 312, + 578 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 313, + 565, + 338, + 576 + ], + "score": 0.91, + "content": "\\gamma \\geqslant 0", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 562, + 377, + 578 + ], + "score": 1.0, + "content": "such that", + "type": "text" + }, + { + "bbox": [ + 377, + 564, + 428, + 577 + ], + "score": 0.93, + "content": "\\| \\overline { { \\mathbf { u } } } ( \\mathbf { z } ) \\| _ { 2 } \\leqslant 1", + "type": "inline_equation" + }, + { + "bbox": [ + 429, + 562, + 455, + 578 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 456, + 564, + 484, + 575 + ], + "score": 0.9, + "content": "\\mathbf { z } \\in \\mathbb { R } ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 485, + 562, + 505, + 578 + ], + "score": 1.0, + "content": ", and", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31, + "bbox_fs": [ + 107, + 562, + 505, + 578 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 219, + 582, + 392, + 608 + ], + "lines": [ + { + "bbox": [ + 219, + 582, + 392, + 608 + ], + "spans": [ + { + "bbox": [ + 219, + 582, + 392, + 608 + ], + "score": 0.93, + "content": "y _ { i } \\int _ { \\mathbb { R } ^ { d } } \\sigma ^ { \\prime } ( \\langle \\mathbf { z } , \\mathbf { x } _ { i } \\rangle ) \\cdot \\langle \\overline { { \\mathbf { u } } } ( \\mathbf { z } ) , \\mathbf { x } _ { i } \\rangle \\mathrm { d } \\mu _ { \\mathrm { N } } ( \\mathbf { z } ) \\geqslant \\gamma", + "type": "interline_equation", + "image_path": "15a7b3ef0f33f22ac342fd80cebdbfee69026c61246ae676d0771d63461ac9f2.jpg" + } + ] + } + ], + "index": 32, + "virtual_lines": [ + { + "bbox": [ + 219, + 582, + 392, + 608 + ], + "spans": [], + "index": 32 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 613, + 383, + 626 + ], + "lines": [ + { + "bbox": [ + 106, + 613, + 384, + 627 + ], + "spans": [ + { + "bbox": [ + 106, + 613, + 133, + 627 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 133, + 614, + 161, + 626 + ], + "score": 0.93, + "content": "i \\in [ n ]", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 613, + 191, + 627 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 192, + 614, + 217, + 626 + ], + "score": 0.92, + "content": "\\mu _ { N } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 613, + 384, + 627 + ], + "score": 1.0, + "content": "denotes the standard normal distribution.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33, + "bbox_fs": [ + 106, + 613, + 384, + 627 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 634, + 505, + 712 + ], + "lines": [ + { + "bbox": [ + 106, + 635, + 506, + 648 + ], + "spans": [ + { + "bbox": [ + 106, + 635, + 506, + 648 + ], + "score": 1.0, + "content": "Assumption 4.3 is related to the linear separability of the gradients of the first layer parameters at", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 646, + 505, + 658 + ], + "spans": [ + { + "bbox": [ + 106, + 646, + 505, + 658 + ], + "score": 1.0, + "content": "random initialization, where the randomness is replaced with an integral by taking the infinite width", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 657, + 505, + 669 + ], + "spans": [ + { + "bbox": [ + 105, + 657, + 505, + 669 + ], + "score": 1.0, + "content": "limit. Note that similar assumptions have also been studied in (Cao and Gu, 2020; Nitanda and", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 667, + 505, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 505, + 680 + ], + "score": 1.0, + "content": "Suzuki, 2019; Frei et al., 2019). The assumption made in (Cao and Gu, 2020; Frei et al., 2019) uses", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 678, + 505, + 691 + ], + "spans": [ + { + "bbox": [ + 106, + 678, + 505, + 691 + ], + "score": 1.0, + "content": "gradients with respect to the second layer weights instead of the first layer ones. In the following, we", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 689, + 505, + 703 + ], + "spans": [ + { + "bbox": [ + 105, + 689, + 505, + 703 + ], + "score": 1.0, + "content": "mainly focus on Assumption 4.3, while our result can also be generalized to cover the setting in (Cao", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 700, + 236, + 713 + ], + "spans": [ + { + "bbox": [ + 106, + 700, + 236, + 713 + ], + "score": 1.0, + "content": "and Gu, 2020; Frei et al., 2019).", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 37, + "bbox_fs": [ + 105, + 635, + 506, + 713 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 505, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 506, + 96 + ], + "score": 1.0, + "content": "In order to make a fair comparison, we reduce our results for multilayer networks to the two-layer", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 94, + 345, + 105 + ], + "spans": [ + { + "bbox": [ + 106, + 94, + 345, + 105 + ], + "score": 1.0, + "content": "setting. In this case, the neural network function takes form", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "interline_equation", + "bbox": [ + 245, + 107, + 365, + 122 + ], + "lines": [ + { + "bbox": [ + 245, + 107, + 365, + 122 + ], + "spans": [ + { + "bbox": [ + 245, + 107, + 365, + 122 + ], + "score": 0.92, + "content": "f _ { \\mathbf { W } } ( \\mathbf { x } ) = m ^ { 1 / 2 } \\mathbf { W } _ { 2 } \\sigma ( \\mathbf { W } _ { 1 } \\mathbf { x } ) .", + "type": "interline_equation", + "image_path": "d25d1130f5b79c5d1d4aa63ba6b20e110952a6905db54b07381ed73432297a79.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 245, + 107, + 365, + 122 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 124, + 505, + 162 + ], + "lines": [ + { + "bbox": [ + 106, + 124, + 505, + 137 + ], + "spans": [ + { + "bbox": [ + 106, + 124, + 505, + 137 + ], + "score": 1.0, + "content": "Then we provide the following proposition, which states that Assumption 4.3 implies a certain choice", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 135, + 504, + 149 + ], + "spans": [ + { + "bbox": [ + 106, + 136, + 118, + 149 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 118, + 135, + 162, + 149 + ], + "score": 0.93, + "content": "R = \\bar { \\mathcal { O } } ( 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 136, + 504, + 149 + ], + "score": 1.0, + "content": "such the the minimum training loss achieved by the function in the NTRF function", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 148, + 382, + 163 + ], + "spans": [ + { + "bbox": [ + 105, + 148, + 128, + 163 + ], + "score": 1.0, + "content": "class", + "type": "text" + }, + { + "bbox": [ + 129, + 149, + 180, + 162 + ], + "score": 0.93, + "content": "{ \\mathcal { F } } ( { \\mathbf { W } } ^ { ( 0 ) } , R )", + "type": "inline_equation" + }, + { + "bbox": [ + 180, + 148, + 215, + 163 + ], + "score": 1.0, + "content": "satisfies", + "type": "text" + }, + { + "bbox": [ + 216, + 149, + 272, + 162 + ], + "score": 0.93, + "content": "\\epsilon _ { \\mathrm { N T R F } } = O ( \\epsilon )", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 148, + 302, + 163 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 303, + 152, + 308, + 160 + ], + "score": 0.7, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 148, + 382, + 163 + ], + "score": 1.0, + "content": "is the target error.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 106, + 163, + 505, + 215 + ], + "lines": [ + { + "bbox": [ + 105, + 162, + 505, + 176 + ], + "spans": [ + { + "bbox": [ + 105, + 162, + 429, + 176 + ], + "score": 1.0, + "content": "Proposition 4.4. Suppose the training data satisfies Assumption 4.3. For any “ ‰", + "type": "text" + }, + { + "bbox": [ + 430, + 164, + 465, + 175 + ], + "score": 0.91, + "content": "\\epsilon , \\delta > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 465, + 162, + 483, + 176 + ], + "score": 1.0, + "content": ", let", + "type": "text" + }, + { + "bbox": [ + 483, + 164, + 505, + 174 + ], + "score": 0.86, + "content": "R =", + "type": "inline_equation" + } + ], + "index": 6 + }, + { + "bbox": [ + 107, + 173, + 505, + 188 + ], + "spans": [ + { + "bbox": [ + 107, + 174, + 217, + 187 + ], + "score": 0.89, + "content": "C \\big [ \\bar { \\log } ( n / \\delta ) + \\log ( 1 / \\bar { \\epsilon } ) \\big ] / \\gamma", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 173, + 380, + 188 + ], + "score": 1.0, + "content": "for some large enough absolute constant ˘", + "type": "text" + }, + { + "bbox": [ + 381, + 175, + 390, + 184 + ], + "score": 0.81, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 173, + 505, + 188 + ], + "score": 1.0, + "content": ". If the neural network width", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 185, + 505, + 201 + ], + "spans": [ + { + "bbox": [ + 105, + 185, + 142, + 201 + ], + "score": 1.0, + "content": "satisfies", + "type": "text" + }, + { + "bbox": [ + 142, + 187, + 236, + 200 + ], + "score": 0.9, + "content": "m = \\Omega \\big ( \\log ( n / \\delta ) / \\gamma ^ { 2 } \\big )", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 185, + 363, + 201 + ], + "score": 1.0, + "content": ", then with probability at least ˘", + "type": "text" + }, + { + "bbox": [ + 364, + 187, + 388, + 198 + ], + "score": 0.83, + "content": "1 - \\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 388, + 185, + 439, + 201 + ], + "score": 1.0, + "content": ", there exist", + "type": "text" + }, + { + "bbox": [ + 439, + 187, + 505, + 201 + ], + "score": 0.92, + "content": "F _ { \\mathbf { W } ^ { ( 0 ) } , \\overline { { \\mathbf { W } } } } ( \\mathbf { x } _ { i } ) \\in", + "type": "inline_equation" + } + ], + "index": 8 + }, + { + "bbox": [ + 107, + 199, + 340, + 216 + ], + "spans": [ + { + "bbox": [ + 107, + 200, + 158, + 214 + ], + "score": 0.92, + "content": "{ \\mathcal { F } } ( { \\bf W } ^ { ( 0 ) } , R )", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 199, + 198, + 216 + ], + "score": 1.0, + "content": "such that", + "type": "text" + }, + { + "bbox": [ + 199, + 200, + 338, + 215 + ], + "score": 0.91, + "content": "\\ell \\big ( y _ { i } \\cdot F _ { \\mathbf { W } ^ { ( 0 ) } , \\overline { { \\mathbf { W } } } } ( \\mathbf { x } _ { i } ) \\big ) \\leqslant \\epsilon , \\forall i \\in [ n ] .", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 199, + 340, + 216 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 7.5 + }, + { + "type": "text", + "bbox": [ + 106, + 223, + 505, + 300 + ], + "lines": [ + { + "bbox": [ + 105, + 223, + 506, + 238 + ], + "spans": [ + { + "bbox": [ + 105, + 223, + 368, + 238 + ], + "score": 1.0, + "content": "Proposition 4.4 shows that under Assumption 4.3, there exists", + "type": "text" + }, + { + "bbox": [ + 369, + 223, + 482, + 238 + ], + "score": 0.93, + "content": "F _ { \\mathbf { W } ^ { ( 0 ) } , \\overline { { \\mathbf { W } } } } ( \\cdot ) \\in \\mathcal { F } ( \\mathbf { W } ^ { ( 0 ) } , R )", + "type": "inline_equation" + }, + { + "bbox": [ + 483, + 223, + 506, + 238 + ], + "score": 1.0, + "content": "with", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 107, + 237, + 506, + 255 + ], + "spans": [ + { + "bbox": [ + 107, + 237, + 159, + 252 + ], + "score": 0.93, + "content": "R = \\widetilde { \\mathcal { O } } ( 1 / \\gamma )", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 237, + 295, + 255 + ], + "score": 1.0, + "content": "such that the cross-entropy loss of", + "type": "text" + }, + { + "bbox": [ + 295, + 239, + 344, + 253 + ], + "score": 0.92, + "content": "F _ { \\mathbf { W } ^ { ( 0 ) } , \\overline { { \\mathbf { W } } } } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 237, + 506, + 255 + ], + "score": 1.0, + "content": "at each training data point is bounded by", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 250, + 506, + 264 + ], + "spans": [ + { + "bbox": [ + 105, + 250, + 184, + 264 + ], + "score": 1.0, + "content": "\u000f. This implies that", + "type": "text" + }, + { + "bbox": [ + 185, + 253, + 226, + 263 + ], + "score": 0.87, + "content": "\\epsilon _ { \\mathrm { N T R F } } \\leqslant \\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 226, + 250, + 394, + 264 + ], + "score": 1.0, + "content": ". Moreover, by applying Theorem 3.3 with", + "type": "text" + }, + { + "bbox": [ + 394, + 252, + 420, + 262 + ], + "score": 0.89, + "content": "L = 2", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 250, + 506, + 264 + ], + "score": 1.0, + "content": ", the condition on the", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 263, + 505, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 263, + 230, + 277 + ], + "score": 1.0, + "content": "neural network width becomes", + "type": "text" + }, + { + "bbox": [ + 230, + 263, + 291, + 277 + ], + "score": 0.94, + "content": "m = \\widetilde \\Omega ( 1 / \\gamma ^ { 8 } ) ^ { \\ddag }", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 263, + 505, + 277 + ], + "score": 1.0, + "content": ", which matches the results proved in Ji and Telgarsky", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 275, + 505, + 288 + ], + "spans": [ + { + "bbox": [ + 106, + 275, + 279, + 288 + ], + "score": 1.0, + "content": "(2020). Moreover, plugging these results on", + "type": "text" + }, + { + "bbox": [ + 279, + 278, + 289, + 286 + ], + "score": 0.73, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 290, + 275, + 307, + 288 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 307, + 277, + 330, + 286 + ], + "score": 0.61, + "content": "\\epsilon _ { \\mathrm { N T R F } }", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 275, + 505, + 288 + ], + "score": 1.0, + "content": "into Theorems 3.4 and 3.5, we can conclude", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 285, + 467, + 302 + ], + "spans": [ + { + "bbox": [ + 105, + 285, + 320, + 302 + ], + "score": 1.0, + "content": "that the bounds on the test error for GD and SGD are", + "type": "text" + }, + { + "bbox": [ + 321, + 286, + 361, + 300 + ], + "score": 0.93, + "content": "\\widetilde { \\mathcal { O } } ( n ^ { - 1 / 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 285, + 379, + 302 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 380, + 286, + 413, + 300 + ], + "score": 0.93, + "content": "\\widetilde { \\mathcal { O } } ( n ^ { - 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 413, + 285, + 467, + 302 + ], + "score": 1.0, + "content": "respectively.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 12.5 + }, + { + "type": "title", + "bbox": [ + 106, + 312, + 332, + 324 + ], + "lines": [ + { + "bbox": [ + 105, + 312, + 333, + 325 + ], + "spans": [ + { + "bbox": [ + 105, + 312, + 333, + 325 + ], + "score": 1.0, + "content": "4.3 CLASS-DEPENDENT DATA NONDEGENERATION", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 107, + 333, + 505, + 380 + ], + "lines": [ + { + "bbox": [ + 105, + 333, + 505, + 347 + ], + "spans": [ + { + "bbox": [ + 105, + 333, + 505, + 347 + ], + "score": 1.0, + "content": "In previous subsections, we have shown that under certain data separation conditions \u000fNTRF can be", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 344, + 505, + 358 + ], + "spans": [ + { + "bbox": [ + 105, + 346, + 383, + 358 + ], + "score": 1.0, + "content": "sufficiently small while the corresponding NTRF function class has", + "type": "text" + }, + { + "bbox": [ + 383, + 347, + 392, + 357 + ], + "score": 0.8, + "content": "R", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 346, + 428, + 358 + ], + "score": 1.0, + "content": "of order", + "type": "text" + }, + { + "bbox": [ + 428, + 344, + 450, + 358 + ], + "score": 0.91, + "content": "\\widetilde { \\mathcal { O } } ( 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 346, + 505, + 358 + ], + "score": 1.0, + "content": ". Thus neural", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 358, + 505, + 370 + ], + "spans": [ + { + "bbox": [ + 105, + 358, + 505, + 370 + ], + "score": 1.0, + "content": "networks with polylogarithmic width enjoy nice optimization and generalization guarantees. In this", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 368, + 506, + 381 + ], + "spans": [ + { + "bbox": [ + 105, + 368, + 506, + 381 + ], + "score": 1.0, + "content": "part, we consider the following much milder data separability assumption made in Zou et al. (2019).", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 18.5 + }, + { + "type": "text", + "bbox": [ + 106, + 381, + 486, + 394 + ], + "lines": [ + { + "bbox": [ + 105, + 381, + 485, + 395 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 208, + 395 + ], + "score": 1.0, + "content": "Assumption 4.5. For all", + "type": "text" + }, + { + "bbox": [ + 208, + 382, + 232, + 393 + ], + "score": 0.9, + "content": "i \\neq i ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 381, + 242, + 395 + ], + "score": 1.0, + "content": "if", + "type": "text" + }, + { + "bbox": [ + 242, + 383, + 275, + 394 + ], + "score": 0.9, + "content": "y _ { i } \\neq y _ { i ^ { \\prime } }", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 381, + 299, + 395 + ], + "score": 1.0, + "content": ", then", + "type": "text" + }, + { + "bbox": [ + 299, + 381, + 364, + 394 + ], + "score": 0.93, + "content": "\\| \\mathbf { x } _ { i } - \\mathbf { x } _ { j } \\| _ { 2 } \\geqslant \\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 364, + 381, + 474, + 395 + ], + "score": 1.0, + "content": "for some absolute constant", + "type": "text" + }, + { + "bbox": [ + 474, + 383, + 481, + 393 + ], + "score": 0.84, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 482, + 381, + 485, + 395 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 107, + 401, + 505, + 446 + ], + "lines": [ + { + "bbox": [ + 106, + 402, + 505, + 413 + ], + "spans": [ + { + "bbox": [ + 106, + 402, + 505, + 413 + ], + "score": 1.0, + "content": "In contrast to the conventional data nondegeneration assumption (i.e., no duplicate data points) made", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 411, + 506, + 425 + ], + "spans": [ + { + "bbox": [ + 105, + 411, + 350, + 425 + ], + "score": 1.0, + "content": "in Allen-Zhu et al. (2019b); Du et al. (2019b;a); Zou and Gu", + "type": "text" + }, + { + "bbox": [ + 350, + 412, + 381, + 424 + ], + "score": 0.46, + "content": "( 2 0 1 9 )", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 411, + 506, + 425 + ], + "score": 1.0, + "content": ", Assumption 4.5 only requires", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 424, + 505, + 435 + ], + "spans": [ + { + "bbox": [ + 106, + 424, + 505, + 435 + ], + "score": 1.0, + "content": "that the data points from different classes are nondegenerate, thus we call it class-dependent data", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 435, + 177, + 447 + ], + "spans": [ + { + "bbox": [ + 106, + 435, + 177, + 447 + ], + "score": 1.0, + "content": "nondegeneration.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 23.5 + }, + { + "type": "text", + "bbox": [ + 105, + 451, + 504, + 474 + ], + "lines": [ + { + "bbox": [ + 105, + 450, + 505, + 464 + ], + "spans": [ + { + "bbox": [ + 105, + 450, + 505, + 464 + ], + "score": 1.0, + "content": "We have the following proposition which shows that Assumption 4.5 also implies the existence of a", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 462, + 502, + 474 + ], + "spans": [ + { + "bbox": [ + 105, + 462, + 218, + 474 + ], + "score": 1.0, + "content": "good function that achieves", + "type": "text" + }, + { + "bbox": [ + 218, + 465, + 224, + 472 + ], + "score": 0.67, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 462, + 489, + 474 + ], + "score": 1.0, + "content": "training error, in the NTRF function class with a certain choice of", + "type": "text" + }, + { + "bbox": [ + 489, + 463, + 497, + 472 + ], + "score": 0.81, + "content": "R", + "type": "inline_equation" + }, + { + "bbox": [ + 498, + 462, + 502, + 474 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5 + }, + { + "type": "text", + "bbox": [ + 108, + 476, + 283, + 487 + ], + "lines": [ + { + "bbox": [ + 106, + 475, + 284, + 489 + ], + "spans": [ + { + "bbox": [ + 106, + 475, + 284, + 489 + ], + "score": 1.0, + "content": "Proposition 4.6. Under Assumption 4.5, if", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "interline_equation", + "bbox": [ + 174, + 489, + 425, + 506 + ], + "lines": [ + { + "bbox": [ + 174, + 489, + 425, + 506 + ], + "spans": [ + { + "bbox": [ + 174, + 489, + 425, + 506 + ], + "score": 0.89, + "content": "R = \\Omega \\big ( n ^ { 3 / 2 } \\phi ^ { - 1 / 2 } \\log ( n \\delta ^ { - 1 } \\epsilon ^ { - 1 } ) \\big ) , \\qquad m = \\widetilde { \\Omega } \\big ( L ^ { 2 2 } n ^ { 1 2 } \\phi ^ { - 4 } \\big ) ,", + "type": "interline_equation", + "image_path": "273e301161a326045653bf26622e1cbcc77648eb5d2ac3ed46abf46277eb3a87.jpg" + } + ] + } + ], + "index": 29, + "virtual_lines": [ + { + "bbox": [ + 174, + 489, + 425, + 506 + ], + "spans": [], + "index": 29 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 507, + 306, + 519 + ], + "lines": [ + { + "bbox": [ + 105, + 507, + 307, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 507, + 141, + 520 + ], + "score": 1.0, + "content": "we have", + "type": "text" + }, + { + "bbox": [ + 141, + 508, + 183, + 519 + ], + "score": 0.63, + "content": "\\epsilon _ { \\mathrm { N T R F } } \\leqslant \\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 183, + 507, + 280, + 520 + ], + "score": 1.0, + "content": "with probability at least", + "type": "text" + }, + { + "bbox": [ + 280, + 508, + 303, + 518 + ], + "score": 0.82, + "content": "1 - \\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 507, + 307, + 520 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 106, + 526, + 506, + 611 + ], + "lines": [ + { + "bbox": [ + 106, + 526, + 506, + 540 + ], + "spans": [ + { + "bbox": [ + 106, + 526, + 412, + 540 + ], + "score": 1.0, + "content": "Proposition 4.6 suggests that under Assumption 4.5, in order to guarantee", + "type": "text" + }, + { + "bbox": [ + 413, + 528, + 456, + 538 + ], + "score": 0.88, + "content": "\\epsilon _ { \\mathrm { N T R F } } \\leqslant \\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 456, + 526, + 506, + 540 + ], + "score": 1.0, + "content": ", the size of", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 104, + 537, + 507, + 552 + ], + "spans": [ + { + "bbox": [ + 104, + 537, + 238, + 552 + ], + "score": 1.0, + "content": "NTRF function class needs to be", + "type": "text" + }, + { + "bbox": [ + 239, + 538, + 272, + 551 + ], + "score": 0.93, + "content": "\\Omega ( n ^ { 3 / 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 537, + 507, + 552 + ], + "score": 1.0, + "content": ". Plugging this into Theorems 3.4 and 3.5 leads to vacuous", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 549, + 507, + 562 + ], + "spans": [ + { + "bbox": [ + 105, + 549, + 507, + 562 + ], + "score": 1.0, + "content": "bounds on the test error. This makes sense since Assumption 4.5 basically covers the “random label”", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 560, + 505, + 573 + ], + "spans": [ + { + "bbox": [ + 105, + 560, + 505, + 573 + ], + "score": 1.0, + "content": "setting, which is impossible to be learned with small generalization error. Moreover, we would like", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 572, + 506, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 506, + 585 + ], + "score": 1.0, + "content": "to point out our theoretical analysis leads to a sharper over-parameterization condition than that` ˘", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 104, + 582, + 507, + 599 + ], + "spans": [ + { + "bbox": [ + 104, + 582, + 231, + 599 + ], + "score": 1.0, + "content": "proved in Zou et al. (2019), i.e.,", + "type": "text" + }, + { + "bbox": [ + 232, + 582, + 387, + 597 + ], + "score": 0.93, + "content": "\\bar { m = \\Omega } \\big ( n ^ { 1 4 } L ^ { 1 6 } \\phi ^ { - 4 } + n ^ { 1 2 } L ^ { 1 6 } \\bar { \\phi } ^ { - 4 } \\epsilon ^ { - 1 } \\big )", + "type": "inline_equation" + }, + { + "bbox": [ + 388, + 582, + 507, + 599 + ], + "score": 1.0, + "content": ", if the network depth satisfies", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 596, + 199, + 611 + ], + "spans": [ + { + "bbox": [ + 106, + 596, + 195, + 611 + ], + "score": 0.91, + "content": "L \\leqslant \\widetilde { \\mathcal { O } } ( n ^ { 1 / 3 } \\vee \\epsilon ^ { - 1 / 6 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 596, + 199, + 611 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 34 + }, + { + "type": "title", + "bbox": [ + 107, + 626, + 320, + 639 + ], + "lines": [ + { + "bbox": [ + 105, + 626, + 321, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 321, + 640 + ], + "score": 1.0, + "content": "5 PROOF SKETCH OF THE MAIN THEORY", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 108, + 649, + 505, + 673 + ], + "lines": [ + { + "bbox": [ + 105, + 649, + 505, + 663 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 505, + 663 + ], + "score": 1.0, + "content": "In this section, we introduce a key technical lemma in Section 5.1, based on which we provide a", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 660, + 475, + 674 + ], + "spans": [ + { + "bbox": [ + 105, + 660, + 475, + 674 + ], + "score": 1.0, + "content": "proof sketch of Theorems 3.3. The full proof of all our results can be found in the appendix.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.5 + } + ], + "page_idx": 6, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 679, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 118, + 678, + 445, + 693 + ], + "spans": [ + { + "bbox": [ + 118, + 678, + 298, + 693 + ], + "score": 1.0, + "content": "‡We have shown in the proof of Theorem 3.3 that", + "type": "text" + }, + { + "bbox": [ + 299, + 678, + 345, + 691 + ], + "score": 0.92, + "content": "m = \\widetilde \\Omega ( R ^ { 8 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 678, + 445, + 693 + ], + "score": 1.0, + "content": "(see (A.1) for more detail).", + "type": "text" + } + ] + }, + { + "bbox": [ + 118, + 689, + 506, + 704 + ], + "spans": [ + { + "bbox": [ + 118, + 689, + 506, + 704 + ], + "score": 1.0, + "content": "§Specifically, Allen-Zhu et al. (2019b); Zou and Gu (2019) require that any two data points (rather than data", + "type": "text" + } + ] + }, + { + "bbox": [ + 105, + 701, + 506, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 701, + 506, + 713 + ], + "score": 1.0, + "content": "points from different classes) are separated by a positive distance. Zou and Gu (2019) shows that this assumption", + "type": "text" + } + ] + }, + { + "bbox": [ + 105, + 711, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 711, + 505, + 723 + ], + "score": 1.0, + "content": "is equivalent to those made in Du et al. (2019b;a), which require that the composite kernel matrix is strictly", + "type": "text" + } + ] + }, + { + "bbox": [ + 105, + 721, + 168, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 168, + 732 + ], + "score": 1.0, + "content": "positive definite.", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 26, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "score": 1.0, + "content": "7", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 505, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 506, + 96 + ], + "score": 1.0, + "content": "In order to make a fair comparison, we reduce our results for multilayer networks to the two-layer", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 94, + 345, + 105 + ], + "spans": [ + { + "bbox": [ + 106, + 94, + 345, + 105 + ], + "score": 1.0, + "content": "setting. In this case, the neural network function takes form", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 105, + 80, + 506, + 105 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 245, + 107, + 365, + 122 + ], + "lines": [ + { + "bbox": [ + 245, + 107, + 365, + 122 + ], + "spans": [ + { + "bbox": [ + 245, + 107, + 365, + 122 + ], + "score": 0.92, + "content": "f _ { \\mathbf { W } } ( \\mathbf { x } ) = m ^ { 1 / 2 } \\mathbf { W } _ { 2 } \\sigma ( \\mathbf { W } _ { 1 } \\mathbf { x } ) .", + "type": "interline_equation", + "image_path": "d25d1130f5b79c5d1d4aa63ba6b20e110952a6905db54b07381ed73432297a79.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 245, + 107, + 365, + 122 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 124, + 505, + 162 + ], + "lines": [ + { + "bbox": [ + 106, + 124, + 505, + 137 + ], + "spans": [ + { + "bbox": [ + 106, + 124, + 505, + 137 + ], + "score": 1.0, + "content": "Then we provide the following proposition, which states that Assumption 4.3 implies a certain choice", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 135, + 504, + 149 + ], + "spans": [ + { + "bbox": [ + 106, + 136, + 118, + 149 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 118, + 135, + 162, + 149 + ], + "score": 0.93, + "content": "R = \\bar { \\mathcal { O } } ( 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 136, + 504, + 149 + ], + "score": 1.0, + "content": "such the the minimum training loss achieved by the function in the NTRF function", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 148, + 382, + 163 + ], + "spans": [ + { + "bbox": [ + 105, + 148, + 128, + 163 + ], + "score": 1.0, + "content": "class", + "type": "text" + }, + { + "bbox": [ + 129, + 149, + 180, + 162 + ], + "score": 0.93, + "content": "{ \\mathcal { F } } ( { \\mathbf { W } } ^ { ( 0 ) } , R )", + "type": "inline_equation" + }, + { + "bbox": [ + 180, + 148, + 215, + 163 + ], + "score": 1.0, + "content": "satisfies", + "type": "text" + }, + { + "bbox": [ + 216, + 149, + 272, + 162 + ], + "score": 0.93, + "content": "\\epsilon _ { \\mathrm { N T R F } } = O ( \\epsilon )", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 148, + 302, + 163 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 303, + 152, + 308, + 160 + ], + "score": 0.7, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 148, + 382, + 163 + ], + "score": 1.0, + "content": "is the target error.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4, + "bbox_fs": [ + 105, + 124, + 505, + 163 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 163, + 505, + 215 + ], + "lines": [ + { + "bbox": [ + 105, + 162, + 505, + 176 + ], + "spans": [ + { + "bbox": [ + 105, + 162, + 429, + 176 + ], + "score": 1.0, + "content": "Proposition 4.4. Suppose the training data satisfies Assumption 4.3. For any “ ‰", + "type": "text" + }, + { + "bbox": [ + 430, + 164, + 465, + 175 + ], + "score": 0.91, + "content": "\\epsilon , \\delta > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 465, + 162, + 483, + 176 + ], + "score": 1.0, + "content": ", let", + "type": "text" + }, + { + "bbox": [ + 483, + 164, + 505, + 174 + ], + "score": 0.86, + "content": "R =", + "type": "inline_equation" + } + ], + "index": 6 + }, + { + "bbox": [ + 107, + 173, + 505, + 188 + ], + "spans": [ + { + "bbox": [ + 107, + 174, + 217, + 187 + ], + "score": 0.89, + "content": "C \\big [ \\bar { \\log } ( n / \\delta ) + \\log ( 1 / \\bar { \\epsilon } ) \\big ] / \\gamma", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 173, + 380, + 188 + ], + "score": 1.0, + "content": "for some large enough absolute constant ˘", + "type": "text" + }, + { + "bbox": [ + 381, + 175, + 390, + 184 + ], + "score": 0.81, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 173, + 505, + 188 + ], + "score": 1.0, + "content": ". If the neural network width", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 185, + 505, + 201 + ], + "spans": [ + { + "bbox": [ + 105, + 185, + 142, + 201 + ], + "score": 1.0, + "content": "satisfies", + "type": "text" + }, + { + "bbox": [ + 142, + 187, + 236, + 200 + ], + "score": 0.9, + "content": "m = \\Omega \\big ( \\log ( n / \\delta ) / \\gamma ^ { 2 } \\big )", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 185, + 363, + 201 + ], + "score": 1.0, + "content": ", then with probability at least ˘", + "type": "text" + }, + { + "bbox": [ + 364, + 187, + 388, + 198 + ], + "score": 0.83, + "content": "1 - \\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 388, + 185, + 439, + 201 + ], + "score": 1.0, + "content": ", there exist", + "type": "text" + }, + { + "bbox": [ + 439, + 187, + 505, + 201 + ], + "score": 0.92, + "content": "F _ { \\mathbf { W } ^ { ( 0 ) } , \\overline { { \\mathbf { W } } } } ( \\mathbf { x } _ { i } ) \\in", + "type": "inline_equation" + } + ], + "index": 8 + }, + { + "bbox": [ + 107, + 199, + 340, + 216 + ], + "spans": [ + { + "bbox": [ + 107, + 200, + 158, + 214 + ], + "score": 0.92, + "content": "{ \\mathcal { F } } ( { \\bf W } ^ { ( 0 ) } , R )", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 199, + 198, + 216 + ], + "score": 1.0, + "content": "such that", + "type": "text" + }, + { + "bbox": [ + 199, + 200, + 338, + 215 + ], + "score": 0.91, + "content": "\\ell \\big ( y _ { i } \\cdot F _ { \\mathbf { W } ^ { ( 0 ) } , \\overline { { \\mathbf { W } } } } ( \\mathbf { x } _ { i } ) \\big ) \\leqslant \\epsilon , \\forall i \\in [ n ] .", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 199, + 340, + 216 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 7.5, + "bbox_fs": [ + 105, + 162, + 505, + 216 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 223, + 505, + 300 + ], + "lines": [ + { + "bbox": [ + 105, + 223, + 506, + 238 + ], + "spans": [ + { + "bbox": [ + 105, + 223, + 368, + 238 + ], + "score": 1.0, + "content": "Proposition 4.4 shows that under Assumption 4.3, there exists", + "type": "text" + }, + { + "bbox": [ + 369, + 223, + 482, + 238 + ], + "score": 0.93, + "content": "F _ { \\mathbf { W } ^ { ( 0 ) } , \\overline { { \\mathbf { W } } } } ( \\cdot ) \\in \\mathcal { F } ( \\mathbf { W } ^ { ( 0 ) } , R )", + "type": "inline_equation" + }, + { + "bbox": [ + 483, + 223, + 506, + 238 + ], + "score": 1.0, + "content": "with", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 107, + 237, + 506, + 255 + ], + "spans": [ + { + "bbox": [ + 107, + 237, + 159, + 252 + ], + "score": 0.93, + "content": "R = \\widetilde { \\mathcal { O } } ( 1 / \\gamma )", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 237, + 295, + 255 + ], + "score": 1.0, + "content": "such that the cross-entropy loss of", + "type": "text" + }, + { + "bbox": [ + 295, + 239, + 344, + 253 + ], + "score": 0.92, + "content": "F _ { \\mathbf { W } ^ { ( 0 ) } , \\overline { { \\mathbf { W } } } } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 237, + 506, + 255 + ], + "score": 1.0, + "content": "at each training data point is bounded by", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 250, + 506, + 264 + ], + "spans": [ + { + "bbox": [ + 105, + 250, + 184, + 264 + ], + "score": 1.0, + "content": "\u000f. This implies that", + "type": "text" + }, + { + "bbox": [ + 185, + 253, + 226, + 263 + ], + "score": 0.87, + "content": "\\epsilon _ { \\mathrm { N T R F } } \\leqslant \\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 226, + 250, + 394, + 264 + ], + "score": 1.0, + "content": ". Moreover, by applying Theorem 3.3 with", + "type": "text" + }, + { + "bbox": [ + 394, + 252, + 420, + 262 + ], + "score": 0.89, + "content": "L = 2", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 250, + 506, + 264 + ], + "score": 1.0, + "content": ", the condition on the", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 263, + 505, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 263, + 230, + 277 + ], + "score": 1.0, + "content": "neural network width becomes", + "type": "text" + }, + { + "bbox": [ + 230, + 263, + 291, + 277 + ], + "score": 0.94, + "content": "m = \\widetilde \\Omega ( 1 / \\gamma ^ { 8 } ) ^ { \\ddag }", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 263, + 505, + 277 + ], + "score": 1.0, + "content": ", which matches the results proved in Ji and Telgarsky", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 275, + 505, + 288 + ], + "spans": [ + { + "bbox": [ + 106, + 275, + 279, + 288 + ], + "score": 1.0, + "content": "(2020). Moreover, plugging these results on", + "type": "text" + }, + { + "bbox": [ + 279, + 278, + 289, + 286 + ], + "score": 0.73, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 290, + 275, + 307, + 288 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 307, + 277, + 330, + 286 + ], + "score": 0.61, + "content": "\\epsilon _ { \\mathrm { N T R F } }", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 275, + 505, + 288 + ], + "score": 1.0, + "content": "into Theorems 3.4 and 3.5, we can conclude", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 285, + 467, + 302 + ], + "spans": [ + { + "bbox": [ + 105, + 285, + 320, + 302 + ], + "score": 1.0, + "content": "that the bounds on the test error for GD and SGD are", + "type": "text" + }, + { + "bbox": [ + 321, + 286, + 361, + 300 + ], + "score": 0.93, + "content": "\\widetilde { \\mathcal { O } } ( n ^ { - 1 / 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 285, + 379, + 302 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 380, + 286, + 413, + 300 + ], + "score": 0.93, + "content": "\\widetilde { \\mathcal { O } } ( n ^ { - 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 413, + 285, + 467, + 302 + ], + "score": 1.0, + "content": "respectively.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 12.5, + "bbox_fs": [ + 105, + 223, + 506, + 302 + ] + }, + { + "type": "title", + "bbox": [ + 106, + 312, + 332, + 324 + ], + "lines": [ + { + "bbox": [ + 105, + 312, + 333, + 325 + ], + "spans": [ + { + "bbox": [ + 105, + 312, + 333, + 325 + ], + "score": 1.0, + "content": "4.3 CLASS-DEPENDENT DATA NONDEGENERATION", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 107, + 333, + 505, + 380 + ], + "lines": [ + { + "bbox": [ + 105, + 333, + 505, + 347 + ], + "spans": [ + { + "bbox": [ + 105, + 333, + 505, + 347 + ], + "score": 1.0, + "content": "In previous subsections, we have shown that under certain data separation conditions \u000fNTRF can be", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 344, + 505, + 358 + ], + "spans": [ + { + "bbox": [ + 105, + 346, + 383, + 358 + ], + "score": 1.0, + "content": "sufficiently small while the corresponding NTRF function class has", + "type": "text" + }, + { + "bbox": [ + 383, + 347, + 392, + 357 + ], + "score": 0.8, + "content": "R", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 346, + 428, + 358 + ], + "score": 1.0, + "content": "of order", + "type": "text" + }, + { + "bbox": [ + 428, + 344, + 450, + 358 + ], + "score": 0.91, + "content": "\\widetilde { \\mathcal { O } } ( 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 346, + 505, + 358 + ], + "score": 1.0, + "content": ". Thus neural", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 358, + 505, + 370 + ], + "spans": [ + { + "bbox": [ + 105, + 358, + 505, + 370 + ], + "score": 1.0, + "content": "networks with polylogarithmic width enjoy nice optimization and generalization guarantees. In this", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 368, + 506, + 381 + ], + "spans": [ + { + "bbox": [ + 105, + 368, + 506, + 381 + ], + "score": 1.0, + "content": "part, we consider the following much milder data separability assumption made in Zou et al. (2019).", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 18.5, + "bbox_fs": [ + 105, + 333, + 506, + 381 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 381, + 486, + 394 + ], + "lines": [ + { + "bbox": [ + 105, + 381, + 485, + 395 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 208, + 395 + ], + "score": 1.0, + "content": "Assumption 4.5. For all", + "type": "text" + }, + { + "bbox": [ + 208, + 382, + 232, + 393 + ], + "score": 0.9, + "content": "i \\neq i ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 381, + 242, + 395 + ], + "score": 1.0, + "content": "if", + "type": "text" + }, + { + "bbox": [ + 242, + 383, + 275, + 394 + ], + "score": 0.9, + "content": "y _ { i } \\neq y _ { i ^ { \\prime } }", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 381, + 299, + 395 + ], + "score": 1.0, + "content": ", then", + "type": "text" + }, + { + "bbox": [ + 299, + 381, + 364, + 394 + ], + "score": 0.93, + "content": "\\| \\mathbf { x } _ { i } - \\mathbf { x } _ { j } \\| _ { 2 } \\geqslant \\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 364, + 381, + 474, + 395 + ], + "score": 1.0, + "content": "for some absolute constant", + "type": "text" + }, + { + "bbox": [ + 474, + 383, + 481, + 393 + ], + "score": 0.84, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 482, + 381, + 485, + 395 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21, + "bbox_fs": [ + 105, + 381, + 485, + 395 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 401, + 505, + 446 + ], + "lines": [ + { + "bbox": [ + 106, + 402, + 505, + 413 + ], + "spans": [ + { + "bbox": [ + 106, + 402, + 505, + 413 + ], + "score": 1.0, + "content": "In contrast to the conventional data nondegeneration assumption (i.e., no duplicate data points) made", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 411, + 506, + 425 + ], + "spans": [ + { + "bbox": [ + 105, + 411, + 350, + 425 + ], + "score": 1.0, + "content": "in Allen-Zhu et al. (2019b); Du et al. (2019b;a); Zou and Gu", + "type": "text" + }, + { + "bbox": [ + 350, + 412, + 381, + 424 + ], + "score": 0.46, + "content": "( 2 0 1 9 )", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 411, + 506, + 425 + ], + "score": 1.0, + "content": ", Assumption 4.5 only requires", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 424, + 505, + 435 + ], + "spans": [ + { + "bbox": [ + 106, + 424, + 505, + 435 + ], + "score": 1.0, + "content": "that the data points from different classes are nondegenerate, thus we call it class-dependent data", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 435, + 177, + 447 + ], + "spans": [ + { + "bbox": [ + 106, + 435, + 177, + 447 + ], + "score": 1.0, + "content": "nondegeneration.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 23.5, + "bbox_fs": [ + 105, + 402, + 506, + 447 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 451, + 504, + 474 + ], + "lines": [ + { + "bbox": [ + 105, + 450, + 505, + 464 + ], + "spans": [ + { + "bbox": [ + 105, + 450, + 505, + 464 + ], + "score": 1.0, + "content": "We have the following proposition which shows that Assumption 4.5 also implies the existence of a", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 462, + 502, + 474 + ], + "spans": [ + { + "bbox": [ + 105, + 462, + 218, + 474 + ], + "score": 1.0, + "content": "good function that achieves", + "type": "text" + }, + { + "bbox": [ + 218, + 465, + 224, + 472 + ], + "score": 0.67, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 462, + 489, + 474 + ], + "score": 1.0, + "content": "training error, in the NTRF function class with a certain choice of", + "type": "text" + }, + { + "bbox": [ + 489, + 463, + 497, + 472 + ], + "score": 0.81, + "content": "R", + "type": "inline_equation" + }, + { + "bbox": [ + 498, + 462, + 502, + 474 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5, + "bbox_fs": [ + 105, + 450, + 505, + 474 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 476, + 283, + 487 + ], + "lines": [ + { + "bbox": [ + 106, + 475, + 284, + 489 + ], + "spans": [ + { + "bbox": [ + 106, + 475, + 284, + 489 + ], + "score": 1.0, + "content": "Proposition 4.6. Under Assumption 4.5, if", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28, + "bbox_fs": [ + 106, + 475, + 284, + 489 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 174, + 489, + 425, + 506 + ], + "lines": [ + { + "bbox": [ + 174, + 489, + 425, + 506 + ], + "spans": [ + { + "bbox": [ + 174, + 489, + 425, + 506 + ], + "score": 0.89, + "content": "R = \\Omega \\big ( n ^ { 3 / 2 } \\phi ^ { - 1 / 2 } \\log ( n \\delta ^ { - 1 } \\epsilon ^ { - 1 } ) \\big ) , \\qquad m = \\widetilde { \\Omega } \\big ( L ^ { 2 2 } n ^ { 1 2 } \\phi ^ { - 4 } \\big ) ,", + "type": "interline_equation", + "image_path": "273e301161a326045653bf26622e1cbcc77648eb5d2ac3ed46abf46277eb3a87.jpg" + } + ] + } + ], + "index": 29, + "virtual_lines": [ + { + "bbox": [ + 174, + 489, + 425, + 506 + ], + "spans": [], + "index": 29 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 507, + 306, + 519 + ], + "lines": [ + { + "bbox": [ + 105, + 507, + 307, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 507, + 141, + 520 + ], + "score": 1.0, + "content": "we have", + "type": "text" + }, + { + "bbox": [ + 141, + 508, + 183, + 519 + ], + "score": 0.63, + "content": "\\epsilon _ { \\mathrm { N T R F } } \\leqslant \\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 183, + 507, + 280, + 520 + ], + "score": 1.0, + "content": "with probability at least", + "type": "text" + }, + { + "bbox": [ + 280, + 508, + 303, + 518 + ], + "score": 0.82, + "content": "1 - \\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 507, + 307, + 520 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30, + "bbox_fs": [ + 105, + 507, + 307, + 520 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 526, + 506, + 611 + ], + "lines": [ + { + "bbox": [ + 106, + 526, + 506, + 540 + ], + "spans": [ + { + "bbox": [ + 106, + 526, + 412, + 540 + ], + "score": 1.0, + "content": "Proposition 4.6 suggests that under Assumption 4.5, in order to guarantee", + "type": "text" + }, + { + "bbox": [ + 413, + 528, + 456, + 538 + ], + "score": 0.88, + "content": "\\epsilon _ { \\mathrm { N T R F } } \\leqslant \\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 456, + 526, + 506, + 540 + ], + "score": 1.0, + "content": ", the size of", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 104, + 537, + 507, + 552 + ], + "spans": [ + { + "bbox": [ + 104, + 537, + 238, + 552 + ], + "score": 1.0, + "content": "NTRF function class needs to be", + "type": "text" + }, + { + "bbox": [ + 239, + 538, + 272, + 551 + ], + "score": 0.93, + "content": "\\Omega ( n ^ { 3 / 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 537, + 507, + 552 + ], + "score": 1.0, + "content": ". Plugging this into Theorems 3.4 and 3.5 leads to vacuous", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 549, + 507, + 562 + ], + "spans": [ + { + "bbox": [ + 105, + 549, + 507, + 562 + ], + "score": 1.0, + "content": "bounds on the test error. This makes sense since Assumption 4.5 basically covers the “random label”", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 560, + 505, + 573 + ], + "spans": [ + { + "bbox": [ + 105, + 560, + 505, + 573 + ], + "score": 1.0, + "content": "setting, which is impossible to be learned with small generalization error. Moreover, we would like", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 572, + 506, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 506, + 585 + ], + "score": 1.0, + "content": "to point out our theoretical analysis leads to a sharper over-parameterization condition than that` ˘", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 104, + 582, + 507, + 599 + ], + "spans": [ + { + "bbox": [ + 104, + 582, + 231, + 599 + ], + "score": 1.0, + "content": "proved in Zou et al. (2019), i.e.,", + "type": "text" + }, + { + "bbox": [ + 232, + 582, + 387, + 597 + ], + "score": 0.93, + "content": "\\bar { m = \\Omega } \\big ( n ^ { 1 4 } L ^ { 1 6 } \\phi ^ { - 4 } + n ^ { 1 2 } L ^ { 1 6 } \\bar { \\phi } ^ { - 4 } \\epsilon ^ { - 1 } \\big )", + "type": "inline_equation" + }, + { + "bbox": [ + 388, + 582, + 507, + 599 + ], + "score": 1.0, + "content": ", if the network depth satisfies", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 596, + 199, + 611 + ], + "spans": [ + { + "bbox": [ + 106, + 596, + 195, + 611 + ], + "score": 0.91, + "content": "L \\leqslant \\widetilde { \\mathcal { O } } ( n ^ { 1 / 3 } \\vee \\epsilon ^ { - 1 / 6 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 596, + 199, + 611 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 34, + "bbox_fs": [ + 104, + 526, + 507, + 611 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 626, + 320, + 639 + ], + "lines": [ + { + "bbox": [ + 105, + 626, + 321, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 321, + 640 + ], + "score": 1.0, + "content": "5 PROOF SKETCH OF THE MAIN THEORY", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 108, + 649, + 505, + 673 + ], + "lines": [ + { + "bbox": [ + 105, + 649, + 505, + 663 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 505, + 663 + ], + "score": 1.0, + "content": "In this section, we introduce a key technical lemma in Section 5.1, based on which we provide a", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 660, + 475, + 674 + ], + "spans": [ + { + "bbox": [ + 105, + 660, + 475, + 674 + ], + "score": 1.0, + "content": "proof sketch of Theorems 3.3. The full proof of all our results can be found in the appendix.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.5, + "bbox_fs": [ + 105, + 649, + 505, + 674 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 102, + 409, + 115 + ], + "lines": [ + { + "bbox": [ + 106, + 102, + 410, + 116 + ], + "spans": [ + { + "bbox": [ + 106, + 102, + 410, + 116 + ], + "score": 1.0, + "content": "Here we introduce a key technical lemma used in the proof of Theorem 3.3.", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 105, + 119, + 505, + 153 + ], + "lines": [ + { + "bbox": [ + 106, + 120, + 505, + 132 + ], + "spans": [ + { + "bbox": [ + 106, + 120, + 505, + 132 + ], + "score": 1.0, + "content": "Our proof is based on the key observation that near initialization, the neural network function can be", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 131, + 506, + 144 + ], + "spans": [ + { + "bbox": [ + 105, + 131, + 506, + 144 + ], + "score": 1.0, + "content": "approximated by its first-order Taylor expansion. In the following, we first give the definition of the", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 142, + 384, + 154 + ], + "spans": [ + { + "bbox": [ + 105, + 142, + 231, + 154 + ], + "score": 1.0, + "content": "linear approximation error in a", + "type": "text" + }, + { + "bbox": [ + 231, + 144, + 238, + 152 + ], + "score": 0.76, + "content": "\\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 238, + 142, + 384, + 154 + ], + "score": 1.0, + "content": "-neighborhood around initialization.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2 + }, + { + "type": "interline_equation", + "bbox": [ + 136, + 154, + 474, + 177 + ], + "lines": [ + { + "bbox": [ + 136, + 154, + 474, + 177 + ], + "spans": [ + { + "bbox": [ + 136, + 154, + 474, + 177 + ], + "score": 0.93, + "content": "\\epsilon _ { \\mathrm { a p p } } ( \\tau ) : = \\operatorname* { s u p } _ { \\substack { i = 1 , \\dots , n \\mathbf { W } ^ { \\prime } , \\mathbf { W } \\in \\mathcal { B } ( \\mathbf { W } ^ { ( 0 ) } , \\tau ) } } \\big | f _ { \\mathbf { W } ^ { \\prime } } ( \\mathbf { x } _ { i } ) - f _ { \\mathbf { W } } ( \\mathbf { x } _ { i } ) - \\big \\langle \\nabla f _ { \\mathbf { W } } ( \\mathbf { x } _ { i } ) , \\mathbf { W } ^ { \\prime } - \\mathbf { W } \\big \\rangle \\big | .", + "type": "interline_equation", + "image_path": "fc62874c860cacb84bb37a2e13076cad34a8f37b5bc277064009fc1729ac343f.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 136, + 154, + 474, + 177 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 180, + 506, + 235 + ], + "lines": [ + { + "bbox": [ + 105, + 179, + 506, + 193 + ], + "spans": [ + { + "bbox": [ + 105, + 179, + 506, + 193 + ], + "score": 1.0, + "content": "If all the iterates of GD stay inside a neighborhood around initialization with small linear approxima-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 191, + 505, + 203 + ], + "spans": [ + { + "bbox": [ + 106, + 191, + 505, + 203 + ], + "score": 1.0, + "content": "tion error, then we may expect that the training of neural networks should be similar to the training of", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 202, + 505, + 214 + ], + "spans": [ + { + "bbox": [ + 106, + 202, + 505, + 214 + ], + "score": 1.0, + "content": "the corresponding linear model, where standard optimization techniques can be applied. Motivated", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 213, + 506, + 225 + ], + "spans": [ + { + "bbox": [ + 105, + 213, + 506, + 225 + ], + "score": 1.0, + "content": "by this, we also give the following definition on the gradient upper bound of neural networks around", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 222, + 482, + 237 + ], + "spans": [ + { + "bbox": [ + 105, + 222, + 482, + 237 + ], + "score": 1.0, + "content": "initialization, which is related to the Lipschitz constant of the optimization objective function.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 7 + }, + { + "type": "interline_equation", + "bbox": [ + 191, + 237, + 419, + 259 + ], + "lines": [ + { + "bbox": [ + 191, + 237, + 419, + 259 + ], + "spans": [ + { + "bbox": [ + 191, + 237, + 419, + 259 + ], + "score": 0.9, + "content": "\\begin{array} { r } { M ( \\tau ) : = \\underset { i = 1 , \\dots , n } { \\operatorname* { s u p } } \\underset { l = 1 , \\dots , L } { \\operatorname* { s u p } } \\underset { \\mathbf { W } \\in \\mathcal { B } ( \\mathbf { W } ^ { ( 0 ) } , \\tau ) } { \\operatorname* { s u p } } \\Vert \\nabla _ { \\mathbf { W } _ { l } } f _ { \\mathbf { W } } ( \\mathbf { x } _ { i } ) \\Vert _ { F } . } \\end{array}", + "type": "interline_equation", + "image_path": "219751492f27f2b265a91f41d17b34154a2f1100e553e050d5bf5a11b3dfbf7d.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 191, + 237, + 419, + 259 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 262, + 502, + 286 + ], + "lines": [ + { + "bbox": [ + 104, + 260, + 505, + 280 + ], + "spans": [ + { + "bbox": [ + 104, + 260, + 224, + 280 + ], + "score": 1.0, + "content": "By definition, we can choose", + "type": "text" + }, + { + "bbox": [ + 224, + 263, + 329, + 276 + ], + "score": 0.91, + "content": "\\mathbf { W } ^ { * } \\in { \\cal B } ( \\mathbf { W } ^ { ( 0 ) } , R m ^ { - 1 / 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 260, + 369, + 280 + ], + "score": 1.0, + "content": "such that", + "type": "text" + }, + { + "bbox": [ + 369, + 263, + 505, + 277 + ], + "score": 0.9, + "content": "\\begin{array} { r } { n ^ { - 1 } \\sum _ { i = 1 } ^ { n } \\ell \\big ( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ^ { * } } ( \\mathbf { x } _ { i } ) \\big ) = } \\end{array}", + "type": "inline_equation" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 274, + 281, + 288 + ], + "spans": [ + { + "bbox": [ + 105, + 274, + 281, + 288 + ], + "score": 1.0, + "content": "\u000fNTRF. Then we have the following lemma.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5 + }, + { + "type": "text", + "bbox": [ + 106, + 288, + 504, + 312 + ], + "lines": [ + { + "bbox": [ + 105, + 286, + 504, + 304 + ], + "spans": [ + { + "bbox": [ + 105, + 286, + 177, + 304 + ], + "score": 1.0, + "content": "Lemma 5.1. Set", + "type": "text" + }, + { + "bbox": [ + 178, + 288, + 266, + 302 + ], + "score": 0.92, + "content": "\\eta = \\mathcal { O } ( L ^ { - 1 } M ( \\tau ) ^ { - 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 286, + 326, + 304 + ], + "score": 1.0, + "content": ". Suppose that", + "type": "text" + }, + { + "bbox": [ + 326, + 288, + 403, + 302 + ], + "score": 0.94, + "content": "\\mathbf { W } ^ { * } \\in { \\cal B } ( \\mathbf { W } ^ { ( 0 ) } , \\tau )", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 286, + 422, + 304 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 423, + 288, + 504, + 302 + ], + "score": 0.92, + "content": "\\mathbf { W } ^ { ( t ) } \\in { \\cal B } ( \\mathbf { W } ^ { ( 0 ) } , \\tau )", + "type": "inline_equation" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 300, + 271, + 313 + ], + "spans": [ + { + "bbox": [ + 106, + 300, + 133, + 313 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 133, + 301, + 193, + 311 + ], + "score": 0.92, + "content": "0 \\leqslant t \\leqslant t ^ { \\prime } - 1", + "type": "inline_equation" + }, + { + "bbox": [ + 193, + 300, + 271, + 313 + ], + "score": 1.0, + "content": ". Then it holds that", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5 + }, + { + "type": "interline_equation", + "bbox": [ + 160, + 313, + 451, + 347 + ], + "lines": [ + { + "bbox": [ + 160, + 313, + 451, + 347 + ], + "spans": [ + { + "bbox": [ + 160, + 313, + 451, + 347 + ], + "score": 0.92, + "content": "\\frac { 1 } { t ^ { \\prime } } \\sum _ { t = 0 } ^ { t ^ { \\prime } - 1 } L _ { S } ( \\mathbf { W } ^ { ( t ) } ) \\leqslant \\frac { \\| \\mathbf { W } ^ { ( 0 ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } - \\| \\mathbf { W } ^ { ( t ^ { \\prime } ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } + 2 t ^ { \\prime } \\eta \\epsilon _ { \\mathrm { N T R F } } } { t ^ { \\prime } \\eta \\left( \\frac { 3 } { 2 } - 4 \\epsilon _ { \\mathrm { a p p } } ( \\tau ) \\right) } .", + "type": "interline_equation", + "image_path": "2ec8deb64ab26e69d7454635272ae2f470e29db25f7bf4f79d78a047f755423f.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 160, + 313, + 451, + 324.3333333333333 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 160, + 324.3333333333333, + 451, + 335.66666666666663 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 160, + 335.66666666666663, + 451, + 346.99999999999994 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 355, + 505, + 437 + ], + "lines": [ + { + "bbox": [ + 104, + 353, + 506, + 370 + ], + "spans": [ + { + "bbox": [ + 104, + 353, + 346, + 370 + ], + "score": 1.0, + "content": "Lemma 5.1 plays a central role in our proof. In specific, if", + "type": "text" + }, + { + "bbox": [ + 347, + 355, + 428, + 369 + ], + "score": 0.93, + "content": "\\mathbf { W } ^ { ( t ) } \\in { \\cal B } ( \\mathbf { W } ^ { ( 0 ) } , \\tau )", + "type": "inline_equation" + }, + { + "bbox": [ + 428, + 353, + 456, + 370 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 456, + 356, + 481, + 367 + ], + "score": 0.9, + "content": "t \\leqslant t ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 481, + 353, + 506, + 370 + ], + "score": 1.0, + "content": ", then", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 366, + 506, + 380 + ], + "spans": [ + { + "bbox": [ + 105, + 366, + 506, + 380 + ], + "score": 1.0, + "content": "Lemma 5.1 implies that the average training loss is in the same order of \u000fNTRF as long as the linear", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 104, + 378, + 506, + 391 + ], + "spans": [ + { + "bbox": [ + 104, + 378, + 187, + 391 + ], + "score": 1.0, + "content": "approximation error", + "type": "text" + }, + { + "bbox": [ + 187, + 378, + 219, + 390 + ], + "score": 0.92, + "content": "\\epsilon _ { \\mathrm { a p p } } ( \\tau )", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 378, + 506, + 391 + ], + "score": 1.0, + "content": "is bounded by a positive constant. This is in contrast to the proof in Cao", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 388, + 507, + 404 + ], + "spans": [ + { + "bbox": [ + 105, + 388, + 199, + 404 + ], + "score": 1.0, + "content": "and Gu (2019), where", + "type": "text" + }, + { + "bbox": [ + 199, + 390, + 230, + 401 + ], + "score": 0.88, + "content": "\\bar { \\epsilon } _ { \\mathrm { a p p } } ( \\tau )", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 388, + 507, + 404 + ], + "score": 1.0, + "content": "appears as an additive term in the upper bound of the training loss,", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 399, + 506, + 415 + ], + "spans": [ + { + "bbox": [ + 105, + 399, + 164, + 415 + ], + "score": 1.0, + "content": "thus requiring", + "type": "text" + }, + { + "bbox": [ + 165, + 401, + 248, + 412 + ], + "score": 0.9, + "content": "\\epsilon _ { \\mathrm { a p p } } ( \\tau ) = \\bar { \\mathcal { O } } ( \\epsilon _ { \\mathrm { N T R F } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 399, + 506, + 415 + ], + "score": 1.0, + "content": "to achieve the same error bound as in Lemma 5.1. Since we can", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 104, + 411, + 506, + 427 + ], + "spans": [ + { + "bbox": [ + 104, + 411, + 146, + 427 + ], + "score": 1.0, + "content": "show that", + "type": "text" + }, + { + "bbox": [ + 147, + 412, + 220, + 426 + ], + "score": 0.9, + "content": "\\epsilon _ { \\mathrm { a p p } } = \\tilde { \\mathcal { O } } ( m ^ { - 1 / 6 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 220, + 411, + 365, + 427 + ], + "score": 1.0, + "content": "(See Section A.1), this suggests that", + "type": "text" + }, + { + "bbox": [ + 365, + 411, + 408, + 426 + ], + "score": 0.93, + "content": "m = \\widetilde { \\Omega } ( 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 408, + 411, + 506, + 427 + ], + "score": 1.0, + "content": "is sufficient to make the", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 424, + 302, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 424, + 302, + 439 + ], + "score": 1.0, + "content": "average training loss in the same order of \u000fNTRF.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 106, + 441, + 505, + 530 + ], + "lines": [ + { + "bbox": [ + 106, + 441, + 506, + 454 + ], + "spans": [ + { + "bbox": [ + 106, + 441, + 506, + 454 + ], + "score": 1.0, + "content": "Compared with the recent results for two-layer networks by Ji and Telgarsky (2020), Lemma 5.1", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 453, + 505, + 465 + ], + "spans": [ + { + "bbox": [ + 105, + 453, + 505, + 465 + ], + "score": 1.0, + "content": "is proved with different techniques. In specific, the proof by Ji and Telgarsky (2020) relies on the", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 464, + 505, + 476 + ], + "spans": [ + { + "bbox": [ + 105, + 464, + 505, + 476 + ], + "score": 1.0, + "content": "1-homogeneous property of the ReLU activation function, which limits their analysis to two-layer", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 474, + 505, + 487 + ], + "spans": [ + { + "bbox": [ + 105, + 474, + 505, + 487 + ], + "score": 1.0, + "content": "networks with fixed second layer weights. In comparison, our proof does not rely on homogeneity, and", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 486, + 505, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 486, + 505, + 498 + ], + "score": 1.0, + "content": "is purely based on the linear approximation property of neural networks and some specific properties", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 495, + 506, + 510 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 506, + 510 + ], + "score": 1.0, + "content": "of the loss function. Therefore, our proof technique can handle deep networks, and is potentially", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 507, + 506, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 507, + 506, + 520 + ], + "score": 1.0, + "content": "applicable to non-ReLU activation functions and other network architectures (e.g, Convolutional", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 518, + 271, + 531 + ], + "spans": [ + { + "bbox": [ + 105, + 518, + 271, + 531 + ], + "score": 1.0, + "content": "neural networks and Residual networks).", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 28.5 + }, + { + "type": "title", + "bbox": [ + 108, + 542, + 272, + 554 + ], + "lines": [ + { + "bbox": [ + 106, + 542, + 274, + 555 + ], + "spans": [ + { + "bbox": [ + 106, + 542, + 274, + 555 + ], + "score": 1.0, + "content": "5.2 PROOF SKETCH OF THEOREM 3.3", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 106, + 563, + 505, + 597 + ], + "lines": [ + { + "bbox": [ + 106, + 563, + 505, + 576 + ], + "spans": [ + { + "bbox": [ + 106, + 563, + 505, + 576 + ], + "score": 1.0, + "content": "Here we provide a proof sketch of Theorem 3.3. The proof consists of two steps: (i) showing that", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 574, + 505, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 574, + 119, + 587 + ], + "score": 1.0, + "content": "all", + "type": "text" + }, + { + "bbox": [ + 119, + 575, + 128, + 584 + ], + "score": 0.8, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 128, + 574, + 505, + 587 + ], + "score": 1.0, + "content": "iterates stay close to initialization, and (ii) bounding the empirical loss achieved by gradient", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 584, + 353, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 584, + 353, + 597 + ], + "score": 1.0, + "content": "descent. Both of these steps are proved based on Lemma 5.1.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 106, + 608, + 505, + 686 + ], + "lines": [ + { + "bbox": [ + 104, + 607, + 506, + 622 + ], + "spans": [ + { + "bbox": [ + 104, + 607, + 334, + 622 + ], + "score": 1.0, + "content": "Proof sketch of Theorem 3.3. Recall that we choose ` ˘", + "type": "text" + }, + { + "bbox": [ + 334, + 608, + 456, + 622 + ], + "score": 0.86, + "content": "\\begin{array} { r l r } { \\mathbf { W } ^ { * } } & { { } \\in } & { \\mathcal { B } ( \\mathbf { W } ^ { ( 0 ) } , R m ^ { - 1 / 2 } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 456, + 607, + 506, + 622 + ], + "score": 1.0, + "content": "such that", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 617, + 509, + 642 + ], + "spans": [ + { + "bbox": [ + 106, + 622, + 269, + 636 + ], + "score": 0.9, + "content": "\\begin{array} { r } { n ^ { - 1 } \\sum _ { i = 1 } ^ { n } \\ell \\big ( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ^ { * } } ( \\mathbf { x } _ { i } ) \\big ) \\ = \\ \\epsilon _ { \\mathrm { N T R F } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 270, + 617, + 307, + 642 + ], + "score": 1.0, + "content": ". We set", + "type": "text" + }, + { + "bbox": [ + 307, + 621, + 398, + 635 + ], + "score": 0.92, + "content": "\\tau = \\widetilde { \\mathcal { O } } ( L ^ { 1 / 2 } m ^ { - 1 / 2 } R )", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 617, + 509, + 642 + ], + "score": 1.0, + "content": ", which is chosen slightly", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 104, + 635, + 506, + 650 + ], + "spans": [ + { + "bbox": [ + 104, + 635, + 154, + 650 + ], + "score": 1.0, + "content": "larger than", + "type": "text" + }, + { + "bbox": [ + 155, + 636, + 191, + 647 + ], + "score": 0.9, + "content": "m ^ { - 1 / 2 } R", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 635, + 349, + 650 + ], + "score": 1.0, + "content": "since Lemma 5.1 requires the region", + "type": "text" + }, + { + "bbox": [ + 350, + 636, + 398, + 649 + ], + "score": 0.93, + "content": "B ( \\mathbf { W } ^ { ( 0 ) } , \\tau )", + "type": "inline_equation" + }, + { + "bbox": [ + 398, + 635, + 466, + 650 + ], + "score": 1.0, + "content": "to include both", + "type": "text" + }, + { + "bbox": [ + 467, + 636, + 486, + 647 + ], + "score": 0.83, + "content": "\\mathbf { W } ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 486, + 635, + 506, + 650 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 107, + 646, + 504, + 664 + ], + "spans": [ + { + "bbox": [ + 107, + 648, + 169, + 661 + ], + "score": 0.9, + "content": "\\{ \\mathbf { W } ^ { ( t ) } \\} _ { t = 0 , \\ldots , t ^ { \\prime } }", + "type": "inline_equation" + }, + { + "bbox": [ + 169, + 646, + 355, + 664 + ], + "score": 1.0, + "content": ". Then by Lemmas 4.1 and B.3 in Cao and", + "type": "text" + }, + { + "bbox": [ + 355, + 649, + 370, + 660 + ], + "score": 0.41, + "content": "\\mathrm { G u }", + "type": "inline_equation" + }, + { + "bbox": [ + 370, + 646, + 462, + 664 + ], + "score": 1.0, + "content": "(2019) we know that", + "type": "text" + }, + { + "bbox": [ + 462, + 649, + 504, + 662 + ], + "score": 0.91, + "content": "\\epsilon _ { \\mathrm { a p p } } ( \\tau ) =", + "type": "inline_equation" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 659, + 506, + 676 + ], + "spans": [ + { + "bbox": [ + 106, + 660, + 272, + 675 + ], + "score": 0.92, + "content": "{ \\widetilde O } ( \\tau ^ { 4 / 3 } m ^ { 1 / 2 } L ^ { 3 } ) = { \\widetilde O } ( R ^ { 4 / 3 } L ^ { 1 1 / 3 } m ^ { - 1 / 6 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 659, + 375, + 676 + ], + "score": 1.0, + "content": ". Therefore, we can set", + "type": "text" + }, + { + "bbox": [ + 375, + 660, + 443, + 675 + ], + "score": 0.94, + "content": "m = \\widetilde \\Omega ( R ^ { 8 } L ^ { 2 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 659, + 506, + 676 + ], + "score": 1.0, + "content": "to ensure that", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 107, + 673, + 168, + 687 + ], + "spans": [ + { + "bbox": [ + 107, + 674, + 163, + 686 + ], + "score": 0.84, + "content": "\\epsilon _ { \\mathrm { a p p } } ( \\tau ) \\leqslant 1 / 8", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 673, + 168, + 687 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 39.5 + }, + { + "type": "text", + "bbox": [ + 105, + 692, + 505, + 716 + ], + "lines": [ + { + "bbox": [ + 105, + 690, + 506, + 705 + ], + "spans": [ + { + "bbox": [ + 105, + 690, + 369, + 705 + ], + "score": 1.0, + "content": "Then we proceed to show that all iterates stay inside the region", + "type": "text" + }, + { + "bbox": [ + 370, + 691, + 417, + 705 + ], + "score": 0.95, + "content": "B ( \\mathbf { W } ^ { ( 0 ) } , \\tau )", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 690, + 506, + 705 + ], + "score": 1.0, + "content": ". Since the L.H.S. of", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 703, + 396, + 716 + ], + "spans": [ + { + "bbox": [ + 105, + 703, + 244, + 715 + ], + "score": 1.0, + "content": "Lemma 5.1 is strictly positive and", + "type": "text" + }, + { + "bbox": [ + 245, + 703, + 300, + 716 + ], + "score": 0.92, + "content": "\\epsilon _ { \\mathrm { a p p } } ( \\tau ) \\leqslant \\dot { 1 / 8 }", + "type": "inline_equation" + }, + { + "bbox": [ + 301, + 703, + 366, + 715 + ], + "score": 1.0, + "content": ", we have for all", + "type": "text" + }, + { + "bbox": [ + 366, + 704, + 391, + 714 + ], + "score": 0.88, + "content": "t \\leqslant T", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 703, + 396, + 715 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43.5 + }, + { + "type": "interline_equation", + "bbox": [ + 201, + 718, + 408, + 733 + ], + "lines": [ + { + "bbox": [ + 201, + 718, + 408, + 733 + ], + "spans": [ + { + "bbox": [ + 201, + 718, + 408, + 733 + ], + "score": 0.89, + "content": "\\| \\mathbf { W } ^ { ( 0 ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } - \\| \\mathbf { W } ^ { ( t ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } \\geqslant - 2 t \\eta \\epsilon _ { \\mathrm { N T R F } } ,", + "type": "interline_equation", + "image_path": "5aa86cb4870bf21d6849b64f08d570328562778861bf0ddbb57796719d987235.jpg" + } + ] + } + ], + "index": 45, + "virtual_lines": [ + { + "bbox": [ + 201, + 718, + 408, + 733 + ], + "spans": [], + "index": 45 + } + ] + } + ], + "page_idx": 7, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 26, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 761 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 761 + ], + "score": 1.0, + "content": "8", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 82, + 247, + 93 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 247, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 247, + 95 + ], + "score": 1.0, + "content": "5.1 A KEY TECHNICAL LEMMA", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 102, + 409, + 115 + ], + "lines": [ + { + "bbox": [ + 106, + 102, + 410, + 116 + ], + "spans": [ + { + "bbox": [ + 106, + 102, + 410, + 116 + ], + "score": 1.0, + "content": "Here we introduce a key technical lemma used in the proof of Theorem 3.3.", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0, + "bbox_fs": [ + 106, + 102, + 410, + 116 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 119, + 505, + 153 + ], + "lines": [ + { + "bbox": [ + 106, + 120, + 505, + 132 + ], + "spans": [ + { + "bbox": [ + 106, + 120, + 505, + 132 + ], + "score": 1.0, + "content": "Our proof is based on the key observation that near initialization, the neural network function can be", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 131, + 506, + 144 + ], + "spans": [ + { + "bbox": [ + 105, + 131, + 506, + 144 + ], + "score": 1.0, + "content": "approximated by its first-order Taylor expansion. In the following, we first give the definition of the", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 142, + 384, + 154 + ], + "spans": [ + { + "bbox": [ + 105, + 142, + 231, + 154 + ], + "score": 1.0, + "content": "linear approximation error in a", + "type": "text" + }, + { + "bbox": [ + 231, + 144, + 238, + 152 + ], + "score": 0.76, + "content": "\\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 238, + 142, + 384, + 154 + ], + "score": 1.0, + "content": "-neighborhood around initialization.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2, + "bbox_fs": [ + 105, + 120, + 506, + 154 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 136, + 154, + 474, + 177 + ], + "lines": [ + { + "bbox": [ + 136, + 154, + 474, + 177 + ], + "spans": [ + { + "bbox": [ + 136, + 154, + 474, + 177 + ], + "score": 0.93, + "content": "\\epsilon _ { \\mathrm { a p p } } ( \\tau ) : = \\operatorname* { s u p } _ { \\substack { i = 1 , \\dots , n \\mathbf { W } ^ { \\prime } , \\mathbf { W } \\in \\mathcal { B } ( \\mathbf { W } ^ { ( 0 ) } , \\tau ) } } \\big | f _ { \\mathbf { W } ^ { \\prime } } ( \\mathbf { x } _ { i } ) - f _ { \\mathbf { W } } ( \\mathbf { x } _ { i } ) - \\big \\langle \\nabla f _ { \\mathbf { W } } ( \\mathbf { x } _ { i } ) , \\mathbf { W } ^ { \\prime } - \\mathbf { W } \\big \\rangle \\big | .", + "type": "interline_equation", + "image_path": "fc62874c860cacb84bb37a2e13076cad34a8f37b5bc277064009fc1729ac343f.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 136, + 154, + 474, + 177 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 180, + 506, + 235 + ], + "lines": [ + { + "bbox": [ + 105, + 179, + 506, + 193 + ], + "spans": [ + { + "bbox": [ + 105, + 179, + 506, + 193 + ], + "score": 1.0, + "content": "If all the iterates of GD stay inside a neighborhood around initialization with small linear approxima-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 191, + 505, + 203 + ], + "spans": [ + { + "bbox": [ + 106, + 191, + 505, + 203 + ], + "score": 1.0, + "content": "tion error, then we may expect that the training of neural networks should be similar to the training of", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 202, + 505, + 214 + ], + "spans": [ + { + "bbox": [ + 106, + 202, + 505, + 214 + ], + "score": 1.0, + "content": "the corresponding linear model, where standard optimization techniques can be applied. Motivated", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 213, + 506, + 225 + ], + "spans": [ + { + "bbox": [ + 105, + 213, + 506, + 225 + ], + "score": 1.0, + "content": "by this, we also give the following definition on the gradient upper bound of neural networks around", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 222, + 482, + 237 + ], + "spans": [ + { + "bbox": [ + 105, + 222, + 482, + 237 + ], + "score": 1.0, + "content": "initialization, which is related to the Lipschitz constant of the optimization objective function.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 7, + "bbox_fs": [ + 105, + 179, + 506, + 237 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 191, + 237, + 419, + 259 + ], + "lines": [ + { + "bbox": [ + 191, + 237, + 419, + 259 + ], + "spans": [ + { + "bbox": [ + 191, + 237, + 419, + 259 + ], + "score": 0.9, + "content": "\\begin{array} { r } { M ( \\tau ) : = \\underset { i = 1 , \\dots , n } { \\operatorname* { s u p } } \\underset { l = 1 , \\dots , L } { \\operatorname* { s u p } } \\underset { \\mathbf { W } \\in \\mathcal { B } ( \\mathbf { W } ^ { ( 0 ) } , \\tau ) } { \\operatorname* { s u p } } \\Vert \\nabla _ { \\mathbf { W } _ { l } } f _ { \\mathbf { W } } ( \\mathbf { x } _ { i } ) \\Vert _ { F } . } \\end{array}", + "type": "interline_equation", + "image_path": "219751492f27f2b265a91f41d17b34154a2f1100e553e050d5bf5a11b3dfbf7d.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 191, + 237, + 419, + 259 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 262, + 502, + 286 + ], + "lines": [ + { + "bbox": [ + 104, + 260, + 505, + 280 + ], + "spans": [ + { + "bbox": [ + 104, + 260, + 224, + 280 + ], + "score": 1.0, + "content": "By definition, we can choose", + "type": "text" + }, + { + "bbox": [ + 224, + 263, + 329, + 276 + ], + "score": 0.91, + "content": "\\mathbf { W } ^ { * } \\in { \\cal B } ( \\mathbf { W } ^ { ( 0 ) } , R m ^ { - 1 / 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 260, + 369, + 280 + ], + "score": 1.0, + "content": "such that", + "type": "text" + }, + { + "bbox": [ + 369, + 263, + 505, + 277 + ], + "score": 0.9, + "content": "\\begin{array} { r } { n ^ { - 1 } \\sum _ { i = 1 } ^ { n } \\ell \\big ( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ^ { * } } ( \\mathbf { x } _ { i } ) \\big ) = } \\end{array}", + "type": "inline_equation" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 274, + 281, + 288 + ], + "spans": [ + { + "bbox": [ + 105, + 274, + 281, + 288 + ], + "score": 1.0, + "content": "\u000fNTRF. Then we have the following lemma.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5, + "bbox_fs": [ + 104, + 260, + 505, + 288 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 288, + 504, + 312 + ], + "lines": [ + { + "bbox": [ + 105, + 286, + 504, + 304 + ], + "spans": [ + { + "bbox": [ + 105, + 286, + 177, + 304 + ], + "score": 1.0, + "content": "Lemma 5.1. Set", + "type": "text" + }, + { + "bbox": [ + 178, + 288, + 266, + 302 + ], + "score": 0.92, + "content": "\\eta = \\mathcal { O } ( L ^ { - 1 } M ( \\tau ) ^ { - 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 286, + 326, + 304 + ], + "score": 1.0, + "content": ". Suppose that", + "type": "text" + }, + { + "bbox": [ + 326, + 288, + 403, + 302 + ], + "score": 0.94, + "content": "\\mathbf { W } ^ { * } \\in { \\cal B } ( \\mathbf { W } ^ { ( 0 ) } , \\tau )", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 286, + 422, + 304 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 423, + 288, + 504, + 302 + ], + "score": 0.92, + "content": "\\mathbf { W } ^ { ( t ) } \\in { \\cal B } ( \\mathbf { W } ^ { ( 0 ) } , \\tau )", + "type": "inline_equation" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 300, + 271, + 313 + ], + "spans": [ + { + "bbox": [ + 106, + 300, + 133, + 313 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 133, + 301, + 193, + 311 + ], + "score": 0.92, + "content": "0 \\leqslant t \\leqslant t ^ { \\prime } - 1", + "type": "inline_equation" + }, + { + "bbox": [ + 193, + 300, + 271, + 313 + ], + "score": 1.0, + "content": ". Then it holds that", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5, + "bbox_fs": [ + 105, + 286, + 504, + 313 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 160, + 313, + 451, + 347 + ], + "lines": [ + { + "bbox": [ + 160, + 313, + 451, + 347 + ], + "spans": [ + { + "bbox": [ + 160, + 313, + 451, + 347 + ], + "score": 0.92, + "content": "\\frac { 1 } { t ^ { \\prime } } \\sum _ { t = 0 } ^ { t ^ { \\prime } - 1 } L _ { S } ( \\mathbf { W } ^ { ( t ) } ) \\leqslant \\frac { \\| \\mathbf { W } ^ { ( 0 ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } - \\| \\mathbf { W } ^ { ( t ^ { \\prime } ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } + 2 t ^ { \\prime } \\eta \\epsilon _ { \\mathrm { N T R F } } } { t ^ { \\prime } \\eta \\left( \\frac { 3 } { 2 } - 4 \\epsilon _ { \\mathrm { a p p } } ( \\tau ) \\right) } .", + "type": "interline_equation", + "image_path": "2ec8deb64ab26e69d7454635272ae2f470e29db25f7bf4f79d78a047f755423f.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 160, + 313, + 451, + 324.3333333333333 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 160, + 324.3333333333333, + 451, + 335.66666666666663 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 160, + 335.66666666666663, + 451, + 346.99999999999994 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 355, + 505, + 437 + ], + "lines": [ + { + "bbox": [ + 104, + 353, + 506, + 370 + ], + "spans": [ + { + "bbox": [ + 104, + 353, + 346, + 370 + ], + "score": 1.0, + "content": "Lemma 5.1 plays a central role in our proof. In specific, if", + "type": "text" + }, + { + "bbox": [ + 347, + 355, + 428, + 369 + ], + "score": 0.93, + "content": "\\mathbf { W } ^ { ( t ) } \\in { \\cal B } ( \\mathbf { W } ^ { ( 0 ) } , \\tau )", + "type": "inline_equation" + }, + { + "bbox": [ + 428, + 353, + 456, + 370 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 456, + 356, + 481, + 367 + ], + "score": 0.9, + "content": "t \\leqslant t ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 481, + 353, + 506, + 370 + ], + "score": 1.0, + "content": ", then", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 366, + 506, + 380 + ], + "spans": [ + { + "bbox": [ + 105, + 366, + 506, + 380 + ], + "score": 1.0, + "content": "Lemma 5.1 implies that the average training loss is in the same order of \u000fNTRF as long as the linear", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 104, + 378, + 506, + 391 + ], + "spans": [ + { + "bbox": [ + 104, + 378, + 187, + 391 + ], + "score": 1.0, + "content": "approximation error", + "type": "text" + }, + { + "bbox": [ + 187, + 378, + 219, + 390 + ], + "score": 0.92, + "content": "\\epsilon _ { \\mathrm { a p p } } ( \\tau )", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 378, + 506, + 391 + ], + "score": 1.0, + "content": "is bounded by a positive constant. This is in contrast to the proof in Cao", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 388, + 507, + 404 + ], + "spans": [ + { + "bbox": [ + 105, + 388, + 199, + 404 + ], + "score": 1.0, + "content": "and Gu (2019), where", + "type": "text" + }, + { + "bbox": [ + 199, + 390, + 230, + 401 + ], + "score": 0.88, + "content": "\\bar { \\epsilon } _ { \\mathrm { a p p } } ( \\tau )", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 388, + 507, + 404 + ], + "score": 1.0, + "content": "appears as an additive term in the upper bound of the training loss,", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 399, + 506, + 415 + ], + "spans": [ + { + "bbox": [ + 105, + 399, + 164, + 415 + ], + "score": 1.0, + "content": "thus requiring", + "type": "text" + }, + { + "bbox": [ + 165, + 401, + 248, + 412 + ], + "score": 0.9, + "content": "\\epsilon _ { \\mathrm { a p p } } ( \\tau ) = \\bar { \\mathcal { O } } ( \\epsilon _ { \\mathrm { N T R F } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 399, + 506, + 415 + ], + "score": 1.0, + "content": "to achieve the same error bound as in Lemma 5.1. Since we can", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 104, + 411, + 506, + 427 + ], + "spans": [ + { + "bbox": [ + 104, + 411, + 146, + 427 + ], + "score": 1.0, + "content": "show that", + "type": "text" + }, + { + "bbox": [ + 147, + 412, + 220, + 426 + ], + "score": 0.9, + "content": "\\epsilon _ { \\mathrm { a p p } } = \\tilde { \\mathcal { O } } ( m ^ { - 1 / 6 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 220, + 411, + 365, + 427 + ], + "score": 1.0, + "content": "(See Section A.1), this suggests that", + "type": "text" + }, + { + "bbox": [ + 365, + 411, + 408, + 426 + ], + "score": 0.93, + "content": "m = \\widetilde { \\Omega } ( 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 408, + 411, + 506, + 427 + ], + "score": 1.0, + "content": "is sufficient to make the", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 424, + 302, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 424, + 302, + 439 + ], + "score": 1.0, + "content": "average training loss in the same order of \u000fNTRF.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 21, + "bbox_fs": [ + 104, + 353, + 507, + 439 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 441, + 505, + 530 + ], + "lines": [ + { + "bbox": [ + 106, + 441, + 506, + 454 + ], + "spans": [ + { + "bbox": [ + 106, + 441, + 506, + 454 + ], + "score": 1.0, + "content": "Compared with the recent results for two-layer networks by Ji and Telgarsky (2020), Lemma 5.1", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 453, + 505, + 465 + ], + "spans": [ + { + "bbox": [ + 105, + 453, + 505, + 465 + ], + "score": 1.0, + "content": "is proved with different techniques. In specific, the proof by Ji and Telgarsky (2020) relies on the", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 464, + 505, + 476 + ], + "spans": [ + { + "bbox": [ + 105, + 464, + 505, + 476 + ], + "score": 1.0, + "content": "1-homogeneous property of the ReLU activation function, which limits their analysis to two-layer", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 474, + 505, + 487 + ], + "spans": [ + { + "bbox": [ + 105, + 474, + 505, + 487 + ], + "score": 1.0, + "content": "networks with fixed second layer weights. In comparison, our proof does not rely on homogeneity, and", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 486, + 505, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 486, + 505, + 498 + ], + "score": 1.0, + "content": "is purely based on the linear approximation property of neural networks and some specific properties", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 495, + 506, + 510 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 506, + 510 + ], + "score": 1.0, + "content": "of the loss function. Therefore, our proof technique can handle deep networks, and is potentially", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 507, + 506, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 507, + 506, + 520 + ], + "score": 1.0, + "content": "applicable to non-ReLU activation functions and other network architectures (e.g, Convolutional", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 518, + 271, + 531 + ], + "spans": [ + { + "bbox": [ + 105, + 518, + 271, + 531 + ], + "score": 1.0, + "content": "neural networks and Residual networks).", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 28.5, + "bbox_fs": [ + 105, + 441, + 506, + 531 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 542, + 272, + 554 + ], + "lines": [ + { + "bbox": [ + 106, + 542, + 274, + 555 + ], + "spans": [ + { + "bbox": [ + 106, + 542, + 274, + 555 + ], + "score": 1.0, + "content": "5.2 PROOF SKETCH OF THEOREM 3.3", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 106, + 563, + 505, + 597 + ], + "lines": [ + { + "bbox": [ + 106, + 563, + 505, + 576 + ], + "spans": [ + { + "bbox": [ + 106, + 563, + 505, + 576 + ], + "score": 1.0, + "content": "Here we provide a proof sketch of Theorem 3.3. The proof consists of two steps: (i) showing that", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 574, + 505, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 574, + 119, + 587 + ], + "score": 1.0, + "content": "all", + "type": "text" + }, + { + "bbox": [ + 119, + 575, + 128, + 584 + ], + "score": 0.8, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 128, + 574, + 505, + 587 + ], + "score": 1.0, + "content": "iterates stay close to initialization, and (ii) bounding the empirical loss achieved by gradient", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 584, + 353, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 584, + 353, + 597 + ], + "score": 1.0, + "content": "descent. Both of these steps are proved based on Lemma 5.1.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35, + "bbox_fs": [ + 105, + 563, + 505, + 597 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 608, + 505, + 686 + ], + "lines": [ + { + "bbox": [ + 104, + 607, + 506, + 622 + ], + "spans": [ + { + "bbox": [ + 104, + 607, + 334, + 622 + ], + "score": 1.0, + "content": "Proof sketch of Theorem 3.3. Recall that we choose ` ˘", + "type": "text" + }, + { + "bbox": [ + 334, + 608, + 456, + 622 + ], + "score": 0.86, + "content": "\\begin{array} { r l r } { \\mathbf { W } ^ { * } } & { { } \\in } & { \\mathcal { B } ( \\mathbf { W } ^ { ( 0 ) } , R m ^ { - 1 / 2 } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 456, + 607, + 506, + 622 + ], + "score": 1.0, + "content": "such that", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 617, + 509, + 642 + ], + "spans": [ + { + "bbox": [ + 106, + 622, + 269, + 636 + ], + "score": 0.9, + "content": "\\begin{array} { r } { n ^ { - 1 } \\sum _ { i = 1 } ^ { n } \\ell \\big ( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ^ { * } } ( \\mathbf { x } _ { i } ) \\big ) \\ = \\ \\epsilon _ { \\mathrm { N T R F } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 270, + 617, + 307, + 642 + ], + "score": 1.0, + "content": ". We set", + "type": "text" + }, + { + "bbox": [ + 307, + 621, + 398, + 635 + ], + "score": 0.92, + "content": "\\tau = \\widetilde { \\mathcal { O } } ( L ^ { 1 / 2 } m ^ { - 1 / 2 } R )", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 617, + 509, + 642 + ], + "score": 1.0, + "content": ", which is chosen slightly", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 104, + 635, + 506, + 650 + ], + "spans": [ + { + "bbox": [ + 104, + 635, + 154, + 650 + ], + "score": 1.0, + "content": "larger than", + "type": "text" + }, + { + "bbox": [ + 155, + 636, + 191, + 647 + ], + "score": 0.9, + "content": "m ^ { - 1 / 2 } R", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 635, + 349, + 650 + ], + "score": 1.0, + "content": "since Lemma 5.1 requires the region", + "type": "text" + }, + { + "bbox": [ + 350, + 636, + 398, + 649 + ], + "score": 0.93, + "content": "B ( \\mathbf { W } ^ { ( 0 ) } , \\tau )", + "type": "inline_equation" + }, + { + "bbox": [ + 398, + 635, + 466, + 650 + ], + "score": 1.0, + "content": "to include both", + "type": "text" + }, + { + "bbox": [ + 467, + 636, + 486, + 647 + ], + "score": 0.83, + "content": "\\mathbf { W } ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 486, + 635, + 506, + 650 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 107, + 646, + 504, + 664 + ], + "spans": [ + { + "bbox": [ + 107, + 648, + 169, + 661 + ], + "score": 0.9, + "content": "\\{ \\mathbf { W } ^ { ( t ) } \\} _ { t = 0 , \\ldots , t ^ { \\prime } }", + "type": "inline_equation" + }, + { + "bbox": [ + 169, + 646, + 355, + 664 + ], + "score": 1.0, + "content": ". Then by Lemmas 4.1 and B.3 in Cao and", + "type": "text" + }, + { + "bbox": [ + 355, + 649, + 370, + 660 + ], + "score": 0.41, + "content": "\\mathrm { G u }", + "type": "inline_equation" + }, + { + "bbox": [ + 370, + 646, + 462, + 664 + ], + "score": 1.0, + "content": "(2019) we know that", + "type": "text" + }, + { + "bbox": [ + 462, + 649, + 504, + 662 + ], + "score": 0.91, + "content": "\\epsilon _ { \\mathrm { a p p } } ( \\tau ) =", + "type": "inline_equation" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 659, + 506, + 676 + ], + "spans": [ + { + "bbox": [ + 106, + 660, + 272, + 675 + ], + "score": 0.92, + "content": "{ \\widetilde O } ( \\tau ^ { 4 / 3 } m ^ { 1 / 2 } L ^ { 3 } ) = { \\widetilde O } ( R ^ { 4 / 3 } L ^ { 1 1 / 3 } m ^ { - 1 / 6 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 659, + 375, + 676 + ], + "score": 1.0, + "content": ". Therefore, we can set", + "type": "text" + }, + { + "bbox": [ + 375, + 660, + 443, + 675 + ], + "score": 0.94, + "content": "m = \\widetilde \\Omega ( R ^ { 8 } L ^ { 2 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 659, + 506, + 676 + ], + "score": 1.0, + "content": "to ensure that", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 107, + 673, + 168, + 687 + ], + "spans": [ + { + "bbox": [ + 107, + 674, + 163, + 686 + ], + "score": 0.84, + "content": "\\epsilon _ { \\mathrm { a p p } } ( \\tau ) \\leqslant 1 / 8", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 673, + 168, + 687 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 39.5, + "bbox_fs": [ + 104, + 607, + 509, + 687 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 692, + 505, + 716 + ], + "lines": [ + { + "bbox": [ + 105, + 690, + 506, + 705 + ], + "spans": [ + { + "bbox": [ + 105, + 690, + 369, + 705 + ], + "score": 1.0, + "content": "Then we proceed to show that all iterates stay inside the region", + "type": "text" + }, + { + "bbox": [ + 370, + 691, + 417, + 705 + ], + "score": 0.95, + "content": "B ( \\mathbf { W } ^ { ( 0 ) } , \\tau )", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 690, + 506, + 705 + ], + "score": 1.0, + "content": ". Since the L.H.S. of", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 703, + 396, + 716 + ], + "spans": [ + { + "bbox": [ + 105, + 703, + 244, + 715 + ], + "score": 1.0, + "content": "Lemma 5.1 is strictly positive and", + "type": "text" + }, + { + "bbox": [ + 245, + 703, + 300, + 716 + ], + "score": 0.92, + "content": "\\epsilon _ { \\mathrm { a p p } } ( \\tau ) \\leqslant \\dot { 1 / 8 }", + "type": "inline_equation" + }, + { + "bbox": [ + 301, + 703, + 366, + 715 + ], + "score": 1.0, + "content": ", we have for all", + "type": "text" + }, + { + "bbox": [ + 366, + 704, + 391, + 714 + ], + "score": 0.88, + "content": "t \\leqslant T", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 703, + 396, + 715 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43.5, + "bbox_fs": [ + 105, + 690, + 506, + 716 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 201, + 718, + 408, + 733 + ], + "lines": [ + { + "bbox": [ + 201, + 718, + 408, + 733 + ], + "spans": [ + { + "bbox": [ + 201, + 718, + 408, + 733 + ], + "score": 0.89, + "content": "\\| \\mathbf { W } ^ { ( 0 ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } - \\| \\mathbf { W } ^ { ( t ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } \\geqslant - 2 t \\eta \\epsilon _ { \\mathrm { N T R F } } ,", + "type": "interline_equation", + "image_path": "5aa86cb4870bf21d6849b64f08d570328562778861bf0ddbb57796719d987235.jpg" + } + ] + } + ], + "index": 45, + "virtual_lines": [ + { + "bbox": [ + 201, + 718, + 408, + 733 + ], + "spans": [], + "index": 45 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 81, + 505, + 120 + ], + "lines": [ + { + "bbox": [ + 105, + 79, + 507, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 79, + 236, + 97 + ], + "score": 1.0, + "content": "which gives an upper bound of", + "type": "text" + }, + { + "bbox": [ + 237, + 81, + 304, + 95 + ], + "score": 0.93, + "content": "\\| \\mathbf { W } ^ { ( t ) } - \\mathbf { W } ^ { * } \\| _ { F }", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 79, + 403, + 97 + ], + "score": 1.0, + "content": ". Then by the choice of", + "type": "text" + }, + { + "bbox": [ + 403, + 83, + 423, + 94 + ], + "score": 0.47, + "content": "\\eta , T", + "type": "inline_equation" + }, + { + "bbox": [ + 423, + 79, + 507, + 97 + ], + "score": 1.0, + "content": ", triangle inequality,", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 104, + 91, + 504, + 109 + ], + "spans": [ + { + "bbox": [ + 104, + 91, + 302, + 109 + ], + "score": 1.0, + "content": "and a simple induction argument, we see that", + "type": "text" + }, + { + "bbox": [ + 303, + 93, + 504, + 107 + ], + "score": 0.89, + "content": "\\| \\mathbf { W } ^ { ( t ) } - \\mathbf { W } ^ { ( 0 ) } \\| _ { F } \\leqslant m ^ { - 1 / 2 } R + \\sqrt { 2 T \\eta \\epsilon _ { \\mathrm { N T R F } } } \\ =", + "type": "inline_equation" + } + ], + "index": 1 + }, + { + "bbox": [ + 107, + 105, + 427, + 121 + ], + "spans": [ + { + "bbox": [ + 107, + 106, + 176, + 120 + ], + "score": 0.92, + "content": "{ \\widetilde O } ( L ^ { 1 / 2 } m ^ { - 1 / 2 } R )", + "type": "inline_equation" + }, + { + "bbox": [ + 176, + 105, + 256, + 121 + ], + "score": 1.0, + "content": ", which verifies that", + "type": "text" + }, + { + "bbox": [ + 256, + 106, + 337, + 120 + ], + "score": 0.91, + "content": "\\mathbf { W } ^ { ( t ) } \\in { \\cal B } ( \\mathbf { W } ^ { ( 0 ) } , \\tau )", + "type": "inline_equation" + }, + { + "bbox": [ + 337, + 105, + 352, + 121 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 353, + 108, + 422, + 120 + ], + "score": 0.9, + "content": "t = 0 , \\ldots , T - 1", + "type": "inline_equation" + }, + { + "bbox": [ + 422, + 105, + 427, + 121 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 107, + 124, + 505, + 160 + ], + "lines": [ + { + "bbox": [ + 105, + 125, + 504, + 137 + ], + "spans": [ + { + "bbox": [ + 105, + 125, + 398, + 137 + ], + "score": 1.0, + "content": "The second step is to show that GD can find a neural network with at most", + "type": "text" + }, + { + "bbox": [ + 398, + 126, + 426, + 136 + ], + "score": 0.8, + "content": "3 \\epsilon _ { \\mathrm { N T R F } }", + "type": "inline_equation" + }, + { + "bbox": [ + 426, + 125, + 504, + 137 + ], + "score": 1.0, + "content": "training loss within", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 107, + 136, + 505, + 149 + ], + "spans": [ + { + "bbox": [ + 107, + 137, + 115, + 146 + ], + "score": 0.8, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 115, + 136, + 378, + 149 + ], + "score": 1.0, + "content": "iterations. To show this, by the bound given in Lemma 5.1 with", + "type": "text" + }, + { + "bbox": [ + 379, + 136, + 425, + 148 + ], + "score": 0.91, + "content": "\\epsilon _ { \\mathrm { a p p } } \\leqslant 1 / 8", + "type": "inline_equation" + }, + { + "bbox": [ + 425, + 136, + 505, + 149 + ], + "score": 1.0, + "content": ", we drop the terms", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 107, + 147, + 327, + 162 + ], + "spans": [ + { + "bbox": [ + 107, + 147, + 174, + 161 + ], + "score": 0.92, + "content": "\\| \\mathbf { W } ^ { ( t ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 174, + 147, + 327, + 162 + ], + "score": 1.0, + "content": "and rearrange the inequality to obtain", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + }, + { + "type": "interline_equation", + "bbox": [ + 199, + 164, + 411, + 198 + ], + "lines": [ + { + "bbox": [ + 199, + 164, + 411, + 198 + ], + "spans": [ + { + "bbox": [ + 199, + 164, + 411, + 198 + ], + "score": 0.94, + "content": "\\frac { 1 } { T } \\sum _ { t = 0 } ^ { T - 1 } L _ { S } ( \\mathbf { W } ^ { ( t ) } ) \\leqslant \\frac { 1 } { \\eta T } \\| \\mathbf { W } ^ { ( 0 ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } + 2 \\epsilon _ { \\mathrm { N T R F } } .", + "type": "interline_equation", + "image_path": "9aab9488256c7cb2bc6ef14c541085465e3f1315bdb73335fe59c12800bf8365.jpg" + } + ] + } + ], + "index": 6.5, + "virtual_lines": [ + { + "bbox": [ + 199, + 164, + 411, + 181.0 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 199, + 181.0, + 411, + 198.0 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 201, + 506, + 236 + ], + "lines": [ + { + "bbox": [ + 105, + 199, + 507, + 216 + ], + "spans": [ + { + "bbox": [ + 105, + 199, + 154, + 216 + ], + "score": 1.0, + "content": "We see that", + "type": "text" + }, + { + "bbox": [ + 155, + 202, + 163, + 211 + ], + "score": 0.83, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 199, + 507, + 216 + ], + "score": 1.0, + "content": "is large enough to ensure that the first term in the bound above is smaller than \u000fNTRF.", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 103, + 209, + 507, + 228 + ], + "spans": [ + { + "bbox": [ + 103, + 209, + 276, + 228 + ], + "score": 1.0, + "content": "This implies that the best iterate among", + "type": "text" + }, + { + "bbox": [ + 276, + 212, + 357, + 225 + ], + "score": 0.93, + "content": "\\mathbf { W } ^ { ( 0 ) } , \\ldots , \\mathbf { W } ^ { ( T - 1 ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 357, + 209, + 507, + 228 + ], + "score": 1.0, + "content": "achieves an empirical loss at most", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 223, + 506, + 239 + ], + "spans": [ + { + "bbox": [ + 106, + 225, + 135, + 236 + ], + "score": 0.5, + "content": "3 \\epsilon _ { \\mathrm { N T R F } }", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 223, + 141, + 239 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 494, + 225, + 506, + 236 + ], + "score": 0.999, + "content": "□", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9 + }, + { + "type": "title", + "bbox": [ + 107, + 252, + 195, + 264 + ], + "lines": [ + { + "bbox": [ + 105, + 249, + 198, + 268 + ], + "spans": [ + { + "bbox": [ + 105, + 249, + 198, + 268 + ], + "score": 1.0, + "content": "6 CONCLUSION", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 106, + 276, + 505, + 332 + ], + "lines": [ + { + "bbox": [ + 105, + 276, + 505, + 289 + ], + "spans": [ + { + "bbox": [ + 105, + 276, + 505, + 289 + ], + "score": 1.0, + "content": "In this paper, we established the global convergence and generalization error bounds of GD and SGD", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 287, + 504, + 299 + ], + "spans": [ + { + "bbox": [ + 106, + 287, + 504, + 299 + ], + "score": 1.0, + "content": "for training deep ReLU networks for the binary classification problem. We show that a network width", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 298, + 505, + 311 + ], + "spans": [ + { + "bbox": [ + 106, + 299, + 311, + 311 + ], + "score": 1.0, + "content": "condition that is polylogarithmic in the sample size", + "type": "text" + }, + { + "bbox": [ + 312, + 300, + 319, + 309 + ], + "score": 0.76, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 320, + 299, + 439, + 311 + ], + "score": 1.0, + "content": "and the inverse of target error", + "type": "text" + }, + { + "bbox": [ + 440, + 298, + 455, + 308 + ], + "score": 0.9, + "content": "\\epsilon ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 456, + 299, + 505, + 311 + ], + "score": 1.0, + "content": "is sufficient", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 309, + 506, + 322 + ], + "spans": [ + { + "bbox": [ + 105, + 309, + 506, + 322 + ], + "score": 1.0, + "content": "to guarantee the learning of deep ReLU networks. Our results resolve an open question raised in Ji", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 320, + 196, + 334 + ], + "spans": [ + { + "bbox": [ + 106, + 320, + 196, + 334 + ], + "score": 1.0, + "content": "and Telgarsky (2020).", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 14 + }, + { + "type": "title", + "bbox": [ + 108, + 344, + 201, + 355 + ], + "lines": [ + { + "bbox": [ + 107, + 345, + 201, + 356 + ], + "spans": [ + { + "bbox": [ + 107, + 345, + 201, + 356 + ], + "score": 1.0, + "content": "ACKNOWLEDGEMENT", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 107, + 362, + 505, + 419 + ], + "lines": [ + { + "bbox": [ + 106, + 363, + 505, + 375 + ], + "spans": [ + { + "bbox": [ + 106, + 363, + 505, + 375 + ], + "score": 1.0, + "content": "We would like to thank the anonymous reviewers for their helpful comments. ZC, YC and QG are", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 373, + 505, + 386 + ], + "spans": [ + { + "bbox": [ + 105, + 373, + 505, + 386 + ], + "score": 1.0, + "content": "partially supported by the National Science Foundation CAREER Award 1906169, IIS-2008981 and", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 385, + 506, + 397 + ], + "spans": [ + { + "bbox": [ + 106, + 385, + 506, + 397 + ], + "score": 1.0, + "content": "Salesforce Deep Learning Research Award. DZ is supported by the Bloomberg Data Science Ph.D.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 395, + 506, + 409 + ], + "spans": [ + { + "bbox": [ + 105, + 395, + 506, + 409 + ], + "score": 1.0, + "content": "Fellowship. The views and conclusions contained in this paper are those of the authors and should", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 407, + 330, + 420 + ], + "spans": [ + { + "bbox": [ + 106, + 407, + 330, + 420 + ], + "score": 1.0, + "content": "not be interpreted as representing any funding agencies.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 20 + }, + { + "type": "title", + "bbox": [ + 107, + 434, + 175, + 446 + ], + "lines": [ + { + "bbox": [ + 106, + 434, + 176, + 448 + ], + "spans": [ + { + "bbox": [ + 106, + 434, + 176, + 448 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 106, + 452, + 505, + 475 + ], + "lines": [ + { + "bbox": [ + 106, + 452, + 505, + 465 + ], + "spans": [ + { + "bbox": [ + 106, + 452, + 505, + 465 + ], + "score": 1.0, + "content": "ALLEN-ZHU, Z., LI, Y. and LIANG, Y. (2019a). Learning and generalization in overparameterized", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 115, + 464, + 507, + 477 + ], + "spans": [ + { + "bbox": [ + 115, + 464, + 507, + 477 + ], + "score": 1.0, + "content": "neural networks, going beyond two layers. In Advances in Neural Information Processing Systems.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24.5 + }, + { + "type": "text", + "bbox": [ + 107, + 481, + 503, + 505 + ], + "lines": [ + { + "bbox": [ + 106, + 481, + 505, + 495 + ], + "spans": [ + { + "bbox": [ + 106, + 481, + 505, + 495 + ], + "score": 1.0, + "content": "ALLEN-ZHU, Z., LI, Y. and SONG, Z. (2019b). A convergence theory for deep learning via", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 115, + 492, + 415, + 506 + ], + "spans": [ + { + "bbox": [ + 115, + 492, + 415, + 506 + ], + "score": 1.0, + "content": "over-parameterization. In International Conference on Machine Learning.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5 + }, + { + "type": "text", + "bbox": [ + 107, + 511, + 502, + 534 + ], + "lines": [ + { + "bbox": [ + 106, + 510, + 504, + 524 + ], + "spans": [ + { + "bbox": [ + 106, + 510, + 504, + 524 + ], + "score": 1.0, + "content": "ALLEN-ZHU, Z., LI, Y. and SONG, Z. (2019c). On the convergence rate of training recurrent neural", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 116, + 523, + 383, + 534 + ], + "spans": [ + { + "bbox": [ + 116, + 523, + 383, + 534 + ], + "score": 1.0, + "content": "networks. In Advances in Neural Information Processing Systems.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5 + }, + { + "type": "text", + "bbox": [ + 107, + 540, + 504, + 574 + ], + "lines": [ + { + "bbox": [ + 105, + 539, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 505, + 554 + ], + "score": 1.0, + "content": "ARORA, S., DU, S., HU, W., LI, Z. and WANG, R. (2019a). Fine-grained analysis of optimization", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 116, + 552, + 505, + 564 + ], + "spans": [ + { + "bbox": [ + 116, + 552, + 505, + 564 + ], + "score": 1.0, + "content": "and generalization for overparameterized two-layer neural networks. In International Conference", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 116, + 562, + 207, + 576 + ], + "spans": [ + { + "bbox": [ + 116, + 562, + 207, + 576 + ], + "score": 1.0, + "content": "on Machine Learning.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 107, + 580, + 504, + 615 + ], + "lines": [ + { + "bbox": [ + 106, + 581, + 506, + 593 + ], + "spans": [ + { + "bbox": [ + 106, + 581, + 506, + 593 + ], + "score": 1.0, + "content": "ARORA, S., DU, S. S., HU, W., LI, Z., SALAKHUTDINOV, R. and WANG, R. (2019b). On exact", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 114, + 591, + 506, + 606 + ], + "spans": [ + { + "bbox": [ + 114, + 591, + 506, + 606 + ], + "score": 1.0, + "content": "computation with an infinitely wide neural net. In Advances in Neural Information Processing", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 114, + 601, + 154, + 617 + ], + "spans": [ + { + "bbox": [ + 114, + 601, + 154, + 617 + ], + "score": 1.0, + "content": "Systems.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 107, + 621, + 504, + 644 + ], + "lines": [ + { + "bbox": [ + 105, + 620, + 505, + 634 + ], + "spans": [ + { + "bbox": [ + 105, + 620, + 505, + 634 + ], + "score": 1.0, + "content": "BAI, Y. and LEE, J. D. (2019). Beyond linearization: On quadratic and higher-order approximation", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 116, + 632, + 453, + 645 + ], + "spans": [ + { + "bbox": [ + 116, + 632, + 453, + 645 + ], + "score": 1.0, + "content": "of wide neural networks. In International Conference on Learning Representations.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5 + }, + { + "type": "text", + "bbox": [ + 108, + 650, + 504, + 673 + ], + "lines": [ + { + "bbox": [ + 105, + 649, + 505, + 664 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 505, + 664 + ], + "score": 1.0, + "content": "BARTLETT, P. L., FOSTER, D. J. and TELGARSKY, M. J. (2017). Spectrally-normalized margin", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 115, + 660, + 457, + 675 + ], + "spans": [ + { + "bbox": [ + 115, + 660, + 457, + 675 + ], + "score": 1.0, + "content": "bounds for neural networks. In Advances in Neural Information Processing Systems.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38.5 + }, + { + "type": "text", + "bbox": [ + 108, + 679, + 502, + 703 + ], + "lines": [ + { + "bbox": [ + 106, + 680, + 504, + 692 + ], + "spans": [ + { + "bbox": [ + 106, + 680, + 504, + 692 + ], + "score": 1.0, + "content": "BARTLETT, P. L. and MENDELSON, S. (2002). Rademacher and Gaussian complexities: Risk", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 116, + 691, + 443, + 704 + ], + "spans": [ + { + "bbox": [ + 116, + 691, + 443, + 704 + ], + "score": 1.0, + "content": "bounds and structural results. Journal of Machine Learning Research 3 463–482.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40.5 + }, + { + "type": "text", + "bbox": [ + 108, + 709, + 503, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 708, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 505, + 723 + ], + "score": 1.0, + "content": "CAO, Y. and GU, Q. (2019). Generalization bounds of stochastic gradient descent for wide and deep", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 115, + 720, + 411, + 733 + ], + "spans": [ + { + "bbox": [ + 115, + 720, + 411, + 733 + ], + "score": 1.0, + "content": "neural networks. In Advances in Neural Information Processing Systems.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42.5 + } + ], + "page_idx": 8, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "score": 1.0, + "content": "9", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 81, + 505, + 120 + ], + "lines": [ + { + "bbox": [ + 105, + 79, + 507, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 79, + 236, + 97 + ], + "score": 1.0, + "content": "which gives an upper bound of", + "type": "text" + }, + { + "bbox": [ + 237, + 81, + 304, + 95 + ], + "score": 0.93, + "content": "\\| \\mathbf { W } ^ { ( t ) } - \\mathbf { W } ^ { * } \\| _ { F }", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 79, + 403, + 97 + ], + "score": 1.0, + "content": ". Then by the choice of", + "type": "text" + }, + { + "bbox": [ + 403, + 83, + 423, + 94 + ], + "score": 0.47, + "content": "\\eta , T", + "type": "inline_equation" + }, + { + "bbox": [ + 423, + 79, + 507, + 97 + ], + "score": 1.0, + "content": ", triangle inequality,", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 104, + 91, + 504, + 109 + ], + "spans": [ + { + "bbox": [ + 104, + 91, + 302, + 109 + ], + "score": 1.0, + "content": "and a simple induction argument, we see that", + "type": "text" + }, + { + "bbox": [ + 303, + 93, + 504, + 107 + ], + "score": 0.89, + "content": "\\| \\mathbf { W } ^ { ( t ) } - \\mathbf { W } ^ { ( 0 ) } \\| _ { F } \\leqslant m ^ { - 1 / 2 } R + \\sqrt { 2 T \\eta \\epsilon _ { \\mathrm { N T R F } } } \\ =", + "type": "inline_equation" + } + ], + "index": 1 + }, + { + "bbox": [ + 107, + 105, + 427, + 121 + ], + "spans": [ + { + "bbox": [ + 107, + 106, + 176, + 120 + ], + "score": 0.92, + "content": "{ \\widetilde O } ( L ^ { 1 / 2 } m ^ { - 1 / 2 } R )", + "type": "inline_equation" + }, + { + "bbox": [ + 176, + 105, + 256, + 121 + ], + "score": 1.0, + "content": ", which verifies that", + "type": "text" + }, + { + "bbox": [ + 256, + 106, + 337, + 120 + ], + "score": 0.91, + "content": "\\mathbf { W } ^ { ( t ) } \\in { \\cal B } ( \\mathbf { W } ^ { ( 0 ) } , \\tau )", + "type": "inline_equation" + }, + { + "bbox": [ + 337, + 105, + 352, + 121 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 353, + 108, + 422, + 120 + ], + "score": 0.9, + "content": "t = 0 , \\ldots , T - 1", + "type": "inline_equation" + }, + { + "bbox": [ + 422, + 105, + 427, + 121 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1, + "bbox_fs": [ + 104, + 79, + 507, + 121 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 124, + 505, + 160 + ], + "lines": [ + { + "bbox": [ + 105, + 125, + 504, + 137 + ], + "spans": [ + { + "bbox": [ + 105, + 125, + 398, + 137 + ], + "score": 1.0, + "content": "The second step is to show that GD can find a neural network with at most", + "type": "text" + }, + { + "bbox": [ + 398, + 126, + 426, + 136 + ], + "score": 0.8, + "content": "3 \\epsilon _ { \\mathrm { N T R F } }", + "type": "inline_equation" + }, + { + "bbox": [ + 426, + 125, + 504, + 137 + ], + "score": 1.0, + "content": "training loss within", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 107, + 136, + 505, + 149 + ], + "spans": [ + { + "bbox": [ + 107, + 137, + 115, + 146 + ], + "score": 0.8, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 115, + 136, + 378, + 149 + ], + "score": 1.0, + "content": "iterations. To show this, by the bound given in Lemma 5.1 with", + "type": "text" + }, + { + "bbox": [ + 379, + 136, + 425, + 148 + ], + "score": 0.91, + "content": "\\epsilon _ { \\mathrm { a p p } } \\leqslant 1 / 8", + "type": "inline_equation" + }, + { + "bbox": [ + 425, + 136, + 505, + 149 + ], + "score": 1.0, + "content": ", we drop the terms", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 107, + 147, + 327, + 162 + ], + "spans": [ + { + "bbox": [ + 107, + 147, + 174, + 161 + ], + "score": 0.92, + "content": "\\| \\mathbf { W } ^ { ( t ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 174, + 147, + 327, + 162 + ], + "score": 1.0, + "content": "and rearrange the inequality to obtain", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4, + "bbox_fs": [ + 105, + 125, + 505, + 162 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 199, + 164, + 411, + 198 + ], + "lines": [ + { + "bbox": [ + 199, + 164, + 411, + 198 + ], + "spans": [ + { + "bbox": [ + 199, + 164, + 411, + 198 + ], + "score": 0.94, + "content": "\\frac { 1 } { T } \\sum _ { t = 0 } ^ { T - 1 } L _ { S } ( \\mathbf { W } ^ { ( t ) } ) \\leqslant \\frac { 1 } { \\eta T } \\| \\mathbf { W } ^ { ( 0 ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } + 2 \\epsilon _ { \\mathrm { N T R F } } .", + "type": "interline_equation", + "image_path": "9aab9488256c7cb2bc6ef14c541085465e3f1315bdb73335fe59c12800bf8365.jpg" + } + ] + } + ], + "index": 6.5, + "virtual_lines": [ + { + "bbox": [ + 199, + 164, + 411, + 181.0 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 199, + 181.0, + 411, + 198.0 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 201, + 506, + 236 + ], + "lines": [ + { + "bbox": [ + 105, + 199, + 507, + 216 + ], + "spans": [ + { + "bbox": [ + 105, + 199, + 154, + 216 + ], + "score": 1.0, + "content": "We see that", + "type": "text" + }, + { + "bbox": [ + 155, + 202, + 163, + 211 + ], + "score": 0.83, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 199, + 507, + 216 + ], + "score": 1.0, + "content": "is large enough to ensure that the first term in the bound above is smaller than \u000fNTRF.", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 103, + 209, + 507, + 228 + ], + "spans": [ + { + "bbox": [ + 103, + 209, + 276, + 228 + ], + "score": 1.0, + "content": "This implies that the best iterate among", + "type": "text" + }, + { + "bbox": [ + 276, + 212, + 357, + 225 + ], + "score": 0.93, + "content": "\\mathbf { W } ^ { ( 0 ) } , \\ldots , \\mathbf { W } ^ { ( T - 1 ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 357, + 209, + 507, + 228 + ], + "score": 1.0, + "content": "achieves an empirical loss at most", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 223, + 506, + 239 + ], + "spans": [ + { + "bbox": [ + 106, + 225, + 135, + 236 + ], + "score": 0.5, + "content": "3 \\epsilon _ { \\mathrm { N T R F } }", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 223, + 141, + 239 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 494, + 225, + 506, + 236 + ], + "score": 0.999, + "content": "□", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9, + "bbox_fs": [ + 103, + 199, + 507, + 239 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 252, + 195, + 264 + ], + "lines": [ + { + "bbox": [ + 105, + 249, + 198, + 268 + ], + "spans": [ + { + "bbox": [ + 105, + 249, + 198, + 268 + ], + "score": 1.0, + "content": "6 CONCLUSION", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 106, + 276, + 505, + 332 + ], + "lines": [ + { + "bbox": [ + 105, + 276, + 505, + 289 + ], + "spans": [ + { + "bbox": [ + 105, + 276, + 505, + 289 + ], + "score": 1.0, + "content": "In this paper, we established the global convergence and generalization error bounds of GD and SGD", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 287, + 504, + 299 + ], + "spans": [ + { + "bbox": [ + 106, + 287, + 504, + 299 + ], + "score": 1.0, + "content": "for training deep ReLU networks for the binary classification problem. We show that a network width", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 298, + 505, + 311 + ], + "spans": [ + { + "bbox": [ + 106, + 299, + 311, + 311 + ], + "score": 1.0, + "content": "condition that is polylogarithmic in the sample size", + "type": "text" + }, + { + "bbox": [ + 312, + 300, + 319, + 309 + ], + "score": 0.76, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 320, + 299, + 439, + 311 + ], + "score": 1.0, + "content": "and the inverse of target error", + "type": "text" + }, + { + "bbox": [ + 440, + 298, + 455, + 308 + ], + "score": 0.9, + "content": "\\epsilon ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 456, + 299, + 505, + 311 + ], + "score": 1.0, + "content": "is sufficient", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 309, + 506, + 322 + ], + "spans": [ + { + "bbox": [ + 105, + 309, + 506, + 322 + ], + "score": 1.0, + "content": "to guarantee the learning of deep ReLU networks. Our results resolve an open question raised in Ji", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 320, + 196, + 334 + ], + "spans": [ + { + "bbox": [ + 106, + 320, + 196, + 334 + ], + "score": 1.0, + "content": "and Telgarsky (2020).", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 14, + "bbox_fs": [ + 105, + 276, + 506, + 334 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 344, + 201, + 355 + ], + "lines": [ + { + "bbox": [ + 107, + 345, + 201, + 356 + ], + "spans": [ + { + "bbox": [ + 107, + 345, + 201, + 356 + ], + "score": 1.0, + "content": "ACKNOWLEDGEMENT", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 107, + 362, + 505, + 419 + ], + "lines": [ + { + "bbox": [ + 106, + 363, + 505, + 375 + ], + "spans": [ + { + "bbox": [ + 106, + 363, + 505, + 375 + ], + "score": 1.0, + "content": "We would like to thank the anonymous reviewers for their helpful comments. ZC, YC and QG are", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 373, + 505, + 386 + ], + "spans": [ + { + "bbox": [ + 105, + 373, + 505, + 386 + ], + "score": 1.0, + "content": "partially supported by the National Science Foundation CAREER Award 1906169, IIS-2008981 and", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 385, + 506, + 397 + ], + "spans": [ + { + "bbox": [ + 106, + 385, + 506, + 397 + ], + "score": 1.0, + "content": "Salesforce Deep Learning Research Award. DZ is supported by the Bloomberg Data Science Ph.D.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 395, + 506, + 409 + ], + "spans": [ + { + "bbox": [ + 105, + 395, + 506, + 409 + ], + "score": 1.0, + "content": "Fellowship. The views and conclusions contained in this paper are those of the authors and should", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 407, + 330, + 420 + ], + "spans": [ + { + "bbox": [ + 106, + 407, + 330, + 420 + ], + "score": 1.0, + "content": "not be interpreted as representing any funding agencies.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 20, + "bbox_fs": [ + 105, + 363, + 506, + 420 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 434, + 175, + 446 + ], + "lines": [ + { + "bbox": [ + 106, + 434, + 176, + 448 + ], + "spans": [ + { + "bbox": [ + 106, + 434, + 176, + 448 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 106, + 452, + 505, + 475 + ], + "lines": [ + { + "bbox": [ + 106, + 452, + 505, + 465 + ], + "spans": [ + { + "bbox": [ + 106, + 452, + 505, + 465 + ], + "score": 1.0, + "content": "ALLEN-ZHU, Z., LI, Y. and LIANG, Y. (2019a). Learning and generalization in overparameterized", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 115, + 464, + 507, + 477 + ], + "spans": [ + { + "bbox": [ + 115, + 464, + 507, + 477 + ], + "score": 1.0, + "content": "neural networks, going beyond two layers. In Advances in Neural Information Processing Systems.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24.5, + "bbox_fs": [ + 106, + 452, + 507, + 477 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 481, + 503, + 505 + ], + "lines": [ + { + "bbox": [ + 106, + 481, + 505, + 495 + ], + "spans": [ + { + "bbox": [ + 106, + 481, + 505, + 495 + ], + "score": 1.0, + "content": "ALLEN-ZHU, Z., LI, Y. and SONG, Z. (2019b). A convergence theory for deep learning via", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 115, + 492, + 415, + 506 + ], + "spans": [ + { + "bbox": [ + 115, + 492, + 415, + 506 + ], + "score": 1.0, + "content": "over-parameterization. In International Conference on Machine Learning.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5, + "bbox_fs": [ + 106, + 481, + 505, + 506 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 511, + 502, + 534 + ], + "lines": [ + { + "bbox": [ + 106, + 510, + 504, + 524 + ], + "spans": [ + { + "bbox": [ + 106, + 510, + 504, + 524 + ], + "score": 1.0, + "content": "ALLEN-ZHU, Z., LI, Y. and SONG, Z. (2019c). On the convergence rate of training recurrent neural", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 116, + 523, + 383, + 534 + ], + "spans": [ + { + "bbox": [ + 116, + 523, + 383, + 534 + ], + "score": 1.0, + "content": "networks. In Advances in Neural Information Processing Systems.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5, + "bbox_fs": [ + 106, + 510, + 504, + 534 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 540, + 504, + 574 + ], + "lines": [ + { + "bbox": [ + 105, + 539, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 505, + 554 + ], + "score": 1.0, + "content": "ARORA, S., DU, S., HU, W., LI, Z. and WANG, R. (2019a). Fine-grained analysis of optimization", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 116, + 552, + 505, + 564 + ], + "spans": [ + { + "bbox": [ + 116, + 552, + 505, + 564 + ], + "score": 1.0, + "content": "and generalization for overparameterized two-layer neural networks. In International Conference", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 116, + 562, + 207, + 576 + ], + "spans": [ + { + "bbox": [ + 116, + 562, + 207, + 576 + ], + "score": 1.0, + "content": "on Machine Learning.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31, + "bbox_fs": [ + 105, + 539, + 505, + 576 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 580, + 504, + 615 + ], + "lines": [ + { + "bbox": [ + 106, + 581, + 506, + 593 + ], + "spans": [ + { + "bbox": [ + 106, + 581, + 506, + 593 + ], + "score": 1.0, + "content": "ARORA, S., DU, S. S., HU, W., LI, Z., SALAKHUTDINOV, R. and WANG, R. (2019b). On exact", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 114, + 591, + 506, + 606 + ], + "spans": [ + { + "bbox": [ + 114, + 591, + 506, + 606 + ], + "score": 1.0, + "content": "computation with an infinitely wide neural net. In Advances in Neural Information Processing", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 114, + 601, + 154, + 617 + ], + "spans": [ + { + "bbox": [ + 114, + 601, + 154, + 617 + ], + "score": 1.0, + "content": "Systems.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34, + "bbox_fs": [ + 106, + 581, + 506, + 617 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 621, + 504, + 644 + ], + "lines": [ + { + "bbox": [ + 105, + 620, + 505, + 634 + ], + "spans": [ + { + "bbox": [ + 105, + 620, + 505, + 634 + ], + "score": 1.0, + "content": "BAI, Y. and LEE, J. D. (2019). Beyond linearization: On quadratic and higher-order approximation", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 116, + 632, + 453, + 645 + ], + "spans": [ + { + "bbox": [ + 116, + 632, + 453, + 645 + ], + "score": 1.0, + "content": "of wide neural networks. In International Conference on Learning Representations.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5, + "bbox_fs": [ + 105, + 620, + 505, + 645 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 650, + 504, + 673 + ], + "lines": [ + { + "bbox": [ + 105, + 649, + 505, + 664 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 505, + 664 + ], + "score": 1.0, + "content": "BARTLETT, P. L., FOSTER, D. J. and TELGARSKY, M. J. (2017). Spectrally-normalized margin", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 115, + 660, + 457, + 675 + ], + "spans": [ + { + "bbox": [ + 115, + 660, + 457, + 675 + ], + "score": 1.0, + "content": "bounds for neural networks. In Advances in Neural Information Processing Systems.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38.5, + "bbox_fs": [ + 105, + 649, + 505, + 675 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 679, + 502, + 703 + ], + "lines": [ + { + "bbox": [ + 106, + 680, + 504, + 692 + ], + "spans": [ + { + "bbox": [ + 106, + 680, + 504, + 692 + ], + "score": 1.0, + "content": "BARTLETT, P. L. and MENDELSON, S. (2002). Rademacher and Gaussian complexities: Risk", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 116, + 691, + 443, + 704 + ], + "spans": [ + { + "bbox": [ + 116, + 691, + 443, + 704 + ], + "score": 1.0, + "content": "bounds and structural results. Journal of Machine Learning Research 3 463–482.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40.5, + "bbox_fs": [ + 106, + 680, + 504, + 704 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 709, + 503, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 708, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 505, + 723 + ], + "score": 1.0, + "content": "CAO, Y. and GU, Q. (2019). Generalization bounds of stochastic gradient descent for wide and deep", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 115, + 720, + 411, + 733 + ], + "spans": [ + { + "bbox": [ + 115, + 720, + 411, + 733 + ], + "score": 1.0, + "content": "neural networks. In Advances in Neural Information Processing Systems.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42.5, + "bbox_fs": [ + 105, + 708, + 505, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 103, + 25, + 507, + 741 + ], + "lines": [ + { + "bbox": [ + 106, + 83, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 506, + 95 + ], + "score": 1.0, + "content": "CAO, Y. and GU, Q. (2020). Generalization error bounds of gradient descent for learning over-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 113, + 92, + 509, + 109 + ], + "spans": [ + { + "bbox": [ + 113, + 92, + 509, + 109 + ], + "score": 1.0, + "content": "parameterized deep relu networks. In the Thirty-Fourth AAAI Conference on Artificial Intelligence.", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 112, + 506, + 124 + ], + "spans": [ + { + "bbox": [ + 106, + 112, + 506, + 124 + ], + "score": 1.0, + "content": "CESA-BIANCHI, N., CONCONI, A. and GENTILE, C. (2004). On the generalization ability of on-line", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 114, + 122, + 434, + 137 + ], + "spans": [ + { + "bbox": [ + 114, + 122, + 434, + 137 + ], + "score": 1.0, + "content": "learning algorithms. IEEE Transactions on Information Theory 50 2050–2057.", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 104, + 139, + 506, + 155 + ], + "spans": [ + { + "bbox": [ + 104, + 139, + 506, + 155 + ], + "score": 1.0, + "content": "CHIZAT, L., OYALLON, E. and BACH, F. (2019). On lazy training in differentiable programming. In", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 114, + 153, + 330, + 165 + ], + "spans": [ + { + "bbox": [ + 114, + 153, + 330, + 165 + ], + "score": 1.0, + "content": "Advances in Neural Information Processing Systems.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 104, + 168, + 507, + 184 + ], + "spans": [ + { + "bbox": [ + 104, + 168, + 507, + 184 + ], + "score": 1.0, + "content": "DU, S., LEE, J., LI, H., WANG, L. and ZHAI, X. (2019a). Gradient descent finds global minima of", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 114, + 180, + 413, + 195 + ], + "spans": [ + { + "bbox": [ + 114, + 180, + 413, + 195 + ], + "score": 1.0, + "content": "deep neural networks. In International Conference on Machine Learning.", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 199, + 506, + 212 + ], + "spans": [ + { + "bbox": [ + 106, + 199, + 506, + 212 + ], + "score": 1.0, + "content": "DU, S. S., ZHAI, X., POCZOS, B. and SINGH, A. (2019b). Gradient descent provably optimizes", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 114, + 210, + 501, + 225 + ], + "spans": [ + { + "bbox": [ + 114, + 210, + 501, + 225 + ], + "score": 1.0, + "content": "over-parameterized neural networks. In International Conference on Learning Representations.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 104, + 226, + 507, + 242 + ], + "spans": [ + { + "bbox": [ + 104, + 226, + 507, + 242 + ], + "score": 1.0, + "content": "FREI, S., CAO, Y. and GU, Q. (2019). Algorithm-dependent generalization bounds for overparame-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 115, + 240, + 468, + 253 + ], + "spans": [ + { + "bbox": [ + 115, + 240, + 468, + 253 + ], + "score": 1.0, + "content": "terized deep residual networks. In Advances in Neural Information Processing Systems.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 104, + 256, + 507, + 272 + ], + "spans": [ + { + "bbox": [ + 104, + 256, + 507, + 272 + ], + "score": 1.0, + "content": "HE, K., ZHANG, X., REN, S. and SUN, J. (2015). Delving deep into rectifiers: Surpassing human-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 269, + 506, + 282 + ], + "spans": [ + { + "bbox": [ + 115, + 269, + 506, + 282 + ], + "score": 1.0, + "content": "level performance on imagenet classification. In Proceedings of the IEEE international conference", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 115, + 280, + 198, + 293 + ], + "spans": [ + { + "bbox": [ + 115, + 280, + 198, + 293 + ], + "score": 1.0, + "content": "on computer vision.", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 298, + 506, + 311 + ], + "spans": [ + { + "bbox": [ + 106, + 298, + 506, + 311 + ], + "score": 1.0, + "content": "JACOT, A., GABRIEL, F. and HONGLER, C. (2018). Neural tangent kernel: Convergence and", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 113, + 308, + 477, + 324 + ], + "spans": [ + { + "bbox": [ + 113, + 308, + 477, + 324 + ], + "score": 1.0, + "content": "generalization in neural networks. In Advances in neural information processing systems.", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 327, + 505, + 340 + ], + "spans": [ + { + "bbox": [ + 106, + 327, + 505, + 340 + ], + "score": 1.0, + "content": "JI, Z. and TELGARSKY, M. (2018). Risk and parameter convergence of logistic regression. arXiv", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 113, + 338, + 234, + 351 + ], + "spans": [ + { + "bbox": [ + 113, + 338, + 234, + 351 + ], + "score": 1.0, + "content": "preprint arXiv:1803.07300 .", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 356, + 506, + 369 + ], + "spans": [ + { + "bbox": [ + 106, + 356, + 506, + 369 + ], + "score": 1.0, + "content": "JI, Z. and TELGARSKY, M. (2020). Polylogarithmic width suffices for gradient descent to achieve", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 114, + 366, + 506, + 382 + ], + "spans": [ + { + "bbox": [ + 114, + 366, + 506, + 382 + ], + "score": 1.0, + "content": "arbitrarily small test error with shallow relu networks. In International Conference on Learning", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 116, + 380, + 185, + 390 + ], + "spans": [ + { + "bbox": [ + 116, + 380, + 185, + 390 + ], + "score": 1.0, + "content": "Representations.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 104, + 394, + 506, + 410 + ], + "spans": [ + { + "bbox": [ + 104, + 394, + 506, + 410 + ], + "score": 1.0, + "content": "KAWAGUCHI, K. and HUANG, J. (2019). Gradient descent finds global minima for generalizable deep", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 114, + 406, + 507, + 421 + ], + "spans": [ + { + "bbox": [ + 114, + 406, + 507, + 421 + ], + "score": 1.0, + "content": "neural networks of practical sizes. In 2019 57th Annual Allerton Conference on Communication,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 114, + 417, + 287, + 431 + ], + "spans": [ + { + "bbox": [ + 114, + 417, + 287, + 431 + ], + "score": 1.0, + "content": "Control, and Computing (Allerton). IEEE.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 104, + 434, + 464, + 450 + ], + "spans": [ + { + "bbox": [ + 104, + 434, + 464, + 450 + ], + "score": 1.0, + "content": "KRIZHEVSKY, A. ET AL. (2009). Learning multiple layers of features from tiny images .", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 454, + 506, + 466 + ], + "spans": [ + { + "bbox": [ + 106, + 454, + 506, + 466 + ], + "score": 1.0, + "content": "LEE, J., XIAO, L., SCHOENHOLZ, S. S., BAHRI, Y., SOHL-DICKSTEIN, J. and PENNINGTON, J.", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 115, + 466, + 506, + 478 + ], + "spans": [ + { + "bbox": [ + 115, + 466, + 506, + 478 + ], + "score": 1.0, + "content": "(2019). Wide neural networks of any depth evolve as linear models under gradient descent. In", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 114, + 477, + 331, + 489 + ], + "spans": [ + { + "bbox": [ + 114, + 477, + 331, + 489 + ], + "score": 1.0, + "content": "Advances in Neural Information Processing Systems.", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 104, + 492, + 507, + 509 + ], + "spans": [ + { + "bbox": [ + 104, + 492, + 507, + 509 + ], + "score": 1.0, + "content": "MOHRI, M., ROSTAMIZADEH, A. and TALWALKAR, A. (2018). Foundations of machine learning.", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 114, + 505, + 165, + 520 + ], + "spans": [ + { + "bbox": [ + 114, + 505, + 165, + 520 + ], + "score": 1.0, + "content": "MIT press.", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 523, + 505, + 536 + ], + "spans": [ + { + "bbox": [ + 106, + 523, + 505, + 536 + ], + "score": 1.0, + "content": "NITANDA, A. and SUZUKI, T. (2019). Refined generalization analysis of gradient descent for", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 536, + 506, + 548 + ], + "spans": [ + { + "bbox": [ + 115, + 536, + 506, + 548 + ], + "score": 1.0, + "content": "over-parameterized two-layer neural networks with smooth activations on classification problems.", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 113, + 545, + 256, + 559 + ], + "spans": [ + { + "bbox": [ + 113, + 545, + 256, + 559 + ], + "score": 1.0, + "content": "arXiv preprint arXiv:1905.09870 .", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 104, + 562, + 506, + 578 + ], + "spans": [ + { + "bbox": [ + 104, + 562, + 506, + 578 + ], + "score": 1.0, + "content": "OYMAK, S. and SOLTANOLKOTABI, M. (2019). Towards moderate overparameterization: global", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 114, + 574, + 505, + 588 + ], + "spans": [ + { + "bbox": [ + 114, + 574, + 505, + 588 + ], + "score": 1.0, + "content": "convergence guarantees for training shallow neural networks. arXiv preprint arXiv:1902.04674 .", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 593, + 504, + 605 + ], + "spans": [ + { + "bbox": [ + 106, + 593, + 504, + 605 + ], + "score": 1.0, + "content": "SHALEV-SHWARTZ, S. and BEN-DAVID, S. (2014). Understanding machine learning: From theory", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 115, + 604, + 290, + 617 + ], + "spans": [ + { + "bbox": [ + 115, + 604, + 290, + 617 + ], + "score": 1.0, + "content": "to algorithms. Cambridge university press.", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 620, + 506, + 637 + ], + "spans": [ + { + "bbox": [ + 106, + 622, + 203, + 635 + ], + "score": 1.0, + "content": "SHAMIR, O. (2020).", + "type": "text" + }, + { + "bbox": [ + 206, + 620, + 506, + 637 + ], + "score": 1.0, + "content": "Gradient methods never overfit on separable data. arXiv preprint", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 114, + 633, + 198, + 645 + ], + "spans": [ + { + "bbox": [ + 114, + 633, + 198, + 645 + ], + "score": 1.0, + "content": "arXiv:2007.00028 .", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 651, + 505, + 664 + ], + "spans": [ + { + "bbox": [ + 106, + 651, + 505, + 664 + ], + "score": 1.0, + "content": "VERSHYNIN, R. (2010). Introduction to the non-asymptotic analysis of random matrices. arXiv", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 113, + 663, + 228, + 675 + ], + "spans": [ + { + "bbox": [ + 113, + 663, + 228, + 675 + ], + "score": 1.0, + "content": "preprint arXiv:1011.3027 .", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 104, + 679, + 506, + 695 + ], + "spans": [ + { + "bbox": [ + 104, + 679, + 506, + 695 + ], + "score": 1.0, + "content": "ZOU, D., CAO, Y., ZHOU, D. and GU, Q. (2019). Gradient descent optimizes over-parameterized", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 114, + 689, + 290, + 707 + ], + "spans": [ + { + "bbox": [ + 114, + 689, + 290, + 707 + ], + "score": 1.0, + "content": "deep ReLU networks. Machine Learning .", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 104, + 708, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 104, + 708, + 506, + 723 + ], + "score": 1.0, + "content": "ZOU, D. and GU, Q. (2019). An improved analysis of training over-parameterized deep neural", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 114, + 719, + 385, + 735 + ], + "spans": [ + { + "bbox": [ + 114, + 719, + 385, + 735 + ], + "score": 1.0, + "content": "networks. In Advances in Neural Information Processing Systems.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 22.5 + } + ], + "page_idx": 9, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 104, + 25, + 294, + 39 + ], + "spans": [ + { + "bbox": [ + 104, + 25, + 294, + 39 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 298, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 298, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "10", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "list", + "bbox": [ + 103, + 25, + 507, + 741 + ], + "lines": [ + { + "bbox": [ + 106, + 83, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 506, + 95 + ], + "score": 1.0, + "content": "CAO, Y. and GU, Q. (2020). Generalization error bounds of gradient descent for learning over-", + "type": "text" + } + ], + "index": 0, + "is_list_start_line": true + }, + { + "bbox": [ + 113, + 92, + 509, + 109 + ], + "spans": [ + { + "bbox": [ + 113, + 92, + 509, + 109 + ], + "score": 1.0, + "content": "parameterized deep relu networks. In the Thirty-Fourth AAAI Conference on Artificial Intelligence.", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 112, + 506, + 124 + ], + "spans": [ + { + "bbox": [ + 106, + 112, + 506, + 124 + ], + "score": 1.0, + "content": "CESA-BIANCHI, N., CONCONI, A. and GENTILE, C. (2004). On the generalization ability of on-line", + "type": "text" + } + ], + "index": 2, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 122, + 434, + 137 + ], + "spans": [ + { + "bbox": [ + 114, + 122, + 434, + 137 + ], + "score": 1.0, + "content": "learning algorithms. IEEE Transactions on Information Theory 50 2050–2057.", + "type": "text" + } + ], + "index": 3, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 139, + 506, + 155 + ], + "spans": [ + { + "bbox": [ + 104, + 139, + 506, + 155 + ], + "score": 1.0, + "content": "CHIZAT, L., OYALLON, E. and BACH, F. (2019). On lazy training in differentiable programming. In", + "type": "text" + } + ], + "index": 4, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 153, + 330, + 165 + ], + "spans": [ + { + "bbox": [ + 114, + 153, + 330, + 165 + ], + "score": 1.0, + "content": "Advances in Neural Information Processing Systems.", + "type": "text" + } + ], + "index": 5, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 168, + 507, + 184 + ], + "spans": [ + { + "bbox": [ + 104, + 168, + 507, + 184 + ], + "score": 1.0, + "content": "DU, S., LEE, J., LI, H., WANG, L. and ZHAI, X. (2019a). Gradient descent finds global minima of", + "type": "text" + } + ], + "index": 6, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 180, + 413, + 195 + ], + "spans": [ + { + "bbox": [ + 114, + 180, + 413, + 195 + ], + "score": 1.0, + "content": "deep neural networks. In International Conference on Machine Learning.", + "type": "text" + } + ], + "index": 7, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 199, + 506, + 212 + ], + "spans": [ + { + "bbox": [ + 106, + 199, + 506, + 212 + ], + "score": 1.0, + "content": "DU, S. S., ZHAI, X., POCZOS, B. and SINGH, A. (2019b). Gradient descent provably optimizes", + "type": "text" + } + ], + "index": 8, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 210, + 501, + 225 + ], + "spans": [ + { + "bbox": [ + 114, + 210, + 501, + 225 + ], + "score": 1.0, + "content": "over-parameterized neural networks. In International Conference on Learning Representations.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 104, + 226, + 507, + 242 + ], + "spans": [ + { + "bbox": [ + 104, + 226, + 507, + 242 + ], + "score": 1.0, + "content": "FREI, S., CAO, Y. and GU, Q. (2019). Algorithm-dependent generalization bounds for overparame-", + "type": "text" + } + ], + "index": 10, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 240, + 468, + 253 + ], + "spans": [ + { + "bbox": [ + 115, + 240, + 468, + 253 + ], + "score": 1.0, + "content": "terized deep residual networks. In Advances in Neural Information Processing Systems.", + "type": "text" + } + ], + "index": 11, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 256, + 507, + 272 + ], + "spans": [ + { + "bbox": [ + 104, + 256, + 507, + 272 + ], + "score": 1.0, + "content": "HE, K., ZHANG, X., REN, S. and SUN, J. (2015). Delving deep into rectifiers: Surpassing human-", + "type": "text" + } + ], + "index": 12, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 269, + 506, + 282 + ], + "spans": [ + { + "bbox": [ + 115, + 269, + 506, + 282 + ], + "score": 1.0, + "content": "level performance on imagenet classification. In Proceedings of the IEEE international conference", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 115, + 280, + 198, + 293 + ], + "spans": [ + { + "bbox": [ + 115, + 280, + 198, + 293 + ], + "score": 1.0, + "content": "on computer vision.", + "type": "text" + } + ], + "index": 14, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 298, + 506, + 311 + ], + "spans": [ + { + "bbox": [ + 106, + 298, + 506, + 311 + ], + "score": 1.0, + "content": "JACOT, A., GABRIEL, F. and HONGLER, C. (2018). Neural tangent kernel: Convergence and", + "type": "text" + } + ], + "index": 15, + "is_list_start_line": true + }, + { + "bbox": [ + 113, + 308, + 477, + 324 + ], + "spans": [ + { + "bbox": [ + 113, + 308, + 477, + 324 + ], + "score": 1.0, + "content": "generalization in neural networks. In Advances in neural information processing systems.", + "type": "text" + } + ], + "index": 16, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 327, + 505, + 340 + ], + "spans": [ + { + "bbox": [ + 106, + 327, + 505, + 340 + ], + "score": 1.0, + "content": "JI, Z. and TELGARSKY, M. (2018). Risk and parameter convergence of logistic regression. arXiv", + "type": "text" + } + ], + "index": 17, + "is_list_start_line": true + }, + { + "bbox": [ + 113, + 338, + 234, + 351 + ], + "spans": [ + { + "bbox": [ + 113, + 338, + 234, + 351 + ], + "score": 1.0, + "content": "preprint arXiv:1803.07300 .", + "type": "text" + } + ], + "index": 18, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 356, + 506, + 369 + ], + "spans": [ + { + "bbox": [ + 106, + 356, + 506, + 369 + ], + "score": 1.0, + "content": "JI, Z. and TELGARSKY, M. (2020). Polylogarithmic width suffices for gradient descent to achieve", + "type": "text" + } + ], + "index": 19, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 366, + 506, + 382 + ], + "spans": [ + { + "bbox": [ + 114, + 366, + 506, + 382 + ], + "score": 1.0, + "content": "arbitrarily small test error with shallow relu networks. In International Conference on Learning", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 116, + 380, + 185, + 390 + ], + "spans": [ + { + "bbox": [ + 116, + 380, + 185, + 390 + ], + "score": 1.0, + "content": "Representations.", + "type": "text" + } + ], + "index": 21, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 394, + 506, + 410 + ], + "spans": [ + { + "bbox": [ + 104, + 394, + 506, + 410 + ], + "score": 1.0, + "content": "KAWAGUCHI, K. and HUANG, J. (2019). Gradient descent finds global minima for generalizable deep", + "type": "text" + } + ], + "index": 22, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 406, + 507, + 421 + ], + "spans": [ + { + "bbox": [ + 114, + 406, + 507, + 421 + ], + "score": 1.0, + "content": "neural networks of practical sizes. In 2019 57th Annual Allerton Conference on Communication,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 114, + 417, + 287, + 431 + ], + "spans": [ + { + "bbox": [ + 114, + 417, + 287, + 431 + ], + "score": 1.0, + "content": "Control, and Computing (Allerton). IEEE.", + "type": "text" + } + ], + "index": 24, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 434, + 464, + 450 + ], + "spans": [ + { + "bbox": [ + 104, + 434, + 464, + 450 + ], + "score": 1.0, + "content": "KRIZHEVSKY, A. ET AL. (2009). Learning multiple layers of features from tiny images .", + "type": "text" + } + ], + "index": 25, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 454, + 506, + 466 + ], + "spans": [ + { + "bbox": [ + 106, + 454, + 506, + 466 + ], + "score": 1.0, + "content": "LEE, J., XIAO, L., SCHOENHOLZ, S. S., BAHRI, Y., SOHL-DICKSTEIN, J. and PENNINGTON, J.", + "type": "text" + } + ], + "index": 26, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 466, + 506, + 478 + ], + "spans": [ + { + "bbox": [ + 115, + 466, + 506, + 478 + ], + "score": 1.0, + "content": "(2019). Wide neural networks of any depth evolve as linear models under gradient descent. In", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 114, + 477, + 331, + 489 + ], + "spans": [ + { + "bbox": [ + 114, + 477, + 331, + 489 + ], + "score": 1.0, + "content": "Advances in Neural Information Processing Systems.", + "type": "text" + } + ], + "index": 28, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 492, + 507, + 509 + ], + "spans": [ + { + "bbox": [ + 104, + 492, + 507, + 509 + ], + "score": 1.0, + "content": "MOHRI, M., ROSTAMIZADEH, A. and TALWALKAR, A. (2018). Foundations of machine learning.", + "type": "text" + } + ], + "index": 29, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 505, + 165, + 520 + ], + "spans": [ + { + "bbox": [ + 114, + 505, + 165, + 520 + ], + "score": 1.0, + "content": "MIT press.", + "type": "text" + } + ], + "index": 30, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 523, + 505, + 536 + ], + "spans": [ + { + "bbox": [ + 106, + 523, + 505, + 536 + ], + "score": 1.0, + "content": "NITANDA, A. and SUZUKI, T. (2019). Refined generalization analysis of gradient descent for", + "type": "text" + } + ], + "index": 31, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 536, + 506, + 548 + ], + "spans": [ + { + "bbox": [ + 115, + 536, + 506, + 548 + ], + "score": 1.0, + "content": "over-parameterized two-layer neural networks with smooth activations on classification problems.", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 113, + 545, + 256, + 559 + ], + "spans": [ + { + "bbox": [ + 113, + 545, + 256, + 559 + ], + "score": 1.0, + "content": "arXiv preprint arXiv:1905.09870 .", + "type": "text" + } + ], + "index": 33, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 562, + 506, + 578 + ], + "spans": [ + { + "bbox": [ + 104, + 562, + 506, + 578 + ], + "score": 1.0, + "content": "OYMAK, S. and SOLTANOLKOTABI, M. (2019). Towards moderate overparameterization: global", + "type": "text" + } + ], + "index": 34, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 574, + 505, + 588 + ], + "spans": [ + { + "bbox": [ + 114, + 574, + 505, + 588 + ], + "score": 1.0, + "content": "convergence guarantees for training shallow neural networks. arXiv preprint arXiv:1902.04674 .", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 593, + 504, + 605 + ], + "spans": [ + { + "bbox": [ + 106, + 593, + 504, + 605 + ], + "score": 1.0, + "content": "SHALEV-SHWARTZ, S. and BEN-DAVID, S. (2014). Understanding machine learning: From theory", + "type": "text" + } + ], + "index": 36, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 604, + 290, + 617 + ], + "spans": [ + { + "bbox": [ + 115, + 604, + 290, + 617 + ], + "score": 1.0, + "content": "to algorithms. Cambridge university press.", + "type": "text" + } + ], + "index": 37, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 620, + 506, + 637 + ], + "spans": [ + { + "bbox": [ + 106, + 622, + 203, + 635 + ], + "score": 1.0, + "content": "SHAMIR, O. (2020).", + "type": "text" + }, + { + "bbox": [ + 206, + 620, + 506, + 637 + ], + "score": 1.0, + "content": "Gradient methods never overfit on separable data. arXiv preprint", + "type": "text" + } + ], + "index": 38, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 633, + 198, + 645 + ], + "spans": [ + { + "bbox": [ + 114, + 633, + 198, + 645 + ], + "score": 1.0, + "content": "arXiv:2007.00028 .", + "type": "text" + } + ], + "index": 39, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 651, + 505, + 664 + ], + "spans": [ + { + "bbox": [ + 106, + 651, + 505, + 664 + ], + "score": 1.0, + "content": "VERSHYNIN, R. (2010). Introduction to the non-asymptotic analysis of random matrices. arXiv", + "type": "text" + } + ], + "index": 40, + "is_list_start_line": true + }, + { + "bbox": [ + 113, + 663, + 228, + 675 + ], + "spans": [ + { + "bbox": [ + 113, + 663, + 228, + 675 + ], + "score": 1.0, + "content": "preprint arXiv:1011.3027 .", + "type": "text" + } + ], + "index": 41, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 679, + 506, + 695 + ], + "spans": [ + { + "bbox": [ + 104, + 679, + 506, + 695 + ], + "score": 1.0, + "content": "ZOU, D., CAO, Y., ZHOU, D. and GU, Q. (2019). Gradient descent optimizes over-parameterized", + "type": "text" + } + ], + "index": 42, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 689, + 290, + 707 + ], + "spans": [ + { + "bbox": [ + 114, + 689, + 290, + 707 + ], + "score": 1.0, + "content": "deep ReLU networks. Machine Learning .", + "type": "text" + } + ], + "index": 43, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 708, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 104, + 708, + 506, + 723 + ], + "score": 1.0, + "content": "ZOU, D. and GU, Q. (2019). An improved analysis of training over-parameterized deep neural", + "type": "text" + } + ], + "index": 44, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 719, + 385, + 735 + ], + "spans": [ + { + "bbox": [ + 114, + 719, + 385, + 735 + ], + "score": 1.0, + "content": "networks. In Advances in Neural Information Processing Systems.", + "type": "text" + } + ], + "index": 45, + "is_list_end_line": true + } + ], + "index": 22.5, + "bbox_fs": [ + 104, + 83, + 509, + 735 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 81, + 274, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 80, + 275, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 80, + 275, + 96 + ], + "score": 1.0, + "content": "A PROOF OF MAIN THEOREMS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 105, + 385, + 118 + ], + "lines": [ + { + "bbox": [ + 106, + 105, + 386, + 118 + ], + "spans": [ + { + "bbox": [ + 106, + 105, + 386, + 118 + ], + "score": 1.0, + "content": "In this section we provide the full proof of Theorems 3.3, 3.4 and 3.5.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1 + }, + { + "type": "title", + "bbox": [ + 108, + 130, + 239, + 142 + ], + "lines": [ + { + "bbox": [ + 106, + 129, + 240, + 143 + ], + "spans": [ + { + "bbox": [ + 106, + 129, + 240, + 143 + ], + "score": 1.0, + "content": "A.1 PROOF OF THEOREM 3.3", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 106, + 150, + 418, + 163 + ], + "lines": [ + { + "bbox": [ + 104, + 148, + 419, + 166 + ], + "spans": [ + { + "bbox": [ + 104, + 148, + 419, + 166 + ], + "score": 1.0, + "content": "We first provide the following lemma which is useful in the subsequent proof.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 106, + 165, + 506, + 199 + ], + "lines": [ + { + "bbox": [ + 105, + 165, + 505, + 177 + ], + "spans": [ + { + "bbox": [ + 105, + 165, + 476, + 177 + ], + "score": 1.0, + "content": "Lemma A.1 (Lemmas 4.1 and B.3 in Cao and Gu (2019)). There exists an absolute constant", + "type": "text" + }, + { + "bbox": [ + 477, + 168, + 483, + 175 + ], + "score": 0.78, + "content": "\\kappa", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 165, + 505, + 177 + ], + "score": 1.0, + "content": "such", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 104, + 175, + 506, + 189 + ], + "spans": [ + { + "bbox": [ + 104, + 175, + 227, + 189 + ], + "score": 1.0, + "content": "that, with probability at least", + "type": "text" + }, + { + "bbox": [ + 227, + 176, + 358, + 189 + ], + "score": 0.9, + "content": "1 - \\mathcal { O } ( n L ^ { 2 } ) \\exp [ - \\Omega ( m \\tau ^ { 2 / 3 } L ) ]", + "type": "inline_equation" + }, + { + "bbox": [ + 358, + 175, + 394, + 189 + ], + "score": 1.0, + "content": ", for any", + "type": "text" + }, + { + "bbox": [ + 394, + 176, + 492, + 189 + ], + "score": 0.92, + "content": "\\tau \\leqslant \\kappa L ^ { - 6 } [ \\log ( m ) ] ^ { - 3 / 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 492, + 175, + 506, + 189 + ], + "score": 1.0, + "content": ", i t", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 186, + 149, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 186, + 149, + 200 + ], + "score": 1.0, + "content": "holds that", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5 + }, + { + "type": "interline_equation", + "bbox": [ + 205, + 200, + 405, + 218 + ], + "lines": [ + { + "bbox": [ + 205, + 200, + 405, + 218 + ], + "spans": [ + { + "bbox": [ + 205, + 200, + 405, + 218 + ], + "score": 0.89, + "content": "\\epsilon _ { \\mathrm { a p p } } ( \\tau ) \\leqslant \\widetilde { \\mathcal { O } } \\bigl ( \\tau ^ { 4 / 3 } L ^ { 3 } m ^ { 1 / 2 } \\bigr ) , \\quad M ( \\tau ) \\leqslant \\widetilde { \\mathcal { O } } ( \\sqrt { m } ) .", + "type": "interline_equation", + "image_path": "8fd5633b85bdfb78988356b035bfa4986d3c33a8027063d12a5dc54c89b5bb40.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 205, + 200, + 405, + 218 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 227, + 342, + 239 + ], + "lines": [ + { + "bbox": [ + 106, + 226, + 342, + 240 + ], + "spans": [ + { + "bbox": [ + 106, + 226, + 244, + 240 + ], + "score": 1.0, + "content": "Proof of Theorem 3.3. Recall that", + "type": "text" + }, + { + "bbox": [ + 245, + 228, + 262, + 238 + ], + "score": 0.88, + "content": "\\mathbf { W } ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 263, + 226, + 342, + 240 + ], + "score": 1.0, + "content": "is chosen such that", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "interline_equation", + "bbox": [ + 233, + 243, + 378, + 275 + ], + "lines": [ + { + "bbox": [ + 233, + 243, + 378, + 275 + ], + "spans": [ + { + "bbox": [ + 233, + 243, + 378, + 275 + ], + "score": 0.94, + "content": "\\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } \\ell \\big ( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ^ { * } } ( \\mathbf { x } _ { i } ) \\big ) = \\epsilon _ { \\mathrm { N T R F } }", + "type": "interline_equation", + "image_path": "349275ef8bcc161ee9f4ffd6c38eba91dc74699deb9ff1e710ff3ae0d1413806.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 233, + 243, + 378, + 275 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 279, + 506, + 332 + ], + "lines": [ + { + "bbox": [ + 105, + 277, + 507, + 293 + ], + "spans": [ + { + "bbox": [ + 105, + 277, + 123, + 293 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 278, + 228, + 291 + ], + "score": 0.92, + "content": "\\mathbf { W } ^ { * } \\in { \\mathcal { B } } ( \\mathbf { W } ^ { ( 0 ) } , R m ^ { - 1 / 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 229, + 277, + 433, + 293 + ], + "score": 1.0, + "content": ". Note that to apply Lemma 5.1, we need the region", + "type": "text" + }, + { + "bbox": [ + 434, + 279, + 481, + 292 + ], + "score": 0.93, + "content": "B ( \\mathbf { W } ^ { ( 0 ) } , \\tau )", + "type": "inline_equation" + }, + { + "bbox": [ + 482, + 277, + 507, + 293 + ], + "score": 1.0, + "content": "to in-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 104, + 290, + 506, + 307 + ], + "spans": [ + { + "bbox": [ + 104, + 290, + 150, + 307 + ], + "score": 1.0, + "content": "clude both", + "type": "text" + }, + { + "bbox": [ + 150, + 293, + 168, + 304 + ], + "score": 0.83, + "content": "\\mathbf { W } ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 290, + 186, + 307 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 187, + 292, + 249, + 306 + ], + "score": 0.91, + "content": "\\{ \\mathbf { W } ^ { ( t ) } \\} _ { t = 0 , \\dots , t ^ { \\prime } }", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 290, + 346, + 307 + ], + "score": 1.0, + "content": ". This motivates us to set", + "type": "text" + }, + { + "bbox": [ + 347, + 291, + 435, + 305 + ], + "score": 0.93, + "content": "\\tau = \\widetilde { \\mathcal { O } } ( L ^ { 1 / 2 } m ^ { - 1 / 2 } R )", + "type": "inline_equation" + }, + { + "bbox": [ + 435, + 290, + 506, + 307 + ], + "score": 1.0, + "content": ", which is slightly", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 104, + 304, + 505, + 321 + ], + "spans": [ + { + "bbox": [ + 104, + 304, + 153, + 321 + ], + "score": 1.0, + "content": "larger than", + "type": "text" + }, + { + "bbox": [ + 153, + 306, + 188, + 317 + ], + "score": 0.91, + "content": "m ^ { - 1 / 2 } R", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 304, + 273, + 321 + ], + "score": 1.0, + "content": ". With this choice of", + "type": "text" + }, + { + "bbox": [ + 274, + 309, + 281, + 317 + ], + "score": 0.74, + "content": "\\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 304, + 385, + 321 + ], + "score": 1.0, + "content": ", by Lemma A.1 we have", + "type": "text" + }, + { + "bbox": [ + 385, + 305, + 505, + 319 + ], + "score": 0.93, + "content": "\\epsilon _ { \\mathrm { a p p } } ( \\tau ) = \\widetilde { \\mathcal { O } } ( \\tau ^ { 4 / 3 } m ^ { 1 / 2 } L ^ { 3 } ) =", + "type": "inline_equation" + } + ], + "index": 12 + }, + { + "bbox": [ + 107, + 316, + 286, + 334 + ], + "spans": [ + { + "bbox": [ + 107, + 318, + 191, + 333 + ], + "score": 0.91, + "content": "\\widetilde { \\mathcal { O } } ( R ^ { 4 / 3 } L ^ { 1 1 / 3 } m ^ { - 1 / 6 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 316, + 286, + 334 + ], + "score": 1.0, + "content": ". Therefore, we can set", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 11.5 + }, + { + "type": "interline_equation", + "bbox": [ + 272, + 336, + 339, + 352 + ], + "lines": [ + { + "bbox": [ + 272, + 336, + 339, + 352 + ], + "spans": [ + { + "bbox": [ + 272, + 336, + 339, + 352 + ], + "score": 0.92, + "content": "m = \\widetilde \\Omega ( R ^ { 8 } L ^ { 2 2 } )", + "type": "interline_equation", + "image_path": "827c73fb83de0d5510764e2e2c5d6af55ff844bf04d20a13cc278e54f0f21d65.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 272, + 336, + 339, + 352 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 357, + 507, + 392 + ], + "lines": [ + { + "bbox": [ + 104, + 356, + 506, + 371 + ], + "spans": [ + { + "bbox": [ + 104, + 357, + 164, + 371 + ], + "score": 1.0, + "content": "to ensure that", + "type": "text" + }, + { + "bbox": [ + 164, + 358, + 221, + 371 + ], + "score": 0.92, + "content": "\\epsilon _ { \\mathrm { a p p } } ( \\tau ) \\leqslant 1 / 8", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 357, + 252, + 371 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 252, + 356, + 271, + 371 + ], + "score": 0.91, + "content": "\\widetilde { \\Omega } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 357, + 494, + 371 + ], + "score": 1.0, + "content": "hides polylogarithmic dependencies on network depth", + "type": "text" + }, + { + "bbox": [ + 495, + 360, + 502, + 369 + ], + "score": 0.77, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 357, + 506, + 371 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 369, + 505, + 382 + ], + "spans": [ + { + "bbox": [ + 105, + 369, + 209, + 382 + ], + "score": 1.0, + "content": "NTRF function class size", + "type": "text" + }, + { + "bbox": [ + 209, + 371, + 218, + 380 + ], + "score": 0.81, + "content": "R", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 369, + 354, + 382 + ], + "score": 1.0, + "content": ", and failure probability parameter", + "type": "text" + }, + { + "bbox": [ + 355, + 370, + 361, + 380 + ], + "score": 0.72, + "content": "\\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 369, + 505, + 382 + ], + "score": 1.0, + "content": ". Then by Lemma 5.1, we have with", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 380, + 245, + 393 + ], + "spans": [ + { + "bbox": [ + 105, + 380, + 183, + 393 + ], + "score": 1.0, + "content": "probability at least", + "type": "text" + }, + { + "bbox": [ + 183, + 381, + 206, + 391 + ], + "score": 0.88, + "content": "1 - \\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 380, + 245, + 393 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16 + }, + { + "type": "interline_equation", + "bbox": [ + 164, + 396, + 446, + 430 + ], + "lines": [ + { + "bbox": [ + 164, + 396, + 446, + 430 + ], + "spans": [ + { + "bbox": [ + 164, + 396, + 446, + 430 + ], + "score": 0.95, + "content": "\\| \\mathbf { W } ^ { ( 0 ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } - \\| \\mathbf { W } ^ { ( t ^ { \\prime } ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } \\geqslant \\eta \\sum _ { t = 0 } ^ { t ^ { \\prime } - 1 } L _ { S } ( \\mathbf { W } ^ { ( t ) } ) - 2 t ^ { \\prime } \\eta \\epsilon _ { \\mathrm { N T R F } }", + "type": "interline_equation", + "image_path": "3c85a7fc6ed2aac7fe077682e0a88b4da1bc24ffdb86f9ac56a1c95884283531.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 164, + 396, + 446, + 407.3333333333333 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 164, + 407.3333333333333, + 446, + 418.66666666666663 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 164, + 418.66666666666663, + 446, + 429.99999999999994 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 434, + 505, + 461 + ], + "lines": [ + { + "bbox": [ + 104, + 432, + 503, + 450 + ], + "spans": [ + { + "bbox": [ + 104, + 432, + 150, + 450 + ], + "score": 1.0, + "content": "as long as", + "type": "text" + }, + { + "bbox": [ + 150, + 434, + 288, + 448 + ], + "score": 0.9, + "content": "\\mathbf { W } ^ { ( 0 ) } , \\ldots , \\mathbf { W } ^ { ( t ^ { \\prime } - 1 ) } \\in \\mathcal { B } ( \\mathbf { W } ^ { ( 0 ) } , \\tau )", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 432, + 431, + 450 + ], + "score": 1.0, + "content": ". In the following proof we choose", + "type": "text" + }, + { + "bbox": [ + 432, + 435, + 503, + 448 + ], + "score": 0.92, + "content": "\\eta = \\Theta ( L ^ { - 1 } m ^ { - 1 } )", + "type": "inline_equation" + } + ], + "index": 21 + }, + { + "bbox": [ + 104, + 443, + 234, + 464 + ], + "spans": [ + { + "bbox": [ + 104, + 443, + 123, + 464 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 123, + 447, + 228, + 461 + ], + "score": 0.9, + "content": "T = \\lceil L R ^ { 2 } m ^ { - 1 } \\eta ^ { - 1 } \\epsilon _ { \\mathrm { N T R F } } ^ { - 1 } \\rceil", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 443, + 234, + 464 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5 + }, + { + "type": "text", + "bbox": [ + 106, + 465, + 505, + 502 + ], + "lines": [ + { + "bbox": [ + 105, + 465, + 506, + 480 + ], + "spans": [ + { + "bbox": [ + 105, + 465, + 360, + 480 + ], + "score": 1.0, + "content": "We prove the theorem by two steps: 1) we show that all iterates", + "type": "text" + }, + { + "bbox": [ + 361, + 466, + 441, + 479 + ], + "score": 0.92, + "content": "\\{ \\mathbf { W } ^ { ( 0 ) } , \\cdots , \\mathbf { W } ^ { ( T ) } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 465, + 506, + 480 + ], + "score": 1.0, + "content": "will stay inside", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 104, + 477, + 504, + 494 + ], + "spans": [ + { + "bbox": [ + 104, + 477, + 151, + 494 + ], + "score": 1.0, + "content": "the region", + "type": "text" + }, + { + "bbox": [ + 151, + 478, + 200, + 491 + ], + "score": 0.96, + "content": "B ( \\mathbf { W } ^ { ( 0 ) } , \\tau )", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 477, + 475, + 494 + ], + "score": 1.0, + "content": "; and 2) we show that GD can find a neural network with at most", + "type": "text" + }, + { + "bbox": [ + 475, + 480, + 504, + 491 + ], + "score": 0.48, + "content": "3 \\epsilon _ { \\mathrm { N T R F } }", + "type": "inline_equation" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 490, + 238, + 503 + ], + "spans": [ + { + "bbox": [ + 106, + 490, + 186, + 503 + ], + "score": 1.0, + "content": "training loss within", + "type": "text" + }, + { + "bbox": [ + 186, + 492, + 194, + 500 + ], + "score": 0.83, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 490, + 238, + 503 + ], + "score": 1.0, + "content": "iterations.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 106, + 507, + 506, + 546 + ], + "lines": [ + { + "bbox": [ + 105, + 505, + 506, + 521 + ], + "spans": [ + { + "bbox": [ + 105, + 505, + 202, + 521 + ], + "score": 1.0, + "content": "All iterates stay inside", + "type": "text" + }, + { + "bbox": [ + 203, + 507, + 250, + 520 + ], + "score": 0.92, + "content": "B ( \\mathbf { W } ^ { ( 0 ) } , \\tau )", + "type": "inline_equation" + }, + { + "bbox": [ + 251, + 505, + 459, + 521 + ], + "score": 1.0, + "content": ". We prove this part by induction. Specifically, given", + "type": "text" + }, + { + "bbox": [ + 459, + 509, + 487, + 519 + ], + "score": 0.9, + "content": "t ^ { \\prime } \\leqslant T", + "type": "inline_equation" + }, + { + "bbox": [ + 488, + 505, + 506, + 521 + ], + "score": 1.0, + "content": ", we", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 104, + 518, + 503, + 535 + ], + "spans": [ + { + "bbox": [ + 104, + 518, + 200, + 535 + ], + "score": 1.0, + "content": "assume the hypothesis", + "type": "text" + }, + { + "bbox": [ + 200, + 520, + 280, + 533 + ], + "score": 0.88, + "content": "\\mathbf { W } ^ { ( t ) } \\in { \\cal B } ( \\mathbf { W } ^ { ( 0 ) } , \\tau )", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 518, + 333, + 535 + ], + "score": 1.0, + "content": "holds for all", + "type": "text" + }, + { + "bbox": [ + 334, + 521, + 358, + 532 + ], + "score": 0.9, + "content": "t < t ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 358, + 518, + 420, + 535 + ], + "score": 1.0, + "content": "and prove that", + "type": "text" + }, + { + "bbox": [ + 420, + 519, + 503, + 533 + ], + "score": 0.91, + "content": "\\mathbf { W } ^ { ( t ^ { \\prime } ) } \\in { \\cal B } ( \\mathbf { W } ^ { ( 0 ) } , \\tau )", + "type": "inline_equation" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 531, + 489, + 547 + ], + "spans": [ + { + "bbox": [ + 105, + 531, + 186, + 547 + ], + "score": 1.0, + "content": "First, it is clear that", + "type": "text" + }, + { + "bbox": [ + 187, + 533, + 268, + 546 + ], + "score": 0.89, + "content": "\\mathbf { W } ^ { ( 0 ) } \\in { \\mathcal { B } } ( \\mathbf { W } ^ { ( 0 ) } , \\tau )", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 531, + 398, + 547 + ], + "score": 1.0, + "content": ". Then by (A.2) and the fact that", + "type": "text" + }, + { + "bbox": [ + 398, + 533, + 450, + 546 + ], + "score": 0.92, + "content": "L _ { S } ( \\mathbf { W } ) \\geqslant 0", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 531, + 489, + 547 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27 + }, + { + "type": "interline_equation", + "bbox": [ + 203, + 550, + 407, + 565 + ], + "lines": [ + { + "bbox": [ + 203, + 550, + 407, + 565 + ], + "spans": [ + { + "bbox": [ + 203, + 550, + 407, + 565 + ], + "score": 0.89, + "content": "\\| \\mathbf { W } ^ { ( t ^ { \\prime } ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } \\leqslant \\| \\mathbf { W } ^ { ( 0 ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } + 2 \\eta t ^ { \\prime } \\epsilon _ { \\mathrm { N T R F } }", + "type": "interline_equation", + "image_path": "14ebcfe68fb2a1208600a48edc85d7428cf522af1e6063d04e2909cd9bf33c94.jpg" + } + ] + } + ], + "index": 29, + "virtual_lines": [ + { + "bbox": [ + 203, + 550, + 407, + 565 + ], + "spans": [], + "index": 29 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 569, + 420, + 584 + ], + "lines": [ + { + "bbox": [ + 104, + 568, + 421, + 586 + ], + "spans": [ + { + "bbox": [ + 104, + 568, + 145, + 586 + ], + "score": 1.0, + "content": "Note that", + "type": "text" + }, + { + "bbox": [ + 146, + 570, + 251, + 584 + ], + "score": 0.91, + "content": "T = \\lceil L R ^ { 2 } m ^ { - 1 } \\eta ^ { - 1 } \\epsilon _ { \\mathrm { N T R F } } ^ { - 1 } \\rceil", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 568, + 269, + 586 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 269, + 570, + 380, + 583 + ], + "score": 0.91, + "content": "\\mathbf { W } ^ { \\ast } \\in { \\mathcal { B } } ( \\mathbf { W } ^ { ( 0 ) } , R \\cdot m ^ { - 1 / 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 568, + 421, + 586 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "interline_equation", + "bbox": [ + 189, + 587, + 419, + 621 + ], + "lines": [ + { + "bbox": [ + 189, + 587, + 419, + 621 + ], + "spans": [ + { + "bbox": [ + 189, + 587, + 419, + 621 + ], + "score": 0.92, + "content": "\\sum _ { l = 1 } ^ { L } \\| \\mathbf { W } _ { l } ^ { ( t ^ { \\prime } ) } - \\mathbf { W } _ { l } ^ { * } \\| _ { F } ^ { 2 } = \\| \\mathbf { W } ^ { ( t ^ { \\prime } ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } \\leqslant C L R ^ { 2 } m ^ { - 1 } ,", + "type": "interline_equation", + "image_path": "611a895b24ee2a34b182937742fd0ddd6d91d7a9ba602bd47adb40c2bb55e3b6.jpg" + } + ] + } + ], + "index": 31.5, + "virtual_lines": [ + { + "bbox": [ + 189, + 587, + 419, + 604.0 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 189, + 604.0, + 419, + 621.0 + ], + "spans": [], + "index": 32 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 624, + 504, + 648 + ], + "lines": [ + { + "bbox": [ + 105, + 622, + 506, + 638 + ], + "spans": [ + { + "bbox": [ + 105, + 622, + 132, + 638 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 624, + 160, + 635 + ], + "score": 0.9, + "content": "C \\geqslant 4", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 622, + 506, + 638 + ], + "score": 1.0, + "content": "is an absolute constant. Therefore, by triangle inequality, we further have the following", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 634, + 166, + 648 + ], + "spans": [ + { + "bbox": [ + 105, + 634, + 133, + 648 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 133, + 635, + 162, + 647 + ], + "score": 0.91, + "content": "l \\in [ L ]", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 634, + 166, + 648 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5 + }, + { + "type": "interline_equation", + "bbox": [ + 186, + 649, + 424, + 702 + ], + "lines": [ + { + "bbox": [ + 186, + 649, + 424, + 702 + ], + "spans": [ + { + "bbox": [ + 186, + 649, + 424, + 702 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { \\| \\mathbf { W } _ { l } ^ { ( t ^ { \\prime } ) } - \\mathbf { W } _ { l } ^ { ( 0 ) } \\| _ { F } \\leqslant \\| \\mathbf { W } _ { l } ^ { ( t ^ { \\prime } ) } - \\mathbf { W } _ { l } ^ { * } \\| _ { F } + \\| \\mathbf { W } _ { l } ^ { ( 0 ) } - \\mathbf { W } _ { l } ^ { * } \\| _ { F } } \\\\ & { \\qquad \\leqslant \\sqrt { C L } R m ^ { - 1 / 2 } + R m ^ { - 1 / 2 } } \\\\ & { \\qquad \\leqslant 2 \\sqrt { C L } R m ^ { - 1 / 2 } . } \\end{array}", + "type": "interline_equation", + "image_path": "3194527084a01da78adebff7e3a9c6944952b985fe7562d68691638d1993d8e4.jpg" + } + ] + } + ], + "index": 36, + "virtual_lines": [ + { + "bbox": [ + 186, + 649, + 424, + 666.6666666666666 + ], + "spans": [], + "index": 35 + }, + { + "bbox": [ + 186, + 666.6666666666666, + 424, + 684.3333333333333 + ], + "spans": [], + "index": 36 + }, + { + "bbox": [ + 186, + 684.3333333333333, + 424, + 701.9999999999999 + ], + "spans": [], + "index": 37 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 706, + 504, + 733 + ], + "lines": [ + { + "bbox": [ + 104, + 703, + 504, + 725 + ], + "spans": [ + { + "bbox": [ + 104, + 703, + 215, + 725 + ], + "score": 1.0, + "content": "Therefore, it is clear that", + "type": "text" + }, + { + "bbox": [ + 215, + 707, + 394, + 722 + ], + "score": 0.94, + "content": "\\| \\mathbf { W } _ { l } ^ { ( t ^ { \\prime } ) } - \\mathbf { W } _ { l } ^ { ( 0 ) } \\| _ { F } \\leqslant 2 \\sqrt { C L } R m ^ { - 1 / 2 } \\leqslant \\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 395, + 703, + 497, + 725 + ], + "score": 1.0, + "content": "based on our choice of", + "type": "text" + }, + { + "bbox": [ + 497, + 712, + 504, + 720 + ], + "score": 0.74, + "content": "\\tau", + "type": "inline_equation" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 719, + 320, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 719, + 320, + 734 + ], + "score": 1.0, + "content": "previously. This completes the proof of the first part.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38.5 + } + ], + "page_idx": 10, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 26, + 293, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 310, + 761 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 765 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 765 + ], + "score": 1.0, + "content": "11", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 81, + 274, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 80, + 275, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 80, + 275, + 96 + ], + "score": 1.0, + "content": "A PROOF OF MAIN THEOREMS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 105, + 385, + 118 + ], + "lines": [ + { + "bbox": [ + 106, + 105, + 386, + 118 + ], + "spans": [ + { + "bbox": [ + 106, + 105, + 386, + 118 + ], + "score": 1.0, + "content": "In this section we provide the full proof of Theorems 3.3, 3.4 and 3.5.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1, + "bbox_fs": [ + 106, + 105, + 386, + 118 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 130, + 239, + 142 + ], + "lines": [ + { + "bbox": [ + 106, + 129, + 240, + 143 + ], + "spans": [ + { + "bbox": [ + 106, + 129, + 240, + 143 + ], + "score": 1.0, + "content": "A.1 PROOF OF THEOREM 3.3", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 106, + 150, + 418, + 163 + ], + "lines": [ + { + "bbox": [ + 104, + 148, + 419, + 166 + ], + "spans": [ + { + "bbox": [ + 104, + 148, + 419, + 166 + ], + "score": 1.0, + "content": "We first provide the following lemma which is useful in the subsequent proof.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3, + "bbox_fs": [ + 104, + 148, + 419, + 166 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 165, + 506, + 199 + ], + "lines": [ + { + "bbox": [ + 105, + 165, + 505, + 177 + ], + "spans": [ + { + "bbox": [ + 105, + 165, + 476, + 177 + ], + "score": 1.0, + "content": "Lemma A.1 (Lemmas 4.1 and B.3 in Cao and Gu (2019)). There exists an absolute constant", + "type": "text" + }, + { + "bbox": [ + 477, + 168, + 483, + 175 + ], + "score": 0.78, + "content": "\\kappa", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 165, + 505, + 177 + ], + "score": 1.0, + "content": "such", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 104, + 175, + 506, + 189 + ], + "spans": [ + { + "bbox": [ + 104, + 175, + 227, + 189 + ], + "score": 1.0, + "content": "that, with probability at least", + "type": "text" + }, + { + "bbox": [ + 227, + 176, + 358, + 189 + ], + "score": 0.9, + "content": "1 - \\mathcal { O } ( n L ^ { 2 } ) \\exp [ - \\Omega ( m \\tau ^ { 2 / 3 } L ) ]", + "type": "inline_equation" + }, + { + "bbox": [ + 358, + 175, + 394, + 189 + ], + "score": 1.0, + "content": ", for any", + "type": "text" + }, + { + "bbox": [ + 394, + 176, + 492, + 189 + ], + "score": 0.92, + "content": "\\tau \\leqslant \\kappa L ^ { - 6 } [ \\log ( m ) ] ^ { - 3 / 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 492, + 175, + 506, + 189 + ], + "score": 1.0, + "content": ", i t", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 186, + 149, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 186, + 149, + 200 + ], + "score": 1.0, + "content": "holds that", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5, + "bbox_fs": [ + 104, + 165, + 506, + 200 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 205, + 200, + 405, + 218 + ], + "lines": [ + { + "bbox": [ + 205, + 200, + 405, + 218 + ], + "spans": [ + { + "bbox": [ + 205, + 200, + 405, + 218 + ], + "score": 0.89, + "content": "\\epsilon _ { \\mathrm { a p p } } ( \\tau ) \\leqslant \\widetilde { \\mathcal { O } } \\bigl ( \\tau ^ { 4 / 3 } L ^ { 3 } m ^ { 1 / 2 } \\bigr ) , \\quad M ( \\tau ) \\leqslant \\widetilde { \\mathcal { O } } ( \\sqrt { m } ) .", + "type": "interline_equation", + "image_path": "8fd5633b85bdfb78988356b035bfa4986d3c33a8027063d12a5dc54c89b5bb40.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 205, + 200, + 405, + 218 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 227, + 342, + 239 + ], + "lines": [ + { + "bbox": [ + 106, + 226, + 342, + 240 + ], + "spans": [ + { + "bbox": [ + 106, + 226, + 244, + 240 + ], + "score": 1.0, + "content": "Proof of Theorem 3.3. Recall that", + "type": "text" + }, + { + "bbox": [ + 245, + 228, + 262, + 238 + ], + "score": 0.88, + "content": "\\mathbf { W } ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 263, + 226, + 342, + 240 + ], + "score": 1.0, + "content": "is chosen such that", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8, + "bbox_fs": [ + 106, + 226, + 342, + 240 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 233, + 243, + 378, + 275 + ], + "lines": [ + { + "bbox": [ + 233, + 243, + 378, + 275 + ], + "spans": [ + { + "bbox": [ + 233, + 243, + 378, + 275 + ], + "score": 0.94, + "content": "\\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } \\ell \\big ( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ^ { * } } ( \\mathbf { x } _ { i } ) \\big ) = \\epsilon _ { \\mathrm { N T R F } }", + "type": "interline_equation", + "image_path": "349275ef8bcc161ee9f4ffd6c38eba91dc74699deb9ff1e710ff3ae0d1413806.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 233, + 243, + 378, + 275 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 279, + 506, + 332 + ], + "lines": [ + { + "bbox": [ + 105, + 277, + 507, + 293 + ], + "spans": [ + { + "bbox": [ + 105, + 277, + 123, + 293 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 278, + 228, + 291 + ], + "score": 0.92, + "content": "\\mathbf { W } ^ { * } \\in { \\mathcal { B } } ( \\mathbf { W } ^ { ( 0 ) } , R m ^ { - 1 / 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 229, + 277, + 433, + 293 + ], + "score": 1.0, + "content": ". Note that to apply Lemma 5.1, we need the region", + "type": "text" + }, + { + "bbox": [ + 434, + 279, + 481, + 292 + ], + "score": 0.93, + "content": "B ( \\mathbf { W } ^ { ( 0 ) } , \\tau )", + "type": "inline_equation" + }, + { + "bbox": [ + 482, + 277, + 507, + 293 + ], + "score": 1.0, + "content": "to in-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 104, + 290, + 506, + 307 + ], + "spans": [ + { + "bbox": [ + 104, + 290, + 150, + 307 + ], + "score": 1.0, + "content": "clude both", + "type": "text" + }, + { + "bbox": [ + 150, + 293, + 168, + 304 + ], + "score": 0.83, + "content": "\\mathbf { W } ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 290, + 186, + 307 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 187, + 292, + 249, + 306 + ], + "score": 0.91, + "content": "\\{ \\mathbf { W } ^ { ( t ) } \\} _ { t = 0 , \\dots , t ^ { \\prime } }", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 290, + 346, + 307 + ], + "score": 1.0, + "content": ". This motivates us to set", + "type": "text" + }, + { + "bbox": [ + 347, + 291, + 435, + 305 + ], + "score": 0.93, + "content": "\\tau = \\widetilde { \\mathcal { O } } ( L ^ { 1 / 2 } m ^ { - 1 / 2 } R )", + "type": "inline_equation" + }, + { + "bbox": [ + 435, + 290, + 506, + 307 + ], + "score": 1.0, + "content": ", which is slightly", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 104, + 304, + 505, + 321 + ], + "spans": [ + { + "bbox": [ + 104, + 304, + 153, + 321 + ], + "score": 1.0, + "content": "larger than", + "type": "text" + }, + { + "bbox": [ + 153, + 306, + 188, + 317 + ], + "score": 0.91, + "content": "m ^ { - 1 / 2 } R", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 304, + 273, + 321 + ], + "score": 1.0, + "content": ". With this choice of", + "type": "text" + }, + { + "bbox": [ + 274, + 309, + 281, + 317 + ], + "score": 0.74, + "content": "\\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 304, + 385, + 321 + ], + "score": 1.0, + "content": ", by Lemma A.1 we have", + "type": "text" + }, + { + "bbox": [ + 385, + 305, + 505, + 319 + ], + "score": 0.93, + "content": "\\epsilon _ { \\mathrm { a p p } } ( \\tau ) = \\widetilde { \\mathcal { O } } ( \\tau ^ { 4 / 3 } m ^ { 1 / 2 } L ^ { 3 } ) =", + "type": "inline_equation" + } + ], + "index": 12 + }, + { + "bbox": [ + 107, + 316, + 286, + 334 + ], + "spans": [ + { + "bbox": [ + 107, + 318, + 191, + 333 + ], + "score": 0.91, + "content": "\\widetilde { \\mathcal { O } } ( R ^ { 4 / 3 } L ^ { 1 1 / 3 } m ^ { - 1 / 6 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 316, + 286, + 334 + ], + "score": 1.0, + "content": ". Therefore, we can set", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 11.5, + "bbox_fs": [ + 104, + 277, + 507, + 334 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 272, + 336, + 339, + 352 + ], + "lines": [ + { + "bbox": [ + 272, + 336, + 339, + 352 + ], + "spans": [ + { + "bbox": [ + 272, + 336, + 339, + 352 + ], + "score": 0.92, + "content": "m = \\widetilde \\Omega ( R ^ { 8 } L ^ { 2 2 } )", + "type": "interline_equation", + "image_path": "827c73fb83de0d5510764e2e2c5d6af55ff844bf04d20a13cc278e54f0f21d65.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 272, + 336, + 339, + 352 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 357, + 507, + 392 + ], + "lines": [ + { + "bbox": [ + 104, + 356, + 506, + 371 + ], + "spans": [ + { + "bbox": [ + 104, + 357, + 164, + 371 + ], + "score": 1.0, + "content": "to ensure that", + "type": "text" + }, + { + "bbox": [ + 164, + 358, + 221, + 371 + ], + "score": 0.92, + "content": "\\epsilon _ { \\mathrm { a p p } } ( \\tau ) \\leqslant 1 / 8", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 357, + 252, + 371 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 252, + 356, + 271, + 371 + ], + "score": 0.91, + "content": "\\widetilde { \\Omega } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 357, + 494, + 371 + ], + "score": 1.0, + "content": "hides polylogarithmic dependencies on network depth", + "type": "text" + }, + { + "bbox": [ + 495, + 360, + 502, + 369 + ], + "score": 0.77, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 357, + 506, + 371 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 369, + 505, + 382 + ], + "spans": [ + { + "bbox": [ + 105, + 369, + 209, + 382 + ], + "score": 1.0, + "content": "NTRF function class size", + "type": "text" + }, + { + "bbox": [ + 209, + 371, + 218, + 380 + ], + "score": 0.81, + "content": "R", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 369, + 354, + 382 + ], + "score": 1.0, + "content": ", and failure probability parameter", + "type": "text" + }, + { + "bbox": [ + 355, + 370, + 361, + 380 + ], + "score": 0.72, + "content": "\\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 369, + 505, + 382 + ], + "score": 1.0, + "content": ". Then by Lemma 5.1, we have with", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 380, + 245, + 393 + ], + "spans": [ + { + "bbox": [ + 105, + 380, + 183, + 393 + ], + "score": 1.0, + "content": "probability at least", + "type": "text" + }, + { + "bbox": [ + 183, + 381, + 206, + 391 + ], + "score": 0.88, + "content": "1 - \\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 380, + 245, + 393 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16, + "bbox_fs": [ + 104, + 356, + 506, + 393 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 164, + 396, + 446, + 430 + ], + "lines": [ + { + "bbox": [ + 164, + 396, + 446, + 430 + ], + "spans": [ + { + "bbox": [ + 164, + 396, + 446, + 430 + ], + "score": 0.95, + "content": "\\| \\mathbf { W } ^ { ( 0 ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } - \\| \\mathbf { W } ^ { ( t ^ { \\prime } ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } \\geqslant \\eta \\sum _ { t = 0 } ^ { t ^ { \\prime } - 1 } L _ { S } ( \\mathbf { W } ^ { ( t ) } ) - 2 t ^ { \\prime } \\eta \\epsilon _ { \\mathrm { N T R F } }", + "type": "interline_equation", + "image_path": "3c85a7fc6ed2aac7fe077682e0a88b4da1bc24ffdb86f9ac56a1c95884283531.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 164, + 396, + 446, + 407.3333333333333 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 164, + 407.3333333333333, + 446, + 418.66666666666663 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 164, + 418.66666666666663, + 446, + 429.99999999999994 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 434, + 505, + 461 + ], + "lines": [ + { + "bbox": [ + 104, + 432, + 503, + 450 + ], + "spans": [ + { + "bbox": [ + 104, + 432, + 150, + 450 + ], + "score": 1.0, + "content": "as long as", + "type": "text" + }, + { + "bbox": [ + 150, + 434, + 288, + 448 + ], + "score": 0.9, + "content": "\\mathbf { W } ^ { ( 0 ) } , \\ldots , \\mathbf { W } ^ { ( t ^ { \\prime } - 1 ) } \\in \\mathcal { B } ( \\mathbf { W } ^ { ( 0 ) } , \\tau )", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 432, + 431, + 450 + ], + "score": 1.0, + "content": ". In the following proof we choose", + "type": "text" + }, + { + "bbox": [ + 432, + 435, + 503, + 448 + ], + "score": 0.92, + "content": "\\eta = \\Theta ( L ^ { - 1 } m ^ { - 1 } )", + "type": "inline_equation" + } + ], + "index": 21 + }, + { + "bbox": [ + 104, + 443, + 234, + 464 + ], + "spans": [ + { + "bbox": [ + 104, + 443, + 123, + 464 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 123, + 447, + 228, + 461 + ], + "score": 0.9, + "content": "T = \\lceil L R ^ { 2 } m ^ { - 1 } \\eta ^ { - 1 } \\epsilon _ { \\mathrm { N T R F } } ^ { - 1 } \\rceil", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 443, + 234, + 464 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5, + "bbox_fs": [ + 104, + 432, + 503, + 464 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 465, + 505, + 502 + ], + "lines": [ + { + "bbox": [ + 105, + 465, + 506, + 480 + ], + "spans": [ + { + "bbox": [ + 105, + 465, + 360, + 480 + ], + "score": 1.0, + "content": "We prove the theorem by two steps: 1) we show that all iterates", + "type": "text" + }, + { + "bbox": [ + 361, + 466, + 441, + 479 + ], + "score": 0.92, + "content": "\\{ \\mathbf { W } ^ { ( 0 ) } , \\cdots , \\mathbf { W } ^ { ( T ) } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 465, + 506, + 480 + ], + "score": 1.0, + "content": "will stay inside", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 104, + 477, + 504, + 494 + ], + "spans": [ + { + "bbox": [ + 104, + 477, + 151, + 494 + ], + "score": 1.0, + "content": "the region", + "type": "text" + }, + { + "bbox": [ + 151, + 478, + 200, + 491 + ], + "score": 0.96, + "content": "B ( \\mathbf { W } ^ { ( 0 ) } , \\tau )", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 477, + 475, + 494 + ], + "score": 1.0, + "content": "; and 2) we show that GD can find a neural network with at most", + "type": "text" + }, + { + "bbox": [ + 475, + 480, + 504, + 491 + ], + "score": 0.48, + "content": "3 \\epsilon _ { \\mathrm { N T R F } }", + "type": "inline_equation" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 490, + 238, + 503 + ], + "spans": [ + { + "bbox": [ + 106, + 490, + 186, + 503 + ], + "score": 1.0, + "content": "training loss within", + "type": "text" + }, + { + "bbox": [ + 186, + 492, + 194, + 500 + ], + "score": 0.83, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 490, + 238, + 503 + ], + "score": 1.0, + "content": "iterations.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24, + "bbox_fs": [ + 104, + 465, + 506, + 503 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 507, + 506, + 546 + ], + "lines": [ + { + "bbox": [ + 105, + 505, + 506, + 521 + ], + "spans": [ + { + "bbox": [ + 105, + 505, + 202, + 521 + ], + "score": 1.0, + "content": "All iterates stay inside", + "type": "text" + }, + { + "bbox": [ + 203, + 507, + 250, + 520 + ], + "score": 0.92, + "content": "B ( \\mathbf { W } ^ { ( 0 ) } , \\tau )", + "type": "inline_equation" + }, + { + "bbox": [ + 251, + 505, + 459, + 521 + ], + "score": 1.0, + "content": ". We prove this part by induction. Specifically, given", + "type": "text" + }, + { + "bbox": [ + 459, + 509, + 487, + 519 + ], + "score": 0.9, + "content": "t ^ { \\prime } \\leqslant T", + "type": "inline_equation" + }, + { + "bbox": [ + 488, + 505, + 506, + 521 + ], + "score": 1.0, + "content": ", we", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 104, + 518, + 503, + 535 + ], + "spans": [ + { + "bbox": [ + 104, + 518, + 200, + 535 + ], + "score": 1.0, + "content": "assume the hypothesis", + "type": "text" + }, + { + "bbox": [ + 200, + 520, + 280, + 533 + ], + "score": 0.88, + "content": "\\mathbf { W } ^ { ( t ) } \\in { \\cal B } ( \\mathbf { W } ^ { ( 0 ) } , \\tau )", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 518, + 333, + 535 + ], + "score": 1.0, + "content": "holds for all", + "type": "text" + }, + { + "bbox": [ + 334, + 521, + 358, + 532 + ], + "score": 0.9, + "content": "t < t ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 358, + 518, + 420, + 535 + ], + "score": 1.0, + "content": "and prove that", + "type": "text" + }, + { + "bbox": [ + 420, + 519, + 503, + 533 + ], + "score": 0.91, + "content": "\\mathbf { W } ^ { ( t ^ { \\prime } ) } \\in { \\cal B } ( \\mathbf { W } ^ { ( 0 ) } , \\tau )", + "type": "inline_equation" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 531, + 489, + 547 + ], + "spans": [ + { + "bbox": [ + 105, + 531, + 186, + 547 + ], + "score": 1.0, + "content": "First, it is clear that", + "type": "text" + }, + { + "bbox": [ + 187, + 533, + 268, + 546 + ], + "score": 0.89, + "content": "\\mathbf { W } ^ { ( 0 ) } \\in { \\mathcal { B } } ( \\mathbf { W } ^ { ( 0 ) } , \\tau )", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 531, + 398, + 547 + ], + "score": 1.0, + "content": ". Then by (A.2) and the fact that", + "type": "text" + }, + { + "bbox": [ + 398, + 533, + 450, + 546 + ], + "score": 0.92, + "content": "L _ { S } ( \\mathbf { W } ) \\geqslant 0", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 531, + 489, + 547 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27, + "bbox_fs": [ + 104, + 505, + 506, + 547 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 203, + 550, + 407, + 565 + ], + "lines": [ + { + "bbox": [ + 203, + 550, + 407, + 565 + ], + "spans": [ + { + "bbox": [ + 203, + 550, + 407, + 565 + ], + "score": 0.89, + "content": "\\| \\mathbf { W } ^ { ( t ^ { \\prime } ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } \\leqslant \\| \\mathbf { W } ^ { ( 0 ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } + 2 \\eta t ^ { \\prime } \\epsilon _ { \\mathrm { N T R F } }", + "type": "interline_equation", + "image_path": "14ebcfe68fb2a1208600a48edc85d7428cf522af1e6063d04e2909cd9bf33c94.jpg" + } + ] + } + ], + "index": 29, + "virtual_lines": [ + { + "bbox": [ + 203, + 550, + 407, + 565 + ], + "spans": [], + "index": 29 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 569, + 420, + 584 + ], + "lines": [ + { + "bbox": [ + 104, + 568, + 421, + 586 + ], + "spans": [ + { + "bbox": [ + 104, + 568, + 145, + 586 + ], + "score": 1.0, + "content": "Note that", + "type": "text" + }, + { + "bbox": [ + 146, + 570, + 251, + 584 + ], + "score": 0.91, + "content": "T = \\lceil L R ^ { 2 } m ^ { - 1 } \\eta ^ { - 1 } \\epsilon _ { \\mathrm { N T R F } } ^ { - 1 } \\rceil", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 568, + 269, + 586 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 269, + 570, + 380, + 583 + ], + "score": 0.91, + "content": "\\mathbf { W } ^ { \\ast } \\in { \\mathcal { B } } ( \\mathbf { W } ^ { ( 0 ) } , R \\cdot m ^ { - 1 / 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 568, + 421, + 586 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30, + "bbox_fs": [ + 104, + 568, + 421, + 586 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 189, + 587, + 419, + 621 + ], + "lines": [ + { + "bbox": [ + 189, + 587, + 419, + 621 + ], + "spans": [ + { + "bbox": [ + 189, + 587, + 419, + 621 + ], + "score": 0.92, + "content": "\\sum _ { l = 1 } ^ { L } \\| \\mathbf { W } _ { l } ^ { ( t ^ { \\prime } ) } - \\mathbf { W } _ { l } ^ { * } \\| _ { F } ^ { 2 } = \\| \\mathbf { W } ^ { ( t ^ { \\prime } ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } \\leqslant C L R ^ { 2 } m ^ { - 1 } ,", + "type": "interline_equation", + "image_path": "611a895b24ee2a34b182937742fd0ddd6d91d7a9ba602bd47adb40c2bb55e3b6.jpg" + } + ] + } + ], + "index": 31.5, + "virtual_lines": [ + { + "bbox": [ + 189, + 587, + 419, + 604.0 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 189, + 604.0, + 419, + 621.0 + ], + "spans": [], + "index": 32 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 624, + 504, + 648 + ], + "lines": [ + { + "bbox": [ + 105, + 622, + 506, + 638 + ], + "spans": [ + { + "bbox": [ + 105, + 622, + 132, + 638 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 624, + 160, + 635 + ], + "score": 0.9, + "content": "C \\geqslant 4", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 622, + 506, + 638 + ], + "score": 1.0, + "content": "is an absolute constant. Therefore, by triangle inequality, we further have the following", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 634, + 166, + 648 + ], + "spans": [ + { + "bbox": [ + 105, + 634, + 133, + 648 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 133, + 635, + 162, + 647 + ], + "score": 0.91, + "content": "l \\in [ L ]", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 634, + 166, + 648 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5, + "bbox_fs": [ + 105, + 622, + 506, + 648 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 186, + 649, + 424, + 702 + ], + "lines": [ + { + "bbox": [ + 186, + 649, + 424, + 702 + ], + "spans": [ + { + "bbox": [ + 186, + 649, + 424, + 702 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { \\| \\mathbf { W } _ { l } ^ { ( t ^ { \\prime } ) } - \\mathbf { W } _ { l } ^ { ( 0 ) } \\| _ { F } \\leqslant \\| \\mathbf { W } _ { l } ^ { ( t ^ { \\prime } ) } - \\mathbf { W } _ { l } ^ { * } \\| _ { F } + \\| \\mathbf { W } _ { l } ^ { ( 0 ) } - \\mathbf { W } _ { l } ^ { * } \\| _ { F } } \\\\ & { \\qquad \\leqslant \\sqrt { C L } R m ^ { - 1 / 2 } + R m ^ { - 1 / 2 } } \\\\ & { \\qquad \\leqslant 2 \\sqrt { C L } R m ^ { - 1 / 2 } . } \\end{array}", + "type": "interline_equation", + "image_path": "3194527084a01da78adebff7e3a9c6944952b985fe7562d68691638d1993d8e4.jpg" + } + ] + } + ], + "index": 36, + "virtual_lines": [ + { + "bbox": [ + 186, + 649, + 424, + 666.6666666666666 + ], + "spans": [], + "index": 35 + }, + { + "bbox": [ + 186, + 666.6666666666666, + 424, + 684.3333333333333 + ], + "spans": [], + "index": 36 + }, + { + "bbox": [ + 186, + 684.3333333333333, + 424, + 701.9999999999999 + ], + "spans": [], + "index": 37 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 706, + 504, + 733 + ], + "lines": [ + { + "bbox": [ + 104, + 703, + 504, + 725 + ], + "spans": [ + { + "bbox": [ + 104, + 703, + 215, + 725 + ], + "score": 1.0, + "content": "Therefore, it is clear that", + "type": "text" + }, + { + "bbox": [ + 215, + 707, + 394, + 722 + ], + "score": 0.94, + "content": "\\| \\mathbf { W } _ { l } ^ { ( t ^ { \\prime } ) } - \\mathbf { W } _ { l } ^ { ( 0 ) } \\| _ { F } \\leqslant 2 \\sqrt { C L } R m ^ { - 1 / 2 } \\leqslant \\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 395, + 703, + 497, + 725 + ], + "score": 1.0, + "content": "based on our choice of", + "type": "text" + }, + { + "bbox": [ + 497, + 712, + 504, + 720 + ], + "score": 0.74, + "content": "\\tau", + "type": "inline_equation" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 719, + 320, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 719, + 320, + 734 + ], + "score": 1.0, + "content": "previously. This completes the proof of the first part.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38.5, + "bbox_fs": [ + 104, + 703, + 504, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 82, + 305, + 95 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 306, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 306, + 96 + ], + "score": 1.0, + "content": "Convergence of gradient descent. (A.2) implies", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "interline_equation", + "bbox": [ + 157, + 101, + 453, + 135 + ], + "lines": [ + { + "bbox": [ + 157, + 101, + 453, + 135 + ], + "spans": [ + { + "bbox": [ + 157, + 101, + 453, + 135 + ], + "score": 0.93, + "content": "\\| \\mathbf { W } ^ { ( 0 ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } - \\| \\mathbf { W } ^ { ( T ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } \\geqslant \\eta \\bigg ( \\sum _ { t = 0 } ^ { T - 1 } L _ { S } ( \\mathbf { W } ^ { ( t ) } ) - 2 T \\epsilon _ { \\mathrm { N T R F } } \\bigg ) .", + "type": "interline_equation", + "image_path": "f177f9514052317e7f29c2baffb1fb995ce6b0eff7634445d3c08261e1c4d24f.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 157, + 101, + 453, + 112.33333333333333 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 157, + 112.33333333333333, + 453, + 123.66666666666666 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 157, + 123.66666666666666, + 453, + 135.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 141, + 273, + 153 + ], + "lines": [ + { + "bbox": [ + 106, + 139, + 273, + 155 + ], + "spans": [ + { + "bbox": [ + 106, + 139, + 156, + 155 + ], + "score": 1.0, + "content": "Dividing by", + "type": "text" + }, + { + "bbox": [ + 157, + 142, + 171, + 153 + ], + "score": 0.88, + "content": "\\eta T", + "type": "inline_equation" + }, + { + "bbox": [ + 171, + 139, + 273, + 155 + ], + "score": 1.0, + "content": "on the both sides, we get", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "interline_equation", + "bbox": [ + 138, + 160, + 471, + 193 + ], + "lines": [ + { + "bbox": [ + 138, + 160, + 471, + 193 + ], + "spans": [ + { + "bbox": [ + 138, + 160, + 471, + 193 + ], + "score": 0.89, + "content": "\\frac { 1 } { T } \\sum _ { t = 0 } ^ { T - 1 } L _ { S } ( \\mathbf { W } ^ { ( t ) } ) \\leqslant \\frac { \\| \\mathbf { W } ^ { ( 0 ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } } { \\eta T } + 2 \\epsilon _ { \\mathrm { N T R F } } \\leqslant \\frac { L R ^ { 2 } m ^ { - 1 } } { \\eta T } + 2 \\epsilon _ { \\mathrm { N T R F } } \\leqslant 3 \\epsilon _ { \\mathrm { N T R F } } ,", + "type": "interline_equation", + "image_path": "5561be09a92eb3a8c38a4011286f25e5c65811469261a5f7ec8efe76bda53b7f.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 138, + 160, + 471, + 171.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 138, + 171.0, + 471, + 182.0 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 138, + 182.0, + 471, + 193.0 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 201, + 506, + 250 + ], + "lines": [ + { + "bbox": [ + 104, + 199, + 507, + 215 + ], + "spans": [ + { + "bbox": [ + 104, + 199, + 312, + 215 + ], + "score": 1.0, + "content": "where the second inequality is by the fact that", + "type": "text" + }, + { + "bbox": [ + 312, + 201, + 434, + 214 + ], + "score": 0.9, + "content": "\\mathbf { W ^ { * } } ~ \\in ~ \\mathcal { B } ( \\mathbf { W } ^ { ( 0 ) } , R \\cdot m ^ { - 1 / 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 435, + 199, + 507, + 215 + ], + "score": 1.0, + "content": "and the last in-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 104, + 212, + 508, + 230 + ], + "spans": [ + { + "bbox": [ + 104, + 212, + 234, + 230 + ], + "score": 1.0, + "content": "equality is by our choices of", + "type": "text" + }, + { + "bbox": [ + 234, + 214, + 243, + 224 + ], + "score": 0.81, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 243, + 212, + 263, + 230 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 264, + 216, + 271, + 226 + ], + "score": 0.78, + "content": "\\eta", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 212, + 352, + 230 + ], + "score": 1.0, + "content": "which ensure that", + "type": "text" + }, + { + "bbox": [ + 353, + 213, + 446, + 226 + ], + "score": 0.89, + "content": "T \\eta \\ \\geqslant \\ L R ^ { 2 } m ^ { - 1 } \\epsilon _ { \\mathrm { N T R F } } ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 212, + 508, + 230 + ], + "score": 1.0, + "content": ". Notice that", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 225, + 507, + 241 + ], + "spans": [ + { + "bbox": [ + 106, + 225, + 293, + 239 + ], + "score": 0.92, + "content": "T = \\lceil L R ^ { 2 } m ^ { - 1 } \\eta ^ { - 1 } \\epsilon _ { \\mathrm { N T R F } } ^ { - 1 } \\rceil = \\mathcal { O } ( L ^ { 2 } R ^ { 2 } \\epsilon _ { \\mathrm { N T R F } } ^ { - 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 225, + 507, + 241 + ], + "score": 1.0, + "content": ". This completes the proof of the second part, and", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 237, + 506, + 250 + ], + "spans": [ + { + "bbox": [ + 105, + 237, + 244, + 250 + ], + "score": 1.0, + "content": "we are able to complete the proof.", + "type": "text" + }, + { + "bbox": [ + 494, + 237, + 506, + 249 + ], + "score": 0.999, + "content": "□", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 9.5 + }, + { + "type": "title", + "bbox": [ + 107, + 264, + 239, + 276 + ], + "lines": [ + { + "bbox": [ + 106, + 263, + 240, + 277 + ], + "spans": [ + { + "bbox": [ + 106, + 263, + 240, + 277 + ], + "score": 1.0, + "content": "A.2 PROOF OF THEOREM 3.4", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 106, + 285, + 504, + 309 + ], + "lines": [ + { + "bbox": [ + 106, + 286, + 506, + 299 + ], + "spans": [ + { + "bbox": [ + 106, + 286, + 506, + 299 + ], + "score": 1.0, + "content": "Following Cao and Gu (2020), we first introduce the definition of surrogate loss of the network,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 297, + 324, + 309 + ], + "spans": [ + { + "bbox": [ + 106, + 297, + 324, + 309 + ], + "score": 1.0, + "content": "which is defined by the derivative of the loss function.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5 + }, + { + "type": "text", + "bbox": [ + 105, + 312, + 504, + 336 + ], + "lines": [ + { + "bbox": [ + 105, + 311, + 506, + 327 + ], + "spans": [ + { + "bbox": [ + 105, + 311, + 342, + 327 + ], + "score": 1.0, + "content": "Definition A.2. We define the empirical surrogate error", + "type": "text" + }, + { + "bbox": [ + 342, + 313, + 374, + 325 + ], + "score": 0.92, + "content": "\\mathcal { E } _ { S } ( \\mathbf { W } )", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 311, + 506, + 327 + ], + "score": 1.0, + "content": "and population surrogate error", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 324, + 187, + 336 + ], + "spans": [ + { + "bbox": [ + 106, + 324, + 139, + 336 + ], + "score": 0.91, + "content": "\\mathcal { E } _ { \\mathcal { D } } ( \\mathbf { W } )", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 324, + 187, + 336 + ], + "score": 1.0, + "content": "as follows:", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5 + }, + { + "type": "interline_equation", + "bbox": [ + 145, + 343, + 466, + 375 + ], + "lines": [ + { + "bbox": [ + 145, + 343, + 466, + 375 + ], + "spans": [ + { + "bbox": [ + 145, + 343, + 466, + 375 + ], + "score": 0.92, + "content": "\\mathcal { E } _ { S } ( \\mathbf { W } ) : = - \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } \\ell ^ { \\prime } \\big [ y _ { i } \\cdot f _ { \\mathbf { W } } ( x _ { i } ) \\big ] , ~ \\mathcal { E } _ { \\mathcal { D } } ( \\mathbf { W } ) : = \\mathbb { E } _ { ( \\mathbf { x } , y ) \\sim \\mathcal { D } } \\big \\{ - \\ell ^ { \\prime } \\big [ y \\cdot f _ { \\mathbf { W } } ( \\mathbf { x } ) \\big ] \\big \\} .", + "type": "interline_equation", + "image_path": "54da982e36a2bff0c54a6d98a056b6e419e3c147eef38c2b4aaa2b631eaa9d17.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 145, + 343, + 466, + 353.6666666666667 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 145, + 353.6666666666667, + 466, + 364.33333333333337 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 145, + 364.33333333333337, + 466, + 375.00000000000006 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 387, + 504, + 411 + ], + "lines": [ + { + "bbox": [ + 105, + 386, + 506, + 402 + ], + "spans": [ + { + "bbox": [ + 105, + 386, + 384, + 402 + ], + "score": 1.0, + "content": "The following lemma gives uniform-convergence type of results for", + "type": "text" + }, + { + "bbox": [ + 385, + 388, + 416, + 400 + ], + "score": 0.92, + "content": "\\mathcal { E } _ { S } ( \\mathbf { W } )", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 386, + 506, + 402 + ], + "score": 1.0, + "content": "utilizing the fact that", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 107, + 398, + 285, + 412 + ], + "spans": [ + { + "bbox": [ + 107, + 399, + 132, + 411 + ], + "score": 0.9, + "content": "- \\ell ^ { \\prime } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 133, + 398, + 285, + 412 + ], + "score": 1.0, + "content": "is bounded and Lipschitz continuous.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5 + }, + { + "type": "text", + "bbox": [ + 106, + 414, + 503, + 440 + ], + "lines": [ + { + "bbox": [ + 104, + 412, + 506, + 432 + ], + "spans": [ + { + "bbox": [ + 104, + 412, + 196, + 432 + ], + "score": 1.0, + "content": "Lemma A.3. For any", + "type": "text" + }, + { + "bbox": [ + 196, + 415, + 232, + 428 + ], + "score": 0.92, + "content": "\\tilde { R } , \\delta > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 233, + 412, + 287, + 432 + ], + "score": 1.0, + "content": ", suppose that", + "type": "text" + }, + { + "bbox": [ + 288, + 415, + 414, + 429 + ], + "score": 0.91, + "content": "m = \\widetilde \\Omega ( L ^ { 1 2 } \\widetilde R ^ { 2 } ) \\cdot [ \\log ( 1 / \\delta ) ] ^ { 3 / 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 414, + 412, + 506, + 432 + ], + "score": 1.0, + "content": ". Then with probability", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 428, + 214, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 137, + 439 + ], + "score": 1.0, + "content": "at least", + "type": "text" + }, + { + "bbox": [ + 137, + 428, + 160, + 439 + ], + "score": 0.86, + "content": "1 - \\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 428, + 214, + 439 + ], + "score": 1.0, + "content": ", it holds that", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5 + }, + { + "type": "interline_equation", + "bbox": [ + 122, + 445, + 487, + 479 + ], + "lines": [ + { + "bbox": [ + 122, + 445, + 487, + 479 + ], + "spans": [ + { + "bbox": [ + 122, + 445, + 487, + 479 + ], + "score": 0.93, + "content": "\\left| \\mathcal E _ { \\mathcal D } ( \\mathbf W ) - \\mathcal E _ { S } ( \\mathbf W ) \\right| \\leqslant \\widetilde O \\left( \\operatorname* { m i n } \\left\\{ 4 ^ { L } L ^ { 3 / 2 } \\widetilde R \\sqrt { \\frac { m } { n } } , \\frac { L \\widetilde R } { \\sqrt { n } } + \\frac { L ^ { 3 } \\widetilde R ^ { 4 / 3 } } { m ^ { 1 / 6 } } \\right\\} \\right) + { \\mathcal O } \\left( \\sqrt { \\frac { \\log ( 1 / \\delta ) } { n } } \\right)", + "type": "interline_equation", + "image_path": "d9f2e16c475970354ccbc036faf05ec6ced8724b26891c387898f6bb39d87f8b.jpg" + } + ] + } + ], + "index": 25, + "virtual_lines": [ + { + "bbox": [ + 122, + 445, + 487, + 456.3333333333333 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 122, + 456.3333333333333, + 487, + 467.66666666666663 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 122, + 467.66666666666663, + 487, + 478.99999999999994 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 486, + 241, + 501 + ], + "lines": [ + { + "bbox": [ + 105, + 486, + 240, + 502 + ], + "spans": [ + { + "bbox": [ + 105, + 486, + 133, + 502 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 133, + 486, + 240, + 501 + ], + "score": 0.91, + "content": "\\mathbf { W } \\in { \\mathcal { B } } ( \\mathbf { W } ^ { ( 0 ) } , \\tilde { R } \\cdot m ^ { - 1 / 2 } )", + "type": "inline_equation" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 106, + 510, + 505, + 533 + ], + "lines": [ + { + "bbox": [ + 105, + 509, + 506, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 509, + 506, + 524 + ], + "score": 1.0, + "content": "We are now ready to prove Theorem 3.4, which combines the trajectory distance analysis in the proof", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 521, + 244, + 534 + ], + "spans": [ + { + "bbox": [ + 106, + 521, + 244, + 534 + ], + "score": 1.0, + "content": "of Theorem 3.3 with Lemma A.3.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5 + }, + { + "type": "text", + "bbox": [ + 106, + 551, + 506, + 587 + ], + "lines": [ + { + "bbox": [ + 105, + 551, + 505, + 564 + ], + "spans": [ + { + "bbox": [ + 105, + 551, + 505, + 564 + ], + "score": 1.0, + "content": "Proof of Theorem 3.4. With exactly the same proof as Theorem 3.3, by (A.3) and induction we have", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 107, + 561, + 506, + 578 + ], + "spans": [ + { + "bbox": [ + 107, + 563, + 291, + 577 + ], + "score": 0.88, + "content": "{ \\mathbf W } ^ { ( 0 ) } , { \\mathbf W } ^ { ( 1 ) } , \\ldots , { \\mathbf W } ^ { ( T ) } \\in \\mathcal { B } ( { \\mathbf W } ^ { ( 0 ) } , \\widetilde { R } m ^ { - 1 / 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 561, + 314, + 578 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 314, + 563, + 375, + 577 + ], + "score": 0.93, + "content": "\\tilde { R } = \\mathcal { O } ( \\sqrt { L } R )", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 561, + 506, + 578 + ], + "score": 1.0, + "content": ". Therefore by Lemma A.3, we", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 104, + 574, + 129, + 588 + ], + "spans": [ + { + "bbox": [ + 104, + 574, + 129, + 588 + ], + "score": 1.0, + "content": "have", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31 + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 591, + 505, + 626 + ], + "lines": [ + { + "bbox": [ + 111, + 591, + 505, + 626 + ], + "spans": [ + { + "bbox": [ + 111, + 591, + 505, + 626 + ], + "score": 0.9, + "content": "\\mathcal { E } _ { \\mathcal { D } } ( \\mathbf { W } ^ { ( t ) } ) - \\mathcal { E } _ { S } ( \\mathbf { W } ^ { ( t ) } ) | \\leqslant \\widetilde { \\mathcal { O } } \\left( \\operatorname* { m i n } \\left\\{ 4 ^ { L } L ^ { 2 } R \\sqrt { \\frac { m } { n } } , \\frac { L ^ { 3 / 2 } R } { \\sqrt { n } } + \\frac { L ^ { 1 1 / 3 } R ^ { 4 / 3 } } { m ^ { 1 / 6 } } \\right\\} \\right) + \\mathcal { O } \\left( \\sqrt { \\frac { \\log ( 1 / \\delta ) } { n } } \\right)", + "type": "interline_equation", + "image_path": "9b80653edea7cc66256355fbc0367f8dcc39df0fa49c66789801174d214a1690.jpg" + } + ] + } + ], + "index": 34, + "virtual_lines": [ + { + "bbox": [ + 111, + 591, + 505, + 602.6666666666666 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 111, + 602.6666666666666, + 505, + 614.3333333333333 + ], + "spans": [], + "index": 34 + }, + { + "bbox": [ + 111, + 614.3333333333333, + 505, + 625.9999999999999 + ], + "spans": [], + "index": 35 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 632, + 407, + 646 + ], + "lines": [ + { + "bbox": [ + 105, + 631, + 408, + 647 + ], + "spans": [ + { + "bbox": [ + 105, + 631, + 133, + 647 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 133, + 633, + 195, + 645 + ], + "score": 0.91, + "content": "t = 0 , 1 , \\ldots , T", + "type": "inline_equation" + }, + { + "bbox": [ + 196, + 631, + 274, + 647 + ], + "score": 1.0, + "content": ". Note that we have", + "type": "text" + }, + { + "bbox": [ + 274, + 633, + 359, + 646 + ], + "score": 0.93, + "content": "{ \\mathbb { 1 } \\left\\{ z < 0 \\right\\} \\leqslant - 2 \\ell ^ { \\prime } ( z ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 360, + 631, + 408, + 647 + ], + "score": 1.0, + "content": ". Therefore,", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 36 + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 651, + 514, + 703 + ], + "lines": [ + { + "bbox": [ + 111, + 651, + 514, + 703 + ], + "spans": [ + { + "bbox": [ + 111, + 651, + 514, + 703 + ], + "score": 0.9, + "content": "\\begin{array} { r l r } { { \\Sigma L _ { \\mathcal { D } } ^ { 0 - 1 } ( \\mathbf { W } ^ { ( t ) } ) \\leqslant 2 \\mathcal { E } _ { \\mathcal { D } } ( \\mathbf { W } ^ { ( t ) } ) } } \\\\ & { } & { \\leqslant 2 L _ { S } ( \\mathbf { W } ^ { ( t ) } ) + \\tilde { \\mathcal { O } } \\Bigg ( \\operatorname* { m i n } \\{ 4 ^ { L } L ^ { 2 } R \\sqrt { \\frac { m } { n } } , \\frac { L ^ { 3 / 2 } R } { \\sqrt { n } } + \\frac { L ^ { 1 1 / 3 } R ^ { 4 / 3 } } { m ^ { 1 / 6 } } \\} \\Bigg ) + \\mathcal { O } \\Bigg ( \\sqrt { \\frac { \\log ( 1 / \\delta ) } { n } } \\Bigg ) } \\end{array}", + "type": "interline_equation", + "image_path": "7104988fdc48d20d019ce699512147794750e8329d567bcfbe6424422b2bc2df.jpg" + } + ] + } + ], + "index": 38, + "virtual_lines": [ + { + "bbox": [ + 111, + 651, + 514, + 668.3333333333334 + ], + "spans": [], + "index": 37 + }, + { + "bbox": [ + 111, + 668.3333333333334, + 514, + 685.6666666666667 + ], + "spans": [], + "index": 38 + }, + { + "bbox": [ + 111, + 685.6666666666667, + 514, + 703.0000000000001 + ], + "spans": [], + "index": 39 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 709, + 509, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 708, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 120, + 722 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 121, + 710, + 182, + 721 + ], + "score": 0.91, + "content": "t = 0 , 1 , \\ldots , T", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 708, + 306, + 722 + ], + "score": 1.0, + "content": ", where the last inequality is by", + "type": "text" + }, + { + "bbox": [ + 307, + 709, + 384, + 722 + ], + "score": 0.91, + "content": "\\mathcal { E } _ { S } ( \\mathbf { W } ) \\leqslant L _ { S } ( \\mathbf { W } )", + "type": "inline_equation" + }, + { + "bbox": [ + 384, + 708, + 419, + 722 + ], + "score": 1.0, + "content": "because", + "type": "text" + }, + { + "bbox": [ + 419, + 709, + 477, + 722 + ], + "score": 0.93, + "content": "- \\ell ^ { \\prime } ( z ) \\leqslant \\ell ( z )", + "type": "inline_equation" + }, + { + "bbox": [ + 478, + 708, + 506, + 722 + ], + "score": 1.0, + "content": "for all", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 107, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 107, + 721, + 131, + 731 + ], + "score": 0.88, + "content": "z \\in R", + "type": "inline_equation" + }, + { + "bbox": [ + 132, + 720, + 230, + 733 + ], + "score": 1.0, + "content": ". This finishes the proof.", + "type": "text" + }, + { + "bbox": [ + 495, + 722, + 505, + 731 + ], + "score": 0.999, + "content": "□", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40.5 + } + ], + "page_idx": 11, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 26, + 293, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 761 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "12", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 82, + 305, + 95 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 306, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 306, + 96 + ], + "score": 1.0, + "content": "Convergence of gradient descent. (A.2) implies", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "interline_equation", + "bbox": [ + 157, + 101, + 453, + 135 + ], + "lines": [ + { + "bbox": [ + 157, + 101, + 453, + 135 + ], + "spans": [ + { + "bbox": [ + 157, + 101, + 453, + 135 + ], + "score": 0.93, + "content": "\\| \\mathbf { W } ^ { ( 0 ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } - \\| \\mathbf { W } ^ { ( T ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } \\geqslant \\eta \\bigg ( \\sum _ { t = 0 } ^ { T - 1 } L _ { S } ( \\mathbf { W } ^ { ( t ) } ) - 2 T \\epsilon _ { \\mathrm { N T R F } } \\bigg ) .", + "type": "interline_equation", + "image_path": "f177f9514052317e7f29c2baffb1fb995ce6b0eff7634445d3c08261e1c4d24f.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 157, + 101, + 453, + 112.33333333333333 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 157, + 112.33333333333333, + 453, + 123.66666666666666 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 157, + 123.66666666666666, + 453, + 135.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 141, + 273, + 153 + ], + "lines": [ + { + "bbox": [ + 106, + 139, + 273, + 155 + ], + "spans": [ + { + "bbox": [ + 106, + 139, + 156, + 155 + ], + "score": 1.0, + "content": "Dividing by", + "type": "text" + }, + { + "bbox": [ + 157, + 142, + 171, + 153 + ], + "score": 0.88, + "content": "\\eta T", + "type": "inline_equation" + }, + { + "bbox": [ + 171, + 139, + 273, + 155 + ], + "score": 1.0, + "content": "on the both sides, we get", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4, + "bbox_fs": [ + 106, + 139, + 273, + 155 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 138, + 160, + 471, + 193 + ], + "lines": [ + { + "bbox": [ + 138, + 160, + 471, + 193 + ], + "spans": [ + { + "bbox": [ + 138, + 160, + 471, + 193 + ], + "score": 0.89, + "content": "\\frac { 1 } { T } \\sum _ { t = 0 } ^ { T - 1 } L _ { S } ( \\mathbf { W } ^ { ( t ) } ) \\leqslant \\frac { \\| \\mathbf { W } ^ { ( 0 ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } } { \\eta T } + 2 \\epsilon _ { \\mathrm { N T R F } } \\leqslant \\frac { L R ^ { 2 } m ^ { - 1 } } { \\eta T } + 2 \\epsilon _ { \\mathrm { N T R F } } \\leqslant 3 \\epsilon _ { \\mathrm { N T R F } } ,", + "type": "interline_equation", + "image_path": "5561be09a92eb3a8c38a4011286f25e5c65811469261a5f7ec8efe76bda53b7f.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 138, + 160, + 471, + 171.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 138, + 171.0, + 471, + 182.0 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 138, + 182.0, + 471, + 193.0 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 201, + 506, + 250 + ], + "lines": [ + { + "bbox": [ + 104, + 199, + 507, + 215 + ], + "spans": [ + { + "bbox": [ + 104, + 199, + 312, + 215 + ], + "score": 1.0, + "content": "where the second inequality is by the fact that", + "type": "text" + }, + { + "bbox": [ + 312, + 201, + 434, + 214 + ], + "score": 0.9, + "content": "\\mathbf { W ^ { * } } ~ \\in ~ \\mathcal { B } ( \\mathbf { W } ^ { ( 0 ) } , R \\cdot m ^ { - 1 / 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 435, + 199, + 507, + 215 + ], + "score": 1.0, + "content": "and the last in-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 104, + 212, + 508, + 230 + ], + "spans": [ + { + "bbox": [ + 104, + 212, + 234, + 230 + ], + "score": 1.0, + "content": "equality is by our choices of", + "type": "text" + }, + { + "bbox": [ + 234, + 214, + 243, + 224 + ], + "score": 0.81, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 243, + 212, + 263, + 230 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 264, + 216, + 271, + 226 + ], + "score": 0.78, + "content": "\\eta", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 212, + 352, + 230 + ], + "score": 1.0, + "content": "which ensure that", + "type": "text" + }, + { + "bbox": [ + 353, + 213, + 446, + 226 + ], + "score": 0.89, + "content": "T \\eta \\ \\geqslant \\ L R ^ { 2 } m ^ { - 1 } \\epsilon _ { \\mathrm { N T R F } } ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 212, + 508, + 230 + ], + "score": 1.0, + "content": ". Notice that", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 225, + 507, + 241 + ], + "spans": [ + { + "bbox": [ + 106, + 225, + 293, + 239 + ], + "score": 0.92, + "content": "T = \\lceil L R ^ { 2 } m ^ { - 1 } \\eta ^ { - 1 } \\epsilon _ { \\mathrm { N T R F } } ^ { - 1 } \\rceil = \\mathcal { O } ( L ^ { 2 } R ^ { 2 } \\epsilon _ { \\mathrm { N T R F } } ^ { - 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 225, + 507, + 241 + ], + "score": 1.0, + "content": ". This completes the proof of the second part, and", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 237, + 506, + 250 + ], + "spans": [ + { + "bbox": [ + 105, + 237, + 244, + 250 + ], + "score": 1.0, + "content": "we are able to complete the proof.", + "type": "text" + }, + { + "bbox": [ + 494, + 237, + 506, + 249 + ], + "score": 0.999, + "content": "□", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 9.5, + "bbox_fs": [ + 104, + 199, + 508, + 250 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 264, + 239, + 276 + ], + "lines": [ + { + "bbox": [ + 106, + 263, + 240, + 277 + ], + "spans": [ + { + "bbox": [ + 106, + 263, + 240, + 277 + ], + "score": 1.0, + "content": "A.2 PROOF OF THEOREM 3.4", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 106, + 285, + 504, + 309 + ], + "lines": [ + { + "bbox": [ + 106, + 286, + 506, + 299 + ], + "spans": [ + { + "bbox": [ + 106, + 286, + 506, + 299 + ], + "score": 1.0, + "content": "Following Cao and Gu (2020), we first introduce the definition of surrogate loss of the network,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 297, + 324, + 309 + ], + "spans": [ + { + "bbox": [ + 106, + 297, + 324, + 309 + ], + "score": 1.0, + "content": "which is defined by the derivative of the loss function.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5, + "bbox_fs": [ + 106, + 286, + 506, + 309 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 312, + 504, + 336 + ], + "lines": [ + { + "bbox": [ + 105, + 311, + 506, + 327 + ], + "spans": [ + { + "bbox": [ + 105, + 311, + 342, + 327 + ], + "score": 1.0, + "content": "Definition A.2. We define the empirical surrogate error", + "type": "text" + }, + { + "bbox": [ + 342, + 313, + 374, + 325 + ], + "score": 0.92, + "content": "\\mathcal { E } _ { S } ( \\mathbf { W } )", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 311, + 506, + 327 + ], + "score": 1.0, + "content": "and population surrogate error", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 324, + 187, + 336 + ], + "spans": [ + { + "bbox": [ + 106, + 324, + 139, + 336 + ], + "score": 0.91, + "content": "\\mathcal { E } _ { \\mathcal { D } } ( \\mathbf { W } )", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 324, + 187, + 336 + ], + "score": 1.0, + "content": "as follows:", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5, + "bbox_fs": [ + 105, + 311, + 506, + 336 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 145, + 343, + 466, + 375 + ], + "lines": [ + { + "bbox": [ + 145, + 343, + 466, + 375 + ], + "spans": [ + { + "bbox": [ + 145, + 343, + 466, + 375 + ], + "score": 0.92, + "content": "\\mathcal { E } _ { S } ( \\mathbf { W } ) : = - \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } \\ell ^ { \\prime } \\big [ y _ { i } \\cdot f _ { \\mathbf { W } } ( x _ { i } ) \\big ] , ~ \\mathcal { E } _ { \\mathcal { D } } ( \\mathbf { W } ) : = \\mathbb { E } _ { ( \\mathbf { x } , y ) \\sim \\mathcal { D } } \\big \\{ - \\ell ^ { \\prime } \\big [ y \\cdot f _ { \\mathbf { W } } ( \\mathbf { x } ) \\big ] \\big \\} .", + "type": "interline_equation", + "image_path": "54da982e36a2bff0c54a6d98a056b6e419e3c147eef38c2b4aaa2b631eaa9d17.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 145, + 343, + 466, + 353.6666666666667 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 145, + 353.6666666666667, + 466, + 364.33333333333337 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 145, + 364.33333333333337, + 466, + 375.00000000000006 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 387, + 504, + 411 + ], + "lines": [ + { + "bbox": [ + 105, + 386, + 506, + 402 + ], + "spans": [ + { + "bbox": [ + 105, + 386, + 384, + 402 + ], + "score": 1.0, + "content": "The following lemma gives uniform-convergence type of results for", + "type": "text" + }, + { + "bbox": [ + 385, + 388, + 416, + 400 + ], + "score": 0.92, + "content": "\\mathcal { E } _ { S } ( \\mathbf { W } )", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 386, + 506, + 402 + ], + "score": 1.0, + "content": "utilizing the fact that", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 107, + 398, + 285, + 412 + ], + "spans": [ + { + "bbox": [ + 107, + 399, + 132, + 411 + ], + "score": 0.9, + "content": "- \\ell ^ { \\prime } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 133, + 398, + 285, + 412 + ], + "score": 1.0, + "content": "is bounded and Lipschitz continuous.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5, + "bbox_fs": [ + 105, + 386, + 506, + 412 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 414, + 503, + 440 + ], + "lines": [ + { + "bbox": [ + 104, + 412, + 506, + 432 + ], + "spans": [ + { + "bbox": [ + 104, + 412, + 196, + 432 + ], + "score": 1.0, + "content": "Lemma A.3. For any", + "type": "text" + }, + { + "bbox": [ + 196, + 415, + 232, + 428 + ], + "score": 0.92, + "content": "\\tilde { R } , \\delta > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 233, + 412, + 287, + 432 + ], + "score": 1.0, + "content": ", suppose that", + "type": "text" + }, + { + "bbox": [ + 288, + 415, + 414, + 429 + ], + "score": 0.91, + "content": "m = \\widetilde \\Omega ( L ^ { 1 2 } \\widetilde R ^ { 2 } ) \\cdot [ \\log ( 1 / \\delta ) ] ^ { 3 / 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 414, + 412, + 506, + 432 + ], + "score": 1.0, + "content": ". Then with probability", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 428, + 214, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 137, + 439 + ], + "score": 1.0, + "content": "at least", + "type": "text" + }, + { + "bbox": [ + 137, + 428, + 160, + 439 + ], + "score": 0.86, + "content": "1 - \\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 428, + 214, + 439 + ], + "score": 1.0, + "content": ", it holds that", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5, + "bbox_fs": [ + 104, + 412, + 506, + 439 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 122, + 445, + 487, + 479 + ], + "lines": [ + { + "bbox": [ + 122, + 445, + 487, + 479 + ], + "spans": [ + { + "bbox": [ + 122, + 445, + 487, + 479 + ], + "score": 0.93, + "content": "\\left| \\mathcal E _ { \\mathcal D } ( \\mathbf W ) - \\mathcal E _ { S } ( \\mathbf W ) \\right| \\leqslant \\widetilde O \\left( \\operatorname* { m i n } \\left\\{ 4 ^ { L } L ^ { 3 / 2 } \\widetilde R \\sqrt { \\frac { m } { n } } , \\frac { L \\widetilde R } { \\sqrt { n } } + \\frac { L ^ { 3 } \\widetilde R ^ { 4 / 3 } } { m ^ { 1 / 6 } } \\right\\} \\right) + { \\mathcal O } \\left( \\sqrt { \\frac { \\log ( 1 / \\delta ) } { n } } \\right)", + "type": "interline_equation", + "image_path": "d9f2e16c475970354ccbc036faf05ec6ced8724b26891c387898f6bb39d87f8b.jpg" + } + ] + } + ], + "index": 25, + "virtual_lines": [ + { + "bbox": [ + 122, + 445, + 487, + 456.3333333333333 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 122, + 456.3333333333333, + 487, + 467.66666666666663 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 122, + 467.66666666666663, + 487, + 478.99999999999994 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 486, + 241, + 501 + ], + "lines": [ + { + "bbox": [ + 105, + 486, + 240, + 502 + ], + "spans": [ + { + "bbox": [ + 105, + 486, + 133, + 502 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 133, + 486, + 240, + 501 + ], + "score": 0.91, + "content": "\\mathbf { W } \\in { \\mathcal { B } } ( \\mathbf { W } ^ { ( 0 ) } , \\tilde { R } \\cdot m ^ { - 1 / 2 } )", + "type": "inline_equation" + } + ], + "index": 27 + } + ], + "index": 27, + "bbox_fs": [ + 105, + 486, + 240, + 502 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 510, + 505, + 533 + ], + "lines": [ + { + "bbox": [ + 105, + 509, + 506, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 509, + 506, + 524 + ], + "score": 1.0, + "content": "We are now ready to prove Theorem 3.4, which combines the trajectory distance analysis in the proof", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 521, + 244, + 534 + ], + "spans": [ + { + "bbox": [ + 106, + 521, + 244, + 534 + ], + "score": 1.0, + "content": "of Theorem 3.3 with Lemma A.3.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5, + "bbox_fs": [ + 105, + 509, + 506, + 534 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 551, + 506, + 587 + ], + "lines": [ + { + "bbox": [ + 105, + 551, + 505, + 564 + ], + "spans": [ + { + "bbox": [ + 105, + 551, + 505, + 564 + ], + "score": 1.0, + "content": "Proof of Theorem 3.4. With exactly the same proof as Theorem 3.3, by (A.3) and induction we have", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 107, + 561, + 506, + 578 + ], + "spans": [ + { + "bbox": [ + 107, + 563, + 291, + 577 + ], + "score": 0.88, + "content": "{ \\mathbf W } ^ { ( 0 ) } , { \\mathbf W } ^ { ( 1 ) } , \\ldots , { \\mathbf W } ^ { ( T ) } \\in \\mathcal { B } ( { \\mathbf W } ^ { ( 0 ) } , \\widetilde { R } m ^ { - 1 / 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 561, + 314, + 578 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 314, + 563, + 375, + 577 + ], + "score": 0.93, + "content": "\\tilde { R } = \\mathcal { O } ( \\sqrt { L } R )", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 561, + 506, + 578 + ], + "score": 1.0, + "content": ". Therefore by Lemma A.3, we", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 104, + 574, + 129, + 588 + ], + "spans": [ + { + "bbox": [ + 104, + 574, + 129, + 588 + ], + "score": 1.0, + "content": "have", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31, + "bbox_fs": [ + 104, + 551, + 506, + 588 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 591, + 505, + 626 + ], + "lines": [ + { + "bbox": [ + 111, + 591, + 505, + 626 + ], + "spans": [ + { + "bbox": [ + 111, + 591, + 505, + 626 + ], + "score": 0.9, + "content": "\\mathcal { E } _ { \\mathcal { D } } ( \\mathbf { W } ^ { ( t ) } ) - \\mathcal { E } _ { S } ( \\mathbf { W } ^ { ( t ) } ) | \\leqslant \\widetilde { \\mathcal { O } } \\left( \\operatorname* { m i n } \\left\\{ 4 ^ { L } L ^ { 2 } R \\sqrt { \\frac { m } { n } } , \\frac { L ^ { 3 / 2 } R } { \\sqrt { n } } + \\frac { L ^ { 1 1 / 3 } R ^ { 4 / 3 } } { m ^ { 1 / 6 } } \\right\\} \\right) + \\mathcal { O } \\left( \\sqrt { \\frac { \\log ( 1 / \\delta ) } { n } } \\right)", + "type": "interline_equation", + "image_path": "9b80653edea7cc66256355fbc0367f8dcc39df0fa49c66789801174d214a1690.jpg" + } + ] + } + ], + "index": 34, + "virtual_lines": [ + { + "bbox": [ + 111, + 591, + 505, + 602.6666666666666 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 111, + 602.6666666666666, + 505, + 614.3333333333333 + ], + "spans": [], + "index": 34 + }, + { + "bbox": [ + 111, + 614.3333333333333, + 505, + 625.9999999999999 + ], + "spans": [], + "index": 35 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 632, + 407, + 646 + ], + "lines": [ + { + "bbox": [ + 105, + 631, + 408, + 647 + ], + "spans": [ + { + "bbox": [ + 105, + 631, + 133, + 647 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 133, + 633, + 195, + 645 + ], + "score": 0.91, + "content": "t = 0 , 1 , \\ldots , T", + "type": "inline_equation" + }, + { + "bbox": [ + 196, + 631, + 274, + 647 + ], + "score": 1.0, + "content": ". Note that we have", + "type": "text" + }, + { + "bbox": [ + 274, + 633, + 359, + 646 + ], + "score": 0.93, + "content": "{ \\mathbb { 1 } \\left\\{ z < 0 \\right\\} \\leqslant - 2 \\ell ^ { \\prime } ( z ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 360, + 631, + 408, + 647 + ], + "score": 1.0, + "content": ". Therefore,", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 36, + "bbox_fs": [ + 105, + 631, + 408, + 647 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 651, + 514, + 703 + ], + "lines": [ + { + "bbox": [ + 111, + 651, + 514, + 703 + ], + "spans": [ + { + "bbox": [ + 111, + 651, + 514, + 703 + ], + "score": 0.9, + "content": "\\begin{array} { r l r } { { \\Sigma L _ { \\mathcal { D } } ^ { 0 - 1 } ( \\mathbf { W } ^ { ( t ) } ) \\leqslant 2 \\mathcal { E } _ { \\mathcal { D } } ( \\mathbf { W } ^ { ( t ) } ) } } \\\\ & { } & { \\leqslant 2 L _ { S } ( \\mathbf { W } ^ { ( t ) } ) + \\tilde { \\mathcal { O } } \\Bigg ( \\operatorname* { m i n } \\{ 4 ^ { L } L ^ { 2 } R \\sqrt { \\frac { m } { n } } , \\frac { L ^ { 3 / 2 } R } { \\sqrt { n } } + \\frac { L ^ { 1 1 / 3 } R ^ { 4 / 3 } } { m ^ { 1 / 6 } } \\} \\Bigg ) + \\mathcal { O } \\Bigg ( \\sqrt { \\frac { \\log ( 1 / \\delta ) } { n } } \\Bigg ) } \\end{array}", + "type": "interline_equation", + "image_path": "7104988fdc48d20d019ce699512147794750e8329d567bcfbe6424422b2bc2df.jpg" + } + ] + } + ], + "index": 38, + "virtual_lines": [ + { + "bbox": [ + 111, + 651, + 514, + 668.3333333333334 + ], + "spans": [], + "index": 37 + }, + { + "bbox": [ + 111, + 668.3333333333334, + 514, + 685.6666666666667 + ], + "spans": [], + "index": 38 + }, + { + "bbox": [ + 111, + 685.6666666666667, + 514, + 703.0000000000001 + ], + "spans": [], + "index": 39 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 709, + 509, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 708, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 120, + 722 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 121, + 710, + 182, + 721 + ], + "score": 0.91, + "content": "t = 0 , 1 , \\ldots , T", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 708, + 306, + 722 + ], + "score": 1.0, + "content": ", where the last inequality is by", + "type": "text" + }, + { + "bbox": [ + 307, + 709, + 384, + 722 + ], + "score": 0.91, + "content": "\\mathcal { E } _ { S } ( \\mathbf { W } ) \\leqslant L _ { S } ( \\mathbf { W } )", + "type": "inline_equation" + }, + { + "bbox": [ + 384, + 708, + 419, + 722 + ], + "score": 1.0, + "content": "because", + "type": "text" + }, + { + "bbox": [ + 419, + 709, + 477, + 722 + ], + "score": 0.93, + "content": "- \\ell ^ { \\prime } ( z ) \\leqslant \\ell ( z )", + "type": "inline_equation" + }, + { + "bbox": [ + 478, + 708, + 506, + 722 + ], + "score": 1.0, + "content": "for all", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 107, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 107, + 721, + 131, + 731 + ], + "score": 0.88, + "content": "z \\in R", + "type": "inline_equation" + }, + { + "bbox": [ + 132, + 720, + 230, + 733 + ], + "score": 1.0, + "content": ". This finishes the proof.", + "type": "text" + }, + { + "bbox": [ + 495, + 722, + 505, + 731 + ], + "score": 0.999, + "content": "□", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40.5, + "bbox_fs": [ + 105, + 708, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 82, + 239, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 240, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 240, + 95 + ], + "score": 1.0, + "content": "A.3 PROOF OF THEOREM 3.5", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 102, + 506, + 138 + ], + "lines": [ + { + "bbox": [ + 105, + 102, + 506, + 116 + ], + "spans": [ + { + "bbox": [ + 105, + 102, + 506, + 116 + ], + "score": 1.0, + "content": "In this section we provide the full proof of Theorem 3.5. We first give the following result, which is", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 104, + 113, + 506, + 129 + ], + "spans": [ + { + "bbox": [ + 104, + 113, + 327, + 129 + ], + "score": 1.0, + "content": "the counterpart of Lemma 5.1 for SGD. Again we pick", + "type": "text" + }, + { + "bbox": [ + 327, + 114, + 432, + 127 + ], + "score": 0.91, + "content": "\\mathbf { W } ^ { * } \\in { \\cal B } ( \\mathbf { W } ^ { ( 0 ) } , R m ^ { - 1 / 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 433, + 113, + 506, + 129 + ], + "score": 1.0, + "content": "such that the loss", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 124, + 370, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 124, + 247, + 140 + ], + "score": 1.0, + "content": "of the corresponding NTRF model", + "type": "text" + }, + { + "bbox": [ + 247, + 126, + 304, + 139 + ], + "score": 0.92, + "content": "F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } * } ( \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 124, + 370, + 140 + ], + "score": 1.0, + "content": "achieves \u000fNTRF.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 105, + 141, + 504, + 166 + ], + "lines": [ + { + "bbox": [ + 104, + 140, + 504, + 158 + ], + "spans": [ + { + "bbox": [ + 104, + 140, + 178, + 158 + ], + "score": 1.0, + "content": "Lemma A.4. Set", + "type": "text" + }, + { + "bbox": [ + 179, + 142, + 266, + 155 + ], + "score": 0.92, + "content": "\\eta = \\mathcal { O } ( L ^ { - 1 } M ( \\tau ) ^ { - 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 267, + 140, + 324, + 158 + ], + "score": 1.0, + "content": ". Suppose that", + "type": "text" + }, + { + "bbox": [ + 324, + 142, + 401, + 155 + ], + "score": 0.92, + "content": "\\mathbf { W } ^ { * } \\in { \\cal B } ( \\mathbf { W } ^ { ( 0 ) } , \\tau )", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 140, + 418, + 158 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 419, + 142, + 504, + 155 + ], + "score": 0.92, + "content": "\\mathbf { W } ^ { ( n ^ { \\prime } ) } \\in { \\cal B } ( \\mathbf { W } ^ { ( 0 ) } , \\tau )", + "type": "inline_equation" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 154, + 275, + 166 + ], + "spans": [ + { + "bbox": [ + 106, + 154, + 133, + 166 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 133, + 155, + 198, + 165 + ], + "score": 0.91, + "content": "0 \\leqslant n ^ { \\prime } \\leqslant n - 1", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 154, + 275, + 166 + ], + "score": 1.0, + "content": ". Then it holds that", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5 + }, + { + "type": "interline_equation", + "bbox": [ + 126, + 168, + 483, + 203 + ], + "lines": [ + { + "bbox": [ + 126, + 168, + 483, + 203 + ], + "spans": [ + { + "bbox": [ + 126, + 168, + 483, + 203 + ], + "score": 0.93, + "content": "\\lVert \\mathbf { W } ^ { ( 0 ) } - \\mathbf { W } ^ { * } \\rVert _ { F } ^ { 2 } - \\lVert \\mathbf { W } ^ { ( n ^ { \\prime } ) } - \\mathbf { W } ^ { * } \\rVert _ { F } ^ { 2 } \\geqslant \\Big ( \\frac 3 2 - 4 \\epsilon _ { \\mathrm { a p p } } ( \\tau ) \\Big ) \\eta \\sum _ { i = 1 } ^ { n ^ { \\prime } } L _ { i } ( \\mathbf { W } ^ { ( i - 1 ) } ) - 2 n \\eta \\epsilon _ { \\mathrm { N T R } } .", + "type": "interline_equation", + "image_path": "7b6b42cf19fa2b8fd5c2128ea15b131fba310a5055ff7fa3edc7bdb57021ceec.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 126, + 168, + 483, + 179.66666666666666 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 126, + 179.66666666666666, + 483, + 191.33333333333331 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 126, + 191.33333333333331, + 483, + 202.99999999999997 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 211, + 507, + 291 + ], + "lines": [ + { + "bbox": [ + 105, + 212, + 505, + 226 + ], + "spans": [ + { + "bbox": [ + 105, + 212, + 231, + 226 + ], + "score": 1.0, + "content": "We introduce a surrogate loss", + "type": "text" + }, + { + "bbox": [ + 232, + 212, + 347, + 225 + ], + "score": 0.94, + "content": "\\mathcal { E } _ { i } ( \\mathbf { W } ) = - \\ell ^ { \\prime } [ y _ { i } \\cdot f _ { \\mathbf { W } } ( \\pmb { x } _ { i } ) ]", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 212, + 459, + 226 + ], + "score": 1.0, + "content": "and its population version", + "type": "text" + }, + { + "bbox": [ + 459, + 212, + 505, + 224 + ], + "score": 0.89, + "content": "\\mathcal { E } _ { \\mathcal { D } } ( \\mathbf { W } ) =", + "type": "inline_equation" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 222, + 507, + 239 + ], + "spans": [ + { + "bbox": [ + 106, + 223, + 216, + 236 + ], + "score": 0.92, + "content": "\\mathbb { E } _ { ( \\mathbf { x } , \\mathbf { y } ) \\sim \\mathcal { D } } [ - \\ell ^ { \\prime } [ y \\cdot f _ { \\mathbf { W } } \\mathbf { \\bar { ( } } \\mathbf { x ) } ] ]", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 222, + 507, + 239 + ], + "score": 1.0, + "content": ", which have been used in (Ji and Telgarsky, 2018; Cao and Gu, 2019;", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 104, + 233, + 507, + 248 + ], + "spans": [ + { + "bbox": [ + 104, + 233, + 507, + 248 + ], + "score": 1.0, + "content": "Ji and Telgarsky, 2020). Our proof is based on the application of Lemma A.4 and an online-to-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 245, + 506, + 258 + ], + "spans": [ + { + "bbox": [ + 105, + 245, + 506, + 258 + ], + "score": 1.0, + "content": "batch conversion argument (Cesa-Bianchi et al., 2004; Cao and Gu, 2019; Ji and Telgarsky, 2020).", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 104, + 255, + 505, + 270 + ], + "spans": [ + { + "bbox": [ + 104, + 255, + 231, + 270 + ], + "score": 1.0, + "content": "We introduce a surrogate loss", + "type": "text" + }, + { + "bbox": [ + 232, + 256, + 347, + 268 + ], + "score": 0.91, + "content": "\\mathcal { E } _ { i } ( \\mathbf { W } ) = - \\ell ^ { \\prime } [ y _ { i } \\cdot f _ { \\mathbf { W } } ( \\pmb { x } _ { i } ) ]", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 255, + 459, + 270 + ], + "score": 1.0, + "content": "and its population version", + "type": "text" + }, + { + "bbox": [ + 459, + 256, + 505, + 268 + ], + "score": 0.89, + "content": "\\mathcal { E } _ { \\mathcal { D } } ( \\mathbf { W } ) =", + "type": "inline_equation" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 265, + 507, + 282 + ], + "spans": [ + { + "bbox": [ + 106, + 267, + 217, + 280 + ], + "score": 0.91, + "content": "\\mathbb { E } _ { ( \\mathbf { x } , \\boldsymbol { y } ) \\sim \\mathcal { D } } [ - \\ell ^ { \\prime } ( \\boldsymbol { y } \\cdot f _ { \\mathbf { W } } \\mathbf { \\bar { ( } } \\mathbf { x ) } ) ]", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 265, + 507, + 282 + ], + "score": 1.0, + "content": ", which have been used in (Ji and Telgarsky, 2018; Cao and Gu, 2019;", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 277, + 313, + 291 + ], + "spans": [ + { + "bbox": [ + 105, + 277, + 313, + 291 + ], + "score": 1.0, + "content": "Nitanda and Suzuki, 2019; Ji and Telgarsky, 2020).", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 106, + 301, + 342, + 313 + ], + "lines": [ + { + "bbox": [ + 106, + 300, + 342, + 315 + ], + "spans": [ + { + "bbox": [ + 106, + 300, + 244, + 315 + ], + "score": 1.0, + "content": "Proof of Theorem 3.5. Recall that", + "type": "text" + }, + { + "bbox": [ + 244, + 302, + 262, + 312 + ], + "score": 0.86, + "content": "\\mathbf { W } ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 263, + 300, + 342, + 315 + ], + "score": 1.0, + "content": "is chosen such that", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "interline_equation", + "bbox": [ + 233, + 317, + 378, + 349 + ], + "lines": [ + { + "bbox": [ + 233, + 317, + 378, + 349 + ], + "spans": [ + { + "bbox": [ + 233, + 317, + 378, + 349 + ], + "score": 0.94, + "content": "\\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } \\ell \\big ( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ^ { * } } ( \\mathbf { x } _ { i } ) \\big ) = \\epsilon _ { \\mathrm { N T R F } }", + "type": "interline_equation", + "image_path": "c577bc7606c76f25790aaa68d8177544aa0c57e9f822382b3f510142222c05d9.jpg" + } + ] + } + ], + "index": 17, + "virtual_lines": [ + { + "bbox": [ + 233, + 317, + 378, + 349 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 352, + 505, + 406 + ], + "lines": [ + { + "bbox": [ + 105, + 351, + 506, + 367 + ], + "spans": [ + { + "bbox": [ + 105, + 351, + 124, + 367 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 352, + 231, + 366 + ], + "score": 0.93, + "content": "\\mathbf { W } ^ { * } \\in \\mathcal { B } ( \\mathbf { W } ^ { ( 0 ) } , R m ^ { - 1 / 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 351, + 411, + 367 + ], + "score": 1.0, + "content": ". To apply Lemma A.4, we need the region", + "type": "text" + }, + { + "bbox": [ + 412, + 353, + 460, + 366 + ], + "score": 0.93, + "content": "B ( \\mathbf { W } ^ { ( 0 ) } , \\tau )", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 351, + 506, + 367 + ], + "score": 1.0, + "content": "to include", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 104, + 364, + 506, + 381 + ], + "spans": [ + { + "bbox": [ + 104, + 364, + 128, + 381 + ], + "score": 1.0, + "content": "both", + "type": "text" + }, + { + "bbox": [ + 128, + 367, + 146, + 378 + ], + "score": 0.84, + "content": "\\mathbf { W } ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 147, + 364, + 167, + 381 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 167, + 366, + 229, + 380 + ], + "score": 0.91, + "content": "\\{ \\mathbf { W } ^ { ( t ) } \\} _ { t = 0 , \\ldots , t ^ { \\prime } }", + "type": "inline_equation" + }, + { + "bbox": [ + 229, + 364, + 338, + 381 + ], + "score": 1.0, + "content": ". This motivates us to set", + "type": "text" + }, + { + "bbox": [ + 338, + 365, + 429, + 379 + ], + "score": 0.93, + "content": "\\tau = \\tilde { \\mathcal { O } } ( L ^ { 1 / 2 } m ^ { - 1 / 2 } R )", + "type": "inline_equation" + }, + { + "bbox": [ + 430, + 364, + 506, + 381 + ], + "score": 1.0, + "content": ", which is slightly", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 378, + 505, + 395 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 153, + 395 + ], + "score": 1.0, + "content": "larger than", + "type": "text" + }, + { + "bbox": [ + 153, + 380, + 189, + 391 + ], + "score": 0.9, + "content": "m ^ { - 1 / 2 } R", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 378, + 273, + 395 + ], + "score": 1.0, + "content": ". With this choice of", + "type": "text" + }, + { + "bbox": [ + 274, + 383, + 281, + 390 + ], + "score": 0.74, + "content": "\\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 378, + 385, + 395 + ], + "score": 1.0, + "content": ", by Lemma A.1 we have", + "type": "text" + }, + { + "bbox": [ + 385, + 379, + 505, + 393 + ], + "score": 0.93, + "content": "\\epsilon _ { \\mathrm { a p p } } ( \\tau ) = \\widetilde { \\mathcal { O } } ( \\tau ^ { 4 / 3 } m ^ { 1 / 2 } L ^ { 3 } ) =", + "type": "inline_equation" + } + ], + "index": 20 + }, + { + "bbox": [ + 107, + 390, + 286, + 408 + ], + "spans": [ + { + "bbox": [ + 107, + 392, + 191, + 406 + ], + "score": 0.91, + "content": "\\widetilde { \\mathcal { O } } ( R ^ { 4 / 3 } L ^ { 1 1 / 3 } m ^ { - 1 / 6 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 390, + 286, + 408 + ], + "score": 1.0, + "content": ". Therefore, we can set", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 19.5 + }, + { + "type": "interline_equation", + "bbox": [ + 272, + 410, + 339, + 425 + ], + "lines": [ + { + "bbox": [ + 272, + 410, + 339, + 425 + ], + "spans": [ + { + "bbox": [ + 272, + 410, + 339, + 425 + ], + "score": 0.91, + "content": "m = \\widetilde \\Omega ( R ^ { 8 } L ^ { 2 2 } )", + "type": "interline_equation", + "image_path": "5118333fd1ea31506fc8d7c19fa3b850062c45de73c4c0502e6af909a9d0383a.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 272, + 410, + 339, + 425 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 431, + 505, + 455 + ], + "lines": [ + { + "bbox": [ + 105, + 430, + 507, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 431, + 164, + 446 + ], + "score": 1.0, + "content": "to ensure that", + "type": "text" + }, + { + "bbox": [ + 164, + 432, + 221, + 444 + ], + "score": 0.92, + "content": "\\epsilon _ { \\mathrm { a p p } } ( \\tau ) \\leqslant 1 / 8", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 431, + 252, + 446 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 252, + 430, + 271, + 444 + ], + "score": 0.92, + "content": "\\widetilde { \\Omega } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 431, + 494, + 446 + ], + "score": 1.0, + "content": "hides polylogarithmic dependencies on network depth", + "type": "text" + }, + { + "bbox": [ + 495, + 433, + 502, + 442 + ], + "score": 0.79, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 431, + 507, + 446 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 443, + 366, + 456 + ], + "spans": [ + { + "bbox": [ + 106, + 443, + 210, + 456 + ], + "score": 1.0, + "content": "NTRF function class size", + "type": "text" + }, + { + "bbox": [ + 210, + 444, + 219, + 453 + ], + "score": 0.79, + "content": "R", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 443, + 356, + 456 + ], + "score": 1.0, + "content": ", and failure probability parameter", + "type": "text" + }, + { + "bbox": [ + 357, + 444, + 362, + 453 + ], + "score": 0.81, + "content": "\\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 443, + 366, + 456 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5 + }, + { + "type": "text", + "bbox": [ + 106, + 460, + 353, + 472 + ], + "lines": [ + { + "bbox": [ + 105, + 459, + 353, + 473 + ], + "spans": [ + { + "bbox": [ + 105, + 459, + 326, + 473 + ], + "score": 1.0, + "content": "Then by Lemma A.4, we have with probability at least", + "type": "text" + }, + { + "bbox": [ + 326, + 460, + 349, + 471 + ], + "score": 0.86, + "content": "1 - \\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 459, + 353, + 473 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "interline_equation", + "bbox": [ + 161, + 476, + 450, + 510 + ], + "lines": [ + { + "bbox": [ + 161, + 476, + 450, + 510 + ], + "spans": [ + { + "bbox": [ + 161, + 476, + 450, + 510 + ], + "score": 0.93, + "content": "\\| \\mathbf { W } ^ { ( 0 ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } - \\| \\mathbf { W } ^ { ( n ^ { \\prime } ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } \\geqslant \\eta \\sum _ { i = 1 } ^ { n ^ { \\prime } } L _ { i } ( \\mathbf { W } ^ { ( i - 1 ) } ) - 2 n \\eta \\epsilon _ { \\mathrm { N T R F } }", + "type": "interline_equation", + "image_path": "1d108029139195faaa71383dc09e9bac9fff841c36e179ffa1bee56bf98418db.jpg" + } + ] + } + ], + "index": 27, + "virtual_lines": [ + { + "bbox": [ + 161, + 476, + 450, + 487.3333333333333 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 161, + 487.3333333333333, + 450, + 498.66666666666663 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 161, + 498.66666666666663, + 450, + 509.99999999999994 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 513, + 292, + 528 + ], + "lines": [ + { + "bbox": [ + 104, + 511, + 293, + 531 + ], + "spans": [ + { + "bbox": [ + 104, + 511, + 148, + 531 + ], + "score": 1.0, + "content": "as long as", + "type": "text" + }, + { + "bbox": [ + 149, + 514, + 289, + 528 + ], + "score": 0.9, + "content": "\\mathbf { W } ^ { ( 0 ) } , \\ldots , \\mathbf { W } ^ { ( n ^ { \\prime } - 1 ) } \\in \\mathcal { B } ( \\mathbf { W } ^ { ( 0 ) } , \\tau )", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 511, + 293, + 531 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 108, + 533, + 504, + 556 + ], + "lines": [ + { + "bbox": [ + 105, + 532, + 506, + 547 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 372, + 547 + ], + "score": 1.0, + "content": "We then prove Theorem 3.5 in two steps: 1) all iterates stay inside", + "type": "text" + }, + { + "bbox": [ + 373, + 533, + 421, + 546 + ], + "score": 0.93, + "content": "B ( \\mathbf { W } ^ { ( 0 ) } , \\tau )", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 532, + 506, + 547 + ], + "score": 1.0, + "content": "; and 2) convergence", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 545, + 170, + 557 + ], + "spans": [ + { + "bbox": [ + 106, + 545, + 170, + 557 + ], + "score": 1.0, + "content": "of online SGD.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5 + }, + { + "type": "text", + "bbox": [ + 106, + 561, + 504, + 586 + ], + "lines": [ + { + "bbox": [ + 105, + 559, + 506, + 575 + ], + "spans": [ + { + "bbox": [ + 105, + 559, + 205, + 575 + ], + "score": 1.0, + "content": "All iterates stay inside", + "type": "text" + }, + { + "bbox": [ + 205, + 561, + 253, + 574 + ], + "score": 0.92, + "content": "B ( \\mathbf { W } ^ { ( 0 ) } , \\tau )", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 559, + 506, + 575 + ], + "score": 1.0, + "content": ". Similar to the proof of Theorem 3.3, we prove this part by", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 572, + 482, + 588 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 192, + 588 + ], + "score": 1.0, + "content": "induction. Assuming", + "type": "text" + }, + { + "bbox": [ + 193, + 573, + 215, + 585 + ], + "score": 0.86, + "content": "\\mathbf { W } ^ { ( i ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 572, + 250, + 588 + ], + "score": 1.0, + "content": "satisfies", + "type": "text" + }, + { + "bbox": [ + 251, + 573, + 332, + 586 + ], + "score": 0.92, + "content": "\\mathbf { W } ^ { ( i ) } \\in { \\cal B } ( \\mathbf { W } ^ { ( 0 ) } , \\tau )", + "type": "inline_equation" + }, + { + "bbox": [ + 332, + 572, + 359, + 588 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 360, + 574, + 403, + 585 + ], + "score": 0.91, + "content": "i \\leqslant n ^ { \\prime } - 1", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 572, + 482, + 588 + ], + "score": 1.0, + "content": ", by (A.4), we have", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5 + }, + { + "type": "interline_equation", + "bbox": [ + 203, + 590, + 408, + 622 + ], + "lines": [ + { + "bbox": [ + 203, + 590, + 408, + 622 + ], + "spans": [ + { + "bbox": [ + 203, + 590, + 408, + 622 + ], + "score": 0.91, + "content": "\\begin{array} { r l r } { { \\| \\mathbf { W } ^ { ( n ^ { \\prime } ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } \\leqslant \\| \\mathbf { W } ^ { ( 0 ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } + 2 n \\eta \\epsilon _ { \\mathrm { N T R F } } } } \\\\ & { } & { \\leqslant L R ^ { 2 } \\cdot m ^ { - 1 } + 2 n \\eta \\epsilon _ { \\mathrm { N T R F } } , } \\end{array}", + "type": "interline_equation", + "image_path": "f3de783e1c3017b7e11641d5d203f3f51803e19b58f7bb8ad374e5bc85c5af70.jpg" + } + ] + } + ], + "index": 34, + "virtual_lines": [ + { + "bbox": [ + 203, + 590, + 408, + 622 + ], + "spans": [], + "index": 34 + } + ] + }, + { + "type": "text", + "bbox": [ + 104, + 626, + 504, + 640 + ], + "lines": [ + { + "bbox": [ + 105, + 623, + 506, + 643 + ], + "spans": [ + { + "bbox": [ + 105, + 623, + 226, + 643 + ], + "score": 1.0, + "content": "where the last inequality is by", + "type": "text" + }, + { + "bbox": [ + 227, + 626, + 331, + 640 + ], + "score": 0.93, + "content": "\\mathbf { W } ^ { * } \\in { \\mathcal { B } } ( \\mathbf { W } ^ { ( 0 ) } , R m ^ { - 1 / 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 332, + 623, + 506, + 643 + ], + "score": 1.0, + "content": ". Then by triangle inequality, we further get", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35 + }, + { + "type": "interline_equation", + "bbox": [ + 184, + 643, + 427, + 696 + ], + "lines": [ + { + "bbox": [ + 184, + 643, + 427, + 696 + ], + "spans": [ + { + "bbox": [ + 184, + 643, + 427, + 696 + ], + "score": 0.93, + "content": "\\begin{array} { r l } & { \\| \\mathbf { W } _ { l } ^ { ( n ^ { \\prime } ) } - \\mathbf { W } _ { l } ^ { ( 0 ) } \\| _ { F } \\leqslant \\| \\mathbf { W } _ { l } ^ { ( n ^ { \\prime } ) } - \\mathbf { W } _ { l } ^ { * } \\| _ { F } + \\| \\mathbf { W } _ { l } ^ { * } - \\mathbf { W } _ { l } ^ { ( 0 ) } \\| _ { F } } \\\\ & { \\qquad \\leqslant \\| \\mathbf { W } ^ { ( n ^ { \\prime } ) } - \\mathbf { W } ^ { * } \\| _ { F } + \\| \\mathbf { W } _ { l } ^ { * } - \\mathbf { W } _ { l } ^ { ( 0 ) } \\| _ { F } } \\\\ & { \\qquad \\leqslant \\mathcal { O } ( \\sqrt { L } R m ^ { - 1 / 2 } + \\sqrt { n \\eta \\epsilon _ { \\mathrm { N T R F } } } ) . } \\end{array}", + "type": "interline_equation", + "image_path": "3e61e75e6932f76cb8d95f619ba58e5d33e6a205406d0c7ba854016f06fa4466.jpg" + } + ] + } + ], + "index": 37, + "virtual_lines": [ + { + "bbox": [ + 184, + 643, + 427, + 660.6666666666666 + ], + "spans": [], + "index": 36 + }, + { + "bbox": [ + 184, + 660.6666666666666, + 427, + 678.3333333333333 + ], + "spans": [], + "index": 37 + }, + { + "bbox": [ + 184, + 678.3333333333333, + 427, + 695.9999999999999 + ], + "spans": [], + "index": 38 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 705, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 103, + 702, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 103, + 702, + 207, + 723 + ], + "score": 1.0, + "content": "Then by our choices of ?", + "type": "text" + }, + { + "bbox": [ + 207, + 705, + 369, + 720 + ], + "score": 0.91, + "content": "\\eta \\ = \\ \\Theta \\big ( m ^ { - 1 } \\cdot ( L R ^ { 2 } n ^ { - 1 } \\epsilon _ { \\mathrm { N T R F } } ^ { - 1 } \\wedge L ^ { - 1 } ) \\big )", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 702, + 413, + 723 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + }, + { + "bbox": [ + 414, + 705, + 506, + 720 + ], + "score": 0.89, + "content": "\\lVert \\mathbf { W } ^ { ( n ^ { \\prime } ) } - \\mathbf { W } ^ { ( 0 ) } \\rVert _ { F } \\leqslant", + "type": "inline_equation" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 717, + 351, + 734 + ], + "spans": [ + { + "bbox": [ + 106, + 719, + 181, + 731 + ], + "score": 0.92, + "content": "2 \\sqrt { L } R m ^ { - 1 / 2 } \\leqslant \\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 717, + 351, + 734 + ], + "score": 1.0, + "content": ". This completes the proof of the first part.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.5 + } + ], + "page_idx": 12, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 26, + 293, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "13", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 82, + 239, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 240, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 240, + 95 + ], + "score": 1.0, + "content": "A.3 PROOF OF THEOREM 3.5", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 102, + 506, + 138 + ], + "lines": [ + { + "bbox": [ + 105, + 102, + 506, + 116 + ], + "spans": [ + { + "bbox": [ + 105, + 102, + 506, + 116 + ], + "score": 1.0, + "content": "In this section we provide the full proof of Theorem 3.5. We first give the following result, which is", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 104, + 113, + 506, + 129 + ], + "spans": [ + { + "bbox": [ + 104, + 113, + 327, + 129 + ], + "score": 1.0, + "content": "the counterpart of Lemma 5.1 for SGD. Again we pick", + "type": "text" + }, + { + "bbox": [ + 327, + 114, + 432, + 127 + ], + "score": 0.91, + "content": "\\mathbf { W } ^ { * } \\in { \\cal B } ( \\mathbf { W } ^ { ( 0 ) } , R m ^ { - 1 / 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 433, + 113, + 506, + 129 + ], + "score": 1.0, + "content": "such that the loss", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 124, + 370, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 124, + 247, + 140 + ], + "score": 1.0, + "content": "of the corresponding NTRF model", + "type": "text" + }, + { + "bbox": [ + 247, + 126, + 304, + 139 + ], + "score": 0.92, + "content": "F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } * } ( \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 124, + 370, + 140 + ], + "score": 1.0, + "content": "achieves \u000fNTRF.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2, + "bbox_fs": [ + 104, + 102, + 506, + 140 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 141, + 504, + 166 + ], + "lines": [ + { + "bbox": [ + 104, + 140, + 504, + 158 + ], + "spans": [ + { + "bbox": [ + 104, + 140, + 178, + 158 + ], + "score": 1.0, + "content": "Lemma A.4. Set", + "type": "text" + }, + { + "bbox": [ + 179, + 142, + 266, + 155 + ], + "score": 0.92, + "content": "\\eta = \\mathcal { O } ( L ^ { - 1 } M ( \\tau ) ^ { - 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 267, + 140, + 324, + 158 + ], + "score": 1.0, + "content": ". Suppose that", + "type": "text" + }, + { + "bbox": [ + 324, + 142, + 401, + 155 + ], + "score": 0.92, + "content": "\\mathbf { W } ^ { * } \\in { \\cal B } ( \\mathbf { W } ^ { ( 0 ) } , \\tau )", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 140, + 418, + 158 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 419, + 142, + 504, + 155 + ], + "score": 0.92, + "content": "\\mathbf { W } ^ { ( n ^ { \\prime } ) } \\in { \\cal B } ( \\mathbf { W } ^ { ( 0 ) } , \\tau )", + "type": "inline_equation" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 154, + 275, + 166 + ], + "spans": [ + { + "bbox": [ + 106, + 154, + 133, + 166 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 133, + 155, + 198, + 165 + ], + "score": 0.91, + "content": "0 \\leqslant n ^ { \\prime } \\leqslant n - 1", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 154, + 275, + 166 + ], + "score": 1.0, + "content": ". Then it holds that", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5, + "bbox_fs": [ + 104, + 140, + 504, + 166 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 126, + 168, + 483, + 203 + ], + "lines": [ + { + "bbox": [ + 126, + 168, + 483, + 203 + ], + "spans": [ + { + "bbox": [ + 126, + 168, + 483, + 203 + ], + "score": 0.93, + "content": "\\lVert \\mathbf { W } ^ { ( 0 ) } - \\mathbf { W } ^ { * } \\rVert _ { F } ^ { 2 } - \\lVert \\mathbf { W } ^ { ( n ^ { \\prime } ) } - \\mathbf { W } ^ { * } \\rVert _ { F } ^ { 2 } \\geqslant \\Big ( \\frac 3 2 - 4 \\epsilon _ { \\mathrm { a p p } } ( \\tau ) \\Big ) \\eta \\sum _ { i = 1 } ^ { n ^ { \\prime } } L _ { i } ( \\mathbf { W } ^ { ( i - 1 ) } ) - 2 n \\eta \\epsilon _ { \\mathrm { N T R } } .", + "type": "interline_equation", + "image_path": "7b6b42cf19fa2b8fd5c2128ea15b131fba310a5055ff7fa3edc7bdb57021ceec.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 126, + 168, + 483, + 179.66666666666666 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 126, + 179.66666666666666, + 483, + 191.33333333333331 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 126, + 191.33333333333331, + 483, + 202.99999999999997 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 211, + 507, + 291 + ], + "lines": [ + { + "bbox": [ + 105, + 212, + 505, + 226 + ], + "spans": [ + { + "bbox": [ + 105, + 212, + 231, + 226 + ], + "score": 1.0, + "content": "We introduce a surrogate loss", + "type": "text" + }, + { + "bbox": [ + 232, + 212, + 347, + 225 + ], + "score": 0.94, + "content": "\\mathcal { E } _ { i } ( \\mathbf { W } ) = - \\ell ^ { \\prime } [ y _ { i } \\cdot f _ { \\mathbf { W } } ( \\pmb { x } _ { i } ) ]", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 212, + 459, + 226 + ], + "score": 1.0, + "content": "and its population version", + "type": "text" + }, + { + "bbox": [ + 459, + 212, + 505, + 224 + ], + "score": 0.89, + "content": "\\mathcal { E } _ { \\mathcal { D } } ( \\mathbf { W } ) =", + "type": "inline_equation" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 222, + 507, + 239 + ], + "spans": [ + { + "bbox": [ + 106, + 223, + 216, + 236 + ], + "score": 0.92, + "content": "\\mathbb { E } _ { ( \\mathbf { x } , \\mathbf { y } ) \\sim \\mathcal { D } } [ - \\ell ^ { \\prime } [ y \\cdot f _ { \\mathbf { W } } \\mathbf { \\bar { ( } } \\mathbf { x ) } ] ]", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 222, + 507, + 239 + ], + "score": 1.0, + "content": ", which have been used in (Ji and Telgarsky, 2018; Cao and Gu, 2019;", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 104, + 233, + 507, + 248 + ], + "spans": [ + { + "bbox": [ + 104, + 233, + 507, + 248 + ], + "score": 1.0, + "content": "Ji and Telgarsky, 2020). Our proof is based on the application of Lemma A.4 and an online-to-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 245, + 506, + 258 + ], + "spans": [ + { + "bbox": [ + 105, + 245, + 506, + 258 + ], + "score": 1.0, + "content": "batch conversion argument (Cesa-Bianchi et al., 2004; Cao and Gu, 2019; Ji and Telgarsky, 2020).", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 104, + 255, + 505, + 270 + ], + "spans": [ + { + "bbox": [ + 104, + 255, + 231, + 270 + ], + "score": 1.0, + "content": "We introduce a surrogate loss", + "type": "text" + }, + { + "bbox": [ + 232, + 256, + 347, + 268 + ], + "score": 0.91, + "content": "\\mathcal { E } _ { i } ( \\mathbf { W } ) = - \\ell ^ { \\prime } [ y _ { i } \\cdot f _ { \\mathbf { W } } ( \\pmb { x } _ { i } ) ]", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 255, + 459, + 270 + ], + "score": 1.0, + "content": "and its population version", + "type": "text" + }, + { + "bbox": [ + 459, + 256, + 505, + 268 + ], + "score": 0.89, + "content": "\\mathcal { E } _ { \\mathcal { D } } ( \\mathbf { W } ) =", + "type": "inline_equation" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 265, + 507, + 282 + ], + "spans": [ + { + "bbox": [ + 106, + 267, + 217, + 280 + ], + "score": 0.91, + "content": "\\mathbb { E } _ { ( \\mathbf { x } , \\boldsymbol { y } ) \\sim \\mathcal { D } } [ - \\ell ^ { \\prime } ( \\boldsymbol { y } \\cdot f _ { \\mathbf { W } } \\mathbf { \\bar { ( } } \\mathbf { x ) } ) ]", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 265, + 507, + 282 + ], + "score": 1.0, + "content": ", which have been used in (Ji and Telgarsky, 2018; Cao and Gu, 2019;", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 277, + 313, + 291 + ], + "spans": [ + { + "bbox": [ + 105, + 277, + 313, + 291 + ], + "score": 1.0, + "content": "Nitanda and Suzuki, 2019; Ji and Telgarsky, 2020).", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 12, + "bbox_fs": [ + 104, + 212, + 507, + 291 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 301, + 342, + 313 + ], + "lines": [ + { + "bbox": [ + 106, + 300, + 342, + 315 + ], + "spans": [ + { + "bbox": [ + 106, + 300, + 244, + 315 + ], + "score": 1.0, + "content": "Proof of Theorem 3.5. Recall that", + "type": "text" + }, + { + "bbox": [ + 244, + 302, + 262, + 312 + ], + "score": 0.86, + "content": "\\mathbf { W } ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 263, + 300, + 342, + 315 + ], + "score": 1.0, + "content": "is chosen such that", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16, + "bbox_fs": [ + 106, + 300, + 342, + 315 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 233, + 317, + 378, + 349 + ], + "lines": [ + { + "bbox": [ + 233, + 317, + 378, + 349 + ], + "spans": [ + { + "bbox": [ + 233, + 317, + 378, + 349 + ], + "score": 0.94, + "content": "\\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } \\ell \\big ( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ^ { * } } ( \\mathbf { x } _ { i } ) \\big ) = \\epsilon _ { \\mathrm { N T R F } }", + "type": "interline_equation", + "image_path": "c577bc7606c76f25790aaa68d8177544aa0c57e9f822382b3f510142222c05d9.jpg" + } + ] + } + ], + "index": 17, + "virtual_lines": [ + { + "bbox": [ + 233, + 317, + 378, + 349 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 352, + 505, + 406 + ], + "lines": [ + { + "bbox": [ + 105, + 351, + 506, + 367 + ], + "spans": [ + { + "bbox": [ + 105, + 351, + 124, + 367 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 352, + 231, + 366 + ], + "score": 0.93, + "content": "\\mathbf { W } ^ { * } \\in \\mathcal { B } ( \\mathbf { W } ^ { ( 0 ) } , R m ^ { - 1 / 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 351, + 411, + 367 + ], + "score": 1.0, + "content": ". To apply Lemma A.4, we need the region", + "type": "text" + }, + { + "bbox": [ + 412, + 353, + 460, + 366 + ], + "score": 0.93, + "content": "B ( \\mathbf { W } ^ { ( 0 ) } , \\tau )", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 351, + 506, + 367 + ], + "score": 1.0, + "content": "to include", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 104, + 364, + 506, + 381 + ], + "spans": [ + { + "bbox": [ + 104, + 364, + 128, + 381 + ], + "score": 1.0, + "content": "both", + "type": "text" + }, + { + "bbox": [ + 128, + 367, + 146, + 378 + ], + "score": 0.84, + "content": "\\mathbf { W } ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 147, + 364, + 167, + 381 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 167, + 366, + 229, + 380 + ], + "score": 0.91, + "content": "\\{ \\mathbf { W } ^ { ( t ) } \\} _ { t = 0 , \\ldots , t ^ { \\prime } }", + "type": "inline_equation" + }, + { + "bbox": [ + 229, + 364, + 338, + 381 + ], + "score": 1.0, + "content": ". This motivates us to set", + "type": "text" + }, + { + "bbox": [ + 338, + 365, + 429, + 379 + ], + "score": 0.93, + "content": "\\tau = \\tilde { \\mathcal { O } } ( L ^ { 1 / 2 } m ^ { - 1 / 2 } R )", + "type": "inline_equation" + }, + { + "bbox": [ + 430, + 364, + 506, + 381 + ], + "score": 1.0, + "content": ", which is slightly", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 378, + 505, + 395 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 153, + 395 + ], + "score": 1.0, + "content": "larger than", + "type": "text" + }, + { + "bbox": [ + 153, + 380, + 189, + 391 + ], + "score": 0.9, + "content": "m ^ { - 1 / 2 } R", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 378, + 273, + 395 + ], + "score": 1.0, + "content": ". With this choice of", + "type": "text" + }, + { + "bbox": [ + 274, + 383, + 281, + 390 + ], + "score": 0.74, + "content": "\\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 378, + 385, + 395 + ], + "score": 1.0, + "content": ", by Lemma A.1 we have", + "type": "text" + }, + { + "bbox": [ + 385, + 379, + 505, + 393 + ], + "score": 0.93, + "content": "\\epsilon _ { \\mathrm { a p p } } ( \\tau ) = \\widetilde { \\mathcal { O } } ( \\tau ^ { 4 / 3 } m ^ { 1 / 2 } L ^ { 3 } ) =", + "type": "inline_equation" + } + ], + "index": 20 + }, + { + "bbox": [ + 107, + 390, + 286, + 408 + ], + "spans": [ + { + "bbox": [ + 107, + 392, + 191, + 406 + ], + "score": 0.91, + "content": "\\widetilde { \\mathcal { O } } ( R ^ { 4 / 3 } L ^ { 1 1 / 3 } m ^ { - 1 / 6 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 390, + 286, + 408 + ], + "score": 1.0, + "content": ". Therefore, we can set", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 19.5, + "bbox_fs": [ + 104, + 351, + 506, + 408 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 272, + 410, + 339, + 425 + ], + "lines": [ + { + "bbox": [ + 272, + 410, + 339, + 425 + ], + "spans": [ + { + "bbox": [ + 272, + 410, + 339, + 425 + ], + "score": 0.91, + "content": "m = \\widetilde \\Omega ( R ^ { 8 } L ^ { 2 2 } )", + "type": "interline_equation", + "image_path": "5118333fd1ea31506fc8d7c19fa3b850062c45de73c4c0502e6af909a9d0383a.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 272, + 410, + 339, + 425 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 431, + 505, + 455 + ], + "lines": [ + { + "bbox": [ + 105, + 430, + 507, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 431, + 164, + 446 + ], + "score": 1.0, + "content": "to ensure that", + "type": "text" + }, + { + "bbox": [ + 164, + 432, + 221, + 444 + ], + "score": 0.92, + "content": "\\epsilon _ { \\mathrm { a p p } } ( \\tau ) \\leqslant 1 / 8", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 431, + 252, + 446 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 252, + 430, + 271, + 444 + ], + "score": 0.92, + "content": "\\widetilde { \\Omega } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 431, + 494, + 446 + ], + "score": 1.0, + "content": "hides polylogarithmic dependencies on network depth", + "type": "text" + }, + { + "bbox": [ + 495, + 433, + 502, + 442 + ], + "score": 0.79, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 431, + 507, + 446 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 443, + 366, + 456 + ], + "spans": [ + { + "bbox": [ + 106, + 443, + 210, + 456 + ], + "score": 1.0, + "content": "NTRF function class size", + "type": "text" + }, + { + "bbox": [ + 210, + 444, + 219, + 453 + ], + "score": 0.79, + "content": "R", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 443, + 356, + 456 + ], + "score": 1.0, + "content": ", and failure probability parameter", + "type": "text" + }, + { + "bbox": [ + 357, + 444, + 362, + 453 + ], + "score": 0.81, + "content": "\\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 443, + 366, + 456 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5, + "bbox_fs": [ + 105, + 430, + 507, + 456 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 460, + 353, + 472 + ], + "lines": [ + { + "bbox": [ + 105, + 459, + 353, + 473 + ], + "spans": [ + { + "bbox": [ + 105, + 459, + 326, + 473 + ], + "score": 1.0, + "content": "Then by Lemma A.4, we have with probability at least", + "type": "text" + }, + { + "bbox": [ + 326, + 460, + 349, + 471 + ], + "score": 0.86, + "content": "1 - \\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 459, + 353, + 473 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25, + "bbox_fs": [ + 105, + 459, + 353, + 473 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 161, + 476, + 450, + 510 + ], + "lines": [ + { + "bbox": [ + 161, + 476, + 450, + 510 + ], + "spans": [ + { + "bbox": [ + 161, + 476, + 450, + 510 + ], + "score": 0.93, + "content": "\\| \\mathbf { W } ^ { ( 0 ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } - \\| \\mathbf { W } ^ { ( n ^ { \\prime } ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } \\geqslant \\eta \\sum _ { i = 1 } ^ { n ^ { \\prime } } L _ { i } ( \\mathbf { W } ^ { ( i - 1 ) } ) - 2 n \\eta \\epsilon _ { \\mathrm { N T R F } }", + "type": "interline_equation", + "image_path": "1d108029139195faaa71383dc09e9bac9fff841c36e179ffa1bee56bf98418db.jpg" + } + ] + } + ], + "index": 27, + "virtual_lines": [ + { + "bbox": [ + 161, + 476, + 450, + 487.3333333333333 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 161, + 487.3333333333333, + 450, + 498.66666666666663 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 161, + 498.66666666666663, + 450, + 509.99999999999994 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 513, + 292, + 528 + ], + "lines": [ + { + "bbox": [ + 104, + 511, + 293, + 531 + ], + "spans": [ + { + "bbox": [ + 104, + 511, + 148, + 531 + ], + "score": 1.0, + "content": "as long as", + "type": "text" + }, + { + "bbox": [ + 149, + 514, + 289, + 528 + ], + "score": 0.9, + "content": "\\mathbf { W } ^ { ( 0 ) } , \\ldots , \\mathbf { W } ^ { ( n ^ { \\prime } - 1 ) } \\in \\mathcal { B } ( \\mathbf { W } ^ { ( 0 ) } , \\tau )", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 511, + 293, + 531 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29, + "bbox_fs": [ + 104, + 511, + 293, + 531 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 533, + 504, + 556 + ], + "lines": [ + { + "bbox": [ + 105, + 532, + 506, + 547 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 372, + 547 + ], + "score": 1.0, + "content": "We then prove Theorem 3.5 in two steps: 1) all iterates stay inside", + "type": "text" + }, + { + "bbox": [ + 373, + 533, + 421, + 546 + ], + "score": 0.93, + "content": "B ( \\mathbf { W } ^ { ( 0 ) } , \\tau )", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 532, + 506, + 547 + ], + "score": 1.0, + "content": "; and 2) convergence", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 545, + 170, + 557 + ], + "spans": [ + { + "bbox": [ + 106, + 545, + 170, + 557 + ], + "score": 1.0, + "content": "of online SGD.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5, + "bbox_fs": [ + 105, + 532, + 506, + 557 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 561, + 504, + 586 + ], + "lines": [ + { + "bbox": [ + 105, + 559, + 506, + 575 + ], + "spans": [ + { + "bbox": [ + 105, + 559, + 205, + 575 + ], + "score": 1.0, + "content": "All iterates stay inside", + "type": "text" + }, + { + "bbox": [ + 205, + 561, + 253, + 574 + ], + "score": 0.92, + "content": "B ( \\mathbf { W } ^ { ( 0 ) } , \\tau )", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 559, + 506, + 575 + ], + "score": 1.0, + "content": ". Similar to the proof of Theorem 3.3, we prove this part by", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 572, + 482, + 588 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 192, + 588 + ], + "score": 1.0, + "content": "induction. Assuming", + "type": "text" + }, + { + "bbox": [ + 193, + 573, + 215, + 585 + ], + "score": 0.86, + "content": "\\mathbf { W } ^ { ( i ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 572, + 250, + 588 + ], + "score": 1.0, + "content": "satisfies", + "type": "text" + }, + { + "bbox": [ + 251, + 573, + 332, + 586 + ], + "score": 0.92, + "content": "\\mathbf { W } ^ { ( i ) } \\in { \\cal B } ( \\mathbf { W } ^ { ( 0 ) } , \\tau )", + "type": "inline_equation" + }, + { + "bbox": [ + 332, + 572, + 359, + 588 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 360, + 574, + 403, + 585 + ], + "score": 0.91, + "content": "i \\leqslant n ^ { \\prime } - 1", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 572, + 482, + 588 + ], + "score": 1.0, + "content": ", by (A.4), we have", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5, + "bbox_fs": [ + 105, + 559, + 506, + 588 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 203, + 590, + 408, + 622 + ], + "lines": [ + { + "bbox": [ + 203, + 590, + 408, + 622 + ], + "spans": [ + { + "bbox": [ + 203, + 590, + 408, + 622 + ], + "score": 0.91, + "content": "\\begin{array} { r l r } { { \\| \\mathbf { W } ^ { ( n ^ { \\prime } ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } \\leqslant \\| \\mathbf { W } ^ { ( 0 ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } + 2 n \\eta \\epsilon _ { \\mathrm { N T R F } } } } \\\\ & { } & { \\leqslant L R ^ { 2 } \\cdot m ^ { - 1 } + 2 n \\eta \\epsilon _ { \\mathrm { N T R F } } , } \\end{array}", + "type": "interline_equation", + "image_path": "f3de783e1c3017b7e11641d5d203f3f51803e19b58f7bb8ad374e5bc85c5af70.jpg" + } + ] + } + ], + "index": 34, + "virtual_lines": [ + { + "bbox": [ + 203, + 590, + 408, + 622 + ], + "spans": [], + "index": 34 + } + ] + }, + { + "type": "text", + "bbox": [ + 104, + 626, + 504, + 640 + ], + "lines": [ + { + "bbox": [ + 105, + 623, + 506, + 643 + ], + "spans": [ + { + "bbox": [ + 105, + 623, + 226, + 643 + ], + "score": 1.0, + "content": "where the last inequality is by", + "type": "text" + }, + { + "bbox": [ + 227, + 626, + 331, + 640 + ], + "score": 0.93, + "content": "\\mathbf { W } ^ { * } \\in { \\mathcal { B } } ( \\mathbf { W } ^ { ( 0 ) } , R m ^ { - 1 / 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 332, + 623, + 506, + 643 + ], + "score": 1.0, + "content": ". Then by triangle inequality, we further get", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35, + "bbox_fs": [ + 105, + 623, + 506, + 643 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 184, + 643, + 427, + 696 + ], + "lines": [ + { + "bbox": [ + 184, + 643, + 427, + 696 + ], + "spans": [ + { + "bbox": [ + 184, + 643, + 427, + 696 + ], + "score": 0.93, + "content": "\\begin{array} { r l } & { \\| \\mathbf { W } _ { l } ^ { ( n ^ { \\prime } ) } - \\mathbf { W } _ { l } ^ { ( 0 ) } \\| _ { F } \\leqslant \\| \\mathbf { W } _ { l } ^ { ( n ^ { \\prime } ) } - \\mathbf { W } _ { l } ^ { * } \\| _ { F } + \\| \\mathbf { W } _ { l } ^ { * } - \\mathbf { W } _ { l } ^ { ( 0 ) } \\| _ { F } } \\\\ & { \\qquad \\leqslant \\| \\mathbf { W } ^ { ( n ^ { \\prime } ) } - \\mathbf { W } ^ { * } \\| _ { F } + \\| \\mathbf { W } _ { l } ^ { * } - \\mathbf { W } _ { l } ^ { ( 0 ) } \\| _ { F } } \\\\ & { \\qquad \\leqslant \\mathcal { O } ( \\sqrt { L } R m ^ { - 1 / 2 } + \\sqrt { n \\eta \\epsilon _ { \\mathrm { N T R F } } } ) . } \\end{array}", + "type": "interline_equation", + "image_path": "3e61e75e6932f76cb8d95f619ba58e5d33e6a205406d0c7ba854016f06fa4466.jpg" + } + ] + } + ], + "index": 37, + "virtual_lines": [ + { + "bbox": [ + 184, + 643, + 427, + 660.6666666666666 + ], + "spans": [], + "index": 36 + }, + { + "bbox": [ + 184, + 660.6666666666666, + 427, + 678.3333333333333 + ], + "spans": [], + "index": 37 + }, + { + "bbox": [ + 184, + 678.3333333333333, + 427, + 695.9999999999999 + ], + "spans": [], + "index": 38 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 705, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 103, + 702, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 103, + 702, + 207, + 723 + ], + "score": 1.0, + "content": "Then by our choices of ?", + "type": "text" + }, + { + "bbox": [ + 207, + 705, + 369, + 720 + ], + "score": 0.91, + "content": "\\eta \\ = \\ \\Theta \\big ( m ^ { - 1 } \\cdot ( L R ^ { 2 } n ^ { - 1 } \\epsilon _ { \\mathrm { N T R F } } ^ { - 1 } \\wedge L ^ { - 1 } ) \\big )", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 702, + 413, + 723 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + }, + { + "bbox": [ + 414, + 705, + 506, + 720 + ], + "score": 0.89, + "content": "\\lVert \\mathbf { W } ^ { ( n ^ { \\prime } ) } - \\mathbf { W } ^ { ( 0 ) } \\rVert _ { F } \\leqslant", + "type": "inline_equation" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 717, + 351, + 734 + ], + "spans": [ + { + "bbox": [ + 106, + 719, + 181, + 731 + ], + "score": 0.92, + "content": "2 \\sqrt { L } R m ^ { - 1 / 2 } \\leqslant \\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 717, + 351, + 734 + ], + "score": 1.0, + "content": ". This completes the proof of the first part.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.5, + "bbox_fs": [ + 103, + 702, + 506, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 303, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 304, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 304, + 96 + ], + "score": 1.0, + "content": "Convergence of online SGD. By (A.4), we have", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "interline_equation", + "bbox": [ + 156, + 99, + 454, + 131 + ], + "lines": [ + { + "bbox": [ + 156, + 99, + 454, + 131 + ], + "spans": [ + { + "bbox": [ + 156, + 99, + 454, + 131 + ], + "score": 0.93, + "content": "\\| \\mathbf { W } ^ { ( 0 ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } - \\| \\mathbf { W } ^ { ( n ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } \\geqslant \\eta \\biggl ( \\sum _ { i = 1 } ^ { n } L _ { i } ( \\mathbf { W } ^ { ( i - 1 ) } ) - 2 n \\epsilon _ { \\mathrm { N T R F } } \\biggr ) .", + "type": "interline_equation", + "image_path": "3250bc5b02c17d86f20c79759664bf2dc6f60e34897d96599d14d99a0a1d636a.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 156, + 99, + 454, + 109.66666666666667 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 156, + 109.66666666666667, + 454, + 120.33333333333334 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 156, + 120.33333333333334, + 454, + 131.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 135, + 361, + 147 + ], + "lines": [ + { + "bbox": [ + 105, + 133, + 363, + 149 + ], + "spans": [ + { + "bbox": [ + 105, + 133, + 156, + 149 + ], + "score": 1.0, + "content": "Dividing by", + "type": "text" + }, + { + "bbox": [ + 157, + 137, + 169, + 147 + ], + "score": 0.74, + "content": "\\eta n", + "type": "inline_equation" + }, + { + "bbox": [ + 169, + 133, + 363, + 149 + ], + "score": 1.0, + "content": "on the both sides and rearranging terms, we get", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "interline_equation", + "bbox": [ + 125, + 151, + 484, + 181 + ], + "lines": [ + { + "bbox": [ + 125, + 151, + 484, + 181 + ], + "spans": [ + { + "bbox": [ + 125, + 151, + 484, + 181 + ], + "score": 0.91, + "content": "\\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } L _ { i } ( \\mathbf { W } ^ { ( i - 1 ) } ) \\leqslant \\frac { \\| \\mathbf { W } ^ { ( 0 ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } - \\| \\mathbf { W } ^ { ( n ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } } { \\eta n } + 2 \\epsilon _ { \\mathrm { N T R F } } \\leqslant \\frac { L ^ { 2 } R ^ { 2 } } { n } + 3 \\epsilon _ { \\mathrm { N T R F } } ,", + "type": "interline_equation", + "image_path": "c0b9cedfd22144c8a6091bd9f25ce8814313bfeefd590d69be88a59ee42a2b6f.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 125, + 151, + 484, + 161.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 125, + 161.0, + 484, + 171.0 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 125, + 171.0, + 484, + 181.0 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 189, + 504, + 228 + ], + "lines": [ + { + "bbox": [ + 105, + 187, + 505, + 202 + ], + "spans": [ + { + "bbox": [ + 105, + 187, + 316, + 202 + ], + "score": 1.0, + "content": "where the second inequality follows from facts that ˘", + "type": "text" + }, + { + "bbox": [ + 317, + 189, + 428, + 202 + ], + "score": 0.91, + "content": "\\mathbf { W } ^ { \\ast } \\in { \\mathcal { B } } ( \\mathbf { W } ^ { ( 0 ) } , R \\cdot m ^ { - 1 / 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 429, + 187, + 447, + 202 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 447, + 189, + 502, + 202 + ], + "score": 0.88, + "content": "\\eta = \\Theta ( m ^ { - 1 } \\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 187, + 505, + 202 + ], + "score": 1.0, + "content": "¨", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 107, + 198, + 505, + 220 + ], + "spans": [ + { + "bbox": [ + 107, + 201, + 205, + 216 + ], + "score": 0.87, + "content": "( L R ^ { 2 } n ^ { - 1 } \\epsilon _ { \\mathrm { N I R F } } ^ { - 1 } \\wedge L ^ { - 1 } ) \\big )", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 198, + 444, + 220 + ], + "score": 1.0, + "content": ". By Lemma 4.3 in (Ji and Telgarsky, 2020) and the fact that", + "type": "text" + }, + { + "bbox": [ + 444, + 202, + 505, + 216 + ], + "score": 0.93, + "content": "\\mathscr { E } _ { i } ( \\mathbf { W } ^ { ( i - 1 ) } ) \\leqslant", + "type": "inline_equation" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 213, + 198, + 231 + ], + "spans": [ + { + "bbox": [ + 106, + 216, + 157, + 229 + ], + "score": 0.91, + "content": "L _ { i } ( \\mathbf { W } ^ { ( i - 1 ) } )", + "type": "inline_equation" + }, + { + "bbox": [ + 157, + 213, + 198, + 231 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9 + }, + { + "type": "interline_equation", + "bbox": [ + 187, + 233, + 422, + 325 + ], + "lines": [ + { + "bbox": [ + 187, + 233, + 422, + 325 + ], + "spans": [ + { + "bbox": [ + 187, + 233, + 422, + 325 + ], + "score": 0.95, + "content": "\\begin{array} { r l r } { { \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } L _ { \\mathcal { D } } ^ { 0 - 1 } ( \\mathbf { W } ^ { ( i - 1 ) } ) \\leqslant \\displaystyle \\frac { 2 } { n } \\sum _ { i = 1 } ^ { n } \\mathcal { E } _ { \\mathcal { D } } ( \\mathbf { W } ^ { ( i - 1 ) } ) } } \\\\ & { } & { \\leqslant \\displaystyle \\frac { 8 } { n } \\sum _ { i = 1 } ^ { n } \\mathcal { E } _ { i } ( \\mathbf { W } ^ { ( i - 1 ) } ) + \\frac { 8 \\log ( 1 / \\delta ) } { n } } \\\\ & { } & { \\leqslant \\displaystyle \\frac { 8 L ^ { 2 } R ^ { 2 } } { n } + \\frac { 8 \\log ( 1 / \\delta ) } { n } + 2 4 \\epsilon _ { \\mathrm { N T R F } } . } \\end{array}", + "type": "interline_equation", + "image_path": "ab701447ac3384f706cf6b375362463804b74d8c291297acd8d793da9bf8fd30.jpg" + } + ] + } + ], + "index": 13.5, + "virtual_lines": [ + { + "bbox": [ + 187, + 233, + 422, + 248.33333333333334 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 187, + 248.33333333333334, + 422, + 263.6666666666667 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 187, + 263.6666666666667, + 422, + 279.0 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 187, + 279.0, + 422, + 294.3333333333333 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 187, + 294.3333333333333, + 422, + 309.66666666666663 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 187, + 309.66666666666663, + 422, + 324.99999999999994 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 327, + 283, + 339 + ], + "lines": [ + { + "bbox": [ + 106, + 326, + 284, + 340 + ], + "spans": [ + { + "bbox": [ + 106, + 326, + 284, + 340 + ], + "score": 1.0, + "content": "This completes the proof of the second part.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "title", + "bbox": [ + 107, + 354, + 302, + 368 + ], + "lines": [ + { + "bbox": [ + 105, + 354, + 303, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 354, + 303, + 369 + ], + "score": 1.0, + "content": "B PROOF OF RESULTS IN SECTION 4", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "title", + "bbox": [ + 108, + 379, + 253, + 391 + ], + "lines": [ + { + "bbox": [ + 105, + 378, + 255, + 392 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 255, + 392 + ], + "score": 1.0, + "content": "B.1 PROOF OF PROPOSITION 4.2", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 106, + 399, + 504, + 423 + ], + "lines": [ + { + "bbox": [ + 105, + 399, + 505, + 412 + ], + "spans": [ + { + "bbox": [ + 105, + 399, + 505, + 412 + ], + "score": 1.0, + "content": "We first provide the following lemma which gives an upper bound of the neural network output at the", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 411, + 162, + 424 + ], + "spans": [ + { + "bbox": [ + 105, + 411, + 162, + 424 + ], + "score": 1.0, + "content": "initialization.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5 + }, + { + "type": "text", + "bbox": [ + 106, + 425, + 504, + 449 + ], + "lines": [ + { + "bbox": [ + 105, + 425, + 504, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 425, + 420, + 439 + ], + "score": 1.0, + "content": "Lemma B.1 (Lemma 4.4 in Cao and Gu (2019)). Under Assumption 3.1, if", + "type": "text" + }, + { + "bbox": [ + 420, + 425, + 504, + 438 + ], + "score": 0.92, + "content": "m \\geqslant \\bar { C } L \\log ( n L / \\delta )", + "type": "inline_equation" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 436, + 393, + 450 + ], + "spans": [ + { + "bbox": [ + 105, + 436, + 221, + 450 + ], + "score": 1.0, + "content": "with some absolute constant", + "type": "text" + }, + { + "bbox": [ + 222, + 436, + 230, + 447 + ], + "score": 0.85, + "content": "\\bar { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 230, + 436, + 331, + 450 + ], + "score": 1.0, + "content": ", with probability at least", + "type": "text" + }, + { + "bbox": [ + 331, + 438, + 354, + 448 + ], + "score": 0.87, + "content": "1 - \\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 436, + 393, + 450 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5 + }, + { + "type": "interline_equation", + "bbox": [ + 247, + 453, + 364, + 470 + ], + "lines": [ + { + "bbox": [ + 247, + 453, + 364, + 470 + ], + "spans": [ + { + "bbox": [ + 247, + 453, + 364, + 470 + ], + "score": 0.9, + "content": "| f _ { \\mathbf { W } ^ { ( 0 ) } } ( \\mathbf { x } _ { i } ) | \\leqslant C \\sqrt { \\log ( n / \\delta ) }", + "type": "interline_equation", + "image_path": "756deb8aa0d3419cc4a7f828fa4b75b034ed271bcaeadf5727b90a0c66858718.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 247, + 453, + 364, + 470 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 474, + 227, + 486 + ], + "lines": [ + { + "bbox": [ + 105, + 473, + 228, + 487 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 216, + 487 + ], + "score": 1.0, + "content": "for some absolute constant", + "type": "text" + }, + { + "bbox": [ + 216, + 475, + 225, + 484 + ], + "score": 0.83, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 473, + 228, + 487 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 106, + 497, + 505, + 558 + ], + "lines": [ + { + "bbox": [ + 106, + 497, + 504, + 511 + ], + "spans": [ + { + "bbox": [ + 106, + 497, + 474, + 511 + ], + "score": 1.0, + "content": "Proof of Proposition 4.2. Under Assumption 4.1, we can find a collection of matrices ř", + "type": "text" + }, + { + "bbox": [ + 474, + 498, + 504, + 510 + ], + "score": 0.87, + "content": "{ \\bf U } ^ { * } = ", + "type": "inline_equation" + } + ], + "index": 26 + }, + { + "bbox": [ + 107, + 509, + 504, + 526 + ], + "spans": [ + { + "bbox": [ + 107, + 511, + 169, + 524 + ], + "score": 0.92, + "content": "\\{ \\mathbf { U } _ { 1 } ^ { * } , \\cdot \\cdot \\cdot , \\mathbf { U } _ { L } ^ { * } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 169, + 509, + 191, + 526 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 192, + 509, + 265, + 524 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\sum _ { l = 1 } ^ { L } \\| \\mathbf { U } _ { l } ^ { * } \\| _ { F } ^ { 2 } = 1 } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 509, + 306, + 526 + ], + "score": 1.0, + "content": "such that", + "type": "text" + }, + { + "bbox": [ + 306, + 510, + 433, + 523 + ], + "score": 0.9, + "content": "y _ { i } \\langle \\nabla f _ { \\mathbf { W } ^ { ( 0 ) } } ( \\mathbf { x } _ { i } ) , \\mathbf { U } ^ { * } \\rangle \\geqslant m ^ { 1 / 2 } \\gamma", + "type": "inline_equation" + }, + { + "bbox": [ + 433, + 509, + 479, + 526 + ], + "score": 1.0, + "content": "for at least a", + "type": "text" + }, + { + "bbox": [ + 480, + 512, + 504, + 523 + ], + "score": 0.86, + "content": "1 - \\rho", + "type": "inline_equation" + } + ], + "index": 27 + }, + { + "bbox": [ + 104, + 523, + 506, + 537 + ], + "spans": [ + { + "bbox": [ + 104, + 523, + 311, + 537 + ], + "score": 1.0, + "content": "fraction of the training data. By Lemma B.1, for all", + "type": "text" + }, + { + "bbox": [ + 311, + 524, + 339, + 537 + ], + "score": 0.92, + "content": "i \\in [ n ]", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 523, + 375, + 537 + ], + "score": 1.0, + "content": "we have", + "type": "text" + }, + { + "bbox": [ + 376, + 523, + 490, + 537 + ], + "score": 0.9, + "content": "| f _ { \\mathbf { W } ^ { ( 0 ) } } ( \\mathbf { x } _ { i } ) | \\leqslant C \\sqrt { \\log ( n / \\delta ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 490, + 523, + 506, + 537 + ], + "score": 1.0, + "content": "for", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 104, + 534, + 506, + 547 + ], + "spans": [ + { + "bbox": [ + 104, + 534, + 200, + 547 + ], + "score": 1.0, + "content": "some absolute constant", + "type": "text" + }, + { + "bbox": [ + 200, + 536, + 209, + 545 + ], + "score": 0.8, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 209, + 534, + 335, + 547 + ], + "score": 1.0, + "content": ". Then for any positive constant", + "type": "text" + }, + { + "bbox": [ + 335, + 537, + 342, + 545 + ], + "score": 0.8, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 342, + 534, + 424, + 547 + ], + "score": 1.0, + "content": ", we have for at least", + "type": "text" + }, + { + "bbox": [ + 424, + 537, + 448, + 547 + ], + "score": 0.88, + "content": "1 - \\rho", + "type": "inline_equation" + }, + { + "bbox": [ + 448, + 534, + 506, + 547 + ], + "score": 1.0, + "content": "portion of the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 545, + 129, + 560 + ], + "spans": [ + { + "bbox": [ + 105, + 545, + 129, + 560 + ], + "score": 1.0, + "content": "data,", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 28 + }, + { + "type": "interline_equation", + "bbox": [ + 180, + 562, + 430, + 579 + ], + "lines": [ + { + "bbox": [ + 180, + 562, + 430, + 579 + ], + "spans": [ + { + "bbox": [ + 180, + 562, + 430, + 579 + ], + "score": 0.88, + "content": "y _ { i } \\big ( f _ { \\mathbf { W } ^ { ( 0 ) } } ( \\mathbf { x } _ { i } ) + \\langle \\nabla f _ { \\mathbf { W } ^ { ( 0 ) } } , \\lambda \\mathbf { U } ^ { * } \\rangle \\big ) \\geqslant m ^ { 1 / 2 } \\lambda \\gamma - C \\sqrt { \\log ( n / \\delta ) } .", + "type": "interline_equation", + "image_path": "84efaec906cdba75466f5ea399d04947df48f3c5efe1f111772d020059bcfb58.jpg" + } + ] + } + ], + "index": 31, + "virtual_lines": [ + { + "bbox": [ + 180, + 562, + 430, + 579 + ], + "spans": [], + "index": 31 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 583, + 249, + 594 + ], + "lines": [ + { + "bbox": [ + 106, + 582, + 250, + 595 + ], + "spans": [ + { + "bbox": [ + 106, + 582, + 250, + 595 + ], + "score": 1.0, + "content": "For this fraction of data, we can set", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "interline_equation", + "bbox": [ + 235, + 598, + 375, + 628 + ], + "lines": [ + { + "bbox": [ + 235, + 598, + 375, + 628 + ], + "spans": [ + { + "bbox": [ + 235, + 598, + 375, + 628 + ], + "score": 0.94, + "content": "\\lambda = \\frac { C ^ { \\prime } \\big [ \\log ^ { 1 / 2 } ( n / \\delta ) + \\log ( 1 / \\epsilon ) \\big ] } { m ^ { 1 / 2 } \\gamma } ,", + "type": "interline_equation", + "image_path": "0236c0890f07e46feb6b4e1d42e75ba955b4671faea08bf026ed0bccd81a1af0.jpg" + } + ] + } + ], + "index": 33.5, + "virtual_lines": [ + { + "bbox": [ + 235, + 598, + 375, + 613.0 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 235, + 613.0, + 375, + 628.0 + ], + "spans": [], + "index": 34 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 633, + 272, + 645 + ], + "lines": [ + { + "bbox": [ + 105, + 632, + 273, + 647 + ], + "spans": [ + { + "bbox": [ + 105, + 632, + 133, + 647 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 634, + 145, + 644 + ], + "score": 0.86, + "content": "C ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 632, + 273, + 647 + ], + "score": 1.0, + "content": "is an absolute constant, and get", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35 + }, + { + "type": "interline_equation", + "bbox": [ + 230, + 650, + 380, + 666 + ], + "lines": [ + { + "bbox": [ + 230, + 650, + 380, + 666 + ], + "spans": [ + { + "bbox": [ + 230, + 650, + 380, + 666 + ], + "score": 0.92, + "content": "m ^ { 1 / 2 } \\lambda \\gamma - C \\sqrt { \\log ( n / \\delta ) } \\geqslant \\log ( 1 / \\epsilon ) .", + "type": "interline_equation", + "image_path": "026dbcd46f20fe5e4b80eec81a6f19da2681080c76b56a34dba7265b0d9a771c.jpg" + } + ] + } + ], + "index": 36, + "virtual_lines": [ + { + "bbox": [ + 230, + 650, + 380, + 666 + ], + "spans": [], + "index": 36 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 672, + 506, + 708 + ], + "lines": [ + { + "bbox": [ + 105, + 671, + 505, + 685 + ], + "spans": [ + { + "bbox": [ + 105, + 671, + 160, + 685 + ], + "score": 1.0, + "content": "Now we let", + "type": "text" + }, + { + "bbox": [ + 161, + 672, + 255, + 684 + ], + "score": 0.9, + "content": "\\mathbf { W ^ { * } } \\ = \\ \\mathbf { W } ^ { ( 0 ) } + \\lambda \\mathbf { U ^ { * } }", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 671, + 340, + 685 + ], + "score": 1.0, + "content": ". By the choice of", + "type": "text" + }, + { + "bbox": [ + 341, + 673, + 350, + 683 + ], + "score": 0.83, + "content": "R", + "type": "inline_equation" + }, + { + "bbox": [ + 350, + 671, + 474, + 685 + ], + "score": 1.0, + "content": "in Proposition 4.2, we have", + "type": "text" + }, + { + "bbox": [ + 474, + 673, + 505, + 684 + ], + "score": 0.87, + "content": "{ \\bf W } ^ { * } \\in { \\cal U }", + "type": "inline_equation" + } + ], + "index": 37 + }, + { + "bbox": [ + 107, + 683, + 506, + 698 + ], + "spans": [ + { + "bbox": [ + 107, + 684, + 191, + 696 + ], + "score": 0.89, + "content": "\\mathcal { B } ( \\mathbf { W } ^ { ( 0 ) } , R \\cdot m ^ { - 1 / 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 683, + 392, + 698 + ], + "score": 1.0, + "content": ". The above inequality implies that for at least ˘", + "type": "text" + }, + { + "bbox": [ + 393, + 685, + 418, + 697 + ], + "score": 0.89, + "content": "1 - \\rho", + "type": "inline_equation" + }, + { + "bbox": [ + 418, + 683, + 506, + 698 + ], + "score": 1.0, + "content": "fraction of data, we", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 695, + 338, + 710 + ], + "spans": [ + { + "bbox": [ + 105, + 695, + 127, + 710 + ], + "score": 1.0, + "content": "have", + "type": "text" + }, + { + "bbox": [ + 128, + 696, + 228, + 709 + ], + "score": 0.89, + "content": "\\ell \\left( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ^ { * } } ( \\mathbf { x } _ { i } ) \\right) \\leqslant \\epsilon .", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 695, + 338, + 710 + ], + "score": 1.0, + "content": ". For the rest data, we have", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38 + }, + { + "type": "interline_equation", + "bbox": [ + 147, + 714, + 464, + 731 + ], + "lines": [ + { + "bbox": [ + 147, + 714, + 464, + 731 + ], + "spans": [ + { + "bbox": [ + 147, + 714, + 464, + 731 + ], + "score": 0.9, + "content": "y _ { i } \\big ( f _ { \\mathbf { W } ^ { ( 0 ) } } ( \\mathbf { x } _ { i } ) + \\langle \\nabla f _ { \\mathbf { W } ^ { ( 0 ) } } , \\lambda \\mathbf { U } ^ { * } \\rangle \\big ) \\geqslant - C \\sqrt { \\log ( n / \\delta ) } - \\lambda \\| \\nabla f _ { \\mathbf { W } ^ { ( 0 ) } } \\| _ { 2 } ^ { 2 } \\geqslant - C _ { 1 } R", + "type": "interline_equation", + "image_path": "d7cb67a287aacd300159e1a19da5ef07963c0fcc2fa1cb4f50f7e96764a7ade3.jpg" + } + ] + } + ], + "index": 40, + "virtual_lines": [ + { + "bbox": [ + 147, + 714, + 464, + 731 + ], + "spans": [], + "index": 40 + } + ] + } + ], + "page_idx": 13, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 26, + 293, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "14", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 494, + 327, + 505, + 338 + ], + "lines": [ + { + "bbox": [ + 496, + 329, + 505, + 339 + ], + "spans": [ + { + "bbox": [ + 496, + 329, + 505, + 339 + ], + "score": 0.999, + "content": "□", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 303, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 304, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 304, + 96 + ], + "score": 1.0, + "content": "Convergence of online SGD. By (A.4), we have", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0, + "bbox_fs": [ + 106, + 81, + 304, + 96 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 156, + 99, + 454, + 131 + ], + "lines": [ + { + "bbox": [ + 156, + 99, + 454, + 131 + ], + "spans": [ + { + "bbox": [ + 156, + 99, + 454, + 131 + ], + "score": 0.93, + "content": "\\| \\mathbf { W } ^ { ( 0 ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } - \\| \\mathbf { W } ^ { ( n ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } \\geqslant \\eta \\biggl ( \\sum _ { i = 1 } ^ { n } L _ { i } ( \\mathbf { W } ^ { ( i - 1 ) } ) - 2 n \\epsilon _ { \\mathrm { N T R F } } \\biggr ) .", + "type": "interline_equation", + "image_path": "3250bc5b02c17d86f20c79759664bf2dc6f60e34897d96599d14d99a0a1d636a.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 156, + 99, + 454, + 109.66666666666667 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 156, + 109.66666666666667, + 454, + 120.33333333333334 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 156, + 120.33333333333334, + 454, + 131.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 135, + 361, + 147 + ], + "lines": [ + { + "bbox": [ + 105, + 133, + 363, + 149 + ], + "spans": [ + { + "bbox": [ + 105, + 133, + 156, + 149 + ], + "score": 1.0, + "content": "Dividing by", + "type": "text" + }, + { + "bbox": [ + 157, + 137, + 169, + 147 + ], + "score": 0.74, + "content": "\\eta n", + "type": "inline_equation" + }, + { + "bbox": [ + 169, + 133, + 363, + 149 + ], + "score": 1.0, + "content": "on the both sides and rearranging terms, we get", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4, + "bbox_fs": [ + 105, + 133, + 363, + 149 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 125, + 151, + 484, + 181 + ], + "lines": [ + { + "bbox": [ + 125, + 151, + 484, + 181 + ], + "spans": [ + { + "bbox": [ + 125, + 151, + 484, + 181 + ], + "score": 0.91, + "content": "\\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } L _ { i } ( \\mathbf { W } ^ { ( i - 1 ) } ) \\leqslant \\frac { \\| \\mathbf { W } ^ { ( 0 ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } - \\| \\mathbf { W } ^ { ( n ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } } { \\eta n } + 2 \\epsilon _ { \\mathrm { N T R F } } \\leqslant \\frac { L ^ { 2 } R ^ { 2 } } { n } + 3 \\epsilon _ { \\mathrm { N T R F } } ,", + "type": "interline_equation", + "image_path": "c0b9cedfd22144c8a6091bd9f25ce8814313bfeefd590d69be88a59ee42a2b6f.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 125, + 151, + 484, + 161.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 125, + 161.0, + 484, + 171.0 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 125, + 171.0, + 484, + 181.0 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 189, + 504, + 228 + ], + "lines": [ + { + "bbox": [ + 105, + 187, + 505, + 202 + ], + "spans": [ + { + "bbox": [ + 105, + 187, + 316, + 202 + ], + "score": 1.0, + "content": "where the second inequality follows from facts that ˘", + "type": "text" + }, + { + "bbox": [ + 317, + 189, + 428, + 202 + ], + "score": 0.91, + "content": "\\mathbf { W } ^ { \\ast } \\in { \\mathcal { B } } ( \\mathbf { W } ^ { ( 0 ) } , R \\cdot m ^ { - 1 / 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 429, + 187, + 447, + 202 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 447, + 189, + 502, + 202 + ], + "score": 0.88, + "content": "\\eta = \\Theta ( m ^ { - 1 } \\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 187, + 505, + 202 + ], + "score": 1.0, + "content": "¨", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 107, + 198, + 505, + 220 + ], + "spans": [ + { + "bbox": [ + 107, + 201, + 205, + 216 + ], + "score": 0.87, + "content": "( L R ^ { 2 } n ^ { - 1 } \\epsilon _ { \\mathrm { N I R F } } ^ { - 1 } \\wedge L ^ { - 1 } ) \\big )", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 198, + 444, + 220 + ], + "score": 1.0, + "content": ". By Lemma 4.3 in (Ji and Telgarsky, 2020) and the fact that", + "type": "text" + }, + { + "bbox": [ + 444, + 202, + 505, + 216 + ], + "score": 0.93, + "content": "\\mathscr { E } _ { i } ( \\mathbf { W } ^ { ( i - 1 ) } ) \\leqslant", + "type": "inline_equation" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 213, + 198, + 231 + ], + "spans": [ + { + "bbox": [ + 106, + 216, + 157, + 229 + ], + "score": 0.91, + "content": "L _ { i } ( \\mathbf { W } ^ { ( i - 1 ) } )", + "type": "inline_equation" + }, + { + "bbox": [ + 157, + 213, + 198, + 231 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9, + "bbox_fs": [ + 105, + 187, + 505, + 231 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 187, + 233, + 422, + 325 + ], + "lines": [ + { + "bbox": [ + 187, + 233, + 422, + 325 + ], + "spans": [ + { + "bbox": [ + 187, + 233, + 422, + 325 + ], + "score": 0.95, + "content": "\\begin{array} { r l r } { { \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } L _ { \\mathcal { D } } ^ { 0 - 1 } ( \\mathbf { W } ^ { ( i - 1 ) } ) \\leqslant \\displaystyle \\frac { 2 } { n } \\sum _ { i = 1 } ^ { n } \\mathcal { E } _ { \\mathcal { D } } ( \\mathbf { W } ^ { ( i - 1 ) } ) } } \\\\ & { } & { \\leqslant \\displaystyle \\frac { 8 } { n } \\sum _ { i = 1 } ^ { n } \\mathcal { E } _ { i } ( \\mathbf { W } ^ { ( i - 1 ) } ) + \\frac { 8 \\log ( 1 / \\delta ) } { n } } \\\\ & { } & { \\leqslant \\displaystyle \\frac { 8 L ^ { 2 } R ^ { 2 } } { n } + \\frac { 8 \\log ( 1 / \\delta ) } { n } + 2 4 \\epsilon _ { \\mathrm { N T R F } } . } \\end{array}", + "type": "interline_equation", + "image_path": "ab701447ac3384f706cf6b375362463804b74d8c291297acd8d793da9bf8fd30.jpg" + } + ] + } + ], + "index": 13.5, + "virtual_lines": [ + { + "bbox": [ + 187, + 233, + 422, + 248.33333333333334 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 187, + 248.33333333333334, + 422, + 263.6666666666667 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 187, + 263.6666666666667, + 422, + 279.0 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 187, + 279.0, + 422, + 294.3333333333333 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 187, + 294.3333333333333, + 422, + 309.66666666666663 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 187, + 309.66666666666663, + 422, + 324.99999999999994 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 327, + 283, + 339 + ], + "lines": [ + { + "bbox": [ + 106, + 326, + 284, + 340 + ], + "spans": [ + { + "bbox": [ + 106, + 326, + 284, + 340 + ], + "score": 1.0, + "content": "This completes the proof of the second part.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17, + "bbox_fs": [ + 106, + 326, + 284, + 340 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 354, + 302, + 368 + ], + "lines": [ + { + "bbox": [ + 105, + 354, + 303, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 354, + 303, + 369 + ], + "score": 1.0, + "content": "B PROOF OF RESULTS IN SECTION 4", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "title", + "bbox": [ + 108, + 379, + 253, + 391 + ], + "lines": [ + { + "bbox": [ + 105, + 378, + 255, + 392 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 255, + 392 + ], + "score": 1.0, + "content": "B.1 PROOF OF PROPOSITION 4.2", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 106, + 399, + 504, + 423 + ], + "lines": [ + { + "bbox": [ + 105, + 399, + 505, + 412 + ], + "spans": [ + { + "bbox": [ + 105, + 399, + 505, + 412 + ], + "score": 1.0, + "content": "We first provide the following lemma which gives an upper bound of the neural network output at the", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 411, + 162, + 424 + ], + "spans": [ + { + "bbox": [ + 105, + 411, + 162, + 424 + ], + "score": 1.0, + "content": "initialization.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5, + "bbox_fs": [ + 105, + 399, + 505, + 424 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 425, + 504, + 449 + ], + "lines": [ + { + "bbox": [ + 105, + 425, + 504, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 425, + 420, + 439 + ], + "score": 1.0, + "content": "Lemma B.1 (Lemma 4.4 in Cao and Gu (2019)). Under Assumption 3.1, if", + "type": "text" + }, + { + "bbox": [ + 420, + 425, + 504, + 438 + ], + "score": 0.92, + "content": "m \\geqslant \\bar { C } L \\log ( n L / \\delta )", + "type": "inline_equation" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 436, + 393, + 450 + ], + "spans": [ + { + "bbox": [ + 105, + 436, + 221, + 450 + ], + "score": 1.0, + "content": "with some absolute constant", + "type": "text" + }, + { + "bbox": [ + 222, + 436, + 230, + 447 + ], + "score": 0.85, + "content": "\\bar { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 230, + 436, + 331, + 450 + ], + "score": 1.0, + "content": ", with probability at least", + "type": "text" + }, + { + "bbox": [ + 331, + 438, + 354, + 448 + ], + "score": 0.87, + "content": "1 - \\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 436, + 393, + 450 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5, + "bbox_fs": [ + 105, + 425, + 504, + 450 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 247, + 453, + 364, + 470 + ], + "lines": [ + { + "bbox": [ + 247, + 453, + 364, + 470 + ], + "spans": [ + { + "bbox": [ + 247, + 453, + 364, + 470 + ], + "score": 0.9, + "content": "| f _ { \\mathbf { W } ^ { ( 0 ) } } ( \\mathbf { x } _ { i } ) | \\leqslant C \\sqrt { \\log ( n / \\delta ) }", + "type": "interline_equation", + "image_path": "756deb8aa0d3419cc4a7f828fa4b75b034ed271bcaeadf5727b90a0c66858718.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 247, + 453, + 364, + 470 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 474, + 227, + 486 + ], + "lines": [ + { + "bbox": [ + 105, + 473, + 228, + 487 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 216, + 487 + ], + "score": 1.0, + "content": "for some absolute constant", + "type": "text" + }, + { + "bbox": [ + 216, + 475, + 225, + 484 + ], + "score": 0.83, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 473, + 228, + 487 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25, + "bbox_fs": [ + 105, + 473, + 228, + 487 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 497, + 505, + 558 + ], + "lines": [ + { + "bbox": [ + 106, + 497, + 504, + 511 + ], + "spans": [ + { + "bbox": [ + 106, + 497, + 474, + 511 + ], + "score": 1.0, + "content": "Proof of Proposition 4.2. Under Assumption 4.1, we can find a collection of matrices ř", + "type": "text" + }, + { + "bbox": [ + 474, + 498, + 504, + 510 + ], + "score": 0.87, + "content": "{ \\bf U } ^ { * } = ", + "type": "inline_equation" + } + ], + "index": 26 + }, + { + "bbox": [ + 107, + 509, + 504, + 526 + ], + "spans": [ + { + "bbox": [ + 107, + 511, + 169, + 524 + ], + "score": 0.92, + "content": "\\{ \\mathbf { U } _ { 1 } ^ { * } , \\cdot \\cdot \\cdot , \\mathbf { U } _ { L } ^ { * } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 169, + 509, + 191, + 526 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 192, + 509, + 265, + 524 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\sum _ { l = 1 } ^ { L } \\| \\mathbf { U } _ { l } ^ { * } \\| _ { F } ^ { 2 } = 1 } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 509, + 306, + 526 + ], + "score": 1.0, + "content": "such that", + "type": "text" + }, + { + "bbox": [ + 306, + 510, + 433, + 523 + ], + "score": 0.9, + "content": "y _ { i } \\langle \\nabla f _ { \\mathbf { W } ^ { ( 0 ) } } ( \\mathbf { x } _ { i } ) , \\mathbf { U } ^ { * } \\rangle \\geqslant m ^ { 1 / 2 } \\gamma", + "type": "inline_equation" + }, + { + "bbox": [ + 433, + 509, + 479, + 526 + ], + "score": 1.0, + "content": "for at least a", + "type": "text" + }, + { + "bbox": [ + 480, + 512, + 504, + 523 + ], + "score": 0.86, + "content": "1 - \\rho", + "type": "inline_equation" + } + ], + "index": 27 + }, + { + "bbox": [ + 104, + 523, + 506, + 537 + ], + "spans": [ + { + "bbox": [ + 104, + 523, + 311, + 537 + ], + "score": 1.0, + "content": "fraction of the training data. By Lemma B.1, for all", + "type": "text" + }, + { + "bbox": [ + 311, + 524, + 339, + 537 + ], + "score": 0.92, + "content": "i \\in [ n ]", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 523, + 375, + 537 + ], + "score": 1.0, + "content": "we have", + "type": "text" + }, + { + "bbox": [ + 376, + 523, + 490, + 537 + ], + "score": 0.9, + "content": "| f _ { \\mathbf { W } ^ { ( 0 ) } } ( \\mathbf { x } _ { i } ) | \\leqslant C \\sqrt { \\log ( n / \\delta ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 490, + 523, + 506, + 537 + ], + "score": 1.0, + "content": "for", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 104, + 534, + 506, + 547 + ], + "spans": [ + { + "bbox": [ + 104, + 534, + 200, + 547 + ], + "score": 1.0, + "content": "some absolute constant", + "type": "text" + }, + { + "bbox": [ + 200, + 536, + 209, + 545 + ], + "score": 0.8, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 209, + 534, + 335, + 547 + ], + "score": 1.0, + "content": ". Then for any positive constant", + "type": "text" + }, + { + "bbox": [ + 335, + 537, + 342, + 545 + ], + "score": 0.8, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 342, + 534, + 424, + 547 + ], + "score": 1.0, + "content": ", we have for at least", + "type": "text" + }, + { + "bbox": [ + 424, + 537, + 448, + 547 + ], + "score": 0.88, + "content": "1 - \\rho", + "type": "inline_equation" + }, + { + "bbox": [ + 448, + 534, + 506, + 547 + ], + "score": 1.0, + "content": "portion of the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 545, + 129, + 560 + ], + "spans": [ + { + "bbox": [ + 105, + 545, + 129, + 560 + ], + "score": 1.0, + "content": "data,", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 28, + "bbox_fs": [ + 104, + 497, + 506, + 560 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 180, + 562, + 430, + 579 + ], + "lines": [ + { + "bbox": [ + 180, + 562, + 430, + 579 + ], + "spans": [ + { + "bbox": [ + 180, + 562, + 430, + 579 + ], + "score": 0.88, + "content": "y _ { i } \\big ( f _ { \\mathbf { W } ^ { ( 0 ) } } ( \\mathbf { x } _ { i } ) + \\langle \\nabla f _ { \\mathbf { W } ^ { ( 0 ) } } , \\lambda \\mathbf { U } ^ { * } \\rangle \\big ) \\geqslant m ^ { 1 / 2 } \\lambda \\gamma - C \\sqrt { \\log ( n / \\delta ) } .", + "type": "interline_equation", + "image_path": "84efaec906cdba75466f5ea399d04947df48f3c5efe1f111772d020059bcfb58.jpg" + } + ] + } + ], + "index": 31, + "virtual_lines": [ + { + "bbox": [ + 180, + 562, + 430, + 579 + ], + "spans": [], + "index": 31 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 583, + 249, + 594 + ], + "lines": [ + { + "bbox": [ + 106, + 582, + 250, + 595 + ], + "spans": [ + { + "bbox": [ + 106, + 582, + 250, + 595 + ], + "score": 1.0, + "content": "For this fraction of data, we can set", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32, + "bbox_fs": [ + 106, + 582, + 250, + 595 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 235, + 598, + 375, + 628 + ], + "lines": [ + { + "bbox": [ + 235, + 598, + 375, + 628 + ], + "spans": [ + { + "bbox": [ + 235, + 598, + 375, + 628 + ], + "score": 0.94, + "content": "\\lambda = \\frac { C ^ { \\prime } \\big [ \\log ^ { 1 / 2 } ( n / \\delta ) + \\log ( 1 / \\epsilon ) \\big ] } { m ^ { 1 / 2 } \\gamma } ,", + "type": "interline_equation", + "image_path": "0236c0890f07e46feb6b4e1d42e75ba955b4671faea08bf026ed0bccd81a1af0.jpg" + } + ] + } + ], + "index": 33.5, + "virtual_lines": [ + { + "bbox": [ + 235, + 598, + 375, + 613.0 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 235, + 613.0, + 375, + 628.0 + ], + "spans": [], + "index": 34 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 633, + 272, + 645 + ], + "lines": [ + { + "bbox": [ + 105, + 632, + 273, + 647 + ], + "spans": [ + { + "bbox": [ + 105, + 632, + 133, + 647 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 634, + 145, + 644 + ], + "score": 0.86, + "content": "C ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 632, + 273, + 647 + ], + "score": 1.0, + "content": "is an absolute constant, and get", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35, + "bbox_fs": [ + 105, + 632, + 273, + 647 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 230, + 650, + 380, + 666 + ], + "lines": [ + { + "bbox": [ + 230, + 650, + 380, + 666 + ], + "spans": [ + { + "bbox": [ + 230, + 650, + 380, + 666 + ], + "score": 0.92, + "content": "m ^ { 1 / 2 } \\lambda \\gamma - C \\sqrt { \\log ( n / \\delta ) } \\geqslant \\log ( 1 / \\epsilon ) .", + "type": "interline_equation", + "image_path": "026dbcd46f20fe5e4b80eec81a6f19da2681080c76b56a34dba7265b0d9a771c.jpg" + } + ] + } + ], + "index": 36, + "virtual_lines": [ + { + "bbox": [ + 230, + 650, + 380, + 666 + ], + "spans": [], + "index": 36 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 672, + 506, + 708 + ], + "lines": [ + { + "bbox": [ + 105, + 671, + 505, + 685 + ], + "spans": [ + { + "bbox": [ + 105, + 671, + 160, + 685 + ], + "score": 1.0, + "content": "Now we let", + "type": "text" + }, + { + "bbox": [ + 161, + 672, + 255, + 684 + ], + "score": 0.9, + "content": "\\mathbf { W ^ { * } } \\ = \\ \\mathbf { W } ^ { ( 0 ) } + \\lambda \\mathbf { U ^ { * } }", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 671, + 340, + 685 + ], + "score": 1.0, + "content": ". By the choice of", + "type": "text" + }, + { + "bbox": [ + 341, + 673, + 350, + 683 + ], + "score": 0.83, + "content": "R", + "type": "inline_equation" + }, + { + "bbox": [ + 350, + 671, + 474, + 685 + ], + "score": 1.0, + "content": "in Proposition 4.2, we have", + "type": "text" + }, + { + "bbox": [ + 474, + 673, + 505, + 684 + ], + "score": 0.87, + "content": "{ \\bf W } ^ { * } \\in { \\cal U }", + "type": "inline_equation" + } + ], + "index": 37 + }, + { + "bbox": [ + 107, + 683, + 506, + 698 + ], + "spans": [ + { + "bbox": [ + 107, + 684, + 191, + 696 + ], + "score": 0.89, + "content": "\\mathcal { B } ( \\mathbf { W } ^ { ( 0 ) } , R \\cdot m ^ { - 1 / 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 683, + 392, + 698 + ], + "score": 1.0, + "content": ". The above inequality implies that for at least ˘", + "type": "text" + }, + { + "bbox": [ + 393, + 685, + 418, + 697 + ], + "score": 0.89, + "content": "1 - \\rho", + "type": "inline_equation" + }, + { + "bbox": [ + 418, + 683, + 506, + 698 + ], + "score": 1.0, + "content": "fraction of data, we", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 695, + 338, + 710 + ], + "spans": [ + { + "bbox": [ + 105, + 695, + 127, + 710 + ], + "score": 1.0, + "content": "have", + "type": "text" + }, + { + "bbox": [ + 128, + 696, + 228, + 709 + ], + "score": 0.89, + "content": "\\ell \\left( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ^ { * } } ( \\mathbf { x } _ { i } ) \\right) \\leqslant \\epsilon .", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 695, + 338, + 710 + ], + "score": 1.0, + "content": ". For the rest data, we have", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38, + "bbox_fs": [ + 105, + 671, + 506, + 710 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 147, + 714, + 464, + 731 + ], + "lines": [ + { + "bbox": [ + 147, + 714, + 464, + 731 + ], + "spans": [ + { + "bbox": [ + 147, + 714, + 464, + 731 + ], + "score": 0.9, + "content": "y _ { i } \\big ( f _ { \\mathbf { W } ^ { ( 0 ) } } ( \\mathbf { x } _ { i } ) + \\langle \\nabla f _ { \\mathbf { W } ^ { ( 0 ) } } , \\lambda \\mathbf { U } ^ { * } \\rangle \\big ) \\geqslant - C \\sqrt { \\log ( n / \\delta ) } - \\lambda \\| \\nabla f _ { \\mathbf { W } ^ { ( 0 ) } } \\| _ { 2 } ^ { 2 } \\geqslant - C _ { 1 } R", + "type": "interline_equation", + "image_path": "d7cb67a287aacd300159e1a19da5ef07963c0fcc2fa1cb4f50f7e96764a7ade3.jpg" + } + ] + } + ], + "index": 40, + "virtual_lines": [ + { + "bbox": [ + 147, + 714, + 464, + 731 + ], + "spans": [], + "index": 40 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 81, + 505, + 129 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 246, + 96 + ], + "score": 1.0, + "content": "for some absolute positive constant", + "type": "text" + }, + { + "bbox": [ + 246, + 83, + 258, + 93 + ], + "score": 0.9, + "content": "C _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 81, + 447, + 96 + ], + "score": 1.0, + "content": ", where the last inequality follows from fact that", + "type": "text" + }, + { + "bbox": [ + 447, + 82, + 505, + 95 + ], + "score": 0.92, + "content": "\\| \\nabla f _ { \\mathbf { W } ^ { ( 0 ) } } \\| _ { 2 } =", + "type": "inline_equation" + } + ], + "index": 0 + }, + { + "bbox": [ + 107, + 93, + 507, + 110 + ], + "spans": [ + { + "bbox": [ + 107, + 94, + 144, + 108 + ], + "score": 0.92, + "content": "\\tilde { \\mathcal { O } } ( m ^ { 1 / 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 93, + 507, + 110 + ], + "score": 1.0, + "content": "(see Lemma A.1 for detail). Then note that we use cross-entropy loss, it follows that for` ˘", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 105, + 506, + 120 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 254, + 120 + ], + "score": 1.0, + "content": "this fraction of training data, we have", + "type": "text" + }, + { + "bbox": [ + 254, + 106, + 369, + 119 + ], + "score": 0.92, + "content": "\\ell \\left( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ^ { * } } ( \\mathbf { x } _ { i } ) \\right) \\leqslant C _ { 2 } R", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 105, + 441, + 120 + ], + "score": 1.0, + "content": "for some constant", + "type": "text" + }, + { + "bbox": [ + 442, + 107, + 454, + 118 + ], + "score": 0.88, + "content": "C _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 455, + 105, + 506, + 120 + ], + "score": 1.0, + "content": ". Combining", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 118, + 372, + 130 + ], + "spans": [ + { + "bbox": [ + 106, + 118, + 372, + 130 + ], + "score": 1.0, + "content": "the results of these two fractions of training data, we can conclude", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5 + }, + { + "type": "interline_equation", + "bbox": [ + 181, + 133, + 430, + 164 + ], + "lines": [ + { + "bbox": [ + 181, + 133, + 430, + 164 + ], + "spans": [ + { + "bbox": [ + 181, + 133, + 430, + 164 + ], + "score": 0.93, + "content": "\\epsilon _ { \\mathrm { N T R F } } \\leqslant n ^ { - 1 } \\sum _ { i = 1 } ^ { n } \\ell \\big ( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ^ { * } } ( \\mathbf { x } _ { i } ) \\big ) \\leqslant ( 1 - \\rho ) \\epsilon + \\rho \\cdot \\mathcal { O } ( R )", + "type": "interline_equation", + "image_path": "f03f9e39baf398dac9c076a0a5badffcf3e091e34a5c57208a2fa3101415e402.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 181, + 133, + 430, + 143.33333333333334 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 181, + 143.33333333333334, + 430, + 153.66666666666669 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 181, + 153.66666666666669, + 430, + 164.00000000000003 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 167, + 210, + 180 + ], + "lines": [ + { + "bbox": [ + 105, + 167, + 210, + 181 + ], + "spans": [ + { + "bbox": [ + 105, + 167, + 210, + 181 + ], + "score": 1.0, + "content": "This completes the proof.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "title", + "bbox": [ + 107, + 209, + 253, + 220 + ], + "lines": [ + { + "bbox": [ + 105, + 208, + 254, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 208, + 254, + 222 + ], + "score": 1.0, + "content": "B.2 PROOF OF PROPOSITION 4.4", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 106, + 229, + 505, + 253 + ], + "lines": [ + { + "bbox": [ + 105, + 228, + 506, + 243 + ], + "spans": [ + { + "bbox": [ + 105, + 228, + 506, + 243 + ], + "score": 1.0, + "content": "Proof of Proposition 4.4. We are going to prove that Assumption 4.3 implies the existence of a good", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 240, + 255, + 253 + ], + "spans": [ + { + "bbox": [ + 106, + 240, + 255, + 253 + ], + "score": 1.0, + "content": "function in the NTRF function class.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5 + }, + { + "type": "text", + "bbox": [ + 106, + 257, + 505, + 295 + ], + "lines": [ + { + "bbox": [ + 106, + 257, + 505, + 270 + ], + "spans": [ + { + "bbox": [ + 106, + 257, + 505, + 270 + ], + "score": 1.0, + "content": "By Definition 3.2 and the definition of cross-entropy loss, our goal is to prove that there exists", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 102, + 266, + 505, + 286 + ], + "spans": [ + { + "bbox": [ + 102, + 266, + 207, + 286 + ], + "score": 1.0, + "content": "a collection of matrices", + "type": "text" + }, + { + "bbox": [ + 207, + 270, + 282, + 284 + ], + "score": 0.93, + "content": "\\overline { { \\mathbf { W } } } = \\{ \\overline { { \\mathbf { W } } } _ { 1 } , \\overline { { \\mathbf { W } } } _ { 2 } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 266, + 326, + 286 + ], + "score": 1.0, + "content": "satisfying", + "type": "text" + }, + { + "bbox": [ + 326, + 268, + 505, + 284 + ], + "score": 0.9, + "content": "\\operatorname* { m a x } \\{ \\| \\overline { { \\mathbf { W } } } _ { 1 } - \\mathbf { W } _ { 1 } ^ { ( 0 ) } \\| _ { F } , \\| \\overline { { \\mathbf { W } } } _ { 2 } - \\mathbf { W } _ { 2 } ^ { ( 0 ) } \\| _ { 2 } \\} \\leqslant", + "type": "inline_equation" + } + ], + "index": 12 + }, + { + "bbox": [ + 107, + 281, + 190, + 296 + ], + "spans": [ + { + "bbox": [ + 107, + 282, + 149, + 294 + ], + "score": 0.93, + "content": "R \\cdot m ^ { - 1 / 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 281, + 190, + 296 + ], + "score": 1.0, + "content": "such that", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12 + }, + { + "type": "interline_equation", + "bbox": [ + 124, + 297, + 485, + 314 + ], + "lines": [ + { + "bbox": [ + 124, + 297, + 485, + 314 + ], + "spans": [ + { + "bbox": [ + 124, + 297, + 485, + 314 + ], + "score": 0.87, + "content": "y _ { i } \\cdot \\left[ f _ { \\mathbf { W } ^ { ( 0 ) } } ( \\mathbf { x } _ { i } ) + \\langle \\nabla _ { \\mathbf { W } _ { 1 } } f _ { \\mathbf { W } ^ { ( 0 ) } } , \\overline { { \\mathbf { W } } } _ { 1 } - \\mathbf { W } _ { 1 } ^ { ( 0 ) } \\rangle + \\langle \\nabla _ { \\mathbf { W } _ { 2 } } f _ { \\mathbf { W } ^ { ( 0 ) } } , \\overline { { \\mathbf { W } } } _ { 2 } - \\mathbf { W } _ { 2 } ^ { ( 0 ) } \\rangle \\right] \\geqslant \\log ( 2 / \\epsilon ) .", + "type": "interline_equation", + "image_path": "9838152c89e782996889de5e45383902c2982ee6e855c06bbcce59e8c9b69630.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 124, + 297, + 485, + 314 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 316, + 323, + 329 + ], + "lines": [ + { + "bbox": [ + 106, + 316, + 323, + 330 + ], + "spans": [ + { + "bbox": [ + 106, + 316, + 176, + 330 + ], + "score": 1.0, + "content": "We first consider", + "type": "text" + }, + { + "bbox": [ + 176, + 317, + 240, + 329 + ], + "score": 0.93, + "content": "\\nabla _ { \\mathbf { W } _ { 1 } } f _ { \\mathbf { W } ^ { ( 0 ) } } \\left( \\mathbf { x } _ { i } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 240, + 316, + 323, + 330 + ], + "score": 1.0, + "content": ", which has the form", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "interline_equation", + "bbox": [ + 195, + 332, + 415, + 352 + ], + "lines": [ + { + "bbox": [ + 195, + 332, + 415, + 352 + ], + "spans": [ + { + "bbox": [ + 195, + 332, + 415, + 352 + ], + "score": 0.91, + "content": "\\big ( \\nabla _ { \\mathbf { W } _ { 1 } } f _ { \\mathbf { W } ^ { ( 0 ) } } ( \\mathbf { x } _ { i } ) \\big ) _ { j } = m ^ { 1 / 2 } \\cdot w _ { 2 , j } ^ { ( 0 ) } \\cdot \\sigma ^ { \\prime } \\big ( \\langle \\mathbf { w } _ { 1 , j } ^ { ( 0 ) } , \\mathbf { x } _ { i } \\rangle \\big ) \\cdot \\mathbf { x } _ { i } .", + "type": "interline_equation", + "image_path": "c4e5b1f4f0e74ce4724eb51738d5f8e9a06247a0221f999eeae944151ef952ae.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 195, + 332, + 415, + 352 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 355, + 506, + 440 + ], + "lines": [ + { + "bbox": [ + 105, + 355, + 505, + 375 + ], + "spans": [ + { + "bbox": [ + 105, + 356, + 167, + 372 + ], + "score": 1.0, + "content": "Note that wp0q2,j", + "type": "text" + }, + { + "bbox": [ + 163, + 356, + 205, + 375 + ], + "score": 1.0, + "content": "and wp0q1,j", + "type": "text" + }, + { + "bbox": [ + 203, + 355, + 339, + 371 + ], + "score": 1.0, + "content": "are independently generated from", + "type": "text" + }, + { + "bbox": [ + 339, + 358, + 385, + 370 + ], + "score": 0.93, + "content": "\\mathcal { N } ( 0 , 1 / m )", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 355, + 403, + 371 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 403, + 358, + 453, + 370 + ], + "score": 0.92, + "content": "\\mathcal { N } ( 0 , 2 \\mathbf { I } / m )", + "type": "inline_equation" + }, + { + "bbox": [ + 453, + 355, + 505, + 371 + ], + "score": 1.0, + "content": "respectively,", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 103, + 367, + 506, + 391 + ], + "spans": [ + { + "bbox": [ + 103, + 367, + 165, + 391 + ], + "score": 1.0, + "content": "thus we have", + "type": "text" + }, + { + "bbox": [ + 165, + 372, + 298, + 387 + ], + "score": 0.93, + "content": "\\mathbb { P } ( | w _ { 2 , j } ^ { ( 0 ) } | \\geqslant 0 . 4 7 m ^ { - 1 / 2 } ) \\geqslant 1 / 2", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 367, + 506, + 391 + ], + "score": 1.0, + "content": ". By Hoeffeding’s inequality, we know that with", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 386, + 507, + 399 + ], + "spans": [ + { + "bbox": [ + 105, + 386, + 187, + 399 + ], + "score": 1.0, + "content": "probability at least", + "type": "text" + }, + { + "bbox": [ + 187, + 387, + 254, + 399 + ], + "score": 0.89, + "content": "1 - \\exp ( - m / 8 )", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 386, + 330, + 399 + ], + "score": 1.0, + "content": ", there are at least", + "type": "text" + }, + { + "bbox": [ + 330, + 387, + 349, + 399 + ], + "score": 0.89, + "content": "m / 4", + "type": "inline_equation" + }, + { + "bbox": [ + 350, + 386, + 494, + 399 + ], + "score": 1.0, + "content": "nodes, whose union is denoted by", + "type": "text" + }, + { + "bbox": [ + 495, + 387, + 502, + 397 + ], + "score": 0.79, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 386, + 507, + 399 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 104, + 396, + 506, + 416 + ], + "spans": [ + { + "bbox": [ + 104, + 396, + 148, + 416 + ], + "score": 1.0, + "content": "satisfying", + "type": "text" + }, + { + "bbox": [ + 149, + 398, + 231, + 414 + ], + "score": 0.93, + "content": "| w _ { 2 , j } ^ { ( 0 ) } | \\geqslant 0 . 4 7 m ^ { - 1 / 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 396, + 410, + 416 + ], + "score": 1.0, + "content": ". Then we only focus on the nodes in the set", + "type": "text" + }, + { + "bbox": [ + 411, + 401, + 419, + 410 + ], + "score": 0.77, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 419, + 396, + 462, + 416 + ], + "score": 1.0, + "content": ". Note that", + "type": "text" + }, + { + "bbox": [ + 463, + 398, + 486, + 413 + ], + "score": 0.92, + "content": "\\mathbf { W } _ { 1 } ^ { ( 0 ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 396, + 506, + 416 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 411, + 507, + 431 + ], + "spans": [ + { + "bbox": [ + 106, + 413, + 129, + 428 + ], + "score": 0.91, + "content": "\\mathbf { W } _ { 2 } ^ { ( 0 ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 130, + 411, + 507, + 431 + ], + "score": 1.0, + "content": "are independently generated. Then by Assumption 4.3 and Hoeffeding’s inequality, there exists", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 426, + 381, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 149, + 441 + ], + "score": 1.0, + "content": "a function", + "type": "text" + }, + { + "bbox": [ + 150, + 427, + 214, + 440 + ], + "score": 0.92, + "content": "\\overline { { \\mathbf { u } } } ( \\cdot ) : \\mathbb { R } ^ { d } \\mathbb { R } ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 215, + 426, + 351, + 441 + ], + "score": 1.0, + "content": "such that with probability at least", + "type": "text" + }, + { + "bbox": [ + 351, + 428, + 376, + 439 + ], + "score": 0.9, + "content": "1 - \\delta ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 377, + 426, + 381, + 441 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 19.5 + }, + { + "type": "interline_equation", + "bbox": [ + 175, + 443, + 436, + 479 + ], + "lines": [ + { + "bbox": [ + 175, + 443, + 436, + 479 + ], + "spans": [ + { + "bbox": [ + 175, + 443, + 436, + 479 + ], + "score": 0.92, + "content": "\\frac { 1 } { | \\cal { S } | } \\sum _ { j \\in \\cal { S } } y _ { i } \\cdot \\langle \\overline { { \\mathbf { u } } } ( \\mathbf { w } _ { 1 , j } ^ { ( 0 ) } ) , \\mathbf { x } _ { i } \\rangle \\cdot \\sigma ^ { \\prime } ( \\langle \\mathbf { w } _ { 1 , j } ^ { ( 0 ) } , \\mathbf { x } _ { i } \\rangle ) \\geqslant \\gamma - \\sqrt { \\frac { 2 \\log ( 1 / \\delta ^ { \\prime } ) } { | \\cal { S } | } } .", + "type": "interline_equation", + "image_path": "eacad4c81f25675a40b417f83bae4296a8626a8d69473974344e0ae629ea1247.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 175, + 443, + 436, + 455.0 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 175, + 455.0, + 436, + 467.0 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 175, + 467.0, + 436, + 479.0 + ], + "spans": [], + "index": 25 + } + ] + }, + { + "type": "text", + "bbox": [ + 104, + 484, + 460, + 499 + ], + "lines": [ + { + "bbox": [ + 104, + 481, + 462, + 501 + ], + "spans": [ + { + "bbox": [ + 104, + 481, + 135, + 501 + ], + "score": 1.0, + "content": "Define", + "type": "text" + }, + { + "bbox": [ + 136, + 483, + 215, + 500 + ], + "score": 0.94, + "content": "\\mathbf { v } _ { j } = \\overline { { \\mathbf { u } } } ( \\mathbf { w } _ { 1 , j } ^ { ( 0 ) } ) / w _ { 2 , j }", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 481, + 225, + 501 + ], + "score": 1.0, + "content": "if", + "type": "text" + }, + { + "bbox": [ + 226, + 485, + 307, + 499 + ], + "score": 0.93, + "content": "\\lvert w _ { 2 , j } \\rvert \\geqslant 0 . 4 7 m ^ { - 1 / 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 307, + 481, + 325, + 501 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 325, + 487, + 356, + 499 + ], + "score": 0.91, + "content": "\\mathbf { v } _ { j } = \\mathbf { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 356, + 481, + 462, + 501 + ], + "score": 1.0, + "content": "otherwise. Then we have", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "interline_equation", + "bbox": [ + 145, + 504, + 466, + 555 + ], + "lines": [ + { + "bbox": [ + 145, + 504, + 466, + 555 + ], + "spans": [ + { + "bbox": [ + 145, + 504, + 466, + 555 + ], + "score": 0.92, + "content": "\\begin{array} { r l } & { ~ \\displaystyle \\sum _ { j = 1 } ^ { m } y _ { i } \\cdot w _ { 2 , j } ^ { ( 0 ) } \\cdot \\langle \\mathbf { v } _ { j } , \\mathbf { x } _ { i } \\rangle \\cdot \\sigma ^ { \\prime } \\big ( \\langle \\mathbf { w } _ { 1 , j } ^ { ( 0 ) } , \\mathbf { x } _ { i } \\rangle \\big ) = \\displaystyle \\sum _ { j \\in S } y _ { i } \\cdot \\langle \\mathbf { \\overline { { u } } } ( \\mathbf { w } _ { 1 , j } ^ { ( 0 ) } ) , \\mathbf { x } _ { i } \\rangle \\cdot \\sigma ^ { \\prime } \\big ( \\langle \\mathbf { w } _ { 1 , j } ^ { ( 0 ) } , \\mathbf { x } _ { i } \\rangle \\big ) } \\\\ & { \\quad \\quad \\quad \\geqslant | S | \\gamma - \\sqrt { 2 | S | \\log ( 1 / \\delta ^ { \\prime } ) } . } \\end{array}", + "type": "interline_equation", + "image_path": "8942c4d2f2cbc4509c797ce3b678692420f63e3eb9ddce2b4494731dfa3a9fca.jpg" + } + ] + } + ], + "index": 28, + "virtual_lines": [ + { + "bbox": [ + 145, + 504, + 466, + 521.0 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 145, + 521.0, + 466, + 538.0 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 145, + 538.0, + 466, + 555.0 + ], + "spans": [], + "index": 29 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 556, + 426, + 569 + ], + "lines": [ + { + "bbox": [ + 105, + 554, + 426, + 571 + ], + "spans": [ + { + "bbox": [ + 105, + 554, + 122, + 571 + ], + "score": 1.0, + "content": "Set", + "type": "text" + }, + { + "bbox": [ + 122, + 557, + 159, + 567 + ], + "score": 0.92, + "content": "\\delta = 2 n \\delta ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 554, + 389, + 571 + ], + "score": 1.0, + "content": "and apply union bound, we have with probability at least", + "type": "text" + }, + { + "bbox": [ + 389, + 556, + 421, + 569 + ], + "score": 0.88, + "content": "1 - \\delta / 2", + "type": "inline_equation" + }, + { + "bbox": [ + 422, + 554, + 426, + 571 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "interline_equation", + "bbox": [ + 168, + 572, + 442, + 605 + ], + "lines": [ + { + "bbox": [ + 168, + 572, + 442, + 605 + ], + "spans": [ + { + "bbox": [ + 168, + 572, + 442, + 605 + ], + "score": 0.91, + "content": "\\sum _ { j = 1 } ^ { m } y _ { i } \\cdot w _ { 2 , j } ^ { ( 0 ) } \\cdot \\left. \\mathbf { v } _ { j } , \\mathbf { x } _ { i } \\right. \\cdot \\sigma ^ { \\prime } ( \\left. \\mathbf { w } _ { 1 , j } ^ { ( 0 ) } , \\mathbf { x } _ { i } \\right. ) \\geqslant | S | \\gamma - \\sqrt { 2 | S | \\log ( 2 n / \\delta ) } .", + "type": "interline_equation", + "image_path": "874fde4dbbe4b35c788d18e3b7c75c6d57bed9f4357ef8f048206a1f80b1a3b2.jpg" + } + ] + } + ], + "index": 32, + "virtual_lines": [ + { + "bbox": [ + 168, + 572, + 442, + 583.0 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 168, + 583.0, + 442, + 594.0 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 168, + 594.0, + 442, + 605.0 + ], + "spans": [], + "index": 33 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 609, + 506, + 644 + ], + "lines": [ + { + "bbox": [ + 106, + 608, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 106, + 608, + 290, + 622 + ], + "score": 1.0, + "content": "Therefore, note that with probability at least", + "type": "text" + }, + { + "bbox": [ + 290, + 609, + 357, + 621 + ], + "score": 0.91, + "content": "1 - \\exp ( - m / 8 )", + "type": "inline_equation" + }, + { + "bbox": [ + 357, + 608, + 398, + 622 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + }, + { + "bbox": [ + 399, + 609, + 444, + 621 + ], + "score": 0.92, + "content": "| { \\mathcal { S } } | \\geqslant m / 4", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 608, + 505, + 622 + ], + "score": 1.0, + "content": ". Moreover, in", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 619, + 507, + 634 + ], + "spans": [ + { + "bbox": [ + 105, + 619, + 189, + 634 + ], + "score": 1.0, + "content": "Assumption 4.3, by", + "type": "text" + }, + { + "bbox": [ + 189, + 621, + 231, + 632 + ], + "score": 0.91, + "content": "y _ { i } \\in \\left\\{ \\pm 1 \\right\\}", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 619, + 251, + 634 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 251, + 620, + 356, + 632 + ], + "score": 0.88, + "content": "| \\sigma ^ { \\prime } ( \\cdot ) | , \\| \\overline { { \\mathbf { u } } } ( \\cdot ) \\| _ { 2 } , \\| \\mathbf { x } _ { i } \\| _ { 2 } \\leqslant 1", + "type": "inline_equation" + }, + { + "bbox": [ + 357, + 619, + 372, + 634 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 373, + 621, + 425, + 631 + ], + "score": 0.88, + "content": "i = 1 , \\ldots , n", + "type": "inline_equation" + }, + { + "bbox": [ + 425, + 619, + 476, + 634 + ], + "score": 1.0, + "content": ", we see that ˘", + "type": "text" + }, + { + "bbox": [ + 477, + 621, + 503, + 631 + ], + "score": 0.88, + "content": "\\gamma \\leqslant 1", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 619, + 507, + 634 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 630, + 504, + 644 + ], + "spans": [ + { + "bbox": [ + 105, + 630, + 138, + 644 + ], + "score": 1.0, + "content": "Then if", + "type": "text" + }, + { + "bbox": [ + 138, + 631, + 222, + 643 + ], + "score": 0.91, + "content": "m \\geqslant 3 2 \\log ( n / \\delta ) / \\gamma ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 630, + 324, + 644 + ], + "score": 1.0, + "content": ", with probability at least", + "type": "text" + }, + { + "bbox": [ + 324, + 631, + 498, + 644 + ], + "score": 0.88, + "content": "1 - \\delta / 2 - \\exp \\big ( - 4 \\log ( n / \\delta ) / \\gamma ^ { 2 } \\big ) \\geqslant 1 - \\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 498, + 630, + 504, + 644 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35 + }, + { + "type": "interline_equation", + "bbox": [ + 204, + 648, + 405, + 680 + ], + "lines": [ + { + "bbox": [ + 204, + 648, + 405, + 680 + ], + "spans": [ + { + "bbox": [ + 204, + 648, + 405, + 680 + ], + "score": 0.92, + "content": "\\sum _ { j = 1 } ^ { m } y _ { i } \\cdot w _ { 2 , j } ^ { ( 0 ) } \\cdot \\langle \\mathbf { v } _ { j } , \\mathbf { x } _ { i } \\rangle \\cdot \\sigma ^ { \\prime } ( \\langle \\mathbf { w } _ { 1 , j } ^ { ( 0 ) } , \\mathbf { x } _ { i } \\rangle ) \\geqslant | \\mathcal { S } | \\gamma / 2 .", + "type": "interline_equation", + "image_path": "eb9063b443ecb3b3139e6949c47227f835d6c5972c342d622620bf0fd4da8374.jpg" + } + ] + } + ], + "index": 37.5, + "virtual_lines": [ + { + "bbox": [ + 204, + 648, + 405, + 664.0 + ], + "spans": [], + "index": 37 + }, + { + "bbox": [ + 204, + 664.0, + 405, + 680.0 + ], + "spans": [], + "index": 38 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 684, + 295, + 699 + ], + "lines": [ + { + "bbox": [ + 105, + 683, + 298, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 683, + 122, + 700 + ], + "score": 1.0, + "content": "Let", + "type": "text" + }, + { + "bbox": [ + 123, + 684, + 258, + 699 + ], + "score": 0.93, + "content": "\\mathbf { U } = ( \\mathbf { v } _ { 1 } , \\mathbf { v } _ { 2 } , \\cdot \\cdot \\cdot , \\mathbf { v } _ { m } ) ^ { \\top } / \\sqrt { m | S | }", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 683, + 298, + 700 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 39 + }, + { + "type": "interline_equation", + "bbox": [ + 116, + 703, + 492, + 735 + ], + "lines": [ + { + "bbox": [ + 116, + 703, + 492, + 735 + ], + "spans": [ + { + "bbox": [ + 116, + 703, + 492, + 735 + ], + "score": 0.94, + "content": "y _ { i } \\langle \\nabla _ { \\mathbf { W } _ { 1 } } f _ { \\mathbf { W } ^ { ( 0 ) } } ( \\mathbf { x } _ { i } ) , \\mathbf { U } \\rangle = \\frac { 1 } { \\sqrt { | \\mathcal { S } | } } \\sum _ { j = 1 } ^ { m } y _ { i } \\cdot w _ { 2 , j } ^ { ( 0 ) } \\cdot \\langle \\mathbf { v } _ { j } , \\mathbf { x } _ { i } \\rangle \\cdot \\sigma ^ { \\prime } \\big ( \\langle \\mathbf { w } _ { 1 , j } ^ { ( 0 ) } , \\mathbf { x } _ { i } \\rangle \\big ) \\geqslant \\frac { \\sqrt { | \\mathcal { S } | } \\gamma } { 2 } \\geqslant \\frac { m ^ { 1 / 2 } \\gamma } { 4 } ,", + "type": "interline_equation", + "image_path": "986fd2271e2e06855c98f7f2312a30861a3341b86219bd9bd1b2bac9d8c85b96.jpg" + } + ] + } + ], + "index": 41, + "virtual_lines": [ + { + "bbox": [ + 116, + 703, + 492, + 713.6666666666666 + ], + "spans": [], + "index": 40 + }, + { + "bbox": [ + 116, + 713.6666666666666, + 492, + 724.3333333333333 + ], + "spans": [], + "index": 41 + }, + { + "bbox": [ + 116, + 724.3333333333333, + 492, + 734.9999999999999 + ], + "spans": [], + "index": 42 + } + ] + } + ], + "page_idx": 14, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 26, + 293, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "15", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 494, + 184, + 505, + 195 + ], + "lines": [ + { + "bbox": [ + 496, + 186, + 505, + 196 + ], + "spans": [ + { + "bbox": [ + 496, + 186, + 505, + 196 + ], + "score": 0.999, + "content": "□", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 81, + 505, + 129 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 246, + 96 + ], + "score": 1.0, + "content": "for some absolute positive constant", + "type": "text" + }, + { + "bbox": [ + 246, + 83, + 258, + 93 + ], + "score": 0.9, + "content": "C _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 81, + 447, + 96 + ], + "score": 1.0, + "content": ", where the last inequality follows from fact that", + "type": "text" + }, + { + "bbox": [ + 447, + 82, + 505, + 95 + ], + "score": 0.92, + "content": "\\| \\nabla f _ { \\mathbf { W } ^ { ( 0 ) } } \\| _ { 2 } =", + "type": "inline_equation" + } + ], + "index": 0 + }, + { + "bbox": [ + 107, + 93, + 507, + 110 + ], + "spans": [ + { + "bbox": [ + 107, + 94, + 144, + 108 + ], + "score": 0.92, + "content": "\\tilde { \\mathcal { O } } ( m ^ { 1 / 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 93, + 507, + 110 + ], + "score": 1.0, + "content": "(see Lemma A.1 for detail). Then note that we use cross-entropy loss, it follows that for` ˘", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 105, + 506, + 120 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 254, + 120 + ], + "score": 1.0, + "content": "this fraction of training data, we have", + "type": "text" + }, + { + "bbox": [ + 254, + 106, + 369, + 119 + ], + "score": 0.92, + "content": "\\ell \\left( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ^ { * } } ( \\mathbf { x } _ { i } ) \\right) \\leqslant C _ { 2 } R", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 105, + 441, + 120 + ], + "score": 1.0, + "content": "for some constant", + "type": "text" + }, + { + "bbox": [ + 442, + 107, + 454, + 118 + ], + "score": 0.88, + "content": "C _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 455, + 105, + 506, + 120 + ], + "score": 1.0, + "content": ". Combining", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 118, + 372, + 130 + ], + "spans": [ + { + "bbox": [ + 106, + 118, + 372, + 130 + ], + "score": 1.0, + "content": "the results of these two fractions of training data, we can conclude", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5, + "bbox_fs": [ + 105, + 81, + 507, + 130 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 181, + 133, + 430, + 164 + ], + "lines": [ + { + "bbox": [ + 181, + 133, + 430, + 164 + ], + "spans": [ + { + "bbox": [ + 181, + 133, + 430, + 164 + ], + "score": 0.93, + "content": "\\epsilon _ { \\mathrm { N T R F } } \\leqslant n ^ { - 1 } \\sum _ { i = 1 } ^ { n } \\ell \\big ( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ^ { * } } ( \\mathbf { x } _ { i } ) \\big ) \\leqslant ( 1 - \\rho ) \\epsilon + \\rho \\cdot \\mathcal { O } ( R )", + "type": "interline_equation", + "image_path": "f03f9e39baf398dac9c076a0a5badffcf3e091e34a5c57208a2fa3101415e402.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 181, + 133, + 430, + 143.33333333333334 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 181, + 143.33333333333334, + 430, + 153.66666666666669 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 181, + 153.66666666666669, + 430, + 164.00000000000003 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 167, + 210, + 180 + ], + "lines": [ + { + "bbox": [ + 105, + 167, + 210, + 181 + ], + "spans": [ + { + "bbox": [ + 105, + 167, + 210, + 181 + ], + "score": 1.0, + "content": "This completes the proof.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7, + "bbox_fs": [ + 105, + 167, + 210, + 181 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 209, + 253, + 220 + ], + "lines": [ + { + "bbox": [ + 105, + 208, + 254, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 208, + 254, + 222 + ], + "score": 1.0, + "content": "B.2 PROOF OF PROPOSITION 4.4", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 106, + 229, + 505, + 253 + ], + "lines": [ + { + "bbox": [ + 105, + 228, + 506, + 243 + ], + "spans": [ + { + "bbox": [ + 105, + 228, + 506, + 243 + ], + "score": 1.0, + "content": "Proof of Proposition 4.4. We are going to prove that Assumption 4.3 implies the existence of a good", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 240, + 255, + 253 + ], + "spans": [ + { + "bbox": [ + 106, + 240, + 255, + 253 + ], + "score": 1.0, + "content": "function in the NTRF function class.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5, + "bbox_fs": [ + 105, + 228, + 506, + 253 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 257, + 505, + 295 + ], + "lines": [ + { + "bbox": [ + 106, + 257, + 505, + 270 + ], + "spans": [ + { + "bbox": [ + 106, + 257, + 505, + 270 + ], + "score": 1.0, + "content": "By Definition 3.2 and the definition of cross-entropy loss, our goal is to prove that there exists", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 102, + 266, + 505, + 286 + ], + "spans": [ + { + "bbox": [ + 102, + 266, + 207, + 286 + ], + "score": 1.0, + "content": "a collection of matrices", + "type": "text" + }, + { + "bbox": [ + 207, + 270, + 282, + 284 + ], + "score": 0.93, + "content": "\\overline { { \\mathbf { W } } } = \\{ \\overline { { \\mathbf { W } } } _ { 1 } , \\overline { { \\mathbf { W } } } _ { 2 } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 266, + 326, + 286 + ], + "score": 1.0, + "content": "satisfying", + "type": "text" + }, + { + "bbox": [ + 326, + 268, + 505, + 284 + ], + "score": 0.9, + "content": "\\operatorname* { m a x } \\{ \\| \\overline { { \\mathbf { W } } } _ { 1 } - \\mathbf { W } _ { 1 } ^ { ( 0 ) } \\| _ { F } , \\| \\overline { { \\mathbf { W } } } _ { 2 } - \\mathbf { W } _ { 2 } ^ { ( 0 ) } \\| _ { 2 } \\} \\leqslant", + "type": "inline_equation" + } + ], + "index": 12 + }, + { + "bbox": [ + 107, + 281, + 190, + 296 + ], + "spans": [ + { + "bbox": [ + 107, + 282, + 149, + 294 + ], + "score": 0.93, + "content": "R \\cdot m ^ { - 1 / 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 281, + 190, + 296 + ], + "score": 1.0, + "content": "such that", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12, + "bbox_fs": [ + 102, + 257, + 505, + 296 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 124, + 297, + 485, + 314 + ], + "lines": [ + { + "bbox": [ + 124, + 297, + 485, + 314 + ], + "spans": [ + { + "bbox": [ + 124, + 297, + 485, + 314 + ], + "score": 0.87, + "content": "y _ { i } \\cdot \\left[ f _ { \\mathbf { W } ^ { ( 0 ) } } ( \\mathbf { x } _ { i } ) + \\langle \\nabla _ { \\mathbf { W } _ { 1 } } f _ { \\mathbf { W } ^ { ( 0 ) } } , \\overline { { \\mathbf { W } } } _ { 1 } - \\mathbf { W } _ { 1 } ^ { ( 0 ) } \\rangle + \\langle \\nabla _ { \\mathbf { W } _ { 2 } } f _ { \\mathbf { W } ^ { ( 0 ) } } , \\overline { { \\mathbf { W } } } _ { 2 } - \\mathbf { W } _ { 2 } ^ { ( 0 ) } \\rangle \\right] \\geqslant \\log ( 2 / \\epsilon ) .", + "type": "interline_equation", + "image_path": "9838152c89e782996889de5e45383902c2982ee6e855c06bbcce59e8c9b69630.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 124, + 297, + 485, + 314 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 316, + 323, + 329 + ], + "lines": [ + { + "bbox": [ + 106, + 316, + 323, + 330 + ], + "spans": [ + { + "bbox": [ + 106, + 316, + 176, + 330 + ], + "score": 1.0, + "content": "We first consider", + "type": "text" + }, + { + "bbox": [ + 176, + 317, + 240, + 329 + ], + "score": 0.93, + "content": "\\nabla _ { \\mathbf { W } _ { 1 } } f _ { \\mathbf { W } ^ { ( 0 ) } } \\left( \\mathbf { x } _ { i } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 240, + 316, + 323, + 330 + ], + "score": 1.0, + "content": ", which has the form", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15, + "bbox_fs": [ + 106, + 316, + 323, + 330 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 195, + 332, + 415, + 352 + ], + "lines": [ + { + "bbox": [ + 195, + 332, + 415, + 352 + ], + "spans": [ + { + "bbox": [ + 195, + 332, + 415, + 352 + ], + "score": 0.91, + "content": "\\big ( \\nabla _ { \\mathbf { W } _ { 1 } } f _ { \\mathbf { W } ^ { ( 0 ) } } ( \\mathbf { x } _ { i } ) \\big ) _ { j } = m ^ { 1 / 2 } \\cdot w _ { 2 , j } ^ { ( 0 ) } \\cdot \\sigma ^ { \\prime } \\big ( \\langle \\mathbf { w } _ { 1 , j } ^ { ( 0 ) } , \\mathbf { x } _ { i } \\rangle \\big ) \\cdot \\mathbf { x } _ { i } .", + "type": "interline_equation", + "image_path": "c4e5b1f4f0e74ce4724eb51738d5f8e9a06247a0221f999eeae944151ef952ae.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 195, + 332, + 415, + 352 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 355, + 506, + 440 + ], + "lines": [ + { + "bbox": [ + 105, + 355, + 505, + 375 + ], + "spans": [ + { + "bbox": [ + 105, + 356, + 167, + 372 + ], + "score": 1.0, + "content": "Note that wp0q2,j", + "type": "text" + }, + { + "bbox": [ + 163, + 356, + 205, + 375 + ], + "score": 1.0, + "content": "and wp0q1,j", + "type": "text" + }, + { + "bbox": [ + 203, + 355, + 339, + 371 + ], + "score": 1.0, + "content": "are independently generated from", + "type": "text" + }, + { + "bbox": [ + 339, + 358, + 385, + 370 + ], + "score": 0.93, + "content": "\\mathcal { N } ( 0 , 1 / m )", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 355, + 403, + 371 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 403, + 358, + 453, + 370 + ], + "score": 0.92, + "content": "\\mathcal { N } ( 0 , 2 \\mathbf { I } / m )", + "type": "inline_equation" + }, + { + "bbox": [ + 453, + 355, + 505, + 371 + ], + "score": 1.0, + "content": "respectively,", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 103, + 367, + 506, + 391 + ], + "spans": [ + { + "bbox": [ + 103, + 367, + 165, + 391 + ], + "score": 1.0, + "content": "thus we have", + "type": "text" + }, + { + "bbox": [ + 165, + 372, + 298, + 387 + ], + "score": 0.93, + "content": "\\mathbb { P } ( | w _ { 2 , j } ^ { ( 0 ) } | \\geqslant 0 . 4 7 m ^ { - 1 / 2 } ) \\geqslant 1 / 2", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 367, + 506, + 391 + ], + "score": 1.0, + "content": ". By Hoeffeding’s inequality, we know that with", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 386, + 507, + 399 + ], + "spans": [ + { + "bbox": [ + 105, + 386, + 187, + 399 + ], + "score": 1.0, + "content": "probability at least", + "type": "text" + }, + { + "bbox": [ + 187, + 387, + 254, + 399 + ], + "score": 0.89, + "content": "1 - \\exp ( - m / 8 )", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 386, + 330, + 399 + ], + "score": 1.0, + "content": ", there are at least", + "type": "text" + }, + { + "bbox": [ + 330, + 387, + 349, + 399 + ], + "score": 0.89, + "content": "m / 4", + "type": "inline_equation" + }, + { + "bbox": [ + 350, + 386, + 494, + 399 + ], + "score": 1.0, + "content": "nodes, whose union is denoted by", + "type": "text" + }, + { + "bbox": [ + 495, + 387, + 502, + 397 + ], + "score": 0.79, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 386, + 507, + 399 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 104, + 396, + 506, + 416 + ], + "spans": [ + { + "bbox": [ + 104, + 396, + 148, + 416 + ], + "score": 1.0, + "content": "satisfying", + "type": "text" + }, + { + "bbox": [ + 149, + 398, + 231, + 414 + ], + "score": 0.93, + "content": "| w _ { 2 , j } ^ { ( 0 ) } | \\geqslant 0 . 4 7 m ^ { - 1 / 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 396, + 410, + 416 + ], + "score": 1.0, + "content": ". Then we only focus on the nodes in the set", + "type": "text" + }, + { + "bbox": [ + 411, + 401, + 419, + 410 + ], + "score": 0.77, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 419, + 396, + 462, + 416 + ], + "score": 1.0, + "content": ". Note that", + "type": "text" + }, + { + "bbox": [ + 463, + 398, + 486, + 413 + ], + "score": 0.92, + "content": "\\mathbf { W } _ { 1 } ^ { ( 0 ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 396, + 506, + 416 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 411, + 507, + 431 + ], + "spans": [ + { + "bbox": [ + 106, + 413, + 129, + 428 + ], + "score": 0.91, + "content": "\\mathbf { W } _ { 2 } ^ { ( 0 ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 130, + 411, + 507, + 431 + ], + "score": 1.0, + "content": "are independently generated. Then by Assumption 4.3 and Hoeffeding’s inequality, there exists", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 426, + 381, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 149, + 441 + ], + "score": 1.0, + "content": "a function", + "type": "text" + }, + { + "bbox": [ + 150, + 427, + 214, + 440 + ], + "score": 0.92, + "content": "\\overline { { \\mathbf { u } } } ( \\cdot ) : \\mathbb { R } ^ { d } \\mathbb { R } ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 215, + 426, + 351, + 441 + ], + "score": 1.0, + "content": "such that with probability at least", + "type": "text" + }, + { + "bbox": [ + 351, + 428, + 376, + 439 + ], + "score": 0.9, + "content": "1 - \\delta ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 377, + 426, + 381, + 441 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 19.5, + "bbox_fs": [ + 103, + 355, + 507, + 441 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 175, + 443, + 436, + 479 + ], + "lines": [ + { + "bbox": [ + 175, + 443, + 436, + 479 + ], + "spans": [ + { + "bbox": [ + 175, + 443, + 436, + 479 + ], + "score": 0.92, + "content": "\\frac { 1 } { | \\cal { S } | } \\sum _ { j \\in \\cal { S } } y _ { i } \\cdot \\langle \\overline { { \\mathbf { u } } } ( \\mathbf { w } _ { 1 , j } ^ { ( 0 ) } ) , \\mathbf { x } _ { i } \\rangle \\cdot \\sigma ^ { \\prime } ( \\langle \\mathbf { w } _ { 1 , j } ^ { ( 0 ) } , \\mathbf { x } _ { i } \\rangle ) \\geqslant \\gamma - \\sqrt { \\frac { 2 \\log ( 1 / \\delta ^ { \\prime } ) } { | \\cal { S } | } } .", + "type": "interline_equation", + "image_path": "eacad4c81f25675a40b417f83bae4296a8626a8d69473974344e0ae629ea1247.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 175, + 443, + 436, + 455.0 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 175, + 455.0, + 436, + 467.0 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 175, + 467.0, + 436, + 479.0 + ], + "spans": [], + "index": 25 + } + ] + }, + { + "type": "text", + "bbox": [ + 104, + 484, + 460, + 499 + ], + "lines": [ + { + "bbox": [ + 104, + 481, + 462, + 501 + ], + "spans": [ + { + "bbox": [ + 104, + 481, + 135, + 501 + ], + "score": 1.0, + "content": "Define", + "type": "text" + }, + { + "bbox": [ + 136, + 483, + 215, + 500 + ], + "score": 0.94, + "content": "\\mathbf { v } _ { j } = \\overline { { \\mathbf { u } } } ( \\mathbf { w } _ { 1 , j } ^ { ( 0 ) } ) / w _ { 2 , j }", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 481, + 225, + 501 + ], + "score": 1.0, + "content": "if", + "type": "text" + }, + { + "bbox": [ + 226, + 485, + 307, + 499 + ], + "score": 0.93, + "content": "\\lvert w _ { 2 , j } \\rvert \\geqslant 0 . 4 7 m ^ { - 1 / 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 307, + 481, + 325, + 501 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 325, + 487, + 356, + 499 + ], + "score": 0.91, + "content": "\\mathbf { v } _ { j } = \\mathbf { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 356, + 481, + 462, + 501 + ], + "score": 1.0, + "content": "otherwise. Then we have", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26, + "bbox_fs": [ + 104, + 481, + 462, + 501 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 145, + 504, + 466, + 555 + ], + "lines": [ + { + "bbox": [ + 145, + 504, + 466, + 555 + ], + "spans": [ + { + "bbox": [ + 145, + 504, + 466, + 555 + ], + "score": 0.92, + "content": "\\begin{array} { r l } & { ~ \\displaystyle \\sum _ { j = 1 } ^ { m } y _ { i } \\cdot w _ { 2 , j } ^ { ( 0 ) } \\cdot \\langle \\mathbf { v } _ { j } , \\mathbf { x } _ { i } \\rangle \\cdot \\sigma ^ { \\prime } \\big ( \\langle \\mathbf { w } _ { 1 , j } ^ { ( 0 ) } , \\mathbf { x } _ { i } \\rangle \\big ) = \\displaystyle \\sum _ { j \\in S } y _ { i } \\cdot \\langle \\mathbf { \\overline { { u } } } ( \\mathbf { w } _ { 1 , j } ^ { ( 0 ) } ) , \\mathbf { x } _ { i } \\rangle \\cdot \\sigma ^ { \\prime } \\big ( \\langle \\mathbf { w } _ { 1 , j } ^ { ( 0 ) } , \\mathbf { x } _ { i } \\rangle \\big ) } \\\\ & { \\quad \\quad \\quad \\geqslant | S | \\gamma - \\sqrt { 2 | S | \\log ( 1 / \\delta ^ { \\prime } ) } . } \\end{array}", + "type": "interline_equation", + "image_path": "8942c4d2f2cbc4509c797ce3b678692420f63e3eb9ddce2b4494731dfa3a9fca.jpg" + } + ] + } + ], + "index": 28, + "virtual_lines": [ + { + "bbox": [ + 145, + 504, + 466, + 521.0 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 145, + 521.0, + 466, + 538.0 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 145, + 538.0, + 466, + 555.0 + ], + "spans": [], + "index": 29 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 556, + 426, + 569 + ], + "lines": [ + { + "bbox": [ + 105, + 554, + 426, + 571 + ], + "spans": [ + { + "bbox": [ + 105, + 554, + 122, + 571 + ], + "score": 1.0, + "content": "Set", + "type": "text" + }, + { + "bbox": [ + 122, + 557, + 159, + 567 + ], + "score": 0.92, + "content": "\\delta = 2 n \\delta ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 554, + 389, + 571 + ], + "score": 1.0, + "content": "and apply union bound, we have with probability at least", + "type": "text" + }, + { + "bbox": [ + 389, + 556, + 421, + 569 + ], + "score": 0.88, + "content": "1 - \\delta / 2", + "type": "inline_equation" + }, + { + "bbox": [ + 422, + 554, + 426, + 571 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30, + "bbox_fs": [ + 105, + 554, + 426, + 571 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 168, + 572, + 442, + 605 + ], + "lines": [ + { + "bbox": [ + 168, + 572, + 442, + 605 + ], + "spans": [ + { + "bbox": [ + 168, + 572, + 442, + 605 + ], + "score": 0.91, + "content": "\\sum _ { j = 1 } ^ { m } y _ { i } \\cdot w _ { 2 , j } ^ { ( 0 ) } \\cdot \\left. \\mathbf { v } _ { j } , \\mathbf { x } _ { i } \\right. \\cdot \\sigma ^ { \\prime } ( \\left. \\mathbf { w } _ { 1 , j } ^ { ( 0 ) } , \\mathbf { x } _ { i } \\right. ) \\geqslant | S | \\gamma - \\sqrt { 2 | S | \\log ( 2 n / \\delta ) } .", + "type": "interline_equation", + "image_path": "874fde4dbbe4b35c788d18e3b7c75c6d57bed9f4357ef8f048206a1f80b1a3b2.jpg" + } + ] + } + ], + "index": 32, + "virtual_lines": [ + { + "bbox": [ + 168, + 572, + 442, + 583.0 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 168, + 583.0, + 442, + 594.0 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 168, + 594.0, + 442, + 605.0 + ], + "spans": [], + "index": 33 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 609, + 506, + 644 + ], + "lines": [ + { + "bbox": [ + 106, + 608, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 106, + 608, + 290, + 622 + ], + "score": 1.0, + "content": "Therefore, note that with probability at least", + "type": "text" + }, + { + "bbox": [ + 290, + 609, + 357, + 621 + ], + "score": 0.91, + "content": "1 - \\exp ( - m / 8 )", + "type": "inline_equation" + }, + { + "bbox": [ + 357, + 608, + 398, + 622 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + }, + { + "bbox": [ + 399, + 609, + 444, + 621 + ], + "score": 0.92, + "content": "| { \\mathcal { S } } | \\geqslant m / 4", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 608, + 505, + 622 + ], + "score": 1.0, + "content": ". Moreover, in", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 619, + 507, + 634 + ], + "spans": [ + { + "bbox": [ + 105, + 619, + 189, + 634 + ], + "score": 1.0, + "content": "Assumption 4.3, by", + "type": "text" + }, + { + "bbox": [ + 189, + 621, + 231, + 632 + ], + "score": 0.91, + "content": "y _ { i } \\in \\left\\{ \\pm 1 \\right\\}", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 619, + 251, + 634 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 251, + 620, + 356, + 632 + ], + "score": 0.88, + "content": "| \\sigma ^ { \\prime } ( \\cdot ) | , \\| \\overline { { \\mathbf { u } } } ( \\cdot ) \\| _ { 2 } , \\| \\mathbf { x } _ { i } \\| _ { 2 } \\leqslant 1", + "type": "inline_equation" + }, + { + "bbox": [ + 357, + 619, + 372, + 634 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 373, + 621, + 425, + 631 + ], + "score": 0.88, + "content": "i = 1 , \\ldots , n", + "type": "inline_equation" + }, + { + "bbox": [ + 425, + 619, + 476, + 634 + ], + "score": 1.0, + "content": ", we see that ˘", + "type": "text" + }, + { + "bbox": [ + 477, + 621, + 503, + 631 + ], + "score": 0.88, + "content": "\\gamma \\leqslant 1", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 619, + 507, + 634 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 630, + 504, + 644 + ], + "spans": [ + { + "bbox": [ + 105, + 630, + 138, + 644 + ], + "score": 1.0, + "content": "Then if", + "type": "text" + }, + { + "bbox": [ + 138, + 631, + 222, + 643 + ], + "score": 0.91, + "content": "m \\geqslant 3 2 \\log ( n / \\delta ) / \\gamma ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 630, + 324, + 644 + ], + "score": 1.0, + "content": ", with probability at least", + "type": "text" + }, + { + "bbox": [ + 324, + 631, + 498, + 644 + ], + "score": 0.88, + "content": "1 - \\delta / 2 - \\exp \\big ( - 4 \\log ( n / \\delta ) / \\gamma ^ { 2 } \\big ) \\geqslant 1 - \\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 498, + 630, + 504, + 644 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35, + "bbox_fs": [ + 105, + 608, + 507, + 644 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 204, + 648, + 405, + 680 + ], + "lines": [ + { + "bbox": [ + 204, + 648, + 405, + 680 + ], + "spans": [ + { + "bbox": [ + 204, + 648, + 405, + 680 + ], + "score": 0.92, + "content": "\\sum _ { j = 1 } ^ { m } y _ { i } \\cdot w _ { 2 , j } ^ { ( 0 ) } \\cdot \\langle \\mathbf { v } _ { j } , \\mathbf { x } _ { i } \\rangle \\cdot \\sigma ^ { \\prime } ( \\langle \\mathbf { w } _ { 1 , j } ^ { ( 0 ) } , \\mathbf { x } _ { i } \\rangle ) \\geqslant | \\mathcal { S } | \\gamma / 2 .", + "type": "interline_equation", + "image_path": "eb9063b443ecb3b3139e6949c47227f835d6c5972c342d622620bf0fd4da8374.jpg" + } + ] + } + ], + "index": 37.5, + "virtual_lines": [ + { + "bbox": [ + 204, + 648, + 405, + 664.0 + ], + "spans": [], + "index": 37 + }, + { + "bbox": [ + 204, + 664.0, + 405, + 680.0 + ], + "spans": [], + "index": 38 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 684, + 295, + 699 + ], + "lines": [ + { + "bbox": [ + 105, + 683, + 298, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 683, + 122, + 700 + ], + "score": 1.0, + "content": "Let", + "type": "text" + }, + { + "bbox": [ + 123, + 684, + 258, + 699 + ], + "score": 0.93, + "content": "\\mathbf { U } = ( \\mathbf { v } _ { 1 } , \\mathbf { v } _ { 2 } , \\cdot \\cdot \\cdot , \\mathbf { v } _ { m } ) ^ { \\top } / \\sqrt { m | S | }", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 683, + 298, + 700 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 39, + "bbox_fs": [ + 105, + 683, + 298, + 700 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 116, + 703, + 492, + 735 + ], + "lines": [ + { + "bbox": [ + 116, + 703, + 492, + 735 + ], + "spans": [ + { + "bbox": [ + 116, + 703, + 492, + 735 + ], + "score": 0.94, + "content": "y _ { i } \\langle \\nabla _ { \\mathbf { W } _ { 1 } } f _ { \\mathbf { W } ^ { ( 0 ) } } ( \\mathbf { x } _ { i } ) , \\mathbf { U } \\rangle = \\frac { 1 } { \\sqrt { | \\mathcal { S } | } } \\sum _ { j = 1 } ^ { m } y _ { i } \\cdot w _ { 2 , j } ^ { ( 0 ) } \\cdot \\langle \\mathbf { v } _ { j } , \\mathbf { x } _ { i } \\rangle \\cdot \\sigma ^ { \\prime } \\big ( \\langle \\mathbf { w } _ { 1 , j } ^ { ( 0 ) } , \\mathbf { x } _ { i } \\rangle \\big ) \\geqslant \\frac { \\sqrt { | \\mathcal { S } | } \\gamma } { 2 } \\geqslant \\frac { m ^ { 1 / 2 } \\gamma } { 4 } ,", + "type": "interline_equation", + "image_path": "986fd2271e2e06855c98f7f2312a30861a3341b86219bd9bd1b2bac9d8c85b96.jpg" + } + ] + } + ], + "index": 41, + "virtual_lines": [ + { + "bbox": [ + 116, + 703, + 492, + 713.6666666666666 + ], + "spans": [], + "index": 40 + }, + { + "bbox": [ + 116, + 713.6666666666666, + 492, + 724.3333333333333 + ], + "spans": [], + "index": 41 + }, + { + "bbox": [ + 116, + 724.3333333333333, + 492, + 734.9999999999999 + ], + "spans": [], + "index": 42 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 81, + 506, + 120 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 286, + 95 + ], + "score": 1.0, + "content": "where the last inequality is by the fact that", + "type": "text" + }, + { + "bbox": [ + 286, + 82, + 333, + 94 + ], + "score": 0.91, + "content": "| { \\mathcal S } | \\geqslant m / 4", + "type": "inline_equation" + }, + { + "bbox": [ + 334, + 82, + 505, + 95 + ], + "score": 1.0, + "content": ". Besides, note that by concentration and", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 507, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 228, + 106 + ], + "score": 1.0, + "content": "Gaussian tail bound, we have `", + "type": "text" + }, + { + "bbox": [ + 229, + 93, + 335, + 106 + ], + "score": 0.88, + "content": "| f _ { \\mathbf { W } ^ { ( 0 ) } } ( \\mathbf { x } _ { i } ) | \\leqslant C \\log ( n / \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 93, + 447, + 106 + ], + "score": 1.0, + "content": "for some absolute constant", + "type": "text" + }, + { + "bbox": [ + 448, + 94, + 456, + 104 + ], + "score": 0.81, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 457, + 93, + 507, + 106 + ], + "score": 1.0, + "content": ". Therefore,", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 101, + 100, + 448, + 126 + ], + "spans": [ + { + "bbox": [ + 101, + 100, + 119, + 126 + ], + "score": 1.0, + "content": "let", + "type": "text" + }, + { + "bbox": [ + 120, + 105, + 337, + 120 + ], + "score": 0.85, + "content": "\\overline { { \\mathbf { W } } } _ { 1 } = \\mathbf { W } _ { 1 } ^ { ( 0 ) } + 4 \\big ( \\log ( 2 / \\epsilon ) + C \\log ( n / \\delta ) \\big ) m ^ { - 1 / 2 } \\mathbf { U } / \\gamma", + "type": "inline_equation" + }, + { + "bbox": [ + 337, + 100, + 355, + 126 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 356, + 105, + 408, + 120 + ], + "score": 0.94, + "content": "\\overline { { \\mathbf { W } } } _ { 2 } = \\mathbf { W } _ { 2 } ^ { ( 0 ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 409, + 100, + 448, + 126 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "interline_equation", + "bbox": [ + 113, + 123, + 476, + 141 + ], + "lines": [ + { + "bbox": [ + 113, + 123, + 476, + 141 + ], + "spans": [ + { + "bbox": [ + 113, + 123, + 476, + 141 + ], + "score": 0.83, + "content": "y _ { i } \\cdot \\left[ f _ { \\mathbf { W } ^ { ( 0 ) } } ( \\mathbf { x } _ { i } ) + \\langle \\nabla _ { \\mathbf { W } _ { 1 } } f _ { \\mathbf { W } ^ { ( 0 ) } } , \\overline { { \\mathbf { W } } } _ { 1 } - \\mathbf { W } _ { 1 } ^ { ( 0 ) } \\rangle + \\langle \\nabla _ { \\mathbf { W } _ { 2 } } f _ { \\mathbf { W } ^ { ( 0 ) } } , \\overline { { \\mathbf { W } } } _ { 2 } - \\mathbf { W } _ { 2 } ^ { ( 0 ) } \\rangle \\right] \\geqslant \\log ( 2 / \\epsilon ) .", + "type": "interline_equation", + "image_path": "7d88e7bc858293c343cf40fbf261146cb31a527768c19de698914960dc1fa711.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 113, + 123, + 476, + 141 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 144, + 505, + 185 + ], + "lines": [ + { + "bbox": [ + 105, + 143, + 505, + 158 + ], + "spans": [ + { + "bbox": [ + 105, + 143, + 149, + 158 + ], + "score": 1.0, + "content": "Note that", + "type": "text" + }, + { + "bbox": [ + 149, + 145, + 203, + 158 + ], + "score": 0.92, + "content": "\\| \\overline { { \\mathbf { u } } } ( \\cdot ) \\| _ { 2 } ~ \\leqslant ~ 1", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 143, + 246, + 158 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + }, + { + "bbox": [ + 246, + 145, + 347, + 158 + ], + "score": 0.91, + "content": "\\Vert \\mathbf { U } \\Vert _ { F } \\leqslant 1 / 0 . 4 7 \\leqslant 2 . 2", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 143, + 471, + 158 + ], + "score": 1.0, + "content": ". Therefore, we further have", + "type": "text" + }, + { + "bbox": [ + 471, + 144, + 505, + 158 + ], + "score": 0.9, + "content": "\\Vert \\overline { { \\mathbf { W } } } _ { 1 } - \\mathbf { \\Phi } _ { }", + "type": "inline_equation" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 155, + 506, + 174 + ], + "spans": [ + { + "bbox": [ + 106, + 157, + 324, + 172 + ], + "score": 0.77, + "content": "\\mathbf { W } _ { 1 } ^ { ( 0 ) } \\| _ { F } \\leqslant 8 . 8 \\gamma ^ { - 1 } \\big ( \\log ( 2 / \\epsilon ) + C \\log ( n / \\delta ) \\big ) \\cdot m ^ { - 1 / 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 155, + 406, + 174 + ], + "score": 1.0, + "content": ". This implies that", + "type": "text" + }, + { + "bbox": [ + 406, + 158, + 482, + 172 + ], + "score": 0.93, + "content": "\\overline { { \\mathbf { W } } } \\in \\mathfrak { B } ( \\mathbf { W } ^ { ( 0 ) } , R )", + "type": "inline_equation" + }, + { + "bbox": [ + 482, + 155, + 506, + 174 + ], + "score": 1.0, + "content": "with", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 107, + 170, + 435, + 186 + ], + "spans": [ + { + "bbox": [ + 107, + 172, + 208, + 185 + ], + "score": 0.89, + "content": "R = \\mathcal { O } \\big ( \\log \\big ( n / ( \\delta \\epsilon ) \\big ) / \\gamma \\big )", + "type": "inline_equation" + }, + { + "bbox": [ + 208, + 170, + 310, + 186 + ], + "score": 1.0, + "content": ". Applying the inequality", + "type": "text" + }, + { + "bbox": [ + 310, + 172, + 374, + 185 + ], + "score": 0.92, + "content": "\\ell ( \\log ( 2 / \\epsilon ) ) \\leqslant \\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 375, + 170, + 435, + 186 + ], + "score": 1.0, + "content": "on (B.1) gives", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5 + }, + { + "type": "interline_equation", + "bbox": [ + 254, + 188, + 356, + 203 + ], + "lines": [ + { + "bbox": [ + 254, + 188, + 356, + 203 + ], + "spans": [ + { + "bbox": [ + 254, + 188, + 356, + 203 + ], + "score": 0.9, + "content": "\\ell ( y _ { i } \\cdot F _ { \\mathbf { W } ^ { ( 0 ) } , \\overline { { \\mathbf { W } } } } ( \\mathbf { x } _ { i } ) ) \\leqslant \\epsilon", + "type": "interline_equation", + "image_path": "94f0cd21266947ec9be8336c18b513796314aa62dc640428d9ff5b075e6b4b00.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 254, + 188, + 356, + 203 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 206, + 292, + 218 + ], + "lines": [ + { + "bbox": [ + 106, + 205, + 292, + 220 + ], + "spans": [ + { + "bbox": [ + 106, + 205, + 133, + 220 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 133, + 207, + 184, + 218 + ], + "score": 0.91, + "content": "i = 1 , \\ldots , n", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 205, + 292, + 220 + ], + "score": 1.0, + "content": ". This completes the proof.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "title", + "bbox": [ + 108, + 231, + 253, + 242 + ], + "lines": [ + { + "bbox": [ + 106, + 231, + 255, + 244 + ], + "spans": [ + { + "bbox": [ + 106, + 231, + 255, + 244 + ], + "score": 1.0, + "content": "B.3 PROOF OF PROPOSITION 4.6", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 106, + 251, + 506, + 309 + ], + "lines": [ + { + "bbox": [ + 106, + 252, + 504, + 264 + ], + "spans": [ + { + "bbox": [ + 106, + 252, + 495, + 264 + ], + "score": 1.0, + "content": "Based on our theoretical analysis, the major goal is to show that there exist certain choices of", + "type": "text" + }, + { + "bbox": [ + 495, + 252, + 504, + 262 + ], + "score": 0.8, + "content": "R", + "type": "inline_equation" + } + ], + "index": 10 + }, + { + "bbox": [ + 104, + 260, + 506, + 278 + ], + "spans": [ + { + "bbox": [ + 104, + 260, + 124, + 278 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 125, + 265, + 135, + 274 + ], + "score": 0.72, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 260, + 358, + 278 + ], + "score": 1.0, + "content": "such that the best NTRF model in the function class", + "type": "text" + }, + { + "bbox": [ + 358, + 262, + 410, + 276 + ], + "score": 0.93, + "content": "{ \\mathcal { F } } ( { \\mathbf { W } } ^ { ( 0 ) } , R )", + "type": "inline_equation" + }, + { + "bbox": [ + 410, + 260, + 463, + 278 + ], + "score": 1.0, + "content": "can achieve", + "type": "text" + }, + { + "bbox": [ + 463, + 266, + 469, + 273 + ], + "score": 0.62, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 470, + 260, + 506, + 278 + ], + "score": 1.0, + "content": "training", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 273, + 504, + 288 + ], + "spans": [ + { + "bbox": [ + 105, + 273, + 495, + 288 + ], + "score": 1.0, + "content": "error. In this proof, we will prove a stronger results by showing that given the quantities of", + "type": "text" + }, + { + "bbox": [ + 495, + 275, + 504, + 285 + ], + "score": 0.8, + "content": "R", + "type": "inline_equation" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 284, + 506, + 298 + ], + "spans": [ + { + "bbox": [ + 106, + 284, + 123, + 298 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 287, + 134, + 295 + ], + "score": 0.74, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 134, + 284, + 432, + 298 + ], + "score": 1.0, + "content": "specificed in Proposition 4.6, there exists a NTRF model with parameter ` ˘", + "type": "text" + }, + { + "bbox": [ + 433, + 286, + 451, + 296 + ], + "score": 0.82, + "content": "\\mathbf { W } ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 284, + 506, + 298 + ], + "score": 1.0, + "content": "that satisfies", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 291, + 255, + 313 + ], + "spans": [ + { + "bbox": [ + 106, + 296, + 249, + 310 + ], + "score": 0.89, + "content": "\\begin{array} { r } { n ^ { - 1 } \\sum _ { i = 1 } ^ { n ^ { \\bullet } } \\ell \\bigl ( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ^ { * } } ( \\mathbf { x } _ { i } ) \\bigr ) \\leqslant \\epsilon } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 291, + 255, + 313 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 106, + 312, + 506, + 386 + ], + "lines": [ + { + "bbox": [ + 105, + 313, + 506, + 326 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 506, + 326 + ], + "score": 1.0, + "content": "In order to do so, we consider training the NTRF model via a different surrogate loss function.` ˘", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 324, + 506, + 341 + ], + "spans": [ + { + "bbox": [ + 105, + 324, + 285, + 341 + ], + "score": 1.0, + "content": "Specifically, we consider squared hinge loss", + "type": "text" + }, + { + "bbox": [ + 285, + 324, + 393, + 340 + ], + "score": 0.92, + "content": "\\widetilde { \\ell } ( x ) = \\left( \\operatorname* { m a x } \\{ \\lambda - x , 0 \\} \\right) ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 324, + 423, + 341 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 424, + 327, + 431, + 337 + ], + "score": 0.77, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 432, + 324, + 506, + 341 + ], + "score": 1.0, + "content": "denotes the target", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 339, + 506, + 354 + ], + "spans": [ + { + "bbox": [ + 105, + 341, + 268, + 354 + ], + "score": 1.0, + "content": "margin. In the later proof, we choose", + "type": "text" + }, + { + "bbox": [ + 268, + 341, + 345, + 353 + ], + "score": 0.92, + "content": "\\lambda = \\log ( 1 / \\epsilon ) + 1", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 341, + 445, + 354 + ], + "score": 1.0, + "content": "such that the condition", + "type": "text" + }, + { + "bbox": [ + 446, + 339, + 487, + 353 + ], + "score": 0.93, + "content": " { \\widetilde { \\ell } } ( x ) \\leqslant 1", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 341, + 506, + 354 + ], + "score": 1.0, + "content": "can", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 353, + 506, + 365 + ], + "spans": [ + { + "bbox": [ + 105, + 353, + 167, + 365 + ], + "score": 1.0, + "content": "guarantee that", + "type": "text" + }, + { + "bbox": [ + 167, + 353, + 212, + 364 + ], + "score": 0.92, + "content": "x \\geqslant \\log ( \\epsilon )", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 353, + 506, + 365 + ], + "score": 1.0, + "content": ". Moreover, we consider using gradient flow, i.e., gradient descent with", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 363, + 505, + 376 + ], + "spans": [ + { + "bbox": [ + 106, + 363, + 505, + 376 + ], + "score": 1.0, + "content": "infinitesimal step size, to train the NTRF model. Therefore, in the remaining part of the proof, we", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 374, + 377, + 386 + ], + "spans": [ + { + "bbox": [ + 106, + 374, + 377, + 386 + ], + "score": 1.0, + "content": "consider optimizing the NTRF parameter W with the loss function", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 17.5 + }, + { + "type": "interline_equation", + "bbox": [ + 230, + 389, + 381, + 420 + ], + "lines": [ + { + "bbox": [ + 230, + 389, + 381, + 420 + ], + "spans": [ + { + "bbox": [ + 230, + 389, + 381, + 420 + ], + "score": 0.94, + "content": "\\widetilde { L } _ { S } ( \\mathbf { W } ) = \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } \\widetilde { \\ell } \\big ( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } } ( \\mathbf { x } _ { i } ) \\big ) .", + "type": "interline_equation", + "image_path": "89f9b0d79a872249ecbabb24556bd0bbda7f950e85952fb941f39b033fad16b0.jpg" + } + ] + } + ], + "index": 21.5, + "virtual_lines": [ + { + "bbox": [ + 230, + 389, + 381, + 404.5 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 230, + 404.5, + 381, + 420.0 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 423, + 504, + 445 + ], + "lines": [ + { + "bbox": [ + 105, + 422, + 506, + 436 + ], + "spans": [ + { + "bbox": [ + 105, + 422, + 470, + 436 + ], + "score": 1.0, + "content": "Moreover, for simplicity, we only consider optimizing parameter in the last hidden layer (i.e.,", + "type": "text" + }, + { + "bbox": [ + 470, + 423, + 500, + 435 + ], + "score": 0.89, + "content": "\\mathbf { W } _ { L - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 422, + 506, + 436 + ], + "score": 1.0, + "content": ").", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 107, + 434, + 284, + 446 + ], + "spans": [ + { + "bbox": [ + 107, + 434, + 284, + 446 + ], + "score": 1.0, + "content": "Then the gradient flow can be formulated as", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5 + }, + { + "type": "interline_equation", + "bbox": [ + 156, + 448, + 454, + 474 + ], + "lines": [ + { + "bbox": [ + 156, + 448, + 454, + 474 + ], + "spans": [ + { + "bbox": [ + 156, + 448, + 454, + 474 + ], + "score": 0.92, + "content": "\\frac { \\mathrm { d } \\mathbf { W } _ { L - 1 } ( t ) } { \\mathrm { d } t } = - \\nabla _ { \\mathbf { W } _ { L - 1 } } \\widetilde { L } _ { S } ( \\mathbf { W } ( t ) ) , \\quad \\frac { \\mathrm { d } \\mathbf { W } _ { l } ( t ) } { \\mathrm { d } t } = \\mathbf { 0 } \\quad \\mathrm { f o r ~ a n y ~ } l \\neq L - 1 .", + "type": "interline_equation", + "image_path": "ead3fa603f2cf4245dcd55dbffa770333c3a5c7a8e3e9d5fb2cf9abf55ef5bc1.jpg" + } + ] + } + ], + "index": 25, + "virtual_lines": [ + { + "bbox": [ + 156, + 448, + 454, + 474 + ], + "spans": [], + "index": 25 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 475, + 414, + 487 + ], + "lines": [ + { + "bbox": [ + 105, + 475, + 414, + 489 + ], + "spans": [ + { + "bbox": [ + 105, + 475, + 414, + 489 + ], + "score": 1.0, + "content": "Note that the NTRF model is a linear model, thus by Definition 3.2, we have", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "interline_equation", + "bbox": [ + 159, + 490, + 451, + 529 + ], + "lines": [ + { + "bbox": [ + 159, + 490, + 451, + 529 + ], + "spans": [ + { + "bbox": [ + 159, + 490, + 451, + 529 + ], + "score": 0.92, + "content": "\\begin{array} { r l } & { \\nabla _ { \\mathbf { W } _ { L - 1 } } \\tilde { L } _ { S } \\big ( \\mathbf { W } ( t ) \\big ) = y _ { i } \\tilde { \\ell } ^ { \\prime } \\big ( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ( t ) } ( \\mathbf { x } _ { i } ) \\big ) \\cdot \\nabla _ { \\mathbf { W } _ { L - 1 } } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ( t ) } ( \\mathbf { x } _ { i } ) } \\\\ & { \\qquad = y _ { i } \\tilde { \\ell } ^ { \\prime } \\big ( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ( t ) } ( \\mathbf { x } _ { i } ) \\big ) \\cdot \\nabla _ { \\mathbf { W } _ { L - 1 } ^ { ( 0 ) } } f _ { \\mathbf { W } ^ { ( 0 ) } } ( \\mathbf { x } _ { i } ) . } \\end{array}", + "type": "interline_equation", + "image_path": "c855dd18490cbf7f3722702be474b6527a7ed95525a88fab1fb3a3885f577e8f.jpg" + } + ] + } + ], + "index": 28, + "virtual_lines": [ + { + "bbox": [ + 159, + 490, + 451, + 503.0 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 159, + 503.0, + 451, + 516.0 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 159, + 516.0, + 451, + 529.0 + ], + "spans": [], + "index": 29 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 533, + 454, + 547 + ], + "lines": [ + { + "bbox": [ + 105, + 531, + 456, + 548 + ], + "spans": [ + { + "bbox": [ + 105, + 531, + 186, + 548 + ], + "score": 1.0, + "content": "Then it is clear that", + "type": "text" + }, + { + "bbox": [ + 186, + 532, + 262, + 547 + ], + "score": 0.93, + "content": "\\nabla _ { \\mathbf { W } _ { L - 1 } } \\widetilde { L } _ { S } ( \\mathbf { W } ( t ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 531, + 456, + 548 + ], + "score": 1.0, + "content": "has fixed direction throughout the optimization.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 107, + 551, + 504, + 574 + ], + "lines": [ + { + "bbox": [ + 105, + 550, + 505, + 564 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 428, + 564 + ], + "score": 1.0, + "content": "In order to prove the convergence of gradient flow and characterize the quantity of", + "type": "text" + }, + { + "bbox": [ + 428, + 552, + 437, + 561 + ], + "score": 0.81, + "content": "R", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 550, + 505, + 564 + ], + "score": 1.0, + "content": ", We first provide", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 561, + 494, + 575 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 494, + 575 + ], + "score": 1.0, + "content": "the following lemma which gives an upper bound of the NTRF model output at the initialization.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5 + }, + { + "type": "text", + "bbox": [ + 107, + 578, + 503, + 604 + ], + "lines": [ + { + "bbox": [ + 106, + 577, + 505, + 591 + ], + "spans": [ + { + "bbox": [ + 106, + 577, + 505, + 591 + ], + "score": 1.0, + "content": "Then we provide the following lemma which characterizes a lower bound of the Frobenius norm of", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 590, + 254, + 605 + ], + "spans": [ + { + "bbox": [ + 105, + 590, + 184, + 605 + ], + "score": 1.0, + "content": "the partial gradient", + "type": "text" + }, + { + "bbox": [ + 185, + 590, + 249, + 605 + ], + "score": 0.94, + "content": "\\nabla _ { \\mathbf { W } _ { L - 1 } } \\tilde { L } _ { S } ( \\mathbf { W } )", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 590, + 254, + 605 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5 + }, + { + "type": "text", + "bbox": [ + 106, + 608, + 506, + 642 + ], + "lines": [ + { + "bbox": [ + 105, + 607, + 505, + 621 + ], + "spans": [ + { + "bbox": [ + 105, + 608, + 437, + 621 + ], + "score": 1.0, + "content": "Lemma B.2 (Lemma B.5 in Zou et al. (2019)). Under Assumptions 3.1 and 4.5, if ` ˘", + "type": "text" + }, + { + "bbox": [ + 438, + 607, + 502, + 621 + ], + "score": 0.92, + "content": "m = \\widetilde \\Omega ( n ^ { 2 } \\phi ^ { - 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 608, + 505, + 621 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 619, + 504, + 633 + ], + "spans": [ + { + "bbox": [ + 105, + 619, + 152, + 632 + ], + "score": 1.0, + "content": "then for all", + "type": "text" + }, + { + "bbox": [ + 152, + 621, + 175, + 631 + ], + "score": 0.93, + "content": "t \\geqslant 0", + "type": "inline_equation" + }, + { + "bbox": [ + 176, + 619, + 275, + 632 + ], + "score": 1.0, + "content": ", with probability at least", + "type": "text" + }, + { + "bbox": [ + 276, + 619, + 371, + 633 + ], + "score": 0.91, + "content": "1 - \\exp \\big ( - O ( m \\phi ^ { \\cdot } n ) \\big )", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 619, + 495, + 632 + ], + "score": 1.0, + "content": ", there exist a positive constant", + "type": "text" + }, + { + "bbox": [ + 495, + 621, + 504, + 630 + ], + "score": 0.81, + "content": "C", + "type": "inline_equation" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 630, + 146, + 643 + ], + "spans": [ + { + "bbox": [ + 105, + 630, + 146, + 643 + ], + "score": 1.0, + "content": "such that", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36 + }, + { + "type": "interline_equation", + "bbox": [ + 178, + 644, + 432, + 676 + ], + "lines": [ + { + "bbox": [ + 178, + 644, + 432, + 676 + ], + "spans": [ + { + "bbox": [ + 178, + 644, + 432, + 676 + ], + "score": 0.93, + "content": "\\| \\nabla _ { \\mathbf { W } _ { L - 1 } } \\widetilde { L } _ { S } ( \\mathbf { W } ( t ) ) \\| _ { F } ^ { 2 } \\geqslant \\frac { C m \\phi } { n ^ { 5 } } \\bigg [ \\sum _ { i = 1 } ^ { n } \\widetilde { \\ell } ^ { \\prime } \\big ( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ( t ) } ( \\mathbf { x } _ { i } ) \\big ) \\bigg ] ^ { 2 } .", + "type": "interline_equation", + "image_path": "e2a33f4ef007155699e64e642806e585aa59257cbf95bc0120b4c28c2fe70f42.jpg" + } + ] + } + ], + "index": 39, + "virtual_lines": [ + { + "bbox": [ + 178, + 644, + 432, + 654.6666666666666 + ], + "spans": [], + "index": 38 + }, + { + "bbox": [ + 178, + 654.6666666666666, + 432, + 665.3333333333333 + ], + "spans": [], + "index": 39 + }, + { + "bbox": [ + 178, + 665.3333333333333, + 432, + 675.9999999999999 + ], + "spans": [], + "index": 40 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 684, + 505, + 733 + ], + "lines": [ + { + "bbox": [ + 106, + 685, + 505, + 696 + ], + "spans": [ + { + "bbox": [ + 106, + 685, + 505, + 696 + ], + "score": 1.0, + "content": "We slightly modified the original version of this lemma since we use different models (we consider", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 695, + 506, + 708 + ], + "spans": [ + { + "bbox": [ + 106, + 695, + 506, + 708 + ], + "score": 1.0, + "content": "NTRF model while Zou et al. (2019) considers neural network model). However, by (B.2), it is clear", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 706, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 707, + 173, + 722 + ], + "score": 1.0, + "content": "that the gradient", + "type": "text" + }, + { + "bbox": [ + 173, + 706, + 215, + 720 + ], + "score": 0.92, + "content": "\\nabla \\tilde { L } _ { S } ( \\mathbf { W } )", + "type": "inline_equation" + }, + { + "bbox": [ + 215, + 707, + 506, + 722 + ], + "score": 1.0, + "content": "can be regarded as a type of the gradient for neural network model at the", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 720, + 453, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 180, + 733 + ], + "score": 1.0, + "content": "initialization (i.e.,", + "type": "text" + }, + { + "bbox": [ + 180, + 720, + 259, + 733 + ], + "score": 0.92, + "content": "\\nabla _ { \\mathbf { W } _ { L - 1 } } L _ { S } ( \\mathbf { W } ^ { ( 0 ) } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 720, + 453, + 733 + ], + "score": 1.0, + "content": "is valid. Now we are ready to present the proof.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 42.5 + } + ], + "page_idx": 15, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 26, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "16", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 494, + 206, + 505, + 217 + ], + "lines": [ + { + "bbox": [ + 495, + 208, + 505, + 217 + ], + "spans": [ + { + "bbox": [ + 495, + 208, + 505, + 217 + ], + "score": 0.999, + "content": "□", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 81, + 506, + 120 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 286, + 95 + ], + "score": 1.0, + "content": "where the last inequality is by the fact that", + "type": "text" + }, + { + "bbox": [ + 286, + 82, + 333, + 94 + ], + "score": 0.91, + "content": "| { \\mathcal S } | \\geqslant m / 4", + "type": "inline_equation" + }, + { + "bbox": [ + 334, + 82, + 505, + 95 + ], + "score": 1.0, + "content": ". Besides, note that by concentration and", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 507, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 228, + 106 + ], + "score": 1.0, + "content": "Gaussian tail bound, we have `", + "type": "text" + }, + { + "bbox": [ + 229, + 93, + 335, + 106 + ], + "score": 0.88, + "content": "| f _ { \\mathbf { W } ^ { ( 0 ) } } ( \\mathbf { x } _ { i } ) | \\leqslant C \\log ( n / \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 93, + 447, + 106 + ], + "score": 1.0, + "content": "for some absolute constant", + "type": "text" + }, + { + "bbox": [ + 448, + 94, + 456, + 104 + ], + "score": 0.81, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 457, + 93, + 507, + 106 + ], + "score": 1.0, + "content": ". Therefore,", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 101, + 100, + 448, + 126 + ], + "spans": [ + { + "bbox": [ + 101, + 100, + 119, + 126 + ], + "score": 1.0, + "content": "let", + "type": "text" + }, + { + "bbox": [ + 120, + 105, + 337, + 120 + ], + "score": 0.85, + "content": "\\overline { { \\mathbf { W } } } _ { 1 } = \\mathbf { W } _ { 1 } ^ { ( 0 ) } + 4 \\big ( \\log ( 2 / \\epsilon ) + C \\log ( n / \\delta ) \\big ) m ^ { - 1 / 2 } \\mathbf { U } / \\gamma", + "type": "inline_equation" + }, + { + "bbox": [ + 337, + 100, + 355, + 126 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 356, + 105, + 408, + 120 + ], + "score": 0.94, + "content": "\\overline { { \\mathbf { W } } } _ { 2 } = \\mathbf { W } _ { 2 } ^ { ( 0 ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 409, + 100, + 448, + 126 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1, + "bbox_fs": [ + 101, + 82, + 507, + 126 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 113, + 123, + 476, + 141 + ], + "lines": [ + { + "bbox": [ + 113, + 123, + 476, + 141 + ], + "spans": [ + { + "bbox": [ + 113, + 123, + 476, + 141 + ], + "score": 0.83, + "content": "y _ { i } \\cdot \\left[ f _ { \\mathbf { W } ^ { ( 0 ) } } ( \\mathbf { x } _ { i } ) + \\langle \\nabla _ { \\mathbf { W } _ { 1 } } f _ { \\mathbf { W } ^ { ( 0 ) } } , \\overline { { \\mathbf { W } } } _ { 1 } - \\mathbf { W } _ { 1 } ^ { ( 0 ) } \\rangle + \\langle \\nabla _ { \\mathbf { W } _ { 2 } } f _ { \\mathbf { W } ^ { ( 0 ) } } , \\overline { { \\mathbf { W } } } _ { 2 } - \\mathbf { W } _ { 2 } ^ { ( 0 ) } \\rangle \\right] \\geqslant \\log ( 2 / \\epsilon ) .", + "type": "interline_equation", + "image_path": "7d88e7bc858293c343cf40fbf261146cb31a527768c19de698914960dc1fa711.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 113, + 123, + 476, + 141 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 144, + 505, + 185 + ], + "lines": [ + { + "bbox": [ + 105, + 143, + 505, + 158 + ], + "spans": [ + { + "bbox": [ + 105, + 143, + 149, + 158 + ], + "score": 1.0, + "content": "Note that", + "type": "text" + }, + { + "bbox": [ + 149, + 145, + 203, + 158 + ], + "score": 0.92, + "content": "\\| \\overline { { \\mathbf { u } } } ( \\cdot ) \\| _ { 2 } ~ \\leqslant ~ 1", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 143, + 246, + 158 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + }, + { + "bbox": [ + 246, + 145, + 347, + 158 + ], + "score": 0.91, + "content": "\\Vert \\mathbf { U } \\Vert _ { F } \\leqslant 1 / 0 . 4 7 \\leqslant 2 . 2", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 143, + 471, + 158 + ], + "score": 1.0, + "content": ". Therefore, we further have", + "type": "text" + }, + { + "bbox": [ + 471, + 144, + 505, + 158 + ], + "score": 0.9, + "content": "\\Vert \\overline { { \\mathbf { W } } } _ { 1 } - \\mathbf { \\Phi } _ { }", + "type": "inline_equation" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 155, + 506, + 174 + ], + "spans": [ + { + "bbox": [ + 106, + 157, + 324, + 172 + ], + "score": 0.77, + "content": "\\mathbf { W } _ { 1 } ^ { ( 0 ) } \\| _ { F } \\leqslant 8 . 8 \\gamma ^ { - 1 } \\big ( \\log ( 2 / \\epsilon ) + C \\log ( n / \\delta ) \\big ) \\cdot m ^ { - 1 / 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 155, + 406, + 174 + ], + "score": 1.0, + "content": ". This implies that", + "type": "text" + }, + { + "bbox": [ + 406, + 158, + 482, + 172 + ], + "score": 0.93, + "content": "\\overline { { \\mathbf { W } } } \\in \\mathfrak { B } ( \\mathbf { W } ^ { ( 0 ) } , R )", + "type": "inline_equation" + }, + { + "bbox": [ + 482, + 155, + 506, + 174 + ], + "score": 1.0, + "content": "with", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 107, + 170, + 435, + 186 + ], + "spans": [ + { + "bbox": [ + 107, + 172, + 208, + 185 + ], + "score": 0.89, + "content": "R = \\mathcal { O } \\big ( \\log \\big ( n / ( \\delta \\epsilon ) \\big ) / \\gamma \\big )", + "type": "inline_equation" + }, + { + "bbox": [ + 208, + 170, + 310, + 186 + ], + "score": 1.0, + "content": ". Applying the inequality", + "type": "text" + }, + { + "bbox": [ + 310, + 172, + 374, + 185 + ], + "score": 0.92, + "content": "\\ell ( \\log ( 2 / \\epsilon ) ) \\leqslant \\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 375, + 170, + 435, + 186 + ], + "score": 1.0, + "content": "on (B.1) gives", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5, + "bbox_fs": [ + 105, + 143, + 506, + 186 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 254, + 188, + 356, + 203 + ], + "lines": [ + { + "bbox": [ + 254, + 188, + 356, + 203 + ], + "spans": [ + { + "bbox": [ + 254, + 188, + 356, + 203 + ], + "score": 0.9, + "content": "\\ell ( y _ { i } \\cdot F _ { \\mathbf { W } ^ { ( 0 ) } , \\overline { { \\mathbf { W } } } } ( \\mathbf { x } _ { i } ) ) \\leqslant \\epsilon", + "type": "interline_equation", + "image_path": "94f0cd21266947ec9be8336c18b513796314aa62dc640428d9ff5b075e6b4b00.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 254, + 188, + 356, + 203 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 206, + 292, + 218 + ], + "lines": [ + { + "bbox": [ + 106, + 205, + 292, + 220 + ], + "spans": [ + { + "bbox": [ + 106, + 205, + 133, + 220 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 133, + 207, + 184, + 218 + ], + "score": 0.91, + "content": "i = 1 , \\ldots , n", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 205, + 292, + 220 + ], + "score": 1.0, + "content": ". This completes the proof.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8, + "bbox_fs": [ + 106, + 205, + 292, + 220 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 231, + 253, + 242 + ], + "lines": [ + { + "bbox": [ + 106, + 231, + 255, + 244 + ], + "spans": [ + { + "bbox": [ + 106, + 231, + 255, + 244 + ], + "score": 1.0, + "content": "B.3 PROOF OF PROPOSITION 4.6", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 106, + 251, + 506, + 309 + ], + "lines": [ + { + "bbox": [ + 106, + 252, + 504, + 264 + ], + "spans": [ + { + "bbox": [ + 106, + 252, + 495, + 264 + ], + "score": 1.0, + "content": "Based on our theoretical analysis, the major goal is to show that there exist certain choices of", + "type": "text" + }, + { + "bbox": [ + 495, + 252, + 504, + 262 + ], + "score": 0.8, + "content": "R", + "type": "inline_equation" + } + ], + "index": 10 + }, + { + "bbox": [ + 104, + 260, + 506, + 278 + ], + "spans": [ + { + "bbox": [ + 104, + 260, + 124, + 278 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 125, + 265, + 135, + 274 + ], + "score": 0.72, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 260, + 358, + 278 + ], + "score": 1.0, + "content": "such that the best NTRF model in the function class", + "type": "text" + }, + { + "bbox": [ + 358, + 262, + 410, + 276 + ], + "score": 0.93, + "content": "{ \\mathcal { F } } ( { \\mathbf { W } } ^ { ( 0 ) } , R )", + "type": "inline_equation" + }, + { + "bbox": [ + 410, + 260, + 463, + 278 + ], + "score": 1.0, + "content": "can achieve", + "type": "text" + }, + { + "bbox": [ + 463, + 266, + 469, + 273 + ], + "score": 0.62, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 470, + 260, + 506, + 278 + ], + "score": 1.0, + "content": "training", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 273, + 504, + 288 + ], + "spans": [ + { + "bbox": [ + 105, + 273, + 495, + 288 + ], + "score": 1.0, + "content": "error. In this proof, we will prove a stronger results by showing that given the quantities of", + "type": "text" + }, + { + "bbox": [ + 495, + 275, + 504, + 285 + ], + "score": 0.8, + "content": "R", + "type": "inline_equation" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 284, + 506, + 298 + ], + "spans": [ + { + "bbox": [ + 106, + 284, + 123, + 298 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 287, + 134, + 295 + ], + "score": 0.74, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 134, + 284, + 432, + 298 + ], + "score": 1.0, + "content": "specificed in Proposition 4.6, there exists a NTRF model with parameter ` ˘", + "type": "text" + }, + { + "bbox": [ + 433, + 286, + 451, + 296 + ], + "score": 0.82, + "content": "\\mathbf { W } ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 284, + 506, + 298 + ], + "score": 1.0, + "content": "that satisfies", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 291, + 255, + 313 + ], + "spans": [ + { + "bbox": [ + 106, + 296, + 249, + 310 + ], + "score": 0.89, + "content": "\\begin{array} { r } { n ^ { - 1 } \\sum _ { i = 1 } ^ { n ^ { \\bullet } } \\ell \\bigl ( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ^ { * } } ( \\mathbf { x } _ { i } ) \\bigr ) \\leqslant \\epsilon } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 291, + 255, + 313 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12, + "bbox_fs": [ + 104, + 252, + 506, + 313 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 312, + 506, + 386 + ], + "lines": [ + { + "bbox": [ + 105, + 313, + 506, + 326 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 506, + 326 + ], + "score": 1.0, + "content": "In order to do so, we consider training the NTRF model via a different surrogate loss function.` ˘", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 324, + 506, + 341 + ], + "spans": [ + { + "bbox": [ + 105, + 324, + 285, + 341 + ], + "score": 1.0, + "content": "Specifically, we consider squared hinge loss", + "type": "text" + }, + { + "bbox": [ + 285, + 324, + 393, + 340 + ], + "score": 0.92, + "content": "\\widetilde { \\ell } ( x ) = \\left( \\operatorname* { m a x } \\{ \\lambda - x , 0 \\} \\right) ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 324, + 423, + 341 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 424, + 327, + 431, + 337 + ], + "score": 0.77, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 432, + 324, + 506, + 341 + ], + "score": 1.0, + "content": "denotes the target", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 339, + 506, + 354 + ], + "spans": [ + { + "bbox": [ + 105, + 341, + 268, + 354 + ], + "score": 1.0, + "content": "margin. In the later proof, we choose", + "type": "text" + }, + { + "bbox": [ + 268, + 341, + 345, + 353 + ], + "score": 0.92, + "content": "\\lambda = \\log ( 1 / \\epsilon ) + 1", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 341, + 445, + 354 + ], + "score": 1.0, + "content": "such that the condition", + "type": "text" + }, + { + "bbox": [ + 446, + 339, + 487, + 353 + ], + "score": 0.93, + "content": " { \\widetilde { \\ell } } ( x ) \\leqslant 1", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 341, + 506, + 354 + ], + "score": 1.0, + "content": "can", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 353, + 506, + 365 + ], + "spans": [ + { + "bbox": [ + 105, + 353, + 167, + 365 + ], + "score": 1.0, + "content": "guarantee that", + "type": "text" + }, + { + "bbox": [ + 167, + 353, + 212, + 364 + ], + "score": 0.92, + "content": "x \\geqslant \\log ( \\epsilon )", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 353, + 506, + 365 + ], + "score": 1.0, + "content": ". Moreover, we consider using gradient flow, i.e., gradient descent with", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 363, + 505, + 376 + ], + "spans": [ + { + "bbox": [ + 106, + 363, + 505, + 376 + ], + "score": 1.0, + "content": "infinitesimal step size, to train the NTRF model. Therefore, in the remaining part of the proof, we", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 374, + 377, + 386 + ], + "spans": [ + { + "bbox": [ + 106, + 374, + 377, + 386 + ], + "score": 1.0, + "content": "consider optimizing the NTRF parameter W with the loss function", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 17.5, + "bbox_fs": [ + 105, + 313, + 506, + 386 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 230, + 389, + 381, + 420 + ], + "lines": [ + { + "bbox": [ + 230, + 389, + 381, + 420 + ], + "spans": [ + { + "bbox": [ + 230, + 389, + 381, + 420 + ], + "score": 0.94, + "content": "\\widetilde { L } _ { S } ( \\mathbf { W } ) = \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } \\widetilde { \\ell } \\big ( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } } ( \\mathbf { x } _ { i } ) \\big ) .", + "type": "interline_equation", + "image_path": "89f9b0d79a872249ecbabb24556bd0bbda7f950e85952fb941f39b033fad16b0.jpg" + } + ] + } + ], + "index": 21.5, + "virtual_lines": [ + { + "bbox": [ + 230, + 389, + 381, + 404.5 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 230, + 404.5, + 381, + 420.0 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 423, + 504, + 445 + ], + "lines": [ + { + "bbox": [ + 105, + 422, + 506, + 436 + ], + "spans": [ + { + "bbox": [ + 105, + 422, + 470, + 436 + ], + "score": 1.0, + "content": "Moreover, for simplicity, we only consider optimizing parameter in the last hidden layer (i.e.,", + "type": "text" + }, + { + "bbox": [ + 470, + 423, + 500, + 435 + ], + "score": 0.89, + "content": "\\mathbf { W } _ { L - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 422, + 506, + 436 + ], + "score": 1.0, + "content": ").", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 107, + 434, + 284, + 446 + ], + "spans": [ + { + "bbox": [ + 107, + 434, + 284, + 446 + ], + "score": 1.0, + "content": "Then the gradient flow can be formulated as", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5, + "bbox_fs": [ + 105, + 422, + 506, + 446 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 156, + 448, + 454, + 474 + ], + "lines": [ + { + "bbox": [ + 156, + 448, + 454, + 474 + ], + "spans": [ + { + "bbox": [ + 156, + 448, + 454, + 474 + ], + "score": 0.92, + "content": "\\frac { \\mathrm { d } \\mathbf { W } _ { L - 1 } ( t ) } { \\mathrm { d } t } = - \\nabla _ { \\mathbf { W } _ { L - 1 } } \\widetilde { L } _ { S } ( \\mathbf { W } ( t ) ) , \\quad \\frac { \\mathrm { d } \\mathbf { W } _ { l } ( t ) } { \\mathrm { d } t } = \\mathbf { 0 } \\quad \\mathrm { f o r ~ a n y ~ } l \\neq L - 1 .", + "type": "interline_equation", + "image_path": "ead3fa603f2cf4245dcd55dbffa770333c3a5c7a8e3e9d5fb2cf9abf55ef5bc1.jpg" + } + ] + } + ], + "index": 25, + "virtual_lines": [ + { + "bbox": [ + 156, + 448, + 454, + 474 + ], + "spans": [], + "index": 25 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 475, + 414, + 487 + ], + "lines": [ + { + "bbox": [ + 105, + 475, + 414, + 489 + ], + "spans": [ + { + "bbox": [ + 105, + 475, + 414, + 489 + ], + "score": 1.0, + "content": "Note that the NTRF model is a linear model, thus by Definition 3.2, we have", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26, + "bbox_fs": [ + 105, + 475, + 414, + 489 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 159, + 490, + 451, + 529 + ], + "lines": [ + { + "bbox": [ + 159, + 490, + 451, + 529 + ], + "spans": [ + { + "bbox": [ + 159, + 490, + 451, + 529 + ], + "score": 0.92, + "content": "\\begin{array} { r l } & { \\nabla _ { \\mathbf { W } _ { L - 1 } } \\tilde { L } _ { S } \\big ( \\mathbf { W } ( t ) \\big ) = y _ { i } \\tilde { \\ell } ^ { \\prime } \\big ( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ( t ) } ( \\mathbf { x } _ { i } ) \\big ) \\cdot \\nabla _ { \\mathbf { W } _ { L - 1 } } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ( t ) } ( \\mathbf { x } _ { i } ) } \\\\ & { \\qquad = y _ { i } \\tilde { \\ell } ^ { \\prime } \\big ( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ( t ) } ( \\mathbf { x } _ { i } ) \\big ) \\cdot \\nabla _ { \\mathbf { W } _ { L - 1 } ^ { ( 0 ) } } f _ { \\mathbf { W } ^ { ( 0 ) } } ( \\mathbf { x } _ { i } ) . } \\end{array}", + "type": "interline_equation", + "image_path": "c855dd18490cbf7f3722702be474b6527a7ed95525a88fab1fb3a3885f577e8f.jpg" + } + ] + } + ], + "index": 28, + "virtual_lines": [ + { + "bbox": [ + 159, + 490, + 451, + 503.0 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 159, + 503.0, + 451, + 516.0 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 159, + 516.0, + 451, + 529.0 + ], + "spans": [], + "index": 29 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 533, + 454, + 547 + ], + "lines": [ + { + "bbox": [ + 105, + 531, + 456, + 548 + ], + "spans": [ + { + "bbox": [ + 105, + 531, + 186, + 548 + ], + "score": 1.0, + "content": "Then it is clear that", + "type": "text" + }, + { + "bbox": [ + 186, + 532, + 262, + 547 + ], + "score": 0.93, + "content": "\\nabla _ { \\mathbf { W } _ { L - 1 } } \\widetilde { L } _ { S } ( \\mathbf { W } ( t ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 531, + 456, + 548 + ], + "score": 1.0, + "content": "has fixed direction throughout the optimization.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30, + "bbox_fs": [ + 105, + 531, + 456, + 548 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 551, + 504, + 574 + ], + "lines": [ + { + "bbox": [ + 105, + 550, + 505, + 564 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 428, + 564 + ], + "score": 1.0, + "content": "In order to prove the convergence of gradient flow and characterize the quantity of", + "type": "text" + }, + { + "bbox": [ + 428, + 552, + 437, + 561 + ], + "score": 0.81, + "content": "R", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 550, + 505, + 564 + ], + "score": 1.0, + "content": ", We first provide", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 561, + 494, + 575 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 494, + 575 + ], + "score": 1.0, + "content": "the following lemma which gives an upper bound of the NTRF model output at the initialization.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5, + "bbox_fs": [ + 105, + 550, + 505, + 575 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 578, + 503, + 604 + ], + "lines": [ + { + "bbox": [ + 106, + 577, + 505, + 591 + ], + "spans": [ + { + "bbox": [ + 106, + 577, + 505, + 591 + ], + "score": 1.0, + "content": "Then we provide the following lemma which characterizes a lower bound of the Frobenius norm of", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 590, + 254, + 605 + ], + "spans": [ + { + "bbox": [ + 105, + 590, + 184, + 605 + ], + "score": 1.0, + "content": "the partial gradient", + "type": "text" + }, + { + "bbox": [ + 185, + 590, + 249, + 605 + ], + "score": 0.94, + "content": "\\nabla _ { \\mathbf { W } _ { L - 1 } } \\tilde { L } _ { S } ( \\mathbf { W } )", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 590, + 254, + 605 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5, + "bbox_fs": [ + 105, + 577, + 505, + 605 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 608, + 506, + 642 + ], + "lines": [ + { + "bbox": [ + 105, + 607, + 505, + 621 + ], + "spans": [ + { + "bbox": [ + 105, + 608, + 437, + 621 + ], + "score": 1.0, + "content": "Lemma B.2 (Lemma B.5 in Zou et al. (2019)). Under Assumptions 3.1 and 4.5, if ` ˘", + "type": "text" + }, + { + "bbox": [ + 438, + 607, + 502, + 621 + ], + "score": 0.92, + "content": "m = \\widetilde \\Omega ( n ^ { 2 } \\phi ^ { - 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 608, + 505, + 621 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 619, + 504, + 633 + ], + "spans": [ + { + "bbox": [ + 105, + 619, + 152, + 632 + ], + "score": 1.0, + "content": "then for all", + "type": "text" + }, + { + "bbox": [ + 152, + 621, + 175, + 631 + ], + "score": 0.93, + "content": "t \\geqslant 0", + "type": "inline_equation" + }, + { + "bbox": [ + 176, + 619, + 275, + 632 + ], + "score": 1.0, + "content": ", with probability at least", + "type": "text" + }, + { + "bbox": [ + 276, + 619, + 371, + 633 + ], + "score": 0.91, + "content": "1 - \\exp \\big ( - O ( m \\phi ^ { \\cdot } n ) \\big )", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 619, + 495, + 632 + ], + "score": 1.0, + "content": ", there exist a positive constant", + "type": "text" + }, + { + "bbox": [ + 495, + 621, + 504, + 630 + ], + "score": 0.81, + "content": "C", + "type": "inline_equation" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 630, + 146, + 643 + ], + "spans": [ + { + "bbox": [ + 105, + 630, + 146, + 643 + ], + "score": 1.0, + "content": "such that", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36, + "bbox_fs": [ + 105, + 607, + 505, + 643 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 178, + 644, + 432, + 676 + ], + "lines": [ + { + "bbox": [ + 178, + 644, + 432, + 676 + ], + "spans": [ + { + "bbox": [ + 178, + 644, + 432, + 676 + ], + "score": 0.93, + "content": "\\| \\nabla _ { \\mathbf { W } _ { L - 1 } } \\widetilde { L } _ { S } ( \\mathbf { W } ( t ) ) \\| _ { F } ^ { 2 } \\geqslant \\frac { C m \\phi } { n ^ { 5 } } \\bigg [ \\sum _ { i = 1 } ^ { n } \\widetilde { \\ell } ^ { \\prime } \\big ( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ( t ) } ( \\mathbf { x } _ { i } ) \\big ) \\bigg ] ^ { 2 } .", + "type": "interline_equation", + "image_path": "e2a33f4ef007155699e64e642806e585aa59257cbf95bc0120b4c28c2fe70f42.jpg" + } + ] + } + ], + "index": 39, + "virtual_lines": [ + { + "bbox": [ + 178, + 644, + 432, + 654.6666666666666 + ], + "spans": [], + "index": 38 + }, + { + "bbox": [ + 178, + 654.6666666666666, + 432, + 665.3333333333333 + ], + "spans": [], + "index": 39 + }, + { + "bbox": [ + 178, + 665.3333333333333, + 432, + 675.9999999999999 + ], + "spans": [], + "index": 40 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 684, + 505, + 733 + ], + "lines": [ + { + "bbox": [ + 106, + 685, + 505, + 696 + ], + "spans": [ + { + "bbox": [ + 106, + 685, + 505, + 696 + ], + "score": 1.0, + "content": "We slightly modified the original version of this lemma since we use different models (we consider", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 695, + 506, + 708 + ], + "spans": [ + { + "bbox": [ + 106, + 695, + 506, + 708 + ], + "score": 1.0, + "content": "NTRF model while Zou et al. (2019) considers neural network model). However, by (B.2), it is clear", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 706, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 707, + 173, + 722 + ], + "score": 1.0, + "content": "that the gradient", + "type": "text" + }, + { + "bbox": [ + 173, + 706, + 215, + 720 + ], + "score": 0.92, + "content": "\\nabla \\tilde { L } _ { S } ( \\mathbf { W } )", + "type": "inline_equation" + }, + { + "bbox": [ + 215, + 707, + 506, + 722 + ], + "score": 1.0, + "content": "can be regarded as a type of the gradient for neural network model at the", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 720, + 453, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 180, + 733 + ], + "score": 1.0, + "content": "initialization (i.e.,", + "type": "text" + }, + { + "bbox": [ + 180, + 720, + 259, + 733 + ], + "score": 0.92, + "content": "\\nabla _ { \\mathbf { W } _ { L - 1 } } L _ { S } ( \\mathbf { W } ^ { ( 0 ) } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 720, + 453, + 733 + ], + "score": 1.0, + "content": "is valid. Now we are ready to present the proof.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 42.5, + "bbox_fs": [ + 105, + 685, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 81, + 506, + 129 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 507, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 473, + 96 + ], + "score": 1.0, + "content": "Proof of Proposition 4.6. Recall that we only consider training the last hidden weights, i.e.,", + "type": "text" + }, + { + "bbox": [ + 473, + 83, + 502, + 94 + ], + "score": 0.9, + "content": "\\mathbf { W } _ { L - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 81, + 507, + 96 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 94, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 94, + 506, + 106 + ], + "score": 1.0, + "content": "via gradient flow with squared hinge loss, and our goal is to prove that gradient flow is able to", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 506, + 119 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 290, + 119 + ], + "score": 1.0, + "content": "find a NTRF model within the function class ř ` ˘", + "type": "text" + }, + { + "bbox": [ + 291, + 105, + 342, + 117 + ], + "score": 0.92, + "content": "{ \\mathcal { F } } ( { \\mathbf { W } } ^ { ( 0 ) } , R )", + "type": "inline_equation" + }, + { + "bbox": [ + 342, + 104, + 506, + 119 + ], + "score": 1.0, + "content": "around the initialization, i.e., achieving", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 110, + 502, + 135 + ], + "spans": [ + { + "bbox": [ + 106, + 116, + 249, + 130 + ], + "score": 0.92, + "content": "\\begin{array} { r } { n ^ { - 1 } \\sum _ { i = 1 } ^ { n } \\ell \\big ( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ^ { * } } ( \\mathbf { x } _ { i } ) \\big ) \\leqslant \\epsilon . } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 110, + 268, + 135 + ], + "score": 1.0, + "content": "Let", + "type": "text" + }, + { + "bbox": [ + 268, + 117, + 293, + 128 + ], + "score": 0.89, + "content": "\\mathbf W ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 110, + 384, + 135 + ], + "score": 1.0, + "content": "be the weights at time", + "type": "text" + }, + { + "bbox": [ + 384, + 118, + 389, + 127 + ], + "score": 0.73, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 110, + 502, + 135 + ], + "score": 1.0, + "content": ", gradient flow implies that", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5 + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 134, + 514, + 166 + ], + "lines": [ + { + "bbox": [ + 111, + 134, + 514, + 166 + ], + "spans": [ + { + "bbox": [ + 111, + 134, + 514, + 166 + ], + "score": 0.9, + "content": "\\frac { 1 \\tilde { L } _ { S } ( \\mathbf { W } ( t ) ) } { \\mathrm { d } t } = - \\| \\nabla _ { \\mathbf { W } _ { L - 1 } } \\tilde { L } _ { S } ( \\mathbf { W } ( t ) ) \\| _ { F } ^ { 2 } \\leqslant - \\frac { C m \\phi } { n ^ { 5 } } \\bigg ( \\sum _ { i = 1 } ^ { n } \\tilde { \\ell } ^ { \\prime } \\big ( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ( t ) } ( \\mathbf { x } _ { i } ) \\big ) \\bigg ) ^ { 2 } = \\frac { 4 C m \\phi \\tilde { L } _ { S } ( \\mathbf { W } ( t ) ) } { n ^ { 3 } } ,", + "type": "interline_equation", + "image_path": "b9a247181fbda73054810cdfd5eee8da45c295c54f23d512d9683ac09e1cb5e7.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 111, + 134, + 514, + 144.66666666666666 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 111, + 144.66666666666666, + 514, + 155.33333333333331 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 111, + 155.33333333333331, + 514, + 165.99999999999997 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 169, + 506, + 212 + ], + "lines": [ + { + "bbox": [ + 105, + 169, + 504, + 183 + ], + "spans": [ + { + "bbox": [ + 105, + 169, + 504, + 183 + ], + "score": 1.0, + "content": "where the first equality is due to the fact that we only train the last hidden layer, the first inequalityb", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 104, + 181, + 505, + 201 + ], + "spans": [ + { + "bbox": [ + 104, + 183, + 382, + 201 + ], + "score": 1.0, + "content": "is by Lemma B.2 and the second equality follows from the fact that", + "type": "text" + }, + { + "bbox": [ + 383, + 181, + 452, + 201 + ], + "score": 0.94, + "content": "\\widetilde { \\ell } ^ { \\prime } ( . ) = - 2 \\sqrt { \\widetilde { \\ell } ( . ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 452, + 183, + 505, + 201 + ], + "score": 1.0, + "content": ". Solving the", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 199, + 199, + 213 + ], + "spans": [ + { + "bbox": [ + 105, + 199, + 199, + 213 + ], + "score": 1.0, + "content": "above inequality gives", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8 + }, + { + "type": "interline_equation", + "bbox": [ + 209, + 215, + 401, + 243 + ], + "lines": [ + { + "bbox": [ + 209, + 215, + 401, + 243 + ], + "spans": [ + { + "bbox": [ + 209, + 215, + 401, + 243 + ], + "score": 0.93, + "content": "\\widetilde L _ { S } ( \\mathbf { W } ( t ) ) \\leqslant \\widetilde L _ { S } ( \\mathbf { W } ( 0 ) ) \\cdot \\exp \\Bigg ( - \\frac { 4 C m \\phi t } { n ^ { 3 } } \\Bigg ) .", + "type": "interline_equation", + "image_path": "c70f8c141404dee9f146d15b78abb9b128f456043af55cf0c2e37a8e8cf29e67.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 209, + 215, + 401, + 243 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 247, + 506, + 300 + ], + "lines": [ + { + "bbox": [ + 105, + 247, + 506, + 263 + ], + "spans": [ + { + "bbox": [ + 105, + 247, + 146, + 263 + ], + "score": 1.0, + "content": "Then, set", + "type": "text" + }, + { + "bbox": [ + 146, + 248, + 315, + 262 + ], + "score": 0.9, + "content": "T = \\mathcal { O } \\big ( n ^ { 3 } m ^ { - 1 } \\phi ^ { - 1 } \\cdot \\log ( \\widetilde { L } _ { S } ( \\mathbf { W } ( 0 ) ) / \\epsilon ^ { \\prime } ) \\big )", + "type": "inline_equation" + }, + { + "bbox": [ + 315, + 247, + 334, + 263 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 335, + 249, + 371, + 262 + ], + "score": 0.92, + "content": "\\epsilon ^ { \\prime } = 1 / n", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 247, + 411, + 263 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + }, + { + "bbox": [ + 412, + 248, + 477, + 262 + ], + "score": 0.92, + "content": "\\widetilde { L } _ { S } ( \\mathbf { W } ( t ) ) \\leqslant \\epsilon ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 477, + 247, + 506, + 263 + ], + "score": 1.0, + "content": ". Then", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 104, + 262, + 510, + 302 + ], + "spans": [ + { + "bbox": [ + 104, + 262, + 166, + 279 + ], + "score": 1.0, + "content": "it follows that ř `", + "type": "text" + }, + { + "bbox": [ + 106, + 277, + 249, + 290 + ], + "score": 0.91, + "content": "n ^ { - 1 } \\sum _ { i = 1 } ^ { n } \\ell \\big ( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ^ { * } } \\big ( \\mathbf { x } _ { i } \\big ) \\big ) \\leqslant \\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 166, + 263, + 272, + 277 + ], + "score": 0.9, + "content": "\\widetilde { \\ell } \\left( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ( t ) } ( \\mathbf { x } _ { i } ) \\right) \\leqslant 1", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 269, + 299, + 302 + ], + "score": 1.0, + "content": ". Therefore,", + "type": "text" + }, + { + "bbox": [ + 272, + 262, + 354, + 279 + ], + "score": 1.0, + "content": ", which implies that", + "type": "text" + }, + { + "bbox": [ + 299, + 277, + 327, + 290 + ], + "score": 0.91, + "content": "\\mathbf { W } ( T )", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 269, + 510, + 302 + ], + "score": 1.0, + "content": "is exactly the NTRF model we are looking", + "type": "text" + }, + { + "bbox": [ + 354, + 264, + 466, + 277 + ], + "score": 0.92, + "content": "y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ( t ) } ( \\mathbf { x } _ { i } ) \\geqslant \\log ( \\epsilon )", + "type": "inline_equation" + }, + { + "bbox": [ + 467, + 262, + 506, + 279 + ], + "score": 1.0, + "content": "and thus", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5 + }, + { + "type": "text", + "bbox": [ + 106, + 304, + 505, + 331 + ], + "lines": [ + { + "bbox": [ + 106, + 305, + 505, + 318 + ], + "spans": [ + { + "bbox": [ + 106, + 305, + 320, + 318 + ], + "score": 1.0, + "content": "The next step is to characterize the distance between", + "type": "text" + }, + { + "bbox": [ + 321, + 306, + 348, + 317 + ], + "score": 0.89, + "content": "\\mathbf { W } ( T )", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 305, + 367, + 318 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 367, + 306, + 393, + 317 + ], + "score": 0.76, + "content": "\\mathbf { W } ( 0 )", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 305, + 505, + 318 + ], + "score": 1.0, + "content": "in order to characterize the", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 317, + 435, + 332 + ], + "spans": [ + { + "bbox": [ + 105, + 317, + 152, + 332 + ], + "score": 1.0, + "content": "quantity of", + "type": "text" + }, + { + "bbox": [ + 153, + 319, + 162, + 329 + ], + "score": 0.8, + "content": "R", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 317, + 205, + 332 + ], + "score": 1.0, + "content": ". Note that", + "type": "text" + }, + { + "bbox": [ + 205, + 317, + 396, + 331 + ], + "score": 0.92, + "content": "\\| \\nabla _ { \\mathbf { W } _ { L - 1 } } \\widetilde { L } _ { S } ( \\mathbf { W } ( t ) ) \\| _ { F } ^ { 2 } \\geqslant 4 C m \\phi \\widetilde { L } _ { S } ( \\mathbf { W } ( t ) ) / n ^ { 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 317, + 435, + 332 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5 + }, + { + "type": "interline_equation", + "bbox": [ + 125, + 339, + 485, + 379 + ], + "lines": [ + { + "bbox": [ + 125, + 339, + 485, + 379 + ], + "spans": [ + { + "bbox": [ + 125, + 339, + 485, + 379 + ], + "score": 0.92, + "content": "\\frac { \\mathrm { d } \\sqrt { \\tilde { L } _ { S } ( \\mathbf { W } ( t ) ) } } { \\mathrm { d } t } = - \\frac { \\| \\nabla _ { \\mathbf { W } _ { L - 1 } } \\tilde { L } _ { S } ( \\mathbf { W } ( t ) ) \\| _ { F } ^ { 2 } } { 2 \\sqrt { \\tilde { L } _ { S } ( \\mathbf { W } ( t ) ) } } \\leqslant - \\| \\nabla _ { \\mathbf { W } _ { L - 1 } } \\tilde { L } _ { S } ( \\mathbf { W } ( t ) ) \\| _ { F } \\cdot \\frac { C ^ { 1 / 2 } m ^ { 1 / 2 } \\phi ^ { 1 / 2 } } { n ^ { 3 / 2 } } .", + "type": "interline_equation", + "image_path": "62969375d08b29605c62b2926c5f0523e81e883d3113fcaf2e1816f325314b72.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 125, + 339, + 485, + 352.3333333333333 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 125, + 352.3333333333333, + 485, + 365.66666666666663 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 125, + 365.66666666666663, + 485, + 378.99999999999994 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 382, + 352, + 394 + ], + "lines": [ + { + "bbox": [ + 105, + 381, + 352, + 396 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 352, + 396 + ], + "score": 1.0, + "content": "Taking integral on both sides and rearranging terms, we have", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "interline_equation", + "bbox": [ + 133, + 398, + 477, + 428 + ], + "lines": [ + { + "bbox": [ + 133, + 398, + 477, + 428 + ], + "spans": [ + { + "bbox": [ + 133, + 398, + 477, + 428 + ], + "score": 0.92, + "content": "\\int _ { t = 0 } ^ { T } \\| \\nabla _ { \\mathbf { W } _ { L - 1 } } \\tilde { L } _ { S } ( \\mathbf { W } ( t ) ) \\| _ { F } \\mathrm { d } t \\leqslant \\frac { n ^ { 3 / 2 } } { C ^ { 1 / 2 } m ^ { 1 / 2 } \\phi ^ { 1 / 2 } } \\cdot \\left( \\sqrt { \\tilde { L } _ { S } ( \\mathbf { W } ( 0 ) ) } - \\sqrt { \\tilde { L } _ { S } ( \\mathbf { W } ( t ) ) } \\right) .", + "type": "interline_equation", + "image_path": "a2f22cdf7302bbeda5b5a51764b2b64ccf8fc605817b71c865f30ff558137690.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 133, + 398, + 477, + 408.0 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 133, + 408.0, + 477, + 418.0 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 133, + 418.0, + 477, + 428.0 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 432, + 506, + 455 + ], + "lines": [ + { + "bbox": [ + 104, + 429, + 505, + 447 + ], + "spans": [ + { + "bbox": [ + 104, + 429, + 362, + 447 + ], + "score": 1.0, + "content": "Note that the L.H.S. of the above inequality is an upper bound of", + "type": "text" + }, + { + "bbox": [ + 362, + 432, + 437, + 444 + ], + "score": 0.93, + "content": "\\| \\mathbf { W } ( t ) - \\mathbf { W } ( 0 ) \\| _ { F }", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 429, + 505, + 447 + ], + "score": 1.0, + "content": ", we have for any", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 107, + 442, + 135, + 456 + ], + "spans": [ + { + "bbox": [ + 107, + 444, + 129, + 454 + ], + "score": 0.87, + "content": "t \\geqslant 0", + "type": "inline_equation" + }, + { + "bbox": [ + 130, + 442, + 135, + 456 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5 + }, + { + "type": "interline_equation", + "bbox": [ + 143, + 459, + 467, + 488 + ], + "lines": [ + { + "bbox": [ + 143, + 459, + 467, + 488 + ], + "spans": [ + { + "bbox": [ + 143, + 459, + 467, + 488 + ], + "score": 0.93, + "content": "\\| \\mathbf { W } ( t ) - \\mathbf { W } ( 0 ) \\| _ { F } \\leqslant \\frac { n ^ { 3 / 2 } } { C ^ { 1 / 2 } m ^ { 1 / 2 } \\phi ^ { 1 / 2 } } \\cdot \\sqrt { \\tilde { L } _ { S } ( \\mathbf { W } ( 0 ) ) } = \\mathcal { O } \\biggl ( \\frac { n ^ { 3 / 2 } \\log \\left( n / ( \\delta \\epsilon ) \\right) } { m ^ { 1 / 2 } \\phi ^ { 1 / 2 } } \\biggr ) ,", + "type": "interline_equation", + "image_path": "000580e773bbaf7fdd71e7ed12030cde3ba0b6594f3c8a1d4dd9d7bfb72747cf.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 143, + 459, + 467, + 488 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 492, + 505, + 517 + ], + "lines": [ + { + "bbox": [ + 106, + 492, + 505, + 505 + ], + "spans": [ + { + "bbox": [ + 106, + 492, + 360, + 505 + ], + "score": 1.0, + "content": "where the second inequality is by Lemma B.1 and our choice of", + "type": "text" + }, + { + "bbox": [ + 361, + 492, + 432, + 505 + ], + "score": 0.94, + "content": "\\lambda = \\log ( 1 / \\epsilon ) + 1", + "type": "inline_equation" + }, + { + "bbox": [ + 433, + 492, + 505, + 505 + ], + "score": 1.0, + "content": ". This implies that", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 503, + 342, + 518 + ], + "spans": [ + { + "bbox": [ + 105, + 503, + 184, + 518 + ], + "score": 1.0, + "content": "there exists a point", + "type": "text" + }, + { + "bbox": [ + 184, + 505, + 202, + 515 + ], + "score": 0.84, + "content": "\\mathbf { W } ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 503, + 268, + 518 + ], + "score": 1.0, + "content": "within the class", + "type": "text" + }, + { + "bbox": [ + 268, + 504, + 320, + 517 + ], + "score": 0.93, + "content": "{ \\mathcal { F } } ( { \\bf W } ^ { ( 0 ) } , R )", + "type": "inline_equation" + }, + { + "bbox": [ + 320, + 503, + 342, + 518 + ], + "score": 1.0, + "content": "with", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5 + }, + { + "type": "interline_equation", + "bbox": [ + 246, + 521, + 365, + 551 + ], + "lines": [ + { + "bbox": [ + 246, + 521, + 365, + 551 + ], + "spans": [ + { + "bbox": [ + 246, + 521, + 365, + 551 + ], + "score": 0.95, + "content": "R = \\mathcal { O } \\left( \\frac { n ^ { 3 / 2 } \\log \\left( n / ( \\delta \\epsilon ) \\right) } { \\phi ^ { 1 / 2 } } \\right)", + "type": "interline_equation", + "image_path": "a77b86bd549a6da6152f92aecc6a42fa8495e0ca9c328d78dd083c850c2cc84f.jpg" + } + ] + } + ], + "index": 27.5, + "virtual_lines": [ + { + "bbox": [ + 246, + 521, + 365, + 536.0 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 246, + 536.0, + 365, + 551.0 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 555, + 145, + 566 + ], + "lines": [ + { + "bbox": [ + 105, + 554, + 146, + 567 + ], + "spans": [ + { + "bbox": [ + 105, + 554, + 146, + 567 + ], + "score": 1.0, + "content": "such that", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "interline_equation", + "bbox": [ + 218, + 569, + 393, + 600 + ], + "lines": [ + { + "bbox": [ + 218, + 569, + 393, + 600 + ], + "spans": [ + { + "bbox": [ + 218, + 569, + 393, + 600 + ], + "score": 0.94, + "content": "\\epsilon _ { \\mathrm { N T R F } } : = n ^ { - 1 } \\sum _ { i = 1 } ^ { n } \\ell \\big ( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ^ { * } } ( \\mathbf { x } _ { i } ) \\big ) \\leqslant \\epsilon .", + "type": "interline_equation", + "image_path": "a0c627ffe71d82219f9be6b21d4763a2edd7df5b92eb175f7fd55f3874878b37.jpg" + } + ] + } + ], + "index": 30.5, + "virtual_lines": [ + { + "bbox": [ + 218, + 569, + 393, + 584.5 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 218, + 584.5, + 393, + 600.0 + ], + "spans": [], + "index": 31 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 604, + 503, + 627 + ], + "lines": [ + { + "bbox": [ + 105, + 603, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 603, + 505, + 617 + ], + "score": 1.0, + "content": "Then by Theorem 3.3, and, more specifically, (A.1), we can compute the minimal required neural", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 614, + 213, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 614, + 213, + 628 + ], + "score": 1.0, + "content": "network width as follows,", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5 + }, + { + "type": "interline_equation", + "bbox": [ + 236, + 630, + 375, + 664 + ], + "lines": [ + { + "bbox": [ + 236, + 630, + 375, + 664 + ], + "spans": [ + { + "bbox": [ + 236, + 630, + 375, + 664 + ], + "score": 0.94, + "content": "m = \\widetilde \\Omega ( R ^ { 8 } L ^ { 2 2 } ) = \\widetilde \\Omega \\left( \\frac { L ^ { 2 2 } n ^ { 1 2 } } { \\phi ^ { 4 } } \\right) .", + "type": "interline_equation", + "image_path": "3141bc9b2ada03b35bf0961e32e3cb50500c1ef9313c43208ab30ba1b13fa64b.jpg" + } + ] + } + ], + "index": 34.5, + "virtual_lines": [ + { + "bbox": [ + 236, + 630, + 375, + 647.0 + ], + "spans": [], + "index": 34 + }, + { + "bbox": [ + 236, + 647.0, + 375, + 664.0 + ], + "spans": [], + "index": 35 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 668, + 209, + 680 + ], + "lines": [ + { + "bbox": [ + 106, + 667, + 210, + 681 + ], + "spans": [ + { + "bbox": [ + 106, + 667, + 210, + 681 + ], + "score": 1.0, + "content": "This completes the proof.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 36 + }, + { + "type": "title", + "bbox": [ + 107, + 695, + 293, + 709 + ], + "lines": [ + { + "bbox": [ + 106, + 694, + 294, + 710 + ], + "spans": [ + { + "bbox": [ + 106, + 694, + 294, + 710 + ], + "score": 1.0, + "content": "C PROOF OF TECHNICAL LEMMAS", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 106, + 720, + 332, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 720, + 333, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 333, + 733 + ], + "score": 1.0, + "content": "Here we provide the proof of Lemmas 5.1, A.3 and A.4.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38 + } + ], + "page_idx": 16, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 26, + 293, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 293, + 39 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 293, + 39 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 765 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 765 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 13 + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 494, + 668, + 505, + 679 + ], + "lines": [ + { + "bbox": [ + 496, + 670, + 504, + 678 + ], + "spans": [ + { + "bbox": [ + 496, + 670, + 504, + 678 + ], + "score": 0.995, + "content": "□", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 81, + 506, + 129 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 507, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 473, + 96 + ], + "score": 1.0, + "content": "Proof of Proposition 4.6. Recall that we only consider training the last hidden weights, i.e.,", + "type": "text" + }, + { + "bbox": [ + 473, + 83, + 502, + 94 + ], + "score": 0.9, + "content": "\\mathbf { W } _ { L - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 81, + 507, + 96 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 94, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 94, + 506, + 106 + ], + "score": 1.0, + "content": "via gradient flow with squared hinge loss, and our goal is to prove that gradient flow is able to", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 506, + 119 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 290, + 119 + ], + "score": 1.0, + "content": "find a NTRF model within the function class ř ` ˘", + "type": "text" + }, + { + "bbox": [ + 291, + 105, + 342, + 117 + ], + "score": 0.92, + "content": "{ \\mathcal { F } } ( { \\mathbf { W } } ^ { ( 0 ) } , R )", + "type": "inline_equation" + }, + { + "bbox": [ + 342, + 104, + 506, + 119 + ], + "score": 1.0, + "content": "around the initialization, i.e., achieving", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 110, + 502, + 135 + ], + "spans": [ + { + "bbox": [ + 106, + 116, + 249, + 130 + ], + "score": 0.92, + "content": "\\begin{array} { r } { n ^ { - 1 } \\sum _ { i = 1 } ^ { n } \\ell \\big ( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ^ { * } } ( \\mathbf { x } _ { i } ) \\big ) \\leqslant \\epsilon . } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 110, + 268, + 135 + ], + "score": 1.0, + "content": "Let", + "type": "text" + }, + { + "bbox": [ + 268, + 117, + 293, + 128 + ], + "score": 0.89, + "content": "\\mathbf W ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 110, + 384, + 135 + ], + "score": 1.0, + "content": "be the weights at time", + "type": "text" + }, + { + "bbox": [ + 384, + 118, + 389, + 127 + ], + "score": 0.73, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 110, + 502, + 135 + ], + "score": 1.0, + "content": ", gradient flow implies that", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5, + "bbox_fs": [ + 105, + 81, + 507, + 135 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 134, + 514, + 166 + ], + "lines": [ + { + "bbox": [ + 111, + 134, + 514, + 166 + ], + "spans": [ + { + "bbox": [ + 111, + 134, + 514, + 166 + ], + "score": 0.9, + "content": "\\frac { 1 \\tilde { L } _ { S } ( \\mathbf { W } ( t ) ) } { \\mathrm { d } t } = - \\| \\nabla _ { \\mathbf { W } _ { L - 1 } } \\tilde { L } _ { S } ( \\mathbf { W } ( t ) ) \\| _ { F } ^ { 2 } \\leqslant - \\frac { C m \\phi } { n ^ { 5 } } \\bigg ( \\sum _ { i = 1 } ^ { n } \\tilde { \\ell } ^ { \\prime } \\big ( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ( t ) } ( \\mathbf { x } _ { i } ) \\big ) \\bigg ) ^ { 2 } = \\frac { 4 C m \\phi \\tilde { L } _ { S } ( \\mathbf { W } ( t ) ) } { n ^ { 3 } } ,", + "type": "interline_equation", + "image_path": "b9a247181fbda73054810cdfd5eee8da45c295c54f23d512d9683ac09e1cb5e7.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 111, + 134, + 514, + 144.66666666666666 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 111, + 144.66666666666666, + 514, + 155.33333333333331 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 111, + 155.33333333333331, + 514, + 165.99999999999997 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 169, + 506, + 212 + ], + "lines": [ + { + "bbox": [ + 105, + 169, + 504, + 183 + ], + "spans": [ + { + "bbox": [ + 105, + 169, + 504, + 183 + ], + "score": 1.0, + "content": "where the first equality is due to the fact that we only train the last hidden layer, the first inequalityb", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 104, + 181, + 505, + 201 + ], + "spans": [ + { + "bbox": [ + 104, + 183, + 382, + 201 + ], + "score": 1.0, + "content": "is by Lemma B.2 and the second equality follows from the fact that", + "type": "text" + }, + { + "bbox": [ + 383, + 181, + 452, + 201 + ], + "score": 0.94, + "content": "\\widetilde { \\ell } ^ { \\prime } ( . ) = - 2 \\sqrt { \\widetilde { \\ell } ( . ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 452, + 183, + 505, + 201 + ], + "score": 1.0, + "content": ". Solving the", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 199, + 199, + 213 + ], + "spans": [ + { + "bbox": [ + 105, + 199, + 199, + 213 + ], + "score": 1.0, + "content": "above inequality gives", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8, + "bbox_fs": [ + 104, + 169, + 505, + 213 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 209, + 215, + 401, + 243 + ], + "lines": [ + { + "bbox": [ + 209, + 215, + 401, + 243 + ], + "spans": [ + { + "bbox": [ + 209, + 215, + 401, + 243 + ], + "score": 0.93, + "content": "\\widetilde L _ { S } ( \\mathbf { W } ( t ) ) \\leqslant \\widetilde L _ { S } ( \\mathbf { W } ( 0 ) ) \\cdot \\exp \\Bigg ( - \\frac { 4 C m \\phi t } { n ^ { 3 } } \\Bigg ) .", + "type": "interline_equation", + "image_path": "c70f8c141404dee9f146d15b78abb9b128f456043af55cf0c2e37a8e8cf29e67.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 209, + 215, + 401, + 243 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 247, + 506, + 300 + ], + "lines": [ + { + "bbox": [ + 105, + 247, + 506, + 263 + ], + "spans": [ + { + "bbox": [ + 105, + 247, + 146, + 263 + ], + "score": 1.0, + "content": "Then, set", + "type": "text" + }, + { + "bbox": [ + 146, + 248, + 315, + 262 + ], + "score": 0.9, + "content": "T = \\mathcal { O } \\big ( n ^ { 3 } m ^ { - 1 } \\phi ^ { - 1 } \\cdot \\log ( \\widetilde { L } _ { S } ( \\mathbf { W } ( 0 ) ) / \\epsilon ^ { \\prime } ) \\big )", + "type": "inline_equation" + }, + { + "bbox": [ + 315, + 247, + 334, + 263 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 335, + 249, + 371, + 262 + ], + "score": 0.92, + "content": "\\epsilon ^ { \\prime } = 1 / n", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 247, + 411, + 263 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + }, + { + "bbox": [ + 412, + 248, + 477, + 262 + ], + "score": 0.92, + "content": "\\widetilde { L } _ { S } ( \\mathbf { W } ( t ) ) \\leqslant \\epsilon ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 477, + 247, + 506, + 263 + ], + "score": 1.0, + "content": ". Then", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 104, + 262, + 510, + 302 + ], + "spans": [ + { + "bbox": [ + 104, + 262, + 166, + 279 + ], + "score": 1.0, + "content": "it follows that ř `", + "type": "text" + }, + { + "bbox": [ + 106, + 277, + 249, + 290 + ], + "score": 0.91, + "content": "n ^ { - 1 } \\sum _ { i = 1 } ^ { n } \\ell \\big ( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ^ { * } } \\big ( \\mathbf { x } _ { i } \\big ) \\big ) \\leqslant \\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 166, + 263, + 272, + 277 + ], + "score": 0.9, + "content": "\\widetilde { \\ell } \\left( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ( t ) } ( \\mathbf { x } _ { i } ) \\right) \\leqslant 1", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 269, + 299, + 302 + ], + "score": 1.0, + "content": ". Therefore,", + "type": "text" + }, + { + "bbox": [ + 272, + 262, + 354, + 279 + ], + "score": 1.0, + "content": ", which implies that", + "type": "text" + }, + { + "bbox": [ + 299, + 277, + 327, + 290 + ], + "score": 0.91, + "content": "\\mathbf { W } ( T )", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 269, + 510, + 302 + ], + "score": 1.0, + "content": "is exactly the NTRF model we are looking", + "type": "text" + }, + { + "bbox": [ + 354, + 264, + 466, + 277 + ], + "score": 0.92, + "content": "y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ( t ) } ( \\mathbf { x } _ { i } ) \\geqslant \\log ( \\epsilon )", + "type": "inline_equation" + }, + { + "bbox": [ + 467, + 262, + 506, + 279 + ], + "score": 1.0, + "content": "and thus", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5, + "bbox_fs": [ + 104, + 247, + 510, + 302 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 304, + 505, + 331 + ], + "lines": [ + { + "bbox": [ + 106, + 305, + 505, + 318 + ], + "spans": [ + { + "bbox": [ + 106, + 305, + 320, + 318 + ], + "score": 1.0, + "content": "The next step is to characterize the distance between", + "type": "text" + }, + { + "bbox": [ + 321, + 306, + 348, + 317 + ], + "score": 0.89, + "content": "\\mathbf { W } ( T )", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 305, + 367, + 318 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 367, + 306, + 393, + 317 + ], + "score": 0.76, + "content": "\\mathbf { W } ( 0 )", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 305, + 505, + 318 + ], + "score": 1.0, + "content": "in order to characterize the", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 317, + 435, + 332 + ], + "spans": [ + { + "bbox": [ + 105, + 317, + 152, + 332 + ], + "score": 1.0, + "content": "quantity of", + "type": "text" + }, + { + "bbox": [ + 153, + 319, + 162, + 329 + ], + "score": 0.8, + "content": "R", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 317, + 205, + 332 + ], + "score": 1.0, + "content": ". Note that", + "type": "text" + }, + { + "bbox": [ + 205, + 317, + 396, + 331 + ], + "score": 0.92, + "content": "\\| \\nabla _ { \\mathbf { W } _ { L - 1 } } \\widetilde { L } _ { S } ( \\mathbf { W } ( t ) ) \\| _ { F } ^ { 2 } \\geqslant 4 C m \\phi \\widetilde { L } _ { S } ( \\mathbf { W } ( t ) ) / n ^ { 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 317, + 435, + 332 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5, + "bbox_fs": [ + 105, + 305, + 505, + 332 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 125, + 339, + 485, + 379 + ], + "lines": [ + { + "bbox": [ + 125, + 339, + 485, + 379 + ], + "spans": [ + { + "bbox": [ + 125, + 339, + 485, + 379 + ], + "score": 0.92, + "content": "\\frac { \\mathrm { d } \\sqrt { \\tilde { L } _ { S } ( \\mathbf { W } ( t ) ) } } { \\mathrm { d } t } = - \\frac { \\| \\nabla _ { \\mathbf { W } _ { L - 1 } } \\tilde { L } _ { S } ( \\mathbf { W } ( t ) ) \\| _ { F } ^ { 2 } } { 2 \\sqrt { \\tilde { L } _ { S } ( \\mathbf { W } ( t ) ) } } \\leqslant - \\| \\nabla _ { \\mathbf { W } _ { L - 1 } } \\tilde { L } _ { S } ( \\mathbf { W } ( t ) ) \\| _ { F } \\cdot \\frac { C ^ { 1 / 2 } m ^ { 1 / 2 } \\phi ^ { 1 / 2 } } { n ^ { 3 / 2 } } .", + "type": "interline_equation", + "image_path": "62969375d08b29605c62b2926c5f0523e81e883d3113fcaf2e1816f325314b72.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 125, + 339, + 485, + 352.3333333333333 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 125, + 352.3333333333333, + 485, + 365.66666666666663 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 125, + 365.66666666666663, + 485, + 378.99999999999994 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 382, + 352, + 394 + ], + "lines": [ + { + "bbox": [ + 105, + 381, + 352, + 396 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 352, + 396 + ], + "score": 1.0, + "content": "Taking integral on both sides and rearranging terms, we have", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18, + "bbox_fs": [ + 105, + 381, + 352, + 396 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 133, + 398, + 477, + 428 + ], + "lines": [ + { + "bbox": [ + 133, + 398, + 477, + 428 + ], + "spans": [ + { + "bbox": [ + 133, + 398, + 477, + 428 + ], + "score": 0.92, + "content": "\\int _ { t = 0 } ^ { T } \\| \\nabla _ { \\mathbf { W } _ { L - 1 } } \\tilde { L } _ { S } ( \\mathbf { W } ( t ) ) \\| _ { F } \\mathrm { d } t \\leqslant \\frac { n ^ { 3 / 2 } } { C ^ { 1 / 2 } m ^ { 1 / 2 } \\phi ^ { 1 / 2 } } \\cdot \\left( \\sqrt { \\tilde { L } _ { S } ( \\mathbf { W } ( 0 ) ) } - \\sqrt { \\tilde { L } _ { S } ( \\mathbf { W } ( t ) ) } \\right) .", + "type": "interline_equation", + "image_path": "a2f22cdf7302bbeda5b5a51764b2b64ccf8fc605817b71c865f30ff558137690.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 133, + 398, + 477, + 408.0 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 133, + 408.0, + 477, + 418.0 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 133, + 418.0, + 477, + 428.0 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 432, + 506, + 455 + ], + "lines": [ + { + "bbox": [ + 104, + 429, + 505, + 447 + ], + "spans": [ + { + "bbox": [ + 104, + 429, + 362, + 447 + ], + "score": 1.0, + "content": "Note that the L.H.S. of the above inequality is an upper bound of", + "type": "text" + }, + { + "bbox": [ + 362, + 432, + 437, + 444 + ], + "score": 0.93, + "content": "\\| \\mathbf { W } ( t ) - \\mathbf { W } ( 0 ) \\| _ { F }", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 429, + 505, + 447 + ], + "score": 1.0, + "content": ", we have for any", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 107, + 442, + 135, + 456 + ], + "spans": [ + { + "bbox": [ + 107, + 444, + 129, + 454 + ], + "score": 0.87, + "content": "t \\geqslant 0", + "type": "inline_equation" + }, + { + "bbox": [ + 130, + 442, + 135, + 456 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5, + "bbox_fs": [ + 104, + 429, + 505, + 456 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 143, + 459, + 467, + 488 + ], + "lines": [ + { + "bbox": [ + 143, + 459, + 467, + 488 + ], + "spans": [ + { + "bbox": [ + 143, + 459, + 467, + 488 + ], + "score": 0.93, + "content": "\\| \\mathbf { W } ( t ) - \\mathbf { W } ( 0 ) \\| _ { F } \\leqslant \\frac { n ^ { 3 / 2 } } { C ^ { 1 / 2 } m ^ { 1 / 2 } \\phi ^ { 1 / 2 } } \\cdot \\sqrt { \\tilde { L } _ { S } ( \\mathbf { W } ( 0 ) ) } = \\mathcal { O } \\biggl ( \\frac { n ^ { 3 / 2 } \\log \\left( n / ( \\delta \\epsilon ) \\right) } { m ^ { 1 / 2 } \\phi ^ { 1 / 2 } } \\biggr ) ,", + "type": "interline_equation", + "image_path": "000580e773bbaf7fdd71e7ed12030cde3ba0b6594f3c8a1d4dd9d7bfb72747cf.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 143, + 459, + 467, + 488 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 492, + 505, + 517 + ], + "lines": [ + { + "bbox": [ + 106, + 492, + 505, + 505 + ], + "spans": [ + { + "bbox": [ + 106, + 492, + 360, + 505 + ], + "score": 1.0, + "content": "where the second inequality is by Lemma B.1 and our choice of", + "type": "text" + }, + { + "bbox": [ + 361, + 492, + 432, + 505 + ], + "score": 0.94, + "content": "\\lambda = \\log ( 1 / \\epsilon ) + 1", + "type": "inline_equation" + }, + { + "bbox": [ + 433, + 492, + 505, + 505 + ], + "score": 1.0, + "content": ". This implies that", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 503, + 342, + 518 + ], + "spans": [ + { + "bbox": [ + 105, + 503, + 184, + 518 + ], + "score": 1.0, + "content": "there exists a point", + "type": "text" + }, + { + "bbox": [ + 184, + 505, + 202, + 515 + ], + "score": 0.84, + "content": "\\mathbf { W } ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 503, + 268, + 518 + ], + "score": 1.0, + "content": "within the class", + "type": "text" + }, + { + "bbox": [ + 268, + 504, + 320, + 517 + ], + "score": 0.93, + "content": "{ \\mathcal { F } } ( { \\bf W } ^ { ( 0 ) } , R )", + "type": "inline_equation" + }, + { + "bbox": [ + 320, + 503, + 342, + 518 + ], + "score": 1.0, + "content": "with", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5, + "bbox_fs": [ + 105, + 492, + 505, + 518 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 246, + 521, + 365, + 551 + ], + "lines": [ + { + "bbox": [ + 246, + 521, + 365, + 551 + ], + "spans": [ + { + "bbox": [ + 246, + 521, + 365, + 551 + ], + "score": 0.95, + "content": "R = \\mathcal { O } \\left( \\frac { n ^ { 3 / 2 } \\log \\left( n / ( \\delta \\epsilon ) \\right) } { \\phi ^ { 1 / 2 } } \\right)", + "type": "interline_equation", + "image_path": "a77b86bd549a6da6152f92aecc6a42fa8495e0ca9c328d78dd083c850c2cc84f.jpg" + } + ] + } + ], + "index": 27.5, + "virtual_lines": [ + { + "bbox": [ + 246, + 521, + 365, + 536.0 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 246, + 536.0, + 365, + 551.0 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 555, + 145, + 566 + ], + "lines": [ + { + "bbox": [ + 105, + 554, + 146, + 567 + ], + "spans": [ + { + "bbox": [ + 105, + 554, + 146, + 567 + ], + "score": 1.0, + "content": "such that", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29, + "bbox_fs": [ + 105, + 554, + 146, + 567 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 218, + 569, + 393, + 600 + ], + "lines": [ + { + "bbox": [ + 218, + 569, + 393, + 600 + ], + "spans": [ + { + "bbox": [ + 218, + 569, + 393, + 600 + ], + "score": 0.94, + "content": "\\epsilon _ { \\mathrm { N T R F } } : = n ^ { - 1 } \\sum _ { i = 1 } ^ { n } \\ell \\big ( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ^ { * } } ( \\mathbf { x } _ { i } ) \\big ) \\leqslant \\epsilon .", + "type": "interline_equation", + "image_path": "a0c627ffe71d82219f9be6b21d4763a2edd7df5b92eb175f7fd55f3874878b37.jpg" + } + ] + } + ], + "index": 30.5, + "virtual_lines": [ + { + "bbox": [ + 218, + 569, + 393, + 584.5 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 218, + 584.5, + 393, + 600.0 + ], + "spans": [], + "index": 31 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 604, + 503, + 627 + ], + "lines": [ + { + "bbox": [ + 105, + 603, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 603, + 505, + 617 + ], + "score": 1.0, + "content": "Then by Theorem 3.3, and, more specifically, (A.1), we can compute the minimal required neural", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 614, + 213, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 614, + 213, + 628 + ], + "score": 1.0, + "content": "network width as follows,", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5, + "bbox_fs": [ + 105, + 603, + 505, + 628 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 236, + 630, + 375, + 664 + ], + "lines": [ + { + "bbox": [ + 236, + 630, + 375, + 664 + ], + "spans": [ + { + "bbox": [ + 236, + 630, + 375, + 664 + ], + "score": 0.94, + "content": "m = \\widetilde \\Omega ( R ^ { 8 } L ^ { 2 2 } ) = \\widetilde \\Omega \\left( \\frac { L ^ { 2 2 } n ^ { 1 2 } } { \\phi ^ { 4 } } \\right) .", + "type": "interline_equation", + "image_path": "3141bc9b2ada03b35bf0961e32e3cb50500c1ef9313c43208ab30ba1b13fa64b.jpg" + } + ] + } + ], + "index": 34.5, + "virtual_lines": [ + { + "bbox": [ + 236, + 630, + 375, + 647.0 + ], + "spans": [], + "index": 34 + }, + { + "bbox": [ + 236, + 647.0, + 375, + 664.0 + ], + "spans": [], + "index": 35 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 668, + 209, + 680 + ], + "lines": [ + { + "bbox": [ + 106, + 667, + 210, + 681 + ], + "spans": [ + { + "bbox": [ + 106, + 667, + 210, + 681 + ], + "score": 1.0, + "content": "This completes the proof.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 36, + "bbox_fs": [ + 106, + 667, + 210, + 681 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 695, + 293, + 709 + ], + "lines": [ + { + "bbox": [ + 106, + 694, + 294, + 710 + ], + "spans": [ + { + "bbox": [ + 106, + 694, + 294, + 710 + ], + "score": 1.0, + "content": "C PROOF OF TECHNICAL LEMMAS", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 106, + 720, + 332, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 720, + 333, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 333, + 733 + ], + "score": 1.0, + "content": "Here we provide the proof of Lemmas 5.1, A.3 and A.4.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38, + "bbox_fs": [ + 106, + 720, + 333, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 82, + 228, + 93 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 229, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 229, + 95 + ], + "score": 1.0, + "content": "C.1 PROOF OF LEMMA 5.1", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 102, + 319, + 115 + ], + "lines": [ + { + "bbox": [ + 105, + 101, + 320, + 116 + ], + "spans": [ + { + "bbox": [ + 105, + 101, + 320, + 116 + ], + "score": 1.0, + "content": "The detailed proof of Lemma 5.1 is given as follows.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 106, + 127, + 504, + 152 + ], + "lines": [ + { + "bbox": [ + 105, + 126, + 506, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 416, + 140 + ], + "score": 1.0, + "content": "Proof of Lemma 5.1. Based on the update rule of gradient descent, i.e.,", + "type": "text" + }, + { + "bbox": [ + 416, + 126, + 506, + 138 + ], + "score": 0.87, + "content": "\\mathbf { W } ^ { ( t + 1 ) } \\ = \\ \\mathbf { W } ^ { ( t ) } \\ - ", + "type": "inline_equation" + } + ], + "index": 2 + }, + { + "bbox": [ + 107, + 138, + 317, + 153 + ], + "spans": [ + { + "bbox": [ + 107, + 139, + 173, + 152 + ], + "score": 0.92, + "content": "\\eta \\nabla _ { \\mathbf { W } } L _ { S } ( \\mathbf { W } ^ { ( t ) } )", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 138, + 317, + 153 + ], + "score": 1.0, + "content": ", we have the following calculation.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5 + }, + { + "type": "interline_equation", + "bbox": [ + 153, + 155, + 456, + 223 + ], + "lines": [ + { + "bbox": [ + 153, + 155, + 456, + 223 + ], + "spans": [ + { + "bbox": [ + 153, + 155, + 456, + 223 + ], + "score": 0.93, + "content": "\\begin{array} { r l r } { { \\| { \\mathbf { W } } ^ { ( t ) } - { \\mathbf { W } } ^ { * } \\| _ { F } ^ { 2 } - \\| { \\mathbf { W } } ^ { ( t + 1 ) } - { \\mathbf { W } } ^ { * } \\| _ { F } ^ { 2 } } } \\\\ & { } & { \\qquad = \\underbrace { \\frac { 2 \\eta } { n } \\displaystyle \\sum _ { i = 1 } ^ { n } \\langle { \\mathbf { W } } ^ { ( t ) } - { \\mathbf { W } } ^ { * } , \\nabla { \\mathbf { w } } L _ { i } ( { \\mathbf { W } } ^ { ( t ) } ) \\rangle } _ { I _ { 1 } } - \\underbrace { \\eta ^ { 2 } \\displaystyle \\sum _ { l = 1 } ^ { L } \\| \\nabla { \\mathbf { w } } _ { l } L _ { S } ( { \\mathbf { W } } ^ { ( t ) } ) \\| _ { F } ^ { 2 } } _ { I _ { 2 } } , } \\end{array}", + "type": "interline_equation", + "image_path": "4692840b2a5cb320765c0df06684eadfc23c9ec3de3eea04857509945334f383.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 153, + 155, + 456, + 177.66666666666666 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 153, + 177.66666666666666, + 456, + 200.33333333333331 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 153, + 200.33333333333331, + 456, + 222.99999999999997 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 227, + 506, + 276 + ], + "lines": [ + { + "bbox": [ + 104, + 226, + 508, + 244 + ], + "spans": [ + { + "bbox": [ + 104, + 226, + 293, + 244 + ], + "score": 1.0, + "content": "where the equation follows from the fact that", + "type": "text" + }, + { + "bbox": [ + 293, + 227, + 432, + 241 + ], + "score": 0.9, + "content": "\\begin{array} { r } { L _ { S } ( \\mathbf { W } ^ { ( t ) } ) = n ^ { - 1 } \\sum _ { i = 1 } ^ { n } { L _ { i } ( \\mathbf { W } ^ { ( t ) } ) } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 433, + 226, + 508, + 244 + ], + "score": 1.0, + "content": ". In what follows,", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 240, + 505, + 253 + ], + "spans": [ + { + "bbox": [ + 105, + 240, + 199, + 253 + ], + "score": 1.0, + "content": "we first bound the term", + "type": "text" + }, + { + "bbox": [ + 199, + 241, + 209, + 251 + ], + "score": 0.86, + "content": "I _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 209, + 240, + 505, + 253 + ], + "score": 1.0, + "content": "on the R.H.S. of (C.1) by approximating the neural network functions with", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 250, + 506, + 265 + ], + "spans": [ + { + "bbox": [ + 105, + 250, + 250, + 265 + ], + "score": 1.0, + "content": "linear models. By assumption, for", + "type": "text" + }, + { + "bbox": [ + 251, + 251, + 429, + 264 + ], + "score": 0.61, + "content": "t = 0 , \\dots , t ^ { \\prime } - \\bar { 1 } , \\mathbf { W } ^ { ( t ) } , \\mathbf { W } ^ { \\bar { * } } \\in \\mathcal { B } ( \\mathbf { W } ^ { ( 0 ) } , \\tau )", + "type": "inline_equation" + }, + { + "bbox": [ + 429, + 250, + 506, + 265 + ], + "score": 1.0, + "content": ". Therefore by the", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 261, + 194, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 261, + 158, + 277 + ], + "score": 1.0, + "content": "definition of", + "type": "text" + }, + { + "bbox": [ + 158, + 263, + 190, + 276 + ], + "score": 0.92, + "content": "\\epsilon _ { \\mathrm { a p p } } ( \\tau )", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 261, + 194, + 277 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 8.5 + }, + { + "type": "interline_equation", + "bbox": [ + 154, + 280, + 456, + 297 + ], + "lines": [ + { + "bbox": [ + 154, + 280, + 456, + 297 + ], + "spans": [ + { + "bbox": [ + 154, + 280, + 456, + 297 + ], + "score": 0.86, + "content": "y _ { i } \\boldsymbol { \\cdot } \\big \\langle \\nabla f _ { \\mathbf { W } ^ { ( t ) } } \\big ( \\mathbf { x } _ { i } \\big ) , \\mathbf { W } ^ { ( t ) } - \\mathbf { W } ^ { * } \\big \\rangle \\leqslant y _ { i } \\boldsymbol { \\cdot } \\big ( f _ { \\mathbf { W } ^ { ( t ) } } \\big ( \\mathbf { x } _ { i } \\big ) - f _ { \\mathbf { W } ^ { * } } \\big ( \\mathbf { x } _ { i } \\big ) \\big ) + \\epsilon _ { \\mathrm { a p p } } \\big ( \\tau \\big )", + "type": "interline_equation", + "image_path": "75c85ad666b1de93ff20a2e3ed8894aa1d13488aa85640eeee307f26104e0f2e.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 154, + 280, + 456, + 297 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 300, + 204, + 312 + ], + "lines": [ + { + "bbox": [ + 106, + 300, + 204, + 313 + ], + "spans": [ + { + "bbox": [ + 106, + 300, + 204, + 313 + ], + "score": 1.0, + "content": "Moreover, we also have", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "interline_equation", + "bbox": [ + 152, + 315, + 457, + 349 + ], + "lines": [ + { + "bbox": [ + 152, + 315, + 457, + 349 + ], + "spans": [ + { + "bbox": [ + 152, + 315, + 457, + 349 + ], + "score": 0.9, + "content": "\\begin{array} { r l } & { 0 \\leqslant y _ { i } \\cdot \\big ( f _ { \\mathbf { W } ^ { * } } ( \\mathbf { x } _ { i } ) - f _ { \\mathbf { W } ^ { ( 0 ) } } ( \\mathbf { x } _ { i } ) - \\langle \\nabla f _ { \\mathbf { W } ^ { ( 0 ) } } ( \\mathbf { x } _ { i } ) , \\mathbf { W } ^ { * } - \\mathbf { W } ^ { ( 0 ) } \\rangle \\big ) + \\epsilon _ { \\mathrm { a p p } } ( \\tau ) } \\\\ & { \\quad = y _ { i } \\cdot \\big ( f _ { \\mathbf { W } ^ { * } } ( \\mathbf { x } _ { i } ) - F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ^ { * } } ( \\mathbf { x } _ { i } ) \\big ) + \\epsilon _ { \\mathrm { a p p } } ( \\tau ) , } \\end{array}", + "type": "interline_equation", + "image_path": "34a99005b9a2dfb56fb99818a75fce0c6546e60426451fa634e82d405b27ed92.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 152, + 315, + 457, + 326.3333333333333 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 152, + 326.3333333333333, + 457, + 337.66666666666663 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 152, + 337.66666666666663, + 457, + 348.99999999999994 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 353, + 505, + 377 + ], + "lines": [ + { + "bbox": [ + 105, + 351, + 505, + 367 + ], + "spans": [ + { + "bbox": [ + 105, + 351, + 296, + 367 + ], + "score": 1.0, + "content": "where the equation follows by the definition of", + "type": "text" + }, + { + "bbox": [ + 296, + 353, + 353, + 366 + ], + "score": 0.92, + "content": "F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ^ { * } } ( \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 351, + 505, + 367 + ], + "score": 1.0, + "content": ". Adding (C.3) to (C.2) and canceling", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 364, + 263, + 378 + ], + "spans": [ + { + "bbox": [ + 105, + 364, + 146, + 378 + ], + "score": 1.0, + "content": "the terms", + "type": "text" + }, + { + "bbox": [ + 146, + 365, + 199, + 377 + ], + "score": 0.93, + "content": "y _ { i } \\cdot f _ { \\mathbf { W } ^ { * } } ( \\mathbf { x } _ { i } )", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 364, + 263, + 378 + ], + "score": 1.0, + "content": ", we obtain that", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5 + }, + { + "type": "interline_equation", + "bbox": [ + 129, + 381, + 461, + 399 + ], + "lines": [ + { + "bbox": [ + 129, + 381, + 461, + 399 + ], + "spans": [ + { + "bbox": [ + 129, + 381, + 461, + 399 + ], + "score": 0.89, + "content": "y _ { i } \\cdot \\langle \\nabla f _ { \\mathbf { W } ^ { ( t ) } } ( \\mathbf { x } _ { i } ) , \\mathbf { W } ^ { ( t ) } - \\mathbf { W } ^ { * } \\rangle \\leqslant y _ { i } \\cdot \\left( f _ { \\mathbf { W } ^ { ( t ) } } ( \\mathbf { x } _ { i } ) - F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ^ { * } } ( \\mathbf { x } _ { i } ) \\right) + 2 \\epsilon _ { \\mathrm { a p p } } ( \\tau ) .", + "type": "interline_equation", + "image_path": "03a7541f49ac52a523891a1dd748eb8cfada227389e422f56d253043db5f6d79.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 129, + 381, + 461, + 399 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 407, + 505, + 432 + ], + "lines": [ + { + "bbox": [ + 105, + 406, + 504, + 422 + ], + "spans": [ + { + "bbox": [ + 105, + 406, + 398, + 422 + ], + "score": 1.0, + "content": "We can now give a lower bound on first term on the R.H.S. of (C.1). For", + "type": "text" + }, + { + "bbox": [ + 398, + 409, + 449, + 420 + ], + "score": 0.91, + "content": "i = 1 , \\ldots , n", + "type": "inline_equation" + }, + { + "bbox": [ + 449, + 406, + 504, + 422 + ], + "score": 1.0, + "content": ", applying the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 419, + 382, + 432 + ], + "spans": [ + { + "bbox": [ + 106, + 419, + 382, + 432 + ], + "score": 1.0, + "content": "chain rule on the loss function gradients and utilizing (C.4), we have", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5 + }, + { + "type": "interline_equation", + "bbox": [ + 116, + 435, + 490, + 486 + ], + "lines": [ + { + "bbox": [ + 116, + 435, + 490, + 486 + ], + "spans": [ + { + "bbox": [ + 116, + 435, + 490, + 486 + ], + "score": 0.94, + "content": "\\begin{array} { r l r } { \\langle \\mathbf { W } ^ { ( t ) } - \\mathbf { W } ^ { * } , \\nabla _ { \\mathbf { W } } L _ { i } ( \\mathbf { W } ^ { ( t ) } ) \\rangle = \\ell ^ { \\prime } \\big ( y _ { i } f _ { \\mathbf { W } ^ { ( t ) } } ( \\mathbf { x } _ { i } ) \\big ) \\cdot y _ { i } \\cdot \\big \\langle \\mathbf { W } ^ { ( t ) } - \\mathbf { W } ^ { * } , \\nabla _ { \\mathbf { W } } f _ { \\mathbf { W } ^ { ( t ) } } ( \\mathbf { x } _ { i } ) \\big \\rangle } & { } & \\\\ { \\geqslant \\ell ^ { \\prime } \\big ( y _ { i } f _ { \\mathbf { W } ^ { ( t ) } } ( \\mathbf { x } _ { i } ) \\big ) \\cdot \\big ( y _ { i } f _ { \\mathbf { W } ^ { ( t ) } } ( \\mathbf { x } _ { i } ) - y _ { i } f _ { \\mathbf { W } ^ { * } } ( \\mathbf { x } _ { i } ) + 2 \\epsilon _ { \\mathrm { a p p } } ( \\tau ) \\big ) } & { } & \\\\ { \\geqslant \\big ( 1 - 2 \\epsilon _ { \\mathrm { a p p } } ( \\tau ) \\big ) \\ell \\big ( y _ { i } f _ { \\mathbf { W } ^ { ( t ) } } ( \\mathbf { x } _ { i } ) \\big ) - \\ell \\big ( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ^ { * } } ( \\mathbf { x } _ { i } ) \\big ) , \\quad ( \\mathrm { C } _ { i } - \\epsilon ) \\big ( \\ell ^ { \\prime } \\big ( x _ { i } f _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ^ { * } } ( \\mathbf { x } _ { i } ) \\big ) \\big ) \\enspace . } & { } \\end{array}", + "type": "interline_equation", + "image_path": "4629a849f5ae4b1fa84ccb272cc5effd38a761c3dc458ed552ec8b108bb1cb57.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 116, + 435, + 490, + 452.0 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 116, + 452.0, + 490, + 469.0 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 116, + 469.0, + 490, + 486.0 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 489, + 504, + 516 + ], + "lines": [ + { + "bbox": [ + 105, + 488, + 505, + 504 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 272, + 504 + ], + "score": 1.0, + "content": "where the first inequality is by the fact that `", + "type": "text" + }, + { + "bbox": [ + 273, + 489, + 357, + 503 + ], + "score": 0.92, + "content": "\\ell ^ { \\prime } \\left( y _ { i } f _ { \\mathbf { W } ^ { \\left( t \\right) } } \\left( \\mathbf { x } _ { i } \\right) \\right) < 0", + "type": "inline_equation" + }, + { + "bbox": [ + 357, + 488, + 505, + 504 + ], + "score": 1.0, + "content": ", the second inequality is by convexity", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 502, + 353, + 517 + ], + "spans": [ + { + "bbox": [ + 105, + 502, + 117, + 517 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 118, + 503, + 133, + 515 + ], + "score": 0.89, + "content": "\\ell ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 133, + 502, + 200, + 517 + ], + "score": 1.0, + "content": "and the fact that", + "type": "text" + }, + { + "bbox": [ + 201, + 502, + 349, + 516 + ], + "score": 0.9, + "content": "- \\ell ^ { \\prime } \\left( y _ { i } f _ { \\mathbf { W } ^ { ( t ) } } ( \\mathbf { x } _ { i } ) \\right) \\leqslant \\ell \\left( y _ { i } f _ { \\mathbf { W } ^ { ( t ) } } ( \\mathbf { x } _ { i } ) \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 350, + 502, + 353, + 517 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24.5 + }, + { + "type": "text", + "bbox": [ + 107, + 520, + 504, + 546 + ], + "lines": [ + { + "bbox": [ + 106, + 520, + 505, + 534 + ], + "spans": [ + { + "bbox": [ + 106, + 520, + 254, + 534 + ], + "score": 1.0, + "content": "We now proceed to bound the term", + "type": "text" + }, + { + "bbox": [ + 255, + 522, + 265, + 532 + ], + "score": 0.87, + "content": "I _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 520, + 444, + 534 + ], + "score": 1.0, + "content": "on the R.H.S. of (C.1). Note that we have", + "type": "text" + }, + { + "bbox": [ + 444, + 521, + 483, + 533 + ], + "score": 0.93, + "content": "\\ell ^ { \\prime } ( \\cdot ) < 0", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 520, + 505, + 534 + ], + "score": 1.0, + "content": ", and", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 532, + 488, + 547 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 286, + 547 + ], + "score": 1.0, + "content": "therefore the Frobenius norm of the gradient", + "type": "text" + }, + { + "bbox": [ + 286, + 533, + 350, + 546 + ], + "score": 0.93, + "content": "\\nabla _ { \\mathbf { W } _ { l } } L _ { S } ( \\mathbf { W } ^ { ( t ) } )", + "type": "inline_equation" + }, + { + "bbox": [ + 350, + 532, + 488, + 547 + ], + "score": 1.0, + "content": "can be upper bounded as follows,", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5 + }, + { + "type": "interline_equation", + "bbox": [ + 166, + 551, + 444, + 615 + ], + "lines": [ + { + "bbox": [ + 166, + 551, + 444, + 615 + ], + "spans": [ + { + "bbox": [ + 166, + 551, + 444, + 615 + ], + "score": 0.93, + "content": "\\begin{array} { r l } { \\| \\nabla _ { \\mathbf { W } _ { l } } L _ { S } ( \\mathbf { W } ^ { ( t ) } ) \\| _ { F } = \\displaystyle \\left\\| \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } \\ell ^ { \\prime } \\big ( y _ { i } f _ { \\mathbf { W } ^ { ( t ) } } ( \\mathbf { x } _ { i } ) \\big ) \\nabla _ { \\mathbf { W } _ { l } } f _ { \\mathbf { W } ^ { ( t ) } } ( \\mathbf { x } _ { i } ) \\right\\| _ { F } } & { } \\\\ { \\leqslant \\displaystyle \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } - \\ell ^ { \\prime } \\big ( y _ { i } f _ { \\mathbf { W } ^ { ( t ) } } ( \\mathbf { x } _ { i } ) \\big ) \\cdot \\| \\nabla _ { \\mathbf { W } _ { l } } f _ { \\mathbf { W } ^ { ( t ) } } ( \\mathbf { x } _ { i } ) \\| _ { F } , } & { } \\end{array}", + "type": "interline_equation", + "image_path": "55be6fde453e8e83aadcb0f657d329c7174e9ea16441f6e04e7c15e81232823c.jpg" + } + ] + } + ], + "index": 29, + "virtual_lines": [ + { + "bbox": [ + 166, + 551, + 444, + 572.3333333333334 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 166, + 572.3333333333334, + 444, + 593.6666666666667 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 166, + 593.6666666666667, + 444, + 615.0000000000001 + ], + "spans": [], + "index": 30 + } + ] + }, + { + "type": "text", + "bbox": [ + 104, + 618, + 505, + 642 + ], + "lines": [ + { + "bbox": [ + 106, + 619, + 505, + 632 + ], + "spans": [ + { + "bbox": [ + 106, + 619, + 505, + 632 + ], + "score": 1.0, + "content": "where the inequality follows by triangle inequality. We now utilize the fact that cross-entropy loss", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 629, + 495, + 642 + ], + "spans": [ + { + "bbox": [ + 105, + 629, + 204, + 642 + ], + "score": 1.0, + "content": "satisfies the inequalities", + "type": "text" + }, + { + "bbox": [ + 204, + 630, + 258, + 642 + ], + "score": 0.93, + "content": "- \\ell ^ { \\prime } ( \\cdot ) \\overset { \\cdot } { \\leqslant } \\ell ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 629, + 276, + 642 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 276, + 630, + 321, + 642 + ], + "score": 0.94, + "content": "- \\bar { \\ell } ^ { \\prime } ( \\cdot ) \\dot { \\leqslant } 1", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 629, + 431, + 642 + ], + "score": 1.0, + "content": ". Therefore by definition of", + "type": "text" + }, + { + "bbox": [ + 431, + 630, + 456, + 642 + ], + "score": 0.93, + "content": "M ( \\tau )", + "type": "inline_equation" + }, + { + "bbox": [ + 456, + 629, + 495, + 642 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5 + }, + { + "type": "interline_equation", + "bbox": [ + 162, + 646, + 446, + 699 + ], + "lines": [ + { + "bbox": [ + 162, + 646, + 446, + 699 + ], + "spans": [ + { + "bbox": [ + 162, + 646, + 446, + 699 + ], + "score": 0.93, + "content": "\\begin{array} { r l r } { { \\sum _ { l = 1 } ^ { L } \\| \\nabla _ { \\mathbf { W } _ { l } } L _ { S } ( \\mathbf { W } ^ { ( t ) } ) \\| _ { F } ^ { 2 } \\leqslant \\mathcal { O } \\big ( L M ( \\tau ) ^ { 2 } \\big ) \\cdot \\bigg ( \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } - \\ell ^ { \\prime } \\big ( y _ { i } f _ { \\mathbf { W } ^ { ( t ) } } ( \\mathbf { x } _ { i } ) \\big ) \\bigg ) ^ { 2 } } } \\\\ & { } & { \\leqslant \\mathcal { O } \\big ( L M ( \\tau ) ^ { 2 } \\big ) \\cdot L _ { S } ( \\mathbf { W } ^ { ( t ) } ) . } \\end{array}", + "type": "interline_equation", + "image_path": "d0048c3a115cca0613ea1fbbdcfd4e4427e8149bf0208bf5f5e7496d4197471e.jpg" + } + ] + } + ], + "index": 34, + "virtual_lines": [ + { + "bbox": [ + 162, + 646, + 446, + 663.6666666666666 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 162, + 663.6666666666666, + 446, + 681.3333333333333 + ], + "spans": [], + "index": 34 + }, + { + "bbox": [ + 162, + 681.3333333333333, + 446, + 698.9999999999999 + ], + "spans": [], + "index": 35 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 701, + 329, + 713 + ], + "lines": [ + { + "bbox": [ + 106, + 700, + 329, + 714 + ], + "spans": [ + { + "bbox": [ + 106, + 700, + 329, + 714 + ], + "score": 1.0, + "content": "Then we can plug (C.5) and (C.6) into (C.1) and obtain", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 36 + }, + { + "type": "interline_equation", + "bbox": [ + 106, + 718, + 263, + 733 + ], + "lines": [ + { + "bbox": [ + 106, + 718, + 263, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 718, + 263, + 733 + ], + "score": 0.61, + "content": "\\lVert \\mathbf { W } ^ { ( t ) } - \\mathbf { W } ^ { * } \\rVert _ { F } ^ { 2 } - \\lVert \\mathbf { W } ^ { ( t + 1 ) } - \\mathbf { W } ^ { * } \\rVert _ { F } ^ { 2 }", + "type": "interline_equation", + "image_path": "1ca9a83270f102fc4270284c0e8dba36c1a9d0f32e0927d050d4121183a334bb.jpg" + } + ] + } + ], + "index": 37, + "virtual_lines": [ + { + "bbox": [ + 106, + 718, + 263, + 733 + ], + "spans": [], + "index": 37 + } + ] + } + ], + "page_idx": 17, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 26, + 293, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 763 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 763 + ], + "score": 1.0, + "content": "18", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 82, + 228, + 93 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 229, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 229, + 95 + ], + "score": 1.0, + "content": "C.1 PROOF OF LEMMA 5.1", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 102, + 319, + 115 + ], + "lines": [ + { + "bbox": [ + 105, + 101, + 320, + 116 + ], + "spans": [ + { + "bbox": [ + 105, + 101, + 320, + 116 + ], + "score": 1.0, + "content": "The detailed proof of Lemma 5.1 is given as follows.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1, + "bbox_fs": [ + 105, + 101, + 320, + 116 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 127, + 504, + 152 + ], + "lines": [ + { + "bbox": [ + 105, + 126, + 506, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 416, + 140 + ], + "score": 1.0, + "content": "Proof of Lemma 5.1. Based on the update rule of gradient descent, i.e.,", + "type": "text" + }, + { + "bbox": [ + 416, + 126, + 506, + 138 + ], + "score": 0.87, + "content": "\\mathbf { W } ^ { ( t + 1 ) } \\ = \\ \\mathbf { W } ^ { ( t ) } \\ - ", + "type": "inline_equation" + } + ], + "index": 2 + }, + { + "bbox": [ + 107, + 138, + 317, + 153 + ], + "spans": [ + { + "bbox": [ + 107, + 139, + 173, + 152 + ], + "score": 0.92, + "content": "\\eta \\nabla _ { \\mathbf { W } } L _ { S } ( \\mathbf { W } ^ { ( t ) } )", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 138, + 317, + 153 + ], + "score": 1.0, + "content": ", we have the following calculation.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5, + "bbox_fs": [ + 105, + 126, + 506, + 153 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 153, + 155, + 456, + 223 + ], + "lines": [ + { + "bbox": [ + 153, + 155, + 456, + 223 + ], + "spans": [ + { + "bbox": [ + 153, + 155, + 456, + 223 + ], + "score": 0.93, + "content": "\\begin{array} { r l r } { { \\| { \\mathbf { W } } ^ { ( t ) } - { \\mathbf { W } } ^ { * } \\| _ { F } ^ { 2 } - \\| { \\mathbf { W } } ^ { ( t + 1 ) } - { \\mathbf { W } } ^ { * } \\| _ { F } ^ { 2 } } } \\\\ & { } & { \\qquad = \\underbrace { \\frac { 2 \\eta } { n } \\displaystyle \\sum _ { i = 1 } ^ { n } \\langle { \\mathbf { W } } ^ { ( t ) } - { \\mathbf { W } } ^ { * } , \\nabla { \\mathbf { w } } L _ { i } ( { \\mathbf { W } } ^ { ( t ) } ) \\rangle } _ { I _ { 1 } } - \\underbrace { \\eta ^ { 2 } \\displaystyle \\sum _ { l = 1 } ^ { L } \\| \\nabla { \\mathbf { w } } _ { l } L _ { S } ( { \\mathbf { W } } ^ { ( t ) } ) \\| _ { F } ^ { 2 } } _ { I _ { 2 } } , } \\end{array}", + "type": "interline_equation", + "image_path": "4692840b2a5cb320765c0df06684eadfc23c9ec3de3eea04857509945334f383.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 153, + 155, + 456, + 177.66666666666666 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 153, + 177.66666666666666, + 456, + 200.33333333333331 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 153, + 200.33333333333331, + 456, + 222.99999999999997 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 227, + 506, + 276 + ], + "lines": [ + { + "bbox": [ + 104, + 226, + 508, + 244 + ], + "spans": [ + { + "bbox": [ + 104, + 226, + 293, + 244 + ], + "score": 1.0, + "content": "where the equation follows from the fact that", + "type": "text" + }, + { + "bbox": [ + 293, + 227, + 432, + 241 + ], + "score": 0.9, + "content": "\\begin{array} { r } { L _ { S } ( \\mathbf { W } ^ { ( t ) } ) = n ^ { - 1 } \\sum _ { i = 1 } ^ { n } { L _ { i } ( \\mathbf { W } ^ { ( t ) } ) } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 433, + 226, + 508, + 244 + ], + "score": 1.0, + "content": ". In what follows,", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 240, + 505, + 253 + ], + "spans": [ + { + "bbox": [ + 105, + 240, + 199, + 253 + ], + "score": 1.0, + "content": "we first bound the term", + "type": "text" + }, + { + "bbox": [ + 199, + 241, + 209, + 251 + ], + "score": 0.86, + "content": "I _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 209, + 240, + 505, + 253 + ], + "score": 1.0, + "content": "on the R.H.S. of (C.1) by approximating the neural network functions with", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 250, + 506, + 265 + ], + "spans": [ + { + "bbox": [ + 105, + 250, + 250, + 265 + ], + "score": 1.0, + "content": "linear models. By assumption, for", + "type": "text" + }, + { + "bbox": [ + 251, + 251, + 429, + 264 + ], + "score": 0.61, + "content": "t = 0 , \\dots , t ^ { \\prime } - \\bar { 1 } , \\mathbf { W } ^ { ( t ) } , \\mathbf { W } ^ { \\bar { * } } \\in \\mathcal { B } ( \\mathbf { W } ^ { ( 0 ) } , \\tau )", + "type": "inline_equation" + }, + { + "bbox": [ + 429, + 250, + 506, + 265 + ], + "score": 1.0, + "content": ". Therefore by the", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 261, + 194, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 261, + 158, + 277 + ], + "score": 1.0, + "content": "definition of", + "type": "text" + }, + { + "bbox": [ + 158, + 263, + 190, + 276 + ], + "score": 0.92, + "content": "\\epsilon _ { \\mathrm { a p p } } ( \\tau )", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 261, + 194, + 277 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 8.5, + "bbox_fs": [ + 104, + 226, + 508, + 277 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 154, + 280, + 456, + 297 + ], + "lines": [ + { + "bbox": [ + 154, + 280, + 456, + 297 + ], + "spans": [ + { + "bbox": [ + 154, + 280, + 456, + 297 + ], + "score": 0.86, + "content": "y _ { i } \\boldsymbol { \\cdot } \\big \\langle \\nabla f _ { \\mathbf { W } ^ { ( t ) } } \\big ( \\mathbf { x } _ { i } \\big ) , \\mathbf { W } ^ { ( t ) } - \\mathbf { W } ^ { * } \\big \\rangle \\leqslant y _ { i } \\boldsymbol { \\cdot } \\big ( f _ { \\mathbf { W } ^ { ( t ) } } \\big ( \\mathbf { x } _ { i } \\big ) - f _ { \\mathbf { W } ^ { * } } \\big ( \\mathbf { x } _ { i } \\big ) \\big ) + \\epsilon _ { \\mathrm { a p p } } \\big ( \\tau \\big )", + "type": "interline_equation", + "image_path": "75c85ad666b1de93ff20a2e3ed8894aa1d13488aa85640eeee307f26104e0f2e.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 154, + 280, + 456, + 297 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 300, + 204, + 312 + ], + "lines": [ + { + "bbox": [ + 106, + 300, + 204, + 313 + ], + "spans": [ + { + "bbox": [ + 106, + 300, + 204, + 313 + ], + "score": 1.0, + "content": "Moreover, we also have", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12, + "bbox_fs": [ + 106, + 300, + 204, + 313 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 152, + 315, + 457, + 349 + ], + "lines": [ + { + "bbox": [ + 152, + 315, + 457, + 349 + ], + "spans": [ + { + "bbox": [ + 152, + 315, + 457, + 349 + ], + "score": 0.9, + "content": "\\begin{array} { r l } & { 0 \\leqslant y _ { i } \\cdot \\big ( f _ { \\mathbf { W } ^ { * } } ( \\mathbf { x } _ { i } ) - f _ { \\mathbf { W } ^ { ( 0 ) } } ( \\mathbf { x } _ { i } ) - \\langle \\nabla f _ { \\mathbf { W } ^ { ( 0 ) } } ( \\mathbf { x } _ { i } ) , \\mathbf { W } ^ { * } - \\mathbf { W } ^ { ( 0 ) } \\rangle \\big ) + \\epsilon _ { \\mathrm { a p p } } ( \\tau ) } \\\\ & { \\quad = y _ { i } \\cdot \\big ( f _ { \\mathbf { W } ^ { * } } ( \\mathbf { x } _ { i } ) - F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ^ { * } } ( \\mathbf { x } _ { i } ) \\big ) + \\epsilon _ { \\mathrm { a p p } } ( \\tau ) , } \\end{array}", + "type": "interline_equation", + "image_path": "34a99005b9a2dfb56fb99818a75fce0c6546e60426451fa634e82d405b27ed92.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 152, + 315, + 457, + 326.3333333333333 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 152, + 326.3333333333333, + 457, + 337.66666666666663 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 152, + 337.66666666666663, + 457, + 348.99999999999994 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 353, + 505, + 377 + ], + "lines": [ + { + "bbox": [ + 105, + 351, + 505, + 367 + ], + "spans": [ + { + "bbox": [ + 105, + 351, + 296, + 367 + ], + "score": 1.0, + "content": "where the equation follows by the definition of", + "type": "text" + }, + { + "bbox": [ + 296, + 353, + 353, + 366 + ], + "score": 0.92, + "content": "F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ^ { * } } ( \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 351, + 505, + 367 + ], + "score": 1.0, + "content": ". Adding (C.3) to (C.2) and canceling", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 364, + 263, + 378 + ], + "spans": [ + { + "bbox": [ + 105, + 364, + 146, + 378 + ], + "score": 1.0, + "content": "the terms", + "type": "text" + }, + { + "bbox": [ + 146, + 365, + 199, + 377 + ], + "score": 0.93, + "content": "y _ { i } \\cdot f _ { \\mathbf { W } ^ { * } } ( \\mathbf { x } _ { i } )", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 364, + 263, + 378 + ], + "score": 1.0, + "content": ", we obtain that", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5, + "bbox_fs": [ + 105, + 351, + 505, + 378 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 129, + 381, + 461, + 399 + ], + "lines": [ + { + "bbox": [ + 129, + 381, + 461, + 399 + ], + "spans": [ + { + "bbox": [ + 129, + 381, + 461, + 399 + ], + "score": 0.89, + "content": "y _ { i } \\cdot \\langle \\nabla f _ { \\mathbf { W } ^ { ( t ) } } ( \\mathbf { x } _ { i } ) , \\mathbf { W } ^ { ( t ) } - \\mathbf { W } ^ { * } \\rangle \\leqslant y _ { i } \\cdot \\left( f _ { \\mathbf { W } ^ { ( t ) } } ( \\mathbf { x } _ { i } ) - F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ^ { * } } ( \\mathbf { x } _ { i } ) \\right) + 2 \\epsilon _ { \\mathrm { a p p } } ( \\tau ) .", + "type": "interline_equation", + "image_path": "03a7541f49ac52a523891a1dd748eb8cfada227389e422f56d253043db5f6d79.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 129, + 381, + 461, + 399 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 407, + 505, + 432 + ], + "lines": [ + { + "bbox": [ + 105, + 406, + 504, + 422 + ], + "spans": [ + { + "bbox": [ + 105, + 406, + 398, + 422 + ], + "score": 1.0, + "content": "We can now give a lower bound on first term on the R.H.S. of (C.1). For", + "type": "text" + }, + { + "bbox": [ + 398, + 409, + 449, + 420 + ], + "score": 0.91, + "content": "i = 1 , \\ldots , n", + "type": "inline_equation" + }, + { + "bbox": [ + 449, + 406, + 504, + 422 + ], + "score": 1.0, + "content": ", applying the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 419, + 382, + 432 + ], + "spans": [ + { + "bbox": [ + 106, + 419, + 382, + 432 + ], + "score": 1.0, + "content": "chain rule on the loss function gradients and utilizing (C.4), we have", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5, + "bbox_fs": [ + 105, + 406, + 504, + 432 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 116, + 435, + 490, + 486 + ], + "lines": [ + { + "bbox": [ + 116, + 435, + 490, + 486 + ], + "spans": [ + { + "bbox": [ + 116, + 435, + 490, + 486 + ], + "score": 0.94, + "content": "\\begin{array} { r l r } { \\langle \\mathbf { W } ^ { ( t ) } - \\mathbf { W } ^ { * } , \\nabla _ { \\mathbf { W } } L _ { i } ( \\mathbf { W } ^ { ( t ) } ) \\rangle = \\ell ^ { \\prime } \\big ( y _ { i } f _ { \\mathbf { W } ^ { ( t ) } } ( \\mathbf { x } _ { i } ) \\big ) \\cdot y _ { i } \\cdot \\big \\langle \\mathbf { W } ^ { ( t ) } - \\mathbf { W } ^ { * } , \\nabla _ { \\mathbf { W } } f _ { \\mathbf { W } ^ { ( t ) } } ( \\mathbf { x } _ { i } ) \\big \\rangle } & { } & \\\\ { \\geqslant \\ell ^ { \\prime } \\big ( y _ { i } f _ { \\mathbf { W } ^ { ( t ) } } ( \\mathbf { x } _ { i } ) \\big ) \\cdot \\big ( y _ { i } f _ { \\mathbf { W } ^ { ( t ) } } ( \\mathbf { x } _ { i } ) - y _ { i } f _ { \\mathbf { W } ^ { * } } ( \\mathbf { x } _ { i } ) + 2 \\epsilon _ { \\mathrm { a p p } } ( \\tau ) \\big ) } & { } & \\\\ { \\geqslant \\big ( 1 - 2 \\epsilon _ { \\mathrm { a p p } } ( \\tau ) \\big ) \\ell \\big ( y _ { i } f _ { \\mathbf { W } ^ { ( t ) } } ( \\mathbf { x } _ { i } ) \\big ) - \\ell \\big ( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ^ { * } } ( \\mathbf { x } _ { i } ) \\big ) , \\quad ( \\mathrm { C } _ { i } - \\epsilon ) \\big ( \\ell ^ { \\prime } \\big ( x _ { i } f _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ^ { * } } ( \\mathbf { x } _ { i } ) \\big ) \\big ) \\enspace . } & { } \\end{array}", + "type": "interline_equation", + "image_path": "4629a849f5ae4b1fa84ccb272cc5effd38a761c3dc458ed552ec8b108bb1cb57.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 116, + 435, + 490, + 452.0 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 116, + 452.0, + 490, + 469.0 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 116, + 469.0, + 490, + 486.0 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 489, + 504, + 516 + ], + "lines": [ + { + "bbox": [ + 105, + 488, + 505, + 504 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 272, + 504 + ], + "score": 1.0, + "content": "where the first inequality is by the fact that `", + "type": "text" + }, + { + "bbox": [ + 273, + 489, + 357, + 503 + ], + "score": 0.92, + "content": "\\ell ^ { \\prime } \\left( y _ { i } f _ { \\mathbf { W } ^ { \\left( t \\right) } } \\left( \\mathbf { x } _ { i } \\right) \\right) < 0", + "type": "inline_equation" + }, + { + "bbox": [ + 357, + 488, + 505, + 504 + ], + "score": 1.0, + "content": ", the second inequality is by convexity", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 502, + 353, + 517 + ], + "spans": [ + { + "bbox": [ + 105, + 502, + 117, + 517 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 118, + 503, + 133, + 515 + ], + "score": 0.89, + "content": "\\ell ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 133, + 502, + 200, + 517 + ], + "score": 1.0, + "content": "and the fact that", + "type": "text" + }, + { + "bbox": [ + 201, + 502, + 349, + 516 + ], + "score": 0.9, + "content": "- \\ell ^ { \\prime } \\left( y _ { i } f _ { \\mathbf { W } ^ { ( t ) } } ( \\mathbf { x } _ { i } ) \\right) \\leqslant \\ell \\left( y _ { i } f _ { \\mathbf { W } ^ { ( t ) } } ( \\mathbf { x } _ { i } ) \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 350, + 502, + 353, + 517 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24.5, + "bbox_fs": [ + 105, + 488, + 505, + 517 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 520, + 504, + 546 + ], + "lines": [ + { + "bbox": [ + 106, + 520, + 505, + 534 + ], + "spans": [ + { + "bbox": [ + 106, + 520, + 254, + 534 + ], + "score": 1.0, + "content": "We now proceed to bound the term", + "type": "text" + }, + { + "bbox": [ + 255, + 522, + 265, + 532 + ], + "score": 0.87, + "content": "I _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 520, + 444, + 534 + ], + "score": 1.0, + "content": "on the R.H.S. of (C.1). Note that we have", + "type": "text" + }, + { + "bbox": [ + 444, + 521, + 483, + 533 + ], + "score": 0.93, + "content": "\\ell ^ { \\prime } ( \\cdot ) < 0", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 520, + 505, + 534 + ], + "score": 1.0, + "content": ", and", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 532, + 488, + 547 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 286, + 547 + ], + "score": 1.0, + "content": "therefore the Frobenius norm of the gradient", + "type": "text" + }, + { + "bbox": [ + 286, + 533, + 350, + 546 + ], + "score": 0.93, + "content": "\\nabla _ { \\mathbf { W } _ { l } } L _ { S } ( \\mathbf { W } ^ { ( t ) } )", + "type": "inline_equation" + }, + { + "bbox": [ + 350, + 532, + 488, + 547 + ], + "score": 1.0, + "content": "can be upper bounded as follows,", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5, + "bbox_fs": [ + 105, + 520, + 505, + 547 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 166, + 551, + 444, + 615 + ], + "lines": [ + { + "bbox": [ + 166, + 551, + 444, + 615 + ], + "spans": [ + { + "bbox": [ + 166, + 551, + 444, + 615 + ], + "score": 0.93, + "content": "\\begin{array} { r l } { \\| \\nabla _ { \\mathbf { W } _ { l } } L _ { S } ( \\mathbf { W } ^ { ( t ) } ) \\| _ { F } = \\displaystyle \\left\\| \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } \\ell ^ { \\prime } \\big ( y _ { i } f _ { \\mathbf { W } ^ { ( t ) } } ( \\mathbf { x } _ { i } ) \\big ) \\nabla _ { \\mathbf { W } _ { l } } f _ { \\mathbf { W } ^ { ( t ) } } ( \\mathbf { x } _ { i } ) \\right\\| _ { F } } & { } \\\\ { \\leqslant \\displaystyle \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } - \\ell ^ { \\prime } \\big ( y _ { i } f _ { \\mathbf { W } ^ { ( t ) } } ( \\mathbf { x } _ { i } ) \\big ) \\cdot \\| \\nabla _ { \\mathbf { W } _ { l } } f _ { \\mathbf { W } ^ { ( t ) } } ( \\mathbf { x } _ { i } ) \\| _ { F } , } & { } \\end{array}", + "type": "interline_equation", + "image_path": "55be6fde453e8e83aadcb0f657d329c7174e9ea16441f6e04e7c15e81232823c.jpg" + } + ] + } + ], + "index": 29, + "virtual_lines": [ + { + "bbox": [ + 166, + 551, + 444, + 572.3333333333334 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 166, + 572.3333333333334, + 444, + 593.6666666666667 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 166, + 593.6666666666667, + 444, + 615.0000000000001 + ], + "spans": [], + "index": 30 + } + ] + }, + { + "type": "text", + "bbox": [ + 104, + 618, + 505, + 642 + ], + "lines": [ + { + "bbox": [ + 106, + 619, + 505, + 632 + ], + "spans": [ + { + "bbox": [ + 106, + 619, + 505, + 632 + ], + "score": 1.0, + "content": "where the inequality follows by triangle inequality. We now utilize the fact that cross-entropy loss", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 629, + 495, + 642 + ], + "spans": [ + { + "bbox": [ + 105, + 629, + 204, + 642 + ], + "score": 1.0, + "content": "satisfies the inequalities", + "type": "text" + }, + { + "bbox": [ + 204, + 630, + 258, + 642 + ], + "score": 0.93, + "content": "- \\ell ^ { \\prime } ( \\cdot ) \\overset { \\cdot } { \\leqslant } \\ell ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 629, + 276, + 642 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 276, + 630, + 321, + 642 + ], + "score": 0.94, + "content": "- \\bar { \\ell } ^ { \\prime } ( \\cdot ) \\dot { \\leqslant } 1", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 629, + 431, + 642 + ], + "score": 1.0, + "content": ". Therefore by definition of", + "type": "text" + }, + { + "bbox": [ + 431, + 630, + 456, + 642 + ], + "score": 0.93, + "content": "M ( \\tau )", + "type": "inline_equation" + }, + { + "bbox": [ + 456, + 629, + 495, + 642 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5, + "bbox_fs": [ + 105, + 619, + 505, + 642 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 162, + 646, + 446, + 699 + ], + "lines": [ + { + "bbox": [ + 162, + 646, + 446, + 699 + ], + "spans": [ + { + "bbox": [ + 162, + 646, + 446, + 699 + ], + "score": 0.93, + "content": "\\begin{array} { r l r } { { \\sum _ { l = 1 } ^ { L } \\| \\nabla _ { \\mathbf { W } _ { l } } L _ { S } ( \\mathbf { W } ^ { ( t ) } ) \\| _ { F } ^ { 2 } \\leqslant \\mathcal { O } \\big ( L M ( \\tau ) ^ { 2 } \\big ) \\cdot \\bigg ( \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } - \\ell ^ { \\prime } \\big ( y _ { i } f _ { \\mathbf { W } ^ { ( t ) } } ( \\mathbf { x } _ { i } ) \\big ) \\bigg ) ^ { 2 } } } \\\\ & { } & { \\leqslant \\mathcal { O } \\big ( L M ( \\tau ) ^ { 2 } \\big ) \\cdot L _ { S } ( \\mathbf { W } ^ { ( t ) } ) . } \\end{array}", + "type": "interline_equation", + "image_path": "d0048c3a115cca0613ea1fbbdcfd4e4427e8149bf0208bf5f5e7496d4197471e.jpg" + } + ] + } + ], + "index": 34, + "virtual_lines": [ + { + "bbox": [ + 162, + 646, + 446, + 663.6666666666666 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 162, + 663.6666666666666, + 446, + 681.3333333333333 + ], + "spans": [], + "index": 34 + }, + { + "bbox": [ + 162, + 681.3333333333333, + 446, + 698.9999999999999 + ], + "spans": [], + "index": 35 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 701, + 329, + 713 + ], + "lines": [ + { + "bbox": [ + 106, + 700, + 329, + 714 + ], + "spans": [ + { + "bbox": [ + 106, + 700, + 329, + 714 + ], + "score": 1.0, + "content": "Then we can plug (C.5) and (C.6) into (C.1) and obtain", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 36, + "bbox_fs": [ + 106, + 700, + 329, + 714 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 106, + 718, + 263, + 733 + ], + "lines": [ + { + "bbox": [ + 106, + 718, + 263, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 718, + 263, + 733 + ], + "score": 0.61, + "content": "\\lVert \\mathbf { W } ^ { ( t ) } - \\mathbf { W } ^ { * } \\rVert _ { F } ^ { 2 } - \\lVert \\mathbf { W } ^ { ( t + 1 ) } - \\mathbf { W } ^ { * } \\rVert _ { F } ^ { 2 }", + "type": "interline_equation", + "image_path": "1ca9a83270f102fc4270284c0e8dba36c1a9d0f32e0927d050d4121183a334bb.jpg" + } + ] + } + ], + "index": 37, + "virtual_lines": [ + { + "bbox": [ + 106, + 718, + 263, + 733 + ], + "spans": [], + "index": 37 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "interline_equation", + "bbox": [ + 116, + 80, + 510, + 143 + ], + "lines": [ + { + "bbox": [ + 116, + 80, + 510, + 143 + ], + "spans": [ + { + "bbox": [ + 116, + 80, + 510, + 143 + ], + "score": 0.93, + "content": "\\begin{array} { r l } { { } } & { { \\displaystyle \\geqslant \\frac { 2 \\eta } { n } \\sum _ { i = 1 } ^ { n } \\left[ ( 1 - 2 \\epsilon _ { \\mathrm { a p p } } ( \\tau ) ) \\ell \\big ( y _ { i } f _ { \\mathbf { W } ^ { ( t ) } } ( \\mathbf { x } _ { i } ) \\big ) - \\ell \\big ( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ^ { * } } \\big ( \\mathbf { x } _ { i } \\big ) \\big ) \\right] - \\mathcal { O } \\big ( \\eta ^ { 2 } L M ( \\tau ) ^ { 2 } \\big ) \\cdot L _ { S } ( \\mathbf { W } ^ { ( t ) } ) } } \\\\ { { } } & { { \\displaystyle \\geqslant \\left[ \\frac { 3 } { 2 } - 4 \\epsilon _ { \\mathrm { a p p } } ( \\tau ) \\right] \\eta L _ { S } ( \\mathbf { W } ^ { ( t ) } ) - \\frac { 2 \\eta } { n } \\sum _ { i = 1 } ^ { n } \\ell \\big ( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ^ { * } } \\big ( \\mathbf { x } _ { i } \\big ) \\big ) , } } \\end{array}", + "type": "interline_equation", + "image_path": "ac46d5d995e6f5b29f16f4a6219793cccef63378142ffa4fba9da4ca35f9075f.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 116, + 80, + 510, + 101.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 116, + 101.0, + 510, + 122.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 116, + 122.0, + 510, + 143.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 146, + 506, + 182 + ], + "lines": [ + { + "bbox": [ + 106, + 146, + 506, + 160 + ], + "spans": [ + { + "bbox": [ + 106, + 146, + 230, + 160 + ], + "score": 1.0, + "content": "where the last inequality is by", + "type": "text" + }, + { + "bbox": [ + 230, + 146, + 317, + 159 + ], + "score": 0.93, + "content": "\\eta = \\mathcal { O } ( L ^ { - 1 } M ( \\tau ) ^ { - 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 146, + 506, + 160 + ], + "score": 1.0, + "content": "and merging the third term on the second line", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 158, + 505, + 171 + ], + "spans": [ + { + "bbox": [ + 106, + 158, + 298, + 171 + ], + "score": 1.0, + "content": "into the first term. Taking telescope sum from ř ` ˘", + "type": "text" + }, + { + "bbox": [ + 299, + 159, + 324, + 168 + ], + "score": 0.89, + "content": "t = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 158, + 335, + 171 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 336, + 158, + 379, + 168 + ], + "score": 0.91, + "content": "t = t ^ { \\prime } - 1", + "type": "inline_equation" + }, + { + "bbox": [ + 380, + 158, + 505, + 171 + ], + "score": 1.0, + "content": "and plugging in the definition", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 103, + 166, + 505, + 184 + ], + "spans": [ + { + "bbox": [ + 103, + 166, + 345, + 184 + ], + "score": 1.0, + "content": "1n ni“1 ` yiFWp0q,W˚ pxiq “ \u000fNTRF completes the proof.", + "type": "text" + }, + { + "bbox": [ + 495, + 169, + 505, + 180 + ], + "score": 0.998, + "content": "□", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + }, + { + "type": "title", + "bbox": [ + 107, + 193, + 230, + 205 + ], + "lines": [ + { + "bbox": [ + 106, + 192, + 232, + 207 + ], + "spans": [ + { + "bbox": [ + 106, + 192, + 232, + 207 + ], + "score": 1.0, + "content": "C.2 PROOF OF LEMMA A.3", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 106, + 212, + 505, + 248 + ], + "lines": [ + { + "bbox": [ + 104, + 210, + 506, + 228 + ], + "spans": [ + { + "bbox": [ + 104, + 210, + 261, + 228 + ], + "score": 1.0, + "content": "Proof of Lemma A.3. We first denote", + "type": "text" + }, + { + "bbox": [ + 262, + 212, + 375, + 226 + ], + "score": 0.92, + "content": "\\mathcal { W } = \\mathcal { B } ( \\mathbf { W } ^ { ( 0 ) } , \\widetilde { R } \\cdot m ^ { - 1 / 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 210, + 506, + 228 + ], + "score": 1.0, + "content": ", and define the corresponding", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 224, + 505, + 238 + ], + "spans": [ + { + "bbox": [ + 105, + 224, + 379, + 238 + ], + "score": 1.0, + "content": "neural network function class and surrogate loss function class as", + "type": "text" + }, + { + "bbox": [ + 379, + 225, + 486, + 237 + ], + "score": 0.93, + "content": "{ \\mathcal { F } } = \\{ f _ { \\mathbf { W } } ( \\mathbf { x } ) : \\mathbf { W } \\in \\mathbf { \\bar { \\mathcal { W } } } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 224, + 505, + 238 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 235, + 291, + 249 + ], + "spans": [ + { + "bbox": [ + 106, + 236, + 238, + 248 + ], + "score": 0.9, + "content": "\\mathcal { G } = \\left\\{ - \\ell [ y \\cdot f _ { \\mathbf { W } } ( \\mathbf { x } ) ] : \\mathbf { W } \\in \\mathcal { W } \\right\\}", + "type": "inline_equation" + }, + { + "bbox": [ + 238, + 235, + 291, + 249 + ], + "score": 1.0, + "content": "respectively.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 107, + 253, + 506, + 286 + ], + "lines": [ + { + "bbox": [ + 105, + 252, + 506, + 266 + ], + "spans": [ + { + "bbox": [ + 105, + 252, + 506, + 266 + ], + "score": 1.0, + "content": "By standard uniform convergence results in terms of empirical Rademacher complexity (Bartlett and", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 262, + 506, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 262, + 506, + 277 + ], + "score": 1.0, + "content": "Mendelson, 2002; Mohri et al., 2018; Shalev-Shwartz and Ben-David, 2014), with probability at least", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 273, + 166, + 287 + ], + "spans": [ + { + "bbox": [ + 106, + 275, + 129, + 285 + ], + "score": 0.86, + "content": "1 - \\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 129, + 273, + 166, + 287 + ], + "score": 1.0, + "content": "we have", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11 + }, + { + "type": "interline_equation", + "bbox": [ + 127, + 288, + 484, + 351 + ], + "lines": [ + { + "bbox": [ + 127, + 288, + 484, + 351 + ], + "spans": [ + { + "bbox": [ + 127, + 288, + 484, + 351 + ], + "score": 0.94, + "content": "\\begin{array} { l } { \\displaystyle \\operatorname* { s u p } _ { \\mathbf { w } \\in \\mathcal { W } } | \\mathcal { E } _ { S } ( \\mathbf { W } ) - \\mathcal { E } _ { \\mathcal { D } } ( \\mathbf { W } ) | = \\operatorname* { s u p } _ { \\mathbf { w } \\in \\mathcal { W } } \\bigg \\vert - \\frac { 1 } { n } \\displaystyle \\sum _ { i = 1 } ^ { n } \\ell ^ { \\prime } \\big [ y _ { i } \\cdot f _ { \\mathbf { W } } ( \\pmb { x } _ { i } ) \\big ] + \\mathbb { E } _ { ( \\mathbf { x } , y ) \\sim \\mathcal { D } } \\ell ^ { \\prime } \\big [ y \\cdot f _ { \\mathbf { W } } ( \\mathbf { x } ) \\big ] \\bigg \\vert } \\\\ { \\leqslant 2 \\widehat { \\mathfrak { R } } _ { n } ( \\mathcal { G } ) + C _ { 1 } \\sqrt { \\frac { \\log ( 1 / \\delta ) } { n } } , } \\end{array}", + "type": "interline_equation", + "image_path": "935f16d2727af48cf0f6f25877c2152b8b99fe09b2a0c5e2177b7839463ef7e3.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 127, + 288, + 484, + 309.0 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 127, + 309.0, + 484, + 330.0 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 127, + 330.0, + 484, + 351.0 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 352, + 259, + 364 + ], + "lines": [ + { + "bbox": [ + 106, + 351, + 259, + 365 + ], + "spans": [ + { + "bbox": [ + 106, + 351, + 133, + 365 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 353, + 145, + 363 + ], + "score": 0.89, + "content": "C _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 351, + 259, + 365 + ], + "score": 1.0, + "content": "is an absolute constant, and", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "interline_equation", + "bbox": [ + 185, + 366, + 425, + 400 + ], + "lines": [ + { + "bbox": [ + 185, + 366, + 425, + 400 + ], + "spans": [ + { + "bbox": [ + 185, + 366, + 425, + 400 + ], + "score": 0.93, + "content": "\\widehat { \\pmb { \\mathscr { R } } } _ { n } ( { \\pmb { \\mathscr { G } } } ) = \\mathbb { E } _ { \\xi _ { i } \\sim \\mathrm { U n i f } ( \\{ \\pmb { \\mathscr { \\pmb { \\Sigma } } } \\bot \\} ) } \\left\\{ \\operatorname* { s u p } _ { \\mathbf { W } \\in \\mathcal { W } } \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } \\xi _ { i } \\ell ^ { \\prime } \\big [ y _ { i } \\cdot f _ { \\mathbf { W } } ( \\pmb { x } _ { i } ) \\big ] \\right\\}", + "type": "interline_equation", + "image_path": "fae13ef1701874efa9ef7e30b4c2efc59afc4534582140b985caa5e0d7380b25.jpg" + } + ] + } + ], + "index": 17.5, + "virtual_lines": [ + { + "bbox": [ + 185, + 366, + 425, + 383.0 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 185, + 383.0, + 425, + 400.0 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 402, + 506, + 479 + ], + "lines": [ + { + "bbox": [ + 105, + 402, + 505, + 415 + ], + "spans": [ + { + "bbox": [ + 105, + 402, + 367, + 415 + ], + "score": 1.0, + "content": "is the empirical Rademacher complexity of the function class", + "type": "text" + }, + { + "bbox": [ + 367, + 403, + 375, + 413 + ], + "score": 0.81, + "content": "\\mathcal { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 375, + 402, + 505, + 415 + ], + "score": 1.0, + "content": ". We now provide two bounds", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 413, + 506, + 428 + ], + "spans": [ + { + "bbox": [ + 105, + 414, + 119, + 428 + ], + "score": 1.0, + "content": "on", + "type": "text" + }, + { + "bbox": [ + 120, + 413, + 149, + 428 + ], + "score": 0.92, + "content": "\\widehat { \\mathfrak { R } } _ { n } ( { \\mathcal { G } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 414, + 506, + 428 + ], + "score": 1.0, + "content": ", whose combination gives the final result of Lemma A.3. First, by Corollary 5.35 in", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 426, + 507, + 443 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 288, + 443 + ], + "score": 1.0, + "content": "(Vershynin, 2010), with probability at least", + "type": "text" + }, + { + "bbox": [ + 289, + 429, + 377, + 442 + ], + "score": 0.88, + "content": "1 - L \\cdot \\exp ( - \\Omega ( m ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 426, + 383, + 443 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 383, + 427, + 441, + 442 + ], + "score": 0.91, + "content": "\\| \\mathbf { W } _ { l } ^ { ( 0 ) } \\| _ { 2 } \\leqslant 3", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 426, + 471, + 443 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 471, + 429, + 503, + 441 + ], + "score": 0.91, + "content": "l \\in [ L ]", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 426, + 507, + 443 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 439, + 506, + 453 + ], + "spans": [ + { + "bbox": [ + 106, + 439, + 173, + 453 + ], + "score": 1.0, + "content": "Therefore for all", + "type": "text" + }, + { + "bbox": [ + 173, + 441, + 208, + 451 + ], + "score": 0.89, + "content": "\\mathbf { W } \\in \\mathcal { W }", + "type": "inline_equation" + }, + { + "bbox": [ + 208, + 439, + 246, + 453 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + }, + { + "bbox": [ + 246, + 441, + 293, + 452 + ], + "score": 0.93, + "content": "\\| \\mathbf { W } _ { l } \\| _ { 2 } \\leqslant 4", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 439, + 506, + 453 + ], + "score": 1.0, + "content": ". Moreover, standard concentration inequalities on the", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 104, + 450, + 508, + 469 + ], + "spans": [ + { + "bbox": [ + 104, + 450, + 201, + 469 + ], + "score": 1.0, + "content": "norm of the first row of", + "type": "text" + }, + { + "bbox": [ + 201, + 452, + 225, + 467 + ], + "score": 0.92, + "content": "\\mathbf { W } _ { l } ^ { ( 0 ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 450, + 294, + 469 + ], + "score": 1.0, + "content": "also implies that", + "type": "text" + }, + { + "bbox": [ + 294, + 454, + 349, + 466 + ], + "score": 0.92, + "content": "\\Vert \\mathbf { W } _ { l } \\Vert _ { 2 } \\geqslant 0 . 5", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 450, + 376, + 469 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 376, + 454, + 411, + 465 + ], + "score": 0.89, + "content": "\\mathbf { W } \\in \\mathcal { W }", + "type": "inline_equation" + }, + { + "bbox": [ + 412, + 450, + 429, + 469 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 429, + 454, + 458, + 466 + ], + "score": 0.92, + "content": "l \\in [ L ]", + "type": "inline_equation" + }, + { + "bbox": [ + 458, + 450, + 508, + 469 + ], + "score": 1.0, + "content": ". Therefore,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 466, + 340, + 480 + ], + "spans": [ + { + "bbox": [ + 106, + 466, + 285, + 480 + ], + "score": 1.0, + "content": "an adaptation of the bound in (Bartlett et al.,", + "type": "text" + }, + { + "bbox": [ + 286, + 466, + 315, + 479 + ], + "score": 0.45, + "content": "2 0 1 7 ) ^ { \\ P }", + "type": "inline_equation" + }, + { + "bbox": [ + 316, + 466, + 340, + 480 + ], + "score": 1.0, + "content": "gives", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 21.5 + }, + { + "type": "interline_equation", + "bbox": [ + 142, + 482, + 468, + 589 + ], + "lines": [ + { + "bbox": [ + 142, + 482, + 468, + 589 + ], + "spans": [ + { + "bbox": [ + 142, + 482, + 468, + 589 + ], + "score": 0.95, + "content": "\\begin{array} { r l } & { \\boldsymbol { \\widehat { \\mathfrak { N } } } _ { n } ( \\mathcal { F } ) \\leqslant \\boldsymbol { \\widetilde { \\mathcal { O } } } \\left( \\underset { \\mathbf { W } \\in \\mathcal { W } } { \\operatorname* { s u p } } \\left\\{ \\frac { m ^ { 1 / 2 } } { \\sqrt { n } } \\cdot \\left[ \\underset { l = 1 } { \\overset { L } { \\prod } } \\lVert \\mathbf { W } _ { l } \\rVert _ { 2 } \\right] \\cdot \\left[ \\underset { l = 1 } { \\overset { L } { \\sum } } \\frac { \\lVert \\mathbf { W } _ { l } ^ { \\top } - \\mathbf { W } _ { l } ^ { ( 0 ) \\top } \\rVert _ { 2 , 1 } ^ { 2 / 3 } } { \\lVert \\mathbf { W } _ { l } \\rVert _ { 2 } ^ { 2 / 3 } } \\right] ^ { 3 / 2 } \\right\\} \\right) } \\\\ & { \\qquad \\leqslant \\boldsymbol { \\widetilde { \\mathcal { O } } } \\left( \\underset { \\mathbf { W } \\in \\mathcal { W } } { \\operatorname* { s u p } } \\left\\{ \\frac { 4 ^ { L } m ^ { 1 / 2 } } { \\sqrt { n } } \\cdot \\left[ \\underset { l = 1 } { \\overset { L } { \\sum } } ( \\sqrt { m } \\cdot \\lVert \\mathbf { W } _ { l } ^ { \\top } - \\mathbf { W } _ { l } ^ { ( 0 ) \\top } \\rVert _ { F } ) ^ { 2 / 3 } \\right] ^ { 3 / 2 } \\right\\} \\right) } \\\\ & { \\qquad \\leqslant \\boldsymbol { \\widetilde { \\mathcal { O } } } \\left( 4 ^ { L } L ^ { 3 / 2 } \\boldsymbol { \\widetilde { R } } \\cdot \\sqrt { \\frac { m } { n } } \\right) . } \\end{array}", + "type": "interline_equation", + "image_path": "8a8496e727469c9849cc652cbaa5d36206ed4e4f5fdafd3c9706d5ba6ef9b12a.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 142, + 482, + 468, + 517.6666666666666 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 142, + 517.6666666666666, + 468, + 553.3333333333333 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 142, + 553.3333333333333, + 468, + 588.9999999999999 + ], + "spans": [], + "index": 27 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 592, + 505, + 639 + ], + "lines": [ + { + "bbox": [ + 104, + 592, + 506, + 607 + ], + "spans": [ + { + "bbox": [ + 104, + 592, + 257, + 607 + ], + "score": 1.0, + "content": "We now derive the second bound on", + "type": "text" + }, + { + "bbox": [ + 257, + 592, + 286, + 606 + ], + "score": 0.92, + "content": "\\widehat { \\mathfrak { R } } _ { n } ( { \\mathcal G } )", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 592, + 506, + 607 + ], + "score": 1.0, + "content": ", which is inspired by the proof provided in (Cao and", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 605, + 506, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 176, + 618 + ], + "score": 1.0, + "content": "Gu, 2020). Since", + "type": "text" + }, + { + "bbox": [ + 176, + 605, + 224, + 617 + ], + "score": 0.87, + "content": "y \\in \\{ + 1 , 1 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 605, + 228, + 618 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 228, + 605, + 273, + 617 + ], + "score": 0.85, + "content": "| \\ell ^ { \\prime } ( z ) | \\leqslant 1", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 605, + 291, + 618 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 291, + 605, + 312, + 617 + ], + "score": 0.92, + "content": "\\ell ^ { \\prime } ( z )", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 605, + 506, + 618 + ], + "score": 1.0, + "content": "is 1-Lipschitz continuous, by standard empirical", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 615, + 506, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 506, + 628 + ], + "score": 1.0, + "content": "Rademacher complexity bounds (Bartlett and Mendelson, 2002; Mohri et al., 2018; Shalev-Shwartz", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 627, + 236, + 639 + ], + "spans": [ + { + "bbox": [ + 106, + 627, + 236, + 639 + ], + "score": 1.0, + "content": "and Ben-David, 2014), we have", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 29.5 + }, + { + "type": "interline_equation", + "bbox": [ + 180, + 641, + 430, + 675 + ], + "lines": [ + { + "bbox": [ + 180, + 641, + 430, + 675 + ], + "spans": [ + { + "bbox": [ + 180, + 641, + 430, + 675 + ], + "score": 0.94, + "content": "\\widehat { \\mathfrak { R } } _ { n } ( \\mathcal { G } ) \\leqslant \\widehat { \\mathfrak { R } } _ { n } ( \\mathcal { F } ) = \\mathbb { E } _ { \\xi _ { i } \\sim \\mathrm { U n i f } ( \\{ \\pm 1 \\} ) } \\left[ \\ * { \\operatorname* { s u p } _ { \\mathbf { W } \\in \\mathcal { W } } \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } \\xi _ { i } f _ { \\mathbf { W } } ( \\pmb x _ { i } ) } \\right] ,", + "type": "interline_equation", + "image_path": "fe7030dd165c7e287243a11577687af06224c21a5bbf697fddfbabe3d22ed1bb.jpg" + } + ] + } + ], + "index": 33, + "virtual_lines": [ + { + "bbox": [ + 180, + 641, + 430, + 652.3333333333334 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 180, + 652.3333333333334, + 430, + 663.6666666666667 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 180, + 663.6666666666667, + 430, + 675.0000000000001 + ], + "spans": [], + "index": 34 + } + ] + } + ], + "page_idx": 18, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 681, + 506, + 732 + ], + "lines": [ + { + "bbox": [ + 117, + 680, + 506, + 694 + ], + "spans": [ + { + "bbox": [ + 117, + 680, + 506, + 694 + ], + "score": 1.0, + "content": "¶Bartlett et al. (2017) only proved the Rademacher complexity bound for the composition of the ramp loss", + "type": "text" + } + ] + }, + { + "bbox": [ + 105, + 690, + 506, + 703 + ], + "spans": [ + { + "bbox": [ + 105, + 690, + 445, + 703 + ], + "score": 1.0, + "content": "and the neural network function. In our setting essentially the ramp loss is replaced with the", + "type": "text" + }, + { + "bbox": [ + 446, + 692, + 470, + 702 + ], + "score": 0.9, + "content": "- \\ell ^ { \\prime } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 470, + 690, + 506, + 703 + ], + "score": 1.0, + "content": "function,", + "type": "text" + } + ] + }, + { + "bbox": [ + 106, + 702, + 506, + 713 + ], + "spans": [ + { + "bbox": [ + 106, + 702, + 506, + 713 + ], + "score": 1.0, + "content": "which is bounded and 1-Lipschitz continuous. The proof in our setting is therefore exactly the same as the proof", + "type": "text" + } + ] + }, + { + "bbox": [ + 105, + 711, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 711, + 506, + 723 + ], + "score": 1.0, + "content": "given in (Bartlett et al., 2017), and we can apply Theorem 3.3 and Lemma A.5 in (Bartlett et al., 2017) to obtain", + "type": "text" + } + ] + }, + { + "bbox": [ + 105, + 721, + 234, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 234, + 733 + ], + "score": 1.0, + "content": "the desired bound we present here.", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 26, + 293, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 293, + 39 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 293, + 39 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 765 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 765 + ], + "score": 1.0, + "content": "19", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "interline_equation", + "bbox": [ + 116, + 80, + 510, + 143 + ], + "lines": [ + { + "bbox": [ + 116, + 80, + 510, + 143 + ], + "spans": [ + { + "bbox": [ + 116, + 80, + 510, + 143 + ], + "score": 0.93, + "content": "\\begin{array} { r l } { { } } & { { \\displaystyle \\geqslant \\frac { 2 \\eta } { n } \\sum _ { i = 1 } ^ { n } \\left[ ( 1 - 2 \\epsilon _ { \\mathrm { a p p } } ( \\tau ) ) \\ell \\big ( y _ { i } f _ { \\mathbf { W } ^ { ( t ) } } ( \\mathbf { x } _ { i } ) \\big ) - \\ell \\big ( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ^ { * } } \\big ( \\mathbf { x } _ { i } \\big ) \\big ) \\right] - \\mathcal { O } \\big ( \\eta ^ { 2 } L M ( \\tau ) ^ { 2 } \\big ) \\cdot L _ { S } ( \\mathbf { W } ^ { ( t ) } ) } } \\\\ { { } } & { { \\displaystyle \\geqslant \\left[ \\frac { 3 } { 2 } - 4 \\epsilon _ { \\mathrm { a p p } } ( \\tau ) \\right] \\eta L _ { S } ( \\mathbf { W } ^ { ( t ) } ) - \\frac { 2 \\eta } { n } \\sum _ { i = 1 } ^ { n } \\ell \\big ( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ^ { * } } \\big ( \\mathbf { x } _ { i } \\big ) \\big ) , } } \\end{array}", + "type": "interline_equation", + "image_path": "ac46d5d995e6f5b29f16f4a6219793cccef63378142ffa4fba9da4ca35f9075f.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 116, + 80, + 510, + 101.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 116, + 101.0, + 510, + 122.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 116, + 122.0, + 510, + 143.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 146, + 506, + 182 + ], + "lines": [ + { + "bbox": [ + 106, + 146, + 506, + 160 + ], + "spans": [ + { + "bbox": [ + 106, + 146, + 230, + 160 + ], + "score": 1.0, + "content": "where the last inequality is by", + "type": "text" + }, + { + "bbox": [ + 230, + 146, + 317, + 159 + ], + "score": 0.93, + "content": "\\eta = \\mathcal { O } ( L ^ { - 1 } M ( \\tau ) ^ { - 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 146, + 506, + 160 + ], + "score": 1.0, + "content": "and merging the third term on the second line", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 158, + 505, + 171 + ], + "spans": [ + { + "bbox": [ + 106, + 158, + 298, + 171 + ], + "score": 1.0, + "content": "into the first term. Taking telescope sum from ř ` ˘", + "type": "text" + }, + { + "bbox": [ + 299, + 159, + 324, + 168 + ], + "score": 0.89, + "content": "t = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 158, + 335, + 171 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 336, + 158, + 379, + 168 + ], + "score": 0.91, + "content": "t = t ^ { \\prime } - 1", + "type": "inline_equation" + }, + { + "bbox": [ + 380, + 158, + 505, + 171 + ], + "score": 1.0, + "content": "and plugging in the definition", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 103, + 166, + 505, + 184 + ], + "spans": [ + { + "bbox": [ + 103, + 166, + 345, + 184 + ], + "score": 1.0, + "content": "1n ni“1 ` yiFWp0q,W˚ pxiq “ \u000fNTRF completes the proof.", + "type": "text" + }, + { + "bbox": [ + 495, + 169, + 505, + 180 + ], + "score": 0.998, + "content": "□", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4, + "bbox_fs": [ + 103, + 146, + 506, + 184 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 193, + 230, + 205 + ], + "lines": [ + { + "bbox": [ + 106, + 192, + 232, + 207 + ], + "spans": [ + { + "bbox": [ + 106, + 192, + 232, + 207 + ], + "score": 1.0, + "content": "C.2 PROOF OF LEMMA A.3", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 106, + 212, + 505, + 248 + ], + "lines": [ + { + "bbox": [ + 104, + 210, + 506, + 228 + ], + "spans": [ + { + "bbox": [ + 104, + 210, + 261, + 228 + ], + "score": 1.0, + "content": "Proof of Lemma A.3. We first denote", + "type": "text" + }, + { + "bbox": [ + 262, + 212, + 375, + 226 + ], + "score": 0.92, + "content": "\\mathcal { W } = \\mathcal { B } ( \\mathbf { W } ^ { ( 0 ) } , \\widetilde { R } \\cdot m ^ { - 1 / 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 210, + 506, + 228 + ], + "score": 1.0, + "content": ", and define the corresponding", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 224, + 505, + 238 + ], + "spans": [ + { + "bbox": [ + 105, + 224, + 379, + 238 + ], + "score": 1.0, + "content": "neural network function class and surrogate loss function class as", + "type": "text" + }, + { + "bbox": [ + 379, + 225, + 486, + 237 + ], + "score": 0.93, + "content": "{ \\mathcal { F } } = \\{ f _ { \\mathbf { W } } ( \\mathbf { x } ) : \\mathbf { W } \\in \\mathbf { \\bar { \\mathcal { W } } } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 224, + 505, + 238 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 235, + 291, + 249 + ], + "spans": [ + { + "bbox": [ + 106, + 236, + 238, + 248 + ], + "score": 0.9, + "content": "\\mathcal { G } = \\left\\{ - \\ell [ y \\cdot f _ { \\mathbf { W } } ( \\mathbf { x } ) ] : \\mathbf { W } \\in \\mathcal { W } \\right\\}", + "type": "inline_equation" + }, + { + "bbox": [ + 238, + 235, + 291, + 249 + ], + "score": 1.0, + "content": "respectively.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8, + "bbox_fs": [ + 104, + 210, + 506, + 249 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 253, + 506, + 286 + ], + "lines": [ + { + "bbox": [ + 105, + 252, + 506, + 266 + ], + "spans": [ + { + "bbox": [ + 105, + 252, + 506, + 266 + ], + "score": 1.0, + "content": "By standard uniform convergence results in terms of empirical Rademacher complexity (Bartlett and", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 262, + 506, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 262, + 506, + 277 + ], + "score": 1.0, + "content": "Mendelson, 2002; Mohri et al., 2018; Shalev-Shwartz and Ben-David, 2014), with probability at least", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 273, + 166, + 287 + ], + "spans": [ + { + "bbox": [ + 106, + 275, + 129, + 285 + ], + "score": 0.86, + "content": "1 - \\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 129, + 273, + 166, + 287 + ], + "score": 1.0, + "content": "we have", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11, + "bbox_fs": [ + 105, + 252, + 506, + 287 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 127, + 288, + 484, + 351 + ], + "lines": [ + { + "bbox": [ + 127, + 288, + 484, + 351 + ], + "spans": [ + { + "bbox": [ + 127, + 288, + 484, + 351 + ], + "score": 0.94, + "content": "\\begin{array} { l } { \\displaystyle \\operatorname* { s u p } _ { \\mathbf { w } \\in \\mathcal { W } } | \\mathcal { E } _ { S } ( \\mathbf { W } ) - \\mathcal { E } _ { \\mathcal { D } } ( \\mathbf { W } ) | = \\operatorname* { s u p } _ { \\mathbf { w } \\in \\mathcal { W } } \\bigg \\vert - \\frac { 1 } { n } \\displaystyle \\sum _ { i = 1 } ^ { n } \\ell ^ { \\prime } \\big [ y _ { i } \\cdot f _ { \\mathbf { W } } ( \\pmb { x } _ { i } ) \\big ] + \\mathbb { E } _ { ( \\mathbf { x } , y ) \\sim \\mathcal { D } } \\ell ^ { \\prime } \\big [ y \\cdot f _ { \\mathbf { W } } ( \\mathbf { x } ) \\big ] \\bigg \\vert } \\\\ { \\leqslant 2 \\widehat { \\mathfrak { R } } _ { n } ( \\mathcal { G } ) + C _ { 1 } \\sqrt { \\frac { \\log ( 1 / \\delta ) } { n } } , } \\end{array}", + "type": "interline_equation", + "image_path": "935f16d2727af48cf0f6f25877c2152b8b99fe09b2a0c5e2177b7839463ef7e3.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 127, + 288, + 484, + 309.0 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 127, + 309.0, + 484, + 330.0 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 127, + 330.0, + 484, + 351.0 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 352, + 259, + 364 + ], + "lines": [ + { + "bbox": [ + 106, + 351, + 259, + 365 + ], + "spans": [ + { + "bbox": [ + 106, + 351, + 133, + 365 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 353, + 145, + 363 + ], + "score": 0.89, + "content": "C _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 351, + 259, + 365 + ], + "score": 1.0, + "content": "is an absolute constant, and", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16, + "bbox_fs": [ + 106, + 351, + 259, + 365 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 185, + 366, + 425, + 400 + ], + "lines": [ + { + "bbox": [ + 185, + 366, + 425, + 400 + ], + "spans": [ + { + "bbox": [ + 185, + 366, + 425, + 400 + ], + "score": 0.93, + "content": "\\widehat { \\pmb { \\mathscr { R } } } _ { n } ( { \\pmb { \\mathscr { G } } } ) = \\mathbb { E } _ { \\xi _ { i } \\sim \\mathrm { U n i f } ( \\{ \\pmb { \\mathscr { \\pmb { \\Sigma } } } \\bot \\} ) } \\left\\{ \\operatorname* { s u p } _ { \\mathbf { W } \\in \\mathcal { W } } \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } \\xi _ { i } \\ell ^ { \\prime } \\big [ y _ { i } \\cdot f _ { \\mathbf { W } } ( \\pmb { x } _ { i } ) \\big ] \\right\\}", + "type": "interline_equation", + "image_path": "fae13ef1701874efa9ef7e30b4c2efc59afc4534582140b985caa5e0d7380b25.jpg" + } + ] + } + ], + "index": 17.5, + "virtual_lines": [ + { + "bbox": [ + 185, + 366, + 425, + 383.0 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 185, + 383.0, + 425, + 400.0 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 402, + 506, + 479 + ], + "lines": [ + { + "bbox": [ + 105, + 402, + 505, + 415 + ], + "spans": [ + { + "bbox": [ + 105, + 402, + 367, + 415 + ], + "score": 1.0, + "content": "is the empirical Rademacher complexity of the function class", + "type": "text" + }, + { + "bbox": [ + 367, + 403, + 375, + 413 + ], + "score": 0.81, + "content": "\\mathcal { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 375, + 402, + 505, + 415 + ], + "score": 1.0, + "content": ". We now provide two bounds", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 413, + 506, + 428 + ], + "spans": [ + { + "bbox": [ + 105, + 414, + 119, + 428 + ], + "score": 1.0, + "content": "on", + "type": "text" + }, + { + "bbox": [ + 120, + 413, + 149, + 428 + ], + "score": 0.92, + "content": "\\widehat { \\mathfrak { R } } _ { n } ( { \\mathcal { G } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 414, + 506, + 428 + ], + "score": 1.0, + "content": ", whose combination gives the final result of Lemma A.3. First, by Corollary 5.35 in", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 426, + 507, + 443 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 288, + 443 + ], + "score": 1.0, + "content": "(Vershynin, 2010), with probability at least", + "type": "text" + }, + { + "bbox": [ + 289, + 429, + 377, + 442 + ], + "score": 0.88, + "content": "1 - L \\cdot \\exp ( - \\Omega ( m ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 426, + 383, + 443 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 383, + 427, + 441, + 442 + ], + "score": 0.91, + "content": "\\| \\mathbf { W } _ { l } ^ { ( 0 ) } \\| _ { 2 } \\leqslant 3", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 426, + 471, + 443 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 471, + 429, + 503, + 441 + ], + "score": 0.91, + "content": "l \\in [ L ]", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 426, + 507, + 443 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 439, + 506, + 453 + ], + "spans": [ + { + "bbox": [ + 106, + 439, + 173, + 453 + ], + "score": 1.0, + "content": "Therefore for all", + "type": "text" + }, + { + "bbox": [ + 173, + 441, + 208, + 451 + ], + "score": 0.89, + "content": "\\mathbf { W } \\in \\mathcal { W }", + "type": "inline_equation" + }, + { + "bbox": [ + 208, + 439, + 246, + 453 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + }, + { + "bbox": [ + 246, + 441, + 293, + 452 + ], + "score": 0.93, + "content": "\\| \\mathbf { W } _ { l } \\| _ { 2 } \\leqslant 4", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 439, + 506, + 453 + ], + "score": 1.0, + "content": ". Moreover, standard concentration inequalities on the", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 104, + 450, + 508, + 469 + ], + "spans": [ + { + "bbox": [ + 104, + 450, + 201, + 469 + ], + "score": 1.0, + "content": "norm of the first row of", + "type": "text" + }, + { + "bbox": [ + 201, + 452, + 225, + 467 + ], + "score": 0.92, + "content": "\\mathbf { W } _ { l } ^ { ( 0 ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 450, + 294, + 469 + ], + "score": 1.0, + "content": "also implies that", + "type": "text" + }, + { + "bbox": [ + 294, + 454, + 349, + 466 + ], + "score": 0.92, + "content": "\\Vert \\mathbf { W } _ { l } \\Vert _ { 2 } \\geqslant 0 . 5", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 450, + 376, + 469 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 376, + 454, + 411, + 465 + ], + "score": 0.89, + "content": "\\mathbf { W } \\in \\mathcal { W }", + "type": "inline_equation" + }, + { + "bbox": [ + 412, + 450, + 429, + 469 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 429, + 454, + 458, + 466 + ], + "score": 0.92, + "content": "l \\in [ L ]", + "type": "inline_equation" + }, + { + "bbox": [ + 458, + 450, + 508, + 469 + ], + "score": 1.0, + "content": ". Therefore,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 466, + 340, + 480 + ], + "spans": [ + { + "bbox": [ + 106, + 466, + 285, + 480 + ], + "score": 1.0, + "content": "an adaptation of the bound in (Bartlett et al.,", + "type": "text" + }, + { + "bbox": [ + 286, + 466, + 315, + 479 + ], + "score": 0.45, + "content": "2 0 1 7 ) ^ { \\ P }", + "type": "inline_equation" + }, + { + "bbox": [ + 316, + 466, + 340, + 480 + ], + "score": 1.0, + "content": "gives", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 21.5, + "bbox_fs": [ + 104, + 402, + 508, + 480 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 142, + 482, + 468, + 589 + ], + "lines": [ + { + "bbox": [ + 142, + 482, + 468, + 589 + ], + "spans": [ + { + "bbox": [ + 142, + 482, + 468, + 589 + ], + "score": 0.95, + "content": "\\begin{array} { r l } & { \\boldsymbol { \\widehat { \\mathfrak { N } } } _ { n } ( \\mathcal { F } ) \\leqslant \\boldsymbol { \\widetilde { \\mathcal { O } } } \\left( \\underset { \\mathbf { W } \\in \\mathcal { W } } { \\operatorname* { s u p } } \\left\\{ \\frac { m ^ { 1 / 2 } } { \\sqrt { n } } \\cdot \\left[ \\underset { l = 1 } { \\overset { L } { \\prod } } \\lVert \\mathbf { W } _ { l } \\rVert _ { 2 } \\right] \\cdot \\left[ \\underset { l = 1 } { \\overset { L } { \\sum } } \\frac { \\lVert \\mathbf { W } _ { l } ^ { \\top } - \\mathbf { W } _ { l } ^ { ( 0 ) \\top } \\rVert _ { 2 , 1 } ^ { 2 / 3 } } { \\lVert \\mathbf { W } _ { l } \\rVert _ { 2 } ^ { 2 / 3 } } \\right] ^ { 3 / 2 } \\right\\} \\right) } \\\\ & { \\qquad \\leqslant \\boldsymbol { \\widetilde { \\mathcal { O } } } \\left( \\underset { \\mathbf { W } \\in \\mathcal { W } } { \\operatorname* { s u p } } \\left\\{ \\frac { 4 ^ { L } m ^ { 1 / 2 } } { \\sqrt { n } } \\cdot \\left[ \\underset { l = 1 } { \\overset { L } { \\sum } } ( \\sqrt { m } \\cdot \\lVert \\mathbf { W } _ { l } ^ { \\top } - \\mathbf { W } _ { l } ^ { ( 0 ) \\top } \\rVert _ { F } ) ^ { 2 / 3 } \\right] ^ { 3 / 2 } \\right\\} \\right) } \\\\ & { \\qquad \\leqslant \\boldsymbol { \\widetilde { \\mathcal { O } } } \\left( 4 ^ { L } L ^ { 3 / 2 } \\boldsymbol { \\widetilde { R } } \\cdot \\sqrt { \\frac { m } { n } } \\right) . } \\end{array}", + "type": "interline_equation", + "image_path": "8a8496e727469c9849cc652cbaa5d36206ed4e4f5fdafd3c9706d5ba6ef9b12a.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 142, + 482, + 468, + 517.6666666666666 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 142, + 517.6666666666666, + 468, + 553.3333333333333 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 142, + 553.3333333333333, + 468, + 588.9999999999999 + ], + "spans": [], + "index": 27 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 592, + 505, + 639 + ], + "lines": [ + { + "bbox": [ + 104, + 592, + 506, + 607 + ], + "spans": [ + { + "bbox": [ + 104, + 592, + 257, + 607 + ], + "score": 1.0, + "content": "We now derive the second bound on", + "type": "text" + }, + { + "bbox": [ + 257, + 592, + 286, + 606 + ], + "score": 0.92, + "content": "\\widehat { \\mathfrak { R } } _ { n } ( { \\mathcal G } )", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 592, + 506, + 607 + ], + "score": 1.0, + "content": ", which is inspired by the proof provided in (Cao and", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 605, + 506, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 176, + 618 + ], + "score": 1.0, + "content": "Gu, 2020). Since", + "type": "text" + }, + { + "bbox": [ + 176, + 605, + 224, + 617 + ], + "score": 0.87, + "content": "y \\in \\{ + 1 , 1 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 605, + 228, + 618 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 228, + 605, + 273, + 617 + ], + "score": 0.85, + "content": "| \\ell ^ { \\prime } ( z ) | \\leqslant 1", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 605, + 291, + 618 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 291, + 605, + 312, + 617 + ], + "score": 0.92, + "content": "\\ell ^ { \\prime } ( z )", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 605, + 506, + 618 + ], + "score": 1.0, + "content": "is 1-Lipschitz continuous, by standard empirical", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 615, + 506, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 506, + 628 + ], + "score": 1.0, + "content": "Rademacher complexity bounds (Bartlett and Mendelson, 2002; Mohri et al., 2018; Shalev-Shwartz", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 627, + 236, + 639 + ], + "spans": [ + { + "bbox": [ + 106, + 627, + 236, + 639 + ], + "score": 1.0, + "content": "and Ben-David, 2014), we have", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 29.5, + "bbox_fs": [ + 104, + 592, + 506, + 639 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 180, + 641, + 430, + 675 + ], + "lines": [ + { + "bbox": [ + 180, + 641, + 430, + 675 + ], + "spans": [ + { + "bbox": [ + 180, + 641, + 430, + 675 + ], + "score": 0.94, + "content": "\\widehat { \\mathfrak { R } } _ { n } ( \\mathcal { G } ) \\leqslant \\widehat { \\mathfrak { R } } _ { n } ( \\mathcal { F } ) = \\mathbb { E } _ { \\xi _ { i } \\sim \\mathrm { U n i f } ( \\{ \\pm 1 \\} ) } \\left[ \\ * { \\operatorname* { s u p } _ { \\mathbf { W } \\in \\mathcal { W } } \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } \\xi _ { i } f _ { \\mathbf { W } } ( \\pmb x _ { i } ) } \\right] ,", + "type": "interline_equation", + "image_path": "fe7030dd165c7e287243a11577687af06224c21a5bbf697fddfbabe3d22ed1bb.jpg" + } + ] + } + ], + "index": 33, + "virtual_lines": [ + { + "bbox": [ + 180, + 641, + 430, + 652.3333333333334 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 180, + 652.3333333333334, + 430, + 663.6666666666667 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 180, + 663.6666666666667, + 430, + 675.0000000000001 + ], + "spans": [], + "index": 34 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 81, + 461, + 95 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 463, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 132, + 97 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 80, + 164, + 95 + ], + "score": 0.93, + "content": "\\textstyle { \\widehat { \\mathfrak { R } } } _ { n } ( { \\mathcal { F } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 80, + 411, + 97 + ], + "score": 1.0, + "content": "is the empirical Rademacher complexity of the function class", + "type": "text" + }, + { + "bbox": [ + 412, + 83, + 421, + 92 + ], + "score": 0.8, + "content": "\\mathcal { F }", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 80, + 463, + 97 + ], + "score": 1.0, + "content": ". We have", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 99, + 500, + 151 + ], + "lines": [ + { + "bbox": [ + 111, + 99, + 500, + 151 + ], + "spans": [ + { + "bbox": [ + 111, + 99, + 500, + 151 + ], + "score": 0.79, + "content": "\\widehat { \\mathfrak { R } } _ { n } [ F ] \\leqslant \\underbrace { \\mathbb { E } _ { \\xi } \\Bigg \\{ \\underbrace { \\operatorname* { s u p } _ { \\mathbf { W } \\in \\mathcal { W } } \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } \\xi _ { i } \\big [ f _ { \\mathbf { W } } ( \\mathbf { x } _ { i } ) - F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } } ( \\mathbf { x } _ { i } ) \\big ] } _ { I _ { 1 } } \\Bigg \\} } _ { I _ { 1 } } + \\underbrace { \\mathbb { E } _ { \\xi } \\Bigg \\{ \\underbrace { \\operatorname* { s u p } _ { \\mathbf { W } \\in \\mathcal { W } } n } _ { \\mathbf { \\Sigma } _ { i = 1 } } \\sum _ { i = 1 } ^ { n } \\xi _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } } ( \\mathbf { x } _ { i } ) \\Bigg \\} } _ { I _ { 2 } } ,", + "type": "interline_equation", + "image_path": "07b5dea74a50aff80713e934fc63366bd015aff0c259e244f4425ef1a15befd2.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 111, + 99, + 500, + 116.33333333333333 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 111, + 116.33333333333333, + 500, + 133.66666666666666 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 111, + 133.66666666666666, + 500, + 151.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 165, + 506, + 191 + ], + "lines": [ + { + "bbox": [ + 105, + 164, + 506, + 180 + ], + "spans": [ + { + "bbox": [ + 105, + 164, + 132, + 180 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 132, + 166, + 365, + 180 + ], + "score": 0.86, + "content": "F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } } ( \\mathbf { x } ) = f _ { \\mathbf { W } ^ { ( 0 ) } } ( \\mathbf { x } ) + \\big \\langle \\nabla _ { \\mathbf { W } } f _ { \\mathbf { W } ^ { ( 0 ) } } ( \\mathbf { x } ) , \\mathbf { W } - \\mathbf { W } ^ { ( 0 ) } \\big \\rangle .", + "type": "inline_equation" + }, + { + "bbox": [ + 365, + 164, + 384, + 180 + ], + "score": 1.0, + "content": ". For", + "type": "text" + }, + { + "bbox": [ + 384, + 167, + 394, + 178 + ], + "score": 0.86, + "content": "I _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 394, + 164, + 506, + 180 + ], + "score": 1.0, + "content": ", by Lemma 4.1 in (Cao and", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 179, + 317, + 191 + ], + "spans": [ + { + "bbox": [ + 106, + 179, + 249, + 191 + ], + "score": 1.0, + "content": "Gu, 2019), with probability at least", + "type": "text" + }, + { + "bbox": [ + 249, + 180, + 281, + 191 + ], + "score": 0.9, + "content": "1 - \\delta / 2", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 179, + 317, + 191 + ], + "score": 1.0, + "content": "we have", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5 + }, + { + "type": "interline_equation", + "bbox": [ + 165, + 196, + 445, + 218 + ], + "lines": [ + { + "bbox": [ + 165, + 196, + 445, + 218 + ], + "spans": [ + { + "bbox": [ + 165, + 196, + 445, + 218 + ], + "score": 0.89, + "content": "I _ { 1 } \\leqslant \\operatorname* { m a x } _ { i \\in [ n ] } \\big | f _ { \\mathbf { W } } ( \\pmb { x } _ { i } ) - F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } } ( \\pmb { x } _ { i } ) \\big | \\leqslant \\mathcal { O } \\big ( L ^ { 3 } \\widetilde { R } ^ { 4 / 3 } m ^ { - 1 / 6 } \\sqrt { \\log ( m ) } \\big ) ,", + "type": "interline_equation", + "image_path": "35093c29833f2453e8b97448b2854e7bd708118ff031ede285e29dc9efa5868a.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 165, + 196, + 445, + 218 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 223, + 492, + 239 + ], + "lines": [ + { + "bbox": [ + 104, + 222, + 494, + 240 + ], + "spans": [ + { + "bbox": [ + 104, + 222, + 122, + 240 + ], + "score": 1.0, + "content": "For", + "type": "text" + }, + { + "bbox": [ + 123, + 226, + 132, + 236 + ], + "score": 0.87, + "content": "I _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 133, + 222, + 174, + 240 + ], + "score": 1.0, + "content": ", note that", + "type": "text" + }, + { + "bbox": [ + 174, + 224, + 327, + 239 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\mathbb { E } _ { \\pmb { \\xi } } \\big [ \\operatorname* { s u p } _ { \\mathbf { W } \\in \\mathcal { W } } \\sum _ { i = 1 } ^ { n } \\xi _ { i } f _ { \\mathbf { W } ^ { ( 0 ) } } ( \\pmb { x } _ { i } ) \\big ] = 0 . } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 328, + 222, + 494, + 240 + ], + "score": 1.0, + "content": ". By Cauchy-Schwarz inequality we have", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "interline_equation", + "bbox": [ + 172, + 243, + 439, + 313 + ], + "lines": [ + { + "bbox": [ + 172, + 243, + 439, + 313 + ], + "spans": [ + { + "bbox": [ + 172, + 243, + 439, + 313 + ], + "score": 0.93, + "content": "\\begin{array} { l } { { \\displaystyle I _ { 2 } = \\frac { 1 } { n } \\sum _ { l = 1 } ^ { L } \\mathbb { E } _ { \\boldsymbol \\xi } \\{ \\operatorname* { s u p } _ { \\| \\widetilde { \\mathbf { U } } _ { l } \\| _ { F } \\leqslant \\widetilde { R } m ^ { - 1 / 2 } } \\mathrm { T r } [ \\widetilde { \\mathbf { W } } _ { l } ^ { \\top } \\sum _ { i = 1 } ^ { n } \\xi _ { i } \\nabla _ { \\mathbf { W } _ { l } } f _ { \\mathbf { W } ^ { ( 0 ) } } ( \\pmb x _ { i } ) ] \\} } } \\\\ { { \\displaystyle \\leqslant \\frac { \\widetilde { R } m ^ { - 1 / 2 } } { n } \\sum _ { l = 1 } ^ { L } \\mathbb { E } _ { \\boldsymbol \\xi } [ \\| \\sum _ { i = 1 } ^ { n } \\xi _ { i } \\nabla _ { \\mathbf { W } _ { l } } f _ { \\mathbf { W } ^ { ( 0 ) } } ( \\pmb x _ { i } ) \\| _ { F } ] . } } \\end{array}", + "type": "interline_equation", + "image_path": "aade36cb7e03d0bec0d40f77fd7243cfd1868a195eb1cb71be89a4e8c37f90f6.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 172, + 243, + 439, + 266.3333333333333 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 172, + 266.3333333333333, + 439, + 289.66666666666663 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 172, + 289.66666666666663, + 439, + 312.99999999999994 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 317, + 147, + 328 + ], + "lines": [ + { + "bbox": [ + 105, + 315, + 149, + 329 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 149, + 329 + ], + "score": 1.0, + "content": "Therefore", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "interline_equation", + "bbox": [ + 199, + 332, + 412, + 443 + ], + "lines": [ + { + "bbox": [ + 199, + 332, + 412, + 443 + ], + "spans": [ + { + "bbox": [ + 199, + 332, + 412, + 443 + ], + "score": 0.89, + "content": "\\begin{array} { r l } & { I _ { 2 } \\leqslant \\displaystyle \\frac { { \\widetilde R } m ^ { - 1 / 2 } } { n } \\sum _ { l = 1 } ^ { L } \\sqrt { \\mathbb { E } _ { \\xi } \\bigg [ \\bigg \\| \\displaystyle \\sum _ { i = 1 } ^ { n } \\xi _ { i } \\nabla _ { \\mathbf { W } _ { l } } f _ { \\mathbf { W } ^ { ( 0 ) } } ( { \\pmb x } _ { i } ) \\bigg \\| _ { F } ^ { 2 } \\bigg ] } } \\\\ & { \\quad = \\displaystyle \\frac { { \\widetilde R } m ^ { - 1 / 2 } } { n } \\sum _ { l = 1 } ^ { L } \\sqrt { \\displaystyle \\sum _ { i = 1 } ^ { n } \\left\\| \\nabla _ { \\mathbf { W } _ { l } } f _ { \\mathbf { W } ^ { ( 0 ) } } ( { \\pmb x } _ { i } ) \\right\\| _ { F } ^ { 2 } } } \\\\ & { \\quad \\leqslant \\mathcal { O } \\Big ( \\displaystyle \\frac { L \\cdot { \\widetilde R } } { \\sqrt { n } } \\Big ) , } \\end{array}", + "type": "interline_equation", + "image_path": "c82e5230b0323534a6dced02cd3e407d4a09455caf2845c9b6f1d23c67b57d8b.jpg" + } + ] + } + ], + "index": 15, + "virtual_lines": [ + { + "bbox": [ + 199, + 332, + 412, + 347.85714285714283 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 199, + 347.85714285714283, + 412, + 363.71428571428567 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 199, + 363.71428571428567, + 412, + 379.5714285714285 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 199, + 379.5714285714285, + 412, + 395.42857142857133 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 199, + 395.42857142857133, + 412, + 411.28571428571416 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 199, + 411.28571428571416, + 412, + 427.142857142857 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 199, + 427.142857142857, + 412, + 442.99999999999983 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 446, + 505, + 469 + ], + "lines": [ + { + "bbox": [ + 105, + 444, + 505, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 505, + 461 + ], + "score": 1.0, + "content": "where we apply Jensen’s inequality to obtain the first inequality, and the last inequality follows by", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 456, + 417, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 456, + 355, + 469 + ], + "score": 1.0, + "content": "Lemma B.3 in (Cao and Gu, 2019). Combining the bounds of", + "type": "text" + }, + { + "bbox": [ + 355, + 457, + 365, + 468 + ], + "score": 0.88, + "content": "I _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 365, + 456, + 383, + 469 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 383, + 457, + 393, + 468 + ], + "score": 0.87, + "content": "I _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 394, + 456, + 417, + 469 + ], + "score": 1.0, + "content": "gives", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5 + }, + { + "type": "interline_equation", + "bbox": [ + 239, + 473, + 372, + 503 + ], + "lines": [ + { + "bbox": [ + 239, + 473, + 372, + 503 + ], + "spans": [ + { + "bbox": [ + 239, + 473, + 372, + 503 + ], + "score": 0.94, + "content": "\\widehat { \\mathfrak { R } } _ { n } [ \\mathcal { F } ] \\leqslant \\widetilde { \\mathcal { O } } \\biggl ( \\frac { L \\widetilde { R } } { \\sqrt { n } } + \\frac { L ^ { 3 } \\widetilde { R } ^ { 4 / 3 } } { m ^ { 1 / 6 } } \\biggr ) .", + "type": "interline_equation", + "image_path": "ca4f9f978df345ed4f296eed97c8b7bb5bcec1cb514894939706e372617ba43b.jpg" + } + ] + } + ], + "index": 21.5, + "virtual_lines": [ + { + "bbox": [ + 239, + 473, + 372, + 488.0 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 239, + 488.0, + 372, + 503.0 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 507, + 413, + 520 + ], + "lines": [ + { + "bbox": [ + 105, + 505, + 414, + 522 + ], + "spans": [ + { + "bbox": [ + 105, + 505, + 322, + 522 + ], + "score": 1.0, + "content": "Further combining this bound with (C.7) and recaling", + "type": "text" + }, + { + "bbox": [ + 323, + 508, + 329, + 518 + ], + "score": 0.81, + "content": "\\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 505, + 414, + 522 + ], + "score": 1.0, + "content": "completes the proof.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "title", + "bbox": [ + 107, + 532, + 231, + 544 + ], + "lines": [ + { + "bbox": [ + 106, + 531, + 232, + 546 + ], + "spans": [ + { + "bbox": [ + 106, + 531, + 232, + 546 + ], + "score": 1.0, + "content": "C.3 PROOF OF LEMMA A.4", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 108, + 552, + 505, + 587 + ], + "lines": [ + { + "bbox": [ + 106, + 552, + 505, + 566 + ], + "spans": [ + { + "bbox": [ + 106, + 552, + 505, + 566 + ], + "score": 1.0, + "content": "Proof of Lemma A.4. Different from the proof of Lemma 5.1, online SGD only queries one data to", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 563, + 506, + 579 + ], + "spans": [ + { + "bbox": [ + 105, + 563, + 310, + 579 + ], + "score": 1.0, + "content": "update the model parameters in each iteration, i.e.,", + "type": "text" + }, + { + "bbox": [ + 311, + 564, + 441, + 577 + ], + "score": 0.91, + "content": "\\mathbf { W } ^ { i + 1 } = \\mathbf { W } ^ { i } - \\eta \\nabla L _ { i + 1 } \\big ( \\mathbf { W } ^ { ( i ) } \\big )", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 563, + 506, + 579 + ], + "score": 1.0, + "content": ". By this update", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 577, + 163, + 588 + ], + "spans": [ + { + "bbox": [ + 106, + 577, + 163, + 588 + ], + "score": 1.0, + "content": "rule, we have", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26 + }, + { + "type": "interline_equation", + "bbox": [ + 152, + 590, + 457, + 642 + ], + "lines": [ + { + "bbox": [ + 152, + 590, + 457, + 642 + ], + "spans": [ + { + "bbox": [ + 152, + 590, + 457, + 642 + ], + "score": 0.92, + "content": "\\begin{array} { r l } & { \\| { \\bf W } ^ { ( i ) } - { \\bf W } ^ { * } \\| _ { F } ^ { 2 } - \\| { \\bf W } ^ { ( i + 1 ) } - { \\bf W } ^ { * } \\| _ { F } ^ { 2 } } \\\\ & { \\qquad = 2 \\eta \\langle { \\bf W } ^ { ( i ) } - { \\bf W } ^ { * } , \\nabla { \\bf w } L _ { i + 1 } ( { \\bf W } ^ { ( i ) } ) \\rangle - \\eta ^ { 2 } \\displaystyle \\sum _ { l = 1 } ^ { L } \\| \\nabla { \\bf w } _ { l } L _ { i + 1 } ( { \\bf W } ^ { ( i ) } ) \\| _ { F } ^ { 2 } . } \\end{array}", + "type": "interline_equation", + "image_path": "fd3244e424ab0d0787d70af935a87f6bc8cc222df30c81f880b6e35c6c92f165.jpg" + } + ] + } + ], + "index": 29, + "virtual_lines": [ + { + "bbox": [ + 152, + 590, + 457, + 607.3333333333334 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 152, + 607.3333333333334, + 457, + 624.6666666666667 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 152, + 624.6666666666667, + 457, + 642.0000000000001 + ], + "spans": [], + "index": 30 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 645, + 400, + 658 + ], + "lines": [ + { + "bbox": [ + 106, + 645, + 401, + 659 + ], + "spans": [ + { + "bbox": [ + 106, + 645, + 401, + 659 + ], + "score": 1.0, + "content": "With exactly the same proof as (C.5) in the proof of Lemma 5.1, we have", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "interline_equation", + "bbox": [ + 114, + 663, + 470, + 680 + ], + "lines": [ + { + "bbox": [ + 114, + 663, + 470, + 680 + ], + "spans": [ + { + "bbox": [ + 114, + 663, + 470, + 680 + ], + "score": 0.9, + "content": "\\begin{array} { r } { \\langle \\mathbf { W } ^ { ( t ) } - \\mathbf { W } ^ { * } , \\nabla _ { \\mathbf { W } } L _ { i } ( \\mathbf { W } ^ { ( t ) } ) \\rangle \\geqslant ( 1 - 2 \\epsilon _ { \\mathrm { a p p } } ( \\tau ) ) \\ell \\big ( y _ { i } f _ { \\mathbf { W } ^ { ( t ) } } ( \\mathbf { x } _ { i } ) \\big ) - \\ell \\big ( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ^ { * } } ( \\mathbf { x } _ { i } ) \\big ) , } \\end{array}", + "type": "interline_equation", + "image_path": "24fd2ef9d93a86f32761bce2a64d2ca5df6a1f87aca744370c6ace2d709a86e5.jpg" + } + ] + } + ], + "index": 32, + "virtual_lines": [ + { + "bbox": [ + 114, + 663, + 470, + 680 + ], + "spans": [], + "index": 32 + } + ] + }, + { + "type": "text", + "bbox": [ + 109, + 684, + 429, + 697 + ], + "lines": [ + { + "bbox": [ + 106, + 684, + 428, + 698 + ], + "spans": [ + { + "bbox": [ + 106, + 684, + 133, + 698 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 133, + 685, + 204, + 696 + ], + "score": 0.92, + "content": "i = 0 , \\ldots , n ^ { \\prime } - 1", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 684, + 272, + 698 + ], + "score": 1.0, + "content": ". By the fact that", + "type": "text" + }, + { + "bbox": [ + 272, + 684, + 326, + 697 + ], + "score": 0.92, + "content": "- \\ell ^ { \\prime } ( \\cdot ) \\leqslant \\ell ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 684, + 344, + 698 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 345, + 684, + 389, + 697 + ], + "score": 0.92, + "content": "- \\ell ^ { \\prime } ( \\cdot ) \\leqslant 1", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 684, + 428, + 698 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33 + }, + { + "type": "interline_equation", + "bbox": [ + 154, + 702, + 456, + 735 + ], + "lines": [ + { + "bbox": [ + 154, + 702, + 456, + 735 + ], + "spans": [ + { + "bbox": [ + 154, + 702, + 456, + 735 + ], + "score": 0.94, + "content": "\\sum _ { l = 1 } ^ { L } \\| \\nabla _ { \\mathbf { W } _ { l } } L _ { i + 1 } ( \\mathbf { W } ^ { ( i ) } ) \\| _ { F } ^ { 2 } \\leqslant \\sum _ { l = 1 } ^ { L } \\ell \\big ( y _ { i + 1 } f _ { \\mathbf { W } _ { t } } ( \\mathbf { x } _ { i + 1 } ) \\big ) \\cdot \\| \\nabla _ { \\mathbf { W } _ { l } } f _ { \\mathbf { W } ^ { ( i ) } } \\big ( \\mathbf { x } _ { i + 1 } \\big ) \\| _ { F } ^ { 2 }", + "type": "interline_equation", + "image_path": "c9fd4ab6bfba4d4dcc6db267354a95c8bde0429902200bf8d633206d12c77e64.jpg" + } + ] + } + ], + "index": 35, + "virtual_lines": [ + { + "bbox": [ + 154, + 702, + 456, + 713.0 + ], + "spans": [], + "index": 34 + }, + { + "bbox": [ + 154, + 713.0, + 456, + 724.0 + ], + "spans": [], + "index": 35 + }, + { + "bbox": [ + 154, + 724.0, + 456, + 735.0 + ], + "spans": [], + "index": 36 + } + ] + } + ], + "page_idx": 19, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 26, + 293, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 312, + 761 + ], + "lines": [ + { + "bbox": [ + 298, + 750, + 313, + 763 + ], + "spans": [ + { + "bbox": [ + 298, + 750, + 313, + 763 + ], + "score": 1.0, + "content": "20", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 494, + 507, + 505, + 519 + ], + "lines": [ + { + "bbox": [ + 495, + 509, + 505, + 519 + ], + "spans": [ + { + "bbox": [ + 495, + 509, + 505, + 519 + ], + "score": 0.999, + "content": "□", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 81, + 461, + 95 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 463, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 132, + 97 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 80, + 164, + 95 + ], + "score": 0.93, + "content": "\\textstyle { \\widehat { \\mathfrak { R } } } _ { n } ( { \\mathcal { F } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 80, + 411, + 97 + ], + "score": 1.0, + "content": "is the empirical Rademacher complexity of the function class", + "type": "text" + }, + { + "bbox": [ + 412, + 83, + 421, + 92 + ], + "score": 0.8, + "content": "\\mathcal { F }", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 80, + 463, + 97 + ], + "score": 1.0, + "content": ". We have", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0, + "bbox_fs": [ + 105, + 80, + 463, + 97 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 99, + 500, + 151 + ], + "lines": [ + { + "bbox": [ + 111, + 99, + 500, + 151 + ], + "spans": [ + { + "bbox": [ + 111, + 99, + 500, + 151 + ], + "score": 0.79, + "content": "\\widehat { \\mathfrak { R } } _ { n } [ F ] \\leqslant \\underbrace { \\mathbb { E } _ { \\xi } \\Bigg \\{ \\underbrace { \\operatorname* { s u p } _ { \\mathbf { W } \\in \\mathcal { W } } \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } \\xi _ { i } \\big [ f _ { \\mathbf { W } } ( \\mathbf { x } _ { i } ) - F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } } ( \\mathbf { x } _ { i } ) \\big ] } _ { I _ { 1 } } \\Bigg \\} } _ { I _ { 1 } } + \\underbrace { \\mathbb { E } _ { \\xi } \\Bigg \\{ \\underbrace { \\operatorname* { s u p } _ { \\mathbf { W } \\in \\mathcal { W } } n } _ { \\mathbf { \\Sigma } _ { i = 1 } } \\sum _ { i = 1 } ^ { n } \\xi _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } } ( \\mathbf { x } _ { i } ) \\Bigg \\} } _ { I _ { 2 } } ,", + "type": "interline_equation", + "image_path": "07b5dea74a50aff80713e934fc63366bd015aff0c259e244f4425ef1a15befd2.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 111, + 99, + 500, + 116.33333333333333 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 111, + 116.33333333333333, + 500, + 133.66666666666666 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 111, + 133.66666666666666, + 500, + 151.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 165, + 506, + 191 + ], + "lines": [ + { + "bbox": [ + 105, + 164, + 506, + 180 + ], + "spans": [ + { + "bbox": [ + 105, + 164, + 132, + 180 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 132, + 166, + 365, + 180 + ], + "score": 0.86, + "content": "F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } } ( \\mathbf { x } ) = f _ { \\mathbf { W } ^ { ( 0 ) } } ( \\mathbf { x } ) + \\big \\langle \\nabla _ { \\mathbf { W } } f _ { \\mathbf { W } ^ { ( 0 ) } } ( \\mathbf { x } ) , \\mathbf { W } - \\mathbf { W } ^ { ( 0 ) } \\big \\rangle .", + "type": "inline_equation" + }, + { + "bbox": [ + 365, + 164, + 384, + 180 + ], + "score": 1.0, + "content": ". For", + "type": "text" + }, + { + "bbox": [ + 384, + 167, + 394, + 178 + ], + "score": 0.86, + "content": "I _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 394, + 164, + 506, + 180 + ], + "score": 1.0, + "content": ", by Lemma 4.1 in (Cao and", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 179, + 317, + 191 + ], + "spans": [ + { + "bbox": [ + 106, + 179, + 249, + 191 + ], + "score": 1.0, + "content": "Gu, 2019), with probability at least", + "type": "text" + }, + { + "bbox": [ + 249, + 180, + 281, + 191 + ], + "score": 0.9, + "content": "1 - \\delta / 2", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 179, + 317, + 191 + ], + "score": 1.0, + "content": "we have", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5, + "bbox_fs": [ + 105, + 164, + 506, + 191 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 165, + 196, + 445, + 218 + ], + "lines": [ + { + "bbox": [ + 165, + 196, + 445, + 218 + ], + "spans": [ + { + "bbox": [ + 165, + 196, + 445, + 218 + ], + "score": 0.89, + "content": "I _ { 1 } \\leqslant \\operatorname* { m a x } _ { i \\in [ n ] } \\big | f _ { \\mathbf { W } } ( \\pmb { x } _ { i } ) - F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } } ( \\pmb { x } _ { i } ) \\big | \\leqslant \\mathcal { O } \\big ( L ^ { 3 } \\widetilde { R } ^ { 4 / 3 } m ^ { - 1 / 6 } \\sqrt { \\log ( m ) } \\big ) ,", + "type": "interline_equation", + "image_path": "35093c29833f2453e8b97448b2854e7bd708118ff031ede285e29dc9efa5868a.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 165, + 196, + 445, + 218 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 223, + 492, + 239 + ], + "lines": [ + { + "bbox": [ + 104, + 222, + 494, + 240 + ], + "spans": [ + { + "bbox": [ + 104, + 222, + 122, + 240 + ], + "score": 1.0, + "content": "For", + "type": "text" + }, + { + "bbox": [ + 123, + 226, + 132, + 236 + ], + "score": 0.87, + "content": "I _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 133, + 222, + 174, + 240 + ], + "score": 1.0, + "content": ", note that", + "type": "text" + }, + { + "bbox": [ + 174, + 224, + 327, + 239 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\mathbb { E } _ { \\pmb { \\xi } } \\big [ \\operatorname* { s u p } _ { \\mathbf { W } \\in \\mathcal { W } } \\sum _ { i = 1 } ^ { n } \\xi _ { i } f _ { \\mathbf { W } ^ { ( 0 ) } } ( \\pmb { x } _ { i } ) \\big ] = 0 . } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 328, + 222, + 494, + 240 + ], + "score": 1.0, + "content": ". By Cauchy-Schwarz inequality we have", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7, + "bbox_fs": [ + 104, + 222, + 494, + 240 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 172, + 243, + 439, + 313 + ], + "lines": [ + { + "bbox": [ + 172, + 243, + 439, + 313 + ], + "spans": [ + { + "bbox": [ + 172, + 243, + 439, + 313 + ], + "score": 0.93, + "content": "\\begin{array} { l } { { \\displaystyle I _ { 2 } = \\frac { 1 } { n } \\sum _ { l = 1 } ^ { L } \\mathbb { E } _ { \\boldsymbol \\xi } \\{ \\operatorname* { s u p } _ { \\| \\widetilde { \\mathbf { U } } _ { l } \\| _ { F } \\leqslant \\widetilde { R } m ^ { - 1 / 2 } } \\mathrm { T r } [ \\widetilde { \\mathbf { W } } _ { l } ^ { \\top } \\sum _ { i = 1 } ^ { n } \\xi _ { i } \\nabla _ { \\mathbf { W } _ { l } } f _ { \\mathbf { W } ^ { ( 0 ) } } ( \\pmb x _ { i } ) ] \\} } } \\\\ { { \\displaystyle \\leqslant \\frac { \\widetilde { R } m ^ { - 1 / 2 } } { n } \\sum _ { l = 1 } ^ { L } \\mathbb { E } _ { \\boldsymbol \\xi } [ \\| \\sum _ { i = 1 } ^ { n } \\xi _ { i } \\nabla _ { \\mathbf { W } _ { l } } f _ { \\mathbf { W } ^ { ( 0 ) } } ( \\pmb x _ { i } ) \\| _ { F } ] . } } \\end{array}", + "type": "interline_equation", + "image_path": "aade36cb7e03d0bec0d40f77fd7243cfd1868a195eb1cb71be89a4e8c37f90f6.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 172, + 243, + 439, + 266.3333333333333 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 172, + 266.3333333333333, + 439, + 289.66666666666663 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 172, + 289.66666666666663, + 439, + 312.99999999999994 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 317, + 147, + 328 + ], + "lines": [ + { + "bbox": [ + 105, + 315, + 149, + 329 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 149, + 329 + ], + "score": 1.0, + "content": "Therefore", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11, + "bbox_fs": [ + 105, + 315, + 149, + 329 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 199, + 332, + 412, + 443 + ], + "lines": [ + { + "bbox": [ + 199, + 332, + 412, + 443 + ], + "spans": [ + { + "bbox": [ + 199, + 332, + 412, + 443 + ], + "score": 0.89, + "content": "\\begin{array} { r l } & { I _ { 2 } \\leqslant \\displaystyle \\frac { { \\widetilde R } m ^ { - 1 / 2 } } { n } \\sum _ { l = 1 } ^ { L } \\sqrt { \\mathbb { E } _ { \\xi } \\bigg [ \\bigg \\| \\displaystyle \\sum _ { i = 1 } ^ { n } \\xi _ { i } \\nabla _ { \\mathbf { W } _ { l } } f _ { \\mathbf { W } ^ { ( 0 ) } } ( { \\pmb x } _ { i } ) \\bigg \\| _ { F } ^ { 2 } \\bigg ] } } \\\\ & { \\quad = \\displaystyle \\frac { { \\widetilde R } m ^ { - 1 / 2 } } { n } \\sum _ { l = 1 } ^ { L } \\sqrt { \\displaystyle \\sum _ { i = 1 } ^ { n } \\left\\| \\nabla _ { \\mathbf { W } _ { l } } f _ { \\mathbf { W } ^ { ( 0 ) } } ( { \\pmb x } _ { i } ) \\right\\| _ { F } ^ { 2 } } } \\\\ & { \\quad \\leqslant \\mathcal { O } \\Big ( \\displaystyle \\frac { L \\cdot { \\widetilde R } } { \\sqrt { n } } \\Big ) , } \\end{array}", + "type": "interline_equation", + "image_path": "c82e5230b0323534a6dced02cd3e407d4a09455caf2845c9b6f1d23c67b57d8b.jpg" + } + ] + } + ], + "index": 15, + "virtual_lines": [ + { + "bbox": [ + 199, + 332, + 412, + 347.85714285714283 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 199, + 347.85714285714283, + 412, + 363.71428571428567 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 199, + 363.71428571428567, + 412, + 379.5714285714285 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 199, + 379.5714285714285, + 412, + 395.42857142857133 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 199, + 395.42857142857133, + 412, + 411.28571428571416 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 199, + 411.28571428571416, + 412, + 427.142857142857 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 199, + 427.142857142857, + 412, + 442.99999999999983 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 446, + 505, + 469 + ], + "lines": [ + { + "bbox": [ + 105, + 444, + 505, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 505, + 461 + ], + "score": 1.0, + "content": "where we apply Jensen’s inequality to obtain the first inequality, and the last inequality follows by", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 456, + 417, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 456, + 355, + 469 + ], + "score": 1.0, + "content": "Lemma B.3 in (Cao and Gu, 2019). Combining the bounds of", + "type": "text" + }, + { + "bbox": [ + 355, + 457, + 365, + 468 + ], + "score": 0.88, + "content": "I _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 365, + 456, + 383, + 469 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 383, + 457, + 393, + 468 + ], + "score": 0.87, + "content": "I _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 394, + 456, + 417, + 469 + ], + "score": 1.0, + "content": "gives", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5, + "bbox_fs": [ + 105, + 444, + 505, + 469 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 239, + 473, + 372, + 503 + ], + "lines": [ + { + "bbox": [ + 239, + 473, + 372, + 503 + ], + "spans": [ + { + "bbox": [ + 239, + 473, + 372, + 503 + ], + "score": 0.94, + "content": "\\widehat { \\mathfrak { R } } _ { n } [ \\mathcal { F } ] \\leqslant \\widetilde { \\mathcal { O } } \\biggl ( \\frac { L \\widetilde { R } } { \\sqrt { n } } + \\frac { L ^ { 3 } \\widetilde { R } ^ { 4 / 3 } } { m ^ { 1 / 6 } } \\biggr ) .", + "type": "interline_equation", + "image_path": "ca4f9f978df345ed4f296eed97c8b7bb5bcec1cb514894939706e372617ba43b.jpg" + } + ] + } + ], + "index": 21.5, + "virtual_lines": [ + { + "bbox": [ + 239, + 473, + 372, + 488.0 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 239, + 488.0, + 372, + 503.0 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 507, + 413, + 520 + ], + "lines": [ + { + "bbox": [ + 105, + 505, + 414, + 522 + ], + "spans": [ + { + "bbox": [ + 105, + 505, + 322, + 522 + ], + "score": 1.0, + "content": "Further combining this bound with (C.7) and recaling", + "type": "text" + }, + { + "bbox": [ + 323, + 508, + 329, + 518 + ], + "score": 0.81, + "content": "\\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 505, + 414, + 522 + ], + "score": 1.0, + "content": "completes the proof.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23, + "bbox_fs": [ + 105, + 505, + 414, + 522 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 532, + 231, + 544 + ], + "lines": [ + { + "bbox": [ + 106, + 531, + 232, + 546 + ], + "spans": [ + { + "bbox": [ + 106, + 531, + 232, + 546 + ], + "score": 1.0, + "content": "C.3 PROOF OF LEMMA A.4", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 108, + 552, + 505, + 587 + ], + "lines": [ + { + "bbox": [ + 106, + 552, + 505, + 566 + ], + "spans": [ + { + "bbox": [ + 106, + 552, + 505, + 566 + ], + "score": 1.0, + "content": "Proof of Lemma A.4. Different from the proof of Lemma 5.1, online SGD only queries one data to", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 563, + 506, + 579 + ], + "spans": [ + { + "bbox": [ + 105, + 563, + 310, + 579 + ], + "score": 1.0, + "content": "update the model parameters in each iteration, i.e.,", + "type": "text" + }, + { + "bbox": [ + 311, + 564, + 441, + 577 + ], + "score": 0.91, + "content": "\\mathbf { W } ^ { i + 1 } = \\mathbf { W } ^ { i } - \\eta \\nabla L _ { i + 1 } \\big ( \\mathbf { W } ^ { ( i ) } \\big )", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 563, + 506, + 579 + ], + "score": 1.0, + "content": ". By this update", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 577, + 163, + 588 + ], + "spans": [ + { + "bbox": [ + 106, + 577, + 163, + 588 + ], + "score": 1.0, + "content": "rule, we have", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26, + "bbox_fs": [ + 105, + 552, + 506, + 588 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 152, + 590, + 457, + 642 + ], + "lines": [ + { + "bbox": [ + 152, + 590, + 457, + 642 + ], + "spans": [ + { + "bbox": [ + 152, + 590, + 457, + 642 + ], + "score": 0.92, + "content": "\\begin{array} { r l } & { \\| { \\bf W } ^ { ( i ) } - { \\bf W } ^ { * } \\| _ { F } ^ { 2 } - \\| { \\bf W } ^ { ( i + 1 ) } - { \\bf W } ^ { * } \\| _ { F } ^ { 2 } } \\\\ & { \\qquad = 2 \\eta \\langle { \\bf W } ^ { ( i ) } - { \\bf W } ^ { * } , \\nabla { \\bf w } L _ { i + 1 } ( { \\bf W } ^ { ( i ) } ) \\rangle - \\eta ^ { 2 } \\displaystyle \\sum _ { l = 1 } ^ { L } \\| \\nabla { \\bf w } _ { l } L _ { i + 1 } ( { \\bf W } ^ { ( i ) } ) \\| _ { F } ^ { 2 } . } \\end{array}", + "type": "interline_equation", + "image_path": "fd3244e424ab0d0787d70af935a87f6bc8cc222df30c81f880b6e35c6c92f165.jpg" + } + ] + } + ], + "index": 29, + "virtual_lines": [ + { + "bbox": [ + 152, + 590, + 457, + 607.3333333333334 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 152, + 607.3333333333334, + 457, + 624.6666666666667 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 152, + 624.6666666666667, + 457, + 642.0000000000001 + ], + "spans": [], + "index": 30 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 645, + 400, + 658 + ], + "lines": [ + { + "bbox": [ + 106, + 645, + 401, + 659 + ], + "spans": [ + { + "bbox": [ + 106, + 645, + 401, + 659 + ], + "score": 1.0, + "content": "With exactly the same proof as (C.5) in the proof of Lemma 5.1, we have", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31, + "bbox_fs": [ + 106, + 645, + 401, + 659 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 114, + 663, + 470, + 680 + ], + "lines": [ + { + "bbox": [ + 114, + 663, + 470, + 680 + ], + "spans": [ + { + "bbox": [ + 114, + 663, + 470, + 680 + ], + "score": 0.9, + "content": "\\begin{array} { r } { \\langle \\mathbf { W } ^ { ( t ) } - \\mathbf { W } ^ { * } , \\nabla _ { \\mathbf { W } } L _ { i } ( \\mathbf { W } ^ { ( t ) } ) \\rangle \\geqslant ( 1 - 2 \\epsilon _ { \\mathrm { a p p } } ( \\tau ) ) \\ell \\big ( y _ { i } f _ { \\mathbf { W } ^ { ( t ) } } ( \\mathbf { x } _ { i } ) \\big ) - \\ell \\big ( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ^ { * } } ( \\mathbf { x } _ { i } ) \\big ) , } \\end{array}", + "type": "interline_equation", + "image_path": "24fd2ef9d93a86f32761bce2a64d2ca5df6a1f87aca744370c6ace2d709a86e5.jpg" + } + ] + } + ], + "index": 32, + "virtual_lines": [ + { + "bbox": [ + 114, + 663, + 470, + 680 + ], + "spans": [], + "index": 32 + } + ] + }, + { + "type": "text", + "bbox": [ + 109, + 684, + 429, + 697 + ], + "lines": [ + { + "bbox": [ + 106, + 684, + 428, + 698 + ], + "spans": [ + { + "bbox": [ + 106, + 684, + 133, + 698 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 133, + 685, + 204, + 696 + ], + "score": 0.92, + "content": "i = 0 , \\ldots , n ^ { \\prime } - 1", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 684, + 272, + 698 + ], + "score": 1.0, + "content": ". By the fact that", + "type": "text" + }, + { + "bbox": [ + 272, + 684, + 326, + 697 + ], + "score": 0.92, + "content": "- \\ell ^ { \\prime } ( \\cdot ) \\leqslant \\ell ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 684, + 344, + 698 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 345, + 684, + 389, + 697 + ], + "score": 0.92, + "content": "- \\ell ^ { \\prime } ( \\cdot ) \\leqslant 1", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 684, + 428, + 698 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33, + "bbox_fs": [ + 106, + 684, + 428, + 698 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 154, + 702, + 456, + 735 + ], + "lines": [ + { + "bbox": [ + 154, + 702, + 456, + 735 + ], + "spans": [ + { + "bbox": [ + 154, + 702, + 456, + 735 + ], + "score": 0.94, + "content": "\\sum _ { l = 1 } ^ { L } \\| \\nabla _ { \\mathbf { W } _ { l } } L _ { i + 1 } ( \\mathbf { W } ^ { ( i ) } ) \\| _ { F } ^ { 2 } \\leqslant \\sum _ { l = 1 } ^ { L } \\ell \\big ( y _ { i + 1 } f _ { \\mathbf { W } _ { t } } ( \\mathbf { x } _ { i + 1 } ) \\big ) \\cdot \\| \\nabla _ { \\mathbf { W } _ { l } } f _ { \\mathbf { W } ^ { ( i ) } } \\big ( \\mathbf { x } _ { i + 1 } \\big ) \\| _ { F } ^ { 2 }", + "type": "interline_equation", + "image_path": "c9fd4ab6bfba4d4dcc6db267354a95c8bde0429902200bf8d633206d12c77e64.jpg" + } + ] + } + ], + "index": 35, + "virtual_lines": [ + { + "bbox": [ + 154, + 702, + 456, + 713.0 + ], + "spans": [], + "index": 34 + }, + { + "bbox": [ + 154, + 713.0, + 456, + 724.0 + ], + "spans": [], + "index": 35 + }, + { + "bbox": [ + 154, + 724.0, + 456, + 735.0 + ], + "spans": [], + "index": 36 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "interline_equation", + "bbox": [ + 256, + 80, + 384, + 96 + ], + "lines": [ + { + "bbox": [ + 256, + 80, + 384, + 96 + ], + "spans": [ + { + "bbox": [ + 256, + 80, + 384, + 96 + ], + "score": 0.88, + "content": "\\leqslant \\mathcal { O } \\bigl ( L M ( \\tau ) ^ { 2 } \\bigr ) \\cdot L _ { i + 1 } \\bigl ( \\mathbf { W } ^ { ( i ) } \\bigr ) .", + "type": "interline_equation", + "image_path": "821bd0ed4013b0d64d6feb2696cee40dd54dde1d581a84a3f2879fc758105fe0.jpg" + } + ] + } + ], + "index": 0, + "virtual_lines": [ + { + "bbox": [ + 256, + 80, + 384, + 96 + ], + "spans": [], + "index": 0 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 100, + 305, + 113 + ], + "lines": [ + { + "bbox": [ + 106, + 99, + 305, + 114 + ], + "spans": [ + { + "bbox": [ + 106, + 99, + 305, + 114 + ], + "score": 1.0, + "content": "Then plugging (C.10) and (C.11) into (C.9) gives", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1 + }, + { + "type": "interline_equation", + "bbox": [ + 120, + 116, + 491, + 174 + ], + "lines": [ + { + "bbox": [ + 120, + 116, + 491, + 174 + ], + "spans": [ + { + "bbox": [ + 120, + 116, + 491, + 174 + ], + "score": 0.93, + "content": "\\begin{array} { r l } & { \\| \\mathbf { W } ^ { ( i ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } - \\| \\mathbf { W } ^ { ( i + 1 ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } } \\\\ & { \\quad \\geqslant \\big ( 2 - 4 \\epsilon _ { \\mathrm { a p p } } ( \\tau ) \\big ) \\eta L _ { i + 1 } ( \\mathbf { W } ^ { ( i ) } ) - 2 \\eta \\ell \\big ( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ^ { * } } ( \\mathbf { x } _ { i } ) \\big ) - \\mathcal { O } \\big ( \\eta ^ { 2 } L M ( \\tau ) ^ { 2 } \\big ) L _ { i + 1 } ( \\mathbf { W } ^ { ( i ) } ) } \\\\ & { \\quad \\geqslant \\big ( \\frac { 3 } { 2 } - 4 \\epsilon _ { \\mathrm { a p p } } ( \\tau ) \\big ) \\eta L _ { i + 1 } ( \\mathbf { W } ^ { ( i ) } ) - 2 \\eta \\ell \\big ( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ^ { * } } ( \\mathbf { x } _ { i } ) \\big ) , } \\end{array}", + "type": "interline_equation", + "image_path": "863c19d2b20ae140839984f20b7c9f326e3148b0db1ded794a7fc64dd1f39488.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 120, + 116, + 491, + 135.33333333333334 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 120, + 135.33333333333334, + 491, + 154.66666666666669 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 120, + 154.66666666666669, + 491, + 174.00000000000003 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 179, + 505, + 203 + ], + "lines": [ + { + "bbox": [ + 105, + 179, + 506, + 193 + ], + "spans": [ + { + "bbox": [ + 105, + 179, + 230, + 193 + ], + "score": 1.0, + "content": "where the last inequality is by", + "type": "text" + }, + { + "bbox": [ + 230, + 180, + 317, + 192 + ], + "score": 0.92, + "content": "\\eta = \\mathcal { O } ( L ^ { - 1 } M ( \\tau ) ^ { - 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 179, + 506, + 193 + ], + "score": 1.0, + "content": "and merging the third term on the second line", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 191, + 406, + 203 + ], + "spans": [ + { + "bbox": [ + 105, + 191, + 289, + 203 + ], + "score": 1.0, + "content": "into the first term. Taking telescope sum over", + "type": "text" + }, + { + "bbox": [ + 290, + 191, + 360, + 203 + ], + "score": 0.92, + "content": "i = 0 , \\ldots , n ^ { \\prime } - 1", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 191, + 406, + 203 + ], + "score": 1.0, + "content": ", we obtain", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5 + }, + { + "type": "interline_equation", + "bbox": [ + 160, + 208, + 450, + 331 + ], + "lines": [ + { + "bbox": [ + 160, + 208, + 450, + 331 + ], + "spans": [ + { + "bbox": [ + 160, + 208, + 450, + 331 + ], + "score": 0.95, + "content": "\\begin{array} { r l } & { \\| { \\mathbf { W } } ^ { ( 0 ) } - { \\mathbf { W } } ^ { * } \\| _ { F } ^ { 2 } - \\| { \\mathbf { W } } ^ { ( n ^ { \\prime } ) } - { \\mathbf { W } } ^ { * } \\| _ { F } ^ { 2 } } \\\\ & { \\quad \\geqslant \\Big ( \\frac { 3 } { 2 } - 4 \\epsilon _ { \\mathrm { a p p } } ( \\tau ) \\Big ) \\eta \\displaystyle \\sum _ { i = 1 } ^ { n ^ { \\prime } } L _ { i } ( { \\mathbf { W } } ^ { ( i - 1 ) } ) - 2 \\eta \\displaystyle \\sum _ { i = 1 } ^ { n ^ { \\prime } } \\ell \\big ( y _ { i } F _ { { \\mathbf { W } } ^ { ( 0 ) } , { \\mathbf { W } } ^ { * } } ( { \\mathbf { x } } _ { i } ) \\big ) . } \\\\ & { \\quad \\geqslant \\Big ( \\frac { 3 } { 2 } - 4 \\epsilon _ { \\mathrm { a p p } } ( \\tau ) \\Big ) \\eta \\displaystyle \\sum _ { i = 1 } ^ { n ^ { \\prime } } L _ { i } ( { \\mathbf { W } } ^ { ( i - 1 ) } ) - 2 \\eta \\displaystyle \\sum _ { i = 1 } ^ { n } \\ell \\big ( y _ { i } F _ { { \\mathbf { W } } ^ { ( 0 ) } , { \\mathbf { W } } ^ { * } } ( { \\mathbf { x } } _ { i } ) \\big ) . } \\\\ & { \\quad \\geqslant \\Big ( \\frac { 3 } { 2 } - 4 \\epsilon _ { \\mathrm { a p p } } ( \\tau ) \\Big ) \\eta \\displaystyle \\sum _ { i = 1 } ^ { n ^ { \\prime } } L _ { i } ( { \\mathbf { W } } ^ { ( i - 1 ) } ) - 2 n \\eta \\epsilon _ { \\mathrm { N T R } } . } \\end{array}", + "type": "interline_equation", + "image_path": "af70c215bfc34cbc0fa25912a3eb07245f55023c1f4cc93336d16599296fc9c3.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 160, + 208, + 450, + 249.0 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 160, + 249.0, + 450, + 290.0 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 160, + 290.0, + 450, + 331.0 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 334, + 200, + 346 + ], + "lines": [ + { + "bbox": [ + 106, + 333, + 200, + 347 + ], + "spans": [ + { + "bbox": [ + 106, + 333, + 200, + 347 + ], + "score": 1.0, + "content": "This finishes the proof.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "title", + "bbox": [ + 107, + 361, + 203, + 374 + ], + "lines": [ + { + "bbox": [ + 105, + 361, + 204, + 376 + ], + "spans": [ + { + "bbox": [ + 105, + 361, + 204, + 376 + ], + "score": 1.0, + "content": "D EXPERIMENTS", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 106, + 386, + 506, + 477 + ], + "lines": [ + { + "bbox": [ + 105, + 386, + 507, + 400 + ], + "spans": [ + { + "bbox": [ + 105, + 386, + 507, + 400 + ], + "score": 1.0, + "content": "In this section, we conduct some simple experiments to validate our theory. Since our pa-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 398, + 506, + 410 + ], + "spans": [ + { + "bbox": [ + 105, + 398, + 506, + 410 + ], + "score": 1.0, + "content": "per mainly focuses on binary classification, we use a subset of the original CIFAR10 dataset", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 408, + 507, + 422 + ], + "spans": [ + { + "bbox": [ + 105, + 408, + 507, + 422 + ], + "score": 1.0, + "content": "(Krizhevsky et al., 2009), which only has two classes of images. We train a 5-layer fully-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 420, + 505, + 432 + ], + "spans": [ + { + "bbox": [ + 105, + 420, + 485, + 432 + ], + "score": 1.0, + "content": "connected ReLU network on this binary classification dataset with different sample sizes", + "type": "text" + }, + { + "bbox": [ + 486, + 421, + 505, + 431 + ], + "score": 0.78, + "content": "( n \\in", + "type": "inline_equation" + } + ], + "index": 15 + }, + { + "bbox": [ + 107, + 430, + 506, + 443 + ], + "spans": [ + { + "bbox": [ + 107, + 430, + 275, + 443 + ], + "score": 0.62, + "content": "\\{ 1 0 0 , 2 0 0 , 5 0 0 , 1 0 0 0 , 2 0 0 0 , 5 0 0 0 , 1 0 0 0 0 \\} )", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 431, + 506, + 443 + ], + "score": 1.0, + "content": ", and plot the minimal neural network width that is required", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 442, + 503, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 442, + 378, + 457 + ], + "score": 1.0, + "content": "to achieve zero training error in Figure 1 (solid line). We also plot", + "type": "text" + }, + { + "bbox": [ + 378, + 442, + 503, + 455 + ], + "score": 0.56, + "content": "\\mathcal { O } ( n ) , \\mathcal { O } ( \\log ^ { 3 } ( n ) ) , \\mathcal { O } ( \\log ^ { 2 } ( n ) )", + "type": "inline_equation" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 454, + 505, + 466 + ], + "spans": [ + { + "bbox": [ + 106, + 455, + 123, + 466 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 454, + 167, + 466 + ], + "score": 0.92, + "content": "{ \\mathcal { O } } ( \\log ( n ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 455, + 505, + 466 + ], + "score": 1.0, + "content": "in dashed line for reference. It is evident that the required network width to achieve", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 465, + 488, + 479 + ], + "spans": [ + { + "bbox": [ + 105, + 465, + 332, + 479 + ], + "score": 1.0, + "content": "zero training error is polylogarithmic on the sample size", + "type": "text" + }, + { + "bbox": [ + 333, + 468, + 340, + 475 + ], + "score": 0.59, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 340, + 465, + 488, + 479 + ], + "score": 1.0, + "content": ", which is consistent with our theory.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 15.5 + }, + { + "type": "image", + "bbox": [ + 111, + 485, + 500, + 629 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 111, + 485, + 500, + 629 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 111, + 485, + 500, + 629 + ], + "spans": [ + { + "bbox": [ + 111, + 485, + 500, + 629 + ], + "score": 0.972, + "type": "image", + "image_path": "92caaedd995fdf47fc5e38c63323cf6b413b4fe1b294d08809e177d7baaa0c8b.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 111, + 485, + 500, + 533.0 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 111, + 533.0, + 500, + 581.0 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 111, + 581.0, + 500, + 629.0 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 635, + 505, + 669 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 636, + 505, + 648 + ], + "spans": [ + { + "bbox": [ + 106, + 636, + 505, + 648 + ], + "score": 1.0, + "content": "Figure 1: Minimum network width that is required to achieve zero training error with respect to", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 645, + 505, + 659 + ], + "spans": [ + { + "bbox": [ + 105, + 645, + 384, + 659 + ], + "score": 1.0, + "content": "the training sample size (blue solid line). The hidden constants in all", + "type": "text" + }, + { + "bbox": [ + 384, + 646, + 403, + 658 + ], + "score": 0.9, + "content": "O ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 404, + 645, + 505, + 659 + ], + "score": 1.0, + "content": "notations are adjusted to", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 658, + 340, + 670 + ], + "spans": [ + { + "bbox": [ + 106, + 658, + 340, + 670 + ], + "score": 1.0, + "content": "ensure their plots (dashed lines) start from the same point.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24 + } + ], + "index": 22.5 + } + ], + "page_idx": 20, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 26, + 293, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 293, + 39 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 293, + 39 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 494, + 334, + 505, + 345 + ], + "lines": [ + { + "bbox": [ + 495, + 336, + 505, + 346 + ], + "spans": [ + { + "bbox": [ + 495, + 336, + 505, + 346 + ], + "score": 0.999, + "content": "□", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 298, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 298, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 14 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "interline_equation", + "bbox": [ + 256, + 80, + 384, + 96 + ], + "lines": [ + { + "bbox": [ + 256, + 80, + 384, + 96 + ], + "spans": [ + { + "bbox": [ + 256, + 80, + 384, + 96 + ], + "score": 0.88, + "content": "\\leqslant \\mathcal { O } \\bigl ( L M ( \\tau ) ^ { 2 } \\bigr ) \\cdot L _ { i + 1 } \\bigl ( \\mathbf { W } ^ { ( i ) } \\bigr ) .", + "type": "interline_equation", + "image_path": "821bd0ed4013b0d64d6feb2696cee40dd54dde1d581a84a3f2879fc758105fe0.jpg" + } + ] + } + ], + "index": 0, + "virtual_lines": [ + { + "bbox": [ + 256, + 80, + 384, + 96 + ], + "spans": [], + "index": 0 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 100, + 305, + 113 + ], + "lines": [ + { + "bbox": [ + 106, + 99, + 305, + 114 + ], + "spans": [ + { + "bbox": [ + 106, + 99, + 305, + 114 + ], + "score": 1.0, + "content": "Then plugging (C.10) and (C.11) into (C.9) gives", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1, + "bbox_fs": [ + 106, + 99, + 305, + 114 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 120, + 116, + 491, + 174 + ], + "lines": [ + { + "bbox": [ + 120, + 116, + 491, + 174 + ], + "spans": [ + { + "bbox": [ + 120, + 116, + 491, + 174 + ], + "score": 0.93, + "content": "\\begin{array} { r l } & { \\| \\mathbf { W } ^ { ( i ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } - \\| \\mathbf { W } ^ { ( i + 1 ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } } \\\\ & { \\quad \\geqslant \\big ( 2 - 4 \\epsilon _ { \\mathrm { a p p } } ( \\tau ) \\big ) \\eta L _ { i + 1 } ( \\mathbf { W } ^ { ( i ) } ) - 2 \\eta \\ell \\big ( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ^ { * } } ( \\mathbf { x } _ { i } ) \\big ) - \\mathcal { O } \\big ( \\eta ^ { 2 } L M ( \\tau ) ^ { 2 } \\big ) L _ { i + 1 } ( \\mathbf { W } ^ { ( i ) } ) } \\\\ & { \\quad \\geqslant \\big ( \\frac { 3 } { 2 } - 4 \\epsilon _ { \\mathrm { a p p } } ( \\tau ) \\big ) \\eta L _ { i + 1 } ( \\mathbf { W } ^ { ( i ) } ) - 2 \\eta \\ell \\big ( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ^ { * } } ( \\mathbf { x } _ { i } ) \\big ) , } \\end{array}", + "type": "interline_equation", + "image_path": "863c19d2b20ae140839984f20b7c9f326e3148b0db1ded794a7fc64dd1f39488.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 120, + 116, + 491, + 135.33333333333334 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 120, + 135.33333333333334, + 491, + 154.66666666666669 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 120, + 154.66666666666669, + 491, + 174.00000000000003 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 179, + 505, + 203 + ], + "lines": [ + { + "bbox": [ + 105, + 179, + 506, + 193 + ], + "spans": [ + { + "bbox": [ + 105, + 179, + 230, + 193 + ], + "score": 1.0, + "content": "where the last inequality is by", + "type": "text" + }, + { + "bbox": [ + 230, + 180, + 317, + 192 + ], + "score": 0.92, + "content": "\\eta = \\mathcal { O } ( L ^ { - 1 } M ( \\tau ) ^ { - 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 179, + 506, + 193 + ], + "score": 1.0, + "content": "and merging the third term on the second line", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 191, + 406, + 203 + ], + "spans": [ + { + "bbox": [ + 105, + 191, + 289, + 203 + ], + "score": 1.0, + "content": "into the first term. Taking telescope sum over", + "type": "text" + }, + { + "bbox": [ + 290, + 191, + 360, + 203 + ], + "score": 0.92, + "content": "i = 0 , \\ldots , n ^ { \\prime } - 1", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 191, + 406, + 203 + ], + "score": 1.0, + "content": ", we obtain", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5, + "bbox_fs": [ + 105, + 179, + 506, + 203 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 160, + 208, + 450, + 331 + ], + "lines": [ + { + "bbox": [ + 160, + 208, + 450, + 331 + ], + "spans": [ + { + "bbox": [ + 160, + 208, + 450, + 331 + ], + "score": 0.95, + "content": "\\begin{array} { r l } & { \\| { \\mathbf { W } } ^ { ( 0 ) } - { \\mathbf { W } } ^ { * } \\| _ { F } ^ { 2 } - \\| { \\mathbf { W } } ^ { ( n ^ { \\prime } ) } - { \\mathbf { W } } ^ { * } \\| _ { F } ^ { 2 } } \\\\ & { \\quad \\geqslant \\Big ( \\frac { 3 } { 2 } - 4 \\epsilon _ { \\mathrm { a p p } } ( \\tau ) \\Big ) \\eta \\displaystyle \\sum _ { i = 1 } ^ { n ^ { \\prime } } L _ { i } ( { \\mathbf { W } } ^ { ( i - 1 ) } ) - 2 \\eta \\displaystyle \\sum _ { i = 1 } ^ { n ^ { \\prime } } \\ell \\big ( y _ { i } F _ { { \\mathbf { W } } ^ { ( 0 ) } , { \\mathbf { W } } ^ { * } } ( { \\mathbf { x } } _ { i } ) \\big ) . } \\\\ & { \\quad \\geqslant \\Big ( \\frac { 3 } { 2 } - 4 \\epsilon _ { \\mathrm { a p p } } ( \\tau ) \\Big ) \\eta \\displaystyle \\sum _ { i = 1 } ^ { n ^ { \\prime } } L _ { i } ( { \\mathbf { W } } ^ { ( i - 1 ) } ) - 2 \\eta \\displaystyle \\sum _ { i = 1 } ^ { n } \\ell \\big ( y _ { i } F _ { { \\mathbf { W } } ^ { ( 0 ) } , { \\mathbf { W } } ^ { * } } ( { \\mathbf { x } } _ { i } ) \\big ) . } \\\\ & { \\quad \\geqslant \\Big ( \\frac { 3 } { 2 } - 4 \\epsilon _ { \\mathrm { a p p } } ( \\tau ) \\Big ) \\eta \\displaystyle \\sum _ { i = 1 } ^ { n ^ { \\prime } } L _ { i } ( { \\mathbf { W } } ^ { ( i - 1 ) } ) - 2 n \\eta \\epsilon _ { \\mathrm { N T R } } . } \\end{array}", + "type": "interline_equation", + "image_path": "af70c215bfc34cbc0fa25912a3eb07245f55023c1f4cc93336d16599296fc9c3.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 160, + 208, + 450, + 249.0 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 160, + 249.0, + 450, + 290.0 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 160, + 290.0, + 450, + 331.0 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 334, + 200, + 346 + ], + "lines": [ + { + "bbox": [ + 106, + 333, + 200, + 347 + ], + "spans": [ + { + "bbox": [ + 106, + 333, + 200, + 347 + ], + "score": 1.0, + "content": "This finishes the proof.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10, + "bbox_fs": [ + 106, + 333, + 200, + 347 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 361, + 203, + 374 + ], + "lines": [ + { + "bbox": [ + 105, + 361, + 204, + 376 + ], + "spans": [ + { + "bbox": [ + 105, + 361, + 204, + 376 + ], + "score": 1.0, + "content": "D EXPERIMENTS", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 106, + 386, + 506, + 477 + ], + "lines": [ + { + "bbox": [ + 105, + 386, + 507, + 400 + ], + "spans": [ + { + "bbox": [ + 105, + 386, + 507, + 400 + ], + "score": 1.0, + "content": "In this section, we conduct some simple experiments to validate our theory. Since our pa-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 398, + 506, + 410 + ], + "spans": [ + { + "bbox": [ + 105, + 398, + 506, + 410 + ], + "score": 1.0, + "content": "per mainly focuses on binary classification, we use a subset of the original CIFAR10 dataset", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 408, + 507, + 422 + ], + "spans": [ + { + "bbox": [ + 105, + 408, + 507, + 422 + ], + "score": 1.0, + "content": "(Krizhevsky et al., 2009), which only has two classes of images. We train a 5-layer fully-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 420, + 505, + 432 + ], + "spans": [ + { + "bbox": [ + 105, + 420, + 485, + 432 + ], + "score": 1.0, + "content": "connected ReLU network on this binary classification dataset with different sample sizes", + "type": "text" + }, + { + "bbox": [ + 486, + 421, + 505, + 431 + ], + "score": 0.78, + "content": "( n \\in", + "type": "inline_equation" + } + ], + "index": 15 + }, + { + "bbox": [ + 107, + 430, + 506, + 443 + ], + "spans": [ + { + "bbox": [ + 107, + 430, + 275, + 443 + ], + "score": 0.62, + "content": "\\{ 1 0 0 , 2 0 0 , 5 0 0 , 1 0 0 0 , 2 0 0 0 , 5 0 0 0 , 1 0 0 0 0 \\} )", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 431, + 506, + 443 + ], + "score": 1.0, + "content": ", and plot the minimal neural network width that is required", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 442, + 503, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 442, + 378, + 457 + ], + "score": 1.0, + "content": "to achieve zero training error in Figure 1 (solid line). We also plot", + "type": "text" + }, + { + "bbox": [ + 378, + 442, + 503, + 455 + ], + "score": 0.56, + "content": "\\mathcal { O } ( n ) , \\mathcal { O } ( \\log ^ { 3 } ( n ) ) , \\mathcal { O } ( \\log ^ { 2 } ( n ) )", + "type": "inline_equation" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 454, + 505, + 466 + ], + "spans": [ + { + "bbox": [ + 106, + 455, + 123, + 466 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 454, + 167, + 466 + ], + "score": 0.92, + "content": "{ \\mathcal { O } } ( \\log ( n ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 455, + 505, + 466 + ], + "score": 1.0, + "content": "in dashed line for reference. It is evident that the required network width to achieve", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 465, + 488, + 479 + ], + "spans": [ + { + "bbox": [ + 105, + 465, + 332, + 479 + ], + "score": 1.0, + "content": "zero training error is polylogarithmic on the sample size", + "type": "text" + }, + { + "bbox": [ + 333, + 468, + 340, + 475 + ], + "score": 0.59, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 340, + 465, + 488, + 479 + ], + "score": 1.0, + "content": ", which is consistent with our theory.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 15.5, + "bbox_fs": [ + 105, + 386, + 507, + 479 + ] + }, + { + "type": "image", + "bbox": [ + 111, + 485, + 500, + 629 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 111, + 485, + 500, + 629 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 111, + 485, + 500, + 629 + ], + "spans": [ + { + "bbox": [ + 111, + 485, + 500, + 629 + ], + "score": 0.972, + "type": "image", + "image_path": "92caaedd995fdf47fc5e38c63323cf6b413b4fe1b294d08809e177d7baaa0c8b.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 111, + 485, + 500, + 533.0 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 111, + 533.0, + 500, + 581.0 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 111, + 581.0, + 500, + 629.0 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 635, + 505, + 669 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 636, + 505, + 648 + ], + "spans": [ + { + "bbox": [ + 106, + 636, + 505, + 648 + ], + "score": 1.0, + "content": "Figure 1: Minimum network width that is required to achieve zero training error with respect to", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 645, + 505, + 659 + ], + "spans": [ + { + "bbox": [ + 105, + 645, + 384, + 659 + ], + "score": 1.0, + "content": "the training sample size (blue solid line). The hidden constants in all", + "type": "text" + }, + { + "bbox": [ + 384, + 646, + 403, + 658 + ], + "score": 0.9, + "content": "O ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 404, + 645, + 505, + 659 + ], + "score": 1.0, + "content": "notations are adjusted to", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 658, + 340, + 670 + ], + "spans": [ + { + "bbox": [ + 106, + 658, + 340, + 670 + ], + "score": 1.0, + "content": "ensure their plots (dashed lines) start from the same point.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24 + } + ], + "index": 22.5 + } + ] + } + ], + "_backend": "pipeline", + "_version_name": "2.2.2" +} \ No newline at end of file diff --git a/parse/train/fgd7we_uZa6/fgd7we_uZa6_model.json b/parse/train/fgd7we_uZa6/fgd7we_uZa6_model.json new file mode 100644 index 0000000000000000000000000000000000000000..93043cb018c1ab6e8d22a8bba631c2c1a31726b8 --- /dev/null +++ b/parse/train/fgd7we_uZa6/fgd7we_uZa6_model.json @@ -0,0 +1,36277 @@ +[ + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 398, + 618, + 1302, + 618, + 1302, + 1074, + 398, + 1074 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 1454, + 1405, + 1454, + 1405, + 1911, + 298, + 1911 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 1193, + 1404, + 1193, + 1404, + 1438, + 298, + 1438 + ], + "score": 0.979 + }, + { + "category_id": 0, + "poly": [ + 300, + 219, + 1405, + 219, + 1405, + 324, + 300, + 324 + ], + "score": 0.962 + }, + { + "category_id": 1, + "poly": [ + 301, + 1928, + 1401, + 1928, + 1401, + 1989, + 301, + 1989 + ], + "score": 0.928 + }, + { + "category_id": 1, + "poly": [ + 316, + 372, + 1121, + 372, + 1121, + 470, + 316, + 470 + ], + "score": 0.908 + }, + { + "category_id": 0, + "poly": [ + 302, + 1125, + 573, + 1125, + 573, + 1160, + 302, + 1160 + ], + "score": 0.891 + }, + { + "category_id": 2, + "poly": [ + 334, + 2006, + 535, + 2006, + 535, + 2033, + 334, + 2033 + ], + "score": 0.889 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 813, + 75, + 813, + 104, + 300, + 104 + ], + "score": 0.881 + }, + { + "category_id": 0, + "poly": [ + 773, + 552, + 926, + 552, + 926, + 585, + 773, + 585 + ], + "score": 0.872 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 856, + 2088, + 856, + 2112, + 840, + 2112 + ], + "score": 0.735 + }, + { + "category_id": 13, + "poly": [ + 461, + 706, + 504, + 706, + 504, + 736, + 461, + 736 + ], + "score": 0.89, + "latex": "\\epsilon ^ { - 1 }" + }, + { + "category_id": 13, + "poly": [ + 1110, + 981, + 1153, + 981, + 1153, + 1010, + 1110, + 1010 + ], + "score": 0.89, + "latex": "\\epsilon ^ { - \\bar { 1 } }" + }, + { + "category_id": 13, + "poly": [ + 973, + 682, + 994, + 682, + 994, + 706, + 973, + 706 + ], + "score": 0.73, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 1036, + 986, + 1057, + 986, + 1057, + 1009, + 1036, + 1009 + ], + "score": 0.73, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 961, + 373, + 1014, + 373, + 1014, + 406, + 961, + 406 + ], + "score": 0.59, + "latex": "\\mathbf { G u } ^ { \\dagger }" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 219.0, + 1411.0, + 219.0, + 1411.0, + 271.0, + 295.0, + 271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 274.0, + 1191.0, + 274.0, + 1191.0, + 327.0, + 295.0, + 327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1122.0, + 579.0, + 1122.0, + 579.0, + 1169.0, + 294.0, + 1169.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 2001.0, + 541.0, + 2001.0, + 541.0, + 2038.0, + 329.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 72.0, + 815.0, + 72.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 769.0, + 551.0, + 932.0, + 551.0, + 932.0, + 588.0, + 769.0, + 588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2087.0, + 859.0, + 2087.0, + 859.0, + 2117.0, + 839.0, + 2117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 616.0, + 1306.0, + 616.0, + 1306.0, + 651.0, + 394.0, + 651.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 391.0, + 647.0, + 1306.0, + 647.0, + 1306.0, + 681.0, + 391.0, + 681.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 676.0, + 972.0, + 676.0, + 972.0, + 714.0, + 393.0, + 714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 995.0, + 676.0, + 1307.0, + 676.0, + 1307.0, + 714.0, + 995.0, + 714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 391.0, + 705.0, + 460.0, + 705.0, + 460.0, + 745.0, + 391.0, + 745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 505.0, + 705.0, + 1305.0, + 705.0, + 1305.0, + 745.0, + 505.0, + 745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 739.0, + 1307.0, + 739.0, + 1307.0, + 773.0, + 393.0, + 773.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 768.0, + 1306.0, + 768.0, + 1306.0, + 803.0, + 393.0, + 803.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 799.0, + 1306.0, + 799.0, + 1306.0, + 834.0, + 393.0, + 834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 830.0, + 1307.0, + 830.0, + 1307.0, + 864.0, + 394.0, + 864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 860.0, + 1307.0, + 860.0, + 1307.0, + 895.0, + 394.0, + 895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 891.0, + 1307.0, + 891.0, + 1307.0, + 926.0, + 394.0, + 926.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 920.0, + 1307.0, + 920.0, + 1307.0, + 957.0, + 393.0, + 957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 953.0, + 1304.0, + 953.0, + 1304.0, + 985.0, + 395.0, + 985.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 981.0, + 1035.0, + 981.0, + 1035.0, + 1016.0, + 392.0, + 1016.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1058.0, + 981.0, + 1109.0, + 981.0, + 1109.0, + 1016.0, + 1058.0, + 1016.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1154.0, + 981.0, + 1307.0, + 981.0, + 1307.0, + 1016.0, + 1154.0, + 1016.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1013.0, + 1306.0, + 1013.0, + 1306.0, + 1046.0, + 392.0, + 1046.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1043.0, + 497.0, + 1043.0, + 497.0, + 1080.0, + 392.0, + 1080.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1452.0, + 1403.0, + 1452.0, + 1403.0, + 1487.0, + 295.0, + 1487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1485.0, + 1405.0, + 1485.0, + 1405.0, + 1520.0, + 295.0, + 1520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1513.0, + 1405.0, + 1513.0, + 1405.0, + 1548.0, + 293.0, + 1548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1546.0, + 1407.0, + 1546.0, + 1407.0, + 1581.0, + 295.0, + 1581.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1574.0, + 1406.0, + 1574.0, + 1406.0, + 1609.0, + 293.0, + 1609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1607.0, + 1407.0, + 1607.0, + 1407.0, + 1641.0, + 295.0, + 1641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1636.0, + 1407.0, + 1636.0, + 1407.0, + 1671.0, + 295.0, + 1671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1669.0, + 1406.0, + 1669.0, + 1406.0, + 1700.0, + 296.0, + 1700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1696.0, + 1410.0, + 1696.0, + 1410.0, + 1733.0, + 292.0, + 1733.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1726.0, + 1409.0, + 1726.0, + 1409.0, + 1763.0, + 293.0, + 1763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1758.0, + 1405.0, + 1758.0, + 1405.0, + 1793.0, + 295.0, + 1793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1788.0, + 1406.0, + 1788.0, + 1406.0, + 1822.0, + 293.0, + 1822.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1818.0, + 1406.0, + 1818.0, + 1406.0, + 1854.0, + 293.0, + 1854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1848.0, + 1405.0, + 1848.0, + 1405.0, + 1885.0, + 293.0, + 1885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1883.0, + 973.0, + 1883.0, + 973.0, + 1914.0, + 296.0, + 1914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1192.0, + 1405.0, + 1192.0, + 1405.0, + 1229.0, + 293.0, + 1229.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1221.0, + 1405.0, + 1221.0, + 1405.0, + 1262.0, + 293.0, + 1262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1257.0, + 1402.0, + 1257.0, + 1402.0, + 1287.0, + 296.0, + 1287.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1286.0, + 1402.0, + 1286.0, + 1402.0, + 1319.0, + 294.0, + 1319.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1314.0, + 1404.0, + 1314.0, + 1404.0, + 1350.0, + 293.0, + 1350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1342.0, + 1405.0, + 1342.0, + 1405.0, + 1384.0, + 292.0, + 1384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1378.0, + 1405.0, + 1378.0, + 1405.0, + 1411.0, + 294.0, + 1411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1403.0, + 953.0, + 1403.0, + 953.0, + 1445.0, + 292.0, + 1445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1927.0, + 1403.0, + 1927.0, + 1403.0, + 1962.0, + 297.0, + 1962.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1957.0, + 1405.0, + 1957.0, + 1405.0, + 1992.0, + 296.0, + 1992.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 370.0, + 960.0, + 370.0, + 960.0, + 412.0, + 316.0, + 412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 314.0, + 407.0, + 1122.0, + 407.0, + 1122.0, + 445.0, + 314.0, + 445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 442.0, + 947.0, + 442.0, + 947.0, + 474.0, + 317.0, + 474.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 0, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 230, + 1405, + 230, + 1405, + 566, + 298, + 566 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 582, + 1404, + 582, + 1404, + 795, + 298, + 795 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 297, + 1864, + 1404, + 1864, + 1404, + 2039, + 297, + 2039 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 298, + 1718, + 1403, + 1718, + 1403, + 1844, + 298, + 1844 + ], + "score": 0.97 + }, + { + "category_id": 1, + "poly": [ + 298, + 1580, + 1405, + 1580, + 1405, + 1705, + 298, + 1705 + ], + "score": 0.969 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 812, + 76, + 812, + 104, + 300, + 104 + ], + "score": 0.895 + }, + { + "category_id": 1, + "poly": [ + 294, + 828, + 1406, + 828, + 1406, + 1549, + 294, + 1549 + ], + "score": 0.888 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.717 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.196 + }, + { + "category_id": 13, + "poly": [ + 974, + 1322, + 1096, + 1322, + 1096, + 1361, + 974, + 1361 + ], + "score": 0.95, + "latex": "R = \\widetilde { \\mathcal { O } } ( 1 )" + }, + { + "category_id": 13, + "poly": [ + 1039, + 1809, + 1306, + 1809, + 1306, + 1849, + 1039, + 1849 + ], + "score": 0.94, + "latex": "\\begin{array} { r } { \\langle { \\bf X } , { \\bf Y } \\rangle = \\sum _ { i , j } { \\bf X } _ { i j } \\mathbf { \\bar { Y } } _ { i j } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1314, + 1103, + 1400, + 1103, + 1400, + 1142, + 1314, + 1142 + ], + "score": 0.93, + "latex": "\\tilde { \\mathcal { O } } ( \\epsilon ^ { - 2 } )" + }, + { + "category_id": 13, + "poly": [ + 634, + 2001, + 878, + 2001, + 878, + 2039, + 634, + 2039 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { \\| \\mathbf { A } \\| _ { F } ^ { 2 } = \\sum _ { i = 1 } ^ { n } \\| \\mathbf { A } _ { i } \\| _ { F } ^ { 2 } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1226, + 1037, + 1396, + 1037, + 1396, + 1076, + 1226, + 1076 + ], + "score": 0.93, + "latex": "m \\in ( \\widetilde { \\Omega } ( 1 ) , \\infty )" + }, + { + "category_id": 13, + "poly": [ + 1128, + 1387, + 1250, + 1387, + 1250, + 1427, + 1128, + 1427 + ], + "score": 0.93, + "latex": "\\bar { m } = \\widetilde { \\Omega } ( 1 )" + }, + { + "category_id": 13, + "poly": [ + 609, + 1904, + 740, + 1904, + 740, + 1938, + 609, + 1938 + ], + "score": 0.92, + "latex": "\\nabla _ { \\mathbf { W } _ { l } } f ( \\mathbf { W } )" + }, + { + "category_id": 13, + "poly": [ + 297, + 2002, + 583, + 2002, + 583, + 2038, + 297, + 2038 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { \\langle \\mathbf { A } , \\mathbf { B } \\rangle = \\sum _ { i = 1 } ^ { n } \\langle \\mathbf { A } _ { i } , \\mathbf { B } _ { i } \\rangle } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 297, + 1899, + 451, + 1899, + 451, + 1939, + 297, + 1939 + ], + "score": 0.92, + "latex": "\\otimes _ { l = 1 } ^ { L } \\mathbb { R } ^ { m _ { l } \\times m _ { l } ^ { \\prime } }" + }, + { + "category_id": 13, + "poly": [ + 326, + 1139, + 413, + 1139, + 413, + 1179, + 326, + 1179 + ], + "score": 0.92, + "latex": "\\tilde { \\mathcal { O } } ( \\epsilon ^ { - 1 } )" + }, + { + "category_id": 13, + "poly": [ + 1270, + 1868, + 1343, + 1868, + 1343, + 1902, + 1270, + 1902 + ], + "score": 0.92, + "latex": "f ( \\mathbf { W } )" + }, + { + "category_id": 13, + "poly": [ + 1026, + 1750, + 1093, + 1750, + 1093, + 1782, + 1026, + 1782 + ], + "score": 0.92, + "latex": "\\| \\mathbf { X } \\| _ { F }" + }, + { + "category_id": 13, + "poly": [ + 648, + 1862, + 1093, + 1862, + 1093, + 1903, + 648, + 1903 + ], + "score": 0.91, + "latex": "\\mathbf { W } = \\left\\{ \\mathbf { W } _ { 1 } , \\cdots , \\mathbf { W } _ { L } \\right\\} \\in \\bigotimes _ { l = 1 } ^ { L } \\mathbb { R } ^ { m _ { l } \\times m _ { l } ^ { \\prime } }" + }, + { + "category_id": 13, + "poly": [ + 834, + 1781, + 881, + 1781, + 881, + 1814, + 834, + 1814 + ], + "score": 0.91, + "latex": "\\mathbf { X } _ { i j }" + }, + { + "category_id": 13, + "poly": [ + 910, + 1750, + 972, + 1750, + 972, + 1783, + 910, + 1783 + ], + "score": 0.91, + "latex": "\\lVert \\mathbf { X } \\rVert _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1346, + 1719, + 1401, + 1719, + 1401, + 1753, + 1346, + 1753 + ], + "score": 0.91, + "latex": "\\| \\mathbf { x } \\| _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1175, + 1716, + 1257, + 1716, + 1257, + 1748, + 1175, + 1748 + ], + "score": 0.9, + "latex": "\\mathbf { x } \\in \\mathbb { R } ^ { d }" + }, + { + "category_id": 13, + "poly": [ + 811, + 1719, + 1020, + 1719, + 1020, + 1750, + 811, + 1750 + ], + "score": 0.9, + "latex": "a \\wedge b = \\operatorname* { m i n } \\{ a , b \\}" + }, + { + "category_id": 13, + "poly": [ + 1036, + 1974, + 1266, + 1974, + 1266, + 2006, + 1036, + 2006 + ], + "score": 0.9, + "latex": "\\mathbf { B } = \\{ \\mathbf { B } _ { 1 } , \\cdots , \\mathbf { B } _ { n } \\}" + }, + { + "category_id": 13, + "poly": [ + 987, + 1905, + 1059, + 1905, + 1059, + 1937, + 987, + 1937 + ], + "score": 0.9, + "latex": "f ( \\mathbf { W } )" + }, + { + "category_id": 13, + "poly": [ + 297, + 1937, + 651, + 1937, + 651, + 1973, + 297, + 1973 + ], + "score": 0.9, + "latex": "\\nabla _ { \\mathbf { W } } f ( \\mathbf { W } ) = \\{ \\nabla _ { \\mathbf { W } _ { l } } f ( \\mathbf { W } ) \\} _ { l = 1 } ^ { L }" + }, + { + "category_id": 13, + "poly": [ + 779, + 260, + 822, + 260, + 822, + 290, + 779, + 290 + ], + "score": 0.9, + "latex": "\\epsilon ^ { - 1 }" + }, + { + "category_id": 13, + "poly": [ + 1244, + 891, + 1400, + 891, + 1400, + 923, + 1244, + 923 + ], + "score": 0.9, + "latex": "m = { \\mathrm { p o l y } } ( R )" + }, + { + "category_id": 13, + "poly": [ + 845, + 1938, + 1399, + 1938, + 1399, + 1974, + 845, + 1974 + ], + "score": 0.88, + "latex": "\\begin{array} { r } { \\mathbf { \\Theta } \\mathcal { B } ( \\mathbf { W } , \\tau ) = \\left\\{ \\mathbf { W } ^ { \\prime } : \\operatorname* { m a x } _ { l \\in [ L ] } \\| \\mathbf { W } _ { l } ^ { \\prime } - \\mathbf { W } _ { l } \\| _ { F } \\leqslant \\tau \\right\\} } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1231, + 1905, + 1275, + 1905, + 1275, + 1935, + 1231, + 1935 + ], + "score": 0.88, + "latex": "\\mathbf { W } _ { l }" + }, + { + "category_id": 13, + "poly": [ + 338, + 1975, + 414, + 1975, + 414, + 2001, + 338, + 2001 + ], + "score": 0.86, + "latex": "\\tau \\geqslant 0" + }, + { + "category_id": 13, + "poly": [ + 786, + 1974, + 1021, + 1974, + 1021, + 2004, + 786, + 2004 + ], + "score": 0.84, + "latex": "\\mathbf { A } = \\left\\{ \\mathbf { A } _ { 1 } , \\cdots , \\mathbf { A } _ { n } \\right\\}" + }, + { + "category_id": 13, + "poly": [ + 1262, + 1782, + 1278, + 1782, + 1278, + 1811, + 1262, + 1811 + ], + "score": 0.82, + "latex": "j" + }, + { + "category_id": 13, + "poly": [ + 1076, + 923, + 1101, + 923, + 1101, + 949, + 1076, + 949 + ], + "score": 0.8, + "latex": "R" + }, + { + "category_id": 13, + "poly": [ + 1142, + 1671, + 1233, + 1671, + 1233, + 1706, + 1142, + 1706 + ], + "score": 0.79, + "latex": "( n , \\epsilon ^ { - 1 } )" + }, + { + "category_id": 13, + "poly": [ + 1118, + 1782, + 1131, + 1782, + 1131, + 1807, + 1118, + 1807 + ], + "score": 0.77, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 594, + 1726, + 612, + 1726, + 612, + 1747, + 594, + 1747 + ], + "score": 0.73, + "latex": "a" + }, + { + "category_id": 13, + "poly": [ + 598, + 1113, + 626, + 1113, + 626, + 1136, + 598, + 1136 + ], + "score": 0.72, + "latex": "m" + }, + { + "category_id": 13, + "poly": [ + 1020, + 1783, + 1047, + 1783, + 1047, + 1807, + 1020, + 1807 + ], + "score": 0.72, + "latex": "\\mathbf { X }" + }, + { + "category_id": 13, + "poly": [ + 663, + 1721, + 678, + 1721, + 678, + 1748, + 663, + 1748 + ], + "score": 0.71, + "latex": "b" + }, + { + "category_id": 13, + "poly": [ + 351, + 267, + 372, + 267, + 372, + 289, + 351, + 289 + ], + "score": 0.68, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 1024, + 1114, + 1044, + 1114, + 1044, + 1136, + 1024, + 1136 + ], + "score": 0.68, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 786, + 1751, + 813, + 1751, + 813, + 1777, + 786, + 1777 + ], + "score": 0.65, + "latex": "\\mathbf { X }" + }, + { + "category_id": 13, + "poly": [ + 811, + 1431, + 826, + 1431, + 826, + 1452, + 811, + 1452 + ], + "score": 0.65, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 1014, + 1430, + 1034, + 1430, + 1034, + 1452, + 1014, + 1452 + ], + "score": 0.64, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 598, + 1811, + 626, + 1811, + 626, + 1838, + 598, + 1838 + ], + "score": 0.62, + "latex": "\\mathbf { Y }" + }, + { + "category_id": 13, + "poly": [ + 520, + 1811, + 547, + 1811, + 547, + 1838, + 520, + 1838 + ], + "score": 0.47, + "latex": "\\mathbf { X }" + }, + { + "category_id": 13, + "poly": [ + 503, + 1364, + 518, + 1364, + 518, + 1386, + 503, + 1386 + ], + "score": 0.35, + "latex": "\\epsilon" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 815.0, + 73.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2120.0, + 838.0, + 2120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2120.0, + 838.0, + 2120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 231.0, + 1403.0, + 231.0, + 1403.0, + 265.0, + 295.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 257.0, + 350.0, + 257.0, + 350.0, + 298.0, + 292.0, + 298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 373.0, + 257.0, + 778.0, + 257.0, + 778.0, + 298.0, + 373.0, + 298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 823.0, + 257.0, + 1406.0, + 257.0, + 1406.0, + 298.0, + 823.0, + 298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 290.0, + 1407.0, + 290.0, + 1407.0, + 327.0, + 292.0, + 327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 320.0, + 1406.0, + 320.0, + 1406.0, + 357.0, + 291.0, + 357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 350.0, + 1408.0, + 350.0, + 1408.0, + 389.0, + 292.0, + 389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 381.0, + 1405.0, + 381.0, + 1405.0, + 418.0, + 293.0, + 418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 414.0, + 1403.0, + 414.0, + 1403.0, + 449.0, + 295.0, + 449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 444.0, + 1405.0, + 444.0, + 1405.0, + 479.0, + 295.0, + 479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 475.0, + 1405.0, + 475.0, + 1405.0, + 509.0, + 295.0, + 509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 505.0, + 1407.0, + 505.0, + 1407.0, + 539.0, + 293.0, + 539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 535.0, + 877.0, + 535.0, + 877.0, + 570.0, + 295.0, + 570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 582.0, + 1406.0, + 582.0, + 1406.0, + 616.0, + 294.0, + 616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 611.0, + 1405.0, + 611.0, + 1405.0, + 649.0, + 293.0, + 649.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 643.0, + 1405.0, + 643.0, + 1405.0, + 677.0, + 294.0, + 677.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 674.0, + 1405.0, + 674.0, + 1405.0, + 708.0, + 293.0, + 708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 702.0, + 1406.0, + 702.0, + 1406.0, + 740.0, + 293.0, + 740.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 733.0, + 1409.0, + 733.0, + 1409.0, + 770.0, + 293.0, + 770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 766.0, + 789.0, + 766.0, + 789.0, + 796.0, + 296.0, + 796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1857.0, + 647.0, + 1857.0, + 647.0, + 1906.0, + 291.0, + 1906.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1094.0, + 1857.0, + 1269.0, + 1857.0, + 1269.0, + 1906.0, + 1094.0, + 1906.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1344.0, + 1857.0, + 1408.0, + 1857.0, + 1408.0, + 1906.0, + 1344.0, + 1906.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1896.0, + 296.0, + 1896.0, + 296.0, + 1943.0, + 292.0, + 1943.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 452.0, + 1896.0, + 608.0, + 1896.0, + 608.0, + 1943.0, + 452.0, + 1943.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 741.0, + 1896.0, + 986.0, + 1896.0, + 986.0, + 1943.0, + 741.0, + 1943.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1060.0, + 1896.0, + 1230.0, + 1896.0, + 1230.0, + 1943.0, + 1060.0, + 1943.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1276.0, + 1896.0, + 1407.0, + 1896.0, + 1407.0, + 1943.0, + 1276.0, + 1943.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1933.0, + 296.0, + 1933.0, + 296.0, + 1979.0, + 292.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 652.0, + 1933.0, + 844.0, + 1933.0, + 844.0, + 1979.0, + 652.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1400.0, + 1933.0, + 1404.0, + 1933.0, + 1404.0, + 1979.0, + 1400.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1967.0, + 337.0, + 1967.0, + 337.0, + 2008.0, + 292.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 415.0, + 1967.0, + 785.0, + 1967.0, + 785.0, + 2008.0, + 415.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1022.0, + 1967.0, + 1035.0, + 1967.0, + 1035.0, + 2008.0, + 1022.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1267.0, + 1967.0, + 1405.0, + 1967.0, + 1405.0, + 2008.0, + 1267.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 584.0, + 1997.0, + 633.0, + 1997.0, + 633.0, + 2044.0, + 584.0, + 2044.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 879.0, + 1997.0, + 893.0, + 1997.0, + 893.0, + 2044.0, + 879.0, + 2044.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1712.0, + 593.0, + 1712.0, + 593.0, + 1756.0, + 291.0, + 1756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 613.0, + 1712.0, + 662.0, + 1712.0, + 662.0, + 1756.0, + 613.0, + 1756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 679.0, + 1712.0, + 810.0, + 1712.0, + 810.0, + 1756.0, + 679.0, + 1756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1021.0, + 1712.0, + 1174.0, + 1712.0, + 1174.0, + 1756.0, + 1021.0, + 1756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1258.0, + 1712.0, + 1345.0, + 1712.0, + 1345.0, + 1756.0, + 1258.0, + 1756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 1712.0, + 1405.0, + 1712.0, + 1405.0, + 1756.0, + 1402.0, + 1756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1749.0, + 785.0, + 1749.0, + 785.0, + 1782.0, + 294.0, + 1782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 814.0, + 1749.0, + 909.0, + 1749.0, + 909.0, + 1782.0, + 814.0, + 1782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 973.0, + 1749.0, + 1025.0, + 1749.0, + 1025.0, + 1782.0, + 973.0, + 1782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1094.0, + 1749.0, + 1404.0, + 1749.0, + 1404.0, + 1782.0, + 1094.0, + 1782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1779.0, + 833.0, + 1779.0, + 833.0, + 1815.0, + 293.0, + 1815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 882.0, + 1779.0, + 1019.0, + 1779.0, + 1019.0, + 1815.0, + 882.0, + 1815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1048.0, + 1779.0, + 1117.0, + 1779.0, + 1117.0, + 1815.0, + 1048.0, + 1815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1132.0, + 1779.0, + 1261.0, + 1779.0, + 1261.0, + 1815.0, + 1132.0, + 1815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1279.0, + 1779.0, + 1408.0, + 1779.0, + 1408.0, + 1815.0, + 1279.0, + 1815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1807.0, + 519.0, + 1807.0, + 519.0, + 1849.0, + 292.0, + 1849.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 548.0, + 1807.0, + 597.0, + 1807.0, + 597.0, + 1849.0, + 548.0, + 1849.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 627.0, + 1807.0, + 1038.0, + 1807.0, + 1038.0, + 1849.0, + 627.0, + 1849.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1307.0, + 1807.0, + 1317.0, + 1807.0, + 1317.0, + 1849.0, + 1307.0, + 1849.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1577.0, + 1406.0, + 1577.0, + 1406.0, + 1616.0, + 292.0, + 1616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1610.0, + 1407.0, + 1610.0, + 1407.0, + 1645.0, + 293.0, + 1645.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1640.0, + 1405.0, + 1640.0, + 1405.0, + 1675.0, + 293.0, + 1675.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1672.0, + 1141.0, + 1672.0, + 1141.0, + 1707.0, + 292.0, + 1707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1234.0, + 1672.0, + 1408.0, + 1672.0, + 1408.0, + 1707.0, + 1234.0, + 1707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 827.0, + 1405.0, + 827.0, + 1405.0, + 867.0, + 296.0, + 867.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 861.0, + 1404.0, + 861.0, + 1404.0, + 893.0, + 322.0, + 893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 888.0, + 1243.0, + 888.0, + 1243.0, + 926.0, + 321.0, + 926.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 920.0, + 1075.0, + 920.0, + 1075.0, + 955.0, + 320.0, + 955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1102.0, + 920.0, + 1405.0, + 920.0, + 1405.0, + 955.0, + 1102.0, + 955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 951.0, + 490.0, + 951.0, + 490.0, + 987.0, + 323.0, + 987.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1004.0, + 1408.0, + 1004.0, + 1408.0, + 1042.0, + 296.0, + 1042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1040.0, + 1225.0, + 1040.0, + 1225.0, + 1079.0, + 321.0, + 1079.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1397.0, + 1040.0, + 1408.0, + 1040.0, + 1408.0, + 1079.0, + 1397.0, + 1079.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1069.0, + 1408.0, + 1069.0, + 1408.0, + 1112.0, + 319.0, + 1112.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1106.0, + 597.0, + 1106.0, + 597.0, + 1142.0, + 320.0, + 1142.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 627.0, + 1106.0, + 1023.0, + 1106.0, + 1023.0, + 1142.0, + 627.0, + 1142.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1045.0, + 1106.0, + 1313.0, + 1106.0, + 1313.0, + 1142.0, + 1045.0, + 1142.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 1106.0, + 1404.0, + 1106.0, + 1404.0, + 1142.0, + 1401.0, + 1142.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 414.0, + 1141.0, + 1405.0, + 1141.0, + 1405.0, + 1181.0, + 414.0, + 1181.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1177.0, + 1404.0, + 1177.0, + 1404.0, + 1209.0, + 324.0, + 1209.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1206.0, + 1049.0, + 1206.0, + 1049.0, + 1242.0, + 322.0, + 1242.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 303.0, + 1258.0, + 1404.0, + 1258.0, + 1404.0, + 1298.0, + 303.0, + 1298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1291.0, + 1408.0, + 1291.0, + 1408.0, + 1327.0, + 321.0, + 1327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1323.0, + 973.0, + 1323.0, + 973.0, + 1364.0, + 320.0, + 1364.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1097.0, + 1323.0, + 1407.0, + 1323.0, + 1407.0, + 1364.0, + 1097.0, + 1364.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1358.0, + 502.0, + 1358.0, + 502.0, + 1395.0, + 320.0, + 1395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 519.0, + 1358.0, + 1404.0, + 1358.0, + 1404.0, + 1395.0, + 519.0, + 1395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 1392.0, + 1127.0, + 1392.0, + 1127.0, + 1430.0, + 318.0, + 1430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1251.0, + 1392.0, + 1407.0, + 1392.0, + 1407.0, + 1430.0, + 1251.0, + 1430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1425.0, + 810.0, + 1425.0, + 810.0, + 1460.0, + 322.0, + 1460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 827.0, + 1425.0, + 1013.0, + 1425.0, + 1013.0, + 1460.0, + 827.0, + 1460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1035.0, + 1425.0, + 1404.0, + 1425.0, + 1404.0, + 1460.0, + 1035.0, + 1460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1454.0, + 1405.0, + 1454.0, + 1405.0, + 1490.0, + 321.0, + 1490.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1487.0, + 1404.0, + 1487.0, + 1404.0, + 1519.0, + 322.0, + 1519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1516.0, + 739.0, + 1516.0, + 739.0, + 1552.0, + 322.0, + 1552.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 1, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 308, + 303, + 1392, + 303, + 1392, + 580, + 308, + 580 + ], + "score": 0.98, + "html": "
AssumptionsAlgorithmOver-para. ConditionSample ComplexityNetwork
Zou et al. (2019)Data nondegenerationGDΩ(n¹2L16(n² + e−1))Deep
This paper Data nondegenerationGDΩ2(L22n12)Deep
Cao and Gu (2020)Data separationGD(e-14).2(L)(-4).eO(L)Deep
Ji and Telgarsky (2020)Data separationGDpolylog(n,∈−1)(-2)Shallow
This paper Data separationGD polylog(n,∈-1) · poly(L)O(e-2). eO(L) Deep
Cao and Gu (2019)Data separationSGDΩ2(∈-14) · poly(L)(∈−²) · poly(L)Deep
Ji and Telgarsky (2020)Data separationSGDpolylog(∈-i)0(-1)Shallow
This paper Data separation SGD polylog(∈−1) · poly(L)O(e−1) · poly(L)Deep
" + }, + { + "category_id": 1, + "poly": [ + 296, + 861, + 1406, + 861, + 1406, + 1033, + 296, + 1033 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 297, + 1721, + 1405, + 1721, + 1405, + 1898, + 297, + 1898 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 297, + 1335, + 1406, + 1335, + 1406, + 1496, + 297, + 1496 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 1910, + 1404, + 1910, + 1404, + 2035, + 298, + 2035 + ], + "score": 0.973 + }, + { + "category_id": 8, + "poly": [ + 704, + 1583, + 994, + 1583, + 994, + 1664, + 704, + 1664 + ], + "score": 0.957 + }, + { + "category_id": 1, + "poly": [ + 294, + 1140, + 1405, + 1140, + 1405, + 1205, + 294, + 1205 + ], + "score": 0.951 + }, + { + "category_id": 1, + "poly": [ + 295, + 1506, + 1402, + 1506, + 1402, + 1571, + 295, + 1571 + ], + "score": 0.946 + }, + { + "category_id": 8, + "poly": [ + 585, + 1287, + 1117, + 1287, + 1117, + 1328, + 585, + 1328 + ], + "score": 0.943 + }, + { + "category_id": 1, + "poly": [ + 294, + 1216, + 1403, + 1216, + 1403, + 1283, + 294, + 1283 + ], + "score": 0.939 + }, + { + "category_id": 1, + "poly": [ + 291, + 1673, + 1390, + 1673, + 1390, + 1712, + 291, + 1712 + ], + "score": 0.925 + }, + { + "category_id": 6, + "poly": [ + 289, + 229, + 1402, + 229, + 1402, + 293, + 289, + 293 + ], + "score": 0.918 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 813, + 75, + 813, + 105, + 299, + 105 + ], + "score": 0.908 + }, + { + "category_id": 0, + "poly": [ + 298, + 1075, + 1083, + 1075, + 1083, + 1109, + 298, + 1109 + ], + "score": 0.887 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.664 + }, + { + "category_id": 1, + "poly": [ + 315, + 645, + 1385, + 645, + 1385, + 810, + 315, + 810 + ], + "score": 0.555 + }, + { + "category_id": 2, + "poly": [ + 841, + 2087, + 859, + 2087, + 859, + 2112, + 841, + 2112 + ], + "score": 0.482 + }, + { + "category_id": 0, + "poly": [ + 298, + 604, + 934, + 604, + 934, + 636, + 298, + 636 + ], + "score": 0.221 + }, + { + "category_id": 7, + "poly": [ + 315, + 645, + 1385, + 645, + 1385, + 810, + 315, + 810 + ], + "score": 0.102 + }, + { + "category_id": 13, + "poly": [ + 1048, + 1339, + 1261, + 1339, + 1261, + 1373, + 1048, + 1373 + ], + "score": 0.95, + "latex": "\\sigma ( x ) = \\operatorname* { m a x } \\{ 0 , x \\}" + }, + { + "category_id": 14, + "poly": [ + 702, + 1579, + 993, + 1579, + 993, + 1665, + 702, + 1665 + ], + "score": 0.94, + "latex": "L _ { S } ( \\mathbf { W } ) = \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } L _ { i } ( \\mathbf { W } ) ," + }, + { + "category_id": 13, + "poly": [ + 1016, + 1802, + 1140, + 1802, + 1140, + 1837, + 1016, + 1837 + ], + "score": 0.94, + "latex": "N ( 0 , 2 / m )" + }, + { + "category_id": 13, + "poly": [ + 321, + 997, + 470, + 997, + 470, + 1032, + 321, + 1032 + ], + "score": 0.93, + "latex": "\\dot { x _ { n } } = \\mathcal { O } ( y _ { n } ^ { D } )" + }, + { + "category_id": 13, + "poly": [ + 723, + 894, + 892, + 894, + 892, + 928, + 723, + 928 + ], + "score": 0.93, + "latex": "| x _ { n } | \\geqslant C _ { 2 } | y _ { n } |" + }, + { + "category_id": 13, + "poly": [ + 674, + 1834, + 798, + 1834, + 798, + 1868, + 674, + 1868 + ], + "score": 0.93, + "latex": "N ( 0 , 1 / m )" + }, + { + "category_id": 13, + "poly": [ + 1026, + 864, + 1191, + 864, + 1191, + 898, + 1026, + 898 + ], + "score": 0.93, + "latex": "| x _ { n } | \\leqslant C _ { 1 } | y _ { n } |" + }, + { + "category_id": 13, + "poly": [ + 849, + 864, + 995, + 864, + 995, + 898, + 849, + 898 + ], + "score": 0.93, + "latex": "x _ { n } = \\mathcal { O } ( y _ { n } )" + }, + { + "category_id": 13, + "poly": [ + 1234, + 1507, + 1396, + 1507, + 1396, + 1542, + 1234, + 1542 + ], + "score": 0.92, + "latex": "y _ { i } \\in \\left\\{ - 1 , + 1 \\right\\}" + }, + { + "category_id": 13, + "poly": [ + 721, + 1508, + 892, + 1508, + 892, + 1543, + 721, + 1543 + ], + "score": 0.92, + "latex": "\\{ \\mathbf { x } _ { i } , y _ { i } \\} _ { i = 1 , \\ldots , n }" + }, + { + "category_id": 13, + "poly": [ + 1061, + 931, + 1192, + 931, + 1192, + 964, + 1061, + 964 + ], + "score": 0.92, + "latex": "C _ { 3 } , C _ { 4 } > 0" + }, + { + "category_id": 13, + "poly": [ + 1014, + 1506, + 1106, + 1506, + 1106, + 1539, + 1014, + 1539 + ], + "score": 0.92, + "latex": "\\mathbf { x } _ { i } \\in \\mathbb { R } ^ { d }" + }, + { + "category_id": 13, + "poly": [ + 510, + 1461, + 763, + 1461, + 763, + 1496, + 510, + 1496 + ], + "score": 0.92, + "latex": "\\mathbf { W } = \\{ \\mathbf { W } _ { 1 } , \\dots , \\mathbf { W } _ { L } \\}" + }, + { + "category_id": 13, + "poly": [ + 856, + 999, + 1062, + 999, + 1062, + 1032, + 856, + 1032 + ], + "score": 0.92, + "latex": "x _ { n } = { \\mathrm { p o l y l o g } } ( y _ { n } )" + }, + { + "category_id": 13, + "poly": [ + 469, + 930, + 744, + 930, + 744, + 965, + 469, + 965 + ], + "score": 0.92, + "latex": "C _ { 3 } | y _ { n } | \\leqslant | x _ { n } | \\leqslant C _ { 4 } | y _ { n } |" + }, + { + "category_id": 13, + "poly": [ + 1090, + 1000, + 1315, + 1000, + 1315, + 1032, + 1090, + 1032 + ], + "score": 0.91, + "latex": "x _ { n } = \\mathrm { p o l y } ( \\log ( y _ { n } ) )" + }, + { + "category_id": 13, + "poly": [ + 544, + 896, + 692, + 896, + 692, + 928, + 544, + 928 + ], + "score": 0.91, + "latex": "x _ { n } = \\Omega ( y _ { n } )" + }, + { + "category_id": 13, + "poly": [ + 297, + 930, + 439, + 930, + 439, + 965, + 297, + 965 + ], + "score": 0.91, + "latex": "x _ { n } = \\Theta ( y _ { n } )" + }, + { + "category_id": 13, + "poly": [ + 545, + 864, + 603, + 864, + 603, + 897, + 545, + 897 + ], + "score": 0.91, + "latex": "\\left\\{ x _ { n } \\right\\}" + }, + { + "category_id": 13, + "poly": [ + 767, + 1217, + 850, + 1217, + 850, + 1248, + 767, + 1248 + ], + "score": 0.91, + "latex": "\\mathbf { x } \\in \\mathbb { R } ^ { d }" + }, + { + "category_id": 13, + "poly": [ + 941, + 647, + 1144, + 647, + 1144, + 682, + 941, + 682 + ], + "score": 0.91, + "latex": "S = \\left\\{ ( \\mathbf { x } _ { i } , y _ { i } ) _ { i = 1 } ^ { n } \\right\\}" + }, + { + "category_id": 13, + "poly": [ + 1342, + 925, + 1397, + 925, + 1397, + 965, + 1342, + 965 + ], + "score": 0.91, + "latex": "\\tilde { \\mathcal { O } } ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 1230, + 967, + 1400, + 967, + 1400, + 1000, + 1230, + 1000 + ], + "score": 0.91, + "latex": "x _ { n } = \\operatorname { p o l y } ( y _ { n } )" + }, + { + "category_id": 13, + "poly": [ + 668, + 967, + 722, + 967, + 722, + 1001, + 668, + 1001 + ], + "score": 0.91, + "latex": "\\mathcal { O } ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 658, + 864, + 712, + 864, + 712, + 897, + 658, + 897 + ], + "score": 0.9, + "latex": "\\left\\{ y _ { n } \\right\\}" + }, + { + "category_id": 13, + "poly": [ + 370, + 1674, + 988, + 1674, + 988, + 1713, + 370, + 1713 + ], + "score": 0.9, + "latex": "L _ { i } ( \\mathbf { W } ) = \\ell \\big ( y _ { i } f _ { \\mathbf { W } } ( \\mathbf { x } _ { i } ) \\big ) = \\log \\big ( 1 + \\exp ( - y _ { i } f _ { \\mathbf { W } } ( \\mathbf { x } _ { i } ) ) \\big )" + }, + { + "category_id": 14, + "poly": [ + 581, + 1284, + 1114, + 1284, + 1114, + 1327, + 581, + 1327 + ], + "score": 0.9, + "latex": "f _ { \\mathbf { W } } ( \\mathbf { x } ) = m ^ { 1 / 2 } \\mathbf { W } _ { L } \\sigma ( \\mathbf { W } _ { L - 1 } \\cdot \\cdot \\cdot \\sigma ( \\mathbf { W } _ { 1 } \\mathbf { x } ) \\cdot \\cdot \\cdot ) ," + }, + { + "category_id": 13, + "poly": [ + 298, + 963, + 349, + 963, + 349, + 1000, + 298, + 1000 + ], + "score": 0.9, + "latex": "\\widetilde { \\Omega } ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 770, + 967, + 821, + 967, + 821, + 1000, + 770, + 1000 + ], + "score": 0.89, + "latex": "\\Omega ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 840, + 1337, + 990, + 1337, + 990, + 1370, + 840, + 1370 + ], + "score": 0.89, + "latex": "\\mathbf { W } _ { L } \\in \\mathbb { R } ^ { 1 \\times m }" + }, + { + "category_id": 13, + "poly": [ + 1335, + 1798, + 1399, + 1798, + 1399, + 1838, + 1335, + 1838 + ], + "score": 0.89, + "latex": "\\mathbf { W } _ { L } ^ { ( 0 ) }" + }, + { + "category_id": 13, + "poly": [ + 1192, + 1753, + 1400, + 1753, + 1400, + 1797, + 1192, + 1797 + ], + "score": 0.88, + "latex": "\\mathbf { W } _ { 1 } ^ { ( 0 ) } , \\cdots , \\mathbf { W } _ { L - 1 } ^ { ( 0 ) }" + }, + { + "category_id": 13, + "poly": [ + 1308, + 895, + 1343, + 895, + 1343, + 925, + 1308, + 925 + ], + "score": 0.88, + "latex": "C _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 429, + 765, + 625, + 765, + 625, + 802, + 429, + 802 + ], + "score": 0.87, + "latex": "\\mathbf { W } ^ { ( 0 ) } , \\ldots , \\mathbf { W } ^ { ( T ) }" + }, + { + "category_id": 13, + "poly": [ + 440, + 706, + 895, + 706, + 895, + 742, + 440, + 742 + ], + "score": 0.86, + "latex": "\\mathbf { W } ^ { ( t ) } = \\mathbf { W } ^ { ( t - 1 ) } - \\eta \\cdot \\nabla _ { \\mathbf { W } } L _ { S } ( \\mathbf { W } ^ { ( t - 1 ) } ) ." + }, + { + "category_id": 13, + "poly": [ + 372, + 1337, + 518, + 1337, + 518, + 1370, + 372, + 1370 + ], + "score": 0.85, + "latex": "\\mathbf { W } _ { 1 } \\in \\mathbb { R } ^ { m \\times d }" + }, + { + "category_id": 13, + "poly": [ + 772, + 1001, + 798, + 1001, + 798, + 1026, + 772, + 1026 + ], + "score": 0.83, + "latex": "D" + }, + { + "category_id": 13, + "poly": [ + 497, + 895, + 531, + 895, + 531, + 925, + 497, + 925 + ], + "score": 0.82, + "latex": "C _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 1129, + 261, + 1152, + 261, + 1152, + 287, + 1129, + 287 + ], + "score": 0.77, + "latex": "L" + }, + { + "category_id": 13, + "poly": [ + 647, + 649, + 669, + 649, + 669, + 675, + 647, + 675 + ], + "score": 0.76, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 781, + 653, + 800, + 653, + 800, + 680, + 781, + 680 + ], + "score": 0.75, + "latex": "\\eta" + }, + { + "category_id": 13, + "poly": [ + 898, + 266, + 918, + 266, + 918, + 287, + 898, + 287 + ], + "score": 0.74, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 367, + 678, + 539, + 678, + 539, + 708, + 367, + 708 + ], + "score": 0.72, + "latex": "t = 1 , 2 , \\dots , T" + }, + { + "category_id": 13, + "poly": [ + 1371, + 1376, + 1398, + 1376, + 1398, + 1398, + 1371, + 1398 + ], + "score": 0.72, + "latex": "m" + }, + { + "category_id": 13, + "poly": [ + 529, + 1338, + 831, + 1338, + 831, + 1372, + 529, + 1372 + ], + "score": 0.71, + "latex": "\\mathbf { W } _ { 2 } , \\cdots , \\mathbf { W } _ { L - 1 } \\in \\mathbb { R } ^ { m \\times m } ," + }, + { + "category_id": 13, + "poly": [ + 628, + 265, + 644, + 265, + 644, + 287, + 628, + 287 + ], + "score": 0.65, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 1114, + 418, + 1255, + 418, + 1255, + 443, + 1114, + 443 + ], + "score": 0.63, + "latex": "\\tilde { \\mathcal { O } } ( \\epsilon ^ { - 4 } ) \\cdot e ^ { O ( L ) }" + }, + { + "category_id": 13, + "poly": [ + 862, + 418, + 1009, + 418, + 1009, + 444, + 862, + 444 + ], + "score": 0.6, + "latex": "\\tilde { \\Omega } ( \\epsilon ^ { - 1 4 } ) \\cdot e ^ { \\Omega ( L ) }" + }, + { + "category_id": 13, + "poly": [ + 1114, + 469, + 1258, + 469, + 1258, + 494, + 1114, + 494 + ], + "score": 0.48, + "latex": "\\tilde { \\mathcal { O } } ( \\epsilon ^ { - 2 } ) \\cdot e ^ { O ( L ) }" + }, + { + "category_id": 13, + "poly": [ + 1112, + 496, + 1268, + 496, + 1268, + 521, + 1112, + 521 + ], + "score": 0.44, + "latex": "\\tilde { \\mathcal { O } } ( \\epsilon ^ { - 2 } ) \\cdot \\mathrm { p o l y } ( L )" + }, + { + "category_id": 13, + "poly": [ + 862, + 471, + 1059, + 471, + 1059, + 495, + 862, + 495 + ], + "score": 0.41, + "latex": "\\mathrm { p o l y l o g } ( n , \\epsilon ^ { - 1 } ) \\cdot \\mathrm { p o l y } (" + }, + { + "category_id": 13, + "poly": [ + 1114, + 444, + 1183, + 444, + 1183, + 469, + 1114, + 469 + ], + "score": 0.31, + "latex": "\\tilde { \\mathcal { O } } ( \\epsilon ^ { - 2 } )" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 228.0, + 1404.0, + 228.0, + 1404.0, + 264.0, + 295.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 260.0, + 627.0, + 260.0, + 627.0, + 294.0, + 295.0, + 294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 645.0, + 260.0, + 897.0, + 260.0, + 897.0, + 294.0, + 645.0, + 294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 919.0, + 260.0, + 1128.0, + 260.0, + 1128.0, + 294.0, + 919.0, + 294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1153.0, + 260.0, + 1394.0, + 260.0, + 1394.0, + 294.0, + 1153.0, + 294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 815.0, + 73.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1070.0, + 1084.0, + 1070.0, + 1084.0, + 1115.0, + 292.0, + 1115.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2118.0, + 838.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2086.0, + 860.0, + 2086.0, + 860.0, + 2117.0, + 839.0, + 2117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 601.0, + 935.0, + 601.0, + 935.0, + 640.0, + 294.0, + 640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 639.0, + 646.0, + 639.0, + 646.0, + 685.0, + 319.0, + 685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 670.0, + 639.0, + 780.0, + 639.0, + 780.0, + 685.0, + 670.0, + 685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 801.0, + 639.0, + 940.0, + 639.0, + 940.0, + 685.0, + 801.0, + 685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1145.0, + 639.0, + 1372.0, + 639.0, + 1372.0, + 685.0, + 1145.0, + 685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 674.0, + 366.0, + 674.0, + 366.0, + 711.0, + 320.0, + 711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 540.0, + 674.0, + 581.0, + 674.0, + 581.0, + 711.0, + 540.0, + 711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 345.0, + 700.0, + 439.0, + 700.0, + 439.0, + 743.0, + 345.0, + 743.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 896.0, + 700.0, + 903.0, + 700.0, + 903.0, + 743.0, + 896.0, + 743.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 736.0, + 420.0, + 736.0, + 420.0, + 771.0, + 321.0, + 771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 762.0, + 428.0, + 762.0, + 428.0, + 803.0, + 318.0, + 803.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 626.0, + 762.0, + 638.0, + 762.0, + 638.0, + 803.0, + 626.0, + 803.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 862.0, + 544.0, + 862.0, + 544.0, + 900.0, + 295.0, + 900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 604.0, + 862.0, + 657.0, + 862.0, + 657.0, + 900.0, + 604.0, + 900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 713.0, + 862.0, + 848.0, + 862.0, + 848.0, + 900.0, + 713.0, + 900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 996.0, + 862.0, + 1025.0, + 862.0, + 1025.0, + 900.0, + 996.0, + 900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1192.0, + 862.0, + 1406.0, + 862.0, + 1406.0, + 900.0, + 1192.0, + 900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 895.0, + 496.0, + 895.0, + 496.0, + 929.0, + 294.0, + 929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 532.0, + 895.0, + 543.0, + 895.0, + 543.0, + 929.0, + 532.0, + 929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 693.0, + 895.0, + 722.0, + 895.0, + 722.0, + 929.0, + 693.0, + 929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 893.0, + 895.0, + 1307.0, + 895.0, + 1307.0, + 929.0, + 893.0, + 929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1344.0, + 895.0, + 1406.0, + 895.0, + 1406.0, + 929.0, + 1344.0, + 929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 930.0, + 296.0, + 930.0, + 296.0, + 965.0, + 291.0, + 965.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 440.0, + 930.0, + 468.0, + 930.0, + 468.0, + 965.0, + 440.0, + 965.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 745.0, + 930.0, + 1060.0, + 930.0, + 1060.0, + 965.0, + 745.0, + 965.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1193.0, + 930.0, + 1341.0, + 930.0, + 1341.0, + 965.0, + 1193.0, + 965.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1398.0, + 930.0, + 1405.0, + 930.0, + 1405.0, + 965.0, + 1398.0, + 965.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 962.0, + 297.0, + 962.0, + 297.0, + 1007.0, + 293.0, + 1007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 962.0, + 667.0, + 962.0, + 667.0, + 1007.0, + 350.0, + 1007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 723.0, + 962.0, + 769.0, + 962.0, + 769.0, + 1007.0, + 723.0, + 1007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 822.0, + 962.0, + 1229.0, + 962.0, + 1229.0, + 1007.0, + 822.0, + 1007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 962.0, + 1406.0, + 962.0, + 1406.0, + 1007.0, + 1401.0, + 1007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 997.0, + 320.0, + 997.0, + 320.0, + 1034.0, + 293.0, + 1034.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 471.0, + 997.0, + 771.0, + 997.0, + 771.0, + 1034.0, + 471.0, + 1034.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 799.0, + 997.0, + 855.0, + 997.0, + 855.0, + 1034.0, + 799.0, + 1034.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1063.0, + 997.0, + 1089.0, + 997.0, + 1089.0, + 1034.0, + 1063.0, + 1034.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1316.0, + 997.0, + 1326.0, + 997.0, + 1326.0, + 1034.0, + 1316.0, + 1034.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1723.0, + 1408.0, + 1723.0, + 1408.0, + 1758.0, + 295.0, + 1758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1835.0, + 673.0, + 1835.0, + 673.0, + 1869.0, + 294.0, + 1869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 799.0, + 1835.0, + 1406.0, + 1835.0, + 1406.0, + 1869.0, + 799.0, + 1869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1864.0, + 1221.0, + 1864.0, + 1221.0, + 1900.0, + 294.0, + 1900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 287.0, + 1749.5, + 1268.0, + 1749.5, + 1268.0, + 1805.0, + 287.0, + 1805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1307.0, + 1749.0, + 1399.0, + 1749.0, + 1399.0, + 1793.0, + 1307.0, + 1793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 284.0, + 1789.0, + 1414.0, + 1789.0, + 1414.0, + 1851.0, + 284.0, + 1851.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1330.0, + 371.0, + 1330.0, + 371.0, + 1377.0, + 291.0, + 1377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 519.0, + 1330.0, + 528.0, + 1330.0, + 528.0, + 1377.0, + 519.0, + 1377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 1330.0, + 839.0, + 1330.0, + 839.0, + 1377.0, + 832.0, + 1377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 991.0, + 1330.0, + 1047.0, + 1330.0, + 1047.0, + 1377.0, + 991.0, + 1377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1262.0, + 1330.0, + 1407.0, + 1330.0, + 1407.0, + 1377.0, + 1262.0, + 1377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1367.0, + 1370.0, + 1367.0, + 1370.0, + 1407.0, + 292.0, + 1407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1399.0, + 1367.0, + 1408.0, + 1367.0, + 1408.0, + 1407.0, + 1399.0, + 1407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1394.0, + 1407.0, + 1394.0, + 1407.0, + 1440.0, + 292.0, + 1440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1429.0, + 1404.0, + 1429.0, + 1404.0, + 1466.0, + 295.0, + 1466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1458.0, + 509.0, + 1458.0, + 509.0, + 1498.0, + 294.0, + 1498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 764.0, + 1458.0, + 775.0, + 1458.0, + 775.0, + 1498.0, + 764.0, + 1498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1907.0, + 1405.0, + 1907.0, + 1405.0, + 1946.0, + 292.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1943.0, + 1405.0, + 1943.0, + 1405.0, + 1976.0, + 294.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1971.0, + 1408.0, + 1971.0, + 1408.0, + 2006.0, + 293.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1999.0, + 606.0, + 1999.0, + 606.0, + 2036.0, + 293.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1140.0, + 1405.0, + 1140.0, + 1405.0, + 1176.0, + 294.0, + 1176.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1171.0, + 1408.0, + 1171.0, + 1408.0, + 1207.0, + 294.0, + 1207.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1501.0, + 720.0, + 1501.0, + 720.0, + 1549.0, + 290.0, + 1549.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 893.0, + 1501.0, + 1013.0, + 1501.0, + 1013.0, + 1549.0, + 893.0, + 1549.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1107.0, + 1501.0, + 1233.0, + 1501.0, + 1233.0, + 1549.0, + 1107.0, + 1549.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1397.0, + 1501.0, + 1411.0, + 1501.0, + 1411.0, + 1549.0, + 1397.0, + 1549.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1538.0, + 724.0, + 1538.0, + 724.0, + 1575.0, + 295.0, + 1575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1216.0, + 766.0, + 1216.0, + 766.0, + 1256.0, + 293.0, + 1256.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 851.0, + 1216.0, + 1406.0, + 1216.0, + 1406.0, + 1256.0, + 851.0, + 1256.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1245.0, + 539.0, + 1245.0, + 539.0, + 1284.0, + 293.0, + 1284.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1671.0, + 369.0, + 1671.0, + 369.0, + 1716.0, + 295.0, + 1716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 989.0, + 1671.0, + 1390.0, + 1671.0, + 1390.0, + 1716.0, + 989.0, + 1716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 639.0, + 646.0, + 639.0, + 646.0, + 685.0, + 319.0, + 685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 670.0, + 639.0, + 780.0, + 639.0, + 780.0, + 685.0, + 670.0, + 685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 801.0, + 639.0, + 940.0, + 639.0, + 940.0, + 685.0, + 801.0, + 685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1145.0, + 639.0, + 1372.0, + 639.0, + 1372.0, + 685.0, + 1145.0, + 685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 674.0, + 366.0, + 674.0, + 366.0, + 711.0, + 320.0, + 711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 540.0, + 674.0, + 581.0, + 674.0, + 581.0, + 711.0, + 540.0, + 711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 345.0, + 700.0, + 439.0, + 700.0, + 439.0, + 743.0, + 345.0, + 743.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 896.0, + 700.0, + 903.0, + 700.0, + 903.0, + 743.0, + 896.0, + 743.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 736.0, + 420.0, + 736.0, + 420.0, + 771.0, + 321.0, + 771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 762.0, + 428.0, + 762.0, + 428.0, + 803.0, + 318.0, + 803.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 626.0, + 762.0, + 638.0, + 762.0, + 638.0, + 803.0, + 626.0, + 803.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 2, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 1700, + 1405, + 1700, + 1405, + 1958, + 296, + 1958 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 297, + 1070, + 1406, + 1070, + 1406, + 1288, + 297, + 1288 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 1582, + 1405, + 1582, + 1405, + 1681, + 298, + 1681 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 297, + 894, + 1405, + 894, + 1405, + 991, + 297, + 991 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 297, + 715, + 1407, + 715, + 1407, + 809, + 297, + 809 + ], + "score": 0.972 + }, + { + "category_id": 8, + "poly": [ + 595, + 1532, + 1105, + 1532, + 1105, + 1575, + 595, + 1575 + ], + "score": 0.948 + }, + { + "category_id": 1, + "poly": [ + 297, + 823, + 1403, + 823, + 1403, + 886, + 297, + 886 + ], + "score": 0.947 + }, + { + "category_id": 1, + "poly": [ + 298, + 1379, + 1398, + 1379, + 1398, + 1442, + 298, + 1442 + ], + "score": 0.946 + }, + { + "category_id": 1, + "poly": [ + 297, + 1449, + 1399, + 1449, + 1399, + 1521, + 297, + 1521 + ], + "score": 0.946 + }, + { + "category_id": 1, + "poly": [ + 295, + 590, + 1402, + 590, + 1402, + 654, + 295, + 654 + ], + "score": 0.945 + }, + { + "category_id": 1, + "poly": [ + 298, + 1970, + 1401, + 1970, + 1401, + 2035, + 298, + 2035 + ], + "score": 0.944 + }, + { + "category_id": 8, + "poly": [ + 512, + 1002, + 1183, + 1002, + 1183, + 1047, + 512, + 1047 + ], + "score": 0.931 + }, + { + "category_id": 1, + "poly": [ + 299, + 659, + 1120, + 659, + 1120, + 694, + 299, + 694 + ], + "score": 0.922 + }, + { + "category_id": 0, + "poly": [ + 300, + 522, + 560, + 522, + 560, + 558, + 300, + 558 + ], + "score": 0.922 + }, + { + "category_id": 0, + "poly": [ + 300, + 1322, + 611, + 1322, + 611, + 1354, + 300, + 1354 + ], + "score": 0.909 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 813, + 75, + 813, + 105, + 299, + 105 + ], + "score": 0.902 + }, + { + "category_id": 1, + "poly": [ + 320, + 270, + 1254, + 270, + 1254, + 466, + 320, + 466 + ], + "score": 0.791 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 857, + 2088, + 857, + 2111, + 840, + 2111 + ], + "score": 0.786 + }, + { + "category_id": 0, + "poly": [ + 299, + 227, + 1142, + 227, + 1142, + 262, + 299, + 262 + ], + "score": 0.145 + }, + { + "category_id": 13, + "poly": [ + 572, + 1734, + 714, + 1734, + 714, + 1770, + 572, + 1770 + ], + "score": 0.94, + "latex": "{ \\mathcal { F } } ( { \\mathbf { W } } ^ { ( 0 ) } , R )" + }, + { + "category_id": 13, + "poly": [ + 515, + 1072, + 658, + 1072, + 658, + 1107, + 515, + 1107 + ], + "score": 0.94, + "latex": "F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } } ( \\mathbf { x } )" + }, + { + "category_id": 13, + "poly": [ + 738, + 1486, + 879, + 1486, + 879, + 1522, + 738, + 1522 + ], + "score": 0.93, + "latex": "{ \\mathcal { F } } ( { \\mathbf { W } } ^ { ( 0 ) } , R )" + }, + { + "category_id": 13, + "poly": [ + 1281, + 1768, + 1400, + 1768, + 1400, + 1806, + 1281, + 1806 + ], + "score": 0.92, + "latex": "R = \\widetilde { \\mathcal { O } } ( 1 )" + }, + { + "category_id": 13, + "poly": [ + 298, + 1645, + 531, + 1645, + 531, + 1683, + 298, + 1683 + ], + "score": 0.92, + "latex": "T = \\mathcal { O } \\big ( L ^ { 2 } R ^ { 2 } \\epsilon _ { \\mathrm { N T R F } } ^ { - 1 } \\big )" + }, + { + "category_id": 14, + "poly": [ + 593, + 1530, + 1101, + 1530, + 1101, + 1575, + 593, + 1575 + ], + "score": 0.91, + "latex": "m ^ { * } ( \\delta , R , L ) = \\widetilde { \\mathcal { O } } \\big ( \\mathrm { p o l y } ( R , L ) \\cdot \\log ^ { 4 / 3 } ( n / \\delta ) \\big ) ," + }, + { + "category_id": 13, + "poly": [ + 431, + 1583, + 633, + 1583, + 633, + 1616, + 431, + 1616 + ], + "score": 0.91, + "latex": "m \\geqslant m ^ { * } ( \\delta , R , L )" + }, + { + "category_id": 13, + "poly": [ + 1053, + 329, + 1243, + 329, + 1243, + 367, + 1053, + 367 + ], + "score": 0.91, + "latex": "\\nabla _ { \\mathbf { W } } L _ { i } ( \\mathbf { W } ^ { ( i - 1 ) } )" + }, + { + "category_id": 13, + "poly": [ + 516, + 1450, + 623, + 1450, + 623, + 1482, + 516, + 1482 + ], + "score": 0.91, + "latex": "\\delta , R > 0" + }, + { + "category_id": 13, + "poly": [ + 674, + 1449, + 1203, + 1449, + 1203, + 1487, + 674, + 1487 + ], + "score": 0.91, + "latex": "\\begin{array} { r } { \\epsilon _ { \\mathrm { N T R F } } = \\operatorname* { i n f } _ { \\mathit { F } \\in \\mathcal { F } ( \\mathbf { W } ^ { ( 0 ) } , R ) } n ^ { - 1 } \\sum _ { i = 1 } ^ { n } \\ell \\big [ y _ { i } F ( \\mathbf { x } _ { i } ) \\big ] } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 440, + 364, + 885, + 364, + 885, + 401, + 440, + 401 + ], + "score": 0.91, + "latex": "\\mathbf { W } ^ { ( i ) } = \\mathbf { W } ^ { ( i - 1 ) } - \\eta \\cdot \\nabla _ { \\mathbf { W } } L _ { i } ( \\mathbf { W } ^ { ( i - 1 ) } )" + }, + { + "category_id": 13, + "poly": [ + 446, + 929, + 1071, + 929, + 1071, + 964, + 446, + 964 + ], + "score": 0.9, + "latex": "{ F _ { { \\bf W } ^ { ( 0 ) } , { \\bf W } } ( { \\bf x } ) } = f _ { { \\bf W } ^ { ( 0 ) } } ( { \\bf x } ) + \\langle \\nabla f _ { { \\bf W } ^ { ( 0 ) } } ( { \\bf x } ) , { \\bf W } - { \\bf W } ^ { ( 0 ) } \\rangle" + }, + { + "category_id": 13, + "poly": [ + 422, + 335, + 506, + 335, + 506, + 366, + 422, + 366 + ], + "score": 0.9, + "latex": "\\left( \\mathbf { x } _ { i } , y _ { i } \\right)" + }, + { + "category_id": 13, + "poly": [ + 461, + 1833, + 504, + 1833, + 504, + 1864, + 461, + 1864 + ], + "score": 0.89, + "latex": "\\epsilon ^ { - 1 }" + }, + { + "category_id": 14, + "poly": [ + 513, + 1001, + 1185, + 1001, + 1185, + 1047, + 513, + 1047 + ], + "score": 0.88, + "latex": "{ \\mathcal { F } } ( \\mathbf { W } ^ { ( 0 ) } , R ) = \\big \\{ F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } } ( \\cdot ) : \\mathbf { W } \\in { \\mathcal { B } } ( \\mathbf { W } ^ { ( 0 ) } , R \\cdot m ^ { - 1 / 2 } ) \\big \\} ." + }, + { + "category_id": 13, + "poly": [ + 350, + 1614, + 553, + 1614, + 553, + 1645, + 350, + 1645 + ], + "score": 0.87, + "latex": "\\eta = \\Theta ( L ^ { - 1 } m ^ { - 1 } )" + }, + { + "category_id": 13, + "poly": [ + 921, + 1584, + 987, + 1584, + 987, + 1613, + 921, + 1613 + ], + "score": 0.86, + "latex": "1 - \\delta" + }, + { + "category_id": 13, + "poly": [ + 855, + 425, + 1101, + 425, + 1101, + 463, + 855, + 463 + ], + "score": 0.85, + "latex": "\\{ \\mathbf { W } ^ { ( 0 ) } , \\ldots , \\mathbf { W } ^ { ( n - 1 ) } \\}" + }, + { + "category_id": 13, + "poly": [ + 367, + 304, + 535, + 304, + 535, + 334, + 367, + 334 + ], + "score": 0.85, + "latex": "i = 1 , 2 , \\dots , n" + }, + { + "category_id": 13, + "poly": [ + 1120, + 892, + 1185, + 892, + 1185, + 925, + 1120, + 925 + ], + "score": 0.84, + "latex": "\\mathbf { W } ^ { ( 0 ) }" + }, + { + "category_id": 13, + "poly": [ + 741, + 1772, + 783, + 1772, + 783, + 1806, + 741, + 1806 + ], + "score": 0.84, + "latex": "1 / \\delta" + }, + { + "category_id": 13, + "poly": [ + 1305, + 1737, + 1329, + 1737, + 1329, + 1764, + 1305, + 1764 + ], + "score": 0.81, + "latex": "R" + }, + { + "category_id": 13, + "poly": [ + 670, + 1779, + 690, + 1779, + 690, + 1801, + 670, + 1801 + ], + "score": 0.79, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 1379, + 1738, + 1401, + 1738, + 1401, + 1764, + 1379, + 1764 + ], + "score": 0.77, + "latex": "L" + }, + { + "category_id": 13, + "poly": [ + 571, + 335, + 597, + 335, + 597, + 361, + 571, + 361 + ], + "score": 0.76, + "latex": "\\mathcal { D }" + }, + { + "category_id": 13, + "poly": [ + 842, + 659, + 1112, + 659, + 1112, + 694, + 842, + 694 + ], + "score": 0.76, + "latex": "\\| \\mathbf { x } _ { i } \\| _ { 2 } = 1 , i = 1 , \\ldots , n ." + }, + { + "category_id": 13, + "poly": [ + 635, + 420, + 672, + 420, + 672, + 457, + 635, + 457 + ], + "score": 0.76, + "latex": "\\widehat { \\bf W }" + }, + { + "category_id": 13, + "poly": [ + 393, + 1839, + 413, + 1839, + 413, + 1862, + 393, + 1862 + ], + "score": 0.76, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 646, + 280, + 666, + 280, + 666, + 300, + 646, + 300 + ], + "score": 0.68, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 778, + 279, + 796, + 279, + 796, + 305, + 778, + 305 + ], + "score": 0.64, + "latex": "\\eta" + }, + { + "category_id": 13, + "poly": [ + 402, + 966, + 422, + 966, + 422, + 988, + 402, + 988 + ], + "score": 0.63, + "latex": "\\mathbf { x }" + }, + { + "category_id": 13, + "poly": [ + 1091, + 1615, + 1171, + 1615, + 1171, + 1645, + 1091, + 1645 + ], + "score": 0.58, + "latex": "3 \\epsilon _ { \\mathrm { N T R F } }" + }, + { + "category_id": 13, + "poly": [ + 843, + 659, + 957, + 659, + 957, + 694, + 843, + 694 + ], + "score": 0.57, + "latex": "\\| \\mathbf { x } _ { i } \\| _ { 2 } = 1" + }, + { + "category_id": 13, + "poly": [ + 1126, + 1811, + 1141, + 1811, + 1141, + 1831, + 1126, + 1831 + ], + "score": 0.49, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 954, + 269, + 1019, + 269, + 1019, + 301, + 954, + 301 + ], + "score": 0.41, + "latex": "\\mathbf { W } ^ { ( 0 ) }" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 518.0, + 564.0, + 518.0, + 564.0, + 565.0, + 291.0, + 565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1322.0, + 616.0, + 1322.0, + 616.0, + 1358.0, + 294.0, + 1358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 815.0, + 73.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2086.0, + 861.0, + 2086.0, + 861.0, + 2118.0, + 838.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 227.0, + 1144.0, + 227.0, + 1144.0, + 267.0, + 295.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1701.0, + 1405.0, + 1701.0, + 1405.0, + 1738.0, + 294.0, + 1738.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1730.0, + 571.0, + 1730.0, + 571.0, + 1774.0, + 291.0, + 1774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 715.0, + 1730.0, + 1304.0, + 1730.0, + 1304.0, + 1774.0, + 715.0, + 1774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1330.0, + 1730.0, + 1378.0, + 1730.0, + 1378.0, + 1774.0, + 1330.0, + 1774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 1730.0, + 1407.0, + 1730.0, + 1407.0, + 1774.0, + 1402.0, + 1774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1772.0, + 669.0, + 1772.0, + 669.0, + 1807.0, + 293.0, + 1807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 691.0, + 1772.0, + 740.0, + 1772.0, + 740.0, + 1807.0, + 691.0, + 1807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 784.0, + 1772.0, + 1280.0, + 1772.0, + 1280.0, + 1807.0, + 784.0, + 1807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 1772.0, + 1405.0, + 1772.0, + 1405.0, + 1807.0, + 1401.0, + 1807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1804.0, + 1125.0, + 1804.0, + 1125.0, + 1839.0, + 294.0, + 1839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1142.0, + 1804.0, + 1405.0, + 1804.0, + 1405.0, + 1839.0, + 1142.0, + 1839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1830.0, + 392.0, + 1830.0, + 392.0, + 1873.0, + 291.0, + 1873.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 414.0, + 1830.0, + 460.0, + 1830.0, + 460.0, + 1873.0, + 414.0, + 1873.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 505.0, + 1830.0, + 1406.0, + 1830.0, + 1406.0, + 1873.0, + 505.0, + 1873.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1863.0, + 1406.0, + 1863.0, + 1406.0, + 1901.0, + 294.0, + 1901.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1891.0, + 1405.0, + 1891.0, + 1405.0, + 1932.0, + 293.0, + 1932.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1927.0, + 1221.0, + 1927.0, + 1221.0, + 1958.0, + 296.0, + 1958.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1068.0, + 514.0, + 1068.0, + 514.0, + 1109.0, + 292.0, + 1109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 659.0, + 1068.0, + 1406.0, + 1068.0, + 1406.0, + 1109.0, + 659.0, + 1109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1102.0, + 1404.0, + 1102.0, + 1404.0, + 1137.0, + 295.0, + 1137.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1128.0, + 1407.0, + 1128.0, + 1407.0, + 1172.0, + 292.0, + 1172.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1162.0, + 1404.0, + 1162.0, + 1404.0, + 1199.0, + 292.0, + 1199.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1193.0, + 1404.0, + 1193.0, + 1404.0, + 1229.0, + 294.0, + 1229.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1224.0, + 1407.0, + 1224.0, + 1407.0, + 1260.0, + 292.0, + 1260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1256.0, + 684.0, + 1256.0, + 684.0, + 1289.0, + 295.0, + 1289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1578.0, + 430.0, + 1578.0, + 430.0, + 1620.0, + 292.0, + 1620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 634.0, + 1578.0, + 920.0, + 1578.0, + 920.0, + 1620.0, + 634.0, + 1620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 988.0, + 1578.0, + 1405.0, + 1578.0, + 1405.0, + 1620.0, + 988.0, + 1620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1609.0, + 349.0, + 1609.0, + 349.0, + 1648.0, + 293.0, + 1648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 554.0, + 1609.0, + 1090.0, + 1609.0, + 1090.0, + 1648.0, + 554.0, + 1648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1172.0, + 1609.0, + 1403.0, + 1609.0, + 1403.0, + 1648.0, + 1172.0, + 1648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 1636.0, + 297.0, + 1636.0, + 297.0, + 1691.0, + 288.0, + 1691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 532.0, + 1636.0, + 660.0, + 1636.0, + 660.0, + 1691.0, + 532.0, + 1691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 891.0, + 1119.0, + 891.0, + 1119.0, + 933.0, + 294.0, + 933.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1186.0, + 891.0, + 1406.0, + 891.0, + 1406.0, + 933.0, + 1186.0, + 933.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 923.0, + 445.0, + 923.0, + 445.0, + 968.0, + 291.0, + 968.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1072.0, + 923.0, + 1407.0, + 923.0, + 1407.0, + 968.0, + 1072.0, + 968.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 960.0, + 401.0, + 960.0, + 401.0, + 994.0, + 295.0, + 994.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 423.0, + 960.0, + 1011.0, + 960.0, + 1011.0, + 994.0, + 423.0, + 994.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 715.0, + 1408.0, + 715.0, + 1408.0, + 752.0, + 292.0, + 752.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 745.0, + 1407.0, + 745.0, + 1407.0, + 780.0, + 295.0, + 780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 778.0, + 954.0, + 778.0, + 954.0, + 812.0, + 295.0, + 812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 823.0, + 1408.0, + 823.0, + 1408.0, + 860.0, + 294.0, + 860.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 852.0, + 1305.0, + 852.0, + 1305.0, + 889.0, + 294.0, + 889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1375.0, + 1403.0, + 1375.0, + 1403.0, + 1417.0, + 293.0, + 1417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1411.0, + 572.0, + 1411.0, + 572.0, + 1446.0, + 294.0, + 1446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 1435.0, + 515.0, + 1435.0, + 515.0, + 1498.0, + 288.0, + 1498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 624.0, + 1435.0, + 673.0, + 1435.0, + 673.0, + 1498.0, + 624.0, + 1498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1204.0, + 1435.0, + 1410.0, + 1435.0, + 1410.0, + 1498.0, + 1204.0, + 1498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1482.0, + 737.0, + 1482.0, + 737.0, + 1524.0, + 295.0, + 1524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 880.0, + 1482.0, + 1091.0, + 1482.0, + 1091.0, + 1524.0, + 880.0, + 1524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 585.0, + 1407.0, + 585.0, + 1407.0, + 628.0, + 293.0, + 628.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 621.0, + 1297.0, + 621.0, + 1297.0, + 657.0, + 297.0, + 657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1972.0, + 1405.0, + 1972.0, + 1405.0, + 2008.0, + 296.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 2004.0, + 1403.0, + 2004.0, + 1403.0, + 2036.0, + 296.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 658.0, + 841.0, + 658.0, + 841.0, + 698.0, + 296.0, + 698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1113.0, + 658.0, + 1120.0, + 658.0, + 1120.0, + 698.0, + 1113.0, + 698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 267.0, + 645.0, + 267.0, + 645.0, + 306.0, + 319.0, + 306.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 667.0, + 267.0, + 777.0, + 267.0, + 777.0, + 306.0, + 667.0, + 306.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 797.0, + 267.0, + 953.0, + 267.0, + 953.0, + 306.0, + 797.0, + 306.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1020.0, + 267.0, + 1024.0, + 267.0, + 1024.0, + 306.0, + 1020.0, + 306.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 302.0, + 366.0, + 302.0, + 366.0, + 335.0, + 324.0, + 335.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 536.0, + 302.0, + 577.0, + 302.0, + 577.0, + 335.0, + 536.0, + 335.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 344.0, + 328.0, + 421.0, + 328.0, + 421.0, + 371.0, + 344.0, + 371.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 507.0, + 328.0, + 570.0, + 328.0, + 570.0, + 371.0, + 507.0, + 371.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 598.0, + 328.0, + 1052.0, + 328.0, + 1052.0, + 371.0, + 598.0, + 371.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1244.0, + 328.0, + 1255.0, + 328.0, + 1255.0, + 371.0, + 1244.0, + 371.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 360.0, + 439.0, + 360.0, + 439.0, + 405.0, + 348.0, + 405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 886.0, + 360.0, + 899.0, + 360.0, + 899.0, + 405.0, + 886.0, + 405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 398.0, + 419.0, + 398.0, + 419.0, + 429.0, + 324.0, + 429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 418.0, + 634.0, + 418.0, + 634.0, + 467.0, + 320.0, + 467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 673.0, + 418.0, + 854.0, + 418.0, + 854.0, + 467.0, + 673.0, + 467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1102.0, + 418.0, + 1110.0, + 418.0, + 1110.0, + 467.0, + 1102.0, + 467.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 3, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 958, + 1406, + 958, + 1406, + 1261, + 296, + 1261 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 296, + 636, + 1407, + 636, + 1407, + 948, + 296, + 948 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 296, + 1786, + 1406, + 1786, + 1406, + 1989, + 296, + 1989 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 228, + 1404, + 228, + 1404, + 325, + 298, + 325 + ], + "score": 0.963 + }, + { + "category_id": 1, + "poly": [ + 296, + 1560, + 1397, + 1560, + 1397, + 1631, + 296, + 1631 + ], + "score": 0.953 + }, + { + "category_id": 1, + "poly": [ + 295, + 1352, + 1400, + 1352, + 1400, + 1416, + 295, + 1416 + ], + "score": 0.95 + }, + { + "category_id": 8, + "poly": [ + 564, + 1643, + 1134, + 1643, + 1134, + 1713, + 564, + 1713 + ], + "score": 0.949 + }, + { + "category_id": 8, + "poly": [ + 595, + 1505, + 1103, + 1505, + 1103, + 1549, + 595, + 1549 + ], + "score": 0.946 + }, + { + "category_id": 1, + "poly": [ + 296, + 1421, + 1401, + 1421, + 1401, + 1494, + 296, + 1494 + ], + "score": 0.939 + }, + { + "category_id": 8, + "poly": [ + 300, + 483, + 1393, + 483, + 1393, + 574, + 300, + 574 + ], + "score": 0.929 + }, + { + "category_id": 2, + "poly": [ + 334, + 2004, + 790, + 2004, + 790, + 2034, + 334, + 2034 + ], + "score": 0.926 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 813, + 75, + 813, + 105, + 299, + 105 + ], + "score": 0.913 + }, + { + "category_id": 1, + "poly": [ + 292, + 1724, + 1275, + 1724, + 1275, + 1763, + 292, + 1763 + ], + "score": 0.913 + }, + { + "category_id": 0, + "poly": [ + 302, + 1296, + 767, + 1296, + 767, + 1328, + 302, + 1328 + ], + "score": 0.906 + }, + { + "category_id": 1, + "poly": [ + 298, + 581, + 525, + 581, + 525, + 614, + 298, + 614 + ], + "score": 0.904 + }, + { + "category_id": 1, + "poly": [ + 296, + 337, + 1404, + 337, + 1404, + 473, + 296, + 473 + ], + "score": 0.786 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 859, + 2088, + 859, + 2112, + 840, + 2112 + ], + "score": 0.758 + }, + { + "category_id": 13, + "poly": [ + 464, + 1064, + 605, + 1064, + 605, + 1104, + 464, + 1104 + ], + "score": 0.94, + "latex": "m = \\widetilde \\Omega ( n ^ { 3 } )" + }, + { + "category_id": 13, + "poly": [ + 898, + 1028, + 1018, + 1028, + 1018, + 1068, + 898, + 1068 + ], + "score": 0.94, + "latex": "{ \\cal \\tilde { O } } ( 1 / n ^ { 1 / 2 } )" + }, + { + "category_id": 13, + "poly": [ + 471, + 1913, + 612, + 1913, + 612, + 1951, + 471, + 1951 + ], + "score": 0.93, + "latex": "n = \\widetilde { \\mathcal { O } } ( \\epsilon ^ { - 2 } )" + }, + { + "category_id": 13, + "poly": [ + 417, + 698, + 583, + 698, + 583, + 739, + 417, + 739 + ], + "score": 0.93, + "latex": "4 ^ { L } L ^ { 2 } R \\sqrt { m / n }" + }, + { + "category_id": 13, + "poly": [ + 886, + 836, + 1008, + 836, + 1008, + 875, + 886, + 875 + ], + "score": 0.93, + "latex": "m = \\widetilde { \\mathcal { O } } ( 1 )" + }, + { + "category_id": 13, + "poly": [ + 895, + 1161, + 1014, + 1161, + 1014, + 1201, + 895, + 1201 + ], + "score": 0.93, + "latex": "{ \\cal \\tilde { O } } ( 1 / n ^ { 1 / 2 } )" + }, + { + "category_id": 13, + "poly": [ + 1230, + 769, + 1352, + 769, + 1352, + 802, + 1230, + 802 + ], + "score": 0.93, + "latex": "m = \\Omega ( n )" + }, + { + "category_id": 13, + "poly": [ + 1233, + 908, + 1355, + 908, + 1355, + 948, + 1233, + 948 + ], + "score": 0.93, + "latex": "m = \\widetilde { \\mathcal { O } } ( 1 )" + }, + { + "category_id": 13, + "poly": [ + 634, + 698, + 979, + 698, + 979, + 736, + 634, + 736 + ], + "score": 0.93, + "latex": "L ^ { 3 / 2 } R / \\sqrt { n } + L ^ { 1 1 / 3 } R ^ { 4 / 3 } / m ^ { 1 / 6 }" + }, + { + "category_id": 13, + "poly": [ + 690, + 1785, + 776, + 1785, + 776, + 1825, + 690, + 1825 + ], + "score": 0.93, + "latex": "\\tilde { \\mathcal { O } } ( \\epsilon ^ { - 1 } )" + }, + { + "category_id": 13, + "poly": [ + 738, + 1459, + 880, + 1459, + 880, + 1495, + 738, + 1495 + ], + "score": 0.93, + "latex": "{ \\mathcal { F } } ( { \\mathbf { W } } ^ { ( 0 ) } , R )" + }, + { + "category_id": 13, + "poly": [ + 561, + 872, + 672, + 872, + 672, + 911, + 561, + 911 + ], + "score": 0.93, + "latex": "\\widetilde { \\mathcal { O } } ( n ^ { - 1 / 2 } )" + }, + { + "category_id": 13, + "poly": [ + 298, + 1064, + 425, + 1064, + 425, + 1104, + 298, + 1104 + ], + "score": 0.93, + "latex": "m = \\widetilde { \\cal O } ( 1 )" + }, + { + "category_id": 13, + "poly": [ + 645, + 1912, + 786, + 1912, + 786, + 1952, + 645, + 1952 + ], + "score": 0.93, + "latex": "n = \\widetilde { \\mathcal { O } } ( \\epsilon ^ { - 1 } )" + }, + { + "category_id": 13, + "poly": [ + 566, + 1949, + 685, + 1949, + 685, + 1988, + 566, + 1988 + ], + "score": 0.92, + "latex": "m = \\widetilde \\Omega ( 1 )" + }, + { + "category_id": 13, + "poly": [ + 433, + 1561, + 639, + 1561, + 639, + 1595, + 433, + 1595 + ], + "score": 0.92, + "latex": "m \\geqslant m ^ { * } ( \\delta , R , L )" + }, + { + "category_id": 13, + "poly": [ + 596, + 764, + 762, + 764, + 762, + 802, + 596, + 802 + ], + "score": 0.92, + "latex": "4 ^ { L } L ^ { 2 } R { \\sqrt { m / n } }" + }, + { + "category_id": 13, + "poly": [ + 298, + 992, + 417, + 992, + 417, + 1031, + 298, + 1031 + ], + "score": 0.92, + "latex": "{ \\cal \\tilde { O } } ( 1 / n ^ { 1 / 2 } )" + }, + { + "category_id": 13, + "poly": [ + 1315, + 369, + 1397, + 369, + 1397, + 402, + 1315, + 402 + ], + "score": 0.92, + "latex": "f _ { \\mathbf { W } } ( \\mathbf { x } )" + }, + { + "category_id": 13, + "poly": [ + 1277, + 733, + 1396, + 733, + 1396, + 767, + 1277, + 767 + ], + "score": 0.92, + "latex": "m = o ( n )" + }, + { + "category_id": 13, + "poly": [ + 296, + 368, + 780, + 368, + 780, + 406, + 296, + 406 + ], + "score": 0.92, + "latex": "L _ { \\mathcal { D } } ^ { 0 - 1 } ( \\mathbf { W } ) = \\mathbb { E } _ { ( \\mathbf { x } , y ) \\sim \\mathcal { D } } [ \\mathbb { 1 } \\left\\{ f _ { \\mathbf { W } } ( \\mathbf { x } ) \\cdot y < \\bar { 0 } \\right\\} ]" + }, + { + "category_id": 13, + "poly": [ + 499, + 801, + 842, + 801, + 842, + 839, + 499, + 839 + ], + "score": 0.92, + "latex": "L ^ { 3 / 2 } R / \\sqrt { n } + L ^ { 1 1 / 3 } R ^ { 4 / 3 } / m ^ { 1 / 6 }" + }, + { + "category_id": 13, + "poly": [ + 474, + 1822, + 619, + 1822, + 619, + 1854, + 474, + 1854 + ], + "score": 0.92, + "latex": "O ( \\epsilon _ { \\mathrm { N T R F } } + \\epsilon )" + }, + { + "category_id": 13, + "poly": [ + 1238, + 1559, + 1393, + 1559, + 1393, + 1598, + 1238, + 1598 + ], + "score": 0.92, + "latex": "\\eta = \\Theta \\bigl ( m ^ { - 1 }" + }, + { + "category_id": 13, + "poly": [ + 516, + 1423, + 624, + 1423, + 624, + 1455, + 516, + 1455 + ], + "score": 0.91, + "latex": "\\delta , R > 0" + }, + { + "category_id": 14, + "poly": [ + 310, + 481, + 1403, + 481, + 1403, + 575, + 310, + 575 + ], + "score": 0.91, + "latex": "L _ { \\mathcal { D } } ^ { 0 - 1 } ( \\mathbf { W } ^ { ( t ) } ) \\leqslant 2 L _ { S } ( \\mathbf { W } ^ { ( t ) } ) + \\widetilde { \\mathcal { O } } \\left( 4 ^ { L } L ^ { 2 } R \\sqrt { \\frac { m } { n } } \\land \\left( \\frac { L ^ { 3 / 2 } R } { \\sqrt { n } } + \\frac { L ^ { 1 1 / 3 } R ^ { 4 / 3 } } { m ^ { 1 / 6 } } \\right) \\right) + \\mathcal { O } \\left( \\sqrt { \\frac { \\log ( 1 / \\delta ) } { n } } \\right)" + }, + { + "category_id": 14, + "poly": [ + 593, + 1503, + 1103, + 1503, + 1103, + 1549, + 593, + 1549 + ], + "score": 0.91, + "latex": "m ^ { * } ( \\delta , R , L ) = \\widetilde { \\mathcal { O } } \\big ( \\mathrm { p o l y } ( R , L ) \\cdot \\log ^ { 4 / 3 } ( n / \\delta ) \\big ) ," + }, + { + "category_id": 13, + "poly": [ + 372, + 583, + 516, + 583, + 516, + 615, + 372, + 615 + ], + "score": 0.91, + "latex": "t = 0 , \\ldots , T" + }, + { + "category_id": 13, + "poly": [ + 298, + 1594, + 570, + 1594, + 570, + 1634, + 298, + 1634 + ], + "score": 0.91, + "latex": "( L R ^ { 2 } n ^ { - 1 } \\epsilon _ { \\mathrm { N T R F } } ^ { - 1 } \\land L ^ { - 1 } ) \\big \\rangle" + }, + { + "category_id": 14, + "poly": [ + 564, + 1642, + 1133, + 1642, + 1133, + 1713, + 564, + 1713 + ], + "score": 0.91, + "latex": "\\mathbb { E } \\big [ L _ { \\mathcal { D } } ^ { 0 - 1 } ( \\widehat { \\mathbf { W } } ) \\big ] \\leqslant \\frac { 8 L ^ { 2 } R ^ { 2 } } { n } + \\frac { 8 \\log ( 2 / \\delta ) } { n } + 2 4 \\epsilon _ { \\mathrm { N T R F } } ," + }, + { + "category_id": 13, + "poly": [ + 358, + 1953, + 533, + 1953, + 533, + 1988, + 358, + 1988 + ], + "score": 0.91, + "latex": "m \\geqslant \\mathrm { p o l y } ( \\epsilon ^ { - 1 } )" + }, + { + "category_id": 13, + "poly": [ + 673, + 1421, + 1203, + 1421, + 1203, + 1460, + 673, + 1460 + ], + "score": 0.9, + "latex": "\\begin{array} { r } { \\epsilon _ { \\mathrm { N T R F } } = \\operatorname* { i n f } _ { \\mathit { F } \\in \\mathcal { F } ( \\mathbf { W } ^ { ( 0 ) } , R ) } n ^ { - 1 } \\sum _ { i = 1 } ^ { n } \\ell \\big [ y _ { i } F ( \\mathbf { x } _ { i } ) \\big ] } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 387, + 1793, + 451, + 1793, + 451, + 1820, + 387, + 1820 + ], + "score": 0.89, + "latex": "\\epsilon > 0" + }, + { + "category_id": 13, + "poly": [ + 296, + 438, + 358, + 438, + 358, + 470, + 296, + 470 + ], + "score": 0.87, + "latex": "\\mathbf { W } ^ { ( t ) }" + }, + { + "category_id": 13, + "poly": [ + 853, + 962, + 930, + 962, + 930, + 990, + 853, + 990 + ], + "score": 0.87, + "latex": "L = 2" + }, + { + "category_id": 13, + "poly": [ + 1024, + 1724, + 1269, + 1724, + 1269, + 1763, + 1024, + 1763 + ], + "score": 0.86, + "latex": "\\{ \\mathbf { W } ^ { ( 0 ) } , \\ldots , \\mathbf { W } ^ { ( n - 1 ) } \\}" + }, + { + "category_id": 13, + "poly": [ + 923, + 1722, + 958, + 1722, + 958, + 1757, + 923, + 1757 + ], + "score": 0.84, + "latex": "\\widehat { \\bf W }" + }, + { + "category_id": 13, + "poly": [ + 931, + 1562, + 997, + 1562, + 997, + 1591, + 931, + 1591 + ], + "score": 0.84, + "latex": "1 - \\delta" + }, + { + "category_id": 13, + "poly": [ + 1222, + 409, + 1280, + 409, + 1280, + 438, + 1222, + 438 + ], + "score": 0.81, + "latex": "1 - \\delta" + }, + { + "category_id": 13, + "poly": [ + 1369, + 706, + 1397, + 706, + 1397, + 731, + 1369, + 731 + ], + "score": 0.78, + "latex": "m" + }, + { + "category_id": 13, + "poly": [ + 1182, + 1003, + 1208, + 1003, + 1208, + 1025, + 1182, + 1025 + ], + "score": 0.77, + "latex": "m" + }, + { + "category_id": 13, + "poly": [ + 1142, + 811, + 1162, + 811, + 1162, + 832, + 1142, + 832 + ], + "score": 0.76, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 978, + 774, + 999, + 774, + 999, + 796, + 978, + 796 + ], + "score": 0.75, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 1175, + 738, + 1194, + 738, + 1194, + 762, + 1175, + 762 + ], + "score": 0.62, + "latex": "n" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 2002.0, + 795.0, + 2002.0, + 795.0, + 2036.0, + 329.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 815.0, + 73.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1296.0, + 771.0, + 1296.0, + 771.0, + 1332.0, + 294.0, + 1332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2086.0, + 861.0, + 2086.0, + 861.0, + 2118.0, + 839.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 958.0, + 852.0, + 958.0, + 852.0, + 996.0, + 294.0, + 996.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 931.0, + 958.0, + 1406.0, + 958.0, + 1406.0, + 996.0, + 931.0, + 996.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 990.0, + 297.0, + 990.0, + 297.0, + 1033.0, + 294.0, + 1033.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 418.0, + 990.0, + 1181.0, + 990.0, + 1181.0, + 1033.0, + 418.0, + 1033.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1209.0, + 990.0, + 1407.0, + 990.0, + 1407.0, + 1033.0, + 1209.0, + 1033.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1030.0, + 897.0, + 1030.0, + 897.0, + 1069.0, + 291.0, + 1069.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1019.0, + 1030.0, + 1407.0, + 1030.0, + 1407.0, + 1069.0, + 1019.0, + 1069.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1067.0, + 297.0, + 1067.0, + 297.0, + 1106.0, + 294.0, + 1106.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 426.0, + 1067.0, + 463.0, + 1067.0, + 463.0, + 1106.0, + 426.0, + 1106.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 606.0, + 1067.0, + 1406.0, + 1067.0, + 1406.0, + 1106.0, + 606.0, + 1106.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1099.0, + 1406.0, + 1099.0, + 1406.0, + 1137.0, + 293.0, + 1137.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1130.0, + 1406.0, + 1130.0, + 1406.0, + 1167.0, + 291.0, + 1167.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1164.0, + 894.0, + 1164.0, + 894.0, + 1203.0, + 293.0, + 1203.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1015.0, + 1164.0, + 1406.0, + 1164.0, + 1406.0, + 1203.0, + 1015.0, + 1203.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1195.0, + 1408.0, + 1195.0, + 1408.0, + 1232.0, + 293.0, + 1232.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1226.0, + 440.0, + 1226.0, + 440.0, + 1262.0, + 294.0, + 1262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 635.0, + 1405.0, + 635.0, + 1405.0, + 674.0, + 293.0, + 674.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 666.0, + 1405.0, + 666.0, + 1405.0, + 704.0, + 294.0, + 704.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 694.0, + 416.0, + 694.0, + 416.0, + 742.0, + 290.0, + 742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 584.0, + 694.0, + 633.0, + 694.0, + 633.0, + 742.0, + 584.0, + 742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 980.0, + 694.0, + 1368.0, + 694.0, + 1368.0, + 742.0, + 980.0, + 742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1398.0, + 694.0, + 1410.0, + 694.0, + 1410.0, + 742.0, + 1398.0, + 742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 728.0, + 1174.0, + 728.0, + 1174.0, + 773.0, + 292.0, + 773.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1195.0, + 728.0, + 1276.0, + 728.0, + 1276.0, + 773.0, + 1195.0, + 773.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1397.0, + 728.0, + 1408.0, + 728.0, + 1408.0, + 773.0, + 1397.0, + 773.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 764.0, + 595.0, + 764.0, + 595.0, + 805.0, + 293.0, + 805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 763.0, + 764.0, + 977.0, + 764.0, + 977.0, + 805.0, + 763.0, + 805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1000.0, + 764.0, + 1229.0, + 764.0, + 1229.0, + 805.0, + 1000.0, + 805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1353.0, + 764.0, + 1407.0, + 764.0, + 1407.0, + 805.0, + 1353.0, + 805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 797.0, + 498.0, + 797.0, + 498.0, + 844.0, + 290.0, + 844.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 843.0, + 797.0, + 1141.0, + 797.0, + 1141.0, + 844.0, + 843.0, + 844.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1163.0, + 797.0, + 1409.0, + 797.0, + 1409.0, + 844.0, + 1163.0, + 844.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 840.0, + 885.0, + 840.0, + 885.0, + 877.0, + 291.0, + 877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1009.0, + 840.0, + 1408.0, + 840.0, + 1408.0, + 877.0, + 1009.0, + 877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 872.0, + 560.0, + 872.0, + 560.0, + 916.0, + 293.0, + 916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 673.0, + 872.0, + 1407.0, + 872.0, + 1407.0, + 916.0, + 673.0, + 916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 913.0, + 1232.0, + 913.0, + 1232.0, + 949.0, + 295.0, + 949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1356.0, + 913.0, + 1364.0, + 913.0, + 1364.0, + 949.0, + 1356.0, + 949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1787.0, + 386.0, + 1787.0, + 386.0, + 1827.0, + 293.0, + 1827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 452.0, + 1787.0, + 689.0, + 1787.0, + 689.0, + 1827.0, + 452.0, + 1827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 777.0, + 1787.0, + 1407.0, + 1787.0, + 1407.0, + 1827.0, + 777.0, + 1827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1820.0, + 473.0, + 1820.0, + 473.0, + 1857.0, + 294.0, + 1857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 620.0, + 1820.0, + 1406.0, + 1820.0, + 1406.0, + 1857.0, + 620.0, + 1857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1851.0, + 1406.0, + 1851.0, + 1406.0, + 1888.0, + 294.0, + 1888.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1880.0, + 1404.0, + 1880.0, + 1404.0, + 1917.0, + 294.0, + 1917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1915.0, + 470.0, + 1915.0, + 470.0, + 1955.0, + 294.0, + 1955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 613.0, + 1915.0, + 644.0, + 1915.0, + 644.0, + 1955.0, + 613.0, + 1955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 787.0, + 1915.0, + 1407.0, + 1915.0, + 1407.0, + 1955.0, + 787.0, + 1955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1953.0, + 357.0, + 1953.0, + 357.0, + 1990.0, + 295.0, + 1990.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 534.0, + 1953.0, + 565.0, + 1953.0, + 565.0, + 1990.0, + 534.0, + 1990.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 686.0, + 1953.0, + 696.0, + 1953.0, + 696.0, + 1990.0, + 686.0, + 1990.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 230.0, + 1406.0, + 230.0, + 1406.0, + 263.0, + 293.0, + 263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 262.0, + 1406.0, + 262.0, + 1406.0, + 294.0, + 293.0, + 294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 291.0, + 1137.0, + 291.0, + 1137.0, + 326.0, + 294.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1555.0, + 432.0, + 1555.0, + 432.0, + 1599.0, + 291.0, + 1599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 640.0, + 1555.0, + 930.0, + 1555.0, + 930.0, + 1599.0, + 640.0, + 1599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 998.0, + 1555.0, + 1237.0, + 1555.0, + 1237.0, + 1599.0, + 998.0, + 1599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 1555.0, + 1398.0, + 1555.0, + 1398.0, + 1599.0, + 1394.0, + 1599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 571.0, + 1590.0, + 685.0, + 1590.0, + 685.0, + 1641.0, + 571.0, + 1641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1351.0, + 1404.0, + 1351.0, + 1404.0, + 1389.0, + 295.0, + 1389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1384.0, + 1001.0, + 1384.0, + 1001.0, + 1417.0, + 294.0, + 1417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1410.0, + 515.0, + 1410.0, + 515.0, + 1470.0, + 290.0, + 1470.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 625.0, + 1410.0, + 672.0, + 1410.0, + 672.0, + 1470.0, + 625.0, + 1470.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1204.0, + 1410.0, + 1411.0, + 1410.0, + 1411.0, + 1470.0, + 1204.0, + 1470.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1455.0, + 737.0, + 1455.0, + 737.0, + 1497.0, + 294.0, + 1497.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 881.0, + 1455.0, + 1091.0, + 1455.0, + 1091.0, + 1497.0, + 881.0, + 1497.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1716.0, + 922.0, + 1716.0, + 922.0, + 1771.0, + 291.0, + 1771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 959.0, + 1716.0, + 1023.0, + 1716.0, + 1023.0, + 1771.0, + 959.0, + 1771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1270.0, + 1716.0, + 1283.0, + 1716.0, + 1283.0, + 1771.0, + 1270.0, + 1771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 578.0, + 371.0, + 578.0, + 371.0, + 617.0, + 294.0, + 617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 517.0, + 578.0, + 527.0, + 578.0, + 527.0, + 617.0, + 517.0, + 617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 334.0, + 1405.0, + 334.0, + 1405.0, + 374.0, + 291.0, + 374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 286.0, + 353.0, + 295.0, + 353.0, + 295.0, + 419.0, + 286.0, + 419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 781.0, + 353.0, + 1314.0, + 353.0, + 1314.0, + 419.0, + 781.0, + 419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1398.0, + 353.0, + 1416.0, + 353.0, + 1416.0, + 419.0, + 1398.0, + 419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 404.0, + 1221.0, + 404.0, + 1221.0, + 446.0, + 293.0, + 446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1281.0, + 404.0, + 1405.0, + 404.0, + 1405.0, + 446.0, + 1281.0, + 446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 359.0, + 437.0, + 680.0, + 437.0, + 680.0, + 476.0, + 359.0, + 476.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 4, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 1105, + 1407, + 1105, + 1407, + 1401, + 296, + 1401 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 297, + 295, + 1405, + 295, + 1405, + 485, + 297, + 485 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 297, + 1763, + 1405, + 1763, + 1405, + 1980, + 297, + 1980 + ], + "score": 0.98 + }, + { + "category_id": 8, + "poly": [ + 515, + 993, + 1180, + 993, + 1180, + 1077, + 515, + 1077 + ], + "score": 0.956 + }, + { + "category_id": 1, + "poly": [ + 293, + 1495, + 1399, + 1495, + 1399, + 1559, + 293, + 1559 + ], + "score": 0.952 + }, + { + "category_id": 8, + "poly": [ + 611, + 1618, + 1087, + 1618, + 1087, + 1690, + 611, + 1690 + ], + "score": 0.946 + }, + { + "category_id": 1, + "poly": [ + 299, + 580, + 1403, + 580, + 1403, + 643, + 299, + 643 + ], + "score": 0.946 + }, + { + "category_id": 1, + "poly": [ + 294, + 907, + 1402, + 907, + 1402, + 974, + 294, + 974 + ], + "score": 0.944 + }, + { + "category_id": 1, + "poly": [ + 295, + 651, + 1402, + 651, + 1402, + 725, + 295, + 725 + ], + "score": 0.942 + }, + { + "category_id": 1, + "poly": [ + 296, + 1705, + 1064, + 1705, + 1064, + 1739, + 296, + 1739 + ], + "score": 0.94 + }, + { + "category_id": 8, + "poly": [ + 670, + 744, + 1030, + 744, + 1030, + 786, + 670, + 786 + ], + "score": 0.938 + }, + { + "category_id": 1, + "poly": [ + 296, + 803, + 917, + 803, + 917, + 838, + 296, + 838 + ], + "score": 0.926 + }, + { + "category_id": 1, + "poly": [ + 296, + 863, + 1339, + 863, + 1339, + 898, + 296, + 898 + ], + "score": 0.922 + }, + { + "category_id": 1, + "poly": [ + 304, + 1566, + 1396, + 1566, + 1396, + 1603, + 304, + 1603 + ], + "score": 0.919 + }, + { + "category_id": 2, + "poly": [ + 327, + 2002, + 1232, + 2002, + 1232, + 2037, + 327, + 2037 + ], + "score": 0.902 + }, + { + "category_id": 2, + "poly": [ + 299, + 74, + 813, + 74, + 813, + 105, + 299, + 105 + ], + "score": 0.899 + }, + { + "category_id": 0, + "poly": [ + 298, + 1437, + 1109, + 1437, + 1109, + 1472, + 298, + 1472 + ], + "score": 0.891 + }, + { + "category_id": 0, + "poly": [ + 298, + 225, + 850, + 225, + 850, + 263, + 298, + 263 + ], + "score": 0.877 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 859, + 2088, + 859, + 2112, + 840, + 2112 + ], + "score": 0.805 + }, + { + "category_id": 0, + "poly": [ + 299, + 521, + 1122, + 521, + 1122, + 556, + 299, + 556 + ], + "score": 0.803 + }, + { + "category_id": 1, + "poly": [ + 299, + 521, + 1122, + 521, + 1122, + 556, + 299, + 556 + ], + "score": 0.12 + }, + { + "category_id": 0, + "poly": [ + 298, + 224, + 850, + 224, + 850, + 263, + 298, + 263 + ], + "score": 0.113 + }, + { + "category_id": 13, + "poly": [ + 1049, + 1568, + 1191, + 1568, + 1191, + 1603, + 1049, + 1603 + ], + "score": 0.93, + "latex": "\\| \\overline { { \\mathbf { u } } } ( \\mathbf { z } ) \\| _ { 2 } \\leqslant 1" + }, + { + "category_id": 13, + "poly": [ + 372, + 1706, + 449, + 1706, + 449, + 1740, + 372, + 1740 + ], + "score": 0.93, + "latex": "i \\in [ n ]" + }, + { + "category_id": 14, + "poly": [ + 515, + 989, + 1183, + 989, + 1183, + 1078, + 515, + 1078 + ], + "score": 0.93, + "latex": "\\epsilon _ { \\mathrm { N T R F } } : = \\operatorname* { i n f } _ { F \\in \\mathcal { F } ( \\mathbf { W } ^ { ( 0 ) } , R ) } n ^ { - 1 } \\sum _ { i = 1 } ^ { n } \\ell \\bigl ( y _ { i } F ( \\mathbf { x } _ { i } ) \\bigr ) \\leqslant \\epsilon + \\rho \\cdot \\mathcal { O } ( R ) ." + }, + { + "category_id": 13, + "poly": [ + 1258, + 295, + 1400, + 295, + 1400, + 331, + 1258, + 331 + ], + "score": 0.93, + "latex": "{ \\mathcal { F } } ( { \\bf W } ^ { ( 0 ) } , R )" + }, + { + "category_id": 13, + "poly": [ + 1241, + 1326, + 1352, + 1326, + 1352, + 1366, + 1241, + 1366 + ], + "score": 0.93, + "latex": "\\widetilde { \\mathcal { O } } ( n ^ { - 1 / 2 } )" + }, + { + "category_id": 13, + "poly": [ + 931, + 328, + 1073, + 328, + 1073, + 365, + 931, + 365 + ], + "score": 0.93, + "latex": "{ \\mathcal { F } } ( { \\bf W } ^ { ( 0 ) } , R )" + }, + { + "category_id": 14, + "poly": [ + 611, + 1617, + 1090, + 1617, + 1090, + 1690, + 611, + 1690 + ], + "score": 0.93, + "latex": "y _ { i } \\int _ { \\mathbb { R } ^ { d } } \\sigma ^ { \\prime } ( \\langle \\mathbf { z } , \\mathbf { x } _ { i } \\rangle ) \\cdot \\langle \\overline { { \\mathbf { u } } } ( \\mathbf { z } ) , \\mathbf { x } _ { i } \\rangle \\mathrm { d } \\mu _ { \\mathrm { N } } ( \\mathbf { z } ) \\geqslant \\gamma" + }, + { + "category_id": 13, + "poly": [ + 297, + 686, + 498, + 686, + 498, + 728, + 297, + 728 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { \\sum _ { l = 1 } ^ { L } \\| \\mathbf { U } _ { l } ^ { * } \\| _ { F } ^ { 2 } = 1 } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 298, + 1362, + 390, + 1362, + 390, + 1402, + 298, + 1402 + ], + "score": 0.92, + "latex": "\\tilde { \\mathcal { O } } ( n ^ { - 1 } )" + }, + { + "category_id": 13, + "poly": [ + 1042, + 1200, + 1207, + 1200, + 1207, + 1238, + 1042, + 1238 + ], + "score": 0.92, + "latex": "\\epsilon _ { \\mathrm { N T R F } } = \\tilde { O } ( \\epsilon )" + }, + { + "category_id": 13, + "poly": [ + 740, + 691, + 824, + 691, + 824, + 726, + 740, + 726 + ], + "score": 0.92, + "latex": "( 1 - \\rho )" + }, + { + "category_id": 13, + "poly": [ + 752, + 2003, + 923, + 2003, + 923, + 2036, + 752, + 2036 + ], + "score": 0.92, + "latex": "\\| \\nabla _ { \\mathbf { W } ^ { ( 0 ) } } f ( \\mathbf { x } _ { i } ) \\| _ { F }" + }, + { + "category_id": 13, + "poly": [ + 534, + 1706, + 605, + 1706, + 605, + 1740, + 534, + 1740 + ], + "score": 0.92, + "latex": "\\mu _ { N } ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 1130, + 2001, + 1224, + 2001, + 1224, + 2035, + 1130, + 2035 + ], + "score": 0.92, + "latex": "O ( m ^ { 1 / 2 } )" + }, + { + "category_id": 13, + "poly": [ + 639, + 1565, + 821, + 1565, + 821, + 1603, + 639, + 1603 + ], + "score": 0.91, + "latex": "\\overline { { \\mathbf { u } } } ( \\cdot ) : \\mathbb { R } ^ { d } \\mathbb { R } ^ { d }" + }, + { + "category_id": 13, + "poly": [ + 965, + 905, + 1363, + 905, + 1363, + 948, + 965, + 948 + ], + "score": 0.91, + "latex": "R \\geqslant C \\big [ \\log ^ { 1 / 2 } ( n / \\delta ) + \\log ( 1 / \\epsilon ) \\big ] / \\gamma" + }, + { + "category_id": 13, + "poly": [ + 802, + 804, + 909, + 804, + 909, + 839, + 802, + 839 + ], + "score": 0.91, + "latex": "\\rho \\in [ 0 , 1 )" + }, + { + "category_id": 13, + "poly": [ + 804, + 1204, + 923, + 1204, + 923, + 1237, + 804, + 1237 + ], + "score": 0.91, + "latex": "\\rho = \\mathcal { O } ( \\epsilon )" + }, + { + "category_id": 13, + "poly": [ + 792, + 423, + 850, + 423, + 850, + 456, + 792, + 456 + ], + "score": 0.91, + "latex": "\\mathcal { O } ( \\epsilon )" + }, + { + "category_id": 13, + "poly": [ + 841, + 912, + 931, + 912, + 931, + 943, + 841, + 943 + ], + "score": 0.91, + "latex": "\\epsilon , \\delta > 0" + }, + { + "category_id": 13, + "poly": [ + 870, + 1570, + 941, + 1570, + 941, + 1602, + 870, + 1602 + ], + "score": 0.91, + "latex": "\\gamma \\geqslant 0" + }, + { + "category_id": 13, + "poly": [ + 1011, + 1265, + 1399, + 1265, + 1399, + 1299, + 1011, + 1299 + ], + "score": 0.9, + "latex": "\\bar { m \\mathbf { \\bar { \\alpha } } } = \\mathrm { p o l y } ( L , \\log ( n / \\delta ) , \\log ( 1 / \\epsilon ) ) )" + }, + { + "category_id": 13, + "poly": [ + 1267, + 1567, + 1347, + 1567, + 1347, + 1598, + 1267, + 1598 + ], + "score": 0.9, + "latex": "\\mathbf { z } \\in \\mathbb { R } ^ { d }" + }, + { + "category_id": 14, + "poly": [ + 670, + 742, + 1027, + 742, + 1027, + 785, + 670, + 785 + ], + "score": 0.9, + "latex": "\\begin{array} { r } { y _ { i } \\big \\langle \\nabla f _ { \\mathbf { W } ^ { ( 0 ) } } ( \\mathbf { x } _ { i } ) , \\mathbf { U } ^ { * } \\big \\rangle \\gtrsim m ^ { 1 / 2 } \\gamma , } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 739, + 394, + 808, + 394, + 808, + 421, + 739, + 421 + ], + "score": 0.9, + "latex": "\\epsilon > 0" + }, + { + "category_id": 13, + "poly": [ + 603, + 1171, + 676, + 1171, + 676, + 1202, + 603, + 1202 + ], + "score": 0.89, + "latex": "\\rho = 0" + }, + { + "category_id": 13, + "poly": [ + 984, + 651, + 1274, + 651, + 1274, + 690, + 984, + 690 + ], + "score": 0.89, + "latex": "\\begin{array} { r l r } { \\mathbf { U } ^ { * } } & { { } = } & { \\{ \\mathbf { U } _ { 1 } ^ { * } , \\cdot \\cdot \\cdot , \\mathbf { U } _ { L } ^ { * } \\} } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 451, + 2001, + 506, + 2001, + 506, + 2031, + 451, + 2031 + ], + "score": 0.87, + "latex": "m ^ { 1 / 2 }" + }, + { + "category_id": 13, + "poly": [ + 851, + 1236, + 894, + 1236, + 894, + 1263, + 851, + 1263 + ], + "score": 0.87, + "latex": "\\epsilon ^ { - 1 }" + }, + { + "category_id": 13, + "poly": [ + 921, + 944, + 984, + 944, + 984, + 972, + 921, + 972 + ], + "score": 0.85, + "latex": "1 - \\delta" + }, + { + "category_id": 13, + "poly": [ + 561, + 944, + 585, + 944, + 585, + 970, + 561, + 970 + ], + "score": 0.82, + "latex": "C" + }, + { + "category_id": 13, + "poly": [ + 370, + 812, + 391, + 812, + 391, + 838, + 370, + 838 + ], + "score": 0.81, + "latex": "\\gamma" + }, + { + "category_id": 13, + "poly": [ + 1304, + 867, + 1328, + 867, + 1328, + 892, + 1304, + 892 + ], + "score": 0.81, + "latex": "R" + }, + { + "category_id": 13, + "poly": [ + 498, + 1237, + 523, + 1237, + 523, + 1263, + 498, + 1263 + ], + "score": 0.74, + "latex": "R" + }, + { + "category_id": 13, + "poly": [ + 298, + 363, + 322, + 363, + 322, + 389, + 298, + 389 + ], + "score": 0.72, + "latex": "R" + }, + { + "category_id": 13, + "poly": [ + 923, + 299, + 953, + 299, + 953, + 327, + 923, + 327 + ], + "score": 0.67, + "latex": "R )" + }, + { + "category_id": 13, + "poly": [ + 706, + 1234, + 786, + 1234, + 786, + 1266, + 706, + 1266 + ], + "score": 0.63, + "latex": "n , \\delta ^ { - 1 }" + }, + { + "category_id": 13, + "poly": [ + 638, + 367, + 703, + 367, + 703, + 394, + 638, + 394 + ], + "score": 0.6, + "latex": "\\epsilon _ { \\mathrm { N T R F } }" + }, + { + "category_id": 13, + "poly": [ + 1146, + 368, + 1173, + 368, + 1173, + 389, + 1146, + 389 + ], + "score": 0.6, + "latex": "m" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 1993.0, + 450.0, + 1993.0, + 450.0, + 2044.0, + 326.0, + 2044.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 507.0, + 1993.0, + 751.0, + 1993.0, + 751.0, + 2044.0, + 507.0, + 2044.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 924.0, + 1993.0, + 1129.0, + 1993.0, + 1129.0, + 2044.0, + 924.0, + 2044.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1225.0, + 1993.0, + 1236.0, + 1993.0, + 1236.0, + 2044.0, + 1225.0, + 2044.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 72.0, + 815.0, + 72.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1438.0, + 1114.0, + 1438.0, + 1114.0, + 1473.0, + 295.0, + 1473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 221.0, + 853.0, + 221.0, + 853.0, + 268.0, + 292.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2086.0, + 862.0, + 2086.0, + 862.0, + 2116.0, + 840.0, + 2116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 522.0, + 1124.0, + 522.0, + 1124.0, + 557.0, + 295.0, + 557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 225.0, + 851.0, + 225.0, + 851.0, + 266.0, + 294.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1103.0, + 1405.0, + 1103.0, + 1405.0, + 1145.0, + 293.0, + 1145.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1137.0, + 1405.0, + 1137.0, + 1405.0, + 1174.0, + 294.0, + 1174.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1168.0, + 602.0, + 1168.0, + 602.0, + 1205.0, + 293.0, + 1205.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 677.0, + 1168.0, + 1407.0, + 1168.0, + 1407.0, + 1205.0, + 677.0, + 1205.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1202.0, + 803.0, + 1202.0, + 803.0, + 1241.0, + 294.0, + 1241.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 924.0, + 1202.0, + 1041.0, + 1202.0, + 1041.0, + 1241.0, + 924.0, + 1241.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1208.0, + 1202.0, + 1407.0, + 1202.0, + 1407.0, + 1241.0, + 1208.0, + 1241.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1232.0, + 497.0, + 1232.0, + 497.0, + 1270.0, + 293.0, + 1270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 524.0, + 1232.0, + 705.0, + 1232.0, + 705.0, + 1270.0, + 524.0, + 1270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 787.0, + 1232.0, + 850.0, + 1232.0, + 850.0, + 1270.0, + 787.0, + 1270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 895.0, + 1232.0, + 1409.0, + 1232.0, + 1409.0, + 1270.0, + 895.0, + 1270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1263.0, + 1010.0, + 1263.0, + 1010.0, + 1300.0, + 293.0, + 1300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1295.0, + 1407.0, + 1295.0, + 1407.0, + 1330.0, + 293.0, + 1330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1328.0, + 1240.0, + 1328.0, + 1240.0, + 1367.0, + 294.0, + 1367.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1353.0, + 1328.0, + 1407.0, + 1328.0, + 1407.0, + 1367.0, + 1353.0, + 1367.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1359.0, + 297.0, + 1359.0, + 297.0, + 1409.0, + 294.0, + 1409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 391.0, + 1359.0, + 542.0, + 1359.0, + 542.0, + 1409.0, + 391.0, + 1409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 293.0, + 922.0, + 293.0, + 922.0, + 333.0, + 295.0, + 333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 954.0, + 293.0, + 1257.0, + 293.0, + 1257.0, + 333.0, + 954.0, + 333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 293.0, + 1405.0, + 293.0, + 1405.0, + 333.0, + 1401.0, + 333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 324.0, + 930.0, + 324.0, + 930.0, + 369.0, + 292.0, + 369.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1074.0, + 324.0, + 1407.0, + 324.0, + 1407.0, + 369.0, + 1074.0, + 369.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 362.0, + 637.0, + 362.0, + 637.0, + 398.0, + 323.0, + 398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 704.0, + 362.0, + 1145.0, + 362.0, + 1145.0, + 398.0, + 704.0, + 398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1174.0, + 362.0, + 1406.0, + 362.0, + 1406.0, + 398.0, + 1174.0, + 398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 393.0, + 738.0, + 393.0, + 738.0, + 426.0, + 294.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 809.0, + 393.0, + 1405.0, + 393.0, + 1405.0, + 426.0, + 809.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 421.0, + 791.0, + 421.0, + 791.0, + 457.0, + 294.0, + 457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 851.0, + 421.0, + 1405.0, + 421.0, + 1405.0, + 457.0, + 851.0, + 457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 456.0, + 445.0, + 456.0, + 445.0, + 490.0, + 295.0, + 490.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1765.0, + 1406.0, + 1765.0, + 1406.0, + 1800.0, + 295.0, + 1800.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1797.0, + 1403.0, + 1797.0, + 1403.0, + 1828.0, + 295.0, + 1828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1826.0, + 1405.0, + 1826.0, + 1405.0, + 1860.0, + 294.0, + 1860.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1854.0, + 1405.0, + 1854.0, + 1405.0, + 1891.0, + 294.0, + 1891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1886.0, + 1403.0, + 1886.0, + 1403.0, + 1921.0, + 295.0, + 1921.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1916.0, + 1405.0, + 1916.0, + 1405.0, + 1953.0, + 294.0, + 1953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1947.0, + 658.0, + 1947.0, + 658.0, + 1982.0, + 295.0, + 1982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1496.0, + 1404.0, + 1496.0, + 1404.0, + 1532.0, + 295.0, + 1532.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1526.0, + 1257.0, + 1526.0, + 1257.0, + 1563.0, + 295.0, + 1563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 578.0, + 1404.0, + 578.0, + 1404.0, + 617.0, + 294.0, + 617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 612.0, + 1250.0, + 612.0, + 1250.0, + 646.0, + 294.0, + 646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 905.0, + 840.0, + 905.0, + 840.0, + 950.0, + 293.0, + 950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 932.0, + 905.0, + 964.0, + 905.0, + 964.0, + 950.0, + 932.0, + 950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1364.0, + 905.0, + 1407.0, + 905.0, + 1407.0, + 950.0, + 1364.0, + 950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 941.0, + 560.0, + 941.0, + 560.0, + 977.0, + 294.0, + 977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 586.0, + 941.0, + 920.0, + 941.0, + 920.0, + 977.0, + 586.0, + 977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 985.0, + 941.0, + 996.0, + 941.0, + 996.0, + 977.0, + 985.0, + 977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 640.0, + 983.0, + 640.0, + 983.0, + 696.0, + 290.0, + 696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1275.0, + 640.0, + 1408.0, + 640.0, + 1408.0, + 696.0, + 1275.0, + 696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 677.0, + 296.0, + 677.0, + 296.0, + 737.0, + 290.0, + 737.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 499.0, + 677.0, + 739.0, + 677.0, + 739.0, + 737.0, + 499.0, + 737.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 825.0, + 677.0, + 1202.0, + 677.0, + 1202.0, + 737.0, + 825.0, + 737.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1703.0, + 371.0, + 1703.0, + 371.0, + 1743.0, + 295.0, + 1743.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 450.0, + 1703.0, + 533.0, + 1703.0, + 533.0, + 1743.0, + 450.0, + 1743.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 606.0, + 1703.0, + 1068.0, + 1703.0, + 1068.0, + 1743.0, + 606.0, + 1743.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 796.0, + 369.0, + 796.0, + 369.0, + 846.0, + 292.0, + 846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 796.0, + 801.0, + 796.0, + 801.0, + 846.0, + 392.0, + 846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 910.0, + 796.0, + 921.0, + 796.0, + 921.0, + 846.0, + 910.0, + 846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 862.0, + 1303.0, + 862.0, + 1303.0, + 902.0, + 294.0, + 902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1329.0, + 862.0, + 1338.0, + 862.0, + 1338.0, + 902.0, + 1329.0, + 902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 299.0, + 1563.0, + 638.0, + 1563.0, + 638.0, + 1607.0, + 299.0, + 1607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 822.0, + 1563.0, + 869.0, + 1563.0, + 869.0, + 1607.0, + 822.0, + 1607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 942.0, + 1563.0, + 1048.0, + 1563.0, + 1048.0, + 1607.0, + 942.0, + 1607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1192.0, + 1563.0, + 1266.0, + 1563.0, + 1266.0, + 1607.0, + 1192.0, + 1607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1348.0, + 1563.0, + 1404.0, + 1563.0, + 1404.0, + 1607.0, + 1348.0, + 1607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 522.0, + 1124.0, + 522.0, + 1124.0, + 557.0, + 295.0, + 557.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 5, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 622, + 1405, + 622, + 1405, + 835, + 296, + 835 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 296, + 1462, + 1407, + 1462, + 1407, + 1698, + 296, + 1698 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 297, + 346, + 1404, + 346, + 1404, + 450, + 297, + 450 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 297, + 454, + 1404, + 454, + 1404, + 599, + 297, + 599 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 298, + 1115, + 1405, + 1115, + 1405, + 1240, + 298, + 1240 + ], + "score": 0.971 + }, + { + "category_id": 2, + "poly": [ + 297, + 1887, + 1404, + 1887, + 1404, + 2034, + 297, + 2034 + ], + "score": 0.954 + }, + { + "category_id": 1, + "poly": [ + 293, + 229, + 1403, + 229, + 1403, + 292, + 293, + 292 + ], + "score": 0.952 + }, + { + "category_id": 1, + "poly": [ + 293, + 1254, + 1402, + 1254, + 1402, + 1317, + 293, + 1317 + ], + "score": 0.945 + }, + { + "category_id": 1, + "poly": [ + 301, + 1805, + 1405, + 1805, + 1405, + 1871, + 301, + 1871 + ], + "score": 0.944 + }, + { + "category_id": 8, + "poly": [ + 685, + 301, + 1014, + 301, + 1014, + 340, + 685, + 340 + ], + "score": 0.939 + }, + { + "category_id": 0, + "poly": [ + 298, + 1740, + 890, + 1740, + 890, + 1776, + 298, + 1776 + ], + "score": 0.918 + }, + { + "category_id": 1, + "poly": [ + 300, + 1410, + 851, + 1410, + 851, + 1443, + 300, + 1443 + ], + "score": 0.917 + }, + { + "category_id": 8, + "poly": [ + 484, + 1361, + 1182, + 1361, + 1182, + 1405, + 484, + 1405 + ], + "score": 0.916 + }, + { + "category_id": 2, + "poly": [ + 299, + 74, + 813, + 74, + 813, + 105, + 299, + 105 + ], + "score": 0.913 + }, + { + "category_id": 1, + "poly": [ + 301, + 1323, + 787, + 1323, + 787, + 1355, + 301, + 1355 + ], + "score": 0.887 + }, + { + "category_id": 1, + "poly": [ + 298, + 925, + 1405, + 925, + 1405, + 1057, + 298, + 1057 + ], + "score": 0.886 + }, + { + "category_id": 0, + "poly": [ + 297, + 869, + 923, + 869, + 923, + 902, + 297, + 902 + ], + "score": 0.882 + }, + { + "category_id": 2, + "poly": [ + 841, + 2087, + 858, + 2087, + 858, + 2111, + 841, + 2111 + ], + "score": 0.774 + }, + { + "category_id": 1, + "poly": [ + 297, + 1061, + 1351, + 1061, + 1351, + 1097, + 297, + 1097 + ], + "score": 0.746 + }, + { + "category_id": 13, + "poly": [ + 641, + 731, + 810, + 731, + 810, + 770, + 641, + 770 + ], + "score": 0.94, + "latex": "m = \\widetilde \\Omega ( 1 / \\gamma ^ { 8 } ) ^ { \\ddag }" + }, + { + "category_id": 13, + "poly": [ + 833, + 1061, + 1012, + 1061, + 1012, + 1097, + 833, + 1097 + ], + "score": 0.93, + "latex": "\\| \\mathbf { x } _ { i } - \\mathbf { x } _ { j } \\| _ { 2 } \\geqslant \\phi" + }, + { + "category_id": 13, + "poly": [ + 892, + 797, + 1003, + 797, + 1003, + 836, + 892, + 836 + ], + "score": 0.93, + "latex": "\\widetilde { \\mathcal { O } } ( n ^ { - 1 / 2 } )" + }, + { + "category_id": 13, + "poly": [ + 1025, + 622, + 1341, + 622, + 1341, + 663, + 1025, + 663 + ], + "score": 0.93, + "latex": "F _ { \\mathbf { W } ^ { ( 0 ) } , \\overline { { \\mathbf { W } } } } ( \\cdot ) \\in \\mathcal { F } ( \\mathbf { W } ^ { ( 0 ) } , R )" + }, + { + "category_id": 13, + "poly": [ + 664, + 1495, + 756, + 1495, + 756, + 1532, + 664, + 1532 + ], + "score": 0.93, + "latex": "\\Omega ( n ^ { 3 / 2 } )" + }, + { + "category_id": 13, + "poly": [ + 1056, + 797, + 1148, + 797, + 1148, + 836, + 1056, + 836 + ], + "score": 0.93, + "latex": "\\widetilde { \\mathcal { O } } ( n ^ { - 1 } )" + }, + { + "category_id": 13, + "poly": [ + 329, + 377, + 450, + 377, + 450, + 415, + 329, + 415 + ], + "score": 0.93, + "latex": "R = \\bar { \\mathcal { O } } ( 1 )" + }, + { + "category_id": 13, + "poly": [ + 600, + 416, + 756, + 416, + 756, + 451, + 600, + 451 + ], + "score": 0.93, + "latex": "\\epsilon _ { \\mathrm { N T R F } } = O ( \\epsilon )" + }, + { + "category_id": 13, + "poly": [ + 645, + 1619, + 1077, + 1619, + 1077, + 1661, + 645, + 1661 + ], + "score": 0.93, + "latex": "\\bar { m = \\Omega } \\big ( n ^ { 1 4 } L ^ { 1 6 } \\phi ^ { - 4 } + n ^ { 1 2 } L ^ { 1 6 } \\bar { \\phi } ^ { - 4 } \\epsilon ^ { - 1 } \\big )" + }, + { + "category_id": 13, + "poly": [ + 359, + 415, + 501, + 415, + 501, + 451, + 359, + 451 + ], + "score": 0.93, + "latex": "{ \\mathcal { F } } ( { \\mathbf { W } } ^ { ( 0 ) } , R )" + }, + { + "category_id": 13, + "poly": [ + 298, + 661, + 443, + 661, + 443, + 701, + 298, + 701 + ], + "score": 0.93, + "latex": "R = \\widetilde { \\mathcal { O } } ( 1 / \\gamma )" + }, + { + "category_id": 13, + "poly": [ + 831, + 1886, + 959, + 1886, + 959, + 1922, + 831, + 1922 + ], + "score": 0.92, + "latex": "m = \\widetilde \\Omega ( R ^ { 8 } )" + }, + { + "category_id": 13, + "poly": [ + 298, + 557, + 440, + 557, + 440, + 595, + 298, + 595 + ], + "score": 0.92, + "latex": "{ \\mathcal { F } } ( { \\bf W } ^ { ( 0 ) } , R )" + }, + { + "category_id": 13, + "poly": [ + 822, + 666, + 957, + 666, + 957, + 703, + 822, + 703 + ], + "score": 0.92, + "latex": "F _ { \\mathbf { W } ^ { ( 0 ) } , \\overline { { \\mathbf { W } } } } ( \\cdot )" + }, + { + "category_id": 14, + "poly": [ + 682, + 298, + 1014, + 298, + 1014, + 341, + 682, + 341 + ], + "score": 0.92, + "latex": "f _ { \\mathbf { W } } ( \\mathbf { x } ) = m ^ { 1 / 2 } \\mathbf { W } _ { 2 } \\sigma ( \\mathbf { W } _ { 1 } \\mathbf { x } ) ." + }, + { + "category_id": 13, + "poly": [ + 1221, + 520, + 1404, + 520, + 1404, + 560, + 1221, + 560 + ], + "score": 0.92, + "latex": "F _ { \\mathbf { W } ^ { ( 0 ) } , \\overline { { \\mathbf { W } } } } ( \\mathbf { x } _ { i } ) \\in" + }, + { + "category_id": 13, + "poly": [ + 297, + 1657, + 543, + 1657, + 543, + 1698, + 297, + 1698 + ], + "score": 0.91, + "latex": "L \\leqslant \\widetilde { \\mathcal { O } } ( n ^ { 1 / 3 } \\vee \\epsilon ^ { - 1 / 6 } )" + }, + { + "category_id": 13, + "poly": [ + 1195, + 456, + 1293, + 456, + 1293, + 487, + 1195, + 487 + ], + "score": 0.91, + "latex": "\\epsilon , \\delta > 0" + }, + { + "category_id": 13, + "poly": [ + 1190, + 958, + 1250, + 958, + 1250, + 997, + 1190, + 997 + ], + "score": 0.91, + "latex": "\\widetilde { \\mathcal { O } } ( 1 )" + }, + { + "category_id": 13, + "poly": [ + 553, + 558, + 939, + 558, + 939, + 599, + 553, + 599 + ], + "score": 0.91, + "latex": "\\ell \\big ( y _ { i } \\cdot F _ { \\mathbf { W } ^ { ( 0 ) } , \\overline { { \\mathbf { W } } } } ( \\mathbf { x } _ { i } ) \\big ) \\leqslant \\epsilon , \\forall i \\in [ n ] ." + }, + { + "category_id": 13, + "poly": [ + 579, + 1062, + 646, + 1062, + 646, + 1092, + 579, + 1092 + ], + "score": 0.9, + "latex": "i \\neq i ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 396, + 520, + 656, + 520, + 656, + 557, + 396, + 557 + ], + "score": 0.9, + "latex": "m = \\Omega \\big ( \\log ( n / \\delta ) / \\gamma ^ { 2 } \\big )" + }, + { + "category_id": 13, + "poly": [ + 674, + 1064, + 765, + 1064, + 765, + 1095, + 674, + 1095 + ], + "score": 0.9, + "latex": "y _ { i } \\neq y _ { i ^ { \\prime } }" + }, + { + "category_id": 13, + "poly": [ + 298, + 484, + 604, + 484, + 604, + 521, + 298, + 521 + ], + "score": 0.89, + "latex": "C \\big [ \\bar { \\log } ( n / \\delta ) + \\log ( 1 / \\bar { \\epsilon } ) \\big ] / \\gamma" + }, + { + "category_id": 13, + "poly": [ + 1097, + 701, + 1169, + 701, + 1169, + 729, + 1097, + 729 + ], + "score": 0.89, + "latex": "L = 2" + }, + { + "category_id": 14, + "poly": [ + 486, + 1361, + 1183, + 1361, + 1183, + 1406, + 486, + 1406 + ], + "score": 0.89, + "latex": "R = \\Omega \\big ( n ^ { 3 / 2 } \\phi ^ { - 1 / 2 } \\log ( n \\delta ^ { - 1 } \\epsilon ^ { - 1 } ) \\big ) , \\qquad m = \\widetilde { \\Omega } \\big ( L ^ { 2 2 } n ^ { 1 2 } \\phi ^ { - 4 } \\big ) ," + }, + { + "category_id": 13, + "poly": [ + 1148, + 1467, + 1267, + 1467, + 1267, + 1497, + 1148, + 1497 + ], + "score": 0.88, + "latex": "\\epsilon _ { \\mathrm { N T R F } } \\leqslant \\epsilon" + }, + { + "category_id": 13, + "poly": [ + 514, + 703, + 628, + 703, + 628, + 733, + 514, + 733 + ], + "score": 0.87, + "latex": "\\epsilon _ { \\mathrm { N T R F } } \\leqslant \\epsilon" + }, + { + "category_id": 13, + "poly": [ + 1343, + 456, + 1403, + 456, + 1403, + 485, + 1343, + 485 + ], + "score": 0.86, + "latex": "R =" + }, + { + "category_id": 13, + "poly": [ + 1319, + 1064, + 1338, + 1064, + 1338, + 1094, + 1319, + 1094 + ], + "score": 0.84, + "latex": "\\phi" + }, + { + "category_id": 13, + "poly": [ + 1012, + 521, + 1079, + 521, + 1079, + 551, + 1012, + 551 + ], + "score": 0.83, + "latex": "1 - \\delta" + }, + { + "category_id": 13, + "poly": [ + 780, + 1412, + 844, + 1412, + 844, + 1440, + 780, + 1440 + ], + "score": 0.82, + "latex": "1 - \\delta" + }, + { + "category_id": 13, + "poly": [ + 1059, + 487, + 1084, + 487, + 1084, + 513, + 1059, + 513 + ], + "score": 0.81, + "latex": "C" + }, + { + "category_id": 13, + "poly": [ + 1360, + 1288, + 1383, + 1288, + 1383, + 1313, + 1360, + 1313 + ], + "score": 0.81, + "latex": "R" + }, + { + "category_id": 13, + "poly": [ + 1065, + 964, + 1090, + 964, + 1090, + 992, + 1065, + 992 + ], + "score": 0.8, + "latex": "R" + }, + { + "category_id": 13, + "poly": [ + 777, + 774, + 805, + 774, + 805, + 796, + 777, + 796 + ], + "score": 0.73, + "latex": "m" + }, + { + "category_id": 13, + "poly": [ + 842, + 423, + 858, + 423, + 858, + 445, + 842, + 445 + ], + "score": 0.7, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 608, + 1292, + 624, + 1292, + 624, + 1313, + 608, + 1313 + ], + "score": 0.67, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 394, + 1413, + 509, + 1413, + 509, + 1442, + 394, + 1442 + ], + "score": 0.63, + "latex": "\\epsilon _ { \\mathrm { N T R F } } \\leqslant \\epsilon" + }, + { + "category_id": 13, + "poly": [ + 854, + 771, + 919, + 771, + 919, + 797, + 854, + 797 + ], + "score": 0.61, + "latex": "\\epsilon _ { \\mathrm { N T R F } }" + }, + { + "category_id": 13, + "poly": [ + 974, + 1147, + 1059, + 1147, + 1059, + 1179, + 974, + 1179 + ], + "score": 0.46, + "latex": "( 2 0 1 9 )" + }, + { + "category_id": 13, + "poly": [ + 461, + 1414, + 508, + 1414, + 508, + 1441, + 461, + 1441 + ], + "score": 0.32, + "latex": "\\leqslant \\epsilon" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 1886.0, + 830.0, + 1886.0, + 830.0, + 1925.0, + 329.0, + 1925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 960.0, + 1886.0, + 1238.0, + 1886.0, + 1238.0, + 1925.0, + 960.0, + 1925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 1915.0, + 1406.0, + 1915.0, + 1406.0, + 1957.0, + 329.0, + 1957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1948.0, + 1406.0, + 1948.0, + 1406.0, + 1982.0, + 292.0, + 1982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1977.0, + 1404.0, + 1977.0, + 1404.0, + 2009.0, + 294.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2004.0, + 469.0, + 2004.0, + 469.0, + 2035.0, + 293.0, + 2035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1739.0, + 893.0, + 1739.0, + 893.0, + 1779.0, + 293.0, + 1779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 72.0, + 815.0, + 72.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 869.0, + 926.0, + 869.0, + 926.0, + 904.0, + 294.0, + 904.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2086.0, + 860.0, + 2086.0, + 860.0, + 2118.0, + 839.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 621.0, + 1024.0, + 621.0, + 1024.0, + 662.0, + 293.0, + 662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1342.0, + 621.0, + 1406.0, + 621.0, + 1406.0, + 662.0, + 1342.0, + 662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 659.0, + 297.0, + 659.0, + 297.0, + 710.0, + 290.0, + 710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 444.0, + 659.0, + 821.0, + 659.0, + 821.0, + 710.0, + 444.0, + 710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 958.0, + 659.0, + 1408.0, + 659.0, + 1408.0, + 710.0, + 958.0, + 710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 697.0, + 513.0, + 697.0, + 513.0, + 736.0, + 293.0, + 736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 629.0, + 697.0, + 1096.0, + 697.0, + 1096.0, + 736.0, + 629.0, + 736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1170.0, + 697.0, + 1406.0, + 697.0, + 1406.0, + 736.0, + 1170.0, + 736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 733.0, + 640.0, + 733.0, + 640.0, + 770.0, + 293.0, + 770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 811.0, + 733.0, + 1403.0, + 733.0, + 1403.0, + 770.0, + 811.0, + 770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 766.0, + 776.0, + 766.0, + 776.0, + 801.0, + 295.0, + 801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 806.0, + 766.0, + 853.0, + 766.0, + 853.0, + 801.0, + 806.0, + 801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 920.0, + 766.0, + 1403.0, + 766.0, + 1403.0, + 801.0, + 920.0, + 801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 794.0, + 891.0, + 794.0, + 891.0, + 840.0, + 293.0, + 840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1004.0, + 794.0, + 1055.0, + 794.0, + 1055.0, + 840.0, + 1004.0, + 840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1149.0, + 794.0, + 1298.0, + 794.0, + 1298.0, + 840.0, + 1149.0, + 840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1463.0, + 1147.0, + 1463.0, + 1147.0, + 1500.0, + 295.0, + 1500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1268.0, + 1463.0, + 1407.0, + 1463.0, + 1407.0, + 1500.0, + 1268.0, + 1500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1492.0, + 663.0, + 1492.0, + 663.0, + 1535.0, + 291.0, + 1535.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 757.0, + 1492.0, + 1409.0, + 1492.0, + 1409.0, + 1535.0, + 757.0, + 1535.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1526.0, + 1409.0, + 1526.0, + 1409.0, + 1562.0, + 293.0, + 1562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1558.0, + 1405.0, + 1558.0, + 1405.0, + 1593.0, + 294.0, + 1593.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1589.0, + 1407.0, + 1589.0, + 1407.0, + 1626.0, + 294.0, + 1626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1617.0, + 644.0, + 1617.0, + 644.0, + 1664.0, + 289.0, + 1664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1078.0, + 1617.0, + 1409.0, + 1617.0, + 1409.0, + 1664.0, + 1078.0, + 1664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 544.0, + 1657.0, + 555.0, + 1657.0, + 555.0, + 1699.0, + 544.0, + 1699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 346.0, + 1404.0, + 346.0, + 1404.0, + 381.0, + 295.0, + 381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 379.0, + 328.0, + 379.0, + 328.0, + 415.0, + 295.0, + 415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 451.0, + 379.0, + 1402.0, + 379.0, + 1402.0, + 415.0, + 451.0, + 415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 412.0, + 358.0, + 412.0, + 358.0, + 455.0, + 294.0, + 455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 502.0, + 412.0, + 599.0, + 412.0, + 599.0, + 455.0, + 502.0, + 455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 757.0, + 412.0, + 841.0, + 412.0, + 841.0, + 455.0, + 757.0, + 455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 859.0, + 412.0, + 1063.0, + 412.0, + 1063.0, + 455.0, + 859.0, + 455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 450.0, + 1194.0, + 450.0, + 1194.0, + 491.0, + 292.0, + 491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1294.0, + 450.0, + 1342.0, + 450.0, + 1342.0, + 491.0, + 1294.0, + 491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 605.0, + 483.0, + 1058.0, + 483.0, + 1058.0, + 523.0, + 605.0, + 523.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1085.0, + 483.0, + 1405.0, + 483.0, + 1405.0, + 523.0, + 1085.0, + 523.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 516.0, + 395.0, + 516.0, + 395.0, + 560.0, + 292.0, + 560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 657.0, + 516.0, + 1011.0, + 516.0, + 1011.0, + 560.0, + 657.0, + 560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1080.0, + 516.0, + 1220.0, + 516.0, + 1220.0, + 560.0, + 1080.0, + 560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 554.0, + 297.0, + 554.0, + 297.0, + 602.0, + 292.0, + 602.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 441.0, + 554.0, + 552.0, + 554.0, + 552.0, + 602.0, + 441.0, + 602.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 940.0, + 554.0, + 947.0, + 554.0, + 947.0, + 602.0, + 940.0, + 602.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1117.0, + 1403.0, + 1117.0, + 1403.0, + 1149.0, + 295.0, + 1149.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1143.0, + 973.0, + 1143.0, + 973.0, + 1182.0, + 292.0, + 1182.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1060.0, + 1143.0, + 1406.0, + 1143.0, + 1406.0, + 1182.0, + 1060.0, + 1182.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1179.0, + 1405.0, + 1179.0, + 1405.0, + 1211.0, + 295.0, + 1211.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1209.0, + 494.0, + 1209.0, + 494.0, + 1243.0, + 295.0, + 1243.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 224.0, + 1406.0, + 224.0, + 1406.0, + 268.0, + 292.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 262.0, + 961.0, + 262.0, + 961.0, + 294.0, + 295.0, + 294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1252.0, + 1404.0, + 1252.0, + 1404.0, + 1289.0, + 293.0, + 1289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1286.0, + 607.0, + 1286.0, + 607.0, + 1319.0, + 293.0, + 1319.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 625.0, + 1286.0, + 1359.0, + 1286.0, + 1359.0, + 1319.0, + 625.0, + 1319.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1384.0, + 1286.0, + 1395.0, + 1286.0, + 1395.0, + 1319.0, + 1384.0, + 1319.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1804.0, + 1405.0, + 1804.0, + 1405.0, + 1842.0, + 294.0, + 1842.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1835.0, + 1322.0, + 1835.0, + 1322.0, + 1874.0, + 294.0, + 1874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1409.0, + 393.0, + 1409.0, + 393.0, + 1445.0, + 294.0, + 1445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 510.0, + 1409.0, + 779.0, + 1409.0, + 779.0, + 1445.0, + 510.0, + 1445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 845.0, + 1409.0, + 855.0, + 1409.0, + 855.0, + 1445.0, + 845.0, + 1445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1320.0, + 789.0, + 1320.0, + 789.0, + 1360.0, + 296.0, + 1360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 927.0, + 1405.0, + 927.0, + 1405.0, + 964.0, + 293.0, + 964.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 963.0, + 1064.0, + 963.0, + 1064.0, + 997.0, + 293.0, + 997.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1091.0, + 963.0, + 1189.0, + 963.0, + 1189.0, + 997.0, + 1091.0, + 997.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1251.0, + 963.0, + 1405.0, + 963.0, + 1405.0, + 997.0, + 1251.0, + 997.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 995.0, + 1405.0, + 995.0, + 1405.0, + 1028.0, + 293.0, + 1028.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1024.0, + 1408.0, + 1024.0, + 1408.0, + 1060.0, + 292.0, + 1060.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1059.0, + 578.0, + 1059.0, + 578.0, + 1099.0, + 294.0, + 1099.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 647.0, + 1059.0, + 673.0, + 1059.0, + 673.0, + 1099.0, + 647.0, + 1099.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 766.0, + 1059.0, + 832.0, + 1059.0, + 832.0, + 1099.0, + 766.0, + 1099.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1013.0, + 1059.0, + 1318.0, + 1059.0, + 1318.0, + 1099.0, + 1013.0, + 1099.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1339.0, + 1059.0, + 1349.0, + 1059.0, + 1349.0, + 1099.0, + 1339.0, + 1099.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 6, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1226, + 1405, + 1226, + 1405, + 1473, + 297, + 1473 + ], + "score": 0.986 + }, + { + "category_id": 1, + "poly": [ + 296, + 987, + 1405, + 987, + 1405, + 1215, + 296, + 1215 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 296, + 500, + 1406, + 500, + 1406, + 654, + 296, + 654 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 296, + 1691, + 1405, + 1691, + 1405, + 1908, + 296, + 1908 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 297, + 1565, + 1404, + 1565, + 1404, + 1659, + 297, + 1659 + ], + "score": 0.975 + }, + { + "category_id": 8, + "poly": [ + 446, + 877, + 1249, + 877, + 1249, + 963, + 446, + 963 + ], + "score": 0.956 + }, + { + "category_id": 1, + "poly": [ + 294, + 333, + 1405, + 333, + 1405, + 426, + 294, + 426 + ], + "score": 0.953 + }, + { + "category_id": 8, + "poly": [ + 532, + 662, + 1163, + 662, + 1163, + 721, + 532, + 721 + ], + "score": 0.952 + }, + { + "category_id": 1, + "poly": [ + 298, + 730, + 1396, + 730, + 1396, + 796, + 298, + 796 + ], + "score": 0.951 + }, + { + "category_id": 1, + "poly": [ + 294, + 1923, + 1404, + 1923, + 1404, + 1989, + 294, + 1989 + ], + "score": 0.947 + }, + { + "category_id": 8, + "poly": [ + 378, + 432, + 1315, + 432, + 1315, + 494, + 378, + 494 + ], + "score": 0.944 + }, + { + "category_id": 1, + "poly": [ + 297, + 802, + 1400, + 802, + 1400, + 868, + 297, + 868 + ], + "score": 0.941 + }, + { + "category_id": 8, + "poly": [ + 559, + 1996, + 1138, + 1996, + 1138, + 2038, + 559, + 2038 + ], + "score": 0.933 + }, + { + "category_id": 0, + "poly": [ + 301, + 1508, + 757, + 1508, + 757, + 1540, + 301, + 1540 + ], + "score": 0.913 + }, + { + "category_id": 2, + "poly": [ + 299, + 74, + 814, + 74, + 814, + 105, + 299, + 105 + ], + "score": 0.907 + }, + { + "category_id": 1, + "poly": [ + 298, + 286, + 1138, + 286, + 1138, + 320, + 298, + 320 + ], + "score": 0.881 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 859, + 2088, + 859, + 2112, + 840, + 2112 + ], + "score": 0.818 + }, + { + "category_id": 2, + "poly": [ + 299, + 230, + 687, + 230, + 687, + 261, + 299, + 261 + ], + "score": 0.519 + }, + { + "category_id": 0, + "poly": [ + 299, + 230, + 687, + 230, + 687, + 261, + 299, + 261 + ], + "score": 0.383 + }, + { + "category_id": 13, + "poly": [ + 1028, + 1922, + 1160, + 1922, + 1160, + 1959, + 1028, + 1959 + ], + "score": 0.95, + "latex": "B ( \\mathbf { W } ^ { ( 0 ) } , \\tau )" + }, + { + "category_id": 13, + "poly": [ + 907, + 802, + 1121, + 802, + 1121, + 839, + 907, + 839 + ], + "score": 0.94, + "latex": "\\mathbf { W } ^ { * } \\in { \\cal B } ( \\mathbf { W } ^ { ( 0 ) } , \\tau )" + }, + { + "category_id": 13, + "poly": [ + 1043, + 1836, + 1233, + 1836, + 1233, + 1876, + 1043, + 1876 + ], + "score": 0.94, + "latex": "m = \\widetilde \\Omega ( R ^ { 8 } L ^ { 2 2 } )" + }, + { + "category_id": 13, + "poly": [ + 1016, + 1144, + 1135, + 1144, + 1135, + 1184, + 1016, + 1184 + ], + "score": 0.93, + "latex": "m = \\widetilde { \\Omega } ( 1 )" + }, + { + "category_id": 14, + "poly": [ + 379, + 430, + 1318, + 430, + 1318, + 494, + 379, + 494 + ], + "score": 0.93, + "latex": "\\epsilon _ { \\mathrm { a p p } } ( \\tau ) : = \\operatorname* { s u p } _ { \\substack { i = 1 , \\dots , n \\mathbf { W } ^ { \\prime } , \\mathbf { W } \\in \\mathcal { B } ( \\mathbf { W } ^ { ( 0 ) } , \\tau ) } } \\big | f _ { \\mathbf { W } ^ { \\prime } } ( \\mathbf { x } _ { i } ) - f _ { \\mathbf { W } } ( \\mathbf { x } _ { i } ) - \\big \\langle \\nabla f _ { \\mathbf { W } } ( \\mathbf { x } _ { i } ) , \\mathbf { W } ^ { \\prime } - \\mathbf { W } \\big \\rangle \\big | ." + }, + { + "category_id": 13, + "poly": [ + 964, + 987, + 1189, + 987, + 1189, + 1025, + 964, + 1025 + ], + "score": 0.93, + "latex": "\\mathbf { W } ^ { ( t ) } \\in { \\cal B } ( \\mathbf { W } ^ { ( 0 ) } , \\tau )" + }, + { + "category_id": 13, + "poly": [ + 973, + 1767, + 1106, + 1767, + 1106, + 1803, + 973, + 1803 + ], + "score": 0.93, + "latex": "B ( \\mathbf { W } ^ { ( 0 ) } , \\tau )" + }, + { + "category_id": 13, + "poly": [ + 495, + 802, + 739, + 802, + 739, + 839, + 495, + 839 + ], + "score": 0.92, + "latex": "\\eta = \\mathcal { O } ( L ^ { - 1 } M ( \\tau ) ^ { - 2 } )" + }, + { + "category_id": 13, + "poly": [ + 681, + 1955, + 836, + 1955, + 836, + 1990, + 681, + 1990 + ], + "score": 0.92, + "latex": "\\epsilon _ { \\mathrm { a p p } } ( \\tau ) \\leqslant \\dot { 1 / 8 }" + }, + { + "category_id": 14, + "poly": [ + 445, + 871, + 1253, + 871, + 1253, + 964, + 445, + 964 + ], + "score": 0.92, + "latex": "\\frac { 1 } { t ^ { \\prime } } \\sum _ { t = 0 } ^ { t ^ { \\prime } - 1 } L _ { S } ( \\mathbf { W } ^ { ( t ) } ) \\leqslant \\frac { \\| \\mathbf { W } ^ { ( 0 ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } - \\| \\mathbf { W } ^ { ( t ^ { \\prime } ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } + 2 t ^ { \\prime } \\eta \\epsilon _ { \\mathrm { N T R F } } } { t ^ { \\prime } \\eta \\left( \\frac { 3 } { 2 } - 4 \\epsilon _ { \\mathrm { a p p } } ( \\tau ) \\right) } ." + }, + { + "category_id": 13, + "poly": [ + 296, + 1836, + 758, + 1836, + 758, + 1876, + 296, + 1876 + ], + "score": 0.92, + "latex": "{ \\widetilde O } ( \\tau ^ { 4 / 3 } m ^ { 1 / 2 } L ^ { 3 } ) = { \\widetilde O } ( R ^ { 4 / 3 } L ^ { 1 1 / 3 } m ^ { - 1 / 6 } )" + }, + { + "category_id": 13, + "poly": [ + 522, + 1052, + 609, + 1052, + 609, + 1086, + 522, + 1086 + ], + "score": 0.92, + "latex": "\\epsilon _ { \\mathrm { a p p } } ( \\tau )" + }, + { + "category_id": 13, + "poly": [ + 1175, + 801, + 1400, + 801, + 1400, + 839, + 1175, + 839 + ], + "score": 0.92, + "latex": "\\mathbf { W } ^ { ( t ) } \\in { \\cal B } ( \\mathbf { W } ^ { ( 0 ) } , \\tau )" + }, + { + "category_id": 13, + "poly": [ + 854, + 1727, + 1108, + 1727, + 1108, + 1766, + 854, + 1766 + ], + "score": 0.92, + "latex": "\\tau = \\widetilde { \\mathcal { O } } ( L ^ { 1 / 2 } m ^ { - 1 / 2 } R )" + }, + { + "category_id": 13, + "poly": [ + 372, + 837, + 537, + 837, + 537, + 866, + 372, + 866 + ], + "score": 0.92, + "latex": "0 \\leqslant t \\leqslant t ^ { \\prime } - 1" + }, + { + "category_id": 13, + "poly": [ + 1285, + 1803, + 1402, + 1803, + 1402, + 1840, + 1285, + 1840 + ], + "score": 0.91, + "latex": "\\epsilon _ { \\mathrm { a p p } } ( \\tau ) =" + }, + { + "category_id": 13, + "poly": [ + 624, + 731, + 915, + 731, + 915, + 768, + 624, + 768 + ], + "score": 0.91, + "latex": "\\mathbf { W } ^ { * } \\in { \\cal B } ( \\mathbf { W } ^ { ( 0 ) } , R m ^ { - 1 / 2 } )" + }, + { + "category_id": 13, + "poly": [ + 1269, + 991, + 1337, + 991, + 1337, + 1021, + 1269, + 1021 + ], + "score": 0.9, + "latex": "t \\leqslant t ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 409, + 1146, + 612, + 1146, + 612, + 1184, + 409, + 1184 + ], + "score": 0.9, + "latex": "\\epsilon _ { \\mathrm { a p p } } = \\tilde { \\mathcal { O } } ( m ^ { - 1 / 6 } )" + }, + { + "category_id": 13, + "poly": [ + 431, + 1768, + 531, + 1768, + 531, + 1798, + 431, + 1798 + ], + "score": 0.9, + "latex": "m ^ { - 1 / 2 } R" + }, + { + "category_id": 13, + "poly": [ + 297, + 1729, + 749, + 1729, + 749, + 1768, + 297, + 1768 + ], + "score": 0.9, + "latex": "\\begin{array} { r } { n ^ { - 1 } \\sum _ { i = 1 } ^ { n } \\ell \\big ( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ^ { * } } ( \\mathbf { x } _ { i } ) \\big ) \\ = \\ \\epsilon _ { \\mathrm { N T R F } } } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 532, + 660, + 1164, + 660, + 1164, + 721, + 532, + 721 + ], + "score": 0.9, + "latex": "\\begin{array} { r } { M ( \\tau ) : = \\underset { i = 1 , \\dots , n } { \\operatorname* { s u p } } \\underset { l = 1 , \\dots , L } { \\operatorname* { s u p } } \\underset { \\mathbf { W } \\in \\mathcal { B } ( \\mathbf { W } ^ { ( 0 ) } , \\tau ) } { \\operatorname* { s u p } } \\Vert \\nabla _ { \\mathbf { W } _ { l } } f _ { \\mathbf { W } } ( \\mathbf { x } _ { i } ) \\Vert _ { F } . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1026, + 731, + 1404, + 731, + 1404, + 770, + 1026, + 770 + ], + "score": 0.9, + "latex": "\\begin{array} { r } { n ^ { - 1 } \\sum _ { i = 1 } ^ { n } \\ell \\big ( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ^ { * } } ( \\mathbf { x } _ { i } ) \\big ) = } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 459, + 1114, + 689, + 1114, + 689, + 1146, + 459, + 1146 + ], + "score": 0.9, + "latex": "\\epsilon _ { \\mathrm { a p p } } ( \\tau ) = \\bar { \\mathcal { O } } ( \\epsilon _ { \\mathrm { N T R F } } )" + }, + { + "category_id": 13, + "poly": [ + 298, + 1801, + 470, + 1801, + 470, + 1838, + 298, + 1838 + ], + "score": 0.9, + "latex": "\\{ \\mathbf { W } ^ { ( t ) } \\} _ { t = 0 , \\ldots , t ^ { \\prime } }" + }, + { + "category_id": 14, + "poly": [ + 559, + 1996, + 1134, + 1996, + 1134, + 2038, + 559, + 2038 + ], + "score": 0.89, + "latex": "\\| \\mathbf { W } ^ { ( 0 ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } - \\| \\mathbf { W } ^ { ( t ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } \\geqslant - 2 t \\eta \\epsilon _ { \\mathrm { N T R F } } ," + }, + { + "category_id": 13, + "poly": [ + 554, + 1084, + 641, + 1084, + 641, + 1115, + 554, + 1115 + ], + "score": 0.88, + "latex": "\\bar { \\epsilon } _ { \\mathrm { a p p } } ( \\tau )" + }, + { + "category_id": 13, + "poly": [ + 1019, + 1958, + 1088, + 1958, + 1088, + 1985, + 1019, + 1985 + ], + "score": 0.88, + "latex": "t \\leqslant T" + }, + { + "category_id": 13, + "poly": [ + 930, + 1691, + 1268, + 1691, + 1268, + 1728, + 930, + 1728 + ], + "score": 0.86, + "latex": "\\begin{array} { r l r } { \\mathbf { W } ^ { * } } & { { } \\in } & { \\mathcal { B } ( \\mathbf { W } ^ { ( 0 ) } , R m ^ { - 1 / 2 } ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 298, + 1874, + 454, + 1874, + 454, + 1908, + 298, + 1908 + ], + "score": 0.84, + "latex": "\\epsilon _ { \\mathrm { a p p } } ( \\tau ) \\leqslant 1 / 8" + }, + { + "category_id": 13, + "poly": [ + 1298, + 1768, + 1350, + 1768, + 1350, + 1799, + 1298, + 1799 + ], + "score": 0.83, + "latex": "\\mathbf { W } ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 333, + 1598, + 357, + 1598, + 357, + 1624, + 333, + 1624 + ], + "score": 0.8, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 644, + 401, + 662, + 401, + 662, + 423, + 644, + 423 + ], + "score": 0.76, + "latex": "\\tau" + }, + { + "category_id": 13, + "poly": [ + 988, + 1805, + 1029, + 1805, + 1029, + 1834, + 988, + 1834 + ], + "score": 0.41, + "latex": "\\mathrm { G u }" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1507.0, + 763.0, + 1507.0, + 763.0, + 1543.0, + 295.0, + 1543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 72.0, + 815.0, + 72.0, + 815.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2085.0, + 861.0, + 2085.0, + 861.0, + 2116.0, + 839.0, + 2116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 227.0, + 688.0, + 227.0, + 688.0, + 265.0, + 295.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 227.0, + 688.0, + 227.0, + 688.0, + 265.0, + 295.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1227.0, + 1406.0, + 1227.0, + 1406.0, + 1263.0, + 295.0, + 1263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1259.0, + 1405.0, + 1259.0, + 1405.0, + 1293.0, + 294.0, + 1293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1290.0, + 1405.0, + 1290.0, + 1405.0, + 1324.0, + 294.0, + 1324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1318.0, + 1405.0, + 1318.0, + 1405.0, + 1354.0, + 292.0, + 1354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1351.0, + 1405.0, + 1351.0, + 1405.0, + 1384.0, + 294.0, + 1384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1377.0, + 1406.0, + 1377.0, + 1406.0, + 1417.0, + 292.0, + 1417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1410.0, + 1406.0, + 1410.0, + 1406.0, + 1445.0, + 292.0, + 1445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1441.0, + 755.0, + 1441.0, + 755.0, + 1475.0, + 294.0, + 1475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 983.0, + 963.0, + 983.0, + 963.0, + 1029.0, + 291.0, + 1029.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1190.0, + 983.0, + 1268.0, + 983.0, + 1268.0, + 1029.0, + 1190.0, + 1029.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1338.0, + 983.0, + 1407.0, + 983.0, + 1407.0, + 1029.0, + 1338.0, + 1029.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1019.0, + 1406.0, + 1019.0, + 1406.0, + 1057.0, + 294.0, + 1057.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1050.0, + 521.0, + 1050.0, + 521.0, + 1088.0, + 291.0, + 1088.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 610.0, + 1050.0, + 1407.0, + 1050.0, + 1407.0, + 1088.0, + 610.0, + 1088.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1079.0, + 553.0, + 1079.0, + 553.0, + 1123.0, + 293.0, + 1123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 642.0, + 1079.0, + 1411.0, + 1079.0, + 1411.0, + 1123.0, + 642.0, + 1123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1110.0, + 458.0, + 1110.0, + 458.0, + 1154.0, + 293.0, + 1154.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 690.0, + 1110.0, + 1408.0, + 1110.0, + 1408.0, + 1154.0, + 690.0, + 1154.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1142.0, + 408.0, + 1142.0, + 408.0, + 1188.0, + 290.0, + 1188.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 613.0, + 1142.0, + 1015.0, + 1142.0, + 1015.0, + 1188.0, + 613.0, + 1188.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1136.0, + 1142.0, + 1408.0, + 1142.0, + 1408.0, + 1188.0, + 1136.0, + 1188.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1180.0, + 839.0, + 1180.0, + 839.0, + 1220.0, + 294.0, + 1220.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 499.0, + 1408.0, + 499.0, + 1408.0, + 537.0, + 294.0, + 537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 532.0, + 1404.0, + 532.0, + 1404.0, + 565.0, + 295.0, + 565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 562.0, + 1404.0, + 562.0, + 1404.0, + 596.0, + 296.0, + 596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 592.0, + 1406.0, + 592.0, + 1406.0, + 627.0, + 294.0, + 627.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 619.0, + 1341.0, + 619.0, + 1341.0, + 659.0, + 293.0, + 659.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1688.0, + 929.0, + 1688.0, + 929.0, + 1730.0, + 291.0, + 1730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1269.0, + 1688.0, + 1407.0, + 1688.0, + 1407.0, + 1730.0, + 1269.0, + 1730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 283.0, + 1714.0, + 296.0, + 1714.0, + 296.0, + 1785.0, + 283.0, + 1785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 750.0, + 1714.0, + 853.0, + 1714.0, + 853.0, + 1785.0, + 750.0, + 1785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1109.0, + 1714.0, + 1415.0, + 1714.0, + 1415.0, + 1785.0, + 1109.0, + 1785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1764.0, + 430.0, + 1764.0, + 430.0, + 1806.0, + 291.0, + 1806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 532.0, + 1764.0, + 972.0, + 1764.0, + 972.0, + 1806.0, + 532.0, + 1806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1107.0, + 1764.0, + 1297.0, + 1764.0, + 1297.0, + 1806.0, + 1107.0, + 1806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1351.0, + 1764.0, + 1407.0, + 1764.0, + 1407.0, + 1806.0, + 1351.0, + 1806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1796.0, + 297.0, + 1796.0, + 297.0, + 1845.0, + 291.0, + 1845.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 471.0, + 1796.0, + 987.0, + 1796.0, + 987.0, + 1845.0, + 471.0, + 1845.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1030.0, + 1796.0, + 1284.0, + 1796.0, + 1284.0, + 1845.0, + 1030.0, + 1845.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1403.0, + 1796.0, + 1407.0, + 1796.0, + 1407.0, + 1845.0, + 1403.0, + 1845.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 759.0, + 1833.0, + 1042.0, + 1833.0, + 1042.0, + 1879.0, + 759.0, + 1879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1234.0, + 1833.0, + 1407.0, + 1833.0, + 1407.0, + 1879.0, + 1234.0, + 1879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1870.0, + 297.0, + 1870.0, + 297.0, + 1909.0, + 291.0, + 1909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 455.0, + 1870.0, + 468.0, + 1870.0, + 468.0, + 1909.0, + 455.0, + 1909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1566.0, + 1405.0, + 1566.0, + 1405.0, + 1600.0, + 295.0, + 1600.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1595.0, + 332.0, + 1595.0, + 332.0, + 1631.0, + 294.0, + 1631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 358.0, + 1595.0, + 1405.0, + 1595.0, + 1405.0, + 1631.0, + 358.0, + 1631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1624.0, + 981.0, + 1624.0, + 981.0, + 1661.0, + 294.0, + 1661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 334.0, + 1403.0, + 334.0, + 1403.0, + 367.0, + 296.0, + 367.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 365.0, + 1406.0, + 365.0, + 1406.0, + 400.0, + 293.0, + 400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 396.0, + 643.0, + 396.0, + 643.0, + 430.0, + 293.0, + 430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 663.0, + 396.0, + 1068.0, + 396.0, + 1068.0, + 430.0, + 663.0, + 430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 723.0, + 623.0, + 723.0, + 623.0, + 780.0, + 289.0, + 780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 916.0, + 723.0, + 1025.0, + 723.0, + 1025.0, + 780.0, + 916.0, + 780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 762.0, + 781.0, + 762.0, + 781.0, + 801.0, + 293.0, + 801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1918.0, + 1027.0, + 1918.0, + 1027.0, + 1959.0, + 293.0, + 1959.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1161.0, + 1918.0, + 1406.0, + 1918.0, + 1406.0, + 1959.0, + 1161.0, + 1959.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1953.0, + 680.0, + 1953.0, + 680.0, + 1988.0, + 294.0, + 1988.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 837.0, + 1953.0, + 1018.0, + 1953.0, + 1018.0, + 1988.0, + 837.0, + 1988.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1089.0, + 1953.0, + 1100.0, + 1953.0, + 1100.0, + 1988.0, + 1089.0, + 1988.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 795.0, + 494.0, + 795.0, + 494.0, + 845.0, + 292.0, + 845.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 740.0, + 795.0, + 906.0, + 795.0, + 906.0, + 845.0, + 740.0, + 845.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1122.0, + 795.0, + 1174.0, + 795.0, + 1174.0, + 845.0, + 1122.0, + 845.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 834.0, + 371.0, + 834.0, + 371.0, + 870.0, + 295.0, + 870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 538.0, + 834.0, + 753.0, + 834.0, + 753.0, + 870.0, + 538.0, + 870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 284.0, + 1141.0, + 284.0, + 1141.0, + 323.0, + 295.0, + 323.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 7, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 768, + 1405, + 768, + 1405, + 923, + 297, + 923 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 1008, + 1405, + 1008, + 1405, + 1164, + 298, + 1164 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 298, + 346, + 1404, + 346, + 1404, + 447, + 298, + 447 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 298, + 559, + 1406, + 559, + 1406, + 657, + 298, + 657 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 298, + 226, + 1405, + 226, + 1405, + 335, + 298, + 335 + ], + "score": 0.969 + }, + { + "category_id": 8, + "poly": [ + 557, + 463, + 1140, + 463, + 1140, + 545, + 557, + 545 + ], + "score": 0.95 + }, + { + "category_id": 0, + "poly": [ + 299, + 700, + 544, + 700, + 544, + 736, + 299, + 736 + ], + "score": 0.92 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 813, + 75, + 813, + 105, + 299, + 105 + ], + "score": 0.907 + }, + { + "category_id": 0, + "poly": [ + 300, + 958, + 559, + 958, + 559, + 987, + 300, + 987 + ], + "score": 0.89 + }, + { + "category_id": 0, + "poly": [ + 299, + 1208, + 488, + 1208, + 488, + 1241, + 299, + 1241 + ], + "score": 0.881 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 859, + 2088, + 859, + 2111, + 840, + 2111 + ], + "score": 0.785 + }, + { + "category_id": 1, + "poly": [ + 297, + 1258, + 1403, + 1258, + 1403, + 1322, + 297, + 1322 + ], + "score": 0.736 + }, + { + "category_id": 1, + "poly": [ + 299, + 1337, + 1399, + 1337, + 1399, + 1404, + 299, + 1404 + ], + "score": 0.594 + }, + { + "category_id": 1, + "poly": [ + 298, + 1420, + 1396, + 1420, + 1396, + 1485, + 298, + 1485 + ], + "score": 0.546 + }, + { + "category_id": 1, + "poly": [ + 298, + 1501, + 1400, + 1501, + 1400, + 1597, + 298, + 1597 + ], + "score": 0.538 + }, + { + "category_id": 1, + "poly": [ + 298, + 1725, + 1400, + 1725, + 1400, + 1791, + 298, + 1791 + ], + "score": 0.531 + }, + { + "category_id": 1, + "poly": [ + 300, + 1971, + 1398, + 1971, + 1398, + 2035, + 300, + 2035 + ], + "score": 0.43 + }, + { + "category_id": 1, + "poly": [ + 300, + 1806, + 1401, + 1806, + 1401, + 1872, + 300, + 1872 + ], + "score": 0.423 + }, + { + "category_id": 1, + "poly": [ + 301, + 1887, + 1397, + 1887, + 1397, + 1954, + 301, + 1954 + ], + "score": 0.406 + }, + { + "category_id": 1, + "poly": [ + 298, + 1613, + 1402, + 1613, + 1402, + 1709, + 298, + 1709 + ], + "score": 0.192 + }, + { + "category_id": 14, + "poly": [ + 555, + 458, + 1144, + 458, + 1144, + 551, + 555, + 551 + ], + "score": 0.94, + "latex": "\\frac { 1 } { T } \\sum _ { t = 0 } ^ { T - 1 } L _ { S } ( \\mathbf { W } ^ { ( t ) } ) \\leqslant \\frac { 1 } { \\eta T } \\| \\mathbf { W } ^ { ( 0 ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } + 2 \\epsilon _ { \\mathrm { N T R F } } ." + }, + { + "category_id": 13, + "poly": [ + 769, + 591, + 992, + 591, + 992, + 627, + 769, + 627 + ], + "score": 0.93, + "latex": "\\mathbf { W } ^ { ( 0 ) } , \\ldots , \\mathbf { W } ^ { ( T - 1 ) }" + }, + { + "category_id": 13, + "poly": [ + 659, + 227, + 846, + 227, + 846, + 264, + 659, + 264 + ], + "score": 0.93, + "latex": "\\| \\mathbf { W } ^ { ( t ) } - \\mathbf { W } ^ { * } \\| _ { F }" + }, + { + "category_id": 13, + "poly": [ + 298, + 295, + 490, + 295, + 490, + 336, + 298, + 336 + ], + "score": 0.92, + "latex": "{ \\widetilde O } ( L ^ { 1 / 2 } m ^ { - 1 / 2 } R )" + }, + { + "category_id": 13, + "poly": [ + 299, + 411, + 484, + 411, + 484, + 449, + 299, + 449 + ], + "score": 0.92, + "latex": "\\| \\mathbf { W } ^ { ( t ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1053, + 380, + 1181, + 380, + 1181, + 413, + 1053, + 413 + ], + "score": 0.91, + "latex": "\\epsilon _ { \\mathrm { a p p } } \\leqslant 1 / 8" + }, + { + "category_id": 13, + "poly": [ + 713, + 297, + 937, + 297, + 937, + 335, + 713, + 335 + ], + "score": 0.91, + "latex": "\\mathbf { W } ^ { ( t ) } \\in { \\cal B } ( \\mathbf { W } ^ { ( 0 ) } , \\tau )" + }, + { + "category_id": 13, + "poly": [ + 981, + 302, + 1173, + 302, + 1173, + 334, + 981, + 334 + ], + "score": 0.9, + "latex": "t = 0 , \\ldots , T - 1" + }, + { + "category_id": 13, + "poly": [ + 1223, + 829, + 1266, + 829, + 1266, + 858, + 1223, + 858 + ], + "score": 0.9, + "latex": "\\epsilon ^ { - 1 }" + }, + { + "category_id": 13, + "poly": [ + 842, + 261, + 1402, + 261, + 1402, + 299, + 842, + 299 + ], + "score": 0.89, + "latex": "\\| \\mathbf { W } ^ { ( t ) } - \\mathbf { W } ^ { ( 0 ) } \\| _ { F } \\leqslant m ^ { - 1 / 2 } R + \\sqrt { 2 T \\eta \\epsilon _ { \\mathrm { N T R F } } } \\ =" + }, + { + "category_id": 13, + "poly": [ + 431, + 563, + 455, + 563, + 455, + 588, + 431, + 588 + ], + "score": 0.83, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 298, + 382, + 320, + 382, + 320, + 407, + 298, + 407 + ], + "score": 0.8, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 1107, + 351, + 1185, + 351, + 1185, + 379, + 1107, + 379 + ], + "score": 0.8, + "latex": "3 \\epsilon _ { \\mathrm { N T R F } }" + }, + { + "category_id": 13, + "poly": [ + 867, + 835, + 888, + 835, + 888, + 859, + 867, + 859 + ], + "score": 0.76, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 297, + 626, + 375, + 626, + 375, + 656, + 297, + 656 + ], + "score": 0.5, + "latex": "3 \\epsilon _ { \\mathrm { N T R F } }" + }, + { + "category_id": 13, + "poly": [ + 1122, + 232, + 1176, + 232, + 1176, + 262, + 1122, + 262 + ], + "score": 0.47, + "latex": "\\eta , T" + }, + { + "category_id": 13, + "poly": [ + 1152, + 232, + 1176, + 232, + 1176, + 259, + 1152, + 259 + ], + "score": 0.34, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 1122, + 236, + 1140, + 236, + 1140, + 262, + 1122, + 262 + ], + "score": 0.33, + "latex": "\\eta" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 693.0, + 550.0, + 693.0, + 550.0, + 745.0, + 292.0, + 745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 815.0, + 73.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 299.0, + 959.0, + 561.0, + 959.0, + 561.0, + 989.0, + 299.0, + 989.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1208.0, + 490.0, + 1208.0, + 490.0, + 1245.0, + 297.0, + 1245.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2087.0, + 861.0, + 2087.0, + 861.0, + 2117.0, + 839.0, + 2117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 767.0, + 1405.0, + 767.0, + 1405.0, + 804.0, + 292.0, + 804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 799.0, + 1402.0, + 799.0, + 1402.0, + 832.0, + 295.0, + 832.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 831.0, + 866.0, + 831.0, + 866.0, + 864.0, + 295.0, + 864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 889.0, + 831.0, + 1222.0, + 831.0, + 1222.0, + 864.0, + 889.0, + 864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1267.0, + 831.0, + 1405.0, + 831.0, + 1405.0, + 864.0, + 1267.0, + 864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 859.0, + 1406.0, + 859.0, + 1406.0, + 897.0, + 292.0, + 897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 891.0, + 545.0, + 891.0, + 545.0, + 928.0, + 295.0, + 928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1010.0, + 1403.0, + 1010.0, + 1403.0, + 1043.0, + 297.0, + 1043.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1038.0, + 1405.0, + 1038.0, + 1405.0, + 1074.0, + 293.0, + 1074.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1071.0, + 1406.0, + 1071.0, + 1406.0, + 1105.0, + 296.0, + 1105.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1099.0, + 1406.0, + 1099.0, + 1406.0, + 1137.0, + 293.0, + 1137.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1131.0, + 919.0, + 1131.0, + 919.0, + 1167.0, + 295.0, + 1167.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 348.0, + 1106.0, + 348.0, + 1106.0, + 383.0, + 294.0, + 383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1186.0, + 348.0, + 1402.0, + 348.0, + 1402.0, + 383.0, + 1186.0, + 383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 378.0, + 297.0, + 378.0, + 297.0, + 415.0, + 293.0, + 415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 378.0, + 1052.0, + 378.0, + 1052.0, + 415.0, + 321.0, + 415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1182.0, + 378.0, + 1404.0, + 378.0, + 1404.0, + 415.0, + 1182.0, + 415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 485.0, + 409.0, + 911.0, + 409.0, + 911.0, + 452.0, + 485.0, + 452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 553.0, + 430.0, + 553.0, + 430.0, + 601.0, + 292.0, + 601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 456.0, + 553.0, + 1411.0, + 553.0, + 1411.0, + 601.0, + 456.0, + 601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 582.0, + 768.0, + 582.0, + 768.0, + 634.0, + 288.0, + 634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 993.0, + 582.0, + 1411.0, + 582.0, + 1411.0, + 634.0, + 993.0, + 634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 622.0, + 296.0, + 622.0, + 296.0, + 664.0, + 292.0, + 664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 376.0, + 622.0, + 392.0, + 622.0, + 392.0, + 664.0, + 376.0, + 664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1373.0, + 625.0, + 1406.0, + 625.0, + 1406.0, + 656.0, + 1373.0, + 656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 222.0, + 658.0, + 222.0, + 658.0, + 270.0, + 292.0, + 270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 847.0, + 222.0, + 1121.0, + 222.0, + 1121.0, + 270.0, + 847.0, + 270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1177.0, + 222.0, + 1411.0, + 222.0, + 1411.0, + 270.0, + 1177.0, + 270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 254.0, + 841.0, + 254.0, + 841.0, + 305.0, + 290.0, + 305.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 491.0, + 294.0, + 712.0, + 294.0, + 712.0, + 338.0, + 491.0, + 338.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 938.0, + 294.0, + 980.0, + 294.0, + 980.0, + 338.0, + 938.0, + 338.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1174.0, + 294.0, + 1187.0, + 294.0, + 1187.0, + 338.0, + 1174.0, + 338.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1258.0, + 1405.0, + 1258.0, + 1405.0, + 1294.0, + 297.0, + 1294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1289.0, + 1409.0, + 1289.0, + 1409.0, + 1325.0, + 322.0, + 1325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1337.0, + 1404.0, + 1337.0, + 1404.0, + 1377.0, + 295.0, + 1377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1369.0, + 1155.0, + 1369.0, + 1155.0, + 1408.0, + 322.0, + 1408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1419.0, + 1401.0, + 1419.0, + 1401.0, + 1458.0, + 295.0, + 1458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1454.0, + 1065.0, + 1454.0, + 1065.0, + 1486.0, + 324.0, + 1486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1499.0, + 1405.0, + 1499.0, + 1405.0, + 1539.0, + 293.0, + 1539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1534.0, + 1404.0, + 1534.0, + 1404.0, + 1569.0, + 324.0, + 1569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1562.0, + 577.0, + 1562.0, + 577.0, + 1602.0, + 324.0, + 1602.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1724.0, + 1404.0, + 1724.0, + 1404.0, + 1763.0, + 294.0, + 1763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1758.0, + 1260.0, + 1758.0, + 1260.0, + 1793.0, + 323.0, + 1793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1967.0, + 1404.0, + 1967.0, + 1404.0, + 2009.0, + 294.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 2002.0, + 1142.0, + 2002.0, + 1142.0, + 2038.0, + 322.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1805.0, + 1403.0, + 1805.0, + 1403.0, + 1846.0, + 294.0, + 1846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1836.0, + 1270.0, + 1836.0, + 1270.0, + 1875.0, + 321.0, + 1875.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1890.0, + 1402.0, + 1890.0, + 1402.0, + 1923.0, + 297.0, + 1923.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1921.0, + 1231.0, + 1921.0, + 1231.0, + 1957.0, + 323.0, + 1957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1614.0, + 1406.0, + 1614.0, + 1406.0, + 1649.0, + 296.0, + 1649.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 1643.0, + 1406.0, + 1643.0, + 1406.0, + 1684.0, + 318.0, + 1684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 1672.0, + 430.0, + 1672.0, + 430.0, + 1715.0, + 318.0, + 1715.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 8, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 299, + 75, + 814, + 75, + 814, + 105, + 299, + 105 + ], + "score": 0.89 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2113, + 836, + 2113 + ], + "score": 0.845 + }, + { + "category_id": 1, + "poly": [ + 288, + 70, + 1411, + 70, + 1411, + 2059, + 288, + 2059 + ], + "score": 0.566 + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 815.0, + 73.0, + 815.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 830.0, + 2085.0, + 869.0, + 2085.0, + 869.0, + 2123.0, + 830.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 70.0, + 818.0, + 70.0, + 818.0, + 109.0, + 291.0, + 109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 231.0, + 1406.0, + 231.0, + 1406.0, + 266.0, + 295.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 314.0, + 257.0, + 1414.0, + 257.0, + 1414.0, + 303.0, + 314.0, + 303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 312.0, + 1406.0, + 312.0, + 1406.0, + 346.0, + 295.0, + 346.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 340.0, + 1208.0, + 340.0, + 1208.0, + 381.0, + 319.0, + 381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 388.0, + 1408.0, + 388.0, + 1408.0, + 431.0, + 291.0, + 431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 425.0, + 917.0, + 425.0, + 917.0, + 460.0, + 317.0, + 460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 468.0, + 1410.0, + 468.0, + 1410.0, + 512.0, + 291.0, + 512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 501.0, + 1149.0, + 501.0, + 1149.0, + 544.0, + 317.0, + 544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 555.0, + 1406.0, + 555.0, + 1406.0, + 590.0, + 295.0, + 590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 584.0, + 1393.0, + 584.0, + 1393.0, + 625.0, + 319.0, + 625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 629.0, + 1410.0, + 629.0, + 1410.0, + 673.0, + 291.0, + 673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 668.0, + 1302.0, + 668.0, + 1302.0, + 703.0, + 321.0, + 703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 712.0, + 1410.0, + 712.0, + 1410.0, + 756.0, + 291.0, + 756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 749.0, + 1406.0, + 749.0, + 1406.0, + 784.0, + 321.0, + 784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 779.0, + 552.0, + 779.0, + 552.0, + 814.0, + 321.0, + 814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 829.0, + 1406.0, + 829.0, + 1406.0, + 864.0, + 295.0, + 864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 314.0, + 856.0, + 1327.0, + 856.0, + 1327.0, + 901.0, + 314.0, + 901.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 910.0, + 1404.0, + 910.0, + 1404.0, + 945.0, + 295.0, + 945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 314.0, + 939.0, + 651.0, + 939.0, + 651.0, + 975.0, + 314.0, + 975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 991.0, + 1406.0, + 991.0, + 1406.0, + 1025.0, + 295.0, + 1025.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1017.0, + 1406.0, + 1017.0, + 1406.0, + 1062.0, + 319.0, + 1062.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1056.0, + 516.0, + 1056.0, + 516.0, + 1084.0, + 323.0, + 1084.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1097.0, + 1408.0, + 1097.0, + 1408.0, + 1141.0, + 291.0, + 1141.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 1128.0, + 1410.0, + 1128.0, + 1410.0, + 1171.0, + 317.0, + 1171.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1160.0, + 798.0, + 1160.0, + 798.0, + 1199.0, + 319.0, + 1199.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1208.0, + 1289.0, + 1208.0, + 1289.0, + 1252.0, + 291.0, + 1252.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1263.0, + 1408.0, + 1263.0, + 1408.0, + 1297.0, + 295.0, + 1297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1295.0, + 1408.0, + 1295.0, + 1408.0, + 1330.0, + 321.0, + 1330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1326.0, + 920.0, + 1326.0, + 920.0, + 1360.0, + 319.0, + 1360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1369.0, + 1410.0, + 1369.0, + 1410.0, + 1415.0, + 291.0, + 1415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1404.0, + 459.0, + 1404.0, + 459.0, + 1445.0, + 319.0, + 1445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1454.0, + 1404.0, + 1454.0, + 1404.0, + 1489.0, + 295.0, + 1489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1489.0, + 1408.0, + 1489.0, + 1408.0, + 1524.0, + 321.0, + 1524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 1515.0, + 713.0, + 1515.0, + 713.0, + 1554.0, + 316.0, + 1554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1563.0, + 1406.0, + 1563.0, + 1406.0, + 1606.0, + 291.0, + 1606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 1595.0, + 1404.0, + 1595.0, + 1404.0, + 1635.0, + 317.0, + 1635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1648.0, + 1402.0, + 1648.0, + 1402.0, + 1682.0, + 295.0, + 1682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1680.0, + 807.0, + 1680.0, + 807.0, + 1715.0, + 321.0, + 1715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1730.0, + 565.0, + 1730.0, + 565.0, + 1765.0, + 295.0, + 1765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 574.0, + 1724.0, + 1408.0, + 1724.0, + 1408.0, + 1770.0, + 574.0, + 1770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1761.0, + 550.0, + 1761.0, + 550.0, + 1793.0, + 319.0, + 1793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1811.0, + 1404.0, + 1811.0, + 1404.0, + 1846.0, + 297.0, + 1846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 314.0, + 1842.0, + 634.0, + 1842.0, + 634.0, + 1876.0, + 314.0, + 1876.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1887.0, + 1408.0, + 1887.0, + 1408.0, + 1931.0, + 291.0, + 1931.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1915.0, + 807.0, + 1915.0, + 807.0, + 1965.0, + 319.0, + 1965.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1968.0, + 1408.0, + 1968.0, + 1408.0, + 2011.0, + 291.0, + 2011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 1998.0, + 1072.0, + 1998.0, + 1072.0, + 2042.0, + 317.0, + 2042.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 9, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 775, + 1407, + 775, + 1407, + 923, + 296, + 923 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 297, + 1410, + 1406, + 1410, + 1406, + 1517, + 297, + 1517 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 296, + 993, + 1409, + 993, + 1409, + 1091, + 296, + 1091 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 297, + 1294, + 1405, + 1294, + 1405, + 1396, + 297, + 1396 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 296, + 460, + 1406, + 460, + 1406, + 553, + 296, + 553 + ], + "score": 0.969 + }, + { + "category_id": 8, + "poly": [ + 520, + 1808, + 1178, + 1808, + 1178, + 1948, + 520, + 1948 + ], + "score": 0.968 + }, + { + "category_id": 8, + "poly": [ + 650, + 680, + 1050, + 680, + 1050, + 761, + 650, + 761 + ], + "score": 0.954 + }, + { + "category_id": 1, + "poly": [ + 298, + 1963, + 1400, + 1963, + 1400, + 2037, + 298, + 2037 + ], + "score": 0.946 + }, + { + "category_id": 1, + "poly": [ + 297, + 1207, + 1403, + 1207, + 1403, + 1283, + 297, + 1283 + ], + "score": 0.944 + }, + { + "category_id": 8, + "poly": [ + 458, + 1106, + 1241, + 1106, + 1241, + 1194, + 458, + 1194 + ], + "score": 0.943 + }, + { + "category_id": 8, + "poly": [ + 529, + 1637, + 1168, + 1637, + 1168, + 1723, + 529, + 1723 + ], + "score": 0.943 + }, + { + "category_id": 1, + "poly": [ + 296, + 1734, + 1401, + 1734, + 1401, + 1800, + 296, + 1800 + ], + "score": 0.939 + }, + { + "category_id": 8, + "poly": [ + 755, + 935, + 942, + 935, + 942, + 978, + 755, + 978 + ], + "score": 0.938 + }, + { + "category_id": 8, + "poly": [ + 569, + 560, + 1126, + 560, + 1126, + 606, + 569, + 606 + ], + "score": 0.933 + }, + { + "category_id": 1, + "poly": [ + 296, + 631, + 951, + 631, + 951, + 665, + 296, + 665 + ], + "score": 0.933 + }, + { + "category_id": 1, + "poly": [ + 300, + 1582, + 1169, + 1582, + 1169, + 1623, + 300, + 1623 + ], + "score": 0.931 + }, + { + "category_id": 1, + "poly": [ + 295, + 293, + 1071, + 293, + 1071, + 328, + 295, + 328 + ], + "score": 0.929 + }, + { + "category_id": 8, + "poly": [ + 567, + 1529, + 1130, + 1529, + 1130, + 1572, + 567, + 1572 + ], + "score": 0.928 + }, + { + "category_id": 0, + "poly": [ + 300, + 225, + 763, + 225, + 763, + 263, + 300, + 263 + ], + "score": 0.92 + }, + { + "category_id": 1, + "poly": [ + 297, + 419, + 1162, + 419, + 1162, + 454, + 297, + 454 + ], + "score": 0.917 + }, + { + "category_id": 2, + "poly": [ + 298, + 73, + 814, + 73, + 814, + 106, + 298, + 106 + ], + "score": 0.908 + }, + { + "category_id": 9, + "poly": [ + 1338, + 943, + 1401, + 943, + 1401, + 974, + 1338, + 974 + ], + "score": 0.9 + }, + { + "category_id": 9, + "poly": [ + 1338, + 1914, + 1401, + 1914, + 1401, + 1945, + 1338, + 1945 + ], + "score": 0.896 + }, + { + "category_id": 9, + "poly": [ + 1337, + 1134, + 1401, + 1134, + 1401, + 1166, + 1337, + 1166 + ], + "score": 0.894 + }, + { + "category_id": 2, + "poly": [ + 835, + 2087, + 862, + 2087, + 862, + 2113, + 835, + 2113 + ], + "score": 0.791 + }, + { + "category_id": 0, + "poly": [ + 300, + 362, + 666, + 362, + 666, + 396, + 300, + 396 + ], + "score": 0.653 + }, + { + "category_id": 1, + "poly": [ + 300, + 362, + 666, + 362, + 666, + 396, + 300, + 396 + ], + "score": 0.211 + }, + { + "category_id": 2, + "poly": [ + 835, + 2087, + 862, + 2087, + 862, + 2114, + 835, + 2114 + ], + "score": 0.195 + }, + { + "category_id": 13, + "poly": [ + 422, + 1329, + 556, + 1329, + 556, + 1366, + 422, + 1366 + ], + "score": 0.96, + "latex": "B ( \\mathbf { W } ^ { ( 0 ) } , \\tau )" + }, + { + "category_id": 14, + "poly": [ + 457, + 1101, + 1240, + 1101, + 1240, + 1196, + 457, + 1196 + ], + "score": 0.95, + "latex": "\\| \\mathbf { W } ^ { ( 0 ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } - \\| \\mathbf { W } ^ { ( t ^ { \\prime } ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } \\geqslant \\eta \\sum _ { t = 0 } ^ { t ^ { \\prime } - 1 } L _ { S } ( \\mathbf { W } ^ { ( t ) } ) - 2 t ^ { \\prime } \\eta \\epsilon _ { \\mathrm { N T R F } }" + }, + { + "category_id": 14, + "poly": [ + 649, + 676, + 1051, + 676, + 1051, + 764, + 649, + 764 + ], + "score": 0.94, + "latex": "\\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } \\ell \\big ( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ^ { * } } ( \\mathbf { x } _ { i } ) \\big ) = \\epsilon _ { \\mathrm { N T R F } }" + }, + { + "category_id": 13, + "poly": [ + 599, + 1964, + 1097, + 1964, + 1097, + 2007, + 599, + 2007 + ], + "score": 0.94, + "latex": "\\| \\mathbf { W } _ { l } ^ { ( t ^ { \\prime } ) } - \\mathbf { W } _ { l } ^ { ( 0 ) } \\| _ { F } \\leqslant 2 \\sqrt { C L } R m ^ { - 1 / 2 } \\leqslant \\tau" + }, + { + "category_id": 14, + "poly": [ + 517, + 1805, + 1179, + 1805, + 1179, + 1951, + 517, + 1951 + ], + "score": 0.94, + "latex": "\\begin{array} { r l } & { \\| \\mathbf { W } _ { l } ^ { ( t ^ { \\prime } ) } - \\mathbf { W } _ { l } ^ { ( 0 ) } \\| _ { F } \\leqslant \\| \\mathbf { W } _ { l } ^ { ( t ^ { \\prime } ) } - \\mathbf { W } _ { l } ^ { * } \\| _ { F } + \\| \\mathbf { W } _ { l } ^ { ( 0 ) } - \\mathbf { W } _ { l } ^ { * } \\| _ { F } } \\\\ & { \\qquad \\leqslant \\sqrt { C L } R m ^ { - 1 / 2 } + R m ^ { - 1 / 2 } } \\\\ & { \\qquad \\leqslant 2 \\sqrt { C L } R m ^ { - 1 / 2 } . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1206, + 775, + 1338, + 775, + 1338, + 812, + 1206, + 812 + ], + "score": 0.93, + "latex": "B ( \\mathbf { W } ^ { ( 0 ) } , \\tau )" + }, + { + "category_id": 13, + "poly": [ + 964, + 809, + 1209, + 809, + 1209, + 849, + 964, + 849 + ], + "score": 0.93, + "latex": "\\tau = \\widetilde { \\mathcal { O } } ( L ^ { 1 / 2 } m ^ { - 1 / 2 } R )" + }, + { + "category_id": 13, + "poly": [ + 1072, + 848, + 1405, + 848, + 1405, + 888, + 1072, + 888 + ], + "score": 0.93, + "latex": "\\epsilon _ { \\mathrm { a p p } } ( \\tau ) = \\widetilde { \\mathcal { O } } ( \\tau ^ { 4 / 3 } m ^ { 1 / 2 } L ^ { 3 } ) =" + }, + { + "category_id": 13, + "poly": [ + 345, + 774, + 636, + 774, + 636, + 811, + 345, + 811 + ], + "score": 0.92, + "latex": "\\mathbf { W } ^ { * } \\in { \\mathcal { B } } ( \\mathbf { W } ^ { ( 0 ) } , R m ^ { - 1 / 2 } )" + }, + { + "category_id": 14, + "poly": [ + 757, + 934, + 943, + 934, + 943, + 978, + 757, + 978 + ], + "score": 0.92, + "latex": "m = \\widetilde \\Omega ( R ^ { 8 } L ^ { 2 2 } )" + }, + { + "category_id": 14, + "poly": [ + 526, + 1632, + 1166, + 1632, + 1166, + 1726, + 526, + 1726 + ], + "score": 0.92, + "latex": "\\sum _ { l = 1 } ^ { L } \\| \\mathbf { W } _ { l } ^ { ( t ^ { \\prime } ) } - \\mathbf { W } _ { l } ^ { * } \\| _ { F } ^ { 2 } = \\| \\mathbf { W } ^ { ( t ^ { \\prime } ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } \\leqslant C L R ^ { 2 } m ^ { - 1 } ," + }, + { + "category_id": 13, + "poly": [ + 1107, + 1483, + 1251, + 1483, + 1251, + 1517, + 1107, + 1517 + ], + "score": 0.92, + "latex": "L _ { S } ( \\mathbf { W } ) \\geqslant 0" + }, + { + "category_id": 13, + "poly": [ + 1003, + 1295, + 1227, + 1295, + 1227, + 1332, + 1003, + 1332 + ], + "score": 0.92, + "latex": "\\{ \\mathbf { W } ^ { ( 0 ) } , \\cdots , \\mathbf { W } ^ { ( T ) } \\}" + }, + { + "category_id": 13, + "poly": [ + 457, + 996, + 614, + 996, + 614, + 1031, + 457, + 1031 + ], + "score": 0.92, + "latex": "\\epsilon _ { \\mathrm { a p p } } ( \\tau ) \\leqslant 1 / 8" + }, + { + "category_id": 13, + "poly": [ + 564, + 1410, + 697, + 1410, + 697, + 1446, + 564, + 1446 + ], + "score": 0.92, + "latex": "B ( \\mathbf { W } ^ { ( 0 ) } , \\tau )" + }, + { + "category_id": 13, + "poly": [ + 1097, + 489, + 1368, + 489, + 1368, + 525, + 1097, + 525 + ], + "score": 0.92, + "latex": "\\tau \\leqslant \\kappa L ^ { - 6 } [ \\log ( m ) ] ^ { - 3 / 2 }" + }, + { + "category_id": 13, + "poly": [ + 1200, + 1210, + 1399, + 1210, + 1399, + 1246, + 1200, + 1246 + ], + "score": 0.92, + "latex": "\\eta = \\Theta ( L ^ { - 1 } m ^ { - 1 } )" + }, + { + "category_id": 13, + "poly": [ + 702, + 991, + 753, + 991, + 753, + 1031, + 702, + 1031 + ], + "score": 0.91, + "latex": "\\widetilde { \\Omega } ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 1168, + 1444, + 1399, + 1444, + 1399, + 1482, + 1168, + 1482 + ], + "score": 0.91, + "latex": "\\mathbf { W } ^ { ( t ^ { \\prime } ) } \\in { \\cal B } ( \\mathbf { W } ^ { ( 0 ) } , \\tau )" + }, + { + "category_id": 13, + "poly": [ + 371, + 1766, + 450, + 1766, + 450, + 1799, + 371, + 1799 + ], + "score": 0.91, + "latex": "l \\in [ L ]" + }, + { + "category_id": 13, + "poly": [ + 520, + 812, + 692, + 812, + 692, + 850, + 520, + 850 + ], + "score": 0.91, + "latex": "\\{ \\mathbf { W } ^ { ( t ) } \\} _ { t = 0 , \\dots , t ^ { \\prime } }" + }, + { + "category_id": 13, + "poly": [ + 406, + 1584, + 699, + 1584, + 699, + 1623, + 406, + 1623 + ], + "score": 0.91, + "latex": "T = \\lceil L R ^ { 2 } m ^ { - 1 } \\eta ^ { - 1 } \\epsilon _ { \\mathrm { N T R F } } ^ { - 1 } \\rceil" + }, + { + "category_id": 13, + "poly": [ + 299, + 885, + 533, + 885, + 533, + 925, + 299, + 925 + ], + "score": 0.91, + "latex": "\\widetilde { \\mathcal { O } } ( R ^ { 4 / 3 } L ^ { 1 1 / 3 } m ^ { - 1 / 6 } )" + }, + { + "category_id": 13, + "poly": [ + 749, + 1584, + 1058, + 1584, + 1058, + 1622, + 749, + 1622 + ], + "score": 0.91, + "latex": "\\mathbf { W } ^ { \\ast } \\in { \\mathcal { B } } ( \\mathbf { W } ^ { ( 0 ) } , R \\cdot m ^ { - 1 / 2 } )" + }, + { + "category_id": 13, + "poly": [ + 426, + 850, + 524, + 850, + 524, + 882, + 426, + 882 + ], + "score": 0.91, + "latex": "m ^ { - 1 / 2 } R" + }, + { + "category_id": 13, + "poly": [ + 632, + 490, + 996, + 490, + 996, + 525, + 632, + 525 + ], + "score": 0.9, + "latex": "1 - \\mathcal { O } ( n L ^ { 2 } ) \\exp [ - \\Omega ( m \\tau ^ { 2 / 3 } L ) ]" + }, + { + "category_id": 13, + "poly": [ + 928, + 1449, + 996, + 1449, + 996, + 1478, + 928, + 1478 + ], + "score": 0.9, + "latex": "t < t ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 1277, + 1414, + 1355, + 1414, + 1355, + 1442, + 1277, + 1442 + ], + "score": 0.9, + "latex": "t ^ { \\prime } \\leqslant T" + }, + { + "category_id": 13, + "poly": [ + 418, + 1208, + 802, + 1208, + 802, + 1245, + 418, + 1245 + ], + "score": 0.9, + "latex": "\\mathbf { W } ^ { ( 0 ) } , \\ldots , \\mathbf { W } ^ { ( t ^ { \\prime } - 1 ) } \\in \\mathcal { B } ( \\mathbf { W } ^ { ( 0 ) } , \\tau )" + }, + { + "category_id": 13, + "poly": [ + 370, + 1736, + 445, + 1736, + 445, + 1764, + 370, + 1764 + ], + "score": 0.9, + "latex": "C \\geqslant 4" + }, + { + "category_id": 13, + "poly": [ + 343, + 1244, + 634, + 1244, + 634, + 1282, + 343, + 1282 + ], + "score": 0.9, + "latex": "T = \\lceil L R ^ { 2 } m ^ { - 1 } \\eta ^ { - 1 } \\epsilon _ { \\mathrm { N T R F } } ^ { - 1 } \\rceil" + }, + { + "category_id": 13, + "poly": [ + 520, + 1481, + 745, + 1481, + 745, + 1517, + 520, + 1517 + ], + "score": 0.89, + "latex": "\\mathbf { W } ^ { ( 0 ) } \\in { \\mathcal { B } } ( \\mathbf { W } ^ { ( 0 ) } , \\tau )" + }, + { + "category_id": 14, + "poly": [ + 566, + 1528, + 1132, + 1528, + 1132, + 1572, + 566, + 1572 + ], + "score": 0.89, + "latex": "\\| \\mathbf { W } ^ { ( t ^ { \\prime } ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } \\leqslant \\| \\mathbf { W } ^ { ( 0 ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } + 2 \\eta t ^ { \\prime } \\epsilon _ { \\mathrm { N T R F } }" + }, + { + "category_id": 14, + "poly": [ + 570, + 558, + 1127, + 558, + 1127, + 606, + 570, + 606 + ], + "score": 0.89, + "latex": "\\epsilon _ { \\mathrm { a p p } } ( \\tau ) \\leqslant \\widetilde { \\mathcal { O } } \\bigl ( \\tau ^ { 4 / 3 } L ^ { 3 } m ^ { 1 / 2 } \\bigr ) , \\quad M ( \\tau ) \\leqslant \\widetilde { \\mathcal { O } } ( \\sqrt { m } ) ." + }, + { + "category_id": 13, + "poly": [ + 557, + 1446, + 780, + 1446, + 780, + 1481, + 557, + 1481 + ], + "score": 0.88, + "latex": "\\mathbf { W } ^ { ( t ) } \\in { \\cal B } ( \\mathbf { W } ^ { ( 0 ) } , \\tau )" + }, + { + "category_id": 13, + "poly": [ + 511, + 1059, + 574, + 1059, + 574, + 1088, + 511, + 1088 + ], + "score": 0.88, + "latex": "1 - \\delta" + }, + { + "category_id": 13, + "poly": [ + 681, + 634, + 730, + 634, + 730, + 662, + 681, + 662 + ], + "score": 0.88, + "latex": "\\mathbf { W } ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 418, + 815, + 468, + 815, + 468, + 845, + 418, + 845 + ], + "score": 0.83, + "latex": "\\mathbf { W } ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 518, + 1367, + 541, + 1367, + 541, + 1391, + 518, + 1391 + ], + "score": 0.83, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 583, + 1031, + 607, + 1031, + 607, + 1056, + 583, + 1056 + ], + "score": 0.81, + "latex": "R" + }, + { + "category_id": 13, + "poly": [ + 1325, + 468, + 1344, + 468, + 1344, + 488, + 1325, + 488 + ], + "score": 0.78, + "latex": "\\kappa" + }, + { + "category_id": 13, + "poly": [ + 1375, + 1000, + 1396, + 1000, + 1396, + 1025, + 1375, + 1025 + ], + "score": 0.77, + "latex": "L" + }, + { + "category_id": 13, + "poly": [ + 762, + 859, + 781, + 859, + 781, + 881, + 762, + 881 + ], + "score": 0.74, + "latex": "\\tau" + }, + { + "category_id": 13, + "poly": [ + 1382, + 1979, + 1401, + 1979, + 1401, + 2000, + 1382, + 2000 + ], + "score": 0.74, + "latex": "\\tau" + }, + { + "category_id": 13, + "poly": [ + 987, + 1030, + 1003, + 1030, + 1003, + 1056, + 987, + 1056 + ], + "score": 0.72, + "latex": "\\delta" + }, + { + "category_id": 13, + "poly": [ + 1322, + 1334, + 1402, + 1334, + 1402, + 1365, + 1322, + 1365 + ], + "score": 0.48, + "latex": "3 \\epsilon _ { \\mathrm { N T R F } }" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 224.0, + 765.0, + 224.0, + 765.0, + 268.0, + 295.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 72.0, + 815.0, + 72.0, + 815.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 867.0, + 2085.0, + 867.0, + 2125.0, + 832.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 361.0, + 667.0, + 361.0, + 667.0, + 398.0, + 296.0, + 398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 867.0, + 2085.0, + 867.0, + 2124.0, + 831.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 770.0, + 344.0, + 770.0, + 344.0, + 814.0, + 293.0, + 814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 637.0, + 770.0, + 1205.0, + 770.0, + 1205.0, + 814.0, + 637.0, + 814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1339.0, + 770.0, + 1409.0, + 770.0, + 1409.0, + 814.0, + 1339.0, + 814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 806.0, + 417.0, + 806.0, + 417.0, + 854.0, + 291.0, + 854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 469.0, + 806.0, + 519.0, + 806.0, + 519.0, + 854.0, + 469.0, + 854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 693.0, + 806.0, + 963.0, + 806.0, + 963.0, + 854.0, + 693.0, + 854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1210.0, + 806.0, + 1408.0, + 806.0, + 1408.0, + 854.0, + 1210.0, + 854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 845.0, + 425.0, + 845.0, + 425.0, + 893.0, + 291.0, + 893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 525.0, + 845.0, + 761.0, + 845.0, + 761.0, + 893.0, + 525.0, + 893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 782.0, + 845.0, + 1071.0, + 845.0, + 1071.0, + 893.0, + 782.0, + 893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 880.0, + 298.0, + 880.0, + 298.0, + 929.0, + 294.0, + 929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 534.0, + 880.0, + 796.0, + 880.0, + 796.0, + 929.0, + 534.0, + 929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1405.0, + 563.0, + 1405.0, + 563.0, + 1449.0, + 292.0, + 1449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 698.0, + 1405.0, + 1276.0, + 1405.0, + 1276.0, + 1449.0, + 698.0, + 1449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1356.0, + 1405.0, + 1406.0, + 1405.0, + 1406.0, + 1449.0, + 1356.0, + 1449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1440.0, + 556.0, + 1440.0, + 556.0, + 1488.0, + 291.0, + 1488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 781.0, + 1440.0, + 927.0, + 1440.0, + 927.0, + 1488.0, + 781.0, + 1488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 997.0, + 1440.0, + 1167.0, + 1440.0, + 1167.0, + 1488.0, + 997.0, + 1488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1400.0, + 1440.0, + 1412.0, + 1440.0, + 1412.0, + 1488.0, + 1400.0, + 1488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1476.0, + 519.0, + 1476.0, + 519.0, + 1520.0, + 294.0, + 1520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 746.0, + 1476.0, + 1106.0, + 1476.0, + 1106.0, + 1520.0, + 746.0, + 1520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1252.0, + 1476.0, + 1360.0, + 1476.0, + 1360.0, + 1520.0, + 1252.0, + 1520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 993.0, + 456.0, + 993.0, + 456.0, + 1033.0, + 291.0, + 1033.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 615.0, + 993.0, + 701.0, + 993.0, + 701.0, + 1033.0, + 615.0, + 1033.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 754.0, + 993.0, + 1374.0, + 993.0, + 1374.0, + 1033.0, + 754.0, + 1033.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1397.0, + 993.0, + 1408.0, + 993.0, + 1408.0, + 1033.0, + 1397.0, + 1033.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1026.0, + 582.0, + 1026.0, + 582.0, + 1063.0, + 293.0, + 1063.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 608.0, + 1026.0, + 986.0, + 1026.0, + 986.0, + 1063.0, + 608.0, + 1063.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1004.0, + 1026.0, + 1405.0, + 1026.0, + 1405.0, + 1063.0, + 1004.0, + 1063.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1058.0, + 510.0, + 1058.0, + 510.0, + 1093.0, + 294.0, + 1093.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 575.0, + 1058.0, + 683.0, + 1058.0, + 683.0, + 1093.0, + 575.0, + 1093.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1292.0, + 1002.0, + 1292.0, + 1002.0, + 1335.0, + 292.0, + 1335.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1228.0, + 1292.0, + 1406.0, + 1292.0, + 1406.0, + 1335.0, + 1228.0, + 1335.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1325.0, + 421.0, + 1325.0, + 421.0, + 1374.0, + 291.0, + 1374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 557.0, + 1325.0, + 1321.0, + 1325.0, + 1321.0, + 1374.0, + 557.0, + 1374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1403.0, + 1325.0, + 1406.0, + 1325.0, + 1406.0, + 1374.0, + 1403.0, + 1374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1363.0, + 517.0, + 1363.0, + 517.0, + 1398.0, + 295.0, + 1398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 542.0, + 1363.0, + 662.0, + 1363.0, + 662.0, + 1398.0, + 542.0, + 1398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 459.0, + 1324.0, + 459.0, + 1324.0, + 493.0, + 294.0, + 493.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1345.0, + 459.0, + 1404.0, + 459.0, + 1404.0, + 493.0, + 1345.0, + 493.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 487.0, + 631.0, + 487.0, + 631.0, + 527.0, + 291.0, + 527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 997.0, + 487.0, + 1096.0, + 487.0, + 1096.0, + 527.0, + 997.0, + 527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1369.0, + 487.0, + 1407.0, + 487.0, + 1407.0, + 527.0, + 1369.0, + 527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 518.0, + 416.0, + 518.0, + 416.0, + 556.0, + 292.0, + 556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1955.0, + 598.0, + 1955.0, + 598.0, + 2014.0, + 289.0, + 2014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1098.0, + 1955.0, + 1381.0, + 1955.0, + 1381.0, + 2014.0, + 1098.0, + 2014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 1955.0, + 1407.0, + 1955.0, + 1407.0, + 2014.0, + 1402.0, + 2014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1999.0, + 889.0, + 1999.0, + 889.0, + 2039.0, + 292.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1201.0, + 417.0, + 1201.0, + 417.0, + 1252.0, + 291.0, + 1252.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 803.0, + 1201.0, + 1199.0, + 1201.0, + 1199.0, + 1252.0, + 803.0, + 1252.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1400.0, + 1201.0, + 1405.0, + 1201.0, + 1405.0, + 1252.0, + 1400.0, + 1252.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1231.0, + 342.0, + 1231.0, + 342.0, + 1291.0, + 290.0, + 1291.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 635.0, + 1231.0, + 652.0, + 1231.0, + 652.0, + 1291.0, + 635.0, + 1291.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1729.0, + 369.0, + 1729.0, + 369.0, + 1774.0, + 293.0, + 1774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 446.0, + 1729.0, + 1406.0, + 1729.0, + 1406.0, + 1774.0, + 446.0, + 1774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1763.0, + 370.0, + 1763.0, + 370.0, + 1801.0, + 294.0, + 1801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 451.0, + 1763.0, + 462.0, + 1763.0, + 462.0, + 1801.0, + 451.0, + 1801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 629.0, + 680.0, + 629.0, + 680.0, + 669.0, + 295.0, + 669.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 731.0, + 629.0, + 952.0, + 629.0, + 952.0, + 669.0, + 731.0, + 669.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1578.0, + 405.0, + 1578.0, + 405.0, + 1630.0, + 291.0, + 1630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 700.0, + 1578.0, + 748.0, + 1578.0, + 748.0, + 1630.0, + 700.0, + 1630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1059.0, + 1578.0, + 1172.0, + 1578.0, + 1172.0, + 1630.0, + 1059.0, + 1630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 293.0, + 1074.0, + 293.0, + 1074.0, + 329.0, + 295.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 413.0, + 1165.0, + 413.0, + 1165.0, + 463.0, + 291.0, + 463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 361.0, + 667.0, + 361.0, + 667.0, + 398.0, + 296.0, + 398.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 10, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 559, + 1406, + 559, + 1406, + 695, + 297, + 695 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 296, + 1532, + 1406, + 1532, + 1406, + 1633, + 296, + 1633 + ], + "score": 0.972 + }, + { + "category_id": 8, + "poly": [ + 438, + 286, + 1258, + 286, + 1258, + 373, + 438, + 373 + ], + "score": 0.954 + }, + { + "category_id": 1, + "poly": [ + 297, + 794, + 1402, + 794, + 1402, + 859, + 297, + 859 + ], + "score": 0.954 + }, + { + "category_id": 1, + "poly": [ + 296, + 1419, + 1404, + 1419, + 1404, + 1482, + 296, + 1482 + ], + "score": 0.949 + }, + { + "category_id": 1, + "poly": [ + 295, + 1076, + 1402, + 1076, + 1402, + 1142, + 295, + 1142 + ], + "score": 0.946 + }, + { + "category_id": 1, + "poly": [ + 294, + 868, + 1400, + 868, + 1400, + 934, + 294, + 934 + ], + "score": 0.945 + }, + { + "category_id": 8, + "poly": [ + 387, + 448, + 1309, + 448, + 1309, + 532, + 387, + 532 + ], + "score": 0.944 + }, + { + "category_id": 1, + "poly": [ + 295, + 1152, + 1399, + 1152, + 1399, + 1223, + 295, + 1223 + ], + "score": 0.943 + }, + { + "category_id": 8, + "poly": [ + 399, + 956, + 1293, + 956, + 1293, + 1041, + 399, + 1041 + ], + "score": 0.941 + }, + { + "category_id": 1, + "poly": [ + 296, + 1970, + 1414, + 1970, + 1414, + 2036, + 296, + 2036 + ], + "score": 0.94 + }, + { + "category_id": 8, + "poly": [ + 345, + 1238, + 1351, + 1238, + 1351, + 1334, + 345, + 1334 + ], + "score": 0.938 + }, + { + "category_id": 8, + "poly": [ + 294, + 1814, + 1445, + 1814, + 1445, + 1954, + 294, + 1954 + ], + "score": 0.937 + }, + { + "category_id": 1, + "poly": [ + 298, + 392, + 759, + 392, + 759, + 427, + 298, + 427 + ], + "score": 0.927 + }, + { + "category_id": 0, + "poly": [ + 299, + 735, + 665, + 735, + 665, + 767, + 299, + 767 + ], + "score": 0.926 + }, + { + "category_id": 1, + "poly": [ + 295, + 1757, + 1132, + 1757, + 1132, + 1795, + 295, + 1795 + ], + "score": 0.922 + }, + { + "category_id": 2, + "poly": [ + 298, + 73, + 814, + 73, + 814, + 106, + 298, + 106 + ], + "score": 0.918 + }, + { + "category_id": 1, + "poly": [ + 297, + 1352, + 671, + 1352, + 671, + 1392, + 297, + 1392 + ], + "score": 0.916 + }, + { + "category_id": 8, + "poly": [ + 297, + 1646, + 1402, + 1646, + 1402, + 1741, + 297, + 1741 + ], + "score": 0.912 + }, + { + "category_id": 2, + "poly": [ + 835, + 2087, + 864, + 2087, + 864, + 2114, + 835, + 2114 + ], + "score": 0.843 + }, + { + "category_id": 0, + "poly": [ + 298, + 228, + 849, + 228, + 849, + 264, + 298, + 264 + ], + "score": 0.502 + }, + { + "category_id": 1, + "poly": [ + 298, + 228, + 849, + 228, + 849, + 264, + 298, + 264 + ], + "score": 0.497 + }, + { + "category_id": 8, + "poly": [ + 452, + 1860, + 1439, + 1860, + 1439, + 1953, + 452, + 1953 + ], + "score": 0.107 + }, + { + "category_id": 14, + "poly": [ + 437, + 282, + 1260, + 282, + 1260, + 375, + 437, + 375 + ], + "score": 0.93, + "latex": "\\| \\mathbf { W } ^ { ( 0 ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } - \\| \\mathbf { W } ^ { ( T ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } \\geqslant \\eta \\bigg ( \\sum _ { t = 0 } ^ { T - 1 } L _ { S } ( \\mathbf { W } ^ { ( t ) } ) - 2 T \\epsilon _ { \\mathrm { N T R F } } \\bigg ) ." + }, + { + "category_id": 13, + "poly": [ + 874, + 1565, + 1044, + 1565, + 1044, + 1604, + 874, + 1604 + ], + "score": 0.93, + "latex": "\\tilde { R } = \\mathcal { O } ( \\sqrt { L } R )" + }, + { + "category_id": 13, + "poly": [ + 763, + 1759, + 999, + 1759, + 999, + 1795, + 763, + 1795 + ], + "score": 0.93, + "latex": "{ \\mathbb { 1 } \\left\\{ z < 0 \\right\\} \\leqslant - 2 \\ell ^ { \\prime } ( z ) }" + }, + { + "category_id": 13, + "poly": [ + 1165, + 1971, + 1327, + 1971, + 1327, + 2006, + 1165, + 2006 + ], + "score": 0.93, + "latex": "- \\ell ^ { \\prime } ( z ) \\leqslant \\ell ( z )" + }, + { + "category_id": 14, + "poly": [ + 340, + 1237, + 1355, + 1237, + 1355, + 1333, + 340, + 1333 + ], + "score": 0.93, + "latex": "\\left| \\mathcal E _ { \\mathcal D } ( \\mathbf W ) - \\mathcal E _ { S } ( \\mathbf W ) \\right| \\leqslant \\widetilde O \\left( \\operatorname* { m i n } \\left\\{ 4 ^ { L } L ^ { 3 / 2 } \\widetilde R \\sqrt { \\frac { m } { n } } , \\frac { L \\widetilde R } { \\sqrt { n } } + \\frac { L ^ { 3 } \\widetilde R ^ { 4 / 3 } } { m ^ { 1 / 6 } } \\right\\} \\right) + { \\mathcal O } \\left( \\sqrt { \\frac { \\log ( 1 / \\delta ) } { n } } \\right)" + }, + { + "category_id": 14, + "poly": [ + 403, + 953, + 1295, + 953, + 1295, + 1042, + 403, + 1042 + ], + "score": 0.92, + "latex": "\\mathcal { E } _ { S } ( \\mathbf { W } ) : = - \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } \\ell ^ { \\prime } \\big [ y _ { i } \\cdot f _ { \\mathbf { W } } ( x _ { i } ) \\big ] , ~ \\mathcal { E } _ { \\mathcal { D } } ( \\mathbf { W } ) : = \\mathbb { E } _ { ( \\mathbf { x } , y ) \\sim \\mathcal { D } } \\big \\{ - \\ell ^ { \\prime } \\big [ y \\cdot f _ { \\mathbf { W } } ( \\mathbf { x } ) \\big ] \\big \\} ." + }, + { + "category_id": 13, + "poly": [ + 547, + 1153, + 647, + 1153, + 647, + 1191, + 547, + 1191 + ], + "score": 0.92, + "latex": "\\tilde { R } , \\delta > 0" + }, + { + "category_id": 13, + "poly": [ + 1070, + 1078, + 1158, + 1078, + 1158, + 1112, + 1070, + 1112 + ], + "score": 0.92, + "latex": "\\mathcal { E } _ { S } ( \\mathbf { W } )" + }, + { + "category_id": 13, + "poly": [ + 951, + 870, + 1039, + 870, + 1039, + 904, + 951, + 904 + ], + "score": 0.92, + "latex": "\\mathcal { E } _ { S } ( \\mathbf { W } )" + }, + { + "category_id": 13, + "poly": [ + 295, + 627, + 814, + 627, + 814, + 665, + 295, + 665 + ], + "score": 0.92, + "latex": "T = \\lceil L R ^ { 2 } m ^ { - 1 } \\eta ^ { - 1 } \\epsilon _ { \\mathrm { N T R F } } ^ { - 1 } \\rceil = \\mathcal { O } ( L ^ { 2 } R ^ { 2 } \\epsilon _ { \\mathrm { N T R F } } ^ { - 1 } )" + }, + { + "category_id": 13, + "poly": [ + 337, + 1973, + 507, + 1973, + 507, + 2004, + 337, + 2004 + ], + "score": 0.91, + "latex": "t = 0 , 1 , \\ldots , T" + }, + { + "category_id": 13, + "poly": [ + 800, + 1153, + 1150, + 1153, + 1150, + 1193, + 800, + 1193 + ], + "score": 0.91, + "latex": "m = \\widetilde \\Omega ( L ^ { 1 2 } \\widetilde R ^ { 2 } ) \\cdot [ \\log ( 1 / \\delta ) ] ^ { 3 / 2 }" + }, + { + "category_id": 13, + "poly": [ + 853, + 1971, + 1067, + 1971, + 1067, + 2006, + 853, + 2006 + ], + "score": 0.91, + "latex": "\\mathcal { E } _ { S } ( \\mathbf { W } ) \\leqslant L _ { S } ( \\mathbf { W } )" + }, + { + "category_id": 13, + "poly": [ + 297, + 901, + 388, + 901, + 388, + 935, + 297, + 935 + ], + "score": 0.91, + "latex": "\\mathcal { E } _ { \\mathcal { D } } ( \\mathbf { W } )" + }, + { + "category_id": 13, + "poly": [ + 372, + 1352, + 667, + 1352, + 667, + 1393, + 372, + 1393 + ], + "score": 0.91, + "latex": "\\mathbf { W } \\in { \\mathcal { B } } ( \\mathbf { W } ^ { ( 0 ) } , \\tilde { R } \\cdot m ^ { - 1 / 2 } )" + }, + { + "category_id": 13, + "poly": [ + 372, + 1761, + 544, + 1761, + 544, + 1792, + 372, + 1792 + ], + "score": 0.91, + "latex": "t = 0 , 1 , \\ldots , T" + }, + { + "category_id": 13, + "poly": [ + 869, + 559, + 1208, + 559, + 1208, + 595, + 869, + 595 + ], + "score": 0.9, + "latex": "\\mathbf { W ^ { * } } ~ \\in ~ \\mathcal { B } ( \\mathbf { W } ^ { ( 0 ) } , R \\cdot m ^ { - 1 / 2 } )" + }, + { + "category_id": 14, + "poly": [ + 310, + 1811, + 1428, + 1811, + 1428, + 1953, + 310, + 1953 + ], + "score": 0.9, + "latex": "\\begin{array} { r l r } { { \\Sigma L _ { \\mathcal { D } } ^ { 0 - 1 } ( \\mathbf { W } ^ { ( t ) } ) \\leqslant 2 \\mathcal { E } _ { \\mathcal { D } } ( \\mathbf { W } ^ { ( t ) } ) } } \\\\ & { } & { \\leqslant 2 L _ { S } ( \\mathbf { W } ^ { ( t ) } ) + \\tilde { \\mathcal { O } } \\Bigg ( \\operatorname* { m i n } \\{ 4 ^ { L } L ^ { 2 } R \\sqrt { \\frac { m } { n } } , \\frac { L ^ { 3 / 2 } R } { \\sqrt { n } } + \\frac { L ^ { 1 1 / 3 } R ^ { 4 / 3 } } { m ^ { 1 / 6 } } \\} \\Bigg ) + \\mathcal { O } \\Bigg ( \\sqrt { \\frac { \\log ( 1 / \\delta ) } { n } } \\Bigg ) } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 310, + 1644, + 1405, + 1644, + 1405, + 1741, + 310, + 1741 + ], + "score": 0.9, + "latex": "\\mathcal { E } _ { \\mathcal { D } } ( \\mathbf { W } ^ { ( t ) } ) - \\mathcal { E } _ { S } ( \\mathbf { W } ^ { ( t ) } ) | \\leqslant \\widetilde { \\mathcal { O } } \\left( \\operatorname* { m i n } \\left\\{ 4 ^ { L } L ^ { 2 } R \\sqrt { \\frac { m } { n } } , \\frac { L ^ { 3 / 2 } R } { \\sqrt { n } } + \\frac { L ^ { 1 1 / 3 } R ^ { 4 / 3 } } { m ^ { 1 / 6 } } \\right\\} \\right) + \\mathcal { O } \\left( \\sqrt { \\frac { \\log ( 1 / \\delta ) } { n } } \\right)" + }, + { + "category_id": 13, + "poly": [ + 298, + 1109, + 369, + 1109, + 369, + 1143, + 298, + 1143 + ], + "score": 0.9, + "latex": "- \\ell ^ { \\prime } ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 981, + 594, + 1241, + 594, + 1241, + 630, + 981, + 630 + ], + "score": 0.89, + "latex": "T \\eta \\ \\geqslant \\ L R ^ { 2 } m ^ { - 1 } \\epsilon _ { \\mathrm { N T R F } } ^ { - 1 }" + }, + { + "category_id": 14, + "poly": [ + 386, + 445, + 1310, + 445, + 1310, + 537, + 386, + 537 + ], + "score": 0.89, + "latex": "\\frac { 1 } { T } \\sum _ { t = 0 } ^ { T - 1 } L _ { S } ( \\mathbf { W } ^ { ( t ) } ) \\leqslant \\frac { \\| \\mathbf { W } ^ { ( 0 ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } } { \\eta T } + 2 \\epsilon _ { \\mathrm { N T R F } } \\leqslant \\frac { L R ^ { 2 } m ^ { - 1 } } { \\eta T } + 2 \\epsilon _ { \\mathrm { N T R F } } \\leqslant 3 \\epsilon _ { \\mathrm { N T R F } } ," + }, + { + "category_id": 13, + "poly": [ + 298, + 1565, + 809, + 1565, + 809, + 1604, + 298, + 1604 + ], + "score": 0.88, + "latex": "{ \\mathbf W } ^ { ( 0 ) } , { \\mathbf W } ^ { ( 1 ) } , \\ldots , { \\mathbf W } ^ { ( T ) } \\in \\mathcal { B } ( { \\mathbf W } ^ { ( 0 ) } , \\widetilde { R } m ^ { - 1 / 2 } )" + }, + { + "category_id": 13, + "poly": [ + 437, + 395, + 475, + 395, + 475, + 426, + 437, + 426 + ], + "score": 0.88, + "latex": "\\eta T" + }, + { + "category_id": 13, + "poly": [ + 298, + 2004, + 366, + 2004, + 366, + 2031, + 298, + 2031 + ], + "score": 0.88, + "latex": "z \\in R" + }, + { + "category_id": 13, + "poly": [ + 382, + 1191, + 446, + 1191, + 446, + 1220, + 382, + 1220 + ], + "score": 0.86, + "latex": "1 - \\delta" + }, + { + "category_id": 13, + "poly": [ + 651, + 597, + 675, + 597, + 675, + 624, + 651, + 624 + ], + "score": 0.81, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 734, + 602, + 754, + 602, + 754, + 628, + 734, + 628 + ], + "score": 0.78, + "latex": "\\eta" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 732.0, + 669.0, + 732.0, + 669.0, + 772.0, + 296.0, + 772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 72.0, + 815.0, + 72.0, + 815.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 869.0, + 2085.0, + 869.0, + 2124.0, + 831.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 228.0, + 851.0, + 228.0, + 851.0, + 268.0, + 297.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 554.0, + 868.0, + 554.0, + 868.0, + 599.0, + 291.0, + 599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1209.0, + 554.0, + 1411.0, + 554.0, + 1411.0, + 599.0, + 1209.0, + 599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 589.0, + 650.0, + 589.0, + 650.0, + 639.0, + 291.0, + 639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 676.0, + 589.0, + 733.0, + 589.0, + 733.0, + 639.0, + 676.0, + 639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 755.0, + 589.0, + 980.0, + 589.0, + 980.0, + 639.0, + 755.0, + 639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1242.0, + 589.0, + 1412.0, + 589.0, + 1412.0, + 639.0, + 1242.0, + 639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 625.0, + 294.0, + 625.0, + 294.0, + 671.0, + 291.0, + 671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 815.0, + 625.0, + 1409.0, + 625.0, + 1409.0, + 671.0, + 815.0, + 671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 660.0, + 679.0, + 660.0, + 679.0, + 696.0, + 294.0, + 696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1373.0, + 661.0, + 1406.0, + 661.0, + 1406.0, + 692.0, + 1373.0, + 692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1531.0, + 1404.0, + 1531.0, + 1404.0, + 1569.0, + 294.0, + 1569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1560.0, + 297.0, + 1560.0, + 297.0, + 1608.0, + 290.0, + 1608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 810.0, + 1560.0, + 873.0, + 1560.0, + 873.0, + 1608.0, + 810.0, + 1608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1045.0, + 1560.0, + 1407.0, + 1560.0, + 1407.0, + 1608.0, + 1045.0, + 1608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1597.0, + 359.0, + 1597.0, + 359.0, + 1636.0, + 291.0, + 1636.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 796.0, + 1406.0, + 796.0, + 1406.0, + 832.0, + 295.0, + 832.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 825.0, + 902.0, + 825.0, + 902.0, + 861.0, + 295.0, + 861.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1415.0, + 1406.0, + 1415.0, + 1406.0, + 1456.0, + 293.0, + 1456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1448.0, + 678.0, + 1448.0, + 678.0, + 1484.0, + 295.0, + 1484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1074.0, + 1069.0, + 1074.0, + 1069.0, + 1118.0, + 294.0, + 1118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1159.0, + 1074.0, + 1407.0, + 1074.0, + 1407.0, + 1118.0, + 1159.0, + 1118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 370.0, + 1106.0, + 793.0, + 1106.0, + 793.0, + 1145.0, + 370.0, + 1145.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 865.0, + 950.0, + 865.0, + 950.0, + 909.0, + 293.0, + 909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1040.0, + 865.0, + 1406.0, + 865.0, + 1406.0, + 909.0, + 1040.0, + 909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 389.0, + 901.0, + 520.0, + 901.0, + 520.0, + 935.0, + 389.0, + 935.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1146.0, + 546.0, + 1146.0, + 546.0, + 1201.0, + 290.0, + 1201.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 648.0, + 1146.0, + 799.0, + 1146.0, + 799.0, + 1201.0, + 648.0, + 1201.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1151.0, + 1146.0, + 1406.0, + 1146.0, + 1406.0, + 1201.0, + 1151.0, + 1201.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1189.0, + 381.0, + 1189.0, + 381.0, + 1222.0, + 294.0, + 1222.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 447.0, + 1189.0, + 596.0, + 1189.0, + 596.0, + 1222.0, + 447.0, + 1222.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1968.0, + 336.0, + 1968.0, + 336.0, + 2008.0, + 292.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 508.0, + 1968.0, + 852.0, + 1968.0, + 852.0, + 2008.0, + 508.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1068.0, + 1968.0, + 1164.0, + 1968.0, + 1164.0, + 2008.0, + 1068.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1328.0, + 1968.0, + 1406.0, + 1968.0, + 1406.0, + 2008.0, + 1328.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2000.0, + 297.0, + 2000.0, + 297.0, + 2037.0, + 294.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 2000.0, + 641.0, + 2000.0, + 641.0, + 2037.0, + 367.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1376.0, + 2006.0, + 1404.0, + 2006.0, + 1404.0, + 2032.0, + 1376.0, + 2032.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 388.0, + 436.0, + 388.0, + 436.0, + 431.0, + 295.0, + 431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 476.0, + 388.0, + 759.0, + 388.0, + 759.0, + 431.0, + 476.0, + 431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1754.0, + 371.0, + 1754.0, + 371.0, + 1798.0, + 294.0, + 1798.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 545.0, + 1754.0, + 762.0, + 1754.0, + 762.0, + 1798.0, + 545.0, + 1798.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1000.0, + 1754.0, + 1135.0, + 1754.0, + 1135.0, + 1798.0, + 1000.0, + 1798.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1351.0, + 371.0, + 1351.0, + 371.0, + 1396.0, + 292.0, + 1396.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 668.0, + 1351.0, + 671.0, + 1351.0, + 671.0, + 1396.0, + 668.0, + 1396.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 228.0, + 851.0, + 228.0, + 851.0, + 268.0, + 297.0, + 268.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 11, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 295, + 587, + 1409, + 587, + 1409, + 809, + 295, + 809 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 297, + 980, + 1405, + 980, + 1405, + 1128, + 297, + 1128 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 297, + 285, + 1406, + 285, + 1406, + 386, + 297, + 386 + ], + "score": 0.973 + }, + { + "category_id": 8, + "poly": [ + 515, + 1788, + 1185, + 1788, + 1185, + 1932, + 515, + 1932 + ], + "score": 0.967 + }, + { + "category_id": 8, + "poly": [ + 447, + 1327, + 1250, + 1327, + 1250, + 1414, + 447, + 1414 + ], + "score": 0.955 + }, + { + "category_id": 1, + "poly": [ + 297, + 1959, + 1400, + 1959, + 1400, + 2036, + 297, + 2036 + ], + "score": 0.955 + }, + { + "category_id": 8, + "poly": [ + 566, + 1640, + 1132, + 1640, + 1132, + 1726, + 566, + 1726 + ], + "score": 0.955 + }, + { + "category_id": 8, + "poly": [ + 650, + 886, + 1049, + 886, + 1049, + 967, + 650, + 967 + ], + "score": 0.953 + }, + { + "category_id": 1, + "poly": [ + 292, + 394, + 1402, + 394, + 1402, + 463, + 292, + 463 + ], + "score": 0.951 + }, + { + "category_id": 8, + "poly": [ + 356, + 474, + 1344, + 474, + 1344, + 561, + 356, + 561 + ], + "score": 0.947 + }, + { + "category_id": 1, + "poly": [ + 301, + 1481, + 1402, + 1481, + 1402, + 1547, + 301, + 1547 + ], + "score": 0.945 + }, + { + "category_id": 1, + "poly": [ + 297, + 1198, + 1405, + 1198, + 1405, + 1266, + 297, + 1266 + ], + "score": 0.945 + }, + { + "category_id": 8, + "poly": [ + 756, + 1141, + 942, + 1141, + 942, + 1184, + 756, + 1184 + ], + "score": 0.931 + }, + { + "category_id": 1, + "poly": [ + 290, + 1739, + 1401, + 1739, + 1401, + 1779, + 290, + 1779 + ], + "score": 0.931 + }, + { + "category_id": 1, + "poly": [ + 296, + 838, + 952, + 838, + 952, + 872, + 296, + 872 + ], + "score": 0.924 + }, + { + "category_id": 1, + "poly": [ + 297, + 1278, + 983, + 1278, + 983, + 1312, + 297, + 1312 + ], + "score": 0.922 + }, + { + "category_id": 1, + "poly": [ + 299, + 1427, + 812, + 1427, + 812, + 1467, + 299, + 1467 + ], + "score": 0.922 + }, + { + "category_id": 2, + "poly": [ + 299, + 73, + 815, + 73, + 815, + 106, + 299, + 106 + ], + "score": 0.918 + }, + { + "category_id": 0, + "poly": [ + 300, + 228, + 666, + 228, + 666, + 262, + 300, + 262 + ], + "score": 0.901 + }, + { + "category_id": 9, + "poly": [ + 1338, + 1356, + 1401, + 1356, + 1401, + 1387, + 1338, + 1387 + ], + "score": 0.898 + }, + { + "category_id": 2, + "poly": [ + 835, + 2087, + 864, + 2087, + 864, + 2113, + 835, + 2113 + ], + "score": 0.869 + }, + { + "category_id": 1, + "poly": [ + 296, + 1559, + 1400, + 1559, + 1400, + 1629, + 296, + 1629 + ], + "score": 0.799 + }, + { + "category_id": 13, + "poly": [ + 645, + 591, + 965, + 591, + 965, + 625, + 645, + 625 + ], + "score": 0.94, + "latex": "\\mathcal { E } _ { i } ( \\mathbf { W } ) = - \\ell ^ { \\prime } [ y _ { i } \\cdot f _ { \\mathbf { W } } ( \\pmb { x } _ { i } ) ]" + }, + { + "category_id": 14, + "poly": [ + 649, + 882, + 1051, + 882, + 1051, + 970, + 649, + 970 + ], + "score": 0.94, + "latex": "\\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } \\ell \\big ( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ^ { * } } ( \\mathbf { x } _ { i } ) \\big ) = \\epsilon _ { \\mathrm { N T R F } }" + }, + { + "category_id": 14, + "poly": [ + 351, + 468, + 1344, + 468, + 1344, + 565, + 351, + 565 + ], + "score": 0.93, + "latex": "\\lVert \\mathbf { W } ^ { ( 0 ) } - \\mathbf { W } ^ { * } \\rVert _ { F } ^ { 2 } - \\lVert \\mathbf { W } ^ { ( n ^ { \\prime } ) } - \\mathbf { W } ^ { * } \\rVert _ { F } ^ { 2 } \\geqslant \\Big ( \\frac 3 2 - 4 \\epsilon _ { \\mathrm { a p p } } ( \\tau ) \\Big ) \\eta \\sum _ { i = 1 } ^ { n ^ { \\prime } } L _ { i } ( \\mathbf { W } ^ { ( i - 1 ) } ) - 2 n \\eta \\epsilon _ { \\mathrm { N T R } } ." + }, + { + "category_id": 14, + "poly": [ + 513, + 1787, + 1188, + 1787, + 1188, + 1936, + 513, + 1936 + ], + "score": 0.93, + "latex": "\\begin{array} { r l } & { \\| \\mathbf { W } _ { l } ^ { ( n ^ { \\prime } ) } - \\mathbf { W } _ { l } ^ { ( 0 ) } \\| _ { F } \\leqslant \\| \\mathbf { W } _ { l } ^ { ( n ^ { \\prime } ) } - \\mathbf { W } _ { l } ^ { * } \\| _ { F } + \\| \\mathbf { W } _ { l } ^ { * } - \\mathbf { W } _ { l } ^ { ( 0 ) } \\| _ { F } } \\\\ & { \\qquad \\leqslant \\| \\mathbf { W } ^ { ( n ^ { \\prime } ) } - \\mathbf { W } ^ { * } \\| _ { F } + \\| \\mathbf { W } _ { l } ^ { * } - \\mathbf { W } _ { l } ^ { ( 0 ) } \\| _ { F } } \\\\ & { \\qquad \\leqslant \\mathcal { O } ( \\sqrt { L } R m ^ { - 1 / 2 } + \\sqrt { n \\eta \\epsilon _ { \\mathrm { N T R F } } } ) . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1072, + 1053, + 1404, + 1053, + 1404, + 1093, + 1072, + 1093 + ], + "score": 0.93, + "latex": "\\epsilon _ { \\mathrm { a p p } } ( \\tau ) = \\widetilde { \\mathcal { O } } ( \\tau ^ { 4 / 3 } m ^ { 1 / 2 } L ^ { 3 } ) =" + }, + { + "category_id": 14, + "poly": [ + 448, + 1323, + 1250, + 1323, + 1250, + 1417, + 448, + 1417 + ], + "score": 0.93, + "latex": "\\| \\mathbf { W } ^ { ( 0 ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } - \\| \\mathbf { W } ^ { ( n ^ { \\prime } ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } \\geqslant \\eta \\sum _ { i = 1 } ^ { n ^ { \\prime } } L _ { i } ( \\mathbf { W } ^ { ( i - 1 ) } ) - 2 n \\eta \\epsilon _ { \\mathrm { N T R F } }" + }, + { + "category_id": 13, + "poly": [ + 1037, + 1481, + 1170, + 1481, + 1170, + 1518, + 1037, + 1518 + ], + "score": 0.93, + "latex": "B ( \\mathbf { W } ^ { ( 0 ) } , \\tau )" + }, + { + "category_id": 13, + "poly": [ + 631, + 1740, + 922, + 1740, + 922, + 1778, + 631, + 1778 + ], + "score": 0.93, + "latex": "\\mathbf { W } ^ { * } \\in { \\mathcal { B } } ( \\mathbf { W } ^ { ( 0 ) } , R m ^ { - 1 / 2 } )" + }, + { + "category_id": 13, + "poly": [ + 1145, + 981, + 1279, + 981, + 1279, + 1018, + 1145, + 1018 + ], + "score": 0.93, + "latex": "B ( \\mathbf { W } ^ { ( 0 ) } , \\tau )" + }, + { + "category_id": 13, + "poly": [ + 347, + 980, + 644, + 980, + 644, + 1018, + 347, + 1018 + ], + "score": 0.93, + "latex": "\\mathbf { W } ^ { * } \\in \\mathcal { B } ( \\mathbf { W } ^ { ( 0 ) } , R m ^ { - 1 / 2 } )" + }, + { + "category_id": 13, + "poly": [ + 940, + 1015, + 1194, + 1015, + 1194, + 1055, + 940, + 1055 + ], + "score": 0.93, + "latex": "\\tau = \\tilde { \\mathcal { O } } ( L ^ { 1 / 2 } m ^ { - 1 / 2 } R )" + }, + { + "category_id": 13, + "poly": [ + 498, + 397, + 741, + 397, + 741, + 432, + 498, + 432 + ], + "score": 0.92, + "latex": "\\eta = \\mathcal { O } ( L ^ { - 1 } M ( \\tau ) ^ { - 2 } )" + }, + { + "category_id": 13, + "poly": [ + 571, + 1559, + 704, + 1559, + 704, + 1595, + 571, + 1595 + ], + "score": 0.92, + "latex": "B ( \\mathbf { W } ^ { ( 0 ) } , \\tau )" + }, + { + "category_id": 13, + "poly": [ + 698, + 1593, + 923, + 1593, + 923, + 1630, + 698, + 1630 + ], + "score": 0.92, + "latex": "\\mathbf { W } ^ { ( i ) } \\in { \\cal B } ( \\mathbf { W } ^ { ( 0 ) } , \\tau )" + }, + { + "category_id": 13, + "poly": [ + 688, + 352, + 846, + 352, + 846, + 387, + 688, + 387 + ], + "score": 0.92, + "latex": "F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } * } ( \\mathbf { x } )" + }, + { + "category_id": 13, + "poly": [ + 457, + 1201, + 614, + 1201, + 614, + 1236, + 457, + 1236 + ], + "score": 0.92, + "latex": "\\epsilon _ { \\mathrm { a p p } } ( \\tau ) \\leqslant 1 / 8" + }, + { + "category_id": 13, + "poly": [ + 902, + 395, + 1114, + 395, + 1114, + 433, + 902, + 433 + ], + "score": 0.92, + "latex": "\\mathbf { W } ^ { * } \\in { \\cal B } ( \\mathbf { W } ^ { ( 0 ) } , \\tau )" + }, + { + "category_id": 13, + "poly": [ + 1164, + 395, + 1401, + 395, + 1401, + 433, + 1164, + 433 + ], + "score": 0.92, + "latex": "\\mathbf { W } ^ { ( n ^ { \\prime } ) } \\in { \\cal B } ( \\mathbf { W } ^ { ( 0 ) } , \\tau )" + }, + { + "category_id": 13, + "poly": [ + 297, + 1998, + 503, + 1998, + 503, + 2033, + 297, + 2033 + ], + "score": 0.92, + "latex": "2 \\sqrt { L } R m ^ { - 1 / 2 } \\leqslant \\tau" + }, + { + "category_id": 13, + "poly": [ + 297, + 621, + 600, + 621, + 600, + 658, + 297, + 658 + ], + "score": 0.92, + "latex": "\\mathbb { E } _ { ( \\mathbf { x } , \\mathbf { y } ) \\sim \\mathcal { D } } [ - \\ell ^ { \\prime } [ y \\cdot f _ { \\mathbf { W } } \\mathbf { \\bar { ( } } \\mathbf { x ) } ] ]" + }, + { + "category_id": 13, + "poly": [ + 702, + 1196, + 753, + 1196, + 753, + 1236, + 702, + 1236 + ], + "score": 0.92, + "latex": "\\widetilde { \\Omega } ( \\cdot )" + }, + { + "category_id": 14, + "poly": [ + 757, + 1139, + 942, + 1139, + 942, + 1183, + 757, + 1183 + ], + "score": 0.91, + "latex": "m = \\widetilde \\Omega ( R ^ { 8 } L ^ { 2 2 } )" + }, + { + "category_id": 13, + "poly": [ + 1000, + 1595, + 1121, + 1595, + 1121, + 1626, + 1000, + 1626 + ], + "score": 0.91, + "latex": "i \\leqslant n ^ { \\prime } - 1" + }, + { + "category_id": 13, + "poly": [ + 911, + 318, + 1202, + 318, + 1202, + 355, + 911, + 355 + ], + "score": 0.91, + "latex": "\\mathbf { W } ^ { * } \\in { \\cal B } ( \\mathbf { W } ^ { ( 0 ) } , R m ^ { - 1 / 2 } )" + }, + { + "category_id": 13, + "poly": [ + 576, + 1961, + 1025, + 1961, + 1025, + 2001, + 576, + 2001 + ], + "score": 0.91, + "latex": "\\eta \\ = \\ \\Theta \\big ( m ^ { - 1 } \\cdot ( L R ^ { 2 } n ^ { - 1 } \\epsilon _ { \\mathrm { N T R F } } ^ { - 1 } \\wedge L ^ { - 1 } ) \\big )" + }, + { + "category_id": 13, + "poly": [ + 299, + 1090, + 533, + 1090, + 533, + 1130, + 299, + 1130 + ], + "score": 0.91, + "latex": "\\widetilde { \\mathcal { O } } ( R ^ { 4 / 3 } L ^ { 1 1 / 3 } m ^ { - 1 / 6 } )" + }, + { + "category_id": 13, + "poly": [ + 645, + 713, + 965, + 713, + 965, + 747, + 645, + 747 + ], + "score": 0.91, + "latex": "\\mathcal { E } _ { i } ( \\mathbf { W } ) = - \\ell ^ { \\prime } [ y _ { i } \\cdot f _ { \\mathbf { W } } ( \\pmb { x } _ { i } ) ]" + }, + { + "category_id": 14, + "poly": [ + 564, + 1639, + 1136, + 1639, + 1136, + 1728, + 564, + 1728 + ], + "score": 0.91, + "latex": "\\begin{array} { r l r } { { \\| \\mathbf { W } ^ { ( n ^ { \\prime } ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } \\leqslant \\| \\mathbf { W } ^ { ( 0 ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } + 2 n \\eta \\epsilon _ { \\mathrm { N T R F } } } } \\\\ & { } & { \\leqslant L R ^ { 2 } \\cdot m ^ { - 1 } + 2 n \\eta \\epsilon _ { \\mathrm { N T R F } } , } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 297, + 743, + 604, + 743, + 604, + 780, + 297, + 780 + ], + "score": 0.91, + "latex": "\\mathbb { E } _ { ( \\mathbf { x } , \\boldsymbol { y } ) \\sim \\mathcal { D } } [ - \\ell ^ { \\prime } ( \\boldsymbol { y } \\cdot f _ { \\mathbf { W } } \\mathbf { \\bar { ( } } \\mathbf { x ) } ) ]" + }, + { + "category_id": 13, + "poly": [ + 372, + 431, + 550, + 431, + 550, + 460, + 372, + 460 + ], + "score": 0.91, + "latex": "0 \\leqslant n ^ { \\prime } \\leqslant n - 1" + }, + { + "category_id": 13, + "poly": [ + 466, + 1019, + 637, + 1019, + 637, + 1056, + 466, + 1056 + ], + "score": 0.91, + "latex": "\\{ \\mathbf { W } ^ { ( t ) } \\} _ { t = 0 , \\ldots , t ^ { \\prime } }" + }, + { + "category_id": 13, + "poly": [ + 426, + 1056, + 525, + 1056, + 525, + 1087, + 426, + 1087 + ], + "score": 0.9, + "latex": "m ^ { - 1 / 2 } R" + }, + { + "category_id": 13, + "poly": [ + 414, + 1429, + 804, + 1429, + 804, + 1467, + 414, + 1467 + ], + "score": 0.9, + "latex": "\\mathbf { W } ^ { ( 0 ) } , \\ldots , \\mathbf { W } ^ { ( n ^ { \\prime } - 1 ) } \\in \\mathcal { B } ( \\mathbf { W } ^ { ( 0 ) } , \\tau )" + }, + { + "category_id": 13, + "poly": [ + 1276, + 591, + 1403, + 591, + 1403, + 624, + 1276, + 624 + ], + "score": 0.89, + "latex": "\\mathcal { E } _ { \\mathcal { D } } ( \\mathbf { W } ) =" + }, + { + "category_id": 13, + "poly": [ + 1150, + 1960, + 1406, + 1960, + 1406, + 2000, + 1150, + 2000 + ], + "score": 0.89, + "latex": "\\lVert \\mathbf { W } ^ { ( n ^ { \\prime } ) } - \\mathbf { W } ^ { ( 0 ) } \\rVert _ { F } \\leqslant" + }, + { + "category_id": 13, + "poly": [ + 1276, + 713, + 1403, + 713, + 1403, + 746, + 1276, + 746 + ], + "score": 0.89, + "latex": "\\mathcal { E } _ { \\mathcal { D } } ( \\mathbf { W } ) =" + }, + { + "category_id": 13, + "poly": [ + 680, + 841, + 730, + 841, + 730, + 869, + 680, + 869 + ], + "score": 0.86, + "latex": "\\mathbf { W } ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 908, + 1280, + 971, + 1280, + 971, + 1309, + 908, + 1309 + ], + "score": 0.86, + "latex": "1 - \\delta" + }, + { + "category_id": 13, + "poly": [ + 537, + 1594, + 599, + 1594, + 599, + 1625, + 537, + 1625 + ], + "score": 0.86, + "latex": "\\mathbf { W } ^ { ( i ) }" + }, + { + "category_id": 13, + "poly": [ + 357, + 1021, + 408, + 1021, + 408, + 1051, + 357, + 1051 + ], + "score": 0.84, + "latex": "\\mathbf { W } ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 992, + 1234, + 1008, + 1234, + 1008, + 1260, + 992, + 1260 + ], + "score": 0.81, + "latex": "\\delta" + }, + { + "category_id": 13, + "poly": [ + 586, + 1236, + 609, + 1236, + 609, + 1260, + 586, + 1260 + ], + "score": 0.79, + "latex": "R" + }, + { + "category_id": 13, + "poly": [ + 1375, + 1205, + 1396, + 1205, + 1396, + 1230, + 1375, + 1230 + ], + "score": 0.79, + "latex": "L" + }, + { + "category_id": 13, + "poly": [ + 762, + 1064, + 781, + 1064, + 781, + 1086, + 762, + 1086 + ], + "score": 0.74, + "latex": "\\tau" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 72.0, + 815.0, + 72.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 224.0, + 668.0, + 224.0, + 668.0, + 266.0, + 294.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2124.0, + 831.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 589.0, + 644.0, + 589.0, + 644.0, + 628.0, + 293.0, + 628.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 966.0, + 589.0, + 1275.0, + 589.0, + 1275.0, + 628.0, + 966.0, + 628.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 617.0, + 296.0, + 617.0, + 296.0, + 664.0, + 289.0, + 664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 601.0, + 617.0, + 1411.0, + 617.0, + 1411.0, + 664.0, + 601.0, + 664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 648.0, + 1410.0, + 648.0, + 1410.0, + 689.0, + 291.0, + 689.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 682.0, + 1406.0, + 682.0, + 1406.0, + 717.0, + 294.0, + 717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 709.0, + 644.0, + 709.0, + 644.0, + 751.0, + 291.0, + 751.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 966.0, + 709.0, + 1275.0, + 709.0, + 1275.0, + 751.0, + 966.0, + 751.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1404.0, + 709.0, + 1407.0, + 709.0, + 1407.0, + 751.0, + 1404.0, + 751.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 738.0, + 296.0, + 738.0, + 296.0, + 786.0, + 289.0, + 786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 605.0, + 738.0, + 1411.0, + 738.0, + 1411.0, + 786.0, + 605.0, + 786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 772.0, + 871.0, + 772.0, + 871.0, + 809.0, + 292.0, + 809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 975.0, + 346.0, + 975.0, + 346.0, + 1022.0, + 292.0, + 1022.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 645.0, + 975.0, + 1144.0, + 975.0, + 1144.0, + 1022.0, + 645.0, + 1022.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1280.0, + 975.0, + 1407.0, + 975.0, + 1407.0, + 1022.0, + 1280.0, + 1022.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1013.0, + 356.0, + 1013.0, + 356.0, + 1060.0, + 291.0, + 1060.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 409.0, + 1013.0, + 465.0, + 1013.0, + 465.0, + 1060.0, + 409.0, + 1060.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 638.0, + 1013.0, + 939.0, + 1013.0, + 939.0, + 1060.0, + 638.0, + 1060.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1195.0, + 1013.0, + 1407.0, + 1013.0, + 1407.0, + 1060.0, + 1195.0, + 1060.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1050.0, + 425.0, + 1050.0, + 425.0, + 1098.0, + 292.0, + 1098.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 526.0, + 1050.0, + 761.0, + 1050.0, + 761.0, + 1098.0, + 526.0, + 1098.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 782.0, + 1050.0, + 1071.0, + 1050.0, + 1071.0, + 1098.0, + 782.0, + 1098.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1086.0, + 298.0, + 1086.0, + 298.0, + 1134.0, + 294.0, + 1134.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 534.0, + 1086.0, + 796.0, + 1086.0, + 796.0, + 1134.0, + 534.0, + 1134.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 284.0, + 1406.0, + 284.0, + 1406.0, + 323.0, + 294.0, + 323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 314.0, + 910.0, + 314.0, + 910.0, + 359.0, + 291.0, + 359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1203.0, + 314.0, + 1407.0, + 314.0, + 1407.0, + 359.0, + 1203.0, + 359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 347.0, + 687.0, + 347.0, + 687.0, + 391.0, + 294.0, + 391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 847.0, + 347.0, + 1028.0, + 347.0, + 1028.0, + 391.0, + 847.0, + 391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 1950.0, + 575.0, + 1950.0, + 575.0, + 2011.0, + 288.0, + 2011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1026.0, + 1950.0, + 1149.0, + 1950.0, + 1149.0, + 2011.0, + 1026.0, + 2011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1407.0, + 1950.0, + 1410.0, + 1950.0, + 1410.0, + 2011.0, + 1407.0, + 2011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1993.0, + 296.0, + 1993.0, + 296.0, + 2040.0, + 291.0, + 2040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 504.0, + 1993.0, + 975.0, + 1993.0, + 975.0, + 2040.0, + 504.0, + 2040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 390.0, + 497.0, + 390.0, + 497.0, + 439.0, + 291.0, + 439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 742.0, + 390.0, + 901.0, + 390.0, + 901.0, + 439.0, + 742.0, + 439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1115.0, + 390.0, + 1163.0, + 390.0, + 1163.0, + 439.0, + 1115.0, + 439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 430.0, + 371.0, + 430.0, + 371.0, + 463.0, + 296.0, + 463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 551.0, + 430.0, + 765.0, + 430.0, + 765.0, + 463.0, + 551.0, + 463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1478.0, + 1036.0, + 1478.0, + 1036.0, + 1522.0, + 294.0, + 1522.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1171.0, + 1478.0, + 1406.0, + 1478.0, + 1406.0, + 1522.0, + 1171.0, + 1522.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1514.0, + 474.0, + 1514.0, + 474.0, + 1548.0, + 296.0, + 1548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1198.0, + 456.0, + 1198.0, + 456.0, + 1239.0, + 294.0, + 1239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 615.0, + 1198.0, + 701.0, + 1198.0, + 701.0, + 1239.0, + 615.0, + 1239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 754.0, + 1198.0, + 1374.0, + 1198.0, + 1374.0, + 1239.0, + 754.0, + 1239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1397.0, + 1198.0, + 1410.0, + 1198.0, + 1410.0, + 1239.0, + 1397.0, + 1239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1231.0, + 585.0, + 1231.0, + 585.0, + 1267.0, + 295.0, + 1267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 610.0, + 1231.0, + 991.0, + 1231.0, + 991.0, + 1267.0, + 610.0, + 1267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1009.0, + 1231.0, + 1018.0, + 1231.0, + 1018.0, + 1267.0, + 1009.0, + 1267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1733.0, + 630.0, + 1733.0, + 630.0, + 1787.0, + 292.0, + 1787.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 923.0, + 1733.0, + 1407.0, + 1733.0, + 1407.0, + 1787.0, + 923.0, + 1787.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 836.0, + 679.0, + 836.0, + 679.0, + 876.0, + 295.0, + 876.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 731.0, + 836.0, + 952.0, + 836.0, + 952.0, + 876.0, + 731.0, + 876.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1276.0, + 907.0, + 1276.0, + 907.0, + 1316.0, + 294.0, + 1316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 972.0, + 1276.0, + 982.0, + 1276.0, + 982.0, + 1316.0, + 972.0, + 1316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1420.0, + 413.0, + 1420.0, + 413.0, + 1475.0, + 290.0, + 1475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 805.0, + 1420.0, + 816.0, + 1420.0, + 816.0, + 1475.0, + 805.0, + 1475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1555.0, + 570.0, + 1555.0, + 570.0, + 1599.0, + 292.0, + 1599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 705.0, + 1555.0, + 1406.0, + 1555.0, + 1406.0, + 1599.0, + 705.0, + 1599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1589.0, + 536.0, + 1589.0, + 536.0, + 1634.0, + 292.0, + 1634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 600.0, + 1589.0, + 697.0, + 1589.0, + 697.0, + 1634.0, + 600.0, + 1634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 924.0, + 1589.0, + 999.0, + 1589.0, + 999.0, + 1634.0, + 924.0, + 1634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1122.0, + 1589.0, + 1341.0, + 1589.0, + 1341.0, + 1634.0, + 1122.0, + 1634.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 12, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 1382, + 1405, + 1382, + 1405, + 1552, + 296, + 1552 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 296, + 1867, + 1407, + 1867, + 1407, + 1969, + 296, + 1969 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 299, + 525, + 1402, + 525, + 1402, + 634, + 299, + 634 + ], + "score": 0.976 + }, + { + "category_id": 8, + "poly": [ + 523, + 650, + 1174, + 650, + 1174, + 901, + 523, + 901 + ], + "score": 0.969 + }, + { + "category_id": 8, + "poly": [ + 654, + 1666, + 1045, + 1666, + 1045, + 1746, + 654, + 1746 + ], + "score": 0.956 + }, + { + "category_id": 8, + "poly": [ + 436, + 279, + 1262, + 279, + 1262, + 361, + 436, + 361 + ], + "score": 0.951 + }, + { + "category_id": 8, + "poly": [ + 642, + 1808, + 1057, + 1808, + 1057, + 1853, + 642, + 1853 + ], + "score": 0.948 + }, + { + "category_id": 1, + "poly": [ + 297, + 1111, + 1401, + 1111, + 1401, + 1176, + 297, + 1176 + ], + "score": 0.946 + }, + { + "category_id": 8, + "poly": [ + 349, + 422, + 1351, + 422, + 1351, + 503, + 349, + 503 + ], + "score": 0.946 + }, + { + "category_id": 1, + "poly": [ + 295, + 1183, + 1400, + 1183, + 1400, + 1248, + 295, + 1248 + ], + "score": 0.941 + }, + { + "category_id": 8, + "poly": [ + 689, + 1264, + 1010, + 1264, + 1010, + 1308, + 689, + 1308 + ], + "score": 0.941 + }, + { + "category_id": 8, + "poly": [ + 407, + 1985, + 1293, + 1985, + 1293, + 2031, + 407, + 2031 + ], + "score": 0.936 + }, + { + "category_id": 1, + "poly": [ + 298, + 1318, + 633, + 1318, + 633, + 1351, + 298, + 1351 + ], + "score": 0.935 + }, + { + "category_id": 1, + "poly": [ + 298, + 1620, + 694, + 1620, + 694, + 1652, + 298, + 1652 + ], + "score": 0.933 + }, + { + "category_id": 1, + "poly": [ + 298, + 1760, + 758, + 1760, + 758, + 1793, + 298, + 1793 + ], + "score": 0.932 + }, + { + "category_id": 1, + "poly": [ + 296, + 375, + 1005, + 375, + 1005, + 409, + 296, + 409 + ], + "score": 0.93 + }, + { + "category_id": 1, + "poly": [ + 301, + 910, + 787, + 910, + 787, + 943, + 301, + 943 + ], + "score": 0.927 + }, + { + "category_id": 0, + "poly": [ + 298, + 986, + 840, + 986, + 840, + 1023, + 298, + 1023 + ], + "score": 0.927 + }, + { + "category_id": 8, + "poly": [ + 497, + 1565, + 1199, + 1565, + 1199, + 1609, + 497, + 1609 + ], + "score": 0.922 + }, + { + "category_id": 2, + "poly": [ + 298, + 73, + 814, + 73, + 814, + 106, + 298, + 106 + ], + "score": 0.917 + }, + { + "category_id": 0, + "poly": [ + 300, + 1055, + 705, + 1055, + 705, + 1087, + 300, + 1087 + ], + "score": 0.894 + }, + { + "category_id": 2, + "poly": [ + 835, + 2087, + 864, + 2087, + 864, + 2113, + 835, + 2113 + ], + "score": 0.873 + }, + { + "category_id": 2, + "poly": [ + 1374, + 911, + 1404, + 911, + 1404, + 941, + 1374, + 941 + ], + "score": 0.836 + }, + { + "category_id": 1, + "poly": [ + 297, + 228, + 843, + 228, + 843, + 263, + 297, + 263 + ], + "score": 0.833 + }, + { + "category_id": 0, + "poly": [ + 297, + 228, + 843, + 228, + 843, + 263, + 297, + 263 + ], + "score": 0.1 + }, + { + "category_id": 14, + "poly": [ + 522, + 649, + 1173, + 649, + 1173, + 904, + 522, + 904 + ], + "score": 0.95, + "latex": "\\begin{array} { r l r } { { \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } L _ { \\mathcal { D } } ^ { 0 - 1 } ( \\mathbf { W } ^ { ( i - 1 ) } ) \\leqslant \\displaystyle \\frac { 2 } { n } \\sum _ { i = 1 } ^ { n } \\mathcal { E } _ { \\mathcal { D } } ( \\mathbf { W } ^ { ( i - 1 ) } ) } } \\\\ & { } & { \\leqslant \\displaystyle \\frac { 8 } { n } \\sum _ { i = 1 } ^ { n } \\mathcal { E } _ { i } ( \\mathbf { W } ^ { ( i - 1 ) } ) + \\frac { 8 \\log ( 1 / \\delta ) } { n } } \\\\ & { } & { \\leqslant \\displaystyle \\frac { 8 L ^ { 2 } R ^ { 2 } } { n } + \\frac { 8 \\log ( 1 / \\delta ) } { n } + 2 4 \\epsilon _ { \\mathrm { N T R F } } . } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 653, + 1663, + 1042, + 1663, + 1042, + 1747, + 653, + 1747 + ], + "score": 0.94, + "latex": "\\lambda = \\frac { C ^ { \\prime } \\big [ \\log ^ { 1 / 2 } ( n / \\delta ) + \\log ( 1 / \\epsilon ) \\big ] } { m ^ { 1 / 2 } \\gamma } ," + }, + { + "category_id": 14, + "poly": [ + 434, + 276, + 1263, + 276, + 1263, + 364, + 434, + 364 + ], + "score": 0.93, + "latex": "\\| \\mathbf { W } ^ { ( 0 ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } - \\| \\mathbf { W } ^ { ( n ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } \\geqslant \\eta \\biggl ( \\sum _ { i = 1 } ^ { n } L _ { i } ( \\mathbf { W } ^ { ( i - 1 ) } ) - 2 n \\epsilon _ { \\mathrm { N T R F } } \\biggr ) ." + }, + { + "category_id": 13, + "poly": [ + 534, + 1416, + 738, + 1416, + 738, + 1457, + 534, + 1457 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { \\sum _ { l = 1 } ^ { L } \\| \\mathbf { U } _ { l } ^ { * } \\| _ { F } ^ { 2 } = 1 } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1236, + 563, + 1405, + 563, + 1405, + 600, + 1236, + 600 + ], + "score": 0.93, + "latex": "\\mathscr { E } _ { i } ( \\mathbf { W } ^ { ( i - 1 ) } ) \\leqslant" + }, + { + "category_id": 13, + "poly": [ + 1169, + 1182, + 1400, + 1182, + 1400, + 1219, + 1169, + 1219 + ], + "score": 0.92, + "latex": "m \\geqslant \\bar { C } L \\log ( n L / \\delta )" + }, + { + "category_id": 13, + "poly": [ + 866, + 1458, + 943, + 1458, + 943, + 1492, + 866, + 1492 + ], + "score": 0.92, + "latex": "i \\in [ n ]" + }, + { + "category_id": 13, + "poly": [ + 299, + 1420, + 471, + 1420, + 471, + 1457, + 299, + 1457 + ], + "score": 0.92, + "latex": "\\{ \\mathbf { U } _ { 1 } ^ { * } , \\cdot \\cdot \\cdot , \\mathbf { U } _ { L } ^ { * } \\}" + }, + { + "category_id": 14, + "poly": [ + 641, + 1806, + 1058, + 1806, + 1058, + 1851, + 641, + 1851 + ], + "score": 0.92, + "latex": "m ^ { 1 / 2 } \\lambda \\gamma - C \\sqrt { \\log ( n / \\delta ) } \\geqslant \\log ( 1 / \\epsilon ) ." + }, + { + "category_id": 13, + "poly": [ + 297, + 601, + 437, + 601, + 437, + 637, + 297, + 637 + ], + "score": 0.91, + "latex": "L _ { i } ( \\mathbf { W } ^ { ( i - 1 ) } )" + }, + { + "category_id": 13, + "poly": [ + 881, + 525, + 1191, + 525, + 1191, + 562, + 881, + 562 + ], + "score": 0.91, + "latex": "\\mathbf { W } ^ { \\ast } \\in { \\mathcal { B } } ( \\mathbf { W } ^ { ( 0 ) } , R \\cdot m ^ { - 1 / 2 } )" + }, + { + "category_id": 14, + "poly": [ + 348, + 421, + 1347, + 421, + 1347, + 504, + 348, + 504 + ], + "score": 0.91, + "latex": "\\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } L _ { i } ( \\mathbf { W } ^ { ( i - 1 ) } ) \\leqslant \\frac { \\| \\mathbf { W } ^ { ( 0 ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } - \\| \\mathbf { W } ^ { ( n ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } } { \\eta n } + 2 \\epsilon _ { \\mathrm { N T R F } } \\leqslant \\frac { L ^ { 2 } R ^ { 2 } } { n } + 3 \\epsilon _ { \\mathrm { N T R F } } ," + }, + { + "category_id": 13, + "poly": [ + 852, + 1417, + 1203, + 1417, + 1203, + 1455, + 852, + 1455 + ], + "score": 0.9, + "latex": "y _ { i } \\langle \\nabla f _ { \\mathbf { W } ^ { ( 0 ) } } ( \\mathbf { x } _ { i } ) , \\mathbf { U } ^ { * } \\rangle \\geqslant m ^ { 1 / 2 } \\gamma" + }, + { + "category_id": 14, + "poly": [ + 687, + 1261, + 1013, + 1261, + 1013, + 1306, + 687, + 1306 + ], + "score": 0.9, + "latex": "| f _ { \\mathbf { W } ^ { ( 0 ) } } ( \\mathbf { x } _ { i } ) | \\leqslant C \\sqrt { \\log ( n / \\delta ) }" + }, + { + "category_id": 13, + "poly": [ + 1045, + 1454, + 1362, + 1454, + 1362, + 1493, + 1045, + 1493 + ], + "score": 0.9, + "latex": "| f _ { \\mathbf { W } ^ { ( 0 ) } } ( \\mathbf { x } _ { i } ) | \\leqslant C \\sqrt { \\log ( n / \\delta ) }" + }, + { + "category_id": 13, + "poly": [ + 448, + 1867, + 710, + 1867, + 710, + 1900, + 448, + 1900 + ], + "score": 0.9, + "latex": "\\mathbf { W ^ { * } } \\ = \\ \\mathbf { W } ^ { ( 0 ) } + \\lambda \\mathbf { U ^ { * } }" + }, + { + "category_id": 14, + "poly": [ + 409, + 1984, + 1290, + 1984, + 1290, + 2031, + 409, + 2031 + ], + "score": 0.9, + "latex": "y _ { i } \\big ( f _ { \\mathbf { W } ^ { ( 0 ) } } ( \\mathbf { x } _ { i } ) + \\langle \\nabla f _ { \\mathbf { W } ^ { ( 0 ) } } , \\lambda \\mathbf { U } ^ { * } \\rangle \\big ) \\geqslant - C \\sqrt { \\log ( n / \\delta ) } - \\lambda \\| \\nabla f _ { \\mathbf { W } ^ { ( 0 ) } } \\| _ { 2 } ^ { 2 } \\geqslant - C _ { 1 } R" + }, + { + "category_id": 13, + "poly": [ + 1092, + 1905, + 1162, + 1905, + 1162, + 1937, + 1092, + 1937 + ], + "score": 0.89, + "latex": "1 - \\rho" + }, + { + "category_id": 13, + "poly": [ + 356, + 1934, + 634, + 1934, + 634, + 1971, + 356, + 1971 + ], + "score": 0.89, + "latex": "\\ell \\left( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ^ { * } } ( \\mathbf { x } _ { i } ) \\right) \\leqslant \\epsilon ." + }, + { + "category_id": 13, + "poly": [ + 298, + 1901, + 533, + 1901, + 533, + 1935, + 298, + 1935 + ], + "score": 0.89, + "latex": "\\mathcal { B } ( \\mathbf { W } ^ { ( 0 ) } , R \\cdot m ^ { - 1 / 2 } )" + }, + { + "category_id": 13, + "poly": [ + 1180, + 1493, + 1245, + 1493, + 1245, + 1521, + 1180, + 1521 + ], + "score": 0.88, + "latex": "1 - \\rho" + }, + { + "category_id": 13, + "poly": [ + 1244, + 526, + 1396, + 526, + 1396, + 563, + 1244, + 563 + ], + "score": 0.88, + "latex": "\\eta = \\Theta ( m ^ { - 1 } \\cdot" + }, + { + "category_id": 14, + "poly": [ + 500, + 1563, + 1197, + 1563, + 1197, + 1609, + 500, + 1609 + ], + "score": 0.88, + "latex": "y _ { i } \\big ( f _ { \\mathbf { W } ^ { ( 0 ) } } ( \\mathbf { x } _ { i } ) + \\langle \\nabla f _ { \\mathbf { W } ^ { ( 0 ) } } , \\lambda \\mathbf { U } ^ { * } \\rangle \\big ) \\geqslant m ^ { 1 / 2 } \\lambda \\gamma - C \\sqrt { \\log ( n / \\delta ) } ." + }, + { + "category_id": 13, + "poly": [ + 1318, + 1385, + 1402, + 1385, + 1402, + 1417, + 1318, + 1417 + ], + "score": 0.87, + "latex": "{ \\bf U } ^ { * } = " + }, + { + "category_id": 13, + "poly": [ + 921, + 1217, + 985, + 1217, + 985, + 1245, + 921, + 1245 + ], + "score": 0.87, + "latex": "1 - \\delta" + }, + { + "category_id": 13, + "poly": [ + 1318, + 1870, + 1403, + 1870, + 1403, + 1901, + 1318, + 1901 + ], + "score": 0.87, + "latex": "{ \\bf W } ^ { * } \\in { \\cal U }" + }, + { + "category_id": 13, + "poly": [ + 298, + 561, + 570, + 561, + 570, + 601, + 298, + 601 + ], + "score": 0.87, + "latex": "( L R ^ { 2 } n ^ { - 1 } \\epsilon _ { \\mathrm { N I R F } } ^ { - 1 } \\wedge L ^ { - 1 } ) \\big )" + }, + { + "category_id": 13, + "poly": [ + 1334, + 1423, + 1402, + 1423, + 1402, + 1454, + 1334, + 1454 + ], + "score": 0.86, + "latex": "1 - \\rho" + }, + { + "category_id": 13, + "poly": [ + 371, + 1762, + 403, + 1762, + 403, + 1789, + 371, + 1789 + ], + "score": 0.86, + "latex": "C ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 617, + 1213, + 640, + 1213, + 640, + 1243, + 617, + 1243 + ], + "score": 0.85, + "latex": "\\bar { C }" + }, + { + "category_id": 13, + "poly": [ + 601, + 1321, + 625, + 1321, + 625, + 1347, + 601, + 1347 + ], + "score": 0.83, + "latex": "C" + }, + { + "category_id": 13, + "poly": [ + 948, + 1872, + 973, + 1872, + 973, + 1898, + 948, + 1898 + ], + "score": 0.83, + "latex": "R" + }, + { + "category_id": 13, + "poly": [ + 558, + 1490, + 582, + 1490, + 582, + 1516, + 558, + 1516 + ], + "score": 0.8, + "latex": "C" + }, + { + "category_id": 13, + "poly": [ + 932, + 1492, + 951, + 1492, + 951, + 1516, + 932, + 1516 + ], + "score": 0.8, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 437, + 383, + 471, + 383, + 471, + 409, + 437, + 409 + ], + "score": 0.74, + "latex": "\\eta n" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 986.0, + 844.0, + 986.0, + 844.0, + 1027.0, + 294.0, + 1027.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 72.0, + 815.0, + 72.0, + 815.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1052.0, + 709.0, + 1052.0, + 709.0, + 1091.0, + 294.0, + 1091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 869.0, + 2085.0, + 869.0, + 2124.0, + 831.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1378.0, + 916.0, + 1403.0, + 916.0, + 1403.0, + 943.0, + 1378.0, + 943.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 227.0, + 846.0, + 227.0, + 846.0, + 268.0, + 295.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1383.0, + 1317.0, + 1383.0, + 1317.0, + 1420.0, + 295.0, + 1420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1416.0, + 298.0, + 1416.0, + 298.0, + 1462.0, + 295.0, + 1462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 472.0, + 1416.0, + 533.0, + 1416.0, + 533.0, + 1462.0, + 472.0, + 1462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 739.0, + 1416.0, + 851.0, + 1416.0, + 851.0, + 1462.0, + 739.0, + 1462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1204.0, + 1416.0, + 1333.0, + 1416.0, + 1333.0, + 1462.0, + 1204.0, + 1462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1403.0, + 1416.0, + 1408.0, + 1416.0, + 1408.0, + 1462.0, + 1403.0, + 1462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1454.0, + 865.0, + 1454.0, + 865.0, + 1494.0, + 291.0, + 1494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 944.0, + 1454.0, + 1044.0, + 1454.0, + 1044.0, + 1494.0, + 944.0, + 1494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1363.0, + 1454.0, + 1407.0, + 1454.0, + 1407.0, + 1494.0, + 1363.0, + 1494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1486.0, + 557.0, + 1486.0, + 557.0, + 1522.0, + 291.0, + 1522.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 583.0, + 1486.0, + 931.0, + 1486.0, + 931.0, + 1522.0, + 583.0, + 1522.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 952.0, + 1486.0, + 1179.0, + 1486.0, + 1179.0, + 1522.0, + 952.0, + 1522.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1246.0, + 1486.0, + 1406.0, + 1486.0, + 1406.0, + 1522.0, + 1246.0, + 1522.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1516.0, + 361.0, + 1516.0, + 361.0, + 1556.0, + 293.0, + 1556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1864.0, + 447.0, + 1864.0, + 447.0, + 1905.0, + 293.0, + 1905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 711.0, + 1864.0, + 947.0, + 1864.0, + 947.0, + 1905.0, + 711.0, + 1905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 974.0, + 1864.0, + 1317.0, + 1864.0, + 1317.0, + 1905.0, + 974.0, + 1905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1404.0, + 1864.0, + 1407.0, + 1864.0, + 1407.0, + 1905.0, + 1404.0, + 1905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1898.0, + 297.0, + 1898.0, + 297.0, + 1941.0, + 294.0, + 1941.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 534.0, + 1898.0, + 1091.0, + 1898.0, + 1091.0, + 1941.0, + 534.0, + 1941.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1163.0, + 1898.0, + 1407.0, + 1898.0, + 1407.0, + 1941.0, + 1163.0, + 1941.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1931.0, + 355.0, + 1931.0, + 355.0, + 1974.0, + 294.0, + 1974.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 635.0, + 1931.0, + 940.0, + 1931.0, + 940.0, + 1974.0, + 635.0, + 1974.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 522.0, + 880.0, + 522.0, + 880.0, + 562.0, + 292.0, + 562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1192.0, + 522.0, + 1243.0, + 522.0, + 1243.0, + 562.0, + 1192.0, + 562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1397.0, + 522.0, + 1403.0, + 522.0, + 1403.0, + 562.0, + 1397.0, + 562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 552.0, + 297.0, + 552.0, + 297.0, + 613.0, + 289.0, + 613.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 571.0, + 552.0, + 1235.0, + 552.0, + 1235.0, + 613.0, + 571.0, + 613.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1406.0, + 552.0, + 1411.0, + 552.0, + 1411.0, + 613.0, + 1406.0, + 613.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 594.0, + 296.0, + 594.0, + 296.0, + 642.0, + 293.0, + 642.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 438.0, + 594.0, + 550.0, + 594.0, + 550.0, + 642.0, + 438.0, + 642.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1110.0, + 1403.0, + 1110.0, + 1403.0, + 1147.0, + 293.0, + 1147.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1142.0, + 450.0, + 1142.0, + 450.0, + 1179.0, + 294.0, + 1179.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1182.0, + 1168.0, + 1182.0, + 1168.0, + 1222.0, + 294.0, + 1222.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1213.0, + 616.0, + 1213.0, + 616.0, + 1250.0, + 294.0, + 1250.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 641.0, + 1213.0, + 920.0, + 1213.0, + 920.0, + 1250.0, + 641.0, + 1250.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 986.0, + 1213.0, + 1094.0, + 1213.0, + 1094.0, + 1250.0, + 986.0, + 1250.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1314.0, + 600.0, + 1314.0, + 600.0, + 1355.0, + 293.0, + 1355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 626.0, + 1314.0, + 636.0, + 1314.0, + 636.0, + 1355.0, + 626.0, + 1355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1617.0, + 695.0, + 1617.0, + 695.0, + 1655.0, + 295.0, + 1655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1756.0, + 370.0, + 1756.0, + 370.0, + 1798.0, + 294.0, + 1798.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 404.0, + 1756.0, + 759.0, + 1756.0, + 759.0, + 1798.0, + 404.0, + 1798.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 371.0, + 436.0, + 371.0, + 436.0, + 416.0, + 294.0, + 416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 472.0, + 371.0, + 1009.0, + 371.0, + 1009.0, + 416.0, + 472.0, + 416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 908.0, + 790.0, + 908.0, + 790.0, + 947.0, + 297.0, + 947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 227.0, + 846.0, + 227.0, + 846.0, + 268.0, + 295.0, + 268.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 13, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 295, + 987, + 1408, + 987, + 1408, + 1224, + 295, + 1224 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 297, + 227, + 1405, + 227, + 1405, + 361, + 297, + 361 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 1692, + 1407, + 1692, + 1407, + 1789, + 298, + 1789 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 297, + 716, + 1405, + 716, + 1405, + 820, + 297, + 820 + ], + "score": 0.968 + }, + { + "category_id": 8, + "poly": [ + 403, + 1403, + 1295, + 1403, + 1295, + 1537, + 403, + 1537 + ], + "score": 0.951 + }, + { + "category_id": 1, + "poly": [ + 295, + 637, + 1403, + 637, + 1403, + 703, + 295, + 703 + ], + "score": 0.947 + }, + { + "category_id": 8, + "poly": [ + 504, + 374, + 1193, + 374, + 1193, + 455, + 504, + 455 + ], + "score": 0.945 + }, + { + "category_id": 8, + "poly": [ + 571, + 1804, + 1126, + 1804, + 1126, + 1887, + 571, + 1887 + ], + "score": 0.942 + }, + { + "category_id": 8, + "poly": [ + 487, + 1236, + 1208, + 1236, + 1208, + 1329, + 487, + 1329 + ], + "score": 0.941 + }, + { + "category_id": 8, + "poly": [ + 540, + 924, + 1155, + 924, + 1155, + 977, + 540, + 977 + ], + "score": 0.937 + }, + { + "category_id": 1, + "poly": [ + 298, + 466, + 584, + 466, + 584, + 500, + 298, + 500 + ], + "score": 0.936 + }, + { + "category_id": 8, + "poly": [ + 325, + 1954, + 1375, + 1954, + 1375, + 2042, + 325, + 2042 + ], + "score": 0.933 + }, + { + "category_id": 1, + "poly": [ + 296, + 1902, + 822, + 1902, + 822, + 1943, + 296, + 1943 + ], + "score": 0.931 + }, + { + "category_id": 1, + "poly": [ + 295, + 1546, + 1184, + 1546, + 1184, + 1581, + 295, + 1581 + ], + "score": 0.93 + }, + { + "category_id": 1, + "poly": [ + 289, + 1347, + 1278, + 1347, + 1278, + 1388, + 289, + 1388 + ], + "score": 0.93 + }, + { + "category_id": 8, + "poly": [ + 470, + 1594, + 1227, + 1594, + 1227, + 1679, + 470, + 1679 + ], + "score": 0.93 + }, + { + "category_id": 2, + "poly": [ + 298, + 73, + 814, + 73, + 814, + 106, + 298, + 106 + ], + "score": 0.923 + }, + { + "category_id": 0, + "poly": [ + 299, + 581, + 704, + 581, + 704, + 613, + 299, + 613 + ], + "score": 0.918 + }, + { + "category_id": 8, + "poly": [ + 343, + 826, + 1348, + 826, + 1348, + 873, + 343, + 873 + ], + "score": 0.875 + }, + { + "category_id": 2, + "poly": [ + 835, + 2087, + 864, + 2087, + 864, + 2113, + 835, + 2113 + ], + "score": 0.872 + }, + { + "category_id": 2, + "poly": [ + 1374, + 513, + 1404, + 513, + 1404, + 544, + 1374, + 544 + ], + "score": 0.841 + }, + { + "category_id": 1, + "poly": [ + 299, + 879, + 898, + 879, + 898, + 915, + 299, + 915 + ], + "score": 0.616 + }, + { + "category_id": 14, + "poly": [ + 324, + 1953, + 1369, + 1953, + 1369, + 2044, + 324, + 2044 + ], + "score": 0.94, + "latex": "y _ { i } \\langle \\nabla _ { \\mathbf { W } _ { 1 } } f _ { \\mathbf { W } ^ { ( 0 ) } } ( \\mathbf { x } _ { i } ) , \\mathbf { U } \\rangle = \\frac { 1 } { \\sqrt { | \\mathcal { S } | } } \\sum _ { j = 1 } ^ { m } y _ { i } \\cdot w _ { 2 , j } ^ { ( 0 ) } \\cdot \\langle \\mathbf { v } _ { j } , \\mathbf { x } _ { i } \\rangle \\cdot \\sigma ^ { \\prime } \\big ( \\langle \\mathbf { w } _ { 1 , j } ^ { ( 0 ) } , \\mathbf { x } _ { i } \\rangle \\big ) \\geqslant \\frac { \\sqrt { | \\mathcal { S } | } \\gamma } { 2 } \\geqslant \\frac { m ^ { 1 / 2 } \\gamma } { 4 } ," + }, + { + "category_id": 13, + "poly": [ + 378, + 1344, + 599, + 1344, + 599, + 1391, + 378, + 1391 + ], + "score": 0.94, + "latex": "\\mathbf { v } _ { j } = \\overline { { \\mathbf { u } } } ( \\mathbf { w } _ { 1 , j } ^ { ( 0 ) } ) / w _ { 2 , j }" + }, + { + "category_id": 14, + "poly": [ + 505, + 370, + 1195, + 370, + 1195, + 458, + 505, + 458 + ], + "score": 0.93, + "latex": "\\epsilon _ { \\mathrm { N T R F } } \\leqslant n ^ { - 1 } \\sum _ { i = 1 } ^ { n } \\ell \\big ( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ^ { * } } ( \\mathbf { x } _ { i } ) \\big ) \\leqslant ( 1 - \\rho ) \\epsilon + \\rho \\cdot \\mathcal { O } ( R )" + }, + { + "category_id": 13, + "poly": [ + 944, + 995, + 1070, + 995, + 1070, + 1030, + 944, + 1030 + ], + "score": 0.93, + "latex": "\\mathcal { N } ( 0 , 1 / m )" + }, + { + "category_id": 13, + "poly": [ + 576, + 751, + 784, + 751, + 784, + 789, + 576, + 789 + ], + "score": 0.93, + "latex": "\\overline { { \\mathbf { W } } } = \\{ \\overline { { \\mathbf { W } } } _ { 1 } , \\overline { { \\mathbf { W } } } _ { 2 } \\}" + }, + { + "category_id": 13, + "poly": [ + 298, + 786, + 414, + 786, + 414, + 818, + 298, + 818 + ], + "score": 0.93, + "latex": "R \\cdot m ^ { - 1 / 2 }" + }, + { + "category_id": 13, + "poly": [ + 628, + 1348, + 854, + 1348, + 854, + 1388, + 628, + 1388 + ], + "score": 0.93, + "latex": "\\lvert w _ { 2 , j } \\rvert \\geqslant 0 . 4 7 m ^ { - 1 / 2 }" + }, + { + "category_id": 13, + "poly": [ + 342, + 1902, + 717, + 1902, + 717, + 1943, + 342, + 1943 + ], + "score": 0.93, + "latex": "\\mathbf { U } = ( \\mathbf { v } _ { 1 } , \\mathbf { v } _ { 2 } , \\cdot \\cdot \\cdot , \\mathbf { v } _ { m } ) ^ { \\top } / \\sqrt { m | S | }" + }, + { + "category_id": 13, + "poly": [ + 491, + 882, + 667, + 882, + 667, + 915, + 491, + 915 + ], + "score": 0.93, + "latex": "\\nabla _ { \\mathbf { W } _ { 1 } } f _ { \\mathbf { W } ^ { ( 0 ) } } \\left( \\mathbf { x } _ { i } \\right)" + }, + { + "category_id": 13, + "poly": [ + 414, + 1106, + 643, + 1106, + 643, + 1152, + 414, + 1152 + ], + "score": 0.93, + "latex": "| w _ { 2 , j } ^ { ( 0 ) } | \\geqslant 0 . 4 7 m ^ { - 1 / 2 }" + }, + { + "category_id": 13, + "poly": [ + 460, + 1035, + 828, + 1035, + 828, + 1077, + 460, + 1077 + ], + "score": 0.93, + "latex": "\\mathbb { P } ( | w _ { 2 , j } ^ { ( 0 ) } | \\geqslant 0 . 4 7 m ^ { - 1 / 2 } ) \\geqslant 1 / 2" + }, + { + "category_id": 13, + "poly": [ + 1121, + 995, + 1260, + 995, + 1260, + 1030, + 1121, + 1030 + ], + "score": 0.92, + "latex": "\\mathcal { N } ( 0 , 2 \\mathbf { I } / m )" + }, + { + "category_id": 14, + "poly": [ + 488, + 1233, + 1212, + 1233, + 1212, + 1332, + 488, + 1332 + ], + "score": 0.92, + "latex": "\\frac { 1 } { | \\cal { S } | } \\sum _ { j \\in \\cal { S } } y _ { i } \\cdot \\langle \\overline { { \\mathbf { u } } } ( \\mathbf { w } _ { 1 , j } ^ { ( 0 ) } ) , \\mathbf { x } _ { i } \\rangle \\cdot \\sigma ^ { \\prime } ( \\langle \\mathbf { w } _ { 1 , j } ^ { ( 0 ) } , \\mathbf { x } _ { i } \\rangle ) \\geqslant \\gamma - \\sqrt { \\frac { 2 \\log ( 1 / \\delta ^ { \\prime } ) } { | \\cal { S } | } } ." + }, + { + "category_id": 14, + "poly": [ + 403, + 1402, + 1295, + 1402, + 1295, + 1543, + 403, + 1543 + ], + "score": 0.92, + "latex": "\\begin{array} { r l } & { ~ \\displaystyle \\sum _ { j = 1 } ^ { m } y _ { i } \\cdot w _ { 2 , j } ^ { ( 0 ) } \\cdot \\langle \\mathbf { v } _ { j } , \\mathbf { x } _ { i } \\rangle \\cdot \\sigma ^ { \\prime } \\big ( \\langle \\mathbf { w } _ { 1 , j } ^ { ( 0 ) } , \\mathbf { x } _ { i } \\rangle \\big ) = \\displaystyle \\sum _ { j \\in S } y _ { i } \\cdot \\langle \\mathbf { \\overline { { u } } } ( \\mathbf { w } _ { 1 , j } ^ { ( 0 ) } ) , \\mathbf { x } _ { i } \\rangle \\cdot \\sigma ^ { \\prime } \\big ( \\langle \\mathbf { w } _ { 1 , j } ^ { ( 0 ) } , \\mathbf { x } _ { i } \\rangle \\big ) } \\\\ & { \\quad \\quad \\quad \\geqslant | S | \\gamma - \\sqrt { 2 | S | \\log ( 1 / \\delta ^ { \\prime } ) } . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 405, + 988, + 458, + 988, + 458, + 1035, + 405, + 1035 + ], + "score": 0.92, + "latex": "w _ { 2 , j } ^ { ( 0 ) }" + }, + { + "category_id": 13, + "poly": [ + 417, + 1188, + 597, + 1188, + 597, + 1224, + 417, + 1224 + ], + "score": 0.92, + "latex": "\\overline { { \\mathbf { u } } } ( \\cdot ) : \\mathbb { R } ^ { d } \\mathbb { R } ^ { d }" + }, + { + "category_id": 13, + "poly": [ + 1287, + 1106, + 1352, + 1106, + 1352, + 1148, + 1287, + 1148 + ], + "score": 0.92, + "latex": "\\mathbf { W } _ { 1 } ^ { ( 0 ) }" + }, + { + "category_id": 14, + "poly": [ + 569, + 1800, + 1125, + 1800, + 1125, + 1891, + 569, + 1891 + ], + "score": 0.92, + "latex": "\\sum _ { j = 1 } ^ { m } y _ { i } \\cdot w _ { 2 , j } ^ { ( 0 ) } \\cdot \\langle \\mathbf { v } _ { j } , \\mathbf { x } _ { i } \\rangle \\cdot \\sigma ^ { \\prime } ( \\langle \\mathbf { w } _ { 1 , j } ^ { ( 0 ) } , \\mathbf { x } _ { i } \\rangle ) \\geqslant | \\mathcal { S } | \\gamma / 2 ." + }, + { + "category_id": 13, + "poly": [ + 1109, + 1693, + 1235, + 1693, + 1235, + 1727, + 1109, + 1727 + ], + "score": 0.92, + "latex": "| { \\mathcal { S } } | \\geqslant m / 4" + }, + { + "category_id": 13, + "poly": [ + 340, + 1548, + 444, + 1548, + 444, + 1575, + 340, + 1575 + ], + "score": 0.92, + "latex": "\\delta = 2 n \\delta ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 298, + 262, + 401, + 262, + 401, + 301, + 298, + 301 + ], + "score": 0.92, + "latex": "\\tilde { \\mathcal { O } } ( m ^ { 1 / 2 } )" + }, + { + "category_id": 13, + "poly": [ + 708, + 296, + 1026, + 296, + 1026, + 333, + 708, + 333 + ], + "score": 0.92, + "latex": "\\ell \\left( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ^ { * } } ( \\mathbf { x } _ { i } ) \\right) \\leqslant C _ { 2 } R" + }, + { + "category_id": 13, + "poly": [ + 1244, + 230, + 1404, + 230, + 1404, + 265, + 1244, + 265 + ], + "score": 0.92, + "latex": "\\| \\nabla f _ { \\mathbf { W } ^ { ( 0 ) } } \\| _ { 2 } =" + }, + { + "category_id": 14, + "poly": [ + 469, + 1589, + 1228, + 1589, + 1228, + 1682, + 469, + 1682 + ], + "score": 0.91, + "latex": "\\sum _ { j = 1 } ^ { m } y _ { i } \\cdot w _ { 2 , j } ^ { ( 0 ) } \\cdot \\left. \\mathbf { v } _ { j } , \\mathbf { x } _ { i } \\right. \\cdot \\sigma ^ { \\prime } ( \\left. \\mathbf { w } _ { 1 , j } ^ { ( 0 ) } , \\mathbf { x } _ { i } \\right. ) \\geqslant | S | \\gamma - \\sqrt { 2 | S | \\log ( 2 n / \\delta ) } ." + }, + { + "category_id": 13, + "poly": [ + 296, + 1148, + 361, + 1148, + 361, + 1191, + 296, + 1191 + ], + "score": 0.91, + "latex": "\\mathbf { W } _ { 2 } ^ { ( 0 ) }" + }, + { + "category_id": 13, + "poly": [ + 385, + 1755, + 619, + 1755, + 619, + 1788, + 385, + 1788 + ], + "score": 0.91, + "latex": "m \\geqslant 3 2 \\log ( n / \\delta ) / \\gamma ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 905, + 1353, + 990, + 1353, + 990, + 1387, + 905, + 1387 + ], + "score": 0.91, + "latex": "\\mathbf { v } _ { j } = \\mathbf { 0 }" + }, + { + "category_id": 13, + "poly": [ + 808, + 1693, + 993, + 1693, + 993, + 1726, + 808, + 1726 + ], + "score": 0.91, + "latex": "1 - \\exp ( - m / 8 )" + }, + { + "category_id": 13, + "poly": [ + 527, + 1725, + 644, + 1725, + 644, + 1756, + 527, + 1756 + ], + "score": 0.91, + "latex": "y _ { i } \\in \\left\\{ \\pm 1 \\right\\}" + }, + { + "category_id": 13, + "poly": [ + 509, + 988, + 564, + 988, + 564, + 1034, + 509, + 1034 + ], + "score": 0.91, + "latex": "\\mathbf { w } _ { 1 , j } ^ { ( 0 ) }" + }, + { + "category_id": 14, + "poly": [ + 543, + 924, + 1154, + 924, + 1154, + 978, + 543, + 978 + ], + "score": 0.91, + "latex": "\\big ( \\nabla _ { \\mathbf { W } _ { 1 } } f _ { \\mathbf { W } ^ { ( 0 ) } } ( \\mathbf { x } _ { i } ) \\big ) _ { j } = m ^ { 1 / 2 } \\cdot w _ { 2 , j } ^ { ( 0 ) } \\cdot \\sigma ^ { \\prime } \\big ( \\langle \\mathbf { w } _ { 1 , j } ^ { ( 0 ) } , \\mathbf { x } _ { i } \\rangle \\big ) \\cdot \\mathbf { x } _ { i } ." + }, + { + "category_id": 13, + "poly": [ + 977, + 1190, + 1047, + 1190, + 1047, + 1220, + 977, + 1220 + ], + "score": 0.9, + "latex": "1 - \\delta ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 685, + 232, + 719, + 232, + 719, + 261, + 685, + 261 + ], + "score": 0.9, + "latex": "C _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 908, + 747, + 1404, + 747, + 1404, + 790, + 908, + 790 + ], + "score": 0.9, + "latex": "\\operatorname* { m a x } \\{ \\| \\overline { { \\mathbf { W } } } _ { 1 } - \\mathbf { W } _ { 1 } ^ { ( 0 ) } \\| _ { F } , \\| \\overline { { \\mathbf { W } } } _ { 2 } - \\mathbf { W } _ { 2 } ^ { ( 0 ) } \\| _ { 2 } \\} \\leqslant" + }, + { + "category_id": 13, + "poly": [ + 918, + 1075, + 972, + 1075, + 972, + 1109, + 918, + 1109 + ], + "score": 0.89, + "latex": "m / 4" + }, + { + "category_id": 13, + "poly": [ + 521, + 1077, + 706, + 1077, + 706, + 1109, + 521, + 1109 + ], + "score": 0.89, + "latex": "1 - \\exp ( - m / 8 )" + }, + { + "category_id": 13, + "poly": [ + 1325, + 1726, + 1398, + 1726, + 1398, + 1755, + 1325, + 1755 + ], + "score": 0.88, + "latex": "\\gamma \\leqslant 1" + }, + { + "category_id": 13, + "poly": [ + 901, + 1753, + 1385, + 1753, + 1385, + 1791, + 901, + 1791 + ], + "score": 0.88, + "latex": "1 - \\delta / 2 - \\exp \\big ( - 4 \\log ( n / \\delta ) / \\gamma ^ { 2 } \\big ) \\geqslant 1 - \\delta" + }, + { + "category_id": 13, + "poly": [ + 699, + 1724, + 991, + 1724, + 991, + 1758, + 699, + 1758 + ], + "score": 0.88, + "latex": "| \\sigma ^ { \\prime } ( \\cdot ) | , \\| \\overline { { \\mathbf { u } } } ( \\cdot ) \\| _ { 2 } , \\| \\mathbf { x } _ { i } \\| _ { 2 } \\leqslant 1" + }, + { + "category_id": 13, + "poly": [ + 1037, + 1727, + 1181, + 1727, + 1181, + 1754, + 1037, + 1754 + ], + "score": 0.88, + "latex": "i = 1 , \\ldots , n" + }, + { + "category_id": 13, + "poly": [ + 1083, + 1547, + 1172, + 1547, + 1172, + 1581, + 1083, + 1581 + ], + "score": 0.88, + "latex": "1 - \\delta / 2" + }, + { + "category_id": 13, + "poly": [ + 1228, + 299, + 1263, + 299, + 1263, + 328, + 1228, + 328 + ], + "score": 0.88, + "latex": "C _ { 2 }" + }, + { + "category_id": 14, + "poly": [ + 346, + 825, + 1349, + 825, + 1349, + 873, + 346, + 873 + ], + "score": 0.87, + "latex": "y _ { i } \\cdot \\left[ f _ { \\mathbf { W } ^ { ( 0 ) } } ( \\mathbf { x } _ { i } ) + \\langle \\nabla _ { \\mathbf { W } _ { 1 } } f _ { \\mathbf { W } ^ { ( 0 ) } } , \\overline { { \\mathbf { W } } } _ { 1 } - \\mathbf { W } _ { 1 } ^ { ( 0 ) } \\rangle + \\langle \\nabla _ { \\mathbf { W } _ { 2 } } f _ { \\mathbf { W } ^ { ( 0 ) } } , \\overline { { \\mathbf { W } } } _ { 2 } - \\mathbf { W } _ { 2 } ^ { ( 0 ) } \\rangle \\right] \\geqslant \\log ( 2 / \\epsilon ) ." + }, + { + "category_id": 13, + "poly": [ + 1375, + 1077, + 1397, + 1077, + 1397, + 1103, + 1375, + 1103 + ], + "score": 0.79, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 1142, + 1114, + 1164, + 1114, + 1164, + 1141, + 1142, + 1141 + ], + "score": 0.77, + "latex": "s" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 72.0, + 815.0, + 72.0, + 815.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 578.0, + 708.0, + 578.0, + 708.0, + 617.0, + 294.0, + 617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2124.0, + 831.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1378.0, + 518.0, + 1403.0, + 518.0, + 1403.0, + 545.0, + 1378.0, + 545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 565.0, + 988.0, + 943.0, + 988.0, + 943.0, + 1032.0, + 565.0, + 1032.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1071.0, + 988.0, + 1120.0, + 988.0, + 1120.0, + 1032.0, + 1071.0, + 1032.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1261.0, + 988.0, + 1405.0, + 988.0, + 1405.0, + 1032.0, + 1261.0, + 1032.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 287.0, + 1021.0, + 459.0, + 1021.0, + 459.0, + 1088.0, + 287.0, + 1088.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 829.0, + 1021.0, + 1407.0, + 1021.0, + 1407.0, + 1088.0, + 829.0, + 1088.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1073.0, + 520.0, + 1073.0, + 520.0, + 1111.0, + 292.0, + 1111.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 707.0, + 1073.0, + 917.0, + 1073.0, + 917.0, + 1111.0, + 707.0, + 1111.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 973.0, + 1073.0, + 1374.0, + 1073.0, + 1374.0, + 1111.0, + 973.0, + 1111.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1398.0, + 1073.0, + 1410.0, + 1073.0, + 1410.0, + 1111.0, + 1398.0, + 1111.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1101.0, + 413.0, + 1101.0, + 413.0, + 1156.0, + 290.0, + 1156.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 644.0, + 1101.0, + 1141.0, + 1101.0, + 1141.0, + 1156.0, + 644.0, + 1156.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1165.0, + 1101.0, + 1286.0, + 1101.0, + 1286.0, + 1156.0, + 1165.0, + 1156.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1353.0, + 1101.0, + 1407.0, + 1101.0, + 1407.0, + 1156.0, + 1353.0, + 1156.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 287.0, + 1144.0, + 295.0, + 1144.0, + 295.0, + 1199.0, + 287.0, + 1199.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 362.0, + 1144.0, + 1409.0, + 1144.0, + 1409.0, + 1199.0, + 362.0, + 1199.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1186.0, + 416.0, + 1186.0, + 416.0, + 1227.0, + 292.0, + 1227.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 598.0, + 1186.0, + 976.0, + 1186.0, + 976.0, + 1227.0, + 598.0, + 1227.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1048.0, + 1186.0, + 1061.0, + 1186.0, + 1061.0, + 1227.0, + 1048.0, + 1227.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.75, + 990.0, + 464.75, + 990.0, + 464.75, + 1036.0, + 292.75, + 1036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 455.0, + 989.0, + 572.0, + 989.0, + 572.0, + 1042.0, + 455.0, + 1042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 227.0, + 684.0, + 227.0, + 684.0, + 268.0, + 292.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 720.0, + 227.0, + 1243.0, + 227.0, + 1243.0, + 268.0, + 720.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 259.0, + 297.0, + 259.0, + 297.0, + 306.0, + 294.0, + 306.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 402.0, + 259.0, + 1409.0, + 259.0, + 1409.0, + 306.0, + 402.0, + 306.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 294.0, + 707.0, + 294.0, + 707.0, + 334.0, + 292.0, + 334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1027.0, + 294.0, + 1227.0, + 294.0, + 1227.0, + 334.0, + 1027.0, + 334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1264.0, + 294.0, + 1406.0, + 294.0, + 1406.0, + 334.0, + 1264.0, + 334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 328.0, + 1036.0, + 328.0, + 1036.0, + 362.0, + 295.0, + 362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1690.0, + 807.0, + 1690.0, + 807.0, + 1728.0, + 295.0, + 1728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 994.0, + 1690.0, + 1108.0, + 1690.0, + 1108.0, + 1728.0, + 994.0, + 1728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1236.0, + 1690.0, + 1405.0, + 1690.0, + 1405.0, + 1728.0, + 1236.0, + 1728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1721.0, + 526.0, + 1721.0, + 526.0, + 1763.0, + 292.0, + 1763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 645.0, + 1721.0, + 698.0, + 1721.0, + 698.0, + 1763.0, + 645.0, + 1763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 992.0, + 1721.0, + 1036.0, + 1721.0, + 1036.0, + 1763.0, + 992.0, + 1763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1182.0, + 1721.0, + 1324.0, + 1721.0, + 1324.0, + 1763.0, + 1182.0, + 1763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1399.0, + 1721.0, + 1410.0, + 1721.0, + 1410.0, + 1763.0, + 1399.0, + 1763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1750.0, + 384.0, + 1750.0, + 384.0, + 1791.0, + 292.0, + 1791.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 620.0, + 1750.0, + 900.0, + 1750.0, + 900.0, + 1791.0, + 620.0, + 1791.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1386.0, + 1750.0, + 1402.0, + 1750.0, + 1402.0, + 1791.0, + 1386.0, + 1791.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 716.0, + 1405.0, + 716.0, + 1405.0, + 751.0, + 295.0, + 751.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 286.0, + 739.0, + 575.0, + 739.0, + 575.0, + 797.0, + 286.0, + 797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 785.0, + 739.0, + 907.0, + 739.0, + 907.0, + 797.0, + 785.0, + 797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1405.0, + 739.0, + 1410.0, + 739.0, + 1410.0, + 797.0, + 1405.0, + 797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 781.0, + 297.0, + 781.0, + 297.0, + 824.0, + 293.0, + 824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 415.0, + 781.0, + 529.0, + 781.0, + 529.0, + 824.0, + 415.0, + 824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 636.0, + 1406.0, + 636.0, + 1406.0, + 676.0, + 294.0, + 676.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 669.0, + 711.0, + 669.0, + 711.0, + 704.0, + 295.0, + 704.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 464.0, + 586.0, + 464.0, + 586.0, + 504.0, + 294.0, + 504.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1898.0, + 341.0, + 1898.0, + 341.0, + 1947.0, + 293.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 718.0, + 1898.0, + 828.0, + 1898.0, + 828.0, + 1947.0, + 718.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1541.0, + 339.0, + 1541.0, + 339.0, + 1587.0, + 293.0, + 1587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 445.0, + 1541.0, + 1082.0, + 1541.0, + 1082.0, + 1587.0, + 445.0, + 1587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1173.0, + 1541.0, + 1184.0, + 1541.0, + 1184.0, + 1587.0, + 1173.0, + 1587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1338.0, + 377.0, + 1338.0, + 377.0, + 1394.0, + 289.0, + 1394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 600.0, + 1338.0, + 627.0, + 1338.0, + 627.0, + 1394.0, + 600.0, + 1394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 855.0, + 1338.0, + 904.0, + 1338.0, + 904.0, + 1394.0, + 855.0, + 1394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 991.0, + 1338.0, + 1285.0, + 1338.0, + 1285.0, + 1394.0, + 991.0, + 1394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 878.0, + 490.0, + 878.0, + 490.0, + 918.0, + 295.0, + 918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 668.0, + 878.0, + 898.0, + 878.0, + 898.0, + 918.0, + 668.0, + 918.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 14, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 869, + 1406, + 869, + 1406, + 1073, + 296, + 1073 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 296, + 698, + 1406, + 698, + 1406, + 860, + 296, + 860 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 297, + 1900, + 1405, + 1900, + 1405, + 2038, + 297, + 2038 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 297, + 1690, + 1406, + 1690, + 1406, + 1785, + 297, + 1785 + ], + "score": 0.97 + }, + { + "category_id": 1, + "poly": [ + 296, + 227, + 1407, + 227, + 1407, + 335, + 296, + 335 + ], + "score": 0.969 + }, + { + "category_id": 1, + "poly": [ + 297, + 402, + 1405, + 402, + 1405, + 516, + 297, + 516 + ], + "score": 0.968 + }, + { + "category_id": 8, + "poly": [ + 447, + 1365, + 1254, + 1365, + 1254, + 1467, + 447, + 1467 + ], + "score": 0.958 + }, + { + "category_id": 8, + "poly": [ + 638, + 1085, + 1058, + 1085, + 1058, + 1167, + 638, + 1167 + ], + "score": 0.957 + }, + { + "category_id": 8, + "poly": [ + 498, + 1793, + 1199, + 1793, + 1199, + 1876, + 498, + 1876 + ], + "score": 0.953 + }, + { + "category_id": 1, + "poly": [ + 296, + 1176, + 1402, + 1176, + 1402, + 1238, + 296, + 1238 + ], + "score": 0.953 + }, + { + "category_id": 1, + "poly": [ + 298, + 1608, + 1399, + 1608, + 1399, + 1680, + 298, + 1680 + ], + "score": 0.945 + }, + { + "category_id": 1, + "poly": [ + 298, + 1531, + 1400, + 1531, + 1400, + 1596, + 298, + 1596 + ], + "score": 0.945 + }, + { + "category_id": 8, + "poly": [ + 709, + 525, + 991, + 525, + 991, + 565, + 709, + 565 + ], + "score": 0.936 + }, + { + "category_id": 8, + "poly": [ + 438, + 1248, + 1260, + 1248, + 1260, + 1316, + 438, + 1316 + ], + "score": 0.934 + }, + { + "category_id": 1, + "poly": [ + 297, + 1322, + 1152, + 1322, + 1152, + 1355, + 297, + 1355 + ], + "score": 0.93 + }, + { + "category_id": 1, + "poly": [ + 297, + 573, + 812, + 573, + 812, + 608, + 297, + 608 + ], + "score": 0.929 + }, + { + "category_id": 1, + "poly": [ + 302, + 1481, + 1263, + 1481, + 1263, + 1520, + 302, + 1520 + ], + "score": 0.922 + }, + { + "category_id": 0, + "poly": [ + 300, + 642, + 705, + 642, + 705, + 674, + 300, + 674 + ], + "score": 0.92 + }, + { + "category_id": 2, + "poly": [ + 298, + 74, + 814, + 74, + 814, + 105, + 298, + 105 + ], + "score": 0.92 + }, + { + "category_id": 9, + "poly": [ + 1340, + 1422, + 1401, + 1422, + 1401, + 1454, + 1340, + 1454 + ], + "score": 0.903 + }, + { + "category_id": 9, + "poly": [ + 1340, + 354, + 1400, + 354, + 1400, + 386, + 1340, + 386 + ], + "score": 0.876 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 864, + 2088, + 864, + 2113, + 835, + 2113 + ], + "score": 0.868 + }, + { + "category_id": 2, + "poly": [ + 1374, + 574, + 1403, + 574, + 1403, + 604, + 1374, + 604 + ], + "score": 0.835 + }, + { + "category_id": 8, + "poly": [ + 306, + 345, + 1318, + 345, + 1318, + 392, + 306, + 392 + ], + "score": 0.715 + }, + { + "category_id": 1, + "poly": [ + 306, + 345, + 1318, + 345, + 1318, + 392, + 306, + 392 + ], + "score": 0.174 + }, + { + "category_id": 14, + "poly": [ + 639, + 1082, + 1059, + 1082, + 1059, + 1169, + 639, + 1169 + ], + "score": 0.94, + "latex": "\\widetilde { L } _ { S } ( \\mathbf { W } ) = \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } \\widetilde { \\ell } \\big ( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } } ( \\mathbf { x } _ { i } ) \\big ) ." + }, + { + "category_id": 13, + "poly": [ + 989, + 292, + 1136, + 292, + 1136, + 334, + 989, + 334 + ], + "score": 0.94, + "latex": "\\overline { { \\mathbf { W } } } _ { 2 } = \\mathbf { W } _ { 2 } ^ { ( 0 ) }" + }, + { + "category_id": 13, + "poly": [ + 514, + 1640, + 693, + 1640, + 693, + 1681, + 514, + 1681 + ], + "score": 0.94, + "latex": "\\nabla _ { \\mathbf { W } _ { L - 1 } } \\tilde { L } _ { S } ( \\mathbf { W } )" + }, + { + "category_id": 13, + "poly": [ + 997, + 730, + 1139, + 730, + 1139, + 767, + 997, + 767 + ], + "score": 0.93, + "latex": "{ \\mathcal { F } } ( { \\mathbf { W } } ^ { ( 0 ) } , R )" + }, + { + "category_id": 13, + "poly": [ + 518, + 1479, + 728, + 1479, + 728, + 1521, + 518, + 1521 + ], + "score": 0.93, + "latex": "\\nabla _ { \\mathbf { W } _ { L - 1 } } \\widetilde { L } _ { S } ( \\mathbf { W } ( t ) )" + }, + { + "category_id": 14, + "poly": [ + 497, + 1790, + 1202, + 1790, + 1202, + 1878, + 497, + 1878 + ], + "score": 0.93, + "latex": "\\| \\nabla _ { \\mathbf { W } _ { L - 1 } } \\widetilde { L } _ { S } ( \\mathbf { W } ( t ) ) \\| _ { F } ^ { 2 } \\geqslant \\frac { C m \\phi } { n ^ { 5 } } \\bigg [ \\sum _ { i = 1 } ^ { n } \\widetilde { \\ell } ^ { \\prime } \\big ( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ( t ) } ( \\mathbf { x } _ { i } ) \\big ) \\bigg ] ^ { 2 } ." + }, + { + "category_id": 13, + "poly": [ + 1129, + 440, + 1340, + 440, + 1340, + 478, + 1129, + 478 + ], + "score": 0.93, + "latex": "\\overline { { \\mathbf { W } } } \\in \\mathfrak { B } ( \\mathbf { W } ^ { ( 0 ) } , R )" + }, + { + "category_id": 13, + "poly": [ + 1239, + 943, + 1353, + 943, + 1353, + 982, + 1239, + 982 + ], + "score": 0.93, + "latex": " { \\widetilde { \\ell } } ( x ) \\leqslant 1" + }, + { + "category_id": 13, + "poly": [ + 424, + 1725, + 488, + 1725, + 488, + 1753, + 424, + 1753 + ], + "score": 0.93, + "latex": "t \\geqslant 0" + }, + { + "category_id": 13, + "poly": [ + 793, + 902, + 1092, + 902, + 1092, + 946, + 793, + 946 + ], + "score": 0.92, + "latex": "\\widetilde { \\ell } ( x ) = \\left( \\operatorname* { m a x } \\{ \\lambda - x , 0 \\} \\right) ^ { 2 }" + }, + { + "category_id": 14, + "poly": [ + 444, + 1363, + 1253, + 1363, + 1253, + 1472, + 444, + 1472 + ], + "score": 0.92, + "latex": "\\begin{array} { r l } & { \\nabla _ { \\mathbf { W } _ { L - 1 } } \\tilde { L } _ { S } \\big ( \\mathbf { W } ( t ) \\big ) = y _ { i } \\tilde { \\ell } ^ { \\prime } \\big ( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ( t ) } ( \\mathbf { x } _ { i } ) \\big ) \\cdot \\nabla _ { \\mathbf { W } _ { L - 1 } } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ( t ) } ( \\mathbf { x } _ { i } ) } \\\\ & { \\qquad = y _ { i } \\tilde { \\ell } ^ { \\prime } \\big ( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ( t ) } ( \\mathbf { x } _ { i } ) \\big ) \\cdot \\nabla _ { \\mathbf { W } _ { L - 1 } ^ { ( 0 ) } } f _ { \\mathbf { W } ^ { ( 0 ) } } ( \\mathbf { x } _ { i } ) . } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 435, + 1246, + 1263, + 1246, + 1263, + 1317, + 435, + 1317 + ], + "score": 0.92, + "latex": "\\frac { \\mathrm { d } \\mathbf { W } _ { L - 1 } ( t ) } { \\mathrm { d } t } = - \\nabla _ { \\mathbf { W } _ { L - 1 } } \\widetilde { L } _ { S } ( \\mathbf { W } ( t ) ) , \\quad \\frac { \\mathrm { d } \\mathbf { W } _ { l } ( t ) } { \\mathrm { d } t } = \\mathbf { 0 } \\quad \\mathrm { f o r ~ a n y ~ } l \\neq L - 1 ." + }, + { + "category_id": 13, + "poly": [ + 416, + 405, + 564, + 405, + 564, + 439, + 416, + 439 + ], + "score": 0.92, + "latex": "\\| \\overline { { \\mathbf { u } } } ( \\cdot ) \\| _ { 2 } ~ \\leqslant ~ 1" + }, + { + "category_id": 13, + "poly": [ + 502, + 2000, + 721, + 2000, + 721, + 2038, + 502, + 2038 + ], + "score": 0.92, + "latex": "\\nabla _ { \\mathbf { W } _ { L - 1 } } L _ { S } ( \\mathbf { W } ^ { ( 0 ) } ) )" + }, + { + "category_id": 13, + "poly": [ + 1217, + 1687, + 1397, + 1687, + 1397, + 1727, + 1217, + 1727 + ], + "score": 0.92, + "latex": "m = \\widetilde \\Omega ( n ^ { 2 } \\phi ^ { - 1 } )" + }, + { + "category_id": 13, + "poly": [ + 746, + 948, + 959, + 948, + 959, + 983, + 746, + 983 + ], + "score": 0.92, + "latex": "\\lambda = \\log ( 1 / \\epsilon ) + 1" + }, + { + "category_id": 13, + "poly": [ + 465, + 981, + 590, + 981, + 590, + 1013, + 465, + 1013 + ], + "score": 0.92, + "latex": "x \\geqslant \\log ( \\epsilon )" + }, + { + "category_id": 13, + "poly": [ + 863, + 479, + 1041, + 479, + 1041, + 515, + 863, + 515 + ], + "score": 0.92, + "latex": "\\ell ( \\log ( 2 / \\epsilon ) ) \\leqslant \\epsilon" + }, + { + "category_id": 13, + "poly": [ + 483, + 1962, + 598, + 1962, + 598, + 2001, + 483, + 2001 + ], + "score": 0.92, + "latex": "\\nabla \\tilde { L } _ { S } ( \\mathbf { W } )" + }, + { + "category_id": 13, + "poly": [ + 686, + 404, + 966, + 404, + 966, + 439, + 686, + 439 + ], + "score": 0.91, + "latex": "\\Vert \\mathbf { U } \\Vert _ { F } \\leqslant 1 / 0 . 4 7 \\leqslant 2 . 2" + }, + { + "category_id": 13, + "poly": [ + 767, + 1722, + 1033, + 1722, + 1033, + 1760, + 767, + 1760 + ], + "score": 0.91, + "latex": "1 - \\exp \\big ( - O ( m \\phi ^ { \\cdot } n ) \\big )" + }, + { + "category_id": 13, + "poly": [ + 797, + 230, + 927, + 230, + 927, + 263, + 797, + 263 + ], + "score": 0.91, + "latex": "| { \\mathcal S } | \\geqslant m / 4" + }, + { + "category_id": 13, + "poly": [ + 372, + 576, + 513, + 576, + 513, + 606, + 372, + 606 + ], + "score": 0.91, + "latex": "i = 1 , \\ldots , n" + }, + { + "category_id": 13, + "poly": [ + 1311, + 402, + 1405, + 402, + 1405, + 439, + 1311, + 439 + ], + "score": 0.9, + "latex": "\\Vert \\overline { { \\mathbf { W } } } _ { 1 } - \\mathbf { \\Phi } _ { }" + }, + { + "category_id": 14, + "poly": [ + 707, + 524, + 991, + 524, + 991, + 566, + 707, + 566 + ], + "score": 0.9, + "latex": "\\ell ( y _ { i } \\cdot F _ { \\mathbf { W } ^ { ( 0 ) } , \\overline { { \\mathbf { W } } } } ( \\mathbf { x } _ { i } ) ) \\leqslant \\epsilon" + }, + { + "category_id": 13, + "poly": [ + 298, + 479, + 578, + 479, + 578, + 516, + 298, + 516 + ], + "score": 0.89, + "latex": "R = \\mathcal { O } \\big ( \\log \\big ( n / ( \\delta \\epsilon ) \\big ) / \\gamma \\big )" + }, + { + "category_id": 13, + "poly": [ + 297, + 823, + 692, + 823, + 692, + 862, + 297, + 862 + ], + "score": 0.89, + "latex": "\\begin{array} { r } { n ^ { - 1 } \\sum _ { i = 1 } ^ { n ^ { \\bullet } } \\ell \\bigl ( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ^ { * } } ( \\mathbf { x } _ { i } ) \\bigr ) \\leqslant \\epsilon } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1308, + 1176, + 1391, + 1176, + 1391, + 1210, + 1308, + 1210 + ], + "score": 0.89, + "latex": "\\mathbf { W } _ { L - 1 }" + }, + { + "category_id": 13, + "poly": [ + 637, + 261, + 931, + 261, + 931, + 295, + 637, + 295 + ], + "score": 0.88, + "latex": "| f _ { \\mathbf { W } ^ { ( 0 ) } } ( \\mathbf { x } _ { i } ) | \\leqslant C \\log ( n / \\delta )" + }, + { + "category_id": 13, + "poly": [ + 334, + 293, + 937, + 293, + 937, + 336, + 334, + 336 + ], + "score": 0.85, + "latex": "\\overline { { \\mathbf { W } } } _ { 1 } = \\mathbf { W } _ { 1 } ^ { ( 0 ) } + 4 \\big ( \\log ( 2 / \\epsilon ) + C \\log ( n / \\delta ) \\big ) m ^ { - 1 / 2 } \\mathbf { U } / \\gamma" + }, + { + "category_id": 14, + "poly": [ + 316, + 344, + 1323, + 344, + 1323, + 392, + 316, + 392 + ], + "score": 0.83, + "latex": "y _ { i } \\cdot \\left[ f _ { \\mathbf { W } ^ { ( 0 ) } } ( \\mathbf { x } _ { i } ) + \\langle \\nabla _ { \\mathbf { W } _ { 1 } } f _ { \\mathbf { W } ^ { ( 0 ) } } , \\overline { { \\mathbf { W } } } _ { 1 } - \\mathbf { W } _ { 1 } ^ { ( 0 ) } \\rangle + \\langle \\nabla _ { \\mathbf { W } _ { 2 } } f _ { \\mathbf { W } ^ { ( 0 ) } } , \\overline { { \\mathbf { W } } } _ { 2 } - \\mathbf { W } _ { 2 } ^ { ( 0 ) } \\rangle \\right] \\geqslant \\log ( 2 / \\epsilon ) ." + }, + { + "category_id": 13, + "poly": [ + 1203, + 795, + 1254, + 795, + 1254, + 823, + 1203, + 823 + ], + "score": 0.82, + "latex": "\\mathbf { W } ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 1376, + 1727, + 1401, + 1727, + 1401, + 1751, + 1376, + 1751 + ], + "score": 0.81, + "latex": "C" + }, + { + "category_id": 13, + "poly": [ + 1245, + 263, + 1269, + 263, + 1269, + 289, + 1245, + 289 + ], + "score": 0.81, + "latex": "C" + }, + { + "category_id": 13, + "poly": [ + 1191, + 1535, + 1214, + 1535, + 1214, + 1560, + 1191, + 1560 + ], + "score": 0.81, + "latex": "R" + }, + { + "category_id": 13, + "poly": [ + 1376, + 766, + 1402, + 766, + 1402, + 792, + 1376, + 792 + ], + "score": 0.8, + "latex": "R" + }, + { + "category_id": 13, + "poly": [ + 1377, + 702, + 1402, + 702, + 1402, + 728, + 1377, + 728 + ], + "score": 0.8, + "latex": "R" + }, + { + "category_id": 13, + "poly": [ + 296, + 438, + 901, + 438, + 901, + 478, + 296, + 478 + ], + "score": 0.77, + "latex": "\\mathbf { W } _ { 1 } ^ { ( 0 ) } \\| _ { F } \\leqslant 8 . 8 \\gamma ^ { - 1 } \\big ( \\log ( 2 / \\epsilon ) + C \\log ( n / \\delta ) \\big ) \\cdot m ^ { - 1 / 2 }" + }, + { + "category_id": 13, + "poly": [ + 1178, + 910, + 1199, + 910, + 1199, + 937, + 1178, + 937 + ], + "score": 0.77, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 345, + 799, + 373, + 799, + 373, + 822, + 345, + 822 + ], + "score": 0.74, + "latex": "m" + }, + { + "category_id": 13, + "poly": [ + 348, + 738, + 376, + 738, + 376, + 762, + 348, + 762 + ], + "score": 0.72, + "latex": "m" + }, + { + "category_id": 13, + "poly": [ + 1288, + 739, + 1305, + 739, + 1305, + 761, + 1288, + 761 + ], + "score": 0.62, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 296, + 436, + 516, + 436, + 516, + 478, + 296, + 478 + ], + "score": 0.4, + "latex": "\\mathbf { W } _ { 1 } ^ { ( 0 ) } \\lVert _ { F } \\leqslant 8 . 8 \\gamma ^ { - 1 }" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 642.0, + 709.0, + 642.0, + 709.0, + 678.0, + 295.0, + 678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 72.0, + 815.0, + 72.0, + 815.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 869.0, + 2085.0, + 869.0, + 2124.0, + 831.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1377.0, + 579.0, + 1403.0, + 579.0, + 1403.0, + 603.0, + 1377.0, + 603.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 870.0, + 1407.0, + 870.0, + 1407.0, + 907.0, + 294.0, + 907.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 902.0, + 792.0, + 902.0, + 792.0, + 948.0, + 293.0, + 948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1093.0, + 902.0, + 1177.0, + 902.0, + 1177.0, + 948.0, + 1093.0, + 948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1200.0, + 902.0, + 1407.0, + 902.0, + 1407.0, + 948.0, + 1200.0, + 948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 948.0, + 745.0, + 948.0, + 745.0, + 984.0, + 294.0, + 984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 960.0, + 948.0, + 1238.0, + 948.0, + 1238.0, + 984.0, + 960.0, + 984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1354.0, + 948.0, + 1406.0, + 948.0, + 1406.0, + 984.0, + 1354.0, + 984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 981.0, + 464.0, + 981.0, + 464.0, + 1015.0, + 294.0, + 1015.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 591.0, + 981.0, + 1406.0, + 981.0, + 1406.0, + 1015.0, + 591.0, + 1015.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1011.0, + 1404.0, + 1011.0, + 1404.0, + 1045.0, + 296.0, + 1045.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1041.0, + 1048.0, + 1041.0, + 1048.0, + 1073.0, + 295.0, + 1073.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 700.0, + 1376.0, + 700.0, + 1376.0, + 734.0, + 296.0, + 734.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 723.0, + 347.0, + 723.0, + 347.0, + 774.0, + 291.0, + 774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 377.0, + 723.0, + 996.0, + 723.0, + 996.0, + 774.0, + 377.0, + 774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1140.0, + 723.0, + 1287.0, + 723.0, + 1287.0, + 774.0, + 1140.0, + 774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1306.0, + 723.0, + 1408.0, + 723.0, + 1408.0, + 774.0, + 1306.0, + 774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 761.0, + 1375.0, + 761.0, + 1375.0, + 801.0, + 293.0, + 801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1403.0, + 761.0, + 1406.0, + 761.0, + 1406.0, + 801.0, + 1403.0, + 801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 791.0, + 344.0, + 791.0, + 344.0, + 829.0, + 295.0, + 829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 374.0, + 791.0, + 1202.0, + 791.0, + 1202.0, + 829.0, + 374.0, + 829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1255.0, + 791.0, + 1406.0, + 791.0, + 1406.0, + 829.0, + 1255.0, + 829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 810.0, + 296.0, + 810.0, + 296.0, + 870.0, + 288.0, + 870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 693.0, + 810.0, + 710.0, + 810.0, + 710.0, + 870.0, + 693.0, + 870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1903.0, + 1405.0, + 1903.0, + 1405.0, + 1934.0, + 296.0, + 1934.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1932.0, + 1406.0, + 1932.0, + 1406.0, + 1967.0, + 295.0, + 1967.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1964.0, + 482.0, + 1964.0, + 482.0, + 2006.0, + 294.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 599.0, + 1964.0, + 1406.0, + 1964.0, + 1406.0, + 2006.0, + 599.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2000.0, + 501.0, + 2000.0, + 501.0, + 2038.0, + 294.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 722.0, + 2000.0, + 1259.0, + 2000.0, + 1259.0, + 2038.0, + 722.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1689.0, + 1216.0, + 1689.0, + 1216.0, + 1727.0, + 292.0, + 1727.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1398.0, + 1689.0, + 1404.0, + 1689.0, + 1404.0, + 1727.0, + 1398.0, + 1727.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1720.0, + 423.0, + 1720.0, + 423.0, + 1758.0, + 292.0, + 1758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 489.0, + 1720.0, + 766.0, + 1720.0, + 766.0, + 1758.0, + 489.0, + 1758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1034.0, + 1720.0, + 1375.0, + 1720.0, + 1375.0, + 1758.0, + 1034.0, + 1758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 1720.0, + 1407.0, + 1720.0, + 1407.0, + 1758.0, + 1402.0, + 1758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1752.0, + 407.0, + 1752.0, + 407.0, + 1787.0, + 292.0, + 1787.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 228.0, + 796.0, + 228.0, + 796.0, + 264.0, + 295.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 928.0, + 228.0, + 1405.0, + 228.0, + 1405.0, + 264.0, + 928.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 260.0, + 636.0, + 260.0, + 636.0, + 297.0, + 296.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 932.0, + 260.0, + 1244.0, + 260.0, + 1244.0, + 297.0, + 932.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1270.0, + 260.0, + 1409.0, + 260.0, + 1409.0, + 297.0, + 1270.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 282.0, + 280.0, + 333.0, + 280.0, + 333.0, + 350.0, + 282.0, + 350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 938.0, + 280.0, + 988.0, + 280.0, + 988.0, + 350.0, + 938.0, + 350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1137.0, + 280.0, + 1247.0, + 280.0, + 1247.0, + 350.0, + 1137.0, + 350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 399.0, + 415.0, + 399.0, + 415.0, + 440.0, + 292.0, + 440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 565.0, + 399.0, + 685.0, + 399.0, + 685.0, + 440.0, + 565.0, + 440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 967.0, + 399.0, + 1310.0, + 399.0, + 1310.0, + 440.0, + 967.0, + 440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 431.0, + 295.0, + 431.0, + 295.0, + 484.0, + 290.0, + 484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 902.0, + 431.0, + 1128.0, + 431.0, + 1128.0, + 484.0, + 902.0, + 484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1341.0, + 431.0, + 1407.0, + 431.0, + 1407.0, + 484.0, + 1341.0, + 484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 579.0, + 474.0, + 862.0, + 474.0, + 862.0, + 519.0, + 579.0, + 519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1042.0, + 474.0, + 1210.0, + 474.0, + 1210.0, + 519.0, + 1042.0, + 519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1173.0, + 1307.0, + 1173.0, + 1307.0, + 1212.0, + 294.0, + 1212.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1392.0, + 1173.0, + 1406.0, + 1173.0, + 1406.0, + 1212.0, + 1392.0, + 1212.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 1208.0, + 791.0, + 1208.0, + 791.0, + 1240.0, + 298.0, + 1240.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1605.0, + 1403.0, + 1605.0, + 1403.0, + 1643.0, + 296.0, + 1643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1641.0, + 513.0, + 1641.0, + 513.0, + 1683.0, + 294.0, + 1683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 694.0, + 1641.0, + 706.0, + 1641.0, + 706.0, + 1683.0, + 694.0, + 1683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1530.0, + 1190.0, + 1530.0, + 1190.0, + 1567.0, + 294.0, + 1567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1215.0, + 1530.0, + 1404.0, + 1530.0, + 1404.0, + 1567.0, + 1215.0, + 1567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1561.0, + 1374.0, + 1561.0, + 1374.0, + 1598.0, + 293.0, + 1598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1321.0, + 1151.0, + 1321.0, + 1151.0, + 1359.0, + 294.0, + 1359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 572.0, + 371.0, + 572.0, + 371.0, + 612.0, + 295.0, + 612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 514.0, + 572.0, + 813.0, + 572.0, + 813.0, + 612.0, + 514.0, + 612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1477.0, + 517.0, + 1477.0, + 517.0, + 1524.0, + 294.0, + 1524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 729.0, + 1477.0, + 1268.0, + 1477.0, + 1268.0, + 1524.0, + 729.0, + 1524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 340.0, + 315.0, + 340.0, + 315.0, + 401.0, + 308.0, + 401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1324.0, + 340.0, + 1327.0, + 340.0, + 1327.0, + 401.0, + 1324.0, + 401.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 15, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 295, + 472, + 1408, + 472, + 1408, + 589, + 295, + 589 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 295, + 688, + 1406, + 688, + 1406, + 836, + 295, + 836 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 296, + 227, + 1408, + 227, + 1408, + 360, + 296, + 360 + ], + "score": 0.974 + }, + { + "category_id": 8, + "poly": [ + 687, + 1451, + 1011, + 1451, + 1011, + 1532, + 687, + 1532 + ], + "score": 0.955 + }, + { + "category_id": 1, + "poly": [ + 296, + 1368, + 1404, + 1368, + 1404, + 1437, + 296, + 1437 + ], + "score": 0.953 + }, + { + "category_id": 8, + "poly": [ + 606, + 1585, + 1092, + 1585, + 1092, + 1667, + 606, + 1667 + ], + "score": 0.953 + }, + { + "category_id": 8, + "poly": [ + 656, + 1756, + 1039, + 1756, + 1039, + 1846, + 656, + 1846 + ], + "score": 0.952 + }, + { + "category_id": 8, + "poly": [ + 374, + 1110, + 1320, + 1110, + 1320, + 1188, + 374, + 1188 + ], + "score": 0.951 + }, + { + "category_id": 8, + "poly": [ + 396, + 1278, + 1298, + 1278, + 1298, + 1355, + 396, + 1355 + ], + "score": 0.949 + }, + { + "category_id": 1, + "poly": [ + 295, + 1200, + 1406, + 1200, + 1406, + 1266, + 295, + 1266 + ], + "score": 0.946 + }, + { + "category_id": 8, + "poly": [ + 353, + 936, + 1345, + 936, + 1345, + 1050, + 353, + 1050 + ], + "score": 0.945 + }, + { + "category_id": 1, + "poly": [ + 296, + 1679, + 1399, + 1679, + 1399, + 1743, + 296, + 1743 + ], + "score": 0.945 + }, + { + "category_id": 8, + "poly": [ + 582, + 601, + 1114, + 601, + 1114, + 675, + 582, + 675 + ], + "score": 0.943 + }, + { + "category_id": 1, + "poly": [ + 295, + 847, + 1403, + 847, + 1403, + 922, + 295, + 922 + ], + "score": 0.942 + }, + { + "category_id": 1, + "poly": [ + 298, + 1857, + 583, + 1857, + 583, + 1890, + 298, + 1890 + ], + "score": 0.934 + }, + { + "category_id": 1, + "poly": [ + 297, + 1543, + 403, + 1543, + 403, + 1574, + 297, + 1574 + ], + "score": 0.932 + }, + { + "category_id": 1, + "poly": [ + 297, + 1063, + 979, + 1063, + 979, + 1097, + 297, + 1097 + ], + "score": 0.927 + }, + { + "category_id": 1, + "poly": [ + 297, + 2000, + 923, + 2000, + 923, + 2036, + 297, + 2036 + ], + "score": 0.925 + }, + { + "category_id": 8, + "poly": [ + 292, + 374, + 1479, + 374, + 1479, + 460, + 292, + 460 + ], + "score": 0.922 + }, + { + "category_id": 0, + "poly": [ + 298, + 1931, + 814, + 1931, + 814, + 1970, + 298, + 1970 + ], + "score": 0.918 + }, + { + "category_id": 2, + "poly": [ + 299, + 74, + 814, + 74, + 814, + 106, + 299, + 106 + ], + "score": 0.917 + }, + { + "category_id": 9, + "poly": [ + 1339, + 621, + 1401, + 621, + 1401, + 653, + 1339, + 653 + ], + "score": 0.889 + }, + { + "category_id": 2, + "poly": [ + 835, + 2087, + 863, + 2087, + 863, + 2113, + 835, + 2113 + ], + "score": 0.869 + }, + { + "category_id": 2, + "poly": [ + 1374, + 1858, + 1404, + 1858, + 1404, + 1887, + 1374, + 1887 + ], + "score": 0.827 + }, + { + "category_id": 14, + "poly": [ + 685, + 1449, + 1014, + 1449, + 1014, + 1532, + 685, + 1532 + ], + "score": 0.95, + "latex": "R = \\mathcal { O } \\left( \\frac { n ^ { 3 / 2 } \\log \\left( n / ( \\delta \\epsilon ) \\right) } { \\phi ^ { 1 / 2 } } \\right)" + }, + { + "category_id": 14, + "poly": [ + 606, + 1581, + 1092, + 1581, + 1092, + 1669, + 606, + 1669 + ], + "score": 0.94, + "latex": "\\epsilon _ { \\mathrm { N T R F } } : = n ^ { - 1 } \\sum _ { i = 1 } ^ { n } \\ell \\big ( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ^ { * } } ( \\mathbf { x } _ { i } ) \\big ) \\leqslant \\epsilon ." + }, + { + "category_id": 13, + "poly": [ + 1064, + 505, + 1256, + 505, + 1256, + 561, + 1064, + 561 + ], + "score": 0.94, + "latex": "\\widetilde { \\ell } ^ { \\prime } ( . ) = - 2 \\sqrt { \\widetilde { \\ell } ( . ) }" + }, + { + "category_id": 14, + "poly": [ + 658, + 1752, + 1042, + 1752, + 1042, + 1847, + 658, + 1847 + ], + "score": 0.94, + "latex": "m = \\widetilde \\Omega ( R ^ { 8 } L ^ { 2 2 } ) = \\widetilde \\Omega \\left( \\frac { L ^ { 2 2 } n ^ { 1 2 } } { \\phi ^ { 4 } } \\right) ." + }, + { + "category_id": 13, + "poly": [ + 1003, + 1368, + 1202, + 1368, + 1202, + 1403, + 1003, + 1403 + ], + "score": 0.94, + "latex": "\\lambda = \\log ( 1 / \\epsilon ) + 1" + }, + { + "category_id": 13, + "poly": [ + 747, + 1401, + 889, + 1401, + 889, + 1438, + 747, + 1438 + ], + "score": 0.93, + "latex": "{ \\mathcal { F } } ( { \\bf W } ^ { ( 0 ) } , R )" + }, + { + "category_id": 14, + "poly": [ + 582, + 599, + 1116, + 599, + 1116, + 676, + 582, + 676 + ], + "score": 0.93, + "latex": "\\widetilde L _ { S } ( \\mathbf { W } ( t ) ) \\leqslant \\widetilde L _ { S } ( \\mathbf { W } ( 0 ) ) \\cdot \\exp \\Bigg ( - \\frac { 4 C m \\phi t } { n ^ { 3 } } \\Bigg ) ." + }, + { + "category_id": 14, + "poly": [ + 398, + 1275, + 1298, + 1275, + 1298, + 1357, + 398, + 1357 + ], + "score": 0.93, + "latex": "\\| \\mathbf { W } ( t ) - \\mathbf { W } ( 0 ) \\| _ { F } \\leqslant \\frac { n ^ { 3 / 2 } } { C ^ { 1 / 2 } m ^ { 1 / 2 } \\phi ^ { 1 / 2 } } \\cdot \\sqrt { \\tilde { L } _ { S } ( \\mathbf { W } ( 0 ) ) } = \\mathcal { O } \\biggl ( \\frac { n ^ { 3 / 2 } \\log \\left( n / ( \\delta \\epsilon ) \\right) } { m ^ { 1 / 2 } \\phi ^ { 1 / 2 } } \\biggr ) ," + }, + { + "category_id": 13, + "poly": [ + 1007, + 1200, + 1215, + 1200, + 1215, + 1236, + 1007, + 1236 + ], + "score": 0.93, + "latex": "\\| \\mathbf { W } ( t ) - \\mathbf { W } ( 0 ) \\| _ { F }" + }, + { + "category_id": 13, + "poly": [ + 986, + 734, + 1297, + 734, + 1297, + 772, + 986, + 772 + ], + "score": 0.92, + "latex": "y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ( t ) } ( \\mathbf { x } _ { i } ) \\geqslant \\log ( \\epsilon )" + }, + { + "category_id": 13, + "poly": [ + 931, + 694, + 1033, + 694, + 1033, + 729, + 931, + 729 + ], + "score": 0.92, + "latex": "\\epsilon ^ { \\prime } = 1 / n" + }, + { + "category_id": 13, + "poly": [ + 297, + 323, + 694, + 323, + 694, + 362, + 297, + 362 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { n ^ { - 1 } \\sum _ { i = 1 } ^ { n } \\ell \\big ( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ^ { * } } ( \\mathbf { x } _ { i } ) \\big ) \\leqslant \\epsilon . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1145, + 689, + 1326, + 689, + 1326, + 729, + 1145, + 729 + ], + "score": 0.92, + "latex": "\\widetilde { L } _ { S } ( \\mathbf { W } ( t ) ) \\leqslant \\epsilon ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 572, + 881, + 1101, + 881, + 1101, + 922, + 572, + 922 + ], + "score": 0.92, + "latex": "\\| \\nabla _ { \\mathbf { W } _ { L - 1 } } \\widetilde { L } _ { S } ( \\mathbf { W } ( t ) ) \\| _ { F } ^ { 2 } \\geqslant 4 C m \\phi \\widetilde { L } _ { S } ( \\mathbf { W } ( t ) ) / n ^ { 3 }" + }, + { + "category_id": 14, + "poly": [ + 348, + 942, + 1349, + 942, + 1349, + 1054, + 348, + 1054 + ], + "score": 0.92, + "latex": "\\frac { \\mathrm { d } \\sqrt { \\tilde { L } _ { S } ( \\mathbf { W } ( t ) ) } } { \\mathrm { d } t } = - \\frac { \\| \\nabla _ { \\mathbf { W } _ { L - 1 } } \\tilde { L } _ { S } ( \\mathbf { W } ( t ) ) \\| _ { F } ^ { 2 } } { 2 \\sqrt { \\tilde { L } _ { S } ( \\mathbf { W } ( t ) ) } } \\leqslant - \\| \\nabla _ { \\mathbf { W } _ { L - 1 } } \\tilde { L } _ { S } ( \\mathbf { W } ( t ) ) \\| _ { F } \\cdot \\frac { C ^ { 1 / 2 } m ^ { 1 / 2 } \\phi ^ { 1 / 2 } } { n ^ { 3 / 2 } } ." + }, + { + "category_id": 13, + "poly": [ + 809, + 293, + 951, + 293, + 951, + 327, + 809, + 327 + ], + "score": 0.92, + "latex": "{ \\mathcal { F } } ( { \\mathbf { W } } ^ { ( 0 ) } , R )" + }, + { + "category_id": 14, + "poly": [ + 371, + 1108, + 1326, + 1108, + 1326, + 1190, + 371, + 1190 + ], + "score": 0.92, + "latex": "\\int _ { t = 0 } ^ { T } \\| \\nabla _ { \\mathbf { W } _ { L - 1 } } \\tilde { L } _ { S } ( \\mathbf { W } ( t ) ) \\| _ { F } \\mathrm { d } t \\leqslant \\frac { n ^ { 3 / 2 } } { C ^ { 1 / 2 } m ^ { 1 / 2 } \\phi ^ { 1 / 2 } } \\cdot \\left( \\sqrt { \\tilde { L } _ { S } ( \\mathbf { W } ( 0 ) ) } - \\sqrt { \\tilde { L } _ { S } ( \\mathbf { W } ( t ) ) } \\right) ." + }, + { + "category_id": 13, + "poly": [ + 832, + 771, + 910, + 771, + 910, + 806, + 832, + 806 + ], + "score": 0.91, + "latex": "\\mathbf { W } ( T )" + }, + { + "category_id": 13, + "poly": [ + 297, + 770, + 694, + 770, + 694, + 808, + 297, + 808 + ], + "score": 0.91, + "latex": "n ^ { - 1 } \\sum _ { i = 1 } ^ { n } \\ell \\big ( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ^ { * } } \\big ( \\mathbf { x } _ { i } \\big ) \\big ) \\leqslant \\epsilon" + }, + { + "category_id": 13, + "poly": [ + 463, + 732, + 757, + 732, + 757, + 771, + 463, + 771 + ], + "score": 0.9, + "latex": "\\widetilde { \\ell } \\left( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ( t ) } ( \\mathbf { x } _ { i } ) \\right) \\leqslant 1" + }, + { + "category_id": 13, + "poly": [ + 1316, + 231, + 1396, + 231, + 1396, + 263, + 1316, + 263 + ], + "score": 0.9, + "latex": "\\mathbf { W } _ { L - 1 }" + }, + { + "category_id": 14, + "poly": [ + 310, + 374, + 1428, + 374, + 1428, + 463, + 310, + 463 + ], + "score": 0.9, + "latex": "\\frac { 1 \\tilde { L } _ { S } ( \\mathbf { W } ( t ) ) } { \\mathrm { d } t } = - \\| \\nabla _ { \\mathbf { W } _ { L - 1 } } \\tilde { L } _ { S } ( \\mathbf { W } ( t ) ) \\| _ { F } ^ { 2 } \\leqslant - \\frac { C m \\phi } { n ^ { 5 } } \\bigg ( \\sum _ { i = 1 } ^ { n } \\tilde { \\ell } ^ { \\prime } \\big ( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ( t ) } ( \\mathbf { x } _ { i } ) \\big ) \\bigg ) ^ { 2 } = \\frac { 4 C m \\phi \\tilde { L } _ { S } ( \\mathbf { W } ( t ) ) } { n ^ { 3 } } ," + }, + { + "category_id": 13, + "poly": [ + 407, + 690, + 876, + 690, + 876, + 730, + 407, + 730 + ], + "score": 0.9, + "latex": "T = \\mathcal { O } \\big ( n ^ { 3 } m ^ { - 1 } \\phi ^ { - 1 } \\cdot \\log ( \\widetilde { L } _ { S } ( \\mathbf { W } ( 0 ) ) / \\epsilon ^ { \\prime } ) \\big )" + }, + { + "category_id": 13, + "poly": [ + 747, + 325, + 815, + 325, + 815, + 358, + 747, + 358 + ], + "score": 0.89, + "latex": "\\mathbf W ( t )" + }, + { + "category_id": 13, + "poly": [ + 892, + 850, + 969, + 850, + 969, + 882, + 892, + 882 + ], + "score": 0.89, + "latex": "\\mathbf { W } ( T )" + }, + { + "category_id": 13, + "poly": [ + 298, + 1234, + 361, + 1234, + 361, + 1262, + 298, + 1262 + ], + "score": 0.87, + "latex": "t \\geqslant 0" + }, + { + "category_id": 13, + "poly": [ + 513, + 1404, + 563, + 1404, + 563, + 1433, + 513, + 1433 + ], + "score": 0.84, + "latex": "\\mathbf { W } ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 425, + 887, + 450, + 887, + 450, + 914, + 425, + 914 + ], + "score": 0.8, + "latex": "R" + }, + { + "category_id": 13, + "poly": [ + 1022, + 850, + 1092, + 850, + 1092, + 882, + 1022, + 882 + ], + "score": 0.76, + "latex": "\\mathbf { W } ( 0 )" + }, + { + "category_id": 13, + "poly": [ + 1069, + 328, + 1082, + 328, + 1082, + 353, + 1069, + 353 + ], + "score": 0.73, + "latex": "t" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1930.0, + 817.0, + 1930.0, + 817.0, + 1974.0, + 296.0, + 1974.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 72.0, + 815.0, + 72.0, + 815.0, + 109.0, + 296.0, + 109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2125.0, + 831.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1380.0, + 1863.0, + 1402.0, + 1863.0, + 1402.0, + 1886.0, + 1380.0, + 1886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 472.0, + 1402.0, + 472.0, + 1402.0, + 510.0, + 294.0, + 510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 509.0, + 1063.0, + 509.0, + 1063.0, + 560.0, + 289.0, + 560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1257.0, + 509.0, + 1405.0, + 509.0, + 1405.0, + 560.0, + 1257.0, + 560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 554.0, + 553.0, + 554.0, + 553.0, + 592.0, + 294.0, + 592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 688.0, + 406.0, + 688.0, + 406.0, + 732.0, + 294.0, + 732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 877.0, + 688.0, + 930.0, + 688.0, + 930.0, + 732.0, + 877.0, + 732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1034.0, + 688.0, + 1144.0, + 688.0, + 1144.0, + 732.0, + 1034.0, + 732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1327.0, + 688.0, + 1406.0, + 688.0, + 1406.0, + 732.0, + 1327.0, + 732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 728.0, + 462.0, + 728.0, + 462.0, + 776.0, + 290.0, + 776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 758.0, + 728.0, + 985.0, + 728.0, + 985.0, + 776.0, + 758.0, + 776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1298.0, + 728.0, + 1407.0, + 728.0, + 1407.0, + 776.0, + 1298.0, + 776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 279.0, + 749.0, + 296.0, + 749.0, + 296.0, + 839.0, + 279.0, + 839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 695.0, + 749.0, + 831.0, + 749.0, + 831.0, + 839.0, + 695.0, + 839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 911.0, + 749.0, + 1417.0, + 749.0, + 1417.0, + 839.0, + 911.0, + 839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 227.0, + 1315.0, + 227.0, + 1315.0, + 268.0, + 293.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1397.0, + 227.0, + 1410.0, + 227.0, + 1410.0, + 268.0, + 1397.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 262.0, + 1406.0, + 262.0, + 1406.0, + 296.0, + 295.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 289.0, + 808.0, + 289.0, + 808.0, + 331.0, + 292.0, + 331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 952.0, + 289.0, + 1406.0, + 289.0, + 1406.0, + 331.0, + 952.0, + 331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 283.0, + 307.0, + 296.0, + 307.0, + 296.0, + 375.0, + 283.0, + 375.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 695.0, + 307.0, + 746.0, + 307.0, + 746.0, + 375.0, + 695.0, + 375.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 816.0, + 307.0, + 1068.0, + 307.0, + 1068.0, + 375.0, + 816.0, + 375.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1083.0, + 307.0, + 1396.0, + 307.0, + 1396.0, + 375.0, + 1083.0, + 375.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1368.0, + 1002.0, + 1368.0, + 1002.0, + 1405.0, + 295.0, + 1405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1203.0, + 1368.0, + 1405.0, + 1368.0, + 1405.0, + 1405.0, + 1203.0, + 1405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1399.0, + 512.0, + 1399.0, + 512.0, + 1439.0, + 294.0, + 1439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 564.0, + 1399.0, + 746.0, + 1399.0, + 746.0, + 1439.0, + 564.0, + 1439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 890.0, + 1399.0, + 952.0, + 1399.0, + 952.0, + 1439.0, + 890.0, + 1439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1194.0, + 1006.0, + 1194.0, + 1006.0, + 1243.0, + 291.0, + 1243.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1216.0, + 1194.0, + 1404.0, + 1194.0, + 1404.0, + 1243.0, + 1216.0, + 1243.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 1229.0, + 297.0, + 1229.0, + 297.0, + 1269.0, + 288.0, + 1269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 362.0, + 1229.0, + 376.0, + 1229.0, + 376.0, + 1269.0, + 362.0, + 1269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1675.0, + 1404.0, + 1675.0, + 1404.0, + 1716.0, + 292.0, + 1716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1707.0, + 592.0, + 1707.0, + 592.0, + 1746.0, + 293.0, + 1746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 848.0, + 891.0, + 848.0, + 891.0, + 886.0, + 297.0, + 886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 970.0, + 848.0, + 1021.0, + 848.0, + 1021.0, + 886.0, + 970.0, + 886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1093.0, + 848.0, + 1404.0, + 848.0, + 1404.0, + 886.0, + 1093.0, + 886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 883.0, + 424.0, + 883.0, + 424.0, + 924.0, + 294.0, + 924.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 451.0, + 883.0, + 571.0, + 883.0, + 571.0, + 924.0, + 451.0, + 924.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1102.0, + 883.0, + 1210.0, + 883.0, + 1210.0, + 924.0, + 1102.0, + 924.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1855.0, + 585.0, + 1855.0, + 585.0, + 1894.0, + 295.0, + 1894.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1539.0, + 407.0, + 1539.0, + 407.0, + 1575.0, + 292.0, + 1575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1060.0, + 978.0, + 1060.0, + 978.0, + 1102.0, + 293.0, + 1102.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2000.0, + 925.0, + 2000.0, + 925.0, + 2037.0, + 295.0, + 2037.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 16, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 633, + 1406, + 633, + 1406, + 768, + 296, + 768 + ], + "score": 0.976 + }, + { + "category_id": 8, + "poly": [ + 465, + 1532, + 1236, + 1532, + 1236, + 1707, + 465, + 1707 + ], + "score": 0.972 + }, + { + "category_id": 8, + "poly": [ + 324, + 1211, + 1360, + 1211, + 1360, + 1347, + 324, + 1347 + ], + "score": 0.97 + }, + { + "category_id": 8, + "poly": [ + 452, + 1801, + 1245, + 1801, + 1245, + 1938, + 452, + 1938 + ], + "score": 0.967 + }, + { + "category_id": 8, + "poly": [ + 428, + 436, + 1271, + 436, + 1271, + 617, + 428, + 617 + ], + "score": 0.961 + }, + { + "category_id": 1, + "poly": [ + 299, + 981, + 1405, + 981, + 1405, + 1048, + 299, + 1048 + ], + "score": 0.954 + }, + { + "category_id": 1, + "poly": [ + 298, + 1447, + 1400, + 1447, + 1400, + 1517, + 298, + 1517 + ], + "score": 0.953 + }, + { + "category_id": 1, + "poly": [ + 297, + 1133, + 1404, + 1133, + 1404, + 1200, + 297, + 1200 + ], + "score": 0.952 + }, + { + "category_id": 8, + "poly": [ + 423, + 879, + 1277, + 879, + 1277, + 968, + 423, + 968 + ], + "score": 0.95 + }, + { + "category_id": 1, + "poly": [ + 297, + 353, + 1401, + 353, + 1401, + 423, + 297, + 423 + ], + "score": 0.949 + }, + { + "category_id": 1, + "poly": [ + 291, + 1719, + 1404, + 1719, + 1404, + 1785, + 291, + 1785 + ], + "score": 0.947 + }, + { + "category_id": 1, + "poly": [ + 297, + 1360, + 1401, + 1360, + 1401, + 1436, + 297, + 1436 + ], + "score": 0.946 + }, + { + "category_id": 1, + "poly": [ + 298, + 836, + 568, + 836, + 568, + 868, + 298, + 868 + ], + "score": 0.93 + }, + { + "category_id": 1, + "poly": [ + 297, + 1948, + 915, + 1948, + 915, + 1982, + 297, + 1982 + ], + "score": 0.926 + }, + { + "category_id": 1, + "poly": [ + 296, + 285, + 888, + 285, + 888, + 321, + 296, + 321 + ], + "score": 0.923 + }, + { + "category_id": 8, + "poly": [ + 357, + 1064, + 1281, + 1064, + 1281, + 1109, + 357, + 1109 + ], + "score": 0.922 + }, + { + "category_id": 2, + "poly": [ + 298, + 73, + 814, + 73, + 814, + 106, + 298, + 106 + ], + "score": 0.918 + }, + { + "category_id": 9, + "poly": [ + 1340, + 929, + 1401, + 929, + 1401, + 961, + 1340, + 961 + ], + "score": 0.907 + }, + { + "category_id": 8, + "poly": [ + 429, + 782, + 1268, + 782, + 1268, + 826, + 429, + 826 + ], + "score": 0.903 + }, + { + "category_id": 9, + "poly": [ + 1340, + 1070, + 1401, + 1070, + 1401, + 1102, + 1340, + 1102 + ], + "score": 0.893 + }, + { + "category_id": 9, + "poly": [ + 1340, + 787, + 1401, + 787, + 1401, + 819, + 1340, + 819 + ], + "score": 0.891 + }, + { + "category_id": 9, + "poly": [ + 1340, + 513, + 1401, + 513, + 1401, + 547, + 1340, + 547 + ], + "score": 0.891 + }, + { + "category_id": 9, + "poly": [ + 1340, + 1900, + 1401, + 1900, + 1401, + 1932, + 1340, + 1932 + ], + "score": 0.889 + }, + { + "category_id": 8, + "poly": [ + 299, + 1995, + 731, + 1995, + 731, + 2038, + 299, + 2038 + ], + "score": 0.878 + }, + { + "category_id": 9, + "poly": [ + 1341, + 1308, + 1401, + 1308, + 1401, + 1341, + 1341, + 1341 + ], + "score": 0.873 + }, + { + "category_id": 2, + "poly": [ + 835, + 2087, + 864, + 2087, + 864, + 2113, + 835, + 2113 + ], + "score": 0.872 + }, + { + "category_id": 0, + "poly": [ + 299, + 229, + 634, + 229, + 634, + 261, + 299, + 261 + ], + "score": 0.844 + }, + { + "category_id": 13, + "poly": [ + 769, + 1750, + 892, + 1750, + 892, + 1784, + 769, + 1784 + ], + "score": 0.94, + "latex": "- \\bar { \\ell } ^ { \\prime } ( \\cdot ) \\dot { \\leqslant } 1" + }, + { + "category_id": 14, + "poly": [ + 323, + 1209, + 1362, + 1209, + 1362, + 1350, + 323, + 1350 + ], + "score": 0.94, + "latex": "\\begin{array} { r l r } { \\langle \\mathbf { W } ^ { ( t ) } - \\mathbf { W } ^ { * } , \\nabla _ { \\mathbf { W } } L _ { i } ( \\mathbf { W } ^ { ( t ) } ) \\rangle = \\ell ^ { \\prime } \\big ( y _ { i } f _ { \\mathbf { W } ^ { ( t ) } } ( \\mathbf { x } _ { i } ) \\big ) \\cdot y _ { i } \\cdot \\big \\langle \\mathbf { W } ^ { ( t ) } - \\mathbf { W } ^ { * } , \\nabla _ { \\mathbf { W } } f _ { \\mathbf { W } ^ { ( t ) } } ( \\mathbf { x } _ { i } ) \\big \\rangle } & { } & \\\\ { \\geqslant \\ell ^ { \\prime } \\big ( y _ { i } f _ { \\mathbf { W } ^ { ( t ) } } ( \\mathbf { x } _ { i } ) \\big ) \\cdot \\big ( y _ { i } f _ { \\mathbf { W } ^ { ( t ) } } ( \\mathbf { x } _ { i } ) - y _ { i } f _ { \\mathbf { W } ^ { * } } ( \\mathbf { x } _ { i } ) + 2 \\epsilon _ { \\mathrm { a p p } } ( \\tau ) \\big ) } & { } & \\\\ { \\geqslant \\big ( 1 - 2 \\epsilon _ { \\mathrm { a p p } } ( \\tau ) \\big ) \\ell \\big ( y _ { i } f _ { \\mathbf { W } ^ { ( t ) } } ( \\mathbf { x } _ { i } ) \\big ) - \\ell \\big ( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ^ { * } } ( \\mathbf { x } _ { i } ) \\big ) , \\quad ( \\mathrm { C } _ { i } - \\epsilon ) \\big ( \\ell ^ { \\prime } \\big ( x _ { i } f _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ^ { * } } ( \\mathbf { x } _ { i } ) \\big ) \\big ) \\enspace . } & { } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 462, + 1531, + 1235, + 1531, + 1235, + 1711, + 462, + 1711 + ], + "score": 0.93, + "latex": "\\begin{array} { r l } { \\| \\nabla _ { \\mathbf { W } _ { l } } L _ { S } ( \\mathbf { W } ^ { ( t ) } ) \\| _ { F } = \\displaystyle \\left\\| \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } \\ell ^ { \\prime } \\big ( y _ { i } f _ { \\mathbf { W } ^ { ( t ) } } ( \\mathbf { x } _ { i } ) \\big ) \\nabla _ { \\mathbf { W } _ { l } } f _ { \\mathbf { W } ^ { ( t ) } } ( \\mathbf { x } _ { i } ) \\right\\| _ { F } } & { } \\\\ { \\leqslant \\displaystyle \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } - \\ell ^ { \\prime } \\big ( y _ { i } f _ { \\mathbf { W } ^ { ( t ) } } ( \\mathbf { x } _ { i } ) \\big ) \\cdot \\| \\nabla _ { \\mathbf { W } _ { l } } f _ { \\mathbf { W } ^ { ( t ) } } ( \\mathbf { x } _ { i } ) \\| _ { F } , } & { } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 797, + 1481, + 973, + 1481, + 973, + 1517, + 797, + 1517 + ], + "score": 0.93, + "latex": "\\nabla _ { \\mathbf { W } _ { l } } L _ { S } ( \\mathbf { W } ^ { ( t ) } )" + }, + { + "category_id": 14, + "poly": [ + 450, + 1797, + 1239, + 1797, + 1239, + 1942, + 450, + 1942 + ], + "score": 0.93, + "latex": "\\begin{array} { r l r } { { \\sum _ { l = 1 } ^ { L } \\| \\nabla _ { \\mathbf { W } _ { l } } L _ { S } ( \\mathbf { W } ^ { ( t ) } ) \\| _ { F } ^ { 2 } \\leqslant \\mathcal { O } \\big ( L M ( \\tau ) ^ { 2 } \\big ) \\cdot \\bigg ( \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } - \\ell ^ { \\prime } \\big ( y _ { i } f _ { \\mathbf { W } ^ { ( t ) } } ( \\mathbf { x } _ { i } ) \\big ) \\bigg ) ^ { 2 } } } \\\\ & { } & { \\leqslant \\mathcal { O } \\big ( L M ( \\tau ) ^ { 2 } \\big ) \\cdot L _ { S } ( \\mathbf { W } ^ { ( t ) } ) . } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 426, + 433, + 1268, + 433, + 1268, + 621, + 426, + 621 + ], + "score": 0.93, + "latex": "\\begin{array} { r l r } { { \\| { \\mathbf { W } } ^ { ( t ) } - { \\mathbf { W } } ^ { * } \\| _ { F } ^ { 2 } - \\| { \\mathbf { W } } ^ { ( t + 1 ) } - { \\mathbf { W } } ^ { * } \\| _ { F } ^ { 2 } } } \\\\ & { } & { \\qquad = \\underbrace { \\frac { 2 \\eta } { n } \\displaystyle \\sum _ { i = 1 } ^ { n } \\langle { \\mathbf { W } } ^ { ( t ) } - { \\mathbf { W } } ^ { * } , \\nabla { \\mathbf { w } } L _ { i } ( { \\mathbf { W } } ^ { ( t ) } ) \\rangle } _ { I _ { 1 } } - \\underbrace { \\eta ^ { 2 } \\displaystyle \\sum _ { l = 1 } ^ { L } \\| \\nabla { \\mathbf { w } } _ { l } L _ { S } ( { \\mathbf { W } } ^ { ( t ) } ) \\| _ { F } ^ { 2 } } _ { I _ { 2 } } , } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1199, + 1751, + 1267, + 1751, + 1267, + 1784, + 1199, + 1784 + ], + "score": 0.93, + "latex": "M ( \\tau )" + }, + { + "category_id": 13, + "poly": [ + 568, + 1750, + 717, + 1750, + 717, + 1784, + 568, + 1784 + ], + "score": 0.93, + "latex": "- \\ell ^ { \\prime } ( \\cdot ) \\overset { \\cdot } { \\leqslant } \\ell ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 407, + 1015, + 555, + 1015, + 555, + 1049, + 407, + 1049 + ], + "score": 0.93, + "latex": "y _ { i } \\cdot f _ { \\mathbf { W } ^ { * } } ( \\mathbf { x } _ { i } )" + }, + { + "category_id": 13, + "poly": [ + 1236, + 1449, + 1344, + 1449, + 1344, + 1483, + 1236, + 1483 + ], + "score": 0.93, + "latex": "\\ell ^ { \\prime } ( \\cdot ) < 0" + }, + { + "category_id": 13, + "poly": [ + 298, + 387, + 481, + 387, + 481, + 424, + 298, + 424 + ], + "score": 0.92, + "latex": "\\eta \\nabla _ { \\mathbf { W } } L _ { S } ( \\mathbf { W } ^ { ( t ) } )" + }, + { + "category_id": 13, + "poly": [ + 441, + 733, + 528, + 733, + 528, + 768, + 441, + 768 + ], + "score": 0.92, + "latex": "\\epsilon _ { \\mathrm { a p p } } ( \\tau )" + }, + { + "category_id": 13, + "poly": [ + 824, + 982, + 983, + 982, + 983, + 1017, + 824, + 1017 + ], + "score": 0.92, + "latex": "F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ^ { * } } ( \\mathbf { x } )" + }, + { + "category_id": 13, + "poly": [ + 759, + 1360, + 992, + 1360, + 992, + 1398, + 759, + 1398 + ], + "score": 0.92, + "latex": "\\ell ^ { \\prime } \\left( y _ { i } f _ { \\mathbf { W } ^ { \\left( t \\right) } } \\left( \\mathbf { x } _ { i } \\right) \\right) < 0" + }, + { + "category_id": 13, + "poly": [ + 1108, + 1137, + 1248, + 1137, + 1248, + 1167, + 1108, + 1167 + ], + "score": 0.91, + "latex": "i = 1 , \\ldots , n" + }, + { + "category_id": 13, + "poly": [ + 816, + 633, + 1202, + 633, + 1202, + 672, + 816, + 672 + ], + "score": 0.9, + "latex": "\\begin{array} { r } { L _ { S } ( \\mathbf { W } ^ { ( t ) } ) = n ^ { - 1 } \\sum _ { i = 1 } ^ { n } { L _ { i } ( \\mathbf { W } ^ { ( t ) } ) } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 559, + 1397, + 972, + 1397, + 972, + 1436, + 559, + 1436 + ], + "score": 0.9, + "latex": "- \\ell ^ { \\prime } \\left( y _ { i } f _ { \\mathbf { W } ^ { ( t ) } } ( \\mathbf { x } _ { i } ) \\right) \\leqslant \\ell \\left( y _ { i } f _ { \\mathbf { W } ^ { ( t ) } } ( \\mathbf { x } _ { i } ) \\right)" + }, + { + "category_id": 14, + "poly": [ + 423, + 877, + 1271, + 877, + 1271, + 972, + 423, + 972 + ], + "score": 0.9, + "latex": "\\begin{array} { r l } & { 0 \\leqslant y _ { i } \\cdot \\big ( f _ { \\mathbf { W } ^ { * } } ( \\mathbf { x } _ { i } ) - f _ { \\mathbf { W } ^ { ( 0 ) } } ( \\mathbf { x } _ { i } ) - \\langle \\nabla f _ { \\mathbf { W } ^ { ( 0 ) } } ( \\mathbf { x } _ { i } ) , \\mathbf { W } ^ { * } - \\mathbf { W } ^ { ( 0 ) } \\rangle \\big ) + \\epsilon _ { \\mathrm { a p p } } ( \\tau ) } \\\\ & { \\quad = y _ { i } \\cdot \\big ( f _ { \\mathbf { W } ^ { * } } ( \\mathbf { x } _ { i } ) - F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ^ { * } } ( \\mathbf { x } _ { i } ) \\big ) + \\epsilon _ { \\mathrm { a p p } } ( \\tau ) , } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 359, + 1060, + 1283, + 1060, + 1283, + 1109, + 359, + 1109 + ], + "score": 0.89, + "latex": "y _ { i } \\cdot \\langle \\nabla f _ { \\mathbf { W } ^ { ( t ) } } ( \\mathbf { x } _ { i } ) , \\mathbf { W } ^ { ( t ) } - \\mathbf { W } ^ { * } \\rangle \\leqslant y _ { i } \\cdot \\left( f _ { \\mathbf { W } ^ { ( t ) } } ( \\mathbf { x } _ { i } ) - F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ^ { * } } ( \\mathbf { x } _ { i } ) \\right) + 2 \\epsilon _ { \\mathrm { a p p } } ( \\tau ) ." + }, + { + "category_id": 13, + "poly": [ + 328, + 1398, + 371, + 1398, + 371, + 1433, + 328, + 1433 + ], + "score": 0.89, + "latex": "\\ell ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 709, + 1451, + 738, + 1451, + 738, + 1480, + 709, + 1480 + ], + "score": 0.87, + "latex": "I _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1157, + 352, + 1407, + 352, + 1407, + 385, + 1157, + 385 + ], + "score": 0.87, + "latex": "\\mathbf { W } ^ { ( t + 1 ) } \\ = \\ \\mathbf { W } ^ { ( t ) } \\ - " + }, + { + "category_id": 13, + "poly": [ + 554, + 670, + 582, + 670, + 582, + 699, + 554, + 699 + ], + "score": 0.86, + "latex": "I _ { 1 }" + }, + { + "category_id": 14, + "poly": [ + 430, + 780, + 1269, + 780, + 1269, + 825, + 430, + 825 + ], + "score": 0.86, + "latex": "y _ { i } \\boldsymbol { \\cdot } \\big \\langle \\nabla f _ { \\mathbf { W } ^ { ( t ) } } \\big ( \\mathbf { x } _ { i } \\big ) , \\mathbf { W } ^ { ( t ) } - \\mathbf { W } ^ { * } \\big \\rangle \\leqslant y _ { i } \\boldsymbol { \\cdot } \\big ( f _ { \\mathbf { W } ^ { ( t ) } } \\big ( \\mathbf { x } _ { i } \\big ) - f _ { \\mathbf { W } ^ { * } } \\big ( \\mathbf { x } _ { i } \\big ) \\big ) + \\epsilon _ { \\mathrm { a p p } } \\big ( \\tau \\big )" + }, + { + "category_id": 13, + "poly": [ + 696, + 701, + 890, + 701, + 890, + 733, + 696, + 733 + ], + "score": 0.82, + "latex": "t = 0 , \\ldots , t ^ { \\prime } - 1" + }, + { + "category_id": 13, + "poly": [ + 698, + 698, + 1192, + 698, + 1192, + 734, + 698, + 734 + ], + "score": 0.61, + "latex": "t = 0 , \\dots , t ^ { \\prime } - \\bar { 1 } , \\mathbf { W } ^ { ( t ) } , \\mathbf { W } ^ { \\bar { * } } \\in \\mathcal { B } ( \\mathbf { W } ^ { ( 0 ) } , \\tau )" + }, + { + "category_id": 14, + "poly": [ + 296, + 1995, + 733, + 1995, + 733, + 2038, + 296, + 2038 + ], + "score": 0.61, + "latex": "\\lVert \\mathbf { W } ^ { ( t ) } - \\mathbf { W } ^ { * } \\rVert _ { F } ^ { 2 } - \\lVert \\mathbf { W } ^ { ( t + 1 ) } - \\mathbf { W } ^ { * } \\rVert _ { F } ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 975, + 698, + 1192, + 698, + 1192, + 735, + 975, + 735 + ], + "score": 0.38, + "latex": "\\mathbf { W } ^ { \\bar { * } } \\in B ( \\mathbf { W } ^ { ( 0 ) } , \\tau )" + }, + { + "category_id": 13, + "poly": [ + 902, + 698, + 965, + 698, + 965, + 732, + 902, + 732 + ], + "score": 0.35, + "latex": "\\mathbf { W } ^ { ( t ) }" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 72.0, + 815.0, + 72.0, + 815.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 869.0, + 2085.0, + 869.0, + 2122.0, + 831.0, + 2122.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 226.0, + 638.0, + 226.0, + 638.0, + 266.0, + 296.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 630.0, + 815.0, + 630.0, + 815.0, + 680.0, + 291.0, + 680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1203.0, + 630.0, + 1413.0, + 630.0, + 1413.0, + 680.0, + 1203.0, + 680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 669.0, + 553.0, + 669.0, + 553.0, + 703.0, + 294.0, + 703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 583.0, + 669.0, + 1404.0, + 669.0, + 1404.0, + 703.0, + 583.0, + 703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 697.0, + 695.0, + 697.0, + 695.0, + 738.0, + 293.0, + 738.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1193.0, + 697.0, + 1406.0, + 697.0, + 1406.0, + 738.0, + 1193.0, + 738.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 727.0, + 440.0, + 727.0, + 440.0, + 770.0, + 293.0, + 770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 529.0, + 727.0, + 541.0, + 727.0, + 541.0, + 770.0, + 529.0, + 770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 977.0, + 823.0, + 977.0, + 823.0, + 1021.0, + 293.0, + 1021.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 984.0, + 977.0, + 1405.0, + 977.0, + 1405.0, + 1021.0, + 984.0, + 1021.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1013.0, + 406.0, + 1013.0, + 406.0, + 1050.0, + 294.0, + 1050.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 556.0, + 1013.0, + 731.0, + 1013.0, + 731.0, + 1050.0, + 556.0, + 1050.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1447.0, + 708.0, + 1447.0, + 708.0, + 1485.0, + 296.0, + 1485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 739.0, + 1447.0, + 1235.0, + 1447.0, + 1235.0, + 1485.0, + 739.0, + 1485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1345.0, + 1447.0, + 1405.0, + 1447.0, + 1405.0, + 1485.0, + 1345.0, + 1485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1479.0, + 796.0, + 1479.0, + 796.0, + 1521.0, + 294.0, + 1521.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 974.0, + 1479.0, + 1356.0, + 1479.0, + 1356.0, + 1521.0, + 974.0, + 1521.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1130.0, + 1107.0, + 1130.0, + 1107.0, + 1173.0, + 294.0, + 1173.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1249.0, + 1130.0, + 1402.0, + 1130.0, + 1402.0, + 1173.0, + 1249.0, + 1173.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1164.0, + 1062.0, + 1164.0, + 1062.0, + 1200.0, + 295.0, + 1200.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 351.0, + 1156.0, + 351.0, + 1156.0, + 391.0, + 292.0, + 391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 385.0, + 297.0, + 385.0, + 297.0, + 426.0, + 293.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 482.0, + 385.0, + 882.0, + 385.0, + 882.0, + 426.0, + 482.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1720.0, + 1405.0, + 1720.0, + 1405.0, + 1756.0, + 295.0, + 1756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1748.0, + 567.0, + 1748.0, + 567.0, + 1784.0, + 294.0, + 1784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 718.0, + 1748.0, + 768.0, + 1748.0, + 768.0, + 1784.0, + 718.0, + 1784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 893.0, + 1748.0, + 1198.0, + 1748.0, + 1198.0, + 1784.0, + 893.0, + 1784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1268.0, + 1748.0, + 1376.0, + 1748.0, + 1376.0, + 1784.0, + 1268.0, + 1784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1357.0, + 758.0, + 1357.0, + 758.0, + 1402.0, + 292.0, + 1402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 993.0, + 1357.0, + 1405.0, + 1357.0, + 1405.0, + 1402.0, + 993.0, + 1402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1395.0, + 327.0, + 1395.0, + 327.0, + 1438.0, + 293.0, + 1438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 372.0, + 1395.0, + 558.0, + 1395.0, + 558.0, + 1438.0, + 372.0, + 1438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 973.0, + 1395.0, + 983.0, + 1395.0, + 983.0, + 1438.0, + 973.0, + 1438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 834.0, + 568.0, + 834.0, + 568.0, + 871.0, + 295.0, + 871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1947.0, + 914.0, + 1947.0, + 914.0, + 1984.0, + 295.0, + 1984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 283.0, + 890.0, + 283.0, + 890.0, + 324.0, + 293.0, + 324.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 17, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 294, + 1117, + 1408, + 1117, + 1408, + 1332, + 294, + 1332 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 301, + 406, + 1407, + 406, + 1407, + 506, + 301, + 506 + ], + "score": 0.975 + }, + { + "category_id": 8, + "poly": [ + 357, + 804, + 1342, + 804, + 1342, + 972, + 357, + 972 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 298, + 703, + 1406, + 703, + 1406, + 795, + 298, + 795 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 296, + 1646, + 1405, + 1646, + 1405, + 1775, + 296, + 1775 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 297, + 591, + 1405, + 591, + 1405, + 690, + 297, + 690 + ], + "score": 0.974 + }, + { + "category_id": 8, + "poly": [ + 396, + 1342, + 1297, + 1342, + 1297, + 1635, + 396, + 1635 + ], + "score": 0.97 + }, + { + "category_id": 8, + "poly": [ + 329, + 223, + 1418, + 223, + 1418, + 395, + 329, + 395 + ], + "score": 0.959 + }, + { + "category_id": 8, + "poly": [ + 516, + 1022, + 1177, + 1022, + 1177, + 1110, + 516, + 1110 + ], + "score": 0.956 + }, + { + "category_id": 2, + "poly": [ + 296, + 1892, + 1406, + 1892, + 1406, + 2035, + 296, + 2035 + ], + "score": 0.954 + }, + { + "category_id": 8, + "poly": [ + 498, + 1784, + 1198, + 1784, + 1198, + 1876, + 498, + 1876 + ], + "score": 0.947 + }, + { + "category_id": 1, + "poly": [ + 298, + 980, + 720, + 980, + 720, + 1012, + 298, + 1012 + ], + "score": 0.922 + }, + { + "category_id": 0, + "poly": [ + 299, + 538, + 641, + 538, + 641, + 570, + 299, + 570 + ], + "score": 0.921 + }, + { + "category_id": 2, + "poly": [ + 298, + 74, + 814, + 74, + 814, + 106, + 298, + 106 + ], + "score": 0.914 + }, + { + "category_id": 9, + "poly": [ + 1340, + 1573, + 1401, + 1573, + 1401, + 1605, + 1340, + 1605 + ], + "score": 0.907 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 864, + 2088, + 864, + 2113, + 835, + 2113 + ], + "score": 0.87 + }, + { + "category_id": 14, + "poly": [ + 395, + 1341, + 1301, + 1341, + 1301, + 1637, + 395, + 1637 + ], + "score": 0.95, + "latex": "\\begin{array} { r l } & { \\boldsymbol { \\widehat { \\mathfrak { N } } } _ { n } ( \\mathcal { F } ) \\leqslant \\boldsymbol { \\widetilde { \\mathcal { O } } } \\left( \\underset { \\mathbf { W } \\in \\mathcal { W } } { \\operatorname* { s u p } } \\left\\{ \\frac { m ^ { 1 / 2 } } { \\sqrt { n } } \\cdot \\left[ \\underset { l = 1 } { \\overset { L } { \\prod } } \\lVert \\mathbf { W } _ { l } \\rVert _ { 2 } \\right] \\cdot \\left[ \\underset { l = 1 } { \\overset { L } { \\sum } } \\frac { \\lVert \\mathbf { W } _ { l } ^ { \\top } - \\mathbf { W } _ { l } ^ { ( 0 ) \\top } \\rVert _ { 2 , 1 } ^ { 2 / 3 } } { \\lVert \\mathbf { W } _ { l } \\rVert _ { 2 } ^ { 2 / 3 } } \\right] ^ { 3 / 2 } \\right\\} \\right) } \\\\ & { \\qquad \\leqslant \\boldsymbol { \\widetilde { \\mathcal { O } } } \\left( \\underset { \\mathbf { W } \\in \\mathcal { W } } { \\operatorname* { s u p } } \\left\\{ \\frac { 4 ^ { L } m ^ { 1 / 2 } } { \\sqrt { n } } \\cdot \\left[ \\underset { l = 1 } { \\overset { L } { \\sum } } ( \\sqrt { m } \\cdot \\lVert \\mathbf { W } _ { l } ^ { \\top } - \\mathbf { W } _ { l } ^ { ( 0 ) \\top } \\rVert _ { F } ) ^ { 2 / 3 } \\right] ^ { 3 / 2 } \\right\\} \\right) } \\\\ & { \\qquad \\leqslant \\boldsymbol { \\widetilde { \\mathcal { O } } } \\left( 4 ^ { L } L ^ { 3 / 2 } \\boldsymbol { \\widetilde { R } } \\cdot \\sqrt { \\frac { m } { n } } \\right) . } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 354, + 800, + 1345, + 800, + 1345, + 976, + 354, + 976 + ], + "score": 0.94, + "latex": "\\begin{array} { l } { \\displaystyle \\operatorname* { s u p } _ { \\mathbf { w } \\in \\mathcal { W } } | \\mathcal { E } _ { S } ( \\mathbf { W } ) - \\mathcal { E } _ { \\mathcal { D } } ( \\mathbf { W } ) | = \\operatorname* { s u p } _ { \\mathbf { w } \\in \\mathcal { W } } \\bigg \\vert - \\frac { 1 } { n } \\displaystyle \\sum _ { i = 1 } ^ { n } \\ell ^ { \\prime } \\big [ y _ { i } \\cdot f _ { \\mathbf { W } } ( \\pmb { x } _ { i } ) \\big ] + \\mathbb { E } _ { ( \\mathbf { x } , y ) \\sim \\mathcal { D } } \\ell ^ { \\prime } \\big [ y \\cdot f _ { \\mathbf { W } } ( \\mathbf { x } ) \\big ] \\bigg \\vert } \\\\ { \\leqslant 2 \\widehat { \\mathfrak { R } } _ { n } ( \\mathcal { G } ) + C _ { 1 } \\sqrt { \\frac { \\log ( 1 / \\delta ) } { n } } , } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 500, + 1782, + 1196, + 1782, + 1196, + 1876, + 500, + 1876 + ], + "score": 0.94, + "latex": "\\widehat { \\mathfrak { R } } _ { n } ( \\mathcal { G } ) \\leqslant \\widehat { \\mathfrak { R } } _ { n } ( \\mathcal { F } ) = \\mathbb { E } _ { \\xi _ { i } \\sim \\mathrm { U n i f } ( \\{ \\pm 1 \\} ) } \\left[ \\ * { \\operatorname* { s u p } _ { \\mathbf { W } \\in \\mathcal { W } } \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } \\xi _ { i } f _ { \\mathbf { W } } ( \\pmb x _ { i } ) } \\right] ," + }, + { + "category_id": 14, + "poly": [ + 516, + 1018, + 1182, + 1018, + 1182, + 1113, + 516, + 1113 + ], + "score": 0.93, + "latex": "\\widehat { \\pmb { \\mathscr { R } } } _ { n } ( { \\pmb { \\mathscr { G } } } ) = \\mathbb { E } _ { \\xi _ { i } \\sim \\mathrm { U n i f } ( \\{ \\pmb { \\mathscr { \\pmb { \\Sigma } } } \\bot \\} ) } \\left\\{ \\operatorname* { s u p } _ { \\mathbf { W } \\in \\mathcal { W } } \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } \\xi _ { i } \\ell ^ { \\prime } \\big [ y _ { i } \\cdot f _ { \\mathbf { W } } ( \\pmb { x } _ { i } ) \\big ] \\right\\}" + }, + { + "category_id": 14, + "poly": [ + 323, + 223, + 1418, + 223, + 1418, + 398, + 323, + 398 + ], + "score": 0.93, + "latex": "\\begin{array} { r l } { { } } & { { \\displaystyle \\geqslant \\frac { 2 \\eta } { n } \\sum _ { i = 1 } ^ { n } \\left[ ( 1 - 2 \\epsilon _ { \\mathrm { a p p } } ( \\tau ) ) \\ell \\big ( y _ { i } f _ { \\mathbf { W } ^ { ( t ) } } ( \\mathbf { x } _ { i } ) \\big ) - \\ell \\big ( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ^ { * } } \\big ( \\mathbf { x } _ { i } \\big ) \\big ) \\right] - \\mathcal { O } \\big ( \\eta ^ { 2 } L M ( \\tau ) ^ { 2 } \\big ) \\cdot L _ { S } ( \\mathbf { W } ^ { ( t ) } ) } } \\\\ { { } } & { { \\displaystyle \\geqslant \\left[ \\frac { 3 } { 2 } - 4 \\epsilon _ { \\mathrm { a p p } } ( \\tau ) \\right] \\eta L _ { S } ( \\mathbf { W } ^ { ( t ) } ) - \\frac { 2 \\eta } { n } \\sum _ { i = 1 } ^ { n } \\ell \\big ( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ^ { * } } \\big ( \\mathbf { x } _ { i } \\big ) \\big ) , } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 640, + 406, + 881, + 406, + 881, + 443, + 640, + 443 + ], + "score": 0.93, + "latex": "\\eta = \\mathcal { O } ( L ^ { - 1 } M ( \\tau ) ^ { - 2 } )" + }, + { + "category_id": 13, + "poly": [ + 1055, + 626, + 1352, + 626, + 1352, + 660, + 1055, + 660 + ], + "score": 0.93, + "latex": "{ \\mathcal { F } } = \\{ f _ { \\mathbf { W } } ( \\mathbf { x } ) : \\mathbf { W } \\in \\mathbf { \\bar { \\mathcal { W } } } \\}" + }, + { + "category_id": 13, + "poly": [ + 685, + 1225, + 815, + 1225, + 815, + 1258, + 685, + 1258 + ], + "score": 0.93, + "latex": "\\| \\mathbf { W } _ { l } \\| _ { 2 } \\leqslant 4" + }, + { + "category_id": 13, + "poly": [ + 334, + 1149, + 414, + 1149, + 414, + 1189, + 334, + 1189 + ], + "score": 0.92, + "latex": "\\widehat { \\mathfrak { R } } _ { n } ( { \\mathcal { G } } )" + }, + { + "category_id": 13, + "poly": [ + 819, + 1262, + 971, + 1262, + 971, + 1297, + 819, + 1297 + ], + "score": 0.92, + "latex": "\\Vert \\mathbf { W } _ { l } \\Vert _ { 2 } \\geqslant 0 . 5" + }, + { + "category_id": 13, + "poly": [ + 1194, + 1262, + 1273, + 1262, + 1273, + 1297, + 1194, + 1297 + ], + "score": 0.92, + "latex": "l \\in [ L ]" + }, + { + "category_id": 13, + "poly": [ + 728, + 591, + 1044, + 591, + 1044, + 629, + 728, + 629 + ], + "score": 0.92, + "latex": "\\mathcal { W } = \\mathcal { B } ( \\mathbf { W } ^ { ( 0 ) } , \\widetilde { R } \\cdot m ^ { - 1 / 2 } )" + }, + { + "category_id": 13, + "poly": [ + 716, + 1645, + 796, + 1645, + 796, + 1684, + 716, + 1684 + ], + "score": 0.92, + "latex": "\\widehat { \\mathfrak { R } } _ { n } ( { \\mathcal G } )" + }, + { + "category_id": 13, + "poly": [ + 561, + 1256, + 626, + 1256, + 626, + 1298, + 561, + 1298 + ], + "score": 0.92, + "latex": "\\mathbf { W } _ { l } ^ { ( 0 ) }" + }, + { + "category_id": 13, + "poly": [ + 810, + 1682, + 867, + 1682, + 867, + 1716, + 810, + 1716 + ], + "score": 0.92, + "latex": "\\ell ^ { \\prime } ( z )" + }, + { + "category_id": 13, + "poly": [ + 1065, + 1187, + 1225, + 1187, + 1225, + 1228, + 1065, + 1228 + ], + "score": 0.91, + "latex": "\\| \\mathbf { W } _ { l } ^ { ( 0 ) } \\| _ { 2 } \\leqslant 3" + }, + { + "category_id": 13, + "poly": [ + 1310, + 1192, + 1398, + 1192, + 1398, + 1227, + 1310, + 1227 + ], + "score": 0.91, + "latex": "l \\in [ L ]" + }, + { + "category_id": 13, + "poly": [ + 934, + 441, + 1055, + 441, + 1055, + 469, + 934, + 469 + ], + "score": 0.91, + "latex": "t = t ^ { \\prime } - 1" + }, + { + "category_id": 13, + "poly": [ + 297, + 656, + 662, + 656, + 662, + 691, + 297, + 691 + ], + "score": 0.9, + "latex": "\\mathcal { G } = \\left\\{ - \\ell [ y \\cdot f _ { \\mathbf { W } } ( \\mathbf { x } ) ] : \\mathbf { W } \\in \\mathcal { W } \\right\\}" + }, + { + "category_id": 13, + "poly": [ + 1239, + 1923, + 1306, + 1923, + 1306, + 1952, + 1239, + 1952 + ], + "score": 0.9, + "latex": "- \\ell ^ { \\prime } ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 371, + 982, + 405, + 982, + 405, + 1011, + 371, + 1011 + ], + "score": 0.89, + "latex": "C _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 483, + 1225, + 578, + 1225, + 578, + 1253, + 483, + 1253 + ], + "score": 0.89, + "latex": "\\mathbf { W } \\in \\mathcal { W }" + }, + { + "category_id": 13, + "poly": [ + 1047, + 1263, + 1144, + 1263, + 1144, + 1293, + 1047, + 1293 + ], + "score": 0.89, + "latex": "\\mathbf { W } \\in \\mathcal { W }" + }, + { + "category_id": 13, + "poly": [ + 831, + 443, + 900, + 443, + 900, + 469, + 831, + 469 + ], + "score": 0.89, + "latex": "t = 0" + }, + { + "category_id": 13, + "poly": [ + 298, + 468, + 717, + 468, + 717, + 507, + 298, + 507 + ], + "score": 0.88, + "latex": "\\begin{array} { r } { \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } \\ell \\big ( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ^ { * } } ( \\mathbf { x } _ { i } ) \\big ) = \\underline { { \\epsilon } } _ { \\mathrm { N T R F } } ^ { \\bullet } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 803, + 1192, + 1049, + 1192, + 1049, + 1228, + 803, + 1228 + ], + "score": 0.88, + "latex": "1 - L \\cdot \\exp ( - \\Omega ( m ) )" + }, + { + "category_id": 13, + "poly": [ + 491, + 1682, + 624, + 1682, + 624, + 1716, + 491, + 1716 + ], + "score": 0.87, + "latex": "y \\in \\{ + 1 , 1 \\}" + }, + { + "category_id": 13, + "poly": [ + 296, + 765, + 360, + 765, + 360, + 793, + 296, + 793 + ], + "score": 0.86, + "latex": "1 - \\delta" + }, + { + "category_id": 13, + "poly": [ + 636, + 1683, + 759, + 1683, + 759, + 1716, + 636, + 1716 + ], + "score": 0.85, + "latex": "| \\ell ^ { \\prime } ( z ) | \\leqslant 1" + }, + { + "category_id": 13, + "poly": [ + 1021, + 1121, + 1042, + 1121, + 1042, + 1149, + 1021, + 1149 + ], + "score": 0.81, + "latex": "\\mathcal { G }" + }, + { + "category_id": 13, + "poly": [ + 795, + 1297, + 877, + 1297, + 877, + 1331, + 795, + 1331 + ], + "score": 0.45, + "latex": "2 0 1 7 ) ^ { \\ P }" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 1889.0, + 1406.0, + 1889.0, + 1406.0, + 1928.0, + 327.0, + 1928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1918.0, + 1238.0, + 1918.0, + 1238.0, + 1955.0, + 293.0, + 1955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1307.0, + 1918.0, + 1408.0, + 1918.0, + 1408.0, + 1955.0, + 1307.0, + 1955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1950.0, + 1406.0, + 1950.0, + 1406.0, + 1981.0, + 295.0, + 1981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1976.0, + 1406.0, + 1976.0, + 1406.0, + 2010.0, + 294.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2003.0, + 651.0, + 2003.0, + 651.0, + 2037.0, + 294.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 535.0, + 646.0, + 535.0, + 646.0, + 575.0, + 295.0, + 575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 72.0, + 815.0, + 72.0, + 815.0, + 109.0, + 296.0, + 109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 869.0, + 2085.0, + 869.0, + 2125.0, + 831.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1119.0, + 1020.0, + 1119.0, + 1020.0, + 1153.0, + 293.0, + 1153.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1043.0, + 1119.0, + 1405.0, + 1119.0, + 1405.0, + 1153.0, + 1043.0, + 1153.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1151.0, + 333.0, + 1151.0, + 333.0, + 1191.0, + 292.0, + 1191.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 415.0, + 1151.0, + 1407.0, + 1151.0, + 1407.0, + 1191.0, + 415.0, + 1191.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1185.0, + 802.0, + 1185.0, + 802.0, + 1232.0, + 292.0, + 1232.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1050.0, + 1185.0, + 1064.0, + 1185.0, + 1064.0, + 1232.0, + 1050.0, + 1232.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1226.0, + 1185.0, + 1309.0, + 1185.0, + 1309.0, + 1232.0, + 1226.0, + 1232.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1399.0, + 1185.0, + 1410.0, + 1185.0, + 1410.0, + 1232.0, + 1399.0, + 1232.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1222.0, + 482.0, + 1222.0, + 482.0, + 1259.0, + 295.0, + 1259.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 579.0, + 1222.0, + 684.0, + 1222.0, + 684.0, + 1259.0, + 579.0, + 1259.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 816.0, + 1222.0, + 1406.0, + 1222.0, + 1406.0, + 1259.0, + 816.0, + 1259.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1252.0, + 560.0, + 1252.0, + 560.0, + 1303.0, + 290.0, + 1303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 627.0, + 1252.0, + 818.0, + 1252.0, + 818.0, + 1303.0, + 627.0, + 1303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 972.0, + 1252.0, + 1046.0, + 1252.0, + 1046.0, + 1303.0, + 972.0, + 1303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1145.0, + 1252.0, + 1193.0, + 1252.0, + 1193.0, + 1303.0, + 1145.0, + 1303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1274.0, + 1252.0, + 1413.0, + 1252.0, + 1413.0, + 1303.0, + 1274.0, + 1303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1296.0, + 794.0, + 1296.0, + 794.0, + 1334.0, + 295.0, + 1334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 878.0, + 1296.0, + 947.0, + 1296.0, + 947.0, + 1334.0, + 878.0, + 1334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 406.0, + 639.0, + 406.0, + 639.0, + 445.0, + 295.0, + 445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 882.0, + 406.0, + 1407.0, + 406.0, + 1407.0, + 445.0, + 882.0, + 445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 440.0, + 830.0, + 440.0, + 830.0, + 475.0, + 296.0, + 475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 901.0, + 440.0, + 933.0, + 440.0, + 933.0, + 475.0, + 901.0, + 475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1056.0, + 440.0, + 1405.0, + 440.0, + 1405.0, + 475.0, + 1056.0, + 475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1375.0, + 472.0, + 1403.0, + 472.0, + 1403.0, + 500.0, + 1375.0, + 500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 462.5, + 959.0, + 462.5, + 959.0, + 513.5, + 288.0, + 513.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 702.0, + 1406.0, + 702.0, + 1406.0, + 739.0, + 293.0, + 739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 730.0, + 1406.0, + 730.0, + 1406.0, + 771.0, + 292.0, + 771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 761.0, + 295.0, + 761.0, + 295.0, + 798.0, + 291.0, + 798.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 361.0, + 761.0, + 463.0, + 761.0, + 463.0, + 798.0, + 361.0, + 798.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1646.0, + 715.0, + 1646.0, + 715.0, + 1687.0, + 291.0, + 1687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 797.0, + 1646.0, + 1406.0, + 1646.0, + 1406.0, + 1687.0, + 797.0, + 1687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1681.0, + 490.0, + 1681.0, + 490.0, + 1718.0, + 294.0, + 1718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 625.0, + 1681.0, + 635.0, + 1681.0, + 635.0, + 1718.0, + 625.0, + 1718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 760.0, + 1681.0, + 809.0, + 1681.0, + 809.0, + 1718.0, + 760.0, + 1718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 868.0, + 1681.0, + 1406.0, + 1681.0, + 1406.0, + 1718.0, + 868.0, + 1718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1711.0, + 1407.0, + 1711.0, + 1407.0, + 1746.0, + 293.0, + 1746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1743.0, + 657.0, + 1743.0, + 657.0, + 1776.0, + 296.0, + 1776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 586.0, + 727.0, + 586.0, + 727.0, + 636.0, + 290.0, + 636.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1045.0, + 586.0, + 1407.0, + 586.0, + 1407.0, + 636.0, + 1045.0, + 636.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 624.0, + 1054.0, + 624.0, + 1054.0, + 663.0, + 292.0, + 663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1353.0, + 624.0, + 1405.0, + 624.0, + 1405.0, + 663.0, + 1353.0, + 663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 663.0, + 653.0, + 811.0, + 653.0, + 811.0, + 693.0, + 663.0, + 693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 976.0, + 370.0, + 976.0, + 370.0, + 1015.0, + 295.0, + 1015.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 406.0, + 976.0, + 721.0, + 976.0, + 721.0, + 1015.0, + 406.0, + 1015.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 18, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 8, + "poly": [ + 481, + 677, + 1216, + 677, + 1216, + 872, + 481, + 872 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 301, + 1536, + 1403, + 1536, + 1403, + 1633, + 301, + 1633 + ], + "score": 0.972 + }, + { + "category_id": 8, + "poly": [ + 304, + 277, + 1392, + 277, + 1392, + 412, + 304, + 412 + ], + "score": 0.971 + }, + { + "category_id": 8, + "poly": [ + 426, + 1644, + 1272, + 1644, + 1272, + 1782, + 426, + 1782 + ], + "score": 0.969 + }, + { + "category_id": 8, + "poly": [ + 554, + 923, + 1142, + 923, + 1142, + 1228, + 554, + 1228 + ], + "score": 0.967 + }, + { + "category_id": 8, + "poly": [ + 666, + 1317, + 1031, + 1317, + 1031, + 1399, + 666, + 1399 + ], + "score": 0.965 + }, + { + "category_id": 1, + "poly": [ + 298, + 459, + 1406, + 459, + 1406, + 532, + 298, + 532 + ], + "score": 0.954 + }, + { + "category_id": 1, + "poly": [ + 295, + 1239, + 1404, + 1239, + 1404, + 1304, + 295, + 1304 + ], + "score": 0.947 + }, + { + "category_id": 8, + "poly": [ + 459, + 546, + 1239, + 546, + 1239, + 604, + 459, + 604 + ], + "score": 0.946 + }, + { + "category_id": 8, + "poly": [ + 430, + 1955, + 1267, + 1955, + 1267, + 2043, + 430, + 2043 + ], + "score": 0.946 + }, + { + "category_id": 1, + "poly": [ + 298, + 1409, + 1148, + 1409, + 1148, + 1445, + 298, + 1445 + ], + "score": 0.933 + }, + { + "category_id": 1, + "poly": [ + 296, + 881, + 411, + 881, + 411, + 913, + 296, + 913 + ], + "score": 0.931 + }, + { + "category_id": 1, + "poly": [ + 293, + 621, + 1368, + 621, + 1368, + 664, + 293, + 664 + ], + "score": 0.93 + }, + { + "category_id": 2, + "poly": [ + 298, + 73, + 814, + 73, + 814, + 106, + 298, + 106 + ], + "score": 0.921 + }, + { + "category_id": 1, + "poly": [ + 296, + 1794, + 1112, + 1794, + 1112, + 1830, + 296, + 1830 + ], + "score": 0.919 + }, + { + "category_id": 1, + "poly": [ + 298, + 225, + 1282, + 225, + 1282, + 264, + 298, + 264 + ], + "score": 0.916 + }, + { + "category_id": 9, + "poly": [ + 1340, + 409, + 1401, + 409, + 1401, + 441, + 1340, + 441 + ], + "score": 0.9 + }, + { + "category_id": 9, + "poly": [ + 1339, + 1720, + 1401, + 1720, + 1401, + 1753, + 1339, + 1753 + ], + "score": 0.891 + }, + { + "category_id": 9, + "poly": [ + 1327, + 1849, + 1401, + 1849, + 1401, + 1883, + 1327, + 1883 + ], + "score": 0.887 + }, + { + "category_id": 2, + "poly": [ + 834, + 2087, + 867, + 2087, + 867, + 2114, + 834, + 2114 + ], + "score": 0.864 + }, + { + "category_id": 0, + "poly": [ + 298, + 1480, + 643, + 1480, + 643, + 1512, + 298, + 1512 + ], + "score": 0.861 + }, + { + "category_id": 2, + "poly": [ + 1374, + 1411, + 1403, + 1411, + 1403, + 1442, + 1374, + 1442 + ], + "score": 0.836 + }, + { + "category_id": 1, + "poly": [ + 304, + 1900, + 1194, + 1900, + 1194, + 1938, + 304, + 1938 + ], + "score": 0.77 + }, + { + "category_id": 8, + "poly": [ + 299, + 1844, + 1308, + 1844, + 1308, + 1889, + 299, + 1889 + ], + "score": 0.445 + }, + { + "category_id": 1, + "poly": [ + 299, + 1844, + 1308, + 1844, + 1308, + 1889, + 299, + 1889 + ], + "score": 0.321 + }, + { + "category_id": 14, + "poly": [ + 665, + 1315, + 1034, + 1315, + 1034, + 1399, + 665, + 1399 + ], + "score": 0.94, + "latex": "\\widehat { \\mathfrak { R } } _ { n } [ \\mathcal { F } ] \\leqslant \\widetilde { \\mathcal { O } } \\biggl ( \\frac { L \\widetilde { R } } { \\sqrt { n } } + \\frac { L ^ { 3 } \\widetilde { R } ^ { 4 / 3 } } { m ^ { 1 / 6 } } \\biggr ) ." + }, + { + "category_id": 14, + "poly": [ + 429, + 1951, + 1267, + 1951, + 1267, + 2044, + 429, + 2044 + ], + "score": 0.94, + "latex": "\\sum _ { l = 1 } ^ { L } \\| \\nabla _ { \\mathbf { W } _ { l } } L _ { i + 1 } ( \\mathbf { W } ^ { ( i ) } ) \\| _ { F } ^ { 2 } \\leqslant \\sum _ { l = 1 } ^ { L } \\ell \\big ( y _ { i + 1 } f _ { \\mathbf { W } _ { t } } ( \\mathbf { x } _ { i + 1 } ) \\big ) \\cdot \\| \\nabla _ { \\mathbf { W } _ { l } } f _ { \\mathbf { W } ^ { ( i ) } } \\big ( \\mathbf { x } _ { i + 1 } \\big ) \\| _ { F } ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 370, + 224, + 456, + 224, + 456, + 264, + 370, + 264 + ], + "score": 0.93, + "latex": "\\textstyle { \\widehat { \\mathfrak { R } } } _ { n } ( { \\mathcal { F } } )" + }, + { + "category_id": 13, + "poly": [ + 485, + 623, + 911, + 623, + 911, + 664, + 485, + 664 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { \\mathbb { E } _ { \\pmb { \\xi } } \\big [ \\operatorname* { s u p } _ { \\mathbf { W } \\in \\mathcal { W } } \\sum _ { i = 1 } ^ { n } \\xi _ { i } f _ { \\mathbf { W } ^ { ( 0 ) } } ( \\pmb { x } _ { i } ) \\big ] = 0 . } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 479, + 677, + 1220, + 677, + 1220, + 872, + 479, + 872 + ], + "score": 0.93, + "latex": "\\begin{array} { l } { { \\displaystyle I _ { 2 } = \\frac { 1 } { n } \\sum _ { l = 1 } ^ { L } \\mathbb { E } _ { \\boldsymbol \\xi } \\{ \\operatorname* { s u p } _ { \\| \\widetilde { \\mathbf { U } } _ { l } \\| _ { F } \\leqslant \\widetilde { R } m ^ { - 1 / 2 } } \\mathrm { T r } [ \\widetilde { \\mathbf { W } } _ { l } ^ { \\top } \\sum _ { i = 1 } ^ { n } \\xi _ { i } \\nabla _ { \\mathbf { W } _ { l } } f _ { \\mathbf { W } ^ { ( 0 ) } } ( \\pmb x _ { i } ) ] \\} } } \\\\ { { \\displaystyle \\leqslant \\frac { \\widetilde { R } m ^ { - 1 / 2 } } { n } \\sum _ { l = 1 } ^ { L } \\mathbb { E } _ { \\boldsymbol \\xi } [ \\| \\sum _ { i = 1 } ^ { n } \\xi _ { i } \\nabla _ { \\mathbf { W } _ { l } } f _ { \\mathbf { W } ^ { ( 0 ) } } ( \\pmb x _ { i } ) \\| _ { F } ] . } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 959, + 1902, + 1081, + 1902, + 1081, + 1937, + 959, + 1937 + ], + "score": 0.92, + "latex": "- \\ell ^ { \\prime } ( \\cdot ) \\leqslant 1" + }, + { + "category_id": 13, + "poly": [ + 372, + 1903, + 568, + 1903, + 568, + 1936, + 372, + 1936 + ], + "score": 0.92, + "latex": "i = 0 , \\ldots , n ^ { \\prime } - 1" + }, + { + "category_id": 14, + "poly": [ + 424, + 1640, + 1272, + 1640, + 1272, + 1785, + 424, + 1785 + ], + "score": 0.92, + "latex": "\\begin{array} { r l } & { \\| { \\bf W } ^ { ( i ) } - { \\bf W } ^ { * } \\| _ { F } ^ { 2 } - \\| { \\bf W } ^ { ( i + 1 ) } - { \\bf W } ^ { * } \\| _ { F } ^ { 2 } } \\\\ & { \\qquad = 2 \\eta \\langle { \\bf W } ^ { ( i ) } - { \\bf W } ^ { * } , \\nabla { \\bf w } L _ { i + 1 } ( { \\bf W } ^ { ( i ) } ) \\rangle - \\eta ^ { 2 } \\displaystyle \\sum _ { l = 1 } ^ { L } \\| \\nabla { \\bf w } _ { l } L _ { i + 1 } ( { \\bf W } ^ { ( i ) } ) \\| _ { F } ^ { 2 } . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 758, + 1902, + 906, + 1902, + 906, + 1937, + 758, + 1937 + ], + "score": 0.92, + "latex": "- \\ell ^ { \\prime } ( \\cdot ) \\leqslant \\ell ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 864, + 1569, + 1225, + 1569, + 1225, + 1605, + 864, + 1605 + ], + "score": 0.91, + "latex": "\\mathbf { W } ^ { i + 1 } = \\mathbf { W } ^ { i } - \\eta \\nabla L _ { i + 1 } \\big ( \\mathbf { W } ^ { ( i ) } \\big )" + }, + { + "category_id": 13, + "poly": [ + 693, + 500, + 782, + 500, + 782, + 532, + 693, + 532 + ], + "score": 0.9, + "latex": "1 - \\delta / 2" + }, + { + "category_id": 14, + "poly": [ + 318, + 1843, + 1307, + 1843, + 1307, + 1889, + 318, + 1889 + ], + "score": 0.9, + "latex": "\\begin{array} { r } { \\langle \\mathbf { W } ^ { ( t ) } - \\mathbf { W } ^ { * } , \\nabla _ { \\mathbf { W } } L _ { i } ( \\mathbf { W } ^ { ( t ) } ) \\rangle \\geqslant ( 1 - 2 \\epsilon _ { \\mathrm { a p p } } ( \\tau ) ) \\ell \\big ( y _ { i } f _ { \\mathbf { W } ^ { ( t ) } } ( \\mathbf { x } _ { i } ) \\big ) - \\ell \\big ( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ^ { * } } ( \\mathbf { x } _ { i } ) \\big ) , } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 554, + 923, + 1146, + 923, + 1146, + 1232, + 554, + 1232 + ], + "score": 0.89, + "latex": "\\begin{array} { r l } & { I _ { 2 } \\leqslant \\displaystyle \\frac { { \\widetilde R } m ^ { - 1 / 2 } } { n } \\sum _ { l = 1 } ^ { L } \\sqrt { \\mathbb { E } _ { \\xi } \\bigg [ \\bigg \\| \\displaystyle \\sum _ { i = 1 } ^ { n } \\xi _ { i } \\nabla _ { \\mathbf { W } _ { l } } f _ { \\mathbf { W } ^ { ( 0 ) } } ( { \\pmb x } _ { i } ) \\bigg \\| _ { F } ^ { 2 } \\bigg ] } } \\\\ & { \\quad = \\displaystyle \\frac { { \\widetilde R } m ^ { - 1 / 2 } } { n } \\sum _ { l = 1 } ^ { L } \\sqrt { \\displaystyle \\sum _ { i = 1 } ^ { n } \\left\\| \\nabla _ { \\mathbf { W } _ { l } } f _ { \\mathbf { W } ^ { ( 0 ) } } ( { \\pmb x } _ { i } ) \\right\\| _ { F } ^ { 2 } } } \\\\ & { \\quad \\leqslant \\mathcal { O } \\Big ( \\displaystyle \\frac { L \\cdot { \\widetilde R } } { \\sqrt { n } } \\Big ) , } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 460, + 545, + 1237, + 545, + 1237, + 606, + 460, + 606 + ], + "score": 0.89, + "latex": "I _ { 1 } \\leqslant \\operatorname* { m a x } _ { i \\in [ n ] } \\big | f _ { \\mathbf { W } } ( \\pmb { x } _ { i } ) - F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } } ( \\pmb { x } _ { i } ) \\big | \\leqslant \\mathcal { O } \\big ( L ^ { 3 } \\widetilde { R } ^ { 4 / 3 } m ^ { - 1 / 6 } \\sqrt { \\log ( m ) } \\big ) ," + }, + { + "category_id": 13, + "poly": [ + 988, + 1272, + 1015, + 1272, + 1015, + 1301, + 988, + 1301 + ], + "score": 0.88, + "latex": "I _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 1066, + 1272, + 1094, + 1272, + 1094, + 1301, + 1066, + 1301 + ], + "score": 0.87, + "latex": "I _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 342, + 628, + 369, + 628, + 369, + 658, + 342, + 658 + ], + "score": 0.87, + "latex": "I _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 368, + 463, + 1015, + 463, + 1015, + 500, + 368, + 500 + ], + "score": 0.86, + "latex": "F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } } ( \\mathbf { x } ) = f _ { \\mathbf { W } ^ { ( 0 ) } } ( \\mathbf { x } ) + \\big \\langle \\nabla _ { \\mathbf { W } } f _ { \\mathbf { W } ^ { ( 0 ) } } ( \\mathbf { x } ) , \\mathbf { W } - \\mathbf { W } ^ { ( 0 ) } \\big \\rangle ." + }, + { + "category_id": 13, + "poly": [ + 1069, + 465, + 1096, + 465, + 1096, + 496, + 1069, + 496 + ], + "score": 0.86, + "latex": "I _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 898, + 1413, + 915, + 1413, + 915, + 1439, + 898, + 1439 + ], + "score": 0.81, + "latex": "\\delta" + }, + { + "category_id": 13, + "poly": [ + 1145, + 232, + 1170, + 232, + 1170, + 258, + 1145, + 258 + ], + "score": 0.8, + "latex": "\\mathcal { F }" + }, + { + "category_id": 14, + "poly": [ + 310, + 276, + 1390, + 276, + 1390, + 421, + 310, + 421 + ], + "score": 0.79, + "latex": "\\widehat { \\mathfrak { R } } _ { n } [ F ] \\leqslant \\underbrace { \\mathbb { E } _ { \\xi } \\Bigg \\{ \\underbrace { \\operatorname* { s u p } _ { \\mathbf { W } \\in \\mathcal { W } } \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } \\xi _ { i } \\big [ f _ { \\mathbf { W } } ( \\mathbf { x } _ { i } ) - F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } } ( \\mathbf { x } _ { i } ) \\big ] } _ { I _ { 1 } } \\Bigg \\} } _ { I _ { 1 } } + \\underbrace { \\mathbb { E } _ { \\xi } \\Bigg \\{ \\underbrace { \\operatorname* { s u p } _ { \\mathbf { W } \\in \\mathcal { W } } n } _ { \\mathbf { \\Sigma } _ { i = 1 } } \\sum _ { i = 1 } ^ { n } \\xi _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } } ( \\mathbf { x } _ { i } ) \\Bigg \\} } _ { I _ { 2 } } ," + }, + { + "category_id": 15, + "poly": [ + 296.0, + 72.0, + 815.0, + 72.0, + 815.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 830.0, + 2084.0, + 870.0, + 2084.0, + 870.0, + 2122.0, + 830.0, + 2122.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1477.0, + 646.0, + 1477.0, + 646.0, + 1517.0, + 296.0, + 1517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1377.0, + 1416.0, + 1403.0, + 1416.0, + 1403.0, + 1442.0, + 1377.0, + 1442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1535.0, + 1405.0, + 1535.0, + 1405.0, + 1573.0, + 295.0, + 1573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1564.0, + 863.0, + 1564.0, + 863.0, + 1609.0, + 292.0, + 1609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1226.0, + 1564.0, + 1407.0, + 1564.0, + 1407.0, + 1609.0, + 1226.0, + 1609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1603.0, + 453.0, + 1603.0, + 453.0, + 1635.0, + 296.0, + 1635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 458.0, + 367.0, + 458.0, + 367.0, + 501.0, + 292.0, + 501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1016.0, + 458.0, + 1068.0, + 458.0, + 1068.0, + 501.0, + 1016.0, + 501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1097.0, + 458.0, + 1407.0, + 458.0, + 1407.0, + 501.0, + 1097.0, + 501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 498.0, + 692.0, + 498.0, + 692.0, + 532.0, + 297.0, + 532.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 783.0, + 498.0, + 883.0, + 498.0, + 883.0, + 532.0, + 783.0, + 532.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1234.0, + 1404.0, + 1234.0, + 1404.0, + 1281.0, + 293.0, + 1281.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1269.0, + 987.0, + 1269.0, + 987.0, + 1305.0, + 294.0, + 1305.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1016.0, + 1269.0, + 1065.0, + 1269.0, + 1065.0, + 1305.0, + 1016.0, + 1305.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1095.0, + 1269.0, + 1161.0, + 1269.0, + 1161.0, + 1305.0, + 1095.0, + 1305.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1405.0, + 897.0, + 1405.0, + 897.0, + 1450.0, + 293.0, + 1450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 916.0, + 1405.0, + 1152.0, + 1405.0, + 1152.0, + 1450.0, + 916.0, + 1450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 877.0, + 414.0, + 877.0, + 414.0, + 916.0, + 293.0, + 916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 619.0, + 341.0, + 619.0, + 341.0, + 668.0, + 291.0, + 668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 370.0, + 619.0, + 484.0, + 619.0, + 484.0, + 668.0, + 370.0, + 668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 912.0, + 619.0, + 1374.0, + 619.0, + 1374.0, + 668.0, + 912.0, + 668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1793.0, + 1114.0, + 1793.0, + 1114.0, + 1833.0, + 295.0, + 1833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 223.0, + 369.0, + 223.0, + 369.0, + 270.0, + 293.0, + 270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 457.0, + 223.0, + 1144.0, + 223.0, + 1144.0, + 270.0, + 457.0, + 270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1171.0, + 223.0, + 1287.0, + 223.0, + 1287.0, + 270.0, + 1171.0, + 270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1900.0, + 371.0, + 1900.0, + 371.0, + 1941.0, + 297.0, + 1941.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 569.0, + 1900.0, + 757.0, + 1900.0, + 757.0, + 1941.0, + 569.0, + 1941.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 907.0, + 1900.0, + 958.0, + 1900.0, + 958.0, + 1941.0, + 907.0, + 1941.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1082.0, + 1900.0, + 1191.0, + 1900.0, + 1191.0, + 1941.0, + 1082.0, + 1941.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1308.0, + 1837.0, + 1311.0, + 1837.0, + 1311.0, + 1896.0, + 1308.0, + 1896.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 19, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 295, + 1074, + 1406, + 1074, + 1406, + 1326, + 295, + 1326 + ], + "score": 0.98 + }, + { + "category_id": 3, + "poly": [ + 309, + 1348, + 1389, + 1348, + 1389, + 1749, + 309, + 1749 + ], + "score": 0.972 + }, + { + "category_id": 8, + "poly": [ + 337, + 327, + 1364, + 327, + 1364, + 484, + 337, + 484 + ], + "score": 0.97 + }, + { + "category_id": 8, + "poly": [ + 451, + 578, + 1249, + 578, + 1249, + 915, + 451, + 915 + ], + "score": 0.969 + }, + { + "category_id": 4, + "poly": [ + 295, + 1766, + 1403, + 1766, + 1403, + 1861, + 295, + 1861 + ], + "score": 0.958 + }, + { + "category_id": 1, + "poly": [ + 294, + 499, + 1403, + 499, + 1403, + 565, + 294, + 565 + ], + "score": 0.953 + }, + { + "category_id": 8, + "poly": [ + 719, + 223, + 1063, + 223, + 1063, + 267, + 719, + 267 + ], + "score": 0.943 + }, + { + "category_id": 1, + "poly": [ + 298, + 929, + 556, + 929, + 556, + 963, + 298, + 963 + ], + "score": 0.929 + }, + { + "category_id": 1, + "poly": [ + 295, + 278, + 848, + 278, + 848, + 314, + 295, + 314 + ], + "score": 0.927 + }, + { + "category_id": 2, + "poly": [ + 298, + 74, + 814, + 74, + 814, + 106, + 298, + 106 + ], + "score": 0.915 + }, + { + "category_id": 0, + "poly": [ + 299, + 1005, + 565, + 1005, + 565, + 1041, + 299, + 1041 + ], + "score": 0.909 + }, + { + "category_id": 9, + "poly": [ + 1326, + 229, + 1401, + 229, + 1401, + 263, + 1326, + 263 + ], + "score": 0.904 + }, + { + "category_id": 2, + "poly": [ + 1374, + 930, + 1403, + 930, + 1403, + 960, + 1374, + 960 + ], + "score": 0.843 + }, + { + "category_id": 2, + "poly": [ + 834, + 2088, + 863, + 2088, + 863, + 2113, + 834, + 2113 + ], + "score": 0.448 + }, + { + "category_id": 2, + "poly": [ + 834, + 2088, + 863, + 2088, + 863, + 2113, + 834, + 2113 + ], + "score": 0.387 + }, + { + "category_id": 14, + "poly": [ + 446, + 578, + 1250, + 578, + 1250, + 920, + 446, + 920 + ], + "score": 0.95, + "latex": "\\begin{array} { r l } & { \\| { \\mathbf { W } } ^ { ( 0 ) } - { \\mathbf { W } } ^ { * } \\| _ { F } ^ { 2 } - \\| { \\mathbf { W } } ^ { ( n ^ { \\prime } ) } - { \\mathbf { W } } ^ { * } \\| _ { F } ^ { 2 } } \\\\ & { \\quad \\geqslant \\Big ( \\frac { 3 } { 2 } - 4 \\epsilon _ { \\mathrm { a p p } } ( \\tau ) \\Big ) \\eta \\displaystyle \\sum _ { i = 1 } ^ { n ^ { \\prime } } L _ { i } ( { \\mathbf { W } } ^ { ( i - 1 ) } ) - 2 \\eta \\displaystyle \\sum _ { i = 1 } ^ { n ^ { \\prime } } \\ell \\big ( y _ { i } F _ { { \\mathbf { W } } ^ { ( 0 ) } , { \\mathbf { W } } ^ { * } } ( { \\mathbf { x } } _ { i } ) \\big ) . } \\\\ & { \\quad \\geqslant \\Big ( \\frac { 3 } { 2 } - 4 \\epsilon _ { \\mathrm { a p p } } ( \\tau ) \\Big ) \\eta \\displaystyle \\sum _ { i = 1 } ^ { n ^ { \\prime } } L _ { i } ( { \\mathbf { W } } ^ { ( i - 1 ) } ) - 2 \\eta \\displaystyle \\sum _ { i = 1 } ^ { n } \\ell \\big ( y _ { i } F _ { { \\mathbf { W } } ^ { ( 0 ) } , { \\mathbf { W } } ^ { * } } ( { \\mathbf { x } } _ { i } ) \\big ) . } \\\\ & { \\quad \\geqslant \\Big ( \\frac { 3 } { 2 } - 4 \\epsilon _ { \\mathrm { a p p } } ( \\tau ) \\Big ) \\eta \\displaystyle \\sum _ { i = 1 } ^ { n ^ { \\prime } } L _ { i } ( { \\mathbf { W } } ^ { ( i - 1 ) } ) - 2 n \\eta \\epsilon _ { \\mathrm { N T R } } . } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 334, + 324, + 1364, + 324, + 1364, + 485, + 334, + 485 + ], + "score": 0.93, + "latex": "\\begin{array} { r l } & { \\| \\mathbf { W } ^ { ( i ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } - \\| \\mathbf { W } ^ { ( i + 1 ) } - \\mathbf { W } ^ { * } \\| _ { F } ^ { 2 } } \\\\ & { \\quad \\geqslant \\big ( 2 - 4 \\epsilon _ { \\mathrm { a p p } } ( \\tau ) \\big ) \\eta L _ { i + 1 } ( \\mathbf { W } ^ { ( i ) } ) - 2 \\eta \\ell \\big ( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ^ { * } } ( \\mathbf { x } _ { i } ) \\big ) - \\mathcal { O } \\big ( \\eta ^ { 2 } L M ( \\tau ) ^ { 2 } \\big ) L _ { i + 1 } ( \\mathbf { W } ^ { ( i ) } ) } \\\\ & { \\quad \\geqslant \\big ( \\frac { 3 } { 2 } - 4 \\epsilon _ { \\mathrm { a p p } } ( \\tau ) \\big ) \\eta L _ { i + 1 } ( \\mathbf { W } ^ { ( i ) } ) - 2 \\eta \\ell \\big ( y _ { i } F _ { \\mathbf { W } ^ { ( 0 ) } , \\mathbf { W } ^ { * } } ( \\mathbf { x } _ { i } ) \\big ) , } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 345, + 1262, + 464, + 1262, + 464, + 1296, + 345, + 1296 + ], + "score": 0.92, + "latex": "{ \\mathcal { O } } ( \\log ( n ) )" + }, + { + "category_id": 13, + "poly": [ + 640, + 500, + 881, + 500, + 881, + 536, + 640, + 536 + ], + "score": 0.92, + "latex": "\\eta = \\mathcal { O } ( L ^ { - 1 } M ( \\tau ) ^ { - 2 } )" + }, + { + "category_id": 13, + "poly": [ + 806, + 533, + 1002, + 533, + 1002, + 564, + 806, + 564 + ], + "score": 0.92, + "latex": "i = 0 , \\ldots , n ^ { \\prime } - 1" + }, + { + "category_id": 13, + "poly": [ + 1068, + 1796, + 1122, + 1796, + 1122, + 1830, + 1068, + 1830 + ], + "score": 0.9, + "latex": "O ( \\cdot )" + }, + { + "category_id": 14, + "poly": [ + 713, + 223, + 1067, + 223, + 1067, + 267, + 713, + 267 + ], + "score": 0.88, + "latex": "\\leqslant \\mathcal { O } \\bigl ( L M ( \\tau ) ^ { 2 } \\bigr ) \\cdot L _ { i + 1 } \\bigl ( \\mathbf { W } ^ { ( i ) } \\bigr ) ." + }, + { + "category_id": 13, + "poly": [ + 1350, + 1170, + 1404, + 1170, + 1404, + 1198, + 1350, + 1198 + ], + "score": 0.78, + "latex": "( n \\in" + }, + { + "category_id": 13, + "poly": [ + 1268, + 1228, + 1399, + 1228, + 1399, + 1266, + 1268, + 1266 + ], + "score": 0.74, + "latex": "{ \\mathcal { O } } ( \\log ^ { 2 } ( n ) )" + }, + { + "category_id": 13, + "poly": [ + 298, + 1197, + 764, + 1197, + 764, + 1231, + 298, + 1231 + ], + "score": 0.62, + "latex": "\\{ 1 0 0 , 2 0 0 , 5 0 0 , 1 0 0 0 , 2 0 0 0 , 5 0 0 0 , 1 0 0 0 0 \\} )" + }, + { + "category_id": 13, + "poly": [ + 925, + 1300, + 945, + 1300, + 945, + 1321, + 925, + 1321 + ], + "score": 0.59, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 1051, + 1228, + 1399, + 1228, + 1399, + 1266, + 1051, + 1266 + ], + "score": 0.56, + "latex": "\\mathcal { O } ( n ) , \\mathcal { O } ( \\log ^ { 3 } ( n ) ) , \\mathcal { O } ( \\log ^ { 2 } ( n ) )" + }, + { + "category_id": 13, + "poly": [ + 1126, + 1228, + 1256, + 1228, + 1256, + 1266, + 1126, + 1266 + ], + "score": 0.54, + "latex": "\\mathcal { O } ( \\log ^ { 3 } ( n ) )" + }, + { + "category_id": 13, + "poly": [ + 1051, + 1231, + 1114, + 1231, + 1114, + 1265, + 1051, + 1265 + ], + "score": 0.46, + "latex": "{ \\mathcal { O } } ( n )" + }, + { + "category_id": 15, + "poly": [ + 340.0, + 1345.0, + 375.0, + 1345.0, + 375.0, + 1375.0, + 340.0, + 1375.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 875.0, + 1342.0, + 913.0, + 1342.0, + 913.0, + 1377.0, + 875.0, + 1377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 426.0, + 1358.0, + 496.0, + 1358.0, + 496.0, + 1406.0, + 426.0, + 1406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 961.0, + 1358.0, + 1032.0, + 1358.0, + 1032.0, + 1406.0, + 961.0, + 1406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 334.0, + 1369.0, + 378.0, + 1369.0, + 378.0, + 1483.0, + 334.0, + 1483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 875.0, + 1377.0, + 910.0, + 1377.0, + 910.0, + 1412.0, + 875.0, + 1412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 1385.0, + 347.0, + 1385.0, + 347.0, + 1634.0, + 308.0, + 1634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 843.0, + 1387.0, + 882.0, + 1387.0, + 882.0, + 1636.0, + 843.0, + 1636.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1242.0, + 1394.0, + 1374.0, + 1394.0, + 1374.0, + 1439.0, + 1242.0, + 1439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 709.0, + 1396.0, + 839.0, + 1396.0, + 839.0, + 1439.0, + 709.0, + 1439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 876.0, + 1412.0, + 908.0, + 1412.0, + 908.0, + 1441.0, + 876.0, + 1441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 875.0, + 1445.0, + 909.0, + 1445.0, + 909.0, + 1480.0, + 875.0, + 1480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 339.0, + 1475.0, + 375.0, + 1475.0, + 375.0, + 1509.0, + 339.0, + 1509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 815.0, + 1482.0, + 827.0, + 1482.0, + 827.0, + 1493.0, + 815.0, + 1493.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 876.0, + 1480.0, + 908.0, + 1480.0, + 908.0, + 1508.0, + 876.0, + 1508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 340.0, + 1514.0, + 373.0, + 1514.0, + 373.0, + 1541.0, + 340.0, + 1541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 708.0, + 1497.0, + 837.0, + 1497.0, + 837.0, + 1541.0, + 708.0, + 1541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 875.0, + 1514.0, + 908.0, + 1514.0, + 908.0, + 1541.0, + 875.0, + 1541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1245.0, + 1497.0, + 1373.0, + 1497.0, + 1373.0, + 1540.0, + 1245.0, + 1540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 340.0, + 1547.0, + 372.0, + 1547.0, + 372.0, + 1575.0, + 340.0, + 1575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 876.0, + 1547.0, + 908.0, + 1547.0, + 908.0, + 1576.0, + 876.0, + 1576.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 341.0, + 1580.0, + 373.0, + 1580.0, + 373.0, + 1673.0, + 341.0, + 1673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 384.0, + 1618.0, + 417.0, + 1618.0, + 417.0, + 1688.0, + 384.0, + 1688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 449.0, + 1660.0, + 507.0, + 1660.0, + 507.0, + 1691.0, + 449.0, + 1691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 536.0, + 1659.0, + 595.0, + 1659.0, + 595.0, + 1693.0, + 536.0, + 1693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 620.0, + 1659.0, + 681.0, + 1659.0, + 681.0, + 1693.0, + 620.0, + 1693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 706.0, + 1575.0, + 854.0, + 1575.0, + 854.0, + 1693.0, + 706.0, + 1693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 876.0, + 1580.0, + 908.0, + 1580.0, + 908.0, + 1674.0, + 876.0, + 1674.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 919.0, + 1604.0, + 960.0, + 1604.0, + 960.0, + 1688.0, + 919.0, + 1688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 966.0, + 1601.0, + 974.0, + 1601.0, + 974.0, + 1611.0, + 966.0, + 1611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 982.0, + 1661.0, + 1043.0, + 1661.0, + 1043.0, + 1691.0, + 982.0, + 1691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1070.0, + 1659.0, + 1129.0, + 1659.0, + 1129.0, + 1693.0, + 1070.0, + 1693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1155.0, + 1659.0, + 1215.0, + 1659.0, + 1215.0, + 1693.0, + 1155.0, + 1693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1242.0, + 1574.0, + 1389.0, + 1574.0, + 1389.0, + 1693.0, + 1242.0, + 1693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 515.0, + 1686.0, + 704.0, + 1686.0, + 704.0, + 1721.0, + 515.0, + 1721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1051.0, + 1685.0, + 1237.0, + 1685.0, + 1237.0, + 1720.0, + 1051.0, + 1720.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 480.0, + 1715.0, + 687.0, + 1715.0, + 687.0, + 1758.0, + 480.0, + 1758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1013.0, + 1712.0, + 1223.0, + 1712.0, + 1223.0, + 1757.0, + 1013.0, + 1757.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 931.25, + 1599.0, + 947.25, + 1599.0, + 947.25, + 1611.5, + 931.25, + 1611.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1767.0, + 1403.0, + 1767.0, + 1403.0, + 1801.0, + 295.0, + 1801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1794.0, + 1067.0, + 1794.0, + 1067.0, + 1833.0, + 294.0, + 1833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1123.0, + 1794.0, + 1404.0, + 1794.0, + 1404.0, + 1833.0, + 1123.0, + 1833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1828.0, + 946.0, + 1828.0, + 946.0, + 1862.0, + 295.0, + 1862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 72.0, + 815.0, + 72.0, + 815.0, + 109.0, + 296.0, + 109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1004.0, + 568.0, + 1004.0, + 568.0, + 1046.0, + 293.0, + 1046.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1377.0, + 934.0, + 1403.0, + 934.0, + 1403.0, + 962.0, + 1377.0, + 962.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 830.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2124.0, + 830.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 830.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2124.0, + 830.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1073.0, + 1409.0, + 1073.0, + 1409.0, + 1113.0, + 292.0, + 1113.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1108.0, + 1407.0, + 1108.0, + 1407.0, + 1140.0, + 293.0, + 1140.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1134.0, + 1409.0, + 1134.0, + 1409.0, + 1174.0, + 292.0, + 1174.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1167.0, + 1349.0, + 1167.0, + 1349.0, + 1202.0, + 292.0, + 1202.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 765.0, + 1198.0, + 1406.0, + 1198.0, + 1406.0, + 1232.0, + 765.0, + 1232.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1229.0, + 1050.0, + 1229.0, + 1050.0, + 1271.0, + 292.0, + 1271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1400.0, + 1229.0, + 1406.0, + 1229.0, + 1406.0, + 1271.0, + 1400.0, + 1271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1265.0, + 344.0, + 1265.0, + 344.0, + 1295.0, + 297.0, + 1295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 465.0, + 1265.0, + 1404.0, + 1265.0, + 1404.0, + 1295.0, + 465.0, + 1295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1292.0, + 924.0, + 1292.0, + 924.0, + 1331.0, + 293.0, + 1331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 946.0, + 1292.0, + 1356.0, + 1292.0, + 1356.0, + 1331.0, + 946.0, + 1331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 498.0, + 639.0, + 498.0, + 639.0, + 538.0, + 294.0, + 538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 882.0, + 498.0, + 1406.0, + 498.0, + 1406.0, + 538.0, + 882.0, + 538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 531.0, + 805.0, + 531.0, + 805.0, + 566.0, + 294.0, + 566.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1003.0, + 531.0, + 1129.0, + 531.0, + 1129.0, + 566.0, + 1003.0, + 566.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 925.0, + 557.0, + 925.0, + 557.0, + 966.0, + 295.0, + 966.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 277.0, + 848.0, + 277.0, + 848.0, + 317.0, + 295.0, + 317.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 20, + "width": 1700, + "height": 2200 + } + } +] \ No newline at end of file diff --git a/parse/train/oh71uL93yay/oh71uL93yay.md b/parse/train/oh71uL93yay/oh71uL93yay.md new file mode 100644 index 0000000000000000000000000000000000000000..2b7b001a7f3b1617e13155024f756a24e0b8074c --- /dev/null +++ b/parse/train/oh71uL93yay/oh71uL93yay.md @@ -0,0 +1,412 @@ +# UNIFYING GRAPH CONVOLUTIONAL NEURAL NETWORKS AND LABEL PROPAGATION + +Anonymous authors Paper under double-blind review + +# ABSTRACT + +Label Propagation (LPA) and Graph Convolutional Neural Networks (GCN) are both message passing algorithms on graphs. Both solve the task of node classification but LPA propagates node label information across the edges of the graph, while GCN propagates and transforms node feature information. However, while conceptually similar, it is unclear how LPA and GCN can be combined under a unified framework to improve node classification. Here we study the relationship between LPA and GCN in terms of feature/label influence, in which we characterize how much the initial feature/label of one node influences the final feature/label of another node in GCN/LPA. Based on our theoretical analysis, we propose an end-to-end model that combines GCN and LPA. In our unified model, edge weights are learnable, and the LPA serves as regularization to assist the GCN in learning proper edge weights that lead to improved classification performance. Our model can also be seen as learning the weights for edges based on node labels, which is more task-oriented than existing feature-based attention models and topology-based diffusion models. In a number of experiments on real-world graphs, our model shows superiority over state-of-the-art graph neural networks in terms of node classification accuracy. + +# 1 INTRODUCTION + +Consider the problem of node classification in a graph, where the goal is to learn a mapping $\mathcal { M } :$ $\nu \mathcal { L }$ from node set $\nu$ to label set $\mathcal { L }$ . Solution to this problem is widely applicable to various scenarios, e.g., inferring income of users in a social network or classifying scientific articles in a citation network. Different from a generic machine learning problem where samples are independent from each other, nodes are connected by edges in the graph, which provide additional information and require more delicate modeling. To capture the graph information, researchers have mainly designed models on the assumption that labels/features are correlated over the edges of the graph. In particular, on the label side $\mathcal { L }$ , node labels are propagated and aggregated along edges in the graph, which is known as Label Propagation Algorithm (LPA) (Zhu et al., 2005; Zhou et al., 2004; Zhang & Lee, 2007; Wang & Zhang, 2008; Karasuyama & Mamitsuka, 2013; Gong et al., 2017; Liu et al., 2019a); On the node side $\nu$ , node features are propagated along edges and transformed through neural network layers, which is known as Graph Convolutional Neural Networks (GCN)1 (Kipf & Welling, 2017; Hamilton et al., 2017; Li et al., 2018; Xu et al., 2018; Liao et al., 2019; Xu et al., 2019b; Qu et al., 2019). + +GCN and LPA are related in that they propagate features and labels on the two sides of the mapping $\mathcal { M }$ , respectively. Prior work Li et al. (2019) has shown the relationship between GCN and LPA in terms of low-pass graph filtering. However, it is unclear how the discovered relationship benefits node classification. Specifically, can GCN and LPA be combined to develop a more accurate model for node classification in graphs? + +Here we study the theoretical relationship between GCN and LPA from the viewpoint of feature/label influence, where we quantify how much the initial feature/label of node $v _ { b }$ influences the output feature/label of node $v _ { a }$ in GCN/LPA by studying the Jacobian/gradient of node $v _ { b }$ with respect to node $v _ { a }$ . We also prove the quantitative relationship between feature influence and label influence, i.e., the label influence of $v _ { b }$ on $v _ { a }$ equals the cumulative discounted feature influence of $v _ { b }$ on $v _ { a }$ in expectation (Theorem 1). + +Based on the theoretical analysis, we propose a unified model GCN-LPA for node classification. We show that the key to improving the performance of GCN is to enable nodes of the same class to connect more strongly with each other by making edge weights/strengths trainable. Then we prove that increasing the strength of edges between the nodes of the same class is equivalent to increasing the accuracy of LPA’s predictions (Theorem 2). Therefore, we can first learn the optimal edge weights by minimizing the loss of predictions in LPA, then plug the optimal edge weights into a GCN to learn node representations. In GCN-LPA, we further combine the above two steps together and train the whole model in an end-to-end fashion, where the LPA part serves as regularization to assist the GCN part in learning proper edge weights that benefit the separation of different node classes. It is worth noticing that GCN-LPA can also be seen as learning the weights for edges based on node label information, which requires less handcrafting and is more task-oriented than existing attention models that learn edge weights based on node feature similarity (Velickoviˇ c et al.´ , 2018; Thekumparampil et al., 2018; Zhang et al., 2018; Liu et al., 2019b) or diffusion models that learn adjacency matrix based on graph topology (Klicpera et al., 2019a; Xu et al., 2019a; Abu-El-Haija et al., 2019; Klicpera et al., 2019b). + +We conduct extensive experiments on five datasets, and the results indicate that our model outperforms state-of-the-art graph neural networks in terms of classification accuracy. The experimental results also show that combining GCN and LPA together is able to learn more informative edge weights thereby leading to better performance. + +# 2 OUR APPROACH + +In this section, we first formulate the node classification problem and briefly introduce LPA and GCN. We then prove their relationship from the viewpoints of feature influence and label influence. Based on the theoretical finding, we propose a unified model GCN-LPA, and analyze why our model is theoretically superior to vanilla GCN. + +# 2.1 PROBLEM FORMULATION AND PRELIMINARIES + +Consider a graph $\mathcal { G } = ( \nu , A , X , Y )$ , where $\mathcal { V } = \{ v _ { 1 } , \cdots , v _ { n } \}$ is the set of nodes, $A \in \mathbb { R } ^ { n \times n }$ is the adjacency matrix, $X$ is the feature matrix of nodes and $Y$ is labels of nodes. $a _ { i j }$ (the $i j$ -th entry of $A$ ) is the weight of the edge connecting $v _ { i }$ and $v _ { j }$ . $\mathcal { N } ( v )$ denotes the set of first-order neighbors of node $v$ in graph $\mathcal { G }$ . Each node $v _ { i }$ has a feature vector $\mathbf { x } _ { i }$ which is the $i$ -th row of $X$ , while only the first $m$ nodes $( m \ll n )$ have labels $y _ { 1 } , \cdots , y _ { m }$ from a label set $\mathcal { L } = \{ 1 , \cdots , c \}$ . The goal is to learn a mapping $\mathcal { M } : \mathcal { V } \to \mathcal { L }$ and predict labels of unlabeled nodes. + +Label Propagation Algorithm. LPA (Zhu et al., 2005) assumes that two connected nodes are likely to have the same label, and thus it propagates labels iteratively along the edges. Let $Y ^ { ( k ) } =$ $[ y _ { 1 } ^ { ( k ) } , \cdot \cdot \cdot , y _ { n } ^ { ( k ) } ] ^ { \top } \in \mathbb { R } ^ { n \times c }$ ∈ Rn×c be the soft label matrix in iteration k > 0, in which the i-th row y(ki $y _ { i } ^ { ( k ) \top }$ denotes the predicted label distribution for node $v _ { i }$ in iteration $k$ . When $k = 0$ , the initial label matrix $Y ^ { ( 0 ) } = [ y _ { 1 } ^ { ( 0 ) } , \cdot \cdot \cdot , y _ { n } ^ { ( 0 ) } ] ^ { \top }$ consists of one-hot label indicator vectors $y _ { i } ^ { ( 0 ) }$ for $i = 1 , \cdots , m$ (i.e., labeled nodes) or zero vectors otherwise (i.e., unlabeled nodes). Then LPA in iteration $k$ is formulated as the following two steps: + +$$ +\begin{array} { c } { { Y ^ { ( k + 1 ) } = \tilde { A } Y ^ { ( k ) } , } } \\ { { y _ { i } ^ { ( k + 1 ) } = y _ { i } ^ { ( 0 ) } , \forall i \leq m . } } \end{array} +$$ + +In the above equations, $\tilde { A }$ is the normalized adjacency matrix, which can be the random walk transition matrix $\tilde { A } _ { r w } = D ^ { - 1 } A$ or the symmetric transition matrix $\tilde { A } _ { s y m } = D ^ { - \frac { 1 } { 2 } } A D ^ { - \frac { 1 } { 2 } }$ , where $D$ is the diagonal degree matrix for $A$ with entries $\begin{array} { r } { d _ { i i } = \sum _ { j } a _ { i j } } \end{array}$ . Without loss of generosity, we use $\tilde { A } = \tilde { A } _ { r w }$ in this work. In Eq. (1), all nodes propagate labels to their neighbors according to normalized edge weights. Then in Eq. (2), labels of all labeled nodes are reset to their initial values, because LPA wants to persist labels of nodes which are labeled, so that unlabeled nodes do not overpower the labeled ones as the initial labels would otherwise fade away. + +Graph Convolutional Neural Networks. GCN Kipf & Welling (2017) is a multi-layer feedforward neural network that propagates and transforms node features across the graph. The feature propagation scheme of GCN in layer $k$ is: + +$$ +X ^ { ( k + 1 ) } = \sigma \left( \tilde { A } X ^ { ( k ) } W ^ { ( k ) } \right) , +$$ + +where $W ^ { ( k ) }$ is trainable weight matrix in the $k$ -th layer, $\sigma ( \cdot )$ is an activation function, and $X ^ { ( k ) } = [ \mathbf { x } _ { 1 } ^ { ( k ) } , \cdot \cdot \cdot , \mathbf { x } _ { n } ^ { ( k ) } ] ^ { \intercal }$ are the $k$ -th layer node representations with $X ^ { ( 0 ) } = X$ . By setting the dimension of the last layer to the number of classes $c$ , the last layer can be seen as (unnormalized) label distribution predicted for a given node. The whole model can thus be optimized by minimizing the discrepancy between predicted node label distributions and ground-truth labels $Y$ . + +# 2.2 FEATURE INFLUENCE AND LABEL INFLUENCE + +Consider two nodes $v _ { a }$ and $v _ { b }$ in a graph. Inspired by Koh & Liang (2017) and $\mathrm { X u }$ et al. (2018), we study the relationship between GCN and LPA in terms of influence, i.e., how the output feature/label of $v _ { a }$ will change if the initial feature/label of $v _ { b }$ is varied slightly. Technically, the feature/label influence is measured by the Jacobian/gradient of the output feature/label of $v _ { a }$ with respect to the initial feature/label of $v _ { b }$ . Denote $\mathbf { x } _ { a } ^ { ( k ) }$ as the $k$ -th layer representation vector of $v _ { a }$ in GCN, and $\mathbf { x } _ { b }$ as the initial feature vector of $v _ { b }$ . We quantify the feature influence of $v _ { b }$ on $v _ { a }$ as follows: + +Definition 1 (Feature influence) The feature influence of node $v _ { b }$ on node $v _ { a }$ after $k$ layers of GCN is the $L l$ -norm of the expected Jacobian matrix $\partial \mathbf { x } _ { a } ^ { ( k ) } / \partial \mathbf { x } _ { b }$ : $I _ { f } ( v _ { a } , v _ { b } ; k ) = \left. \mathbb { E } \big [ \partial \mathbf { x } _ { a } ^ { ( k ) } / \partial \mathbf { x } _ { b } \big ] \right. _ { 1 }$ . The normalized feature influence is then defined as $\begin{array} { r } { \tilde { I } _ { f } ( v _ { a } , v _ { b } ; k ) = I _ { f } ( v _ { a } , v _ { b } ; k ) / \sum _ { v _ { i } \in \mathcal { V } } I _ { f } ( v _ { a } , v _ { i } ; k ) } \end{array}$ . + +We also consider the label influence of node $v _ { b }$ on node $v _ { a }$ in LPA (this implies that $v _ { a }$ is unlabeled and $v _ { b }$ is labeled). Since different label dimensions of $y _ { i } ^ { ( \cdot ) }$ do not interact with each other in LPA, we assume that all $y _ { i }$ and $y _ { i } ^ { ( \cdot ) }$ are scalars within $[ 0 , 1 ]$ (i.e., this is a binary classification task) for simplicity. Label influence is defined as follows: + +Definition 2 (Label influence) The label influence of labeled node $v _ { b }$ on unlabeled node $v _ { a }$ after $k$ iterations of LPA is the gradient of $y _ { a } ^ { ( k ) }$ with respect to $y _ { b } \colon I _ { l } ( v _ { a } , v _ { b } ; k ) = \partial y _ { a } ^ { ( k ) } / \partial y _ { b }$ . + +The following theorem shows the relationship between feature influence and label influence: + +Theorem 1 (Relationship between feature influence and label influence) Assume the activation function used in GCN is ReLU. Denote $v _ { a }$ as an unlabeled node, $v _ { b }$ as a labeled node, and $\beta$ as the fraction of unlabeled nodes. Then the label influence of $v _ { b }$ on $v _ { a }$ after $k$ iterations of LPA equals, in expectation, to the cumulative normalized feature influence of $v _ { b }$ on $v _ { a }$ after $k$ layers of GCN: + +$$ +\mathbb { E } \big [ I _ { l } ( v _ { a } , v _ { b } ; k ) \big ] = \sum _ { j = 1 } ^ { k } \beta ^ { j } \tilde { I } _ { f } ( v _ { a } , v _ { b } ; j ) . +$$ + +Proof of Theorem 1 is in Appendix A. Intuitively, Theorem 1 shows that if $v _ { b }$ has high label influence on $v _ { a }$ , then the initial feature vector of $v _ { b }$ will also affect the output feature vector of $v _ { a }$ greatly. Theorem 1 provides the theoretical guideline for designing our unified model in the next subsection. + +# 2.3 THE UNIFIED MODEL + +Before introducing the proposed model, we rethink the GCN method and see what an ideal set of node representations should be like. Since we aim to classify nodes, the perfect node representation would be such that nodes with the same label are embedded closely together, which would give a large separation between different classes. Intuitively, the key to achieve this goal is to enable nodes within the same class to connect more strongly with each other, so that they are pushed together by GCN (more discussion is presented in Section 2.4). We can therefore make edge strengths/weights trainable, then learn to increase the intra-class feature influence: $\begin{array} { r } { \sum _ { i \in \mathcal { L } } \sum _ { v _ { a } , v _ { b } : y _ { a } = i , y _ { b } = i } \tilde { I } _ { f } ( v _ { a } , v _ { b } ) } \end{array}$ ( $\mathcal { L }$ is the label set), by adjusting edge weights. However, this requires operating on Jacobian matrices with the size of $d ^ { ( 0 ) } \times d ^ { ( \mathrm { \bar { \tiny { K } } } ) }$ $\bar { \boldsymbol { d } } ^ { ( 0 ) }$ and $d ^ { ( K ) }$ are the dimensions of input and output in GCN, respectively), which is impractical if initial node features are high-dimensional. Fortunately, we can turn to optimizing the intra-class label influence instead, i.e., $\begin{array} { r } { \dot { \sum _ { i \in \mathcal { L } } } \sum _ { v _ { a } , v _ { b } : y _ { a } = i , y _ { b } = i } I _ { l } ( v _ { a } , v _ { b } ) } \end{array}$ , according to Theorem 1. Note that $\begin{array} { r } { \sum _ { i \in \mathcal { L } } \sum _ { v _ { a } , v _ { b } : y _ { a } = i , y _ { b } = i } I _ { l } ( v _ { a } , v _ { b } ) = \sum _ { v _ { a } } \sum _ { v _ { b } : y _ { b } = y _ { a } } I _ { l } ( v _ { a } , v _ { b } ) } \end{array}$ . We further show, by the following theorem, that the term $\scriptstyle \sum _ { v _ { b } : y _ { b } = y _ { a } } I _ { l } ( v _ { a } , v _ { b } )$ (the total intra-class label influence on a given node $v _ { a }$ ) is proportional to the probability that $v _ { a }$ is classified correctly by LPA: + +Theorem 2 (Relationship between label influence and LPA’s prediction) Consider a given node $v _ { a }$ and its label $y _ { a }$ . If we treat node $v _ { a }$ as unlabeled, then the total label influence of nodes with label $y _ { a }$ on node $v _ { a }$ is proportional to the probability that node $v _ { a }$ is classified as $y _ { a }$ by $L P A$ : + +$$ +\sum _ { v _ { b } : y _ { b } = y _ { a } } I _ { l } ( v _ { a } , v _ { b } ; k ) \propto \mathrm { P r } \big ( \hat { y } _ { a } ^ { l p a } = y _ { a } \big ) , +$$ + +where $\hat { y } _ { a } ^ { l p a }$ is the predicted label of $v _ { a }$ using a $k$ -iteration $L P A$ + +Proof of Theorem 2 is in Appendix B. Theorem 2 indicates that, if edge weights $\{ a _ { i j } \}$ maximize the probability that $v _ { a }$ is correctly classified by LPA, then they also maximize the intra-class label influence on node $v _ { a }$ . We can therefore first learn the optimal edge weights $A ^ { * }$ by minimizing the loss of predicted labels by LPA:2 + +$$ +A ^ { * } = \underset { A } { \arg \operatorname* { m i n } } L _ { l p a } ( A ) = \underset { A } { \arg \operatorname* { m i n } } \ \frac { 1 } { m } \sum _ { v _ { a } : a \leq m } J ( \hat { y } _ { a } ^ { l p a } , y _ { a } ) , +$$ + +where $J$ is the cross-entropy loss, $\hat { y } _ { a } ^ { l p a }$ and $y _ { a }$ are the predicted label distribution of $v _ { a }$ using LPA and the true one-hot label of $v _ { a }$ , respectively. $a \leq m$ means $v _ { a }$ is labeled. The optimal $A ^ { * }$ maximizes the probability that each node is correctly labeled by LPA, thus also maximizes the intra-class label influence (according to Theorem 2) and intra-class feature influence (according to Theorem 1). Since $A ^ { * }$ increases the connection strength within each class, it is expected to improve the performance of GCN compared with the original adjacency matrix $A$ . Therefore, we can plug $A ^ { * }$ into GCN to predict labels: + +$$ +X ^ { ( k + 1 ) } = \sigma ( A ^ { * } X ^ { ( k ) } W ^ { ( k ) } ) , k = 0 , 1 , \cdots , K - 1 . +$$ + +We use $\hat { y } _ { a } ^ { g c n }$ , the $a$ -th row of $X ^ { ( K ) }$ , to denote the predicted label distribution of $v _ { a }$ using the GCN specified in Eq. (7). Then the optimal transformation matrices in the GCN can be learned by minimizing the loss of predicted labels by GCN: + +$$ +W ^ { * } = \arg \operatorname* { m i n } _ { W } L _ { g c n } ( W , A ^ { * } ) = \arg \operatorname* { m i n } _ { W } \frac { 1 } { m } \sum _ { v _ { a } : a \leq m } J ( \hat { y } _ { a } ^ { g c n } , y _ { a } ) , +$$ + +It is more elegant (and empirically better) to combine the above two steps together into a multiobjective optimization problem, and train the whole model in an end-to-end fashion: + +$$ +W ^ { * } , A ^ { * } = \underset { W , A } { \arg \operatorname* { m i n } } \ L _ { g c n } ( W , A ) + \lambda L _ { l p a } ( A ) , +$$ + +where $\lambda$ is the balancing hyper-parameter. In this way, $L _ { l p a } ( A )$ serves as a regularization term that assists the learning of edge weights $A$ , since it is hard for GCN to learn both $W$ and $A$ simultaneously due to overfitting. The proposed GCN-LPA approach can also be seen as learning the importance of edges that can be used to reconstruct node labels accurately by LPA, then transferring this knowledge from label space to feature space for GCN. + +It is also worth noticing how the optimal $A ^ { * }$ is configured. The principle here is that we do not modify the basic structure of the original graph (i.e., not adding or removing edges) but only adjusting weights of existing edges. This is equivalent to learning a positive mask matrix $M$ for the adjacency matrix $A$ and taking the Hadamard product $M \circ A = A ^ { * }$ . Each element $M _ { i j }$ can be set as either a free variable or a function of the two nodes, for example, $M _ { i j } = \log \left( \exp ( \mathbf { x } _ { i } ^ { \top } \mathbf { H } \mathbf { x } _ { j } ) + 1 \right)$ where $\mathbf { H }$ is a learnable kernel matrix for measuring feature similarity. + +# 2.4 ANALYSIS OF GCN-LPA MODEL BEHAVIOR + +In this subsection, we show benefits of our unified model compared with GCN by analyzing properties of embeddings produced by the two models. We first analyze the update rule of GCN for node $\begin{array} { r } { \mathbf { \Phi } _ { \upsilon i } \colon \mathbf { x } _ { i } ^ { ( k + 1 ) } = \sigma \left( \sum _ { v _ { j } \in \mathcal { N } ( v _ { i } ) } \tilde { a } _ { i j } \mathbf { x } _ { j } ^ { ( k ) } W ^ { ( k ) } \right) } \end{array}$ , where $\tilde { a } _ { i j } = a _ { i j } / d _ { i i }$ is the normalized weight of edge $( j , i )$ . This formula can be decomposed into the following two steps: (1) In aggregation step, we calculate the aggregated representation ${ \bf h } _ { i } ^ { ( k ) }$ of all neighborhoods $\begin{array} { r } { \mathcal { N } ( v _ { i } ) \colon { \mathbf { h } } _ { i } ^ { ( k ) } = \sum _ { v _ { j } \in \mathcal { N } ( v _ { i } ) } \tilde { a } _ { i j } { \mathbf { x } } _ { j } ^ { ( k ) } } \end{array}$ (2) In transformation step, the aggregated representation ${ \bf h } _ { i } ^ { ( k ) }$ is mapped to a new space by a transformation matrix and nonlinear function: x(k+1)i = σh(k)i W (k). We show by the following theorem that the aggregation step reduces the overall distance in the embedding space between the nodes that are connected in the graph: + +Theorem 3 (Shrinking property in GCN) Let $\begin{array} { r } { D ( \mathbf { x } ) = \frac { 1 } { 2 } \sum _ { v _ { i } , v _ { j } } \widetilde { a } _ { i j } \| \mathbf { x } _ { i } - \mathbf { x } _ { j } \| _ { 2 } ^ { 2 } } \end{array}$ be a distance metric over node embeddings x. Then we have $D ( \mathbf { h } ^ { ( k ) } ) \leq D ( \mathbf { x } ^ { ( k ) } )$ . + +Proof of Theorem 3 is in Appendix C. Theorem 3 indicates that the overall distance among connected nodes is reduced after taking one aggregation step, which implies that connected components in the graph “shrink” and nodes within each connected component get closer to each other in the embedding space. In an ideal case where edges only connect nodes with the same label, the aggregation step will push nodes within the same class together, which greatly benefits the transformation step that acts like using a hyperplane $W ^ { ( k ) }$ for classification. However, two connected nodes may have different labels. These “noisy” edges will impede the formation of clusters and make the interclass boundary less clear. + +Fortunately, in GCN-LPA, edge weights are learned by minimizing the difference between ground-truth labels and labels reconstructed + +![](images/9825536a37154ab50e035bbf48b2a28cdb0bb40f69695acd0d2dbfcaa0fd3973.jpg) +Figure 1: A graph with two classes of nodes, while white nodes are unlabeled (Figure 1a). To classify nodes, our model will increase the connecting strength among nodes within the same class, thereby increasing their feature/label influence on each other. In this way, our model is able to identify potential intra-class edges (bold links in Figure 1b) and strengthen their weights. + +from local neighbors. This will force the model to increase the weight/bandwidth of possible paths that connect nodes with the same label, so that labels can “flow” easily along these paths for the purpose of label reconstruction. In this way, GCN-LPA is able to identify potential intra-class edges and increase their weights to assist learning clustering structures ( see Figure 1 for an illustrating example). + +To empirically justify our claim, we apply a two-layer untrained GCN with randomly initialized transformation matrices to the well-known Zachary’s karate club network (Zachary, 1977) as shown in Figure 2a, which contains 34 nodes of 2 classes and 78 unweighted edges (grey solid lines). We then increase the weights of intra-class edges by ten times to simulate GCN-LPA. We find that GCN works well on this network (Figure 2b), but GCN-LPA performs even better than GCN because the node embeddings are completely linearly separable as shown in Figure 2c. To further justify our claim, we randomly add 20 “noisy” inter-class edges (grey dotted lines) to the original network, from which we observe that GCN is misled by noise and mixes nodes of two classes together (Figure 2d), but GCN-LPA still distinguishes the two clusters (Figure 2e) because it is better at “denoising” undesirable edges based on the supervised signal of labels. + +# 3 CONNECTION TO EXISTING WORK + +Edge weights play a key role in graph-based machine learning algorithms. In this section, we discuss three lines of related work that learn edge weights adaptively. + +![](images/8b89d54087379580a1fbf7d646ab988e468f16e6f929c417af73e0bd5bd30559.jpg) +Figure 2: Node embeddings of Zachary’s karate club network trained on a node classification task (red vs. blue). Figure 2a visualizes the graph. Node coordinates in Figure 2b-2e are the embedding coordinates. Notice that GCN does not produce linearly separable embeddings (Figure 2b vs. Figure 2c), while GCN-LPA performs much better even in the presence of noisy edges (Figure 2d vs. Figure 2e). Additional visualizations are included in Appendix D. + +Locally Linear Embedding. Locally linear embedding (LLE) (Roweis & Saul, 2000) and its variants (Zhang & Wang, 2007; Kong et al., 2012) learn edge weights by constructing a linear dependency between a node and its neighbors, then use the learned edge weights to embed highdimensional nodes into a low-dimensional space. Our work is similar to LLE in the aspect of transferring the knowledge of edge importance from one space to another, but the difference is that LLE is an unsupervised dimension reduction method that learns the graph structure based on local proximity only, while our work is semi-supervised and explores high-order relationship among nodes. + +Label Propagation Algorithm. Classical LPA (Zhu et al., 2005; Zhou et al., 2004) can only make use of node labels rather than node features. In contrast, adaptive LPA considers node features by making edge weights learnable. Typical techniques of learning edge weights include adopting kernel functions (Zhu et al., 2003; Liu et al., 2019a) (e.g., $a _ { i j } \ = \ \mathrm { { e x p } } ( - { \textstyle \sum } _ { d } ( x _ { i d } - x _ { j d } ) ^ { 2 } / \sigma _ { d } ^ { 2 } )$ where $d$ is dimensionality of features), minimizing neighborhood reconstruction error (Wang & Zhang, 2008; Karasuyama & Mamitsuka, 2013), using leave-one-out loss (Zhang & Lee, 2007), or imposing sparseness on edge weights (Hong et al., 2009). However, in these LPA variants, node features are only used to assist learning the graph structure rather than explicitly mapped to node labels, which limits their capability in node classification. Another notable difference is that adaptive LPA learns edge weights by introducing the regularizations above, while our work takes LPA itself as regularization to learn edge weights. + +Attention and Diffusion on Graphs. Our method is also conceptually connected to attention mechanism on graphs, in which an attention weight $\alpha _ { i j }$ is learned between node $v _ { i }$ and $v _ { j }$ . For example, $\alpha _ { i j } = \mathrm { L e a k y R e L U } ( a ^ { \top } [ W \mathbf { x } _ { i } | | W \mathbf { x } _ { j } ] )$ in GAT (Velickovi ˇ c et al. ´ , 2018), $\alpha _ { i j } = a \cdot \cos ( W \mathbf { x } _ { i } , W \mathbf { x } _ { j } )$ in AGNN (Thekumparampil et al., 2018), $\alpha _ { i j } = ( W _ { 1 } \mathbf { x } _ { i } ) ^ { \top } W _ { 2 } \mathbf { x } _ { j }$ in GaAN (Zhang et al., 2018), and $\alpha _ { i j } = \pmb { a } ^ { \top } \operatorname { t a n h } ( W _ { 1 } \mathbf { x } _ { i } + W _ { 2 } \mathbf { x } _ { j } )$ in GeniePath (Liu et al., 2019b), where $a$ and $W$ are trainable variables. Our method is also similar to diffusion-based methods (Klicpera et al., 2019a; Xu et al., 2019a; Abu-El-Haija et al., 2019; Klicpera et al., 2019b; Jiang et al., 2019; Yang et al., 2019). Graph diffusion uses extended neighborhoods for aggregation in GNNs, which can be seen as learning a new adjacency matrix for a given graph. A significant difference between attention/diffusion mechanisms and our work is that attention/diffusion is learned based on feature similarity/graph topology, while we propose that edge weights should be consistent with the distribution of labels on the graph, which requires less handcrafting of the attention/diffusion function and is more task-oriented. + +# 4 EXPERIMENTS + +# 4.1 EXPERIMENT SETUP + +Datasets. We use the following five datasets in our experiments. Cora, Citeseer, and Pubmed (Sen et al., 2008) are citation networks, where nodes correspond to documents, edges correspond to citation links, and each node has a sparse bag-of-words feature vector as well as a class label. We also use two co-authorship networks (Shchur et al., 2018), Coauthor-CS and Coauthor-Phy, where nodes are authors and an edge indicates that two authors co-authored a paper. Node features represent paper keywords for each author’s papers, and class labels indicate most active fields of + +
MethodCoraCiteseerPubmedCoauthor-CSCoauthor-Phy
LR57.1 ± 2.361.0±2.264.1 ± 3.186.4±0.986.7±1.5
LPA74.4± 2.667.8 ± 2.170.5 ± 5.373.6 ± 3.986.6 ± 2.0
GCN81.4 ± 1.371.9 ± 1.977.5 ± 2.991.1 ± 0.592.4 ± 1.0
GAT80.7 ±1.371.4 ± 1.976.7 ± 2.390.5 ± 0.692.2 ± 0.9
JK-Net81.3 ± 1.470.2 ±1.377.6 ± 0.990.3 ± 0.491.0 ± 0.7
GIN74.5 ± 1.560.7 ±1.373.4 ±1.284.1 ± 1.987.3 ±1.7
GDC83.2 ± 0.972.2 ±1.477.8 ± 0.891.4 ± 1.092.0± 0.7
GCN+LPA78.4± 0.769.8 ± 1.474.1 ± 0.984.5 ±1.089.7 ± 0.8
GCN-LPA83.0±1.472.6± 0.978.4 ± 1.591.9± 0.993.4± 1.6
+ +Table 1: Mean and the $9 5 \%$ confidence intervals of test set accuracy for all methods and datasets. + +![](images/f2e00f387ed5dd75968b2e3dee9711338c82e71e21c227901943451cea3df114.jpg) +Figure 3: Sensitivity to the number of LPA iterations on Citeseer dataset. + +![](images/2739308ba9dc241429355300c63f9ecee44905c7a88e31e0c6d8c41dd3291e12.jpg) +Figure 4: Sensitivity to $\lambda$ (weight of LPA loss) on Citeseer dataset. + +![](images/b8eb7838ea7c122c499093fc31310f4c5ee59e5087729ed812b8387432c2c282.jpg) +Figure 5: Training time per epoch on random graphs. + +study for each author. Statistics of the five datasets are shown in Appendix E. We also calculate the intra-class edge rate (the fraction of edges that connect two nodes within the same class), which is significantly higher than inter-class edge rate in all networks. The finding supports our claim in Section 2.4 that node classification benefits from intra-class edges in a graph. + +Baselines. We compare against the following baselines in our experiments. Logistic Regression (LR) is feature-based methods that do not consider the graph structure. Label Propagation (LPA) (Zhu et al., 2005), on the other hand, only consider the graph structure and ignore node features. We also compare with several GNNs: Graph Convolutional Network (GCN) (Kipf & Welling, 2017), Graph Attention Network (GAT), Jumping Knowledge Network (JK-Net) (Xu et al., 2018), Graph Isomorphism Network (GIN) (Xu et al., 2019b), and Graph Diffusion Convolution (GDC) (Klicpera et al., 2019b) (with GCN as the base model). In addition, we propose another baseline $\mathbf { G C \bar { N } + L P A }$ , which simply adds predictions of GCN and LPA together. + +Experimental Setup. Our experiments focus on the transductive setting where we only know labels of part of nodes but have access to the entire graph as well as features of all nodes.3 We randomly sample 20 nodes per class as training set, 50 nodes per class as validation set, and the remaining nodes as test set. The weight of each edge is treated as a free variable during training. We train our model for 200 epochs using Adam (Kingma & Ba, 2015) and report the test set accuracy when validation set accuracy is maximized. Each experiment is repeated five times and we report the mean and the $9 5 \%$ confidence interval. We initialize weights according to Glorot & Bengio (2010) and row-normalize input features. During training, we apply L2 regularization to the transformation matrices and use the dropout technique (Srivastava et al., 2014). The settings of all other hyperparameters can be found in Appendix F. + +# 4.2 RESULTS + +Comparison with Baselines. The results of node classification are summarized in Table 1. Table 1 indicates that only using node features (LR) or graph structure (LPA) will lead to information loss and cannot fully exploit datasets. The results demonstrate that our proposed GCN-LPA model surpasses state-of-the-art GNN baselines. We notice that GDC is a strong baseline on Cora, but it does not perform consistently well on other datasets. In addition, $\mathrm { G C N + L P A }$ does not perform well, since it utilizes the prediction of LPA directly, making its performance limited by LPA. + +
Labeled node rate5%10%20%50%80%
LPA67.9 ± 2.168.1 ± 1.370.5± 1.572.5 ± 1.276.4 ±1.1
GCN72.1 ± 1.972.5 ± 1.874.3 ± 0.976.8 ± 0.680.2 ±1.5
GCN-LPA72.7 ± 1.273.2 ± 1.175.4 ± 1.578.2 ± 1.382.3 ± 0.9
+ +Table 2: Accuracy of LPA, GCN, and GCN-LPA on Citeseer with different labeled node rate. + +Efficacy of LPA Regularization. We investigate the influence of the number of LPA iterations and the training weight of LPA loss term $\lambda$ on the performance of classification. The results on Citeseer dataset are plotted in Figures 3 and 4, respectively, where each line corresponds to a given number of GCN layers in GCN-LPA. From Figure 3 we observe that the performance is boosted at first when the number of LPA iterations increases, then the accuracy stops increasing and decreases since a large number of LPA iterations will include more noisy nodes. Figure 4 shows that training without the LPA loss term (i.e., $\lambda = 0$ ) is more difficult than the case where $\lambda = 1 \sim 5$ , which justifies our aforementioned claim that it is hard for the GCN part to learn both transformation matrices $W$ and edge weights $A$ simultaneously without the assistance of LPA regularization. + +Influence of Labeled Node Rate. To study the influence of labeled node rate on the performance of our model, we vary the ratio of labeled node rate on Citeseer from $5 \%$ to $8 0 \%$ while keeping the validation and test set fixed, and report the result in Table 2. From Table 2 we observe that GCN-LPA outperforms GCN and LPA consistently, and the improvement achieved by GCN-LPA increases when labeled node rate is larger (from $0 . 6 \%$ to $2 . 1 \%$ compared with GCN). This is because GCN-LPA requires node labels to calculate edge weights. Therefore, a larger labeled node rate will provide more information for identifying noisy edges. + +Visualization of Learned Edge Weights. To intuitively understand what our model learns about edge weights, we split nodes in CoauthorCS dataset into 15 groups according to their labels, and calculate the average weights of edges connecting every pair of node groups as well as the average weights of edges within every group. The results are shown in Figure 6, where darker color indicates higher average weights of edges. It is clear that values along the diagonal (intra-class edges weights) are significantly larger than off-diagonal values (inter-class edge weights) in general, which demonstrates that GCN-LPA is able to identify the importance of edges and distinguish inter-class and intraclass edges. The visualization results are similar for other datasets. + +Time Complexity. We study the training time of GCN-LPA on random graphs. We use the one-hot identity vector as feature and 0 as label for each node. The size of training set and validation set is 100 and 200, respectively, while the rest is test set. The average number of neighbors for each node is set as 5, and the number of nodes is varied from one thousand to one million. We run GCN-LPA and GCN for 100 epochs on a Microsoft Azure virtual machine with 1 NVIDIA Tesla M60 GPU, 12 Intel Xeon CPUs $\left( \mathrm { E 5 - } 2 6 9 0 \mathrm { v } 3 @ 2 . 6 0 \mathrm { G H z } \right)$ , and 128GB of RAM, using the same hyper-parameter setting as in Cora. The training time per epoch of GCN-LPA and GCN is presented in Figure 5. Our result shows that GCN-LPA requires only $9 . 2 \%$ extra training time on average compared to GCN. + +![](images/12752225748b0306fa8c5f9ff6a59d1eb807ee3556ff1e27994a80b83cb73e9a.jpg) +Figure 6: Visualization of learned edge weights in Coauthor-CS dataset. + +# 5 CONCLUSION + +We studies the theoretical relationship between two types of well-known graph-based algorithms for node classification, label propagation algorithm and graph convolutional neural networks, from the perspectives of feature/label influence. We then propose a unified model GCN-LPA, which learns transformation matrices and edge weights simultaneously in GCN with the assistance of LPA regularizer. We also analyze why our unified model performs better than traditional GCN in terms of node classification. Experiments on five datasets demonstrate that our model outperforms stateof-the-art baselines, and it is also highly time-efficient with respect to the size of a graph. + +# REFERENCES + +Sami Abu-El-Haija, Bryan Perozzi, Amol Kapoor, Nazanin Alipourfard, Kristina Lerman, Hrayr Harutyunyan, Greg Ver Steeg, and Aram Galstyan. Mixhop: Higher-order graph convolutional architectures via sparsified neighborhood mixing. In Proceedings of the 36th International Conference on Machine Learning, pp. 21–29, 2019. + +Xavier Glorot and Yoshua Bengio. Understanding the difficulty of training deep feedforward neural networks. In Proceedings of the 13th International Conference on Artificial Intelligence and Statistics, 2010. + +Chen Gong, Dacheng Tao, Wei Liu, Liu Liu, and Jie Yang. Label propagation via teaching-tolearn and learning-to-teach. IEEE Transactions on Neural Networks and Learning Lystems, 28 (6), 2017. + +Will Hamilton, Zhitao Ying, and Jure Leskovec. Inductive representation learning on large graphs. In Advances in Neural Information Processing Systems, 2017. + +Cheng Hong, Zicheng Liu, and Jie Yang. Sparsity induced similarity measure for label propagation. In Proceedings of the 12th IEEE International Conference on Computer Vision. IEEE, 2009. + +Bo Jiang, Ziyan Zhang, Doudou Lin, Jin Tang, and Bin Luo. Semi-supervised learning with graph learning-convolutional networks. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, pp. 11313–11320, 2019. + +Masayuki Karasuyama and Hiroshi Mamitsuka. Manifold-based similarity adaptation for label propagation. In Advances in Neural Information Processing Systems, 2013. + +Diederik P Kingma and Jimmy Ba. Adam: A method for stochastic optimization. In Proceedings of the 3rd International Conference on Learning Representations, 2015. + +Thomas N Kipf and Max Welling. Semi-supervised classification with graph convolutional networks. In Proceedings of the 5th International Conference on Learning Representations, 2017. + +Johannes Klicpera, Aleksandar Bojchevski, and Stephan Gunnemann. Predict then propagate:¨ Graph neural networks meet personalized pagerank. In Proceedings of the 7th International Conference on Learning Representations, 2019a. + +Johannes Klicpera, Stefan Weißenberger, and Stephan Gunnemann. Diffusion improves graph learn- ¨ ing. In Advances in Neural Information Processing Systems, pp. 13354–13366, 2019b. + +Pang Wei Koh and Percy Liang. Understanding black-box predictions via influence functions. In Proceedings of the 34th International Conference on Machine Learning, 2017. + +Deguang Kong, Chris Ding, Heng Huang, and Feiping Nie. An iterative locally linear embedding algorithm. In Proceedings of the 29th International Coference on International Conference on Machine Learning. Omnipress, 2012. + +Qimai Li, Zhichao Han, and Xiao-Ming Wu. Deeper insights into graph convolutional networks for semi-supervised learning. In The 32nd AAAI Conference on Artificial Intelligence, 2018. + +Qimai Li, Xiao-Ming Wu, Han Liu, Xiaotong Zhang, and Zhichao Guan. Label efficient semisupervised learning via graph filtering. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, pp. 9582–9591, 2019. + +Renjie Liao, Zhizhen Zhao, Raquel Urtasun, and Richard S Zemel. Lanczosnet: Multi-scale deep graph convolutional networks. In Proceedings of the 7th International Conference on Learning Representations, 2019. + +Yanbin Liu, Juho Lee, Minseop Park, Saehoon Kim, Eunho Yang, Sung Ju Hwang, and Yi Yang. Learning to propagate labels: Transductive propagation network for few-shot learning. In Proceedings of the 7th International Conference on Learning Representations, 2019a. + +Ziqi Liu, Chaochao Chen, Longfei Li, Jun Zhou, Xiaolong Li, Le Song, and Yuan Qi. Geniepath: Graph neural networks with adaptive receptive paths. In The 33rd AAAI Conference on Artificial Intelligence, 2019b. + +Meng Qu, Yoshua Bengio, and Jian Tang. Gmnn: Graph markov neural networks. In Proceedings of the 36th International Conference on Machine Learning, 2019. + +Ryan A Rossi, Luke K McDowell, David William Aha, and Jennifer Neville. Transforming graph data for statistical relational learning. Journal of Artificial Intelligence Research, 45:363–441, 2012. + +Sam T Roweis and Lawrence K Saul. Nonlinear dimensionality reduction by locally linear embedding. science, 290(5500), 2000. + +Prithviraj Sen, Galileo Namata, Mustafa Bilgic, Lise Getoor, Brian Galligher, and Tina Eliassi-Rad. Collective classification in network data. AI magazine, 29(3), 2008. + +Oleksandr Shchur, Maximilian Mumme, Aleksandar Bojchevski, and Stephan Gunnemann. Pitfalls ¨ of graph neural network evaluation. In Neural Information Processing Systems Workshop on Relational Representation Learning, 2018. + +Nitish Srivastava, Geoffrey Hinton, Alex Krizhevsky, Ilya Sutskever, and Ruslan Salakhutdinov. Dropout: a simple way to prevent neural networks from overfitting. The Journal of Machine Learning Research, 15(1), 2014. + +Kiran K Thekumparampil, Chong Wang, Sewoong Oh, and Li-Jia Li. Attention-based graph neural network for semi-supervised learning. arXiv preprint arXiv:1803.03735, 2018. + +Petar Velickovi ˇ c, Guillem Cucurull, Arantxa Casanova, Adriana Romero, Pietro Lio, and Yoshua ´ Bengio. Graph attention networks. In Proceedings of the 6th International Conference on Learning Representations, 2018. + +Fei Wang and Changshui Zhang. Label propagation through linear neighborhoods. IEEE Transactions on Knowledge and Data Engineering, 20(1), 2008. + +Bingbing Xu, Huawei Shen, Qi Cao, Keting Cen, and Xueqi Cheng. Graph convolutional networks using heat kernel for semi-supervised learning. In Proceedings of the 28th International Joint Conference on Artificial Intelligence, pp. 1928–1934. AAAI Press, 2019a. + +Keyulu Xu, Chengtao Li, Yonglong Tian, Tomohiro Sonobe, Ken-ichi Kawarabayashi, and Stefanie Jegelka. Representation learning on graphs with jumping knowledge networks. In Proceedings of the 35th International Conference on Machine Learning, 2018. + +Keyulu Xu, Weihua Hu, Jure Leskovec, and Stefanie Jegelka. How powerful are graph neural networks? In Proceedings of the 7th International Conference on Learning Representations, 2019b. + +Liang Yang, Zesheng Kang, Xiaochun Cao, Di Jin, Bo Yang, and Yuanfang Guo. Topology optimization based graph convolutional network. In IJCAI, pp. 4054–4061, 2019. + +Wayne W Zachary. An information flow model for conflict and fission in small groups. Journal of anthropological research, 33(4), 1977. + +Jiani Zhang, Xingjian Shi, Junyuan Xie, Hao Ma, Irwin King, and Dit-Yan Yeung. Gaan: Gated attention networks for learning on large and spatiotemporal graphs. arXiv preprint arXiv:1803.07294, 2018. + +Xinhua Zhang and Wee S Lee. Hyperparameter learning for graph based semi-supervised learning algorithms. In Advances in Neural Information Processing Systems, 2007. + +Zhenyue Zhang and Jing Wang. Mlle: Modified locally linear embedding using multiple weights. In Advances in Neural Information Processing Systems, 2007. + +Dengyong Zhou, Olivier Bousquet, Thomas N Lal, Jason Weston, and Bernhard Scholkopf. Learn- ¨ ing with local and global consistency. In Advances in Neural Information Processing Systems, 2004. + +Xiaojin Zhu, Zoubin Ghahramani, and John D Lafferty. Semi-supervised learning using gaussian fields and harmonic functions. In Proceedings of the 20th International Conference on Machine Learning, 2003. + +Xiaojin Zhu, John Lafferty, and Ronald Rosenfeld. Semi-supervised learning with graphs. PhD thesis, Carnegie Mellon University, school of language technologies institute, 2005. + +# APPENDIX + +A PROOF OF THEOREM 1 + +Before proving Theorem 1, we first give two lemmas that demonstrate the exact form of feature influence and label influence defined in this paper. The relationship between feature influence and label influence can then be deduced from their exact forms. + +Lemma 1 Assume that the nonlinear activation function in GCN is ReLU. Let $\mathcal { P } _ { k } ^ { a b }$ be a path $[ v ^ { ( k ) } , v ^ { ( k - 1 ) } , \cdot \cdot \cdot , v ^ { ( 0 ) } ]$ of length $k$ from node $v _ { a }$ to node $v _ { b }$ , where $\boldsymbol { v } ^ { ( k ) } = \boldsymbol { v } _ { a }$ , $\boldsymbol { v } ^ { ( 0 ) } = \boldsymbol { v } _ { b }$ , and $v ^ { ( i - 1 ) } \in \mathcal { N } ( v ^ { ( i ) } ) f o r i = k , \cdots , 1$ . Then we have + +$$ +\tilde { I } _ { f } ( v _ { a } , v _ { b } ; k ) = \sum _ { \mathcal { P } _ { k } ^ { a b } } \prod _ { i = k } ^ { 1 } \tilde { a } _ { v ^ { ( i - 1 ) } , v ^ { ( i ) } } , +$$ + +where $\tilde { a } _ { v ^ { ( i - 1 ) } , v ^ { ( i ) } }$ is the normalized weight of edge $( v ^ { ( i ) } , v ^ { ( i - 1 ) } )$ . + +Proof. See $\mathrm { X u }$ et al. (2018) for the detailed proof. + +The product term in Eq. (10) is the probability of a given path $\mathcal { P } _ { k } ^ { a b }$ . Therefore, the right hand side in Eq. (10) is the sum over probabilities of all possible paths of length $k$ from $v _ { a }$ to $v _ { b }$ , which is the probability that a random walk starting at $v _ { a }$ ends at $v _ { b }$ after taking $k$ steps. + +Lemma 2 Let $\mathcal { U } _ { j } ^ { a b }$ be a path $[ v ^ { ( j ) } , v ^ { ( j - 1 ) } , \cdot \cdot \cdot , v ^ { ( 0 ) } ]$ of length $j$ from node $v _ { a }$ to node $v _ { b }$ , where $\boldsymbol { v } ^ { ( j ) } = \boldsymbol { v } _ { a }$ , $v ^ { ( 0 ) } = v _ { b }$ , $v ^ { ( i - 1 ) } \in \mathcal { N } ( v ^ { ( i ) } ) .$ for $i = j , \cdots , 1$ , and all nodes along the path are unlabeled except $v ^ { ( 0 ) }$ . Then we have + +$$ +I _ { l } ( v _ { a } , v _ { b } ; k ) = \sum _ { j = 1 } ^ { k } \sum _ { \mathcal { U } _ { j } ^ { a b } } \prod _ { i = j } ^ { 1 } \tilde { a } _ { v ^ { ( i - 1 ) } , v ^ { ( i ) } } , +$$ + +where $\tilde { a } _ { v ^ { ( i - 1 ) } , v ^ { ( i ) } }$ is the normalized weight of edge $( v ^ { ( i ) } , v ^ { ( i - 1 ) } )$ . + +To intuitively understand this lemma, note that there are two differences between Lemma 1 and Lemma 2: (1) In Lemma 1, $\tilde { I } _ { f } ( v _ { a } , v _ { b } ; k )$ sums over all paths from $v _ { a }$ to $v _ { b }$ of length $k$ , but in Lemma 2, $I _ { l } ( v _ { a } , v _ { b } ; k )$ sums over all paths from $v _ { a }$ to $v _ { b }$ of length no more than $k$ . The is because in LPA, $v _ { b }$ ’s label is reset to its initial value after each iteration, which means that the label of $v _ { b }$ serves as a constant signal that begins propagating in the graph again and again after each iteration. (2) In Lemma 1 we consider all possible paths from $v _ { a }$ to $v _ { b }$ , but in Lemma 2, the paths are restricted to contain unlabeled nodes only. The reason here is the same as above: Since the labels of labeled nodes are reset to their initial values after each iteration in LPA, the influence of $v _ { b }$ ’s label will be absorbed in labeled nodes, and the propagation of $v _ { b }$ ’s label will be cut off at these nodes. Therefore, $v _ { b }$ ’s label can only flow to $v _ { a }$ along the paths with unlabeled nodes only. See Figure 7 for an illustrating example showing the label propagation in LPA. + +Proof. As mentioned above, a significant difference between LPA and GCN is that all labeled $y _ { b }$ des are of node $v _ { b }$ et to its original labappears not only as $y _ { b } ^ { ( 0 ) }$ fter each iteration, but also as every $y _ { b } ^ { ( j ) }$ PA.for $j = 1 , \cdots , k - 1$ the initial label. Therefore, the influence of $y _ { b }$ on $y _ { a } ^ { ( k ) }$ is the cumulative influence of $y _ { b } ^ { ( j ) }$ on $y _ { a } ^ { ( k ) }$ for $j = 0 , 1 , \cdots , k - 1$ : + +$$ +I _ { l } ( v _ { a } , v _ { b } ; k ) = \frac { \partial y _ { a } ^ { ( k ) } } { \partial y _ { b } } = \sum _ { j = 0 } ^ { k - 1 } \frac { \partial y _ { a } ^ { ( k ) } } { \partial y _ { b } ^ { ( j ) } } . +$$ + +According to the updating rule of LPA, we have + +$$ +\frac { \partial y _ { a } ^ { ( k ) } } { \partial y _ { b } ^ { ( j ) } } = \frac { \partial \sum _ { v _ { z } \in \mathcal { N } ( v _ { a } ) } \tilde { a } _ { a z } y _ { z } ^ { ( k - 1 ) } } { \partial y _ { b } ^ { ( j ) } } = \sum _ { v _ { z } \in \mathcal { N } ( v _ { a } ) } \tilde { a } _ { a z } \frac { \partial y _ { z } ^ { ( k - 1 ) } } { \partial y _ { b } ^ { ( j ) } } . +$$ + +![](images/a8be6adfe9b29716610210ac6cd406194bbbff6b169ed3ea15aab2b7784c6266.jpg) +Figure 7: An illustrating example of label propagation in LPA. Suppose labels are propagated for three iterations, and no self-loop exists. Blue nodes are labeled while white nodes are unlabeled. (a) $v _ { a }$ ’s label propagates to $v _ { 1 }$ (yellow arrows). Note that the propagation of $v _ { a }$ ’s label to $v _ { 3 }$ is cut off since $v _ { 3 }$ is labeled thus absorbing $v _ { a }$ ’s label. (b) $v _ { a }$ ’s label that propagated to $v _ { 1 }$ further propagates to $v _ { 2 }$ and $v _ { b }$ (yellow arrows). Meanwhile, $v _ { a }$ ’s label is reset to its initial value then propagates from $v _ { a }$ again (green arrows). (c) Label propagation in iteration 3. Purple arrows denote the propagation of $v _ { a }$ ’s label starting from $v _ { a }$ for the third time. (d) All possible paths of length no more than three from $v _ { a }$ to $v _ { b }$ containing unlabeled nodes only. Note that there is no path of length one from $v _ { a }$ to $v _ { b }$ . + +In the above equation, the derivative ∂y(k)a $\frac { \partial y _ { a } ^ { ( k ) } } { \partial y _ { b } ^ { ( j ) } }$ is decomposed into the weighted average of ∂y(k−1)z ∂ y ( j )b , where $v _ { z }$ traverses all neighbors of $v _ { a }$ . For those $v _ { z }$ ’s that are initially labeled, $y _ { z } ^ { ( k - 1 ) }$ is reset to their initial labels in each iteration. Therefore, they are always constant and independent of $y _ { b } ^ { ( j ) }$ , meaning that their derivatives w.r.t. $y _ { b } ^ { ( j ) }$ are zero. So we only need to consider the terms where $v _ { z }$ is + +$$ +\frac { \partial y _ { a } ^ { ( k ) } } { \partial y _ { b } ^ { ( j ) } } = \sum _ { v _ { z } \in \mathcal { N } \left( v _ { a } \right) , z > m } \tilde { a } _ { a z } \frac { \partial y _ { z } ^ { ( k - 1 ) } } { \partial y _ { b } ^ { ( j ) } } , +$$ + +where $z > m$ means $v _ { z }$ is unlabeled. To intuitively understand Eq. (14), one can imagine that we perform a random walk starting from node $v _ { a }$ for one step, where the “transition probability” is the edge weights $\tilde { a }$ , and all nodes in this random walk are restricted to unlabeled nodes only. Note that we can further decompose every $y _ { z } ^ { ( k - 1 ) }$ in Eq. (14) in the way similar to what we do for $y _ { a } ^ { ( k ) }$ in Eq. (13). So the expansion in Eq. (14) can be performed iteratively until the index $k$ decreases to $j$ . This is equivalent to performing all possible random walks for $k - j$ steps starting from $v _ { a }$ , where all nodes but the last in the random walk are restricted to be unlabeled nodes: + +$$ +\frac { \partial y _ { a } ^ { ( k ) } } { \partial y _ { b } ^ { ( j ) } } = \sum _ { v _ { z } \in \mathcal { V } } \sum _ { \mathcal { U } _ { k - j } ^ { a \to z } } \left( \prod _ { i = k - j } ^ { 1 } \tilde { a } _ { v ^ { ( i - 1 ) } , v ^ { ( i ) } } \right) \frac { \partial y _ { z } ^ { ( j ) } } { \partial y _ { b } ^ { ( j ) } } , +$$ + +where $v _ { z }$ in the first summation term is the end node of a random walk, $\mathcal { U } _ { k - j } ^ { a z }$ in the second summation term is an unlabeled-nodes-only path from $v _ { a }$ to $v _ { z }$ of length $k - j$ , and the product term is the probability of a given path $\mathcal { U } _ { k - j } ^ { a z }$ . Consider the last term ∂ y(j)b in Eq. (15). We know that $\begin{array} { r } { \frac { \partial y _ { z } ^ { ( j ) } } { \partial y _ { b } ^ { ( j ) } } = 0 } \end{array}$ for all $z \neq b$ and $\begin{array} { r } { \frac { \partial y _ { z } ^ { ( j ) } } { \partial y _ { b } ^ { ( j ) } } = 1 } \end{array}$ for $z = b$ , which means that only those random-walk paths that end exactly at $v _ { b }$ (i.e., the end node $v _ { z }$ is exactly $v _ { b }$ ) count for the computation in Eq. (15). Therefore, we have + +$$ +{ \frac { \partial y _ { a } ^ { ( k ) } } { \partial y _ { b } ^ { ( j ) } } } = \sum _ { \mathcal { U } _ { k - j } ^ { a b } } \prod _ { i = k - j } ^ { 1 } \tilde { a } _ { v ^ { ( i - 1 ) } , v ^ { ( i ) } } , +$$ + +where $\mathcal { U } _ { k - j } ^ { a b }$ is a path from $v _ { a }$ to $v _ { b }$ of length $k - j$ containing only unlabeled nodes except $v _ { b }$ Substituting the right hand term of Eq. (12) with Eq. (16), we obtain that + +$$ +I _ { l } ( v _ { a } , v _ { b } ; k ) = \sum _ { j = 0 } ^ { k - 1 } \sum _ { \mathcal { U } _ { k - j } ^ { a b } } \prod _ { i = k - j } ^ { 1 } \tilde { a } _ { v ^ { ( i - 1 ) } , v ^ { ( i ) } } = \sum _ { j = 1 } ^ { k } \sum _ { \mathcal { U } _ { j } ^ { a b } } \prod _ { i = j } ^ { 1 } \tilde { a } _ { v ^ { ( i - 1 ) } , v ^ { ( i ) } } . +$$ + +Now Theorem 1 can be proved by combining Lemma 1 and Lemma 2: + +Proof. Suppose that whether a node is labeled or not is independent of each other for the given graph. Then we have + +$$ +\begin{array} { r l } & { \mathbb { E } [ \boldsymbol { I } _ { l } ( v _ { a } , v _ { b } ; k ) ] = \mathbb { E } [ \displaystyle \sum _ { j = 1 } ^ { k } \sum _ { U _ { j } ^ { a - b } } \prod _ { i = j } ^ { 1 } \tilde { a } _ { v ^ { ( i - 1 ) } , v ^ { ( i ) } } ] = \displaystyle \sum _ { j = 1 } ^ { k } \mathbb { E } [ \displaystyle \sum _ { U _ { j } ^ { a - b } } \prod _ { i = j } ^ { 1 } \tilde { a } _ { v ^ { ( i - 1 ) } , v ^ { ( i ) } } ] } \\ & { \qquad = \displaystyle \sum _ { j = 1 } ^ { k } \sum _ { \mathcal { P } _ { j } ^ { a - b } } \operatorname* { P r } ( \mathcal { P } _ { j } ^ { a b } \mathrm { \ i s ~ a n ~ u n l a b e l e d - n o d e s - o n l y ~ p a t h } ) \prod _ { i = j } ^ { 1 } \tilde { a } _ { v ^ { ( i - 1 ) } , v ^ { ( i ) } } } \\ & { \qquad = \displaystyle \sum _ { j = 1 } ^ { k } \sum _ { \mathcal { P } _ { j } ^ { a - b } } \beta ^ { j } \prod _ { i = j } ^ { 1 } \tilde { a } _ { v ^ { ( i - 1 ) } , v ^ { ( i ) } } = \displaystyle \sum _ { j = 1 } ^ { k } \beta ^ { j } \tilde { I } _ { f } ( v _ { a } , v _ { b } ; j ) . } \end{array} +$$ + +# B PROOF OF THEOREM 2 + +Proof. Denote the set of labels as $\mathcal { L }$ . Since different label dimensions in $y _ { a } ^ { ( \cdot ) }$ do not interact with each other when running LPA, the value of the $y _ { a }$ -th dimension in $y _ { a } ^ { ( \cdot ) }$ (denoted by $y _ { a } ^ { ( \cdot ) } [ y _ { a } ] \rangle$ ) comes only from the nodes with initial label $y _ { a }$ . It is clear that + +$$ +y _ { a } ^ { ( k ) } [ y _ { a } ] = \sum _ { v _ { b } : y _ { b } = y _ { a } } \sum _ { j = 1 } ^ { k } \sum _ { \mathcal { U } _ { j } ^ { a b } } \prod _ { i = j } ^ { 1 } \tilde { a } _ { v ^ { ( i - 1 ) } , v ^ { ( i ) } } , +$$ + +which equals $\begin{array} { r } { \sum _ { v { b } : y _ { b } = y _ { a } } I _ { l } ( v _ { a } , v _ { b } ; k ) } \end{array}$ according to Lemma 2. Therefore, we have + +$$ +\mathrm { P r } ( \hat { y } _ { a } = y _ { a } ) = \frac { y _ { a } ^ { ( k ) } [ y _ { a } ] } { \sum _ { i \in \mathcal { L } } y _ { a } ^ { ( k ) } [ i ] } \propto y _ { a } ^ { ( k ) } [ y _ { a } ] = \sum _ { v _ { b } : y _ { b } = y _ { a } } I _ { l } ( v _ { a } , v _ { b } ; k ) +$$ + +# C PROOF OF THEOREM 3 + +In this proof we assume that the dimension of node representations is one, but note that the conclusion can be easily generalized to the case of multi-dimensional representations since the function $D ( \mathbf { x } )$ can be decomposed into the sum of one-dimensional cases. In the following of this proof, we still use bold notations $\mathbf { x } _ { i } ^ { ( k ) }$ ) and h(k)i t o denote node representations, but keep in mind that they are scalars rather than vectors. + +We give two lemmas before proving Theorem 3. The first one is about the gradient of $D ( \mathbf { x } )$ + +Lemma 3 $\begin{array} { r } { \mathbf { h } _ { i } ^ { ( k ) } = \mathbf { x } _ { i } ^ { ( k ) } - \frac { \partial D ( \mathbf { x } ^ { ( k ) } ) } { \partial \mathbf { x } _ { i } ^ { ( k ) } } } \end{array}$ + +$$ +\begin{array} { r } { \mathbf { x } _ { i } ^ { ( k ) } - \frac { \partial D ( \mathbf { x } ^ { ( k ) } ) } { \partial \mathbf { x } _ { i } ^ { ( k ) } } = \mathbf { x } _ { i } ^ { ( k ) } - \sum _ { v _ { j } \in N ( v _ { i } ) } \widetilde { a } _ { i j } \big ( \mathbf { x } _ { i } ^ { ( k ) } - \mathbf { x } _ { j } ^ { ( k ) } \big ) = \sum _ { v _ { j } \in N ( v _ { i } ) } \widetilde { a } _ { i j } \mathbf { x } _ { j } ^ { ( k ) } = \mathbf { h } _ { i } ^ { ( k ) } . } \end{array} +$$ + +It is interesting to see from Lemma 3 that the aggregation step in GCN is equivalent to running gradient descent for one step with a step size of one. However, this is not able to guarantee that $\mathbf { \bar { \Gamma } } D ( \mathbf { h } ^ { ( k ) } ) \leq D ( \mathbf { x } ^ { ( k ) } )$ because the step size may be too large to reduce the value of $D$ . + +The second lemma is about the Hessian of $D ( \mathbf { x } )$ : + +Lemma 4 $\nabla ^ { 2 } D ( \mathbf { x } ) \preceq 2 I _ { ! }$ , or equivalently, $2 I - \nabla ^ { 2 } D ( \mathbf { x } )$ is a positive semidefinite matrix. + +Proof. We first calculate the Hessian of $\begin{array} { r } { D ( \mathbf { x } ) = \frac { 1 } { 2 } \sum _ { v _ { i } , v _ { j } } \widetilde { a } _ { i j } \| \mathbf { x } _ { i } - \mathbf { x } _ { j } \| _ { 2 } ^ { 2 } } \end{array}$ + +$$ +\nabla ^ { 2 } D ( { \bf x } ) = \left[ \begin{array} { c c c c } { 1 - \tilde { a } _ { 1 1 } } & { - \tilde { a } _ { 1 2 } } & { \cdots } & { - \tilde { a } _ { 1 n } } \\ { - \tilde { a } _ { 2 1 } } & { 1 - \tilde { a } _ { 2 2 } } & { \cdots } & { - \tilde { a } _ { 2 n } } \\ { \vdots } & { \vdots } & { \ddots } & { \vdots } \\ { - \tilde { a } _ { n 1 } } & { - \tilde { a } _ { n 2 } } & { \cdots } & { 1 - \tilde { a } _ { n n } } \end{array} \right] = I - D ^ { - 1 } A . +$$ + +Therefore, $2 I - \nabla ^ { 2 } D ( \mathbf { x } ) = I + D ^ { - 1 } A$ . Since $D ^ { - 1 } A$ is Markov matrix (i.e., each entry is nonnegative and the sum of each row is one), its eigenvalues are within the range [-1, 1], so the eigenvalues of $I + D ^ { - 1 } A$ are within the range [0, 2]. Therefore, $I + D ^ { - 1 } A$ is a positive semidefinite matrix, and we have $\nabla ^ { 2 } D ( \mathbf { x } ) \preceq 2 I$ .  + +We can now prove Theorem 3: + +Proof. Since $D$ is a quadratic function, we perform a second-order Taylor expansion of $D$ around $\mathbf { x } ^ { ( k ) }$ and obtain the following inequality: + +$$ +\begin{array} { r l } & { D ( \mathbf { h } ^ { ( k ) } ) = D ( \mathbf { x } ^ { ( k ) } ) + \nabla D ( \mathbf { x } ^ { ( k ) } ) ^ { \top } ( \mathbf { h } ^ { ( k ) } - \mathbf { x } ^ { ( k ) } ) + \displaystyle \frac { 1 } { 2 } ( \mathbf { h } ^ { ( k ) } - \mathbf { x } ^ { ( k ) } ) ^ { \top } \nabla ^ { 2 } D ( \mathbf { x } ) ( \mathbf { h } ^ { ( k ) } - \mathbf { x } ^ { ( k ) } ) } \\ & { \qquad = D ( \mathbf { x } ^ { ( k ) } ) - \nabla D ( \mathbf { x } ^ { ( k ) } ) ^ { \top } \nabla D ( \mathbf { x } ^ { ( k ) } ) + \displaystyle \frac { 1 } { 2 } \nabla D ( \mathbf { x } ^ { ( k ) } ) ^ { \top } \nabla ^ { 2 } D ( \mathbf { x } ) \nabla D ( \mathbf { x } ^ { ( k ) } ) } \\ & { \qquad \leq D ( \mathbf { x } ^ { ( k ) } ) - \nabla D ( \mathbf { x } ^ { ( k ) } ) ^ { \top } \nabla D ( \mathbf { x } ^ { ( k ) } ) + \nabla D ( \mathbf { x } ^ { ( k ) } ) ^ { \top } \nabla D ( \mathbf { x } ^ { ( k ) } ) } \\ & { \qquad = D ( \mathbf { x } ^ { ( k ) } ) . } \end{array} +$$ + +# D MORE VISUALIZATION RESULTS ON KARATE CLUB NETWORK + +Figure 8 illustrates more visualization of GCN and GCN-LPA on karate club network. In each subfigure, we vary the number of layers from 1 to 4 to examine how the learned representations evolve. The initial node features are one-hot identity vectors, and the dimension of hidden layers and output layer is 2. The transformation matrices are uniformly initialized within range [-1, 1]. We use sigmoid function as the nonlinear activation function. Comparing the four figures in each row, we conclude that the aggregation step and transformation step in GCN and GCN-LPA do benefit the separation of different classes. Comparing Figure 8a and 8c (or Figure 8b and 8d), we conclude that more inter-class edges will make the separation harder for GCN (or GCN-LPA). Comparing Figure 8a and 8b (or Figure 8c and 8d), we conclude that GCN-LPA is more noise-resistant than GCN, therefore, GCN-LPA can better differentiate classes and identify clustering substructures. + +# E DATASETS DETAILS + +The statistics of all datasets are shown in Table 3. + +Table 3: Statistics for all datasets. + +
CoraCiteseerPubmedCoauthor-CSCoauthor-Phy
#nodes2,7083,32719,71718,33334,493
# edges5,2784,55244,32481,894247,962
# features1,4333,7035006.8058,415
#classes763155
Intra-class edge rate81.0%73.6%80.2%80.8%93.1%
Labeled node rate5.2%3.6%0.3%1.6%0.3%
+ +# F HYPER-PARAMETER SETTINGS + +The detailed hyper-parameter settings for all datasets are listed in Table 4. In GCN-LPA, we use the same dimension for all hidden layers. Note that the number of GCN layers and the number of LPA iterations can actually be different since GCN and LPA are implemented as two independent modules. We use grid search to determine hyper-parameters on Cora, and perform fine-tuning on other datasets, i.e., varying one hyper-parameter per time to see if the performance can be further improved. The search spaces for hyper-parameters are as follows: + +![](images/9a2e196e94e5bcbff2b2721b9a616cc0e0339bd5fb0c29307d9645d266cde7e0.jpg) + +Figure 8: Visualization of GCN and GCN-LPA with $1 \sim 4$ layers on karate club network. +Table 4: Hyper-parameter settings for all datasets. + +
CoraCiteseerPubmedCoauthor-CSCoauthor-Phy
Dimension of hidden layers3216323232
# GCN layers52222
#LPA iterations55123
L2 weight1×10 -45×10-42 ×10-41×10-41×10-4
LPA weight (入)101121
Dropout rate0.2000.20.2
Learning rate0.050.20.10.10.05
+ +• Dimension of hidden layers: $\{ 8 , 1 6 , 3 2 \}$ ; +• # GCN layers: $\{ 1 , 2 , 3 , 4 , 5 , 6 \}$ ; +• # LPA iterations: $\{ 1 , 2 , 3 , 4 , 5 , 6 , 7 , 8 , 9 \}$ ; +• L2 weight: $\{ 1 0 ^ { - 7 } , 2 \times 1 0 ^ { - 7 } , 5 \times 1 0 ^ { - 7 } , 1 0 ^ { - 6 } , 2 \times 1 0 ^ { - 6 } , 5 \times 1 0 ^ { - 6 } , 1 0 ^ { - 5 } , 2 \times 1 0 ^ { - 5 } , 5 \times 1 0 ^ { - 6 } , 1 \}$ $1 0 ^ { - 5 } , 1 0 ^ { - 4 } , 2 \times 1 0 ^ { - 4 } , 5 \times 1 0 ^ { - 4 } , 1 0 ^ { - 3 } \}$ ; +• LPA weight $( \lambda )$ : $\{ 0 , 1 , 2 , 5 , 1 0 , 1 5 , 2 0 \}$ ; • Dropout rate: $\{ 0 , 0 . 1 , 0 . 2 , 0 . 3 , 0 . 4 , 0 . 5 \}$ ; +• Learning rate: $\{ 0 . 0 1 , 0 . 0 2 , 0 . 0 5 , 0 . 1 , 0 . 2 , 0 . 5 \}$ . \ No newline at end of file diff --git a/parse/train/oh71uL93yay/oh71uL93yay_content_list.json b/parse/train/oh71uL93yay/oh71uL93yay_content_list.json new file mode 100644 index 0000000000000000000000000000000000000000..5121da12050fa94acca400fc4338af53067cbcb3 --- /dev/null +++ b/parse/train/oh71uL93yay/oh71uL93yay_content_list.json @@ -0,0 +1,2117 @@ +[ + { + "type": "text", + "text": "UNIFYING GRAPH CONVOLUTIONAL NEURAL NETWORKS AND LABEL PROPAGATION ", + "text_level": 1, + "bbox": [ + 176, + 98, + 821, + 146 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Anonymous authors Paper under double-blind review ", + "bbox": [ + 183, + 171, + 398, + 198 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "ABSTRACT ", + "text_level": 1, + "bbox": [ + 454, + 236, + 544, + 251 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Label Propagation (LPA) and Graph Convolutional Neural Networks (GCN) are both message passing algorithms on graphs. Both solve the task of node classification but LPA propagates node label information across the edges of the graph, while GCN propagates and transforms node feature information. However, while conceptually similar, it is unclear how LPA and GCN can be combined under a unified framework to improve node classification. Here we study the relationship between LPA and GCN in terms of feature/label influence, in which we characterize how much the initial feature/label of one node influences the final feature/label of another node in GCN/LPA. Based on our theoretical analysis, we propose an end-to-end model that combines GCN and LPA. In our unified model, edge weights are learnable, and the LPA serves as regularization to assist the GCN in learning proper edge weights that lead to improved classification performance. Our model can also be seen as learning the weights for edges based on node labels, which is more task-oriented than existing feature-based attention models and topology-based diffusion models. In a number of experiments on real-world graphs, our model shows superiority over state-of-the-art graph neural networks in terms of node classification accuracy. ", + "bbox": [ + 233, + 267, + 764, + 502 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1 INTRODUCTION ", + "text_level": 1, + "bbox": [ + 176, + 532, + 336, + 549 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Consider the problem of node classification in a graph, where the goal is to learn a mapping $\\mathcal { M } :$ $\\nu \\mathcal { L }$ from node set $\\nu$ to label set $\\mathcal { L }$ . Solution to this problem is widely applicable to various scenarios, e.g., inferring income of users in a social network or classifying scientific articles in a citation network. Different from a generic machine learning problem where samples are independent from each other, nodes are connected by edges in the graph, which provide additional information and require more delicate modeling. To capture the graph information, researchers have mainly designed models on the assumption that labels/features are correlated over the edges of the graph. In particular, on the label side $\\mathcal { L }$ , node labels are propagated and aggregated along edges in the graph, which is known as Label Propagation Algorithm (LPA) (Zhu et al., 2005; Zhou et al., 2004; Zhang & Lee, 2007; Wang & Zhang, 2008; Karasuyama & Mamitsuka, 2013; Gong et al., 2017; Liu et al., 2019a); On the node side $\\nu$ , node features are propagated along edges and transformed through neural network layers, which is known as Graph Convolutional Neural Networks (GCN)1 (Kipf & Welling, 2017; Hamilton et al., 2017; Li et al., 2018; Xu et al., 2018; Liao et al., 2019; Xu et al., 2019b; Qu et al., 2019). ", + "bbox": [ + 174, + 565, + 825, + 760 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "GCN and LPA are related in that they propagate features and labels on the two sides of the mapping $\\mathcal { M }$ , respectively. Prior work Li et al. (2019) has shown the relationship between GCN and LPA in terms of low-pass graph filtering. However, it is unclear how the discovered relationship benefits node classification. Specifically, can GCN and LPA be combined to develop a more accurate model for node classification in graphs? ", + "bbox": [ + 174, + 767, + 823, + 837 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Here we study the theoretical relationship between GCN and LPA from the viewpoint of feature/label influence, where we quantify how much the initial feature/label of node $v _ { b }$ influences the output feature/label of node $v _ { a }$ in GCN/LPA by studying the Jacobian/gradient of node $v _ { b }$ with respect to node $v _ { a }$ . We also prove the quantitative relationship between feature influence and label influence, i.e., the label influence of $v _ { b }$ on $v _ { a }$ equals the cumulative discounted feature influence of $v _ { b }$ on $v _ { a }$ in expectation (Theorem 1). ", + "bbox": [ + 176, + 843, + 823, + 871 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 103, + 823, + 159 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Based on the theoretical analysis, we propose a unified model GCN-LPA for node classification. We show that the key to improving the performance of GCN is to enable nodes of the same class to connect more strongly with each other by making edge weights/strengths trainable. Then we prove that increasing the strength of edges between the nodes of the same class is equivalent to increasing the accuracy of LPA’s predictions (Theorem 2). Therefore, we can first learn the optimal edge weights by minimizing the loss of predictions in LPA, then plug the optimal edge weights into a GCN to learn node representations. In GCN-LPA, we further combine the above two steps together and train the whole model in an end-to-end fashion, where the LPA part serves as regularization to assist the GCN part in learning proper edge weights that benefit the separation of different node classes. It is worth noticing that GCN-LPA can also be seen as learning the weights for edges based on node label information, which requires less handcrafting and is more task-oriented than existing attention models that learn edge weights based on node feature similarity (Velickoviˇ c et al.´ , 2018; Thekumparampil et al., 2018; Zhang et al., 2018; Liu et al., 2019b) or diffusion models that learn adjacency matrix based on graph topology (Klicpera et al., 2019a; Xu et al., 2019a; Abu-El-Haija et al., 2019; Klicpera et al., 2019b). ", + "bbox": [ + 174, + 166, + 825, + 375 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "We conduct extensive experiments on five datasets, and the results indicate that our model outperforms state-of-the-art graph neural networks in terms of classification accuracy. The experimental results also show that combining GCN and LPA together is able to learn more informative edge weights thereby leading to better performance. ", + "bbox": [ + 176, + 382, + 825, + 438 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2 OUR APPROACH", + "text_level": 1, + "bbox": [ + 176, + 459, + 341, + 476 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "In this section, we first formulate the node classification problem and briefly introduce LPA and GCN. We then prove their relationship from the viewpoints of feature influence and label influence. Based on the theoretical finding, we propose a unified model GCN-LPA, and analyze why our model is theoretically superior to vanilla GCN. ", + "bbox": [ + 174, + 492, + 825, + 547 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2.1 PROBLEM FORMULATION AND PRELIMINARIES ", + "text_level": 1, + "bbox": [ + 174, + 568, + 542, + 582 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Consider a graph $\\mathcal { G } = ( \\nu , A , X , Y )$ , where $\\mathcal { V } = \\{ v _ { 1 } , \\cdots , v _ { n } \\}$ is the set of nodes, $A \\in \\mathbb { R } ^ { n \\times n }$ is the adjacency matrix, $X$ is the feature matrix of nodes and $Y$ is labels of nodes. $a _ { i j }$ (the $i j$ -th entry of $A$ ) is the weight of the edge connecting $v _ { i }$ and $v _ { j }$ . $\\mathcal { N } ( v )$ denotes the set of first-order neighbors of node $v$ in graph $\\mathcal { G }$ . Each node $v _ { i }$ has a feature vector $\\mathbf { x } _ { i }$ which is the $i$ -th row of $X$ , while only the first $m$ nodes $( m \\ll n )$ have labels $y _ { 1 } , \\cdots , y _ { m }$ from a label set $\\mathcal { L } = \\{ 1 , \\cdots , c \\}$ . The goal is to learn a mapping $\\mathcal { M } : \\mathcal { V } \\to \\mathcal { L }$ and predict labels of unlabeled nodes. ", + "bbox": [ + 174, + 592, + 825, + 678 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Label Propagation Algorithm. LPA (Zhu et al., 2005) assumes that two connected nodes are likely to have the same label, and thus it propagates labels iteratively along the edges. Let $Y ^ { ( k ) } =$ $[ y _ { 1 } ^ { ( k ) } , \\cdot \\cdot \\cdot , y _ { n } ^ { ( k ) } ] ^ { \\top } \\in \\mathbb { R } ^ { n \\times c }$ ∈ Rn×c be the soft label matrix in iteration k > 0, in which the i-th row y(ki $y _ { i } ^ { ( k ) \\top }$ denotes the predicted label distribution for node $v _ { i }$ in iteration $k$ . When $k = 0$ , the initial label matrix $Y ^ { ( 0 ) } = [ y _ { 1 } ^ { ( 0 ) } , \\cdot \\cdot \\cdot , y _ { n } ^ { ( 0 ) } ] ^ { \\top }$ consists of one-hot label indicator vectors $y _ { i } ^ { ( 0 ) }$ for $i = 1 , \\cdots , m$ (i.e., labeled nodes) or zero vectors otherwise (i.e., unlabeled nodes). Then LPA in iteration $k$ is formulated as the following two steps: ", + "bbox": [ + 173, + 684, + 825, + 789 + ], + "page_idx": 1 + }, + { + "type": "equation", + "img_path": "images/37fff2412f258c71b93122cbec12d1f86699c9d90db7d9404adb81c931ce1cca.jpg", + "text": "$$\n\\begin{array} { c } { { Y ^ { ( k + 1 ) } = \\tilde { A } Y ^ { ( k ) } , } } \\\\ { { y _ { i } ^ { ( k + 1 ) } = y _ { i } ^ { ( 0 ) } , \\forall i \\leq m . } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 416, + 796, + 581, + 838 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "In the above equations, $\\tilde { A }$ is the normalized adjacency matrix, which can be the random walk transition matrix $\\tilde { A } _ { r w } = D ^ { - 1 } A$ or the symmetric transition matrix $\\tilde { A } _ { s y m } = D ^ { - \\frac { 1 } { 2 } } A D ^ { - \\frac { 1 } { 2 } }$ , where $D$ is the diagonal degree matrix for $A$ with entries $\\begin{array} { r } { d _ { i i } = \\sum _ { j } a _ { i j } } \\end{array}$ . Without loss of generosity, we use $\\tilde { A } = \\tilde { A } _ { r w }$ in this work. In Eq. (1), all nodes propagate labels to their neighbors according to normalized edge weights. Then in Eq. (2), labels of all labeled nodes are reset to their initial values, because LPA wants to persist labels of nodes which are labeled, so that unlabeled nodes do not overpower the labeled ones as the initial labels would otherwise fade away. ", + "bbox": [ + 173, + 845, + 823, + 924 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "", + "bbox": [ + 169, + 103, + 823, + 132 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Graph Convolutional Neural Networks. GCN Kipf & Welling (2017) is a multi-layer feedforward neural network that propagates and transforms node features across the graph. The feature propagation scheme of GCN in layer $k$ is: ", + "bbox": [ + 174, + 138, + 825, + 181 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/c8a04f56b69bf2e17bd0025a57c2d477f4d2dab59773fdcfce455933b35b950f.jpg", + "text": "$$\nX ^ { ( k + 1 ) } = \\sigma \\left( \\tilde { A } X ^ { ( k ) } W ^ { ( k ) } \\right) ,\n$$", + "text_format": "latex", + "bbox": [ + 400, + 186, + 596, + 214 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "where $W ^ { ( k ) }$ is trainable weight matrix in the $k$ -th layer, $\\sigma ( \\cdot )$ is an activation function, and $X ^ { ( k ) } = [ \\mathbf { x } _ { 1 } ^ { ( k ) } , \\cdot \\cdot \\cdot , \\mathbf { x } _ { n } ^ { ( k ) } ] ^ { \\intercal }$ are the $k$ -th layer node representations with $X ^ { ( 0 ) } = X$ . By setting the dimension of the last layer to the number of classes $c$ , the last layer can be seen as (unnormalized) label distribution predicted for a given node. The whole model can thus be optimized by minimizing the discrepancy between predicted node label distributions and ground-truth labels $Y$ . ", + "bbox": [ + 173, + 222, + 825, + 296 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "2.2 FEATURE INFLUENCE AND LABEL INFLUENCE ", + "text_level": 1, + "bbox": [ + 174, + 313, + 535, + 328 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Consider two nodes $v _ { a }$ and $v _ { b }$ in a graph. Inspired by Koh & Liang (2017) and $\\mathrm { X u }$ et al. (2018), we study the relationship between GCN and LPA in terms of influence, i.e., how the output feature/label of $v _ { a }$ will change if the initial feature/label of $v _ { b }$ is varied slightly. Technically, the feature/label influence is measured by the Jacobian/gradient of the output feature/label of $v _ { a }$ with respect to the initial feature/label of $v _ { b }$ . Denote $\\mathbf { x } _ { a } ^ { ( k ) }$ as the $k$ -th layer representation vector of $v _ { a }$ in GCN, and $\\mathbf { x } _ { b }$ as the initial feature vector of $v _ { b }$ . We quantify the feature influence of $v _ { b }$ on $v _ { a }$ as follows: ", + "bbox": [ + 173, + 338, + 825, + 426 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Definition 1 (Feature influence) The feature influence of node $v _ { b }$ on node $v _ { a }$ after $k$ layers of GCN is the $L l$ -norm of the expected Jacobian matrix $\\partial \\mathbf { x } _ { a } ^ { ( k ) } / \\partial \\mathbf { x } _ { b }$ : $I _ { f } ( v _ { a } , v _ { b } ; k ) = \\left. \\mathbb { E } \\big [ \\partial \\mathbf { x } _ { a } ^ { ( k ) } / \\partial \\mathbf { x } _ { b } \\big ] \\right. _ { 1 }$ . The normalized feature influence is then defined as $\\begin{array} { r } { \\tilde { I } _ { f } ( v _ { a } , v _ { b } ; k ) = I _ { f } ( v _ { a } , v _ { b } ; k ) / \\sum _ { v _ { i } \\in \\mathcal { V } } I _ { f } ( v _ { a } , v _ { i } ; k ) } \\end{array}$ . ", + "bbox": [ + 174, + 438, + 825, + 491 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "We also consider the label influence of node $v _ { b }$ on node $v _ { a }$ in LPA (this implies that $v _ { a }$ is unlabeled and $v _ { b }$ is labeled). Since different label dimensions of $y _ { i } ^ { ( \\cdot ) }$ do not interact with each other in LPA, we assume that all $y _ { i }$ and $y _ { i } ^ { ( \\cdot ) }$ are scalars within $[ 0 , 1 ]$ (i.e., this is a binary classification task) for simplicity. Label influence is defined as follows: ", + "bbox": [ + 174, + 501, + 825, + 565 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Definition 2 (Label influence) The label influence of labeled node $v _ { b }$ on unlabeled node $v _ { a }$ after $k$ iterations of LPA is the gradient of $y _ { a } ^ { ( k ) }$ with respect to $y _ { b } \\colon I _ { l } ( v _ { a } , v _ { b } ; k ) = \\partial y _ { a } ^ { ( k ) } / \\partial y _ { b }$ . ", + "bbox": [ + 173, + 577, + 825, + 611 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "The following theorem shows the relationship between feature influence and label influence: ", + "bbox": [ + 171, + 621, + 777, + 637 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Theorem 1 (Relationship between feature influence and label influence) Assume the activation function used in GCN is ReLU. Denote $v _ { a }$ as an unlabeled node, $v _ { b }$ as a labeled node, and $\\beta$ as the fraction of unlabeled nodes. Then the label influence of $v _ { b }$ on $v _ { a }$ after $k$ iterations of LPA equals, in expectation, to the cumulative normalized feature influence of $v _ { b }$ on $v _ { a }$ after $k$ layers of GCN: ", + "bbox": [ + 171, + 648, + 825, + 707 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/efb2d928aa652184175dd6f91edd01e6c4c2d70c8b465e480de443426bcf1d48.jpg", + "text": "$$\n\\mathbb { E } \\big [ I _ { l } ( v _ { a } , v _ { b } ; k ) \\big ] = \\sum _ { j = 1 } ^ { k } \\beta ^ { j } \\tilde { I } _ { f } ( v _ { a } , v _ { b } ; j ) .\n$$", + "text_format": "latex", + "bbox": [ + 357, + 712, + 638, + 742 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Proof of Theorem 1 is in Appendix A. Intuitively, Theorem 1 shows that if $v _ { b }$ has high label influence on $v _ { a }$ , then the initial feature vector of $v _ { b }$ will also affect the output feature vector of $v _ { a }$ greatly. Theorem 1 provides the theoretical guideline for designing our unified model in the next subsection. ", + "bbox": [ + 174, + 753, + 825, + 797 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "2.3 THE UNIFIED MODEL ", + "text_level": 1, + "bbox": [ + 174, + 814, + 364, + 829 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Before introducing the proposed model, we rethink the GCN method and see what an ideal set of node representations should be like. Since we aim to classify nodes, the perfect node representation would be such that nodes with the same label are embedded closely together, which would give a large separation between different classes. Intuitively, the key to achieve this goal is to enable nodes within the same class to connect more strongly with each other, so that they are pushed together by GCN (more discussion is presented in Section 2.4). We can therefore make edge strengths/weights trainable, then learn to increase the intra-class feature influence: $\\begin{array} { r } { \\sum _ { i \\in \\mathcal { L } } \\sum _ { v _ { a } , v _ { b } : y _ { a } = i , y _ { b } = i } \\tilde { I } _ { f } ( v _ { a } , v _ { b } ) } \\end{array}$ ( $\\mathcal { L }$ is the label set), by adjusting edge weights. However, this requires operating on Jacobian matrices with the size of $d ^ { ( 0 ) } \\times d ^ { ( \\mathrm { \\bar { \\tiny { K } } } ) }$ $\\bar { \\boldsymbol { d } } ^ { ( 0 ) }$ and $d ^ { ( K ) }$ are the dimensions of input and output in GCN, respectively), which is impractical if initial node features are high-dimensional. Fortunately, we can turn to optimizing the intra-class label influence instead, i.e., $\\begin{array} { r } { \\dot { \\sum _ { i \\in \\mathcal { L } } } \\sum _ { v _ { a } , v _ { b } : y _ { a } = i , y _ { b } = i } I _ { l } ( v _ { a } , v _ { b } ) } \\end{array}$ , according to Theorem 1. Note that $\\begin{array} { r } { \\sum _ { i \\in \\mathcal { L } } \\sum _ { v _ { a } , v _ { b } : y _ { a } = i , y _ { b } = i } I _ { l } ( v _ { a } , v _ { b } ) = \\sum _ { v _ { a } } \\sum _ { v _ { b } : y _ { b } = y _ { a } } I _ { l } ( v _ { a } , v _ { b } ) } \\end{array}$ . We further show, by the following theorem, that the term $\\scriptstyle \\sum _ { v _ { b } : y _ { b } = y _ { a } } I _ { l } ( v _ { a } , v _ { b } )$ (the total intra-class label influence on a given node $v _ { a }$ ) is proportional to the probability that $v _ { a }$ is classified correctly by LPA: ", + "bbox": [ + 174, + 839, + 825, + 924 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "", + "bbox": [ + 173, + 101, + 825, + 238 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Theorem 2 (Relationship between label influence and LPA’s prediction) Consider a given node $v _ { a }$ and its label $y _ { a }$ . If we treat node $v _ { a }$ as unlabeled, then the total label influence of nodes with label $y _ { a }$ on node $v _ { a }$ is proportional to the probability that node $v _ { a }$ is classified as $y _ { a }$ by $L P A$ : ", + "bbox": [ + 174, + 247, + 825, + 290 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/d4d7c1bdebb9ce0d72fb24be3bde36eba48dc9aeb0502bde3f41049973dcd455.jpg", + "text": "$$\n\\sum _ { v _ { b } : y _ { b } = y _ { a } } I _ { l } ( v _ { a } , v _ { b } ; k ) \\propto \\mathrm { P r } \\big ( \\hat { y } _ { a } ^ { l p a } = y _ { a } \\big ) ,\n$$", + "text_format": "latex", + "bbox": [ + 367, + 291, + 630, + 325 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "where $\\hat { y } _ { a } ^ { l p a }$ is the predicted label of $v _ { a }$ using a $k$ -iteration $L P A$ ", + "bbox": [ + 173, + 328, + 584, + 343 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Proof of Theorem 2 is in Appendix B. Theorem 2 indicates that, if edge weights $\\{ a _ { i j } \\}$ maximize the probability that $v _ { a }$ is correctly classified by LPA, then they also maximize the intra-class label influence on node $v _ { a }$ . We can therefore first learn the optimal edge weights $A ^ { * }$ by minimizing the loss of predicted labels by LPA:2 ", + "bbox": [ + 173, + 352, + 825, + 407 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/d849c3b9c267c9a80474afb3da282b23e150c5031efc4fd9b375bb8fc408527f.jpg", + "text": "$$\nA ^ { * } = \\underset { A } { \\arg \\operatorname* { m i n } } L _ { l p a } ( A ) = \\underset { A } { \\arg \\operatorname* { m i n } } \\ \\frac { 1 } { m } \\sum _ { v _ { a } : a \\leq m } J ( \\hat { y } _ { a } ^ { l p a } , y _ { a } ) ,\n$$", + "text_format": "latex", + "bbox": [ + 305, + 409, + 691, + 448 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "where $J$ is the cross-entropy loss, $\\hat { y } _ { a } ^ { l p a }$ and $y _ { a }$ are the predicted label distribution of $v _ { a }$ using LPA and the true one-hot label of $v _ { a }$ , respectively. $a \\leq m$ means $v _ { a }$ is labeled. The optimal $A ^ { * }$ maximizes the probability that each node is correctly labeled by LPA, thus also maximizes the intra-class label influence (according to Theorem 2) and intra-class feature influence (according to Theorem 1). Since $A ^ { * }$ increases the connection strength within each class, it is expected to improve the performance of GCN compared with the original adjacency matrix $A$ . Therefore, we can plug $A ^ { * }$ into GCN to predict labels: ", + "bbox": [ + 173, + 449, + 825, + 546 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/32e2c0872ed537218face474de4c89a6397c37a9e19b4b55f4e3f5c4b0e23c61.jpg", + "text": "$$\nX ^ { ( k + 1 ) } = \\sigma ( A ^ { * } X ^ { ( k ) } W ^ { ( k ) } ) , k = 0 , 1 , \\cdots , K - 1 .\n$$", + "text_format": "latex", + "bbox": [ + 328, + 546, + 668, + 565 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "We use $\\hat { y } _ { a } ^ { g c n }$ , the $a$ -th row of $X ^ { ( K ) }$ , to denote the predicted label distribution of $v _ { a }$ using the GCN specified in Eq. (7). Then the optimal transformation matrices in the GCN can be learned by minimizing the loss of predicted labels by GCN: ", + "bbox": [ + 174, + 565, + 825, + 608 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/1660ec940e6d623e0ea431c1825efe2ef0176f0a049d9f24d52fdc87fdcc1540.jpg", + "text": "$$\nW ^ { * } = \\arg \\operatorname* { m i n } _ { W } L _ { g c n } ( W , A ^ { * } ) = \\arg \\operatorname* { m i n } _ { W } \\frac { 1 } { m } \\sum _ { v _ { a } : a \\leq m } J ( \\hat { y } _ { a } ^ { g c n } , y _ { a } ) ,\n$$", + "text_format": "latex", + "bbox": [ + 287, + 609, + 709, + 648 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "It is more elegant (and empirically better) to combine the above two steps together into a multiobjective optimization problem, and train the whole model in an end-to-end fashion: ", + "bbox": [ + 173, + 656, + 820, + 684 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/b92ebe68fe041dacb89e80ef62d643e7a5a3c1b97063911c0781bc81ffb5e77a.jpg", + "text": "$$\nW ^ { * } , A ^ { * } = \\underset { W , A } { \\arg \\operatorname* { m i n } } \\ L _ { g c n } ( W , A ) + \\lambda L _ { l p a } ( A ) ,\n$$", + "text_format": "latex", + "bbox": [ + 346, + 685, + 650, + 713 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "where $\\lambda$ is the balancing hyper-parameter. In this way, $L _ { l p a } ( A )$ serves as a regularization term that assists the learning of edge weights $A$ , since it is hard for GCN to learn both $W$ and $A$ simultaneously due to overfitting. The proposed GCN-LPA approach can also be seen as learning the importance of edges that can be used to reconstruct node labels accurately by LPA, then transferring this knowledge from label space to feature space for GCN. ", + "bbox": [ + 173, + 714, + 825, + 785 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "It is also worth noticing how the optimal $A ^ { * }$ is configured. The principle here is that we do not modify the basic structure of the original graph (i.e., not adding or removing edges) but only adjusting weights of existing edges. This is equivalent to learning a positive mask matrix $M$ for the adjacency matrix $A$ and taking the Hadamard product $M \\circ A = A ^ { * }$ . Each element $M _ { i j }$ can be set as either a free variable or a function of the two nodes, for example, $M _ { i j } = \\log \\left( \\exp ( \\mathbf { x } _ { i } ^ { \\top } \\mathbf { H } \\mathbf { x } _ { j } ) + 1 \\right)$ where $\\mathbf { H }$ is a learnable kernel matrix for measuring feature similarity. ", + "bbox": [ + 173, + 790, + 825, + 877 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "2.4 ANALYSIS OF GCN-LPA MODEL BEHAVIOR ", + "text_level": 1, + "bbox": [ + 176, + 103, + 521, + 117 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "In this subsection, we show benefits of our unified model compared with GCN by analyzing properties of embeddings produced by the two models. We first analyze the update rule of GCN for node $\\begin{array} { r } { \\mathbf { \\Phi } _ { \\upsilon i } \\colon \\mathbf { x } _ { i } ^ { ( k + 1 ) } = \\sigma \\left( \\sum _ { v _ { j } \\in \\mathcal { N } ( v _ { i } ) } \\tilde { a } _ { i j } \\mathbf { x } _ { j } ^ { ( k ) } W ^ { ( k ) } \\right) } \\end{array}$ , where $\\tilde { a } _ { i j } = a _ { i j } / d _ { i i }$ is the normalized weight of edge $( j , i )$ . This formula can be decomposed into the following two steps: (1) In aggregation step, we calculate the aggregated representation ${ \\bf h } _ { i } ^ { ( k ) }$ of all neighborhoods $\\begin{array} { r } { \\mathcal { N } ( v _ { i } ) \\colon { \\mathbf { h } } _ { i } ^ { ( k ) } = \\sum _ { v _ { j } \\in \\mathcal { N } ( v _ { i } ) } \\tilde { a } _ { i j } { \\mathbf { x } } _ { j } ^ { ( k ) } } \\end{array}$ (2) In transformation step, the aggregated representation ${ \\bf h } _ { i } ^ { ( k ) }$ is mapped to a new space by a transformation matrix and nonlinear function: x(k+1)i = σ\u0000h(k)i W (k)\u0001. We show by the following theorem that the aggregation step reduces the overall distance in the embedding space between the nodes that are connected in the graph: ", + "bbox": [ + 173, + 132, + 825, + 282 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Theorem 3 (Shrinking property in GCN) Let $\\begin{array} { r } { D ( \\mathbf { x } ) = \\frac { 1 } { 2 } \\sum _ { v _ { i } , v _ { j } } \\widetilde { a } _ { i j } \\| \\mathbf { x } _ { i } - \\mathbf { x } _ { j } \\| _ { 2 } ^ { 2 } } \\end{array}$ be a distance metric over node embeddings x. Then we have $D ( \\mathbf { h } ^ { ( k ) } ) \\leq D ( \\mathbf { x } ^ { ( k ) } )$ . ", + "bbox": [ + 174, + 295, + 821, + 330 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Proof of Theorem 3 is in Appendix C. Theorem 3 indicates that the overall distance among connected nodes is reduced after taking one aggregation step, which implies that connected components in the graph “shrink” and nodes within each connected component get closer to each other in the embedding space. In an ideal case where edges only connect nodes with the same label, the aggregation step will push nodes within the same class together, which greatly benefits the transformation step that acts like using a hyperplane $W ^ { ( k ) }$ for classification. However, two connected nodes may have different labels. These “noisy” edges will impede the formation of clusters and make the interclass boundary less clear. ", + "bbox": [ + 174, + 344, + 483, + 568 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Fortunately, in GCN-LPA, edge weights are learned by minimizing the difference between ground-truth labels and labels reconstructed ", + "bbox": [ + 174, + 575, + 483, + 617 + ], + "page_idx": 4 + }, + { + "type": "image", + "img_path": "images/9825536a37154ab50e035bbf48b2a28cdb0bb40f69695acd0d2dbfcaa0fd3973.jpg", + "image_caption": [ + "Figure 1: A graph with two classes of nodes, while white nodes are unlabeled (Figure 1a). To classify nodes, our model will increase the connecting strength among nodes within the same class, thereby increasing their feature/label influence on each other. In this way, our model is able to identify potential intra-class edges (bold links in Figure 1b) and strengthen their weights. " + ], + "image_footnote": [], + "bbox": [ + 501, + 345, + 812, + 470 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "from local neighbors. This will force the model to increase the weight/bandwidth of possible paths that connect nodes with the same label, so that labels can “flow” easily along these paths for the purpose of label reconstruction. In this way, GCN-LPA is able to identify potential intra-class edges and increase their weights to assist learning clustering structures ( see Figure 1 for an illustrating example). ", + "bbox": [ + 174, + 617, + 825, + 686 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "To empirically justify our claim, we apply a two-layer untrained GCN with randomly initialized transformation matrices to the well-known Zachary’s karate club network (Zachary, 1977) as shown in Figure 2a, which contains 34 nodes of 2 classes and 78 unweighted edges (grey solid lines). We then increase the weights of intra-class edges by ten times to simulate GCN-LPA. We find that GCN works well on this network (Figure 2b), but GCN-LPA performs even better than GCN because the node embeddings are completely linearly separable as shown in Figure 2c. To further justify our claim, we randomly add 20 “noisy” inter-class edges (grey dotted lines) to the original network, from which we observe that GCN is misled by noise and mixes nodes of two classes together (Figure 2d), but GCN-LPA still distinguishes the two clusters (Figure 2e) because it is better at “denoising” undesirable edges based on the supervised signal of labels. ", + "bbox": [ + 174, + 694, + 825, + 833 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "3 CONNECTION TO EXISTING WORK ", + "text_level": 1, + "bbox": [ + 174, + 859, + 495, + 876 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Edge weights play a key role in graph-based machine learning algorithms. In this section, we discuss three lines of related work that learn edge weights adaptively. ", + "bbox": [ + 174, + 895, + 821, + 924 + ], + "page_idx": 4 + }, + { + "type": "image", + "img_path": "images/8b89d54087379580a1fbf7d646ab988e468f16e6f929c417af73e0bd5bd30559.jpg", + "image_caption": [ + "Figure 2: Node embeddings of Zachary’s karate club network trained on a node classification task (red vs. blue). Figure 2a visualizes the graph. Node coordinates in Figure 2b-2e are the embedding coordinates. Notice that GCN does not produce linearly separable embeddings (Figure 2b vs. Figure 2c), while GCN-LPA performs much better even in the presence of noisy edges (Figure 2d vs. Figure 2e). Additional visualizations are included in Appendix D. " + ], + "image_footnote": [], + "bbox": [ + 181, + 108, + 823, + 213 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Locally Linear Embedding. Locally linear embedding (LLE) (Roweis & Saul, 2000) and its variants (Zhang & Wang, 2007; Kong et al., 2012) learn edge weights by constructing a linear dependency between a node and its neighbors, then use the learned edge weights to embed highdimensional nodes into a low-dimensional space. Our work is similar to LLE in the aspect of transferring the knowledge of edge importance from one space to another, but the difference is that LLE is an unsupervised dimension reduction method that learns the graph structure based on local proximity only, while our work is semi-supervised and explores high-order relationship among nodes. ", + "bbox": [ + 174, + 321, + 823, + 420 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Label Propagation Algorithm. Classical LPA (Zhu et al., 2005; Zhou et al., 2004) can only make use of node labels rather than node features. In contrast, adaptive LPA considers node features by making edge weights learnable. Typical techniques of learning edge weights include adopting kernel functions (Zhu et al., 2003; Liu et al., 2019a) (e.g., $a _ { i j } \\ = \\ \\mathrm { { e x p } } ( - { \\textstyle \\sum } _ { d } ( x _ { i d } - x _ { j d } ) ^ { 2 } / \\sigma _ { d } ^ { 2 } )$ where $d$ is dimensionality of features), minimizing neighborhood reconstruction error (Wang & Zhang, 2008; Karasuyama & Mamitsuka, 2013), using leave-one-out loss (Zhang & Lee, 2007), or imposing sparseness on edge weights (Hong et al., 2009). However, in these LPA variants, node features are only used to assist learning the graph structure rather than explicitly mapped to node labels, which limits their capability in node classification. Another notable difference is that adaptive LPA learns edge weights by introducing the regularizations above, while our work takes LPA itself as regularization to learn edge weights. ", + "bbox": [ + 173, + 426, + 825, + 580 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Attention and Diffusion on Graphs. Our method is also conceptually connected to attention mechanism on graphs, in which an attention weight $\\alpha _ { i j }$ is learned between node $v _ { i }$ and $v _ { j }$ . For example, $\\alpha _ { i j } = \\mathrm { L e a k y R e L U } ( a ^ { \\top } [ W \\mathbf { x } _ { i } | | W \\mathbf { x } _ { j } ] )$ in GAT (Velickovi ˇ c et al. ´ , 2018), $\\alpha _ { i j } = a \\cdot \\cos ( W \\mathbf { x } _ { i } , W \\mathbf { x } _ { j } )$ in AGNN (Thekumparampil et al., 2018), $\\alpha _ { i j } = ( W _ { 1 } \\mathbf { x } _ { i } ) ^ { \\top } W _ { 2 } \\mathbf { x } _ { j }$ in GaAN (Zhang et al., 2018), and $\\alpha _ { i j } = \\pmb { a } ^ { \\top } \\operatorname { t a n h } ( W _ { 1 } \\mathbf { x } _ { i } + W _ { 2 } \\mathbf { x } _ { j } )$ in GeniePath (Liu et al., 2019b), where $a$ and $W$ are trainable variables. Our method is also similar to diffusion-based methods (Klicpera et al., 2019a; Xu et al., 2019a; Abu-El-Haija et al., 2019; Klicpera et al., 2019b; Jiang et al., 2019; Yang et al., 2019). Graph diffusion uses extended neighborhoods for aggregation in GNNs, which can be seen as learning a new adjacency matrix for a given graph. A significant difference between attention/diffusion mechanisms and our work is that attention/diffusion is learned based on feature similarity/graph topology, while we propose that edge weights should be consistent with the distribution of labels on the graph, which requires less handcrafting of the attention/diffusion function and is more task-oriented. ", + "bbox": [ + 173, + 587, + 825, + 758 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "4 EXPERIMENTS ", + "text_level": 1, + "bbox": [ + 176, + 781, + 326, + 797 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "4.1 EXPERIMENT SETUP ", + "text_level": 1, + "bbox": [ + 176, + 813, + 356, + 828 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Datasets. We use the following five datasets in our experiments. Cora, Citeseer, and Pubmed (Sen et al., 2008) are citation networks, where nodes correspond to documents, edges correspond to citation links, and each node has a sparse bag-of-words feature vector as well as a class label. We also use two co-authorship networks (Shchur et al., 2018), Coauthor-CS and Coauthor-Phy, where nodes are authors and an edge indicates that two authors co-authored a paper. Node features represent paper keywords for each author’s papers, and class labels indicate most active fields of ", + "bbox": [ + 174, + 840, + 825, + 924 + ], + "page_idx": 5 + }, + { + "type": "table", + "img_path": "images/e80d553a0c1536cf7f21af5d109eea4c763685a4a268c2d33780ab4d399252ad.jpg", + "table_caption": [], + "table_footnote": [], + "table_body": "
MethodCoraCiteseerPubmedCoauthor-CSCoauthor-Phy
LR57.1 ± 2.361.0±2.264.1 ± 3.186.4±0.986.7±1.5
LPA74.4± 2.667.8 ± 2.170.5 ± 5.373.6 ± 3.986.6 ± 2.0
GCN81.4 ± 1.371.9 ± 1.977.5 ± 2.991.1 ± 0.592.4 ± 1.0
GAT80.7 ±1.371.4 ± 1.976.7 ± 2.390.5 ± 0.692.2 ± 0.9
JK-Net81.3 ± 1.470.2 ±1.377.6 ± 0.990.3 ± 0.491.0 ± 0.7
GIN74.5 ± 1.560.7 ±1.373.4 ±1.284.1 ± 1.987.3 ±1.7
GDC83.2 ± 0.972.2 ±1.477.8 ± 0.891.4 ± 1.092.0± 0.7
GCN+LPA78.4± 0.769.8 ± 1.474.1 ± 0.984.5 ±1.089.7 ± 0.8
GCN-LPA83.0±1.472.6± 0.978.4 ± 1.591.9± 0.993.4± 1.6
", + "bbox": [ + 205, + 101, + 792, + 231 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Table 1: Mean and the $9 5 \\%$ confidence intervals of test set accuracy for all methods and datasets. ", + "bbox": [ + 184, + 241, + 815, + 256 + ], + "page_idx": 6 + }, + { + "type": "image", + "img_path": "images/f2e00f387ed5dd75968b2e3dee9711338c82e71e21c227901943451cea3df114.jpg", + "image_caption": [ + "Figure 3: Sensitivity to the number of LPA iterations on Citeseer dataset. " + ], + "image_footnote": [], + "bbox": [ + 176, + 273, + 367, + 382 + ], + "page_idx": 6 + }, + { + "type": "image", + "img_path": "images/2739308ba9dc241429355300c63f9ecee44905c7a88e31e0c6d8c41dd3291e12.jpg", + "image_caption": [ + "Figure 4: Sensitivity to $\\lambda$ (weight of LPA loss) on Citeseer dataset. " + ], + "image_footnote": [], + "bbox": [ + 401, + 273, + 594, + 381 + ], + "page_idx": 6 + }, + { + "type": "image", + "img_path": "images/b8eb7838ea7c122c499093fc31310f4c5ee59e5087729ed812b8387432c2c282.jpg", + "image_caption": [ + "Figure 5: Training time per epoch on random graphs. " + ], + "image_footnote": [], + "bbox": [ + 627, + 275, + 820, + 382 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "study for each author. Statistics of the five datasets are shown in Appendix E. We also calculate the intra-class edge rate (the fraction of edges that connect two nodes within the same class), which is significantly higher than inter-class edge rate in all networks. The finding supports our claim in Section 2.4 that node classification benefits from intra-class edges in a graph. ", + "bbox": [ + 174, + 465, + 825, + 521 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Baselines. We compare against the following baselines in our experiments. Logistic Regression (LR) is feature-based methods that do not consider the graph structure. Label Propagation (LPA) (Zhu et al., 2005), on the other hand, only consider the graph structure and ignore node features. We also compare with several GNNs: Graph Convolutional Network (GCN) (Kipf & Welling, 2017), Graph Attention Network (GAT), Jumping Knowledge Network (JK-Net) (Xu et al., 2018), Graph Isomorphism Network (GIN) (Xu et al., 2019b), and Graph Diffusion Convolution (GDC) (Klicpera et al., 2019b) (with GCN as the base model). In addition, we propose another baseline $\\mathbf { G C \\bar { N } + L P A }$ , which simply adds predictions of GCN and LPA together. ", + "bbox": [ + 173, + 529, + 825, + 638 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Experimental Setup. Our experiments focus on the transductive setting where we only know labels of part of nodes but have access to the entire graph as well as features of all nodes.3 We randomly sample 20 nodes per class as training set, 50 nodes per class as validation set, and the remaining nodes as test set. The weight of each edge is treated as a free variable during training. We train our model for 200 epochs using Adam (Kingma & Ba, 2015) and report the test set accuracy when validation set accuracy is maximized. Each experiment is repeated five times and we report the mean and the $9 5 \\%$ confidence interval. We initialize weights according to Glorot & Bengio (2010) and row-normalize input features. During training, we apply L2 regularization to the transformation matrices and use the dropout technique (Srivastava et al., 2014). The settings of all other hyperparameters can be found in Appendix F. ", + "bbox": [ + 174, + 647, + 825, + 786 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "4.2 RESULTS ", + "text_level": 1, + "bbox": [ + 174, + 804, + 277, + 818 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Comparison with Baselines. The results of node classification are summarized in Table 1. Table 1 indicates that only using node features (LR) or graph structure (LPA) will lead to information loss and cannot fully exploit datasets. The results demonstrate that our proposed GCN-LPA model surpasses state-of-the-art GNN baselines. We notice that GDC is a strong baseline on Cora, but it does not perform consistently well on other datasets. In addition, $\\mathrm { G C N + L P A }$ does not perform well, since it utilizes the prediction of LPA directly, making its performance limited by LPA. ", + "bbox": [ + 174, + 829, + 823, + 886 + ], + "page_idx": 6 + }, + { + "type": "table", + "img_path": "images/114172e526485c5867a3e9d2cb64b84cb331f4e27edb129ab5187e99ae982e53.jpg", + "table_caption": [], + "table_footnote": [ + "Table 2: Accuracy of LPA, GCN, and GCN-LPA on Citeseer with different labeled node rate. " + ], + "table_body": "
Labeled node rate5%10%20%50%80%
LPA67.9 ± 2.168.1 ± 1.370.5± 1.572.5 ± 1.276.4 ±1.1
GCN72.1 ± 1.972.5 ± 1.874.3 ± 0.976.8 ± 0.680.2 ±1.5
GCN-LPA72.7 ± 1.273.2 ± 1.175.4 ± 1.578.2 ± 1.382.3 ± 0.9
", + "bbox": [ + 209, + 101, + 789, + 156 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "", + "bbox": [ + 176, + 210, + 821, + 239 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Efficacy of LPA Regularization. We investigate the influence of the number of LPA iterations and the training weight of LPA loss term $\\lambda$ on the performance of classification. The results on Citeseer dataset are plotted in Figures 3 and 4, respectively, where each line corresponds to a given number of GCN layers in GCN-LPA. From Figure 3 we observe that the performance is boosted at first when the number of LPA iterations increases, then the accuracy stops increasing and decreases since a large number of LPA iterations will include more noisy nodes. Figure 4 shows that training without the LPA loss term (i.e., $\\lambda = 0$ ) is more difficult than the case where $\\lambda = 1 \\sim 5$ , which justifies our aforementioned claim that it is hard for the GCN part to learn both transformation matrices $W$ and edge weights $A$ simultaneously without the assistance of LPA regularization. ", + "bbox": [ + 173, + 246, + 825, + 371 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Influence of Labeled Node Rate. To study the influence of labeled node rate on the performance of our model, we vary the ratio of labeled node rate on Citeseer from $5 \\%$ to $8 0 \\%$ while keeping the validation and test set fixed, and report the result in Table 2. From Table 2 we observe that GCN-LPA outperforms GCN and LPA consistently, and the improvement achieved by GCN-LPA increases when labeled node rate is larger (from $0 . 6 \\%$ to $2 . 1 \\%$ compared with GCN). This is because GCN-LPA requires node labels to calculate edge weights. Therefore, a larger labeled node rate will provide more information for identifying noisy edges. ", + "bbox": [ + 173, + 377, + 825, + 476 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Visualization of Learned Edge Weights. To intuitively understand what our model learns about edge weights, we split nodes in CoauthorCS dataset into 15 groups according to their labels, and calculate the average weights of edges connecting every pair of node groups as well as the average weights of edges within every group. The results are shown in Figure 6, where darker color indicates higher average weights of edges. It is clear that values along the diagonal (intra-class edges weights) are significantly larger than off-diagonal values (inter-class edge weights) in general, which demonstrates that GCN-LPA is able to identify the importance of edges and distinguish inter-class and intraclass edges. The visualization results are similar for other datasets. ", + "bbox": [ + 174, + 483, + 645, + 635 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Time Complexity. We study the training time of GCN-LPA on random graphs. We use the one-hot identity vector as feature and 0 as label for each node. The size of training set and validation set is 100 and 200, respectively, while the rest is test set. The average number of neighbors for each node is set as 5, and the number of nodes is varied from one thousand to one million. We run GCN-LPA and GCN for 100 epochs on a Microsoft Azure virtual machine with 1 NVIDIA Tesla M60 GPU, 12 Intel Xeon CPUs $\\left( \\mathrm { E 5 - } 2 6 9 0 \\mathrm { v } 3 @ 2 . 6 0 \\mathrm { G H z } \\right)$ , and 128GB of RAM, using the same hyper-parameter setting as in Cora. The training time per epoch of GCN-LPA and GCN is presented in Figure 5. Our result shows that GCN-LPA requires only $9 . 2 \\%$ extra training time on average compared to GCN. ", + "bbox": [ + 174, + 642, + 645, + 684 + ], + "page_idx": 7 + }, + { + "type": "image", + "img_path": "images/12752225748b0306fa8c5f9ff6a59d1eb807ee3556ff1e27994a80b83cb73e9a.jpg", + "image_caption": [ + "Figure 6: Visualization of learned edge weights in Coauthor-CS dataset. " + ], + "image_footnote": [], + "bbox": [ + 665, + 484, + 820, + 604 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 684, + 825, + 767 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "5 CONCLUSION ", + "text_level": 1, + "bbox": [ + 176, + 792, + 318, + 808 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "We studies the theoretical relationship between two types of well-known graph-based algorithms for node classification, label propagation algorithm and graph convolutional neural networks, from the perspectives of feature/label influence. We then propose a unified model GCN-LPA, which learns transformation matrices and edge weights simultaneously in GCN with the assistance of LPA regularizer. We also analyze why our unified model performs better than traditional GCN in terms of node classification. Experiments on five datasets demonstrate that our model outperforms stateof-the-art baselines, and it is also highly time-efficient with respect to the size of a graph. ", + "bbox": [ + 174, + 825, + 825, + 924 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "REFERENCES ", + "text_level": 1, + "bbox": [ + 176, + 102, + 285, + 117 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Sami Abu-El-Haija, Bryan Perozzi, Amol Kapoor, Nazanin Alipourfard, Kristina Lerman, Hrayr Harutyunyan, Greg Ver Steeg, and Aram Galstyan. Mixhop: Higher-order graph convolutional architectures via sparsified neighborhood mixing. In Proceedings of the 36th International Conference on Machine Learning, pp. 21–29, 2019. ", + "bbox": [ + 174, + 126, + 825, + 183 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Xavier Glorot and Yoshua Bengio. Understanding the difficulty of training deep feedforward neural networks. In Proceedings of the 13th International Conference on Artificial Intelligence and Statistics, 2010. ", + "bbox": [ + 174, + 193, + 823, + 236 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Chen Gong, Dacheng Tao, Wei Liu, Liu Liu, and Jie Yang. Label propagation via teaching-tolearn and learning-to-teach. IEEE Transactions on Neural Networks and Learning Lystems, 28 (6), 2017. ", + "bbox": [ + 173, + 246, + 825, + 289 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Will Hamilton, Zhitao Ying, and Jure Leskovec. Inductive representation learning on large graphs. In Advances in Neural Information Processing Systems, 2017. ", + "bbox": [ + 173, + 299, + 823, + 329 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Cheng Hong, Zicheng Liu, and Jie Yang. Sparsity induced similarity measure for label propagation. In Proceedings of the 12th IEEE International Conference on Computer Vision. IEEE, 2009. ", + "bbox": [ + 171, + 338, + 825, + 368 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Bo Jiang, Ziyan Zhang, Doudou Lin, Jin Tang, and Bin Luo. Semi-supervised learning with graph learning-convolutional networks. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, pp. 11313–11320, 2019. ", + "bbox": [ + 174, + 378, + 823, + 421 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Masayuki Karasuyama and Hiroshi Mamitsuka. Manifold-based similarity adaptation for label propagation. In Advances in Neural Information Processing Systems, 2013. ", + "bbox": [ + 173, + 431, + 823, + 460 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Diederik P Kingma and Jimmy Ba. Adam: A method for stochastic optimization. In Proceedings of the 3rd International Conference on Learning Representations, 2015. ", + "bbox": [ + 174, + 470, + 823, + 501 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Thomas N Kipf and Max Welling. Semi-supervised classification with graph convolutional networks. In Proceedings of the 5th International Conference on Learning Representations, 2017. ", + "bbox": [ + 174, + 510, + 823, + 540 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Johannes Klicpera, Aleksandar Bojchevski, and Stephan Gunnemann. Predict then propagate:¨ Graph neural networks meet personalized pagerank. In Proceedings of the 7th International Conference on Learning Representations, 2019a. ", + "bbox": [ + 173, + 549, + 825, + 593 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Johannes Klicpera, Stefan Weißenberger, and Stephan Gunnemann. Diffusion improves graph learn- ¨ ing. In Advances in Neural Information Processing Systems, pp. 13354–13366, 2019b. ", + "bbox": [ + 171, + 603, + 823, + 632 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Pang Wei Koh and Percy Liang. Understanding black-box predictions via influence functions. In Proceedings of the 34th International Conference on Machine Learning, 2017. ", + "bbox": [ + 171, + 642, + 823, + 671 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Deguang Kong, Chris Ding, Heng Huang, and Feiping Nie. An iterative locally linear embedding algorithm. In Proceedings of the 29th International Coference on International Conference on Machine Learning. Omnipress, 2012. ", + "bbox": [ + 173, + 681, + 825, + 724 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Qimai Li, Zhichao Han, and Xiao-Ming Wu. Deeper insights into graph convolutional networks for semi-supervised learning. In The 32nd AAAI Conference on Artificial Intelligence, 2018. ", + "bbox": [ + 174, + 734, + 823, + 765 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Qimai Li, Xiao-Ming Wu, Han Liu, Xiaotong Zhang, and Zhichao Guan. Label efficient semisupervised learning via graph filtering. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, pp. 9582–9591, 2019. ", + "bbox": [ + 173, + 773, + 825, + 818 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Renjie Liao, Zhizhen Zhao, Raquel Urtasun, and Richard S Zemel. Lanczosnet: Multi-scale deep graph convolutional networks. In Proceedings of the 7th International Conference on Learning Representations, 2019. ", + "bbox": [ + 174, + 827, + 823, + 871 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Yanbin Liu, Juho Lee, Minseop Park, Saehoon Kim, Eunho Yang, Sung Ju Hwang, and Yi Yang. Learning to propagate labels: Transductive propagation network for few-shot learning. In Proceedings of the 7th International Conference on Learning Representations, 2019a. ", + "bbox": [ + 176, + 881, + 823, + 924 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Ziqi Liu, Chaochao Chen, Longfei Li, Jun Zhou, Xiaolong Li, Le Song, and Yuan Qi. Geniepath: Graph neural networks with adaptive receptive paths. In The 33rd AAAI Conference on Artificial Intelligence, 2019b. ", + "bbox": [ + 173, + 103, + 823, + 146 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Meng Qu, Yoshua Bengio, and Jian Tang. Gmnn: Graph markov neural networks. In Proceedings of the 36th International Conference on Machine Learning, 2019. ", + "bbox": [ + 174, + 156, + 821, + 185 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Ryan A Rossi, Luke K McDowell, David William Aha, and Jennifer Neville. Transforming graph data for statistical relational learning. Journal of Artificial Intelligence Research, 45:363–441, 2012. ", + "bbox": [ + 173, + 194, + 825, + 238 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Sam T Roweis and Lawrence K Saul. Nonlinear dimensionality reduction by locally linear embedding. science, 290(5500), 2000. ", + "bbox": [ + 173, + 248, + 821, + 277 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Prithviraj Sen, Galileo Namata, Mustafa Bilgic, Lise Getoor, Brian Galligher, and Tina Eliassi-Rad. Collective classification in network data. AI magazine, 29(3), 2008. ", + "bbox": [ + 173, + 286, + 823, + 318 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Oleksandr Shchur, Maximilian Mumme, Aleksandar Bojchevski, and Stephan Gunnemann. Pitfalls ¨ of graph neural network evaluation. In Neural Information Processing Systems Workshop on Relational Representation Learning, 2018. ", + "bbox": [ + 176, + 327, + 823, + 371 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Nitish Srivastava, Geoffrey Hinton, Alex Krizhevsky, Ilya Sutskever, and Ruslan Salakhutdinov. Dropout: a simple way to prevent neural networks from overfitting. The Journal of Machine Learning Research, 15(1), 2014. ", + "bbox": [ + 178, + 380, + 823, + 422 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Kiran K Thekumparampil, Chong Wang, Sewoong Oh, and Li-Jia Li. Attention-based graph neural network for semi-supervised learning. arXiv preprint arXiv:1803.03735, 2018. ", + "bbox": [ + 173, + 433, + 820, + 463 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Petar Velickovi ˇ c, Guillem Cucurull, Arantxa Casanova, Adriana Romero, Pietro Lio, and Yoshua ´ Bengio. Graph attention networks. In Proceedings of the 6th International Conference on Learning Representations, 2018. ", + "bbox": [ + 173, + 472, + 825, + 515 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Fei Wang and Changshui Zhang. Label propagation through linear neighborhoods. IEEE Transactions on Knowledge and Data Engineering, 20(1), 2008. ", + "bbox": [ + 171, + 525, + 823, + 555 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Bingbing Xu, Huawei Shen, Qi Cao, Keting Cen, and Xueqi Cheng. Graph convolutional networks using heat kernel for semi-supervised learning. In Proceedings of the 28th International Joint Conference on Artificial Intelligence, pp. 1928–1934. AAAI Press, 2019a. ", + "bbox": [ + 174, + 564, + 825, + 608 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Keyulu Xu, Chengtao Li, Yonglong Tian, Tomohiro Sonobe, Ken-ichi Kawarabayashi, and Stefanie Jegelka. Representation learning on graphs with jumping knowledge networks. In Proceedings of the 35th International Conference on Machine Learning, 2018. ", + "bbox": [ + 174, + 617, + 823, + 661 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Keyulu Xu, Weihua Hu, Jure Leskovec, and Stefanie Jegelka. How powerful are graph neural networks? In Proceedings of the 7th International Conference on Learning Representations, 2019b. ", + "bbox": [ + 173, + 670, + 826, + 713 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Liang Yang, Zesheng Kang, Xiaochun Cao, Di Jin, Bo Yang, and Yuanfang Guo. Topology optimization based graph convolutional network. In IJCAI, pp. 4054–4061, 2019. ", + "bbox": [ + 173, + 723, + 821, + 753 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Wayne W Zachary. An information flow model for conflict and fission in small groups. Journal of anthropological research, 33(4), 1977. ", + "bbox": [ + 173, + 762, + 825, + 792 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Jiani Zhang, Xingjian Shi, Junyuan Xie, Hao Ma, Irwin King, and Dit-Yan Yeung. Gaan: Gated attention networks for learning on large and spatiotemporal graphs. arXiv preprint arXiv:1803.07294, 2018. ", + "bbox": [ + 174, + 803, + 823, + 845 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Xinhua Zhang and Wee S Lee. Hyperparameter learning for graph based semi-supervised learning algorithms. In Advances in Neural Information Processing Systems, 2007. ", + "bbox": [ + 171, + 856, + 823, + 885 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Zhenyue Zhang and Jing Wang. Mlle: Modified locally linear embedding using multiple weights. In Advances in Neural Information Processing Systems, 2007. ", + "bbox": [ + 174, + 895, + 821, + 924 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Dengyong Zhou, Olivier Bousquet, Thomas N Lal, Jason Weston, and Bernhard Scholkopf. Learn- ¨ ing with local and global consistency. In Advances in Neural Information Processing Systems, 2004. ", + "bbox": [ + 174, + 103, + 823, + 145 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Xiaojin Zhu, Zoubin Ghahramani, and John D Lafferty. Semi-supervised learning using gaussian fields and harmonic functions. In Proceedings of the 20th International Conference on Machine Learning, 2003. ", + "bbox": [ + 173, + 155, + 823, + 196 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Xiaojin Zhu, John Lafferty, and Ronald Rosenfeld. Semi-supervised learning with graphs. PhD thesis, Carnegie Mellon University, school of language technologies institute, 2005. ", + "bbox": [ + 173, + 207, + 823, + 234 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "APPENDIX ", + "text_level": 1, + "bbox": [ + 176, + 102, + 264, + 118 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "A PROOF OF THEOREM 1 ", + "bbox": [ + 176, + 133, + 361, + 148 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Before proving Theorem 1, we first give two lemmas that demonstrate the exact form of feature influence and label influence defined in this paper. The relationship between feature influence and label influence can then be deduced from their exact forms. ", + "bbox": [ + 173, + 160, + 825, + 203 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Lemma 1 Assume that the nonlinear activation function in GCN is ReLU. Let $\\mathcal { P } _ { k } ^ { a b }$ be a path $[ v ^ { ( k ) } , v ^ { ( k - 1 ) } , \\cdot \\cdot \\cdot , v ^ { ( 0 ) } ]$ of length $k$ from node $v _ { a }$ to node $v _ { b }$ , where $\\boldsymbol { v } ^ { ( k ) } = \\boldsymbol { v } _ { a }$ , $\\boldsymbol { v } ^ { ( 0 ) } = \\boldsymbol { v } _ { b }$ , and $v ^ { ( i - 1 ) } \\in \\mathcal { N } ( v ^ { ( i ) } ) f o r i = k , \\cdots , 1$ . Then we have ", + "bbox": [ + 173, + 214, + 826, + 261 + ], + "page_idx": 11 + }, + { + "type": "equation", + "img_path": "images/095a02207e050c7257a5815bc6ac732c2c92d896b6e3b1eb4648435f78acc0b2.jpg", + "text": "$$\n\\tilde { I } _ { f } ( v _ { a } , v _ { b } ; k ) = \\sum _ { \\mathcal { P } _ { k } ^ { a b } } \\prod _ { i = k } ^ { 1 } \\tilde { a } _ { v ^ { ( i - 1 ) } , v ^ { ( i ) } } ,\n$$", + "text_format": "latex", + "bbox": [ + 377, + 268, + 619, + 316 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "where $\\tilde { a } _ { v ^ { ( i - 1 ) } , v ^ { ( i ) } }$ is the normalized weight of edge $( v ^ { ( i ) } , v ^ { ( i - 1 ) } )$ . ", + "bbox": [ + 173, + 324, + 596, + 342 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Proof. See $\\mathrm { X u }$ et al. (2018) for the detailed proof. ", + "bbox": [ + 173, + 352, + 514, + 367 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "The product term in Eq. (10) is the probability of a given path $\\mathcal { P } _ { k } ^ { a b }$ . Therefore, the right hand side in Eq. (10) is the sum over probabilities of all possible paths of length $k$ from $v _ { a }$ to $v _ { b }$ , which is the probability that a random walk starting at $v _ { a }$ ends at $v _ { b }$ after taking $k$ steps. ", + "bbox": [ + 173, + 373, + 826, + 416 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Lemma 2 Let $\\mathcal { U } _ { j } ^ { a b }$ be a path $[ v ^ { ( j ) } , v ^ { ( j - 1 ) } , \\cdot \\cdot \\cdot , v ^ { ( 0 ) } ]$ of length $j$ from node $v _ { a }$ to node $v _ { b }$ , where $\\boldsymbol { v } ^ { ( j ) } = \\boldsymbol { v } _ { a }$ , $v ^ { ( 0 ) } = v _ { b }$ , $v ^ { ( i - 1 ) } \\in \\mathcal { N } ( v ^ { ( i ) } ) .$ for $i = j , \\cdots , 1$ , and all nodes along the path are unlabeled except $v ^ { ( 0 ) }$ . Then we have ", + "bbox": [ + 173, + 429, + 825, + 479 + ], + "page_idx": 11 + }, + { + "type": "equation", + "img_path": "images/66358b7f4c19de3cb2808e29d0090ab9cb36c360c0aba1d2cd35fb54637f75d5.jpg", + "text": "$$\nI _ { l } ( v _ { a } , v _ { b } ; k ) = \\sum _ { j = 1 } ^ { k } \\sum _ { \\mathcal { U } _ { j } ^ { a b } } \\prod _ { i = j } ^ { 1 } \\tilde { a } _ { v ^ { ( i - 1 ) } , v ^ { ( i ) } } ,\n$$", + "text_format": "latex", + "bbox": [ + 366, + 486, + 629, + 535 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "where $\\tilde { a } _ { v ^ { ( i - 1 ) } , v ^ { ( i ) } }$ is the normalized weight of edge $( v ^ { ( i ) } , v ^ { ( i - 1 ) } )$ . ", + "bbox": [ + 173, + 544, + 596, + 560 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "To intuitively understand this lemma, note that there are two differences between Lemma 1 and Lemma 2: (1) In Lemma 1, $\\tilde { I } _ { f } ( v _ { a } , v _ { b } ; k )$ sums over all paths from $v _ { a }$ to $v _ { b }$ of length $k$ , but in Lemma 2, $I _ { l } ( v _ { a } , v _ { b } ; k )$ sums over all paths from $v _ { a }$ to $v _ { b }$ of length no more than $k$ . The is because in LPA, $v _ { b }$ ’s label is reset to its initial value after each iteration, which means that the label of $v _ { b }$ serves as a constant signal that begins propagating in the graph again and again after each iteration. (2) In Lemma 1 we consider all possible paths from $v _ { a }$ to $v _ { b }$ , but in Lemma 2, the paths are restricted to contain unlabeled nodes only. The reason here is the same as above: Since the labels of labeled nodes are reset to their initial values after each iteration in LPA, the influence of $v _ { b }$ ’s label will be absorbed in labeled nodes, and the propagation of $v _ { b }$ ’s label will be cut off at these nodes. Therefore, $v _ { b }$ ’s label can only flow to $v _ { a }$ along the paths with unlabeled nodes only. See Figure 7 for an illustrating example showing the label propagation in LPA. ", + "bbox": [ + 173, + 571, + 826, + 728 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Proof. As mentioned above, a significant difference between LPA and GCN is that all labeled $y _ { b }$ des are of node $v _ { b }$ et to its original labappears not only as $y _ { b } ^ { ( 0 ) }$ fter each iteration, but also as every $y _ { b } ^ { ( j ) }$ PA.for $j = 1 , \\cdots , k - 1$ the initial label. Therefore, the influence of $y _ { b }$ on $y _ { a } ^ { ( k ) }$ is the cumulative influence of $y _ { b } ^ { ( j ) }$ on $y _ { a } ^ { ( k ) }$ for $j = 0 , 1 , \\cdots , k - 1$ : ", + "bbox": [ + 173, + 733, + 825, + 799 + ], + "page_idx": 11 + }, + { + "type": "equation", + "img_path": "images/6c539e654413b2254c0e0c5a466767592a274fd50409f5a40d68509719244fe5.jpg", + "text": "$$\nI _ { l } ( v _ { a } , v _ { b } ; k ) = \\frac { \\partial y _ { a } ^ { ( k ) } } { \\partial y _ { b } } = \\sum _ { j = 0 } ^ { k - 1 } \\frac { \\partial y _ { a } ^ { ( k ) } } { \\partial y _ { b } ^ { ( j ) } } .\n$$", + "text_format": "latex", + "bbox": [ + 379, + 808, + 619, + 852 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "According to the updating rule of LPA, we have ", + "bbox": [ + 173, + 858, + 488, + 873 + ], + "page_idx": 11 + }, + { + "type": "equation", + "img_path": "images/425b0ad244a52dadaf319afd5488cb72ea6f4d93e9cbcea02ba2202642fc58c9.jpg", + "text": "$$\n\\frac { \\partial y _ { a } ^ { ( k ) } } { \\partial y _ { b } ^ { ( j ) } } = \\frac { \\partial \\sum _ { v _ { z } \\in \\mathcal { N } ( v _ { a } ) } \\tilde { a } _ { a z } y _ { z } ^ { ( k - 1 ) } } { \\partial y _ { b } ^ { ( j ) } } = \\sum _ { v _ { z } \\in \\mathcal { N } ( v _ { a } ) } \\tilde { a } _ { a z } \\frac { \\partial y _ { z } ^ { ( k - 1 ) } } { \\partial y _ { b } ^ { ( j ) } } .\n$$", + "text_format": "latex", + "bbox": [ + 302, + 881, + 697, + 928 + ], + "page_idx": 11 + }, + { + "type": "image", + "img_path": "images/a8be6adfe9b29716610210ac6cd406194bbbff6b169ed3ea15aab2b7784c6266.jpg", + "image_caption": [ + "Figure 7: An illustrating example of label propagation in LPA. Suppose labels are propagated for three iterations, and no self-loop exists. Blue nodes are labeled while white nodes are unlabeled. (a) $v _ { a }$ ’s label propagates to $v _ { 1 }$ (yellow arrows). Note that the propagation of $v _ { a }$ ’s label to $v _ { 3 }$ is cut off since $v _ { 3 }$ is labeled thus absorbing $v _ { a }$ ’s label. (b) $v _ { a }$ ’s label that propagated to $v _ { 1 }$ further propagates to $v _ { 2 }$ and $v _ { b }$ (yellow arrows). Meanwhile, $v _ { a }$ ’s label is reset to its initial value then propagates from $v _ { a }$ again (green arrows). (c) Label propagation in iteration 3. Purple arrows denote the propagation of $v _ { a }$ ’s label starting from $v _ { a }$ for the third time. (d) All possible paths of length no more than three from $v _ { a }$ to $v _ { b }$ containing unlabeled nodes only. Note that there is no path of length one from $v _ { a }$ to $v _ { b }$ . " + ], + "image_footnote": [], + "bbox": [ + 179, + 104, + 823, + 217 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "In the above equation, the derivative ∂y(k)a $\\frac { \\partial y _ { a } ^ { ( k ) } } { \\partial y _ { b } ^ { ( j ) } }$ is decomposed into the weighted average of ∂y(k−1)z ∂ y ( j )b , where $v _ { z }$ traverses all neighbors of $v _ { a }$ . For those $v _ { z }$ ’s that are initially labeled, $y _ { z } ^ { ( k - 1 ) }$ is reset to their initial labels in each iteration. Therefore, they are always constant and independent of $y _ { b } ^ { ( j ) }$ , meaning that their derivatives w.r.t. $y _ { b } ^ { ( j ) }$ are zero. So we only need to consider the terms where $v _ { z }$ is ", + "bbox": [ + 173, + 375, + 826, + 467 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/f3863be58ec7591fb169d6ddd57254b9d003dee2758e3ea4eac6b6877734a3ac.jpg", + "text": "$$\n\\frac { \\partial y _ { a } ^ { ( k ) } } { \\partial y _ { b } ^ { ( j ) } } = \\sum _ { v _ { z } \\in \\mathcal { N } \\left( v _ { a } \\right) , z > m } \\tilde { a } _ { a z } \\frac { \\partial y _ { z } ^ { ( k - 1 ) } } { \\partial y _ { b } ^ { ( j ) } } ,\n$$", + "text_format": "latex", + "bbox": [ + 377, + 463, + 620, + 507 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "where $z > m$ means $v _ { z }$ is unlabeled. To intuitively understand Eq. (14), one can imagine that we perform a random walk starting from node $v _ { a }$ for one step, where the “transition probability” is the edge weights $\\tilde { a }$ , and all nodes in this random walk are restricted to unlabeled nodes only. Note that we can further decompose every $y _ { z } ^ { ( k - 1 ) }$ in Eq. (14) in the way similar to what we do for $y _ { a } ^ { ( k ) }$ in Eq. (13). So the expansion in Eq. (14) can be performed iteratively until the index $k$ decreases to $j$ . This is equivalent to performing all possible random walks for $k - j$ steps starting from $v _ { a }$ , where all nodes but the last in the random walk are restricted to be unlabeled nodes: ", + "bbox": [ + 173, + 508, + 826, + 611 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/dfc8dc352c414ce449db39bd4cff4778a1598b2624c1ad6b4931454c6ce26c85.jpg", + "text": "$$\n\\frac { \\partial y _ { a } ^ { ( k ) } } { \\partial y _ { b } ^ { ( j ) } } = \\sum _ { v _ { z } \\in \\mathcal { V } } \\sum _ { \\mathcal { U } _ { k - j } ^ { a \\to z } } \\left( \\prod _ { i = k - j } ^ { 1 } \\tilde { a } _ { v ^ { ( i - 1 ) } , v ^ { ( i ) } } \\right) \\frac { \\partial y _ { z } ^ { ( j ) } } { \\partial y _ { b } ^ { ( j ) } } ,\n$$", + "text_format": "latex", + "bbox": [ + 338, + 612, + 658, + 662 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "where $v _ { z }$ in the first summation term is the end node of a random walk, $\\mathcal { U } _ { k - j } ^ { a z }$ in the second summation term is an unlabeled-nodes-only path from $v _ { a }$ to $v _ { z }$ of length $k - j$ , and the product term is the probability of a given path $\\mathcal { U } _ { k - j } ^ { a z }$ . Consider the last term ∂ y(j)b in Eq. (15). We know that $\\begin{array} { r } { \\frac { \\partial y _ { z } ^ { ( j ) } } { \\partial y _ { b } ^ { ( j ) } } = 0 } \\end{array}$ for all $z \\neq b$ and $\\begin{array} { r } { \\frac { \\partial y _ { z } ^ { ( j ) } } { \\partial y _ { b } ^ { ( j ) } } = 1 } \\end{array}$ for $z = b$ , which means that only those random-walk paths that end exactly at $v _ { b }$ (i.e., the end node $v _ { z }$ is exactly $v _ { b }$ ) count for the computation in Eq. (15). Therefore, we have ", + "bbox": [ + 173, + 665, + 826, + 773 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/a229afa616ea0dc510690ef83f957856f2db325c4b613a2362f2cb3bf408aa5a.jpg", + "text": "$$\n{ \\frac { \\partial y _ { a } ^ { ( k ) } } { \\partial y _ { b } ^ { ( j ) } } } = \\sum _ { \\mathcal { U } _ { k - j } ^ { a b } } \\prod _ { i = k - j } ^ { 1 } \\tilde { a } _ { v ^ { ( i - 1 ) } , v ^ { ( i ) } } ,\n$$", + "text_format": "latex", + "bbox": [ + 390, + 770, + 606, + 819 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "where $\\mathcal { U } _ { k - j } ^ { a b }$ is a path from $v _ { a }$ to $v _ { b }$ of length $k - j$ containing only unlabeled nodes except $v _ { b }$ Substituting the right hand term of Eq. (12) with Eq. (16), we obtain that ", + "bbox": [ + 174, + 821, + 825, + 853 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/efaf3f041e5001119d74dfaf48ddc0ee304f3e8a4f95827a2de0291563901a68.jpg", + "text": "$$\nI _ { l } ( v _ { a } , v _ { b } ; k ) = \\sum _ { j = 0 } ^ { k - 1 } \\sum _ { \\mathcal { U } _ { k - j } ^ { a b } } \\prod _ { i = k - j } ^ { 1 } \\tilde { a } _ { v ^ { ( i - 1 ) } , v ^ { ( i ) } } = \\sum _ { j = 1 } ^ { k } \\sum _ { \\mathcal { U } _ { j } ^ { a b } } \\prod _ { i = j } ^ { 1 } \\tilde { a } _ { v ^ { ( i - 1 ) } , v ^ { ( i ) } } .\n$$", + "text_format": "latex", + "bbox": [ + 269, + 856, + 728, + 905 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Now Theorem 1 can be proved by combining Lemma 1 and Lemma 2: ", + "bbox": [ + 173, + 103, + 635, + 119 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Proof. Suppose that whether a node is labeled or not is independent of each other for the given graph. Then we have ", + "bbox": [ + 174, + 125, + 825, + 154 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/6dcaae8e44eda140257312e7edf02ffcab8b205cb26bd55e33379f9804056e62.jpg", + "text": "$$\n\\begin{array} { r l } & { \\mathbb { E } [ \\boldsymbol { I } _ { l } ( v _ { a } , v _ { b } ; k ) ] = \\mathbb { E } [ \\displaystyle \\sum _ { j = 1 } ^ { k } \\sum _ { U _ { j } ^ { a - b } } \\prod _ { i = j } ^ { 1 } \\tilde { a } _ { v ^ { ( i - 1 ) } , v ^ { ( i ) } } ] = \\displaystyle \\sum _ { j = 1 } ^ { k } \\mathbb { E } [ \\displaystyle \\sum _ { U _ { j } ^ { a - b } } \\prod _ { i = j } ^ { 1 } \\tilde { a } _ { v ^ { ( i - 1 ) } , v ^ { ( i ) } } ] } \\\\ & { \\qquad = \\displaystyle \\sum _ { j = 1 } ^ { k } \\sum _ { \\mathcal { P } _ { j } ^ { a - b } } \\operatorname* { P r } ( \\mathcal { P } _ { j } ^ { a b } \\mathrm { \\ i s ~ a n ~ u n l a b e l e d - n o d e s - o n l y ~ p a t h } ) \\prod _ { i = j } ^ { 1 } \\tilde { a } _ { v ^ { ( i - 1 ) } , v ^ { ( i ) } } } \\\\ & { \\qquad = \\displaystyle \\sum _ { j = 1 } ^ { k } \\sum _ { \\mathcal { P } _ { j } ^ { a - b } } \\beta ^ { j } \\prod _ { i = j } ^ { 1 } \\tilde { a } _ { v ^ { ( i - 1 ) } , v ^ { ( i ) } } = \\displaystyle \\sum _ { j = 1 } ^ { k } \\beta ^ { j } \\tilde { I } _ { f } ( v _ { a } , v _ { b } ; j ) . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 196, + 162, + 771, + 315 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "B PROOF OF THEOREM 2 ", + "text_level": 1, + "bbox": [ + 174, + 359, + 362, + 375 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Proof. Denote the set of labels as $\\mathcal { L }$ . Since different label dimensions in $y _ { a } ^ { ( \\cdot ) }$ do not interact with each other when running LPA, the value of the $y _ { a }$ -th dimension in $y _ { a } ^ { ( \\cdot ) }$ (denoted by $y _ { a } ^ { ( \\cdot ) } [ y _ { a } ] \\rangle$ ) comes only from the nodes with initial label $y _ { a }$ . It is clear that ", + "bbox": [ + 173, + 386, + 825, + 434 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/4af461db26787185f8ce9e9021acb5db67dc76d42788643a03d7a17952a07eeb.jpg", + "text": "$$\ny _ { a } ^ { ( k ) } [ y _ { a } ] = \\sum _ { v _ { b } : y _ { b } = y _ { a } } \\sum _ { j = 1 } ^ { k } \\sum _ { \\mathcal { U } _ { j } ^ { a b } } \\prod _ { i = j } ^ { 1 } \\tilde { a } _ { v ^ { ( i - 1 ) } , v ^ { ( i ) } } ,\n$$", + "text_format": "latex", + "bbox": [ + 352, + 443, + 643, + 492 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "which equals $\\begin{array} { r } { \\sum _ { v { b } : y _ { b } = y _ { a } } I _ { l } ( v _ { a } , v _ { b } ; k ) } \\end{array}$ according to Lemma 2. Therefore, we have ", + "bbox": [ + 173, + 502, + 705, + 521 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/90fd4d1f1494a326b21b3b0c56b8ac77ecb77443b9155184348209374c063d71.jpg", + "text": "$$\n\\mathrm { P r } ( \\hat { y } _ { a } = y _ { a } ) = \\frac { y _ { a } ^ { ( k ) } [ y _ { a } ] } { \\sum _ { i \\in \\mathcal { L } } y _ { a } ^ { ( k ) } [ i ] } \\propto y _ { a } ^ { ( k ) } [ y _ { a } ] = \\sum _ { v _ { b } : y _ { b } = y _ { a } } I _ { l } ( v _ { a } , v _ { b } ; k )\n$$", + "text_format": "latex", + "bbox": [ + 285, + 531, + 714, + 574 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "C PROOF OF THEOREM 3 ", + "text_level": 1, + "bbox": [ + 174, + 619, + 362, + 633 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "In this proof we assume that the dimension of node representations is one, but note that the conclusion can be easily generalized to the case of multi-dimensional representations since the function $D ( \\mathbf { x } )$ can be decomposed into the sum of one-dimensional cases. In the following of this proof, we still use bold notations $\\mathbf { x } _ { i } ^ { ( k ) }$ ) and h(k)i t o denote node representations, but keep in mind that they are scalars rather than vectors. ", + "bbox": [ + 173, + 646, + 826, + 722 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "We give two lemmas before proving Theorem 3. The first one is about the gradient of $D ( \\mathbf { x } )$ ", + "bbox": [ + 171, + 727, + 777, + 743 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Lemma 3 $\\begin{array} { r } { \\mathbf { h } _ { i } ^ { ( k ) } = \\mathbf { x } _ { i } ^ { ( k ) } - \\frac { \\partial D ( \\mathbf { x } ^ { ( k ) } ) } { \\partial \\mathbf { x } _ { i } ^ { ( k ) } } } \\end{array}$ ", + "bbox": [ + 174, + 755, + 408, + 782 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/9cb3b16e19ca9ffc7f3780eac29affd88490298e6388d319a5cf9d8849dc48e3.jpg", + "text": "$$\n\\begin{array} { r } { \\mathbf { x } _ { i } ^ { ( k ) } - \\frac { \\partial D ( \\mathbf { x } ^ { ( k ) } ) } { \\partial \\mathbf { x } _ { i } ^ { ( k ) } } = \\mathbf { x } _ { i } ^ { ( k ) } - \\sum _ { v _ { j } \\in N ( v _ { i } ) } \\widetilde { a } _ { i j } \\big ( \\mathbf { x } _ { i } ^ { ( k ) } - \\mathbf { x } _ { j } ^ { ( k ) } \\big ) = \\sum _ { v _ { j } \\in N ( v _ { i } ) } \\widetilde { a } _ { i j } \\mathbf { x } _ { j } ^ { ( k ) } = \\mathbf { h } _ { i } ^ { ( k ) } . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 233, + 795, + 795, + 824 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "It is interesting to see from Lemma 3 that the aggregation step in GCN is equivalent to running gradient descent for one step with a step size of one. However, this is not able to guarantee that $\\mathbf { \\bar { \\Gamma } } D ( \\mathbf { h } ^ { ( k ) } ) \\leq D ( \\mathbf { x } ^ { ( k ) } )$ because the step size may be too large to reduce the value of $D$ . ", + "bbox": [ + 173, + 828, + 825, + 872 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "The second lemma is about the Hessian of $D ( \\mathbf { x } )$ : ", + "bbox": [ + 174, + 878, + 496, + 893 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Lemma 4 $\\nabla ^ { 2 } D ( \\mathbf { x } ) \\preceq 2 I _ { ! }$ , or equivalently, $2 I - \\nabla ^ { 2 } D ( \\mathbf { x } )$ is a positive semidefinite matrix. ", + "bbox": [ + 168, + 907, + 767, + 925 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Proof. We first calculate the Hessian of $\\begin{array} { r } { D ( \\mathbf { x } ) = \\frac { 1 } { 2 } \\sum _ { v _ { i } , v _ { j } } \\widetilde { a } _ { i j } \\| \\mathbf { x } _ { i } - \\mathbf { x } _ { j } \\| _ { 2 } ^ { 2 } } \\end{array}$ ", + "bbox": [ + 173, + 102, + 673, + 121 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/b96402ad645d9df2c1f3c865ee7e909678e0770a58d9aa9aa38c1298dd96ff9b.jpg", + "text": "$$\n\\nabla ^ { 2 } D ( { \\bf x } ) = \\left[ \\begin{array} { c c c c } { 1 - \\tilde { a } _ { 1 1 } } & { - \\tilde { a } _ { 1 2 } } & { \\cdots } & { - \\tilde { a } _ { 1 n } } \\\\ { - \\tilde { a } _ { 2 1 } } & { 1 - \\tilde { a } _ { 2 2 } } & { \\cdots } & { - \\tilde { a } _ { 2 n } } \\\\ { \\vdots } & { \\vdots } & { \\ddots } & { \\vdots } \\\\ { - \\tilde { a } _ { n 1 } } & { - \\tilde { a } _ { n 2 } } & { \\cdots } & { 1 - \\tilde { a } _ { n n } } \\end{array} \\right] = I - D ^ { - 1 } A .\n$$", + "text_format": "latex", + "bbox": [ + 282, + 127, + 714, + 196 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Therefore, $2 I - \\nabla ^ { 2 } D ( \\mathbf { x } ) = I + D ^ { - 1 } A$ . Since $D ^ { - 1 } A$ is Markov matrix (i.e., each entry is nonnegative and the sum of each row is one), its eigenvalues are within the range [-1, 1], so the eigenvalues of $I + D ^ { - 1 } A$ are within the range [0, 2]. Therefore, $I + D ^ { - 1 } A$ is a positive semidefinite matrix, and we have $\\nabla ^ { 2 } D ( \\mathbf { x } ) \\preceq 2 I$ . \u0003 ", + "bbox": [ + 176, + 203, + 820, + 261 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "We can now prove Theorem 3: ", + "bbox": [ + 174, + 267, + 375, + 281 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Proof. Since $D$ is a quadratic function, we perform a second-order Taylor expansion of $D$ around $\\mathbf { x } ^ { ( k ) }$ and obtain the following inequality: ", + "bbox": [ + 174, + 287, + 826, + 319 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/4444c8d9085720df90157b16d1ad142474203c9a6dd2b2834bf5f7cbc3b36587.jpg", + "text": "$$\n\\begin{array} { r l } & { D ( \\mathbf { h } ^ { ( k ) } ) = D ( \\mathbf { x } ^ { ( k ) } ) + \\nabla D ( \\mathbf { x } ^ { ( k ) } ) ^ { \\top } ( \\mathbf { h } ^ { ( k ) } - \\mathbf { x } ^ { ( k ) } ) + \\displaystyle \\frac { 1 } { 2 } ( \\mathbf { h } ^ { ( k ) } - \\mathbf { x } ^ { ( k ) } ) ^ { \\top } \\nabla ^ { 2 } D ( \\mathbf { x } ) ( \\mathbf { h } ^ { ( k ) } - \\mathbf { x } ^ { ( k ) } ) } \\\\ & { \\qquad = D ( \\mathbf { x } ^ { ( k ) } ) - \\nabla D ( \\mathbf { x } ^ { ( k ) } ) ^ { \\top } \\nabla D ( \\mathbf { x } ^ { ( k ) } ) + \\displaystyle \\frac { 1 } { 2 } \\nabla D ( \\mathbf { x } ^ { ( k ) } ) ^ { \\top } \\nabla ^ { 2 } D ( \\mathbf { x } ) \\nabla D ( \\mathbf { x } ^ { ( k ) } ) } \\\\ & { \\qquad \\leq D ( \\mathbf { x } ^ { ( k ) } ) - \\nabla D ( \\mathbf { x } ^ { ( k ) } ) ^ { \\top } \\nabla D ( \\mathbf { x } ^ { ( k ) } ) + \\nabla D ( \\mathbf { x } ^ { ( k ) } ) ^ { \\top } \\nabla D ( \\mathbf { x } ^ { ( k ) } ) } \\\\ & { \\qquad = D ( \\mathbf { x } ^ { ( k ) } ) . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 184, + 323, + 787, + 429 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "D MORE VISUALIZATION RESULTS ON KARATE CLUB NETWORK ", + "text_level": 1, + "bbox": [ + 174, + 463, + 640, + 479 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Figure 8 illustrates more visualization of GCN and GCN-LPA on karate club network. In each subfigure, we vary the number of layers from 1 to 4 to examine how the learned representations evolve. The initial node features are one-hot identity vectors, and the dimension of hidden layers and output layer is 2. The transformation matrices are uniformly initialized within range [-1, 1]. We use sigmoid function as the nonlinear activation function. Comparing the four figures in each row, we conclude that the aggregation step and transformation step in GCN and GCN-LPA do benefit the separation of different classes. Comparing Figure 8a and 8c (or Figure 8b and 8d), we conclude that more inter-class edges will make the separation harder for GCN (or GCN-LPA). Comparing Figure 8a and 8b (or Figure 8c and 8d), we conclude that GCN-LPA is more noise-resistant than GCN, therefore, GCN-LPA can better differentiate classes and identify clustering substructures. ", + "bbox": [ + 173, + 488, + 825, + 630 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "E DATASETS DETAILS ", + "text_level": 1, + "bbox": [ + 174, + 646, + 339, + 660 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "The statistics of all datasets are shown in Table 3. ", + "bbox": [ + 174, + 671, + 498, + 686 + ], + "page_idx": 14 + }, + { + "type": "table", + "img_path": "images/77c2eac0fec92ae07fc101d3e0ab4eacf5491617963ba5b1c72ed49d0c6125d9.jpg", + "table_caption": [ + "Table 3: Statistics for all datasets. " + ], + "table_footnote": [], + "table_body": "
CoraCiteseerPubmedCoauthor-CSCoauthor-Phy
#nodes2,7083,32719,71718,33334,493
# edges5,2784,55244,32481,894247,962
# features1,4333,7035006.8058,415
#classes763155
Intra-class edge rate81.0%73.6%80.2%80.8%93.1%
Labeled node rate5.2%3.6%0.3%1.6%0.3%
", + "bbox": [ + 202, + 695, + 794, + 790 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "F HYPER-PARAMETER SETTINGS ", + "text_level": 1, + "bbox": [ + 174, + 842, + 416, + 856 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "The detailed hyper-parameter settings for all datasets are listed in Table 4. In GCN-LPA, we use the same dimension for all hidden layers. Note that the number of GCN layers and the number of LPA iterations can actually be different since GCN and LPA are implemented as two independent modules. We use grid search to determine hyper-parameters on Cora, and perform fine-tuning on other datasets, i.e., varying one hyper-parameter per time to see if the performance can be further improved. The search spaces for hyper-parameters are as follows: ", + "bbox": [ + 174, + 867, + 825, + 924 + ], + "page_idx": 14 + }, + { + "type": "image", + "img_path": "images/9a2e196e94e5bcbff2b2721b9a616cc0e0339bd5fb0c29307d9645d266cde7e0.jpg", + "image_caption": [], + "image_footnote": [], + "bbox": [ + 179, + 93, + 818, + 585 + ], + "page_idx": 15 + }, + { + "type": "table", + "img_path": "images/b3d29e6a81777378299136259e1aad59a8917f416f984eee1408781522136f24.jpg", + "table_caption": [ + "Figure 8: Visualization of GCN and GCN-LPA with $1 \\sim 4$ layers on karate club network. ", + "Table 4: Hyper-parameter settings for all datasets. " + ], + "table_footnote": [], + "table_body": "
CoraCiteseerPubmedCoauthor-CSCoauthor-Phy
Dimension of hidden layers3216323232
# GCN layers52222
#LPA iterations55123
L2 weight1×10 -45×10-42 ×10-41×10-41×10-4
LPA weight (入)101121
Dropout rate0.2000.20.2
Learning rate0.050.20.10.10.05
", + "bbox": [ + 186, + 625, + 812, + 732 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 781, + 821, + 810 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "• Dimension of hidden layers: $\\{ 8 , 1 6 , 3 2 \\}$ ; \n• # GCN layers: $\\{ 1 , 2 , 3 , 4 , 5 , 6 \\}$ ; \n• # LPA iterations: $\\{ 1 , 2 , 3 , 4 , 5 , 6 , 7 , 8 , 9 \\}$ ; \n• L2 weight: $\\{ 1 0 ^ { - 7 } , 2 \\times 1 0 ^ { - 7 } , 5 \\times 1 0 ^ { - 7 } , 1 0 ^ { - 6 } , 2 \\times 1 0 ^ { - 6 } , 5 \\times 1 0 ^ { - 6 } , 1 0 ^ { - 5 } , 2 \\times 1 0 ^ { - 5 } , 5 \\times 1 0 ^ { - 6 } , 1 \\}$ $1 0 ^ { - 5 } , 1 0 ^ { - 4 } , 2 \\times 1 0 ^ { - 4 } , 5 \\times 1 0 ^ { - 4 } , 1 0 ^ { - 3 } \\}$ ; \n• LPA weight $( \\lambda )$ : $\\{ 0 , 1 , 2 , 5 , 1 0 , 1 5 , 2 0 \\}$ ; • Dropout rate: $\\{ 0 , 0 . 1 , 0 . 2 , 0 . 3 , 0 . 4 , 0 . 5 \\}$ ; \n• Learning rate: $\\{ 0 . 0 1 , 0 . 0 2 , 0 . 0 5 , 0 . 1 , 0 . 2 , 0 . 5 \\}$ . ", + "bbox": [ + 215, + 820, + 825, + 925 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "", + "bbox": [ + 215, + 103, + 537, + 138 + ], + "page_idx": 16 + } +] \ No newline at end of file diff --git a/parse/train/oh71uL93yay/oh71uL93yay_middle.json b/parse/train/oh71uL93yay/oh71uL93yay_middle.json new file mode 100644 index 0000000000000000000000000000000000000000..1516a1b8ccbbe4b698f753d95390346f15d467a4 --- /dev/null +++ b/parse/train/oh71uL93yay/oh71uL93yay_middle.json @@ -0,0 +1,50530 @@ +{ + "pdf_info": [ + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 78, + 503, + 116 + ], + "lines": [ + { + "bbox": [ + 106, + 78, + 504, + 97 + ], + "spans": [ + { + "bbox": [ + 106, + 78, + 504, + 97 + ], + "score": 1.0, + "content": "UNIFYING GRAPH CONVOLUTIONAL NEURAL NET-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 100, + 363, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 100, + 363, + 117 + ], + "score": 1.0, + "content": "WORKS AND LABEL PROPAGATION", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 112, + 136, + 244, + 157 + ], + "lines": [ + { + "bbox": [ + 113, + 136, + 201, + 147 + ], + "spans": [ + { + "bbox": [ + 113, + 136, + 201, + 147 + ], + "score": 1.0, + "content": "Anonymous authors", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 112, + 146, + 245, + 159 + ], + "spans": [ + { + "bbox": [ + 112, + 146, + 245, + 159 + ], + "score": 1.0, + "content": "Paper under double-blind review", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5 + }, + { + "type": "title", + "bbox": [ + 278, + 187, + 333, + 199 + ], + "lines": [ + { + "bbox": [ + 276, + 186, + 335, + 200 + ], + "spans": [ + { + "bbox": [ + 276, + 186, + 335, + 200 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 143, + 212, + 468, + 398 + ], + "lines": [ + { + "bbox": [ + 141, + 212, + 470, + 225 + ], + "spans": [ + { + "bbox": [ + 141, + 212, + 470, + 225 + ], + "score": 1.0, + "content": "Label Propagation (LPA) and Graph Convolutional Neural Networks (GCN) are", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 141, + 223, + 470, + 236 + ], + "spans": [ + { + "bbox": [ + 141, + 223, + 470, + 236 + ], + "score": 1.0, + "content": "both message passing algorithms on graphs. Both solve the task of node classifi-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 142, + 235, + 469, + 246 + ], + "spans": [ + { + "bbox": [ + 142, + 235, + 469, + 246 + ], + "score": 1.0, + "content": "cation but LPA propagates node label information across the edges of the graph,", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 141, + 245, + 470, + 258 + ], + "spans": [ + { + "bbox": [ + 141, + 245, + 470, + 258 + ], + "score": 1.0, + "content": "while GCN propagates and transforms node feature information. However, while", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 256, + 470, + 268 + ], + "spans": [ + { + "bbox": [ + 141, + 256, + 470, + 268 + ], + "score": 1.0, + "content": "conceptually similar, it is unclear how LPA and GCN can be combined under a", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 267, + 469, + 280 + ], + "spans": [ + { + "bbox": [ + 141, + 267, + 469, + 280 + ], + "score": 1.0, + "content": "unified framework to improve node classification. Here we study the relationship", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 278, + 469, + 290 + ], + "spans": [ + { + "bbox": [ + 141, + 278, + 469, + 290 + ], + "score": 1.0, + "content": "between LPA and GCN in terms of feature/label influence, in which we char-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 289, + 469, + 301 + ], + "spans": [ + { + "bbox": [ + 141, + 289, + 469, + 301 + ], + "score": 1.0, + "content": "acterize how much the initial feature/label of one node influences the final fea-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 300, + 470, + 312 + ], + "spans": [ + { + "bbox": [ + 141, + 300, + 470, + 312 + ], + "score": 1.0, + "content": "ture/label of another node in GCN/LPA. Based on our theoretical analysis, we", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 140, + 311, + 470, + 323 + ], + "spans": [ + { + "bbox": [ + 140, + 311, + 470, + 323 + ], + "score": 1.0, + "content": "propose an end-to-end model that combines GCN and LPA. In our unified model,", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 322, + 470, + 334 + ], + "spans": [ + { + "bbox": [ + 141, + 322, + 470, + 334 + ], + "score": 1.0, + "content": "edge weights are learnable, and the LPA serves as regularization to assist the GCN", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 333, + 470, + 346 + ], + "spans": [ + { + "bbox": [ + 141, + 333, + 470, + 346 + ], + "score": 1.0, + "content": "in learning proper edge weights that lead to improved classification performance.", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 343, + 470, + 356 + ], + "spans": [ + { + "bbox": [ + 141, + 343, + 470, + 356 + ], + "score": 1.0, + "content": "Our model can also be seen as learning the weights for edges based on node", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 354, + 470, + 367 + ], + "spans": [ + { + "bbox": [ + 141, + 354, + 470, + 367 + ], + "score": 1.0, + "content": "labels, which is more task-oriented than existing feature-based attention models", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 142, + 366, + 469, + 378 + ], + "spans": [ + { + "bbox": [ + 142, + 366, + 469, + 378 + ], + "score": 1.0, + "content": "and topology-based diffusion models. In a number of experiments on real-world", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 377, + 469, + 390 + ], + "spans": [ + { + "bbox": [ + 141, + 377, + 469, + 390 + ], + "score": 1.0, + "content": "graphs, our model shows superiority over state-of-the-art graph neural networks", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 141, + 387, + 304, + 401 + ], + "spans": [ + { + "bbox": [ + 141, + 387, + 304, + 401 + ], + "score": 1.0, + "content": "in terms of node classification accuracy.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 13 + }, + { + "type": "title", + "bbox": [ + 108, + 422, + 206, + 435 + ], + "lines": [ + { + "bbox": [ + 105, + 421, + 208, + 438 + ], + "spans": [ + { + "bbox": [ + 105, + 421, + 208, + 438 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 107, + 448, + 505, + 602 + ], + "lines": [ + { + "bbox": [ + 105, + 447, + 505, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 447, + 484, + 461 + ], + "score": 1.0, + "content": "Consider the problem of node classification in a graph, where the goal is to learn a mapping", + "type": "text" + }, + { + "bbox": [ + 484, + 448, + 505, + 459 + ], + "score": 0.4, + "content": "\\mathcal { M } :", + "type": "inline_equation" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 458, + 506, + 471 + ], + "spans": [ + { + "bbox": [ + 106, + 459, + 140, + 470 + ], + "score": 0.9, + "content": "\\nu \\mathcal { L }", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 458, + 201, + 471 + ], + "score": 1.0, + "content": "from node set", + "type": "text" + }, + { + "bbox": [ + 202, + 460, + 210, + 469 + ], + "score": 0.74, + "content": "\\nu", + "type": "inline_equation" + }, + { + "bbox": [ + 211, + 458, + 260, + 471 + ], + "score": 1.0, + "content": "to label set", + "type": "text" + }, + { + "bbox": [ + 261, + 460, + 268, + 469 + ], + "score": 0.68, + "content": "\\mathcal { L }", + "type": "inline_equation" + }, + { + "bbox": [ + 269, + 458, + 506, + 471 + ], + "score": 1.0, + "content": ". Solution to this problem is widely applicable to various", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 470, + 506, + 483 + ], + "spans": [ + { + "bbox": [ + 105, + 470, + 506, + 483 + ], + "score": 1.0, + "content": "scenarios, e.g., inferring income of users in a social network or classifying scientific articles in a", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 481, + 505, + 493 + ], + "spans": [ + { + "bbox": [ + 105, + 481, + 505, + 493 + ], + "score": 1.0, + "content": "citation network. Different from a generic machine learning problem where samples are independent", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 491, + 505, + 505 + ], + "spans": [ + { + "bbox": [ + 105, + 491, + 505, + 505 + ], + "score": 1.0, + "content": "from each other, nodes are connected by edges in the graph, which provide additional information", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 502, + 505, + 515 + ], + "spans": [ + { + "bbox": [ + 105, + 502, + 505, + 515 + ], + "score": 1.0, + "content": "and require more delicate modeling. To capture the graph information, researchers have mainly", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 513, + 505, + 527 + ], + "spans": [ + { + "bbox": [ + 105, + 513, + 505, + 527 + ], + "score": 1.0, + "content": "designed models on the assumption that labels/features are correlated over the edges of the graph.", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 524, + 505, + 537 + ], + "spans": [ + { + "bbox": [ + 105, + 524, + 234, + 537 + ], + "score": 1.0, + "content": "In particular, on the label side", + "type": "text" + }, + { + "bbox": [ + 235, + 525, + 243, + 535 + ], + "score": 0.7, + "content": "\\mathcal { L }", + "type": "inline_equation" + }, + { + "bbox": [ + 243, + 524, + 505, + 537 + ], + "score": 1.0, + "content": ", node labels are propagated and aggregated along edges in the", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 536, + 505, + 547 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 505, + 547 + ], + "score": 1.0, + "content": "graph, which is known as Label Propagation Algorithm (LPA) (Zhu et al., 2005; Zhou et al., 2004;", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 546, + 505, + 559 + ], + "spans": [ + { + "bbox": [ + 105, + 546, + 505, + 559 + ], + "score": 1.0, + "content": "Zhang & Lee, 2007; Wang & Zhang, 2008; Karasuyama & Mamitsuka, 2013; Gong et al., 2017;", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 556, + 505, + 570 + ], + "spans": [ + { + "bbox": [ + 105, + 556, + 254, + 570 + ], + "score": 1.0, + "content": "Liu et al., 2019a); On the node side", + "type": "text" + }, + { + "bbox": [ + 254, + 558, + 262, + 568 + ], + "score": 0.59, + "content": "\\nu", + "type": "inline_equation" + }, + { + "bbox": [ + 263, + 556, + 505, + 570 + ], + "score": 1.0, + "content": ", node features are propagated along edges and transformed", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 568, + 504, + 580 + ], + "spans": [ + { + "bbox": [ + 105, + 568, + 504, + 580 + ], + "score": 1.0, + "content": "through neural network layers, which is known as Graph Convolutional Neural Networks (GCN)1", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 579, + 504, + 591 + ], + "spans": [ + { + "bbox": [ + 106, + 579, + 504, + 591 + ], + "score": 1.0, + "content": "(Kipf & Welling, 2017; Hamilton et al., 2017; Li et al., 2018; Xu et al., 2018; Liao et al., 2019; Xu", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 589, + 228, + 603 + ], + "spans": [ + { + "bbox": [ + 105, + 589, + 228, + 603 + ], + "score": 1.0, + "content": "et al., 2019b; Qu et al., 2019).", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 29.5 + }, + { + "type": "text", + "bbox": [ + 107, + 608, + 504, + 663 + ], + "lines": [ + { + "bbox": [ + 105, + 606, + 506, + 621 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 506, + 621 + ], + "score": 1.0, + "content": "GCN and LPA are related in that they propagate features and labels on the two sides of the mapping", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 107, + 618, + 506, + 631 + ], + "spans": [ + { + "bbox": [ + 107, + 619, + 119, + 629 + ], + "score": 0.71, + "content": "\\mathcal { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 120, + 618, + 506, + 631 + ], + "score": 1.0, + "content": ", respectively. Prior work Li et al. (2019) has shown the relationship between GCN and LPA in", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 630, + 505, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 630, + 505, + 641 + ], + "score": 1.0, + "content": "terms of low-pass graph filtering. However, it is unclear how the discovered relationship benefits", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 640, + 505, + 652 + ], + "spans": [ + { + "bbox": [ + 106, + 640, + 505, + 652 + ], + "score": 1.0, + "content": "node classification. Specifically, can GCN and LPA be combined to develop a more accurate model", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 651, + 241, + 664 + ], + "spans": [ + { + "bbox": [ + 105, + 651, + 241, + 664 + ], + "score": 1.0, + "content": "for node classification in graphs?", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 108, + 668, + 504, + 690 + ], + "lines": [ + { + "bbox": [ + 106, + 668, + 504, + 680 + ], + "spans": [ + { + "bbox": [ + 106, + 668, + 504, + 680 + ], + "score": 1.0, + "content": "Here we study the theoretical relationship between GCN and LPA from the viewpoint of fea-", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 679, + 505, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 679, + 449, + 691 + ], + "score": 1.0, + "content": "ture/label influence, where we quantify how much the initial feature/label of node", + "type": "text" + }, + { + "bbox": [ + 450, + 681, + 460, + 690 + ], + "score": 0.84, + "content": "v _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 679, + 505, + 691 + ], + "score": 1.0, + "content": "influences", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42.5 + } + ], + "page_idx": 0, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 701, + 504, + 731 + ], + "lines": [ + { + "bbox": [ + 118, + 699, + 505, + 714 + ], + "spans": [ + { + "bbox": [ + 118, + 699, + 505, + 714 + ], + "score": 1.0, + "content": "1There are methods in statistical relational learning Rossi et al. (2012) also using feature propaga-", + "type": "text" + } + ] + }, + { + "bbox": [ + 106, + 711, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 711, + 505, + 722 + ], + "score": 1.0, + "content": "tion/diffusion techniques. In this work, we focus on GCN, but the analysis and the proposed model can be", + "type": "text" + } + ] + }, + { + "bbox": [ + 105, + 721, + 300, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 300, + 732 + ], + "score": 1.0, + "content": "easily generalized to other feature diffusion methods.", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 27, + 307, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "score": 1.0, + "content": "1", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 78, + 503, + 116 + ], + "lines": [ + { + "bbox": [ + 106, + 78, + 504, + 97 + ], + "spans": [ + { + "bbox": [ + 106, + 78, + 504, + 97 + ], + "score": 1.0, + "content": "UNIFYING GRAPH CONVOLUTIONAL NEURAL NET-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 100, + 363, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 100, + 363, + 117 + ], + "score": 1.0, + "content": "WORKS AND LABEL PROPAGATION", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 112, + 136, + 244, + 157 + ], + "lines": [ + { + "bbox": [ + 113, + 136, + 201, + 147 + ], + "spans": [ + { + "bbox": [ + 113, + 136, + 201, + 147 + ], + "score": 1.0, + "content": "Anonymous authors", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 112, + 146, + 245, + 159 + ], + "spans": [ + { + "bbox": [ + 112, + 146, + 245, + 159 + ], + "score": 1.0, + "content": "Paper under double-blind review", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5, + "bbox_fs": [ + 112, + 136, + 245, + 159 + ] + }, + { + "type": "title", + "bbox": [ + 278, + 187, + 333, + 199 + ], + "lines": [ + { + "bbox": [ + 276, + 186, + 335, + 200 + ], + "spans": [ + { + "bbox": [ + 276, + 186, + 335, + 200 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 143, + 212, + 468, + 398 + ], + "lines": [ + { + "bbox": [ + 141, + 212, + 470, + 225 + ], + "spans": [ + { + "bbox": [ + 141, + 212, + 470, + 225 + ], + "score": 1.0, + "content": "Label Propagation (LPA) and Graph Convolutional Neural Networks (GCN) are", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 141, + 223, + 470, + 236 + ], + "spans": [ + { + "bbox": [ + 141, + 223, + 470, + 236 + ], + "score": 1.0, + "content": "both message passing algorithms on graphs. Both solve the task of node classifi-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 142, + 235, + 469, + 246 + ], + "spans": [ + { + "bbox": [ + 142, + 235, + 469, + 246 + ], + "score": 1.0, + "content": "cation but LPA propagates node label information across the edges of the graph,", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 141, + 245, + 470, + 258 + ], + "spans": [ + { + "bbox": [ + 141, + 245, + 470, + 258 + ], + "score": 1.0, + "content": "while GCN propagates and transforms node feature information. However, while", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 256, + 470, + 268 + ], + "spans": [ + { + "bbox": [ + 141, + 256, + 470, + 268 + ], + "score": 1.0, + "content": "conceptually similar, it is unclear how LPA and GCN can be combined under a", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 267, + 469, + 280 + ], + "spans": [ + { + "bbox": [ + 141, + 267, + 469, + 280 + ], + "score": 1.0, + "content": "unified framework to improve node classification. Here we study the relationship", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 278, + 469, + 290 + ], + "spans": [ + { + "bbox": [ + 141, + 278, + 469, + 290 + ], + "score": 1.0, + "content": "between LPA and GCN in terms of feature/label influence, in which we char-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 289, + 469, + 301 + ], + "spans": [ + { + "bbox": [ + 141, + 289, + 469, + 301 + ], + "score": 1.0, + "content": "acterize how much the initial feature/label of one node influences the final fea-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 300, + 470, + 312 + ], + "spans": [ + { + "bbox": [ + 141, + 300, + 470, + 312 + ], + "score": 1.0, + "content": "ture/label of another node in GCN/LPA. Based on our theoretical analysis, we", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 140, + 311, + 470, + 323 + ], + "spans": [ + { + "bbox": [ + 140, + 311, + 470, + 323 + ], + "score": 1.0, + "content": "propose an end-to-end model that combines GCN and LPA. In our unified model,", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 322, + 470, + 334 + ], + "spans": [ + { + "bbox": [ + 141, + 322, + 470, + 334 + ], + "score": 1.0, + "content": "edge weights are learnable, and the LPA serves as regularization to assist the GCN", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 333, + 470, + 346 + ], + "spans": [ + { + "bbox": [ + 141, + 333, + 470, + 346 + ], + "score": 1.0, + "content": "in learning proper edge weights that lead to improved classification performance.", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 343, + 470, + 356 + ], + "spans": [ + { + "bbox": [ + 141, + 343, + 470, + 356 + ], + "score": 1.0, + "content": "Our model can also be seen as learning the weights for edges based on node", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 354, + 470, + 367 + ], + "spans": [ + { + "bbox": [ + 141, + 354, + 470, + 367 + ], + "score": 1.0, + "content": "labels, which is more task-oriented than existing feature-based attention models", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 142, + 366, + 469, + 378 + ], + "spans": [ + { + "bbox": [ + 142, + 366, + 469, + 378 + ], + "score": 1.0, + "content": "and topology-based diffusion models. In a number of experiments on real-world", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 377, + 469, + 390 + ], + "spans": [ + { + "bbox": [ + 141, + 377, + 469, + 390 + ], + "score": 1.0, + "content": "graphs, our model shows superiority over state-of-the-art graph neural networks", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 141, + 387, + 304, + 401 + ], + "spans": [ + { + "bbox": [ + 141, + 387, + 304, + 401 + ], + "score": 1.0, + "content": "in terms of node classification accuracy.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 13, + "bbox_fs": [ + 140, + 212, + 470, + 401 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 422, + 206, + 435 + ], + "lines": [ + { + "bbox": [ + 105, + 421, + 208, + 438 + ], + "spans": [ + { + "bbox": [ + 105, + 421, + 208, + 438 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 107, + 448, + 505, + 602 + ], + "lines": [ + { + "bbox": [ + 105, + 447, + 505, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 447, + 484, + 461 + ], + "score": 1.0, + "content": "Consider the problem of node classification in a graph, where the goal is to learn a mapping", + "type": "text" + }, + { + "bbox": [ + 484, + 448, + 505, + 459 + ], + "score": 0.4, + "content": "\\mathcal { M } :", + "type": "inline_equation" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 458, + 506, + 471 + ], + "spans": [ + { + "bbox": [ + 106, + 459, + 140, + 470 + ], + "score": 0.9, + "content": "\\nu \\mathcal { L }", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 458, + 201, + 471 + ], + "score": 1.0, + "content": "from node set", + "type": "text" + }, + { + "bbox": [ + 202, + 460, + 210, + 469 + ], + "score": 0.74, + "content": "\\nu", + "type": "inline_equation" + }, + { + "bbox": [ + 211, + 458, + 260, + 471 + ], + "score": 1.0, + "content": "to label set", + "type": "text" + }, + { + "bbox": [ + 261, + 460, + 268, + 469 + ], + "score": 0.68, + "content": "\\mathcal { L }", + "type": "inline_equation" + }, + { + "bbox": [ + 269, + 458, + 506, + 471 + ], + "score": 1.0, + "content": ". Solution to this problem is widely applicable to various", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 470, + 506, + 483 + ], + "spans": [ + { + "bbox": [ + 105, + 470, + 506, + 483 + ], + "score": 1.0, + "content": "scenarios, e.g., inferring income of users in a social network or classifying scientific articles in a", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 481, + 505, + 493 + ], + "spans": [ + { + "bbox": [ + 105, + 481, + 505, + 493 + ], + "score": 1.0, + "content": "citation network. Different from a generic machine learning problem where samples are independent", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 491, + 505, + 505 + ], + "spans": [ + { + "bbox": [ + 105, + 491, + 505, + 505 + ], + "score": 1.0, + "content": "from each other, nodes are connected by edges in the graph, which provide additional information", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 502, + 505, + 515 + ], + "spans": [ + { + "bbox": [ + 105, + 502, + 505, + 515 + ], + "score": 1.0, + "content": "and require more delicate modeling. To capture the graph information, researchers have mainly", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 513, + 505, + 527 + ], + "spans": [ + { + "bbox": [ + 105, + 513, + 505, + 527 + ], + "score": 1.0, + "content": "designed models on the assumption that labels/features are correlated over the edges of the graph.", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 524, + 505, + 537 + ], + "spans": [ + { + "bbox": [ + 105, + 524, + 234, + 537 + ], + "score": 1.0, + "content": "In particular, on the label side", + "type": "text" + }, + { + "bbox": [ + 235, + 525, + 243, + 535 + ], + "score": 0.7, + "content": "\\mathcal { L }", + "type": "inline_equation" + }, + { + "bbox": [ + 243, + 524, + 505, + 537 + ], + "score": 1.0, + "content": ", node labels are propagated and aggregated along edges in the", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 536, + 505, + 547 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 505, + 547 + ], + "score": 1.0, + "content": "graph, which is known as Label Propagation Algorithm (LPA) (Zhu et al., 2005; Zhou et al., 2004;", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 546, + 505, + 559 + ], + "spans": [ + { + "bbox": [ + 105, + 546, + 505, + 559 + ], + "score": 1.0, + "content": "Zhang & Lee, 2007; Wang & Zhang, 2008; Karasuyama & Mamitsuka, 2013; Gong et al., 2017;", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 556, + 505, + 570 + ], + "spans": [ + { + "bbox": [ + 105, + 556, + 254, + 570 + ], + "score": 1.0, + "content": "Liu et al., 2019a); On the node side", + "type": "text" + }, + { + "bbox": [ + 254, + 558, + 262, + 568 + ], + "score": 0.59, + "content": "\\nu", + "type": "inline_equation" + }, + { + "bbox": [ + 263, + 556, + 505, + 570 + ], + "score": 1.0, + "content": ", node features are propagated along edges and transformed", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 568, + 504, + 580 + ], + "spans": [ + { + "bbox": [ + 105, + 568, + 504, + 580 + ], + "score": 1.0, + "content": "through neural network layers, which is known as Graph Convolutional Neural Networks (GCN)1", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 579, + 504, + 591 + ], + "spans": [ + { + "bbox": [ + 106, + 579, + 504, + 591 + ], + "score": 1.0, + "content": "(Kipf & Welling, 2017; Hamilton et al., 2017; Li et al., 2018; Xu et al., 2018; Liao et al., 2019; Xu", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 589, + 228, + 603 + ], + "spans": [ + { + "bbox": [ + 105, + 589, + 228, + 603 + ], + "score": 1.0, + "content": "et al., 2019b; Qu et al., 2019).", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 29.5, + "bbox_fs": [ + 105, + 447, + 506, + 603 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 608, + 504, + 663 + ], + "lines": [ + { + "bbox": [ + 105, + 606, + 506, + 621 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 506, + 621 + ], + "score": 1.0, + "content": "GCN and LPA are related in that they propagate features and labels on the two sides of the mapping", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 107, + 618, + 506, + 631 + ], + "spans": [ + { + "bbox": [ + 107, + 619, + 119, + 629 + ], + "score": 0.71, + "content": "\\mathcal { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 120, + 618, + 506, + 631 + ], + "score": 1.0, + "content": ", respectively. Prior work Li et al. (2019) has shown the relationship between GCN and LPA in", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 630, + 505, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 630, + 505, + 641 + ], + "score": 1.0, + "content": "terms of low-pass graph filtering. However, it is unclear how the discovered relationship benefits", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 640, + 505, + 652 + ], + "spans": [ + { + "bbox": [ + 106, + 640, + 505, + 652 + ], + "score": 1.0, + "content": "node classification. Specifically, can GCN and LPA be combined to develop a more accurate model", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 651, + 241, + 664 + ], + "spans": [ + { + "bbox": [ + 105, + 651, + 241, + 664 + ], + "score": 1.0, + "content": "for node classification in graphs?", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 39, + "bbox_fs": [ + 105, + 606, + 506, + 664 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 668, + 504, + 690 + ], + "lines": [ + { + "bbox": [ + 106, + 668, + 504, + 680 + ], + "spans": [ + { + "bbox": [ + 106, + 668, + 504, + 680 + ], + "score": 1.0, + "content": "Here we study the theoretical relationship between GCN and LPA from the viewpoint of fea-", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 679, + 505, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 679, + 449, + 691 + ], + "score": 1.0, + "content": "ture/label influence, where we quantify how much the initial feature/label of node", + "type": "text" + }, + { + "bbox": [ + 450, + 681, + 460, + 690 + ], + "score": 0.84, + "content": "v _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 679, + 505, + 691 + ], + "score": 1.0, + "content": "influences", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 235, + 95 + ], + "score": 1.0, + "content": "the output feature/label of node", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 235, + 84, + 246, + 93 + ], + "score": 0.86, + "content": "v _ { a }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 246, + 82, + 473, + 95 + ], + "score": 1.0, + "content": "in GCN/LPA by studying the Jacobian/gradient of node", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 473, + 84, + 483, + 93 + ], + "score": 0.83, + "content": "v _ { b }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 484, + 82, + 506, + 95 + ], + "score": 1.0, + "content": "with", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 94, + 505, + 105 + ], + "spans": [ + { + "bbox": [ + 105, + 94, + 169, + 105 + ], + "score": 1.0, + "content": "respect to node", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 170, + 95, + 181, + 105 + ], + "score": 0.85, + "content": "v _ { a }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 181, + 94, + 505, + 105 + ], + "score": 1.0, + "content": ". We also prove the quantitative relationship between feature influence and label", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 253, + 117 + ], + "score": 1.0, + "content": "influence, i.e., the label influence of", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 253, + 106, + 263, + 115 + ], + "score": 0.86, + "content": "v _ { b }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 263, + 104, + 276, + 117 + ], + "score": 1.0, + "content": "on", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 277, + 106, + 288, + 115 + ], + "score": 0.86, + "content": "v _ { a }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 288, + 104, + 506, + 117 + ], + "score": 1.0, + "content": "equals the cumulative discounted feature influence of", + "type": "text", + "cross_page": true + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 116, + 256, + 127 + ], + "spans": [ + { + "bbox": [ + 106, + 117, + 117, + 127 + ], + "score": 0.82, + "content": "v _ { b }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 117, + 116, + 130, + 127 + ], + "score": 1.0, + "content": "on", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 130, + 117, + 141, + 127 + ], + "score": 0.85, + "content": "v _ { a }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 141, + 116, + 256, + 127 + ], + "score": 1.0, + "content": "in expectation (Theorem 1).", + "type": "text", + "cross_page": true + } + ], + "index": 3 + } + ], + "index": 42.5, + "bbox_fs": [ + 105, + 668, + 505, + 691 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 504, + 126 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 235, + 95 + ], + "score": 1.0, + "content": "the output feature/label of node", + "type": "text" + }, + { + "bbox": [ + 235, + 84, + 246, + 93 + ], + "score": 0.86, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 82, + 473, + 95 + ], + "score": 1.0, + "content": "in GCN/LPA by studying the Jacobian/gradient of node", + "type": "text" + }, + { + "bbox": [ + 473, + 84, + 483, + 93 + ], + "score": 0.83, + "content": "v _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 82, + 506, + 95 + ], + "score": 1.0, + "content": "with", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 94, + 505, + 105 + ], + "spans": [ + { + "bbox": [ + 105, + 94, + 169, + 105 + ], + "score": 1.0, + "content": "respect to node", + "type": "text" + }, + { + "bbox": [ + 170, + 95, + 181, + 105 + ], + "score": 0.85, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 94, + 505, + 105 + ], + "score": 1.0, + "content": ". We also prove the quantitative relationship between feature influence and label", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 253, + 117 + ], + "score": 1.0, + "content": "influence, i.e., the label influence of", + "type": "text" + }, + { + "bbox": [ + 253, + 106, + 263, + 115 + ], + "score": 0.86, + "content": "v _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 263, + 104, + 276, + 117 + ], + "score": 1.0, + "content": "on", + "type": "text" + }, + { + "bbox": [ + 277, + 106, + 288, + 115 + ], + "score": 0.86, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 104, + 506, + 117 + ], + "score": 1.0, + "content": "equals the cumulative discounted feature influence of", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 116, + 256, + 127 + ], + "spans": [ + { + "bbox": [ + 106, + 117, + 117, + 127 + ], + "score": 0.82, + "content": "v _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 117, + 116, + 130, + 127 + ], + "score": 1.0, + "content": "on", + "type": "text" + }, + { + "bbox": [ + 130, + 117, + 141, + 127 + ], + "score": 0.85, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 116, + 256, + 127 + ], + "score": 1.0, + "content": "in expectation (Theorem 1).", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5 + }, + { + "type": "text", + "bbox": [ + 107, + 132, + 505, + 297 + ], + "lines": [ + { + "bbox": [ + 105, + 131, + 505, + 145 + ], + "spans": [ + { + "bbox": [ + 105, + 131, + 505, + 145 + ], + "score": 1.0, + "content": "Based on the theoretical analysis, we propose a unified model GCN-LPA for node classification.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 143, + 505, + 155 + ], + "spans": [ + { + "bbox": [ + 105, + 143, + 505, + 155 + ], + "score": 1.0, + "content": "We show that the key to improving the performance of GCN is to enable nodes of the same class", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 154, + 505, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 505, + 167 + ], + "score": 1.0, + "content": "to connect more strongly with each other by making edge weights/strengths trainable. Then we", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 165, + 506, + 177 + ], + "spans": [ + { + "bbox": [ + 105, + 165, + 506, + 177 + ], + "score": 1.0, + "content": "prove that increasing the strength of edges between the nodes of the same class is equivalent to", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 176, + 505, + 188 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 505, + 188 + ], + "score": 1.0, + "content": "increasing the accuracy of LPA’s predictions (Theorem 2). Therefore, we can first learn the optimal", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 188, + 505, + 199 + ], + "spans": [ + { + "bbox": [ + 106, + 188, + 505, + 199 + ], + "score": 1.0, + "content": "edge weights by minimizing the loss of predictions in LPA, then plug the optimal edge weights into a", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 198, + 505, + 210 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 505, + 210 + ], + "score": 1.0, + "content": "GCN to learn node representations. In GCN-LPA, we further combine the above two steps together", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 208, + 505, + 221 + ], + "spans": [ + { + "bbox": [ + 105, + 208, + 505, + 221 + ], + "score": 1.0, + "content": "and train the whole model in an end-to-end fashion, where the LPA part serves as regularization", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 219, + 505, + 232 + ], + "spans": [ + { + "bbox": [ + 105, + 219, + 505, + 232 + ], + "score": 1.0, + "content": "to assist the GCN part in learning proper edge weights that benefit the separation of different node", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 230, + 505, + 243 + ], + "spans": [ + { + "bbox": [ + 105, + 230, + 505, + 243 + ], + "score": 1.0, + "content": "classes. It is worth noticing that GCN-LPA can also be seen as learning the weights for edges based", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 242, + 506, + 254 + ], + "spans": [ + { + "bbox": [ + 105, + 242, + 506, + 254 + ], + "score": 1.0, + "content": "on node label information, which requires less handcrafting and is more task-oriented than existing", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 253, + 505, + 264 + ], + "spans": [ + { + "bbox": [ + 105, + 253, + 505, + 264 + ], + "score": 1.0, + "content": "attention models that learn edge weights based on node feature similarity (Velickoviˇ c et al.´ , 2018;", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 264, + 504, + 275 + ], + "spans": [ + { + "bbox": [ + 106, + 264, + 504, + 275 + ], + "score": 1.0, + "content": "Thekumparampil et al., 2018; Zhang et al., 2018; Liu et al., 2019b) or diffusion models that learn", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 275, + 506, + 287 + ], + "spans": [ + { + "bbox": [ + 106, + 275, + 506, + 287 + ], + "score": 1.0, + "content": "adjacency matrix based on graph topology (Klicpera et al., 2019a; Xu et al., 2019a; Abu-El-Haija", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 285, + 250, + 298 + ], + "spans": [ + { + "bbox": [ + 105, + 285, + 250, + 298 + ], + "score": 1.0, + "content": "et al., 2019; Klicpera et al., 2019b).", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 108, + 303, + 505, + 347 + ], + "lines": [ + { + "bbox": [ + 106, + 302, + 505, + 315 + ], + "spans": [ + { + "bbox": [ + 106, + 302, + 505, + 315 + ], + "score": 1.0, + "content": "We conduct extensive experiments on five datasets, and the results indicate that our model outper-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 314, + 505, + 325 + ], + "spans": [ + { + "bbox": [ + 106, + 314, + 505, + 325 + ], + "score": 1.0, + "content": "forms state-of-the-art graph neural networks in terms of classification accuracy. The experimental", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 324, + 505, + 338 + ], + "spans": [ + { + "bbox": [ + 105, + 324, + 505, + 338 + ], + "score": 1.0, + "content": "results also show that combining GCN and LPA together is able to learn more informative edge", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 336, + 295, + 349 + ], + "spans": [ + { + "bbox": [ + 106, + 336, + 295, + 349 + ], + "score": 1.0, + "content": "weights thereby leading to better performance.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 20.5 + }, + { + "type": "title", + "bbox": [ + 108, + 364, + 209, + 377 + ], + "lines": [ + { + "bbox": [ + 104, + 362, + 211, + 380 + ], + "spans": [ + { + "bbox": [ + 104, + 362, + 211, + 380 + ], + "score": 1.0, + "content": "2 OUR APPROACH", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 107, + 390, + 505, + 434 + ], + "lines": [ + { + "bbox": [ + 105, + 390, + 505, + 402 + ], + "spans": [ + { + "bbox": [ + 105, + 390, + 505, + 402 + ], + "score": 1.0, + "content": "In this section, we first formulate the node classification problem and briefly introduce LPA and", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 401, + 505, + 414 + ], + "spans": [ + { + "bbox": [ + 105, + 401, + 505, + 414 + ], + "score": 1.0, + "content": "GCN. We then prove their relationship from the viewpoints of feature influence and label influence.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 411, + 505, + 425 + ], + "spans": [ + { + "bbox": [ + 105, + 411, + 505, + 425 + ], + "score": 1.0, + "content": "Based on the theoretical finding, we propose a unified model GCN-LPA, and analyze why our model", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 424, + 269, + 435 + ], + "spans": [ + { + "bbox": [ + 105, + 424, + 269, + 435 + ], + "score": 1.0, + "content": "is theoretically superior to vanilla GCN.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 25.5 + }, + { + "type": "title", + "bbox": [ + 107, + 450, + 332, + 461 + ], + "lines": [ + { + "bbox": [ + 105, + 450, + 333, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 450, + 333, + 462 + ], + "score": 1.0, + "content": "2.1 PROBLEM FORMULATION AND PRELIMINARIES", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 107, + 469, + 505, + 537 + ], + "lines": [ + { + "bbox": [ + 105, + 469, + 506, + 483 + ], + "spans": [ + { + "bbox": [ + 105, + 469, + 177, + 483 + ], + "score": 1.0, + "content": "Consider a graph", + "type": "text" + }, + { + "bbox": [ + 178, + 470, + 250, + 483 + ], + "score": 0.92, + "content": "\\mathcal { G } = ( \\nu , A , X , Y )", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 469, + 281, + 483 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 281, + 470, + 357, + 482 + ], + "score": 0.92, + "content": "\\mathcal { V } = \\{ v _ { 1 } , \\cdots , v _ { n } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 357, + 469, + 435, + 483 + ], + "score": 1.0, + "content": "is the set of nodes,", + "type": "text" + }, + { + "bbox": [ + 435, + 470, + 480, + 481 + ], + "score": 0.92, + "content": "A \\in \\mathbb { R } ^ { n \\times n }", + "type": "inline_equation" + }, + { + "bbox": [ + 480, + 469, + 506, + 483 + ], + "score": 1.0, + "content": "is the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 482, + 506, + 495 + ], + "spans": [ + { + "bbox": [ + 105, + 482, + 180, + 495 + ], + "score": 1.0, + "content": "adjacency matrix,", + "type": "text" + }, + { + "bbox": [ + 180, + 482, + 190, + 492 + ], + "score": 0.81, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 482, + 329, + 495 + ], + "score": 1.0, + "content": "is the feature matrix of nodes and", + "type": "text" + }, + { + "bbox": [ + 329, + 482, + 339, + 492 + ], + "score": 0.78, + "content": "Y", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 482, + 415, + 495 + ], + "score": 1.0, + "content": "is labels of nodes.", + "type": "text" + }, + { + "bbox": [ + 416, + 483, + 429, + 494 + ], + "score": 0.87, + "content": "a _ { i j }", + "type": "inline_equation" + }, + { + "bbox": [ + 430, + 482, + 449, + 495 + ], + "score": 1.0, + "content": "(the", + "type": "text" + }, + { + "bbox": [ + 449, + 482, + 458, + 493 + ], + "score": 0.86, + "content": "i j", + "type": "inline_equation" + }, + { + "bbox": [ + 459, + 482, + 506, + 495 + ], + "score": 1.0, + "content": "-th entry of", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 107, + 492, + 506, + 505 + ], + "spans": [ + { + "bbox": [ + 107, + 493, + 115, + 503 + ], + "score": 0.63, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 116, + 492, + 268, + 505 + ], + "score": 1.0, + "content": ") is the weight of the edge connecting", + "type": "text" + }, + { + "bbox": [ + 268, + 494, + 277, + 504 + ], + "score": 0.85, + "content": "v _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 278, + 492, + 295, + 505 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 296, + 493, + 306, + 505 + ], + "score": 0.82, + "content": "v _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 307, + 492, + 311, + 505 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 311, + 492, + 335, + 505 + ], + "score": 0.89, + "content": "\\mathcal { N } ( v )", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 492, + 506, + 505 + ], + "score": 1.0, + "content": "denotes the set of first-order neighbors of", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 503, + 505, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 503, + 128, + 516 + ], + "score": 1.0, + "content": "node", + "type": "text" + }, + { + "bbox": [ + 128, + 506, + 135, + 514 + ], + "score": 0.75, + "content": "v", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 503, + 172, + 516 + ], + "score": 1.0, + "content": "in graph", + "type": "text" + }, + { + "bbox": [ + 172, + 504, + 180, + 514 + ], + "score": 0.78, + "content": "\\mathcal { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 180, + 503, + 229, + 516 + ], + "score": 1.0, + "content": ". Each node", + "type": "text" + }, + { + "bbox": [ + 230, + 505, + 239, + 515 + ], + "score": 0.85, + "content": "v _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 503, + 321, + 516 + ], + "score": 1.0, + "content": "has a feature vector", + "type": "text" + }, + { + "bbox": [ + 321, + 506, + 332, + 515 + ], + "score": 0.86, + "content": "\\mathbf { x } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 332, + 503, + 384, + 516 + ], + "score": 1.0, + "content": "which is the", + "type": "text" + }, + { + "bbox": [ + 385, + 505, + 389, + 514 + ], + "score": 0.78, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 503, + 431, + 516 + ], + "score": 1.0, + "content": "-th row of", + "type": "text" + }, + { + "bbox": [ + 431, + 504, + 441, + 514 + ], + "score": 0.83, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 503, + 505, + 516 + ], + "score": 1.0, + "content": ", while only the", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 514, + 505, + 527 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 124, + 527 + ], + "score": 1.0, + "content": "first", + "type": "text" + }, + { + "bbox": [ + 124, + 516, + 135, + 524 + ], + "score": 0.75, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 514, + 163, + 527 + ], + "score": 1.0, + "content": "nodes", + "type": "text" + }, + { + "bbox": [ + 163, + 515, + 198, + 525 + ], + "score": 0.83, + "content": "( m \\ll n )", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 514, + 246, + 527 + ], + "score": 1.0, + "content": "have labels", + "type": "text" + }, + { + "bbox": [ + 246, + 516, + 293, + 526 + ], + "score": 0.91, + "content": "y _ { 1 } , \\cdots , y _ { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 514, + 357, + 527 + ], + "score": 1.0, + "content": "from a label set", + "type": "text" + }, + { + "bbox": [ + 358, + 515, + 422, + 527 + ], + "score": 0.94, + "content": "\\mathcal { L } = \\{ 1 , \\cdots , c \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 423, + 514, + 505, + 527 + ], + "score": 1.0, + "content": ". The goal is to learn", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 525, + 356, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 525, + 151, + 538 + ], + "score": 1.0, + "content": "a mapping", + "type": "text" + }, + { + "bbox": [ + 151, + 526, + 202, + 536 + ], + "score": 0.89, + "content": "\\mathcal { M } : \\mathcal { V } \\to \\mathcal { L }", + "type": "inline_equation" + }, + { + "bbox": [ + 202, + 525, + 356, + 538 + ], + "score": 1.0, + "content": "and predict labels of unlabeled nodes.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 31.5 + }, + { + "type": "text", + "bbox": [ + 106, + 542, + 505, + 625 + ], + "lines": [ + { + "bbox": [ + 105, + 541, + 506, + 555 + ], + "spans": [ + { + "bbox": [ + 105, + 541, + 506, + 555 + ], + "score": 1.0, + "content": "Label Propagation Algorithm. LPA (Zhu et al., 2005) assumes that two connected nodes are", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 104, + 551, + 505, + 566 + ], + "spans": [ + { + "bbox": [ + 104, + 551, + 472, + 566 + ], + "score": 1.0, + "content": "likely to have the same label, and thus it propagates labels iteratively along the edges. Let", + "type": "text" + }, + { + "bbox": [ + 472, + 552, + 505, + 563 + ], + "score": 0.91, + "content": "Y ^ { ( k ) } =", + "type": "inline_equation" + } + ], + "index": 36 + }, + { + "bbox": [ + 107, + 563, + 504, + 581 + ], + "spans": [ + { + "bbox": [ + 107, + 564, + 213, + 579 + ], + "score": 0.92, + "content": "[ y _ { 1 } ^ { ( k ) } , \\cdot \\cdot \\cdot , y _ { n } ^ { ( k ) } ] ^ { \\top } \\in \\mathbb { R } ^ { n \\times c }", + "type": "inline_equation" + }, + { + "bbox": [ + 174, + 563, + 493, + 581 + ], + "score": 1.0, + "content": "∈ Rn×c be the soft label matrix in iteration k > 0, in which the i-th row y(ki", + "type": "text" + }, + { + "bbox": [ + 480, + 564, + 504, + 579 + ], + "score": 0.87, + "content": "y _ { i } ^ { ( k ) \\top }", + "type": "inline_equation" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 577, + 505, + 590 + ], + "spans": [ + { + "bbox": [ + 105, + 577, + 306, + 590 + ], + "score": 1.0, + "content": "denotes the predicted label distribution for node", + "type": "text" + }, + { + "bbox": [ + 306, + 579, + 316, + 589 + ], + "score": 0.84, + "content": "v _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 316, + 577, + 366, + 590 + ], + "score": 1.0, + "content": "in iteration", + "type": "text" + }, + { + "bbox": [ + 366, + 579, + 372, + 588 + ], + "score": 0.81, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 373, + 577, + 407, + 590 + ], + "score": 1.0, + "content": ". When", + "type": "text" + }, + { + "bbox": [ + 407, + 578, + 436, + 588 + ], + "score": 0.9, + "content": "k = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 436, + 577, + 505, + 590 + ], + "score": 1.0, + "content": ", the initial label", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 585, + 504, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 591, + 136, + 603 + ], + "score": 1.0, + "content": "matrix", + "type": "text" + }, + { + "bbox": [ + 136, + 589, + 238, + 604 + ], + "score": 0.92, + "content": "Y ^ { ( 0 ) } = [ y _ { 1 } ^ { ( 0 ) } , \\cdot \\cdot \\cdot , y _ { n } ^ { ( 0 ) } ] ^ { \\top }", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 585, + 412, + 609 + ], + "score": 1.0, + "content": "consists of one-hot label indicator vectors", + "type": "text" + }, + { + "bbox": [ + 413, + 589, + 430, + 604 + ], + "score": 0.91, + "content": "y _ { i } ^ { ( 0 ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 430, + 585, + 446, + 609 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 447, + 591, + 504, + 603 + ], + "score": 0.88, + "content": "i = 1 , \\cdots , m", + "type": "inline_equation" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 601, + 506, + 614 + ], + "spans": [ + { + "bbox": [ + 106, + 601, + 487, + 614 + ], + "score": 1.0, + "content": "(i.e., labeled nodes) or zero vectors otherwise (i.e., unlabeled nodes). Then LPA in iteration", + "type": "text" + }, + { + "bbox": [ + 487, + 603, + 494, + 612 + ], + "score": 0.81, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 601, + 506, + 614 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 613, + 261, + 626 + ], + "spans": [ + { + "bbox": [ + 106, + 613, + 261, + 626 + ], + "score": 1.0, + "content": "formulated as the following two steps:", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 38 + }, + { + "type": "interline_equation", + "bbox": [ + 255, + 631, + 356, + 664 + ], + "lines": [ + { + "bbox": [ + 255, + 631, + 356, + 664 + ], + "spans": [ + { + "bbox": [ + 255, + 631, + 356, + 664 + ], + "score": 0.89, + "content": "\\begin{array} { c } { { Y ^ { ( k + 1 ) } = \\tilde { A } Y ^ { ( k ) } , } } \\\\ { { y _ { i } ^ { ( k + 1 ) } = y _ { i } ^ { ( 0 ) } , \\forall i \\leq m . } } \\end{array}", + "type": "interline_equation", + "image_path": "37fff2412f258c71b93122cbec12d1f86699c9d90db7d9404adb81c931ce1cca.jpg" + } + ] + } + ], + "index": 42.5, + "virtual_lines": [ + { + "bbox": [ + 255, + 631, + 356, + 647.5 + ], + "spans": [], + "index": 42 + }, + { + "bbox": [ + 255, + 647.5, + 356, + 664.0 + ], + "spans": [], + "index": 43 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 670, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 670, + 506, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 670, + 202, + 684 + ], + "score": 1.0, + "content": "In the above equations,", + "type": "text" + }, + { + "bbox": [ + 202, + 670, + 211, + 681 + ], + "score": 0.87, + "content": "\\tilde { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 211, + 670, + 506, + 684 + ], + "score": 1.0, + "content": "is the normalized adjacency matrix, which can be the random walk tran-", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 104, + 682, + 506, + 697 + ], + "spans": [ + { + "bbox": [ + 104, + 682, + 160, + 697 + ], + "score": 1.0, + "content": "sition matrix", + "type": "text" + }, + { + "bbox": [ + 161, + 682, + 222, + 695 + ], + "score": 0.93, + "content": "\\tilde { A } _ { r w } = D ^ { - 1 } A", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 682, + 364, + 697 + ], + "score": 1.0, + "content": "or the symmetric transition matrix", + "type": "text" + }, + { + "bbox": [ + 364, + 682, + 452, + 696 + ], + "score": 0.93, + "content": "\\tilde { A } _ { s y m } = D ^ { - \\frac { 1 } { 2 } } A D ^ { - \\frac { 1 } { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 453, + 682, + 484, + 697 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 484, + 684, + 494, + 694 + ], + "score": 0.83, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 682, + 506, + 697 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 694, + 506, + 709 + ], + "spans": [ + { + "bbox": [ + 105, + 694, + 234, + 709 + ], + "score": 1.0, + "content": "the diagonal degree matrix for", + "type": "text" + }, + { + "bbox": [ + 234, + 696, + 243, + 705 + ], + "score": 0.81, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 243, + 694, + 296, + 709 + ], + "score": 1.0, + "content": "with entries", + "type": "text" + }, + { + "bbox": [ + 297, + 695, + 353, + 709 + ], + "score": 0.93, + "content": "\\begin{array} { r } { d _ { i i } = \\sum _ { j } a _ { i j } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 694, + 506, + 709 + ], + "score": 1.0, + "content": ". Without loss of generosity, we use", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 707, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 707, + 148, + 721 + ], + "score": 0.92, + "content": "\\tilde { A } = \\tilde { A } _ { r w }", + "type": "inline_equation" + }, + { + "bbox": [ + 148, + 707, + 506, + 723 + ], + "score": 1.0, + "content": "in this work. In Eq. (1), all nodes propagate labels to their neighbors according to nor-", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 720, + 506, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 506, + 732 + ], + "score": 1.0, + "content": "malized edge weights. Then in Eq. (2), labels of all labeled nodes are reset to their initial values,", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 46 + } + ], + "page_idx": 1, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 306, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 763 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 763 + ], + "score": 1.0, + "content": "2", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 504, + 126 + ], + "lines": [], + "index": 1.5, + "bbox_fs": [ + 105, + 82, + 506, + 127 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 132, + 505, + 297 + ], + "lines": [ + { + "bbox": [ + 105, + 131, + 505, + 145 + ], + "spans": [ + { + "bbox": [ + 105, + 131, + 505, + 145 + ], + "score": 1.0, + "content": "Based on the theoretical analysis, we propose a unified model GCN-LPA for node classification.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 143, + 505, + 155 + ], + "spans": [ + { + "bbox": [ + 105, + 143, + 505, + 155 + ], + "score": 1.0, + "content": "We show that the key to improving the performance of GCN is to enable nodes of the same class", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 154, + 505, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 505, + 167 + ], + "score": 1.0, + "content": "to connect more strongly with each other by making edge weights/strengths trainable. Then we", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 165, + 506, + 177 + ], + "spans": [ + { + "bbox": [ + 105, + 165, + 506, + 177 + ], + "score": 1.0, + "content": "prove that increasing the strength of edges between the nodes of the same class is equivalent to", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 176, + 505, + 188 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 505, + 188 + ], + "score": 1.0, + "content": "increasing the accuracy of LPA’s predictions (Theorem 2). Therefore, we can first learn the optimal", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 188, + 505, + 199 + ], + "spans": [ + { + "bbox": [ + 106, + 188, + 505, + 199 + ], + "score": 1.0, + "content": "edge weights by minimizing the loss of predictions in LPA, then plug the optimal edge weights into a", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 198, + 505, + 210 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 505, + 210 + ], + "score": 1.0, + "content": "GCN to learn node representations. In GCN-LPA, we further combine the above two steps together", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 208, + 505, + 221 + ], + "spans": [ + { + "bbox": [ + 105, + 208, + 505, + 221 + ], + "score": 1.0, + "content": "and train the whole model in an end-to-end fashion, where the LPA part serves as regularization", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 219, + 505, + 232 + ], + "spans": [ + { + "bbox": [ + 105, + 219, + 505, + 232 + ], + "score": 1.0, + "content": "to assist the GCN part in learning proper edge weights that benefit the separation of different node", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 230, + 505, + 243 + ], + "spans": [ + { + "bbox": [ + 105, + 230, + 505, + 243 + ], + "score": 1.0, + "content": "classes. It is worth noticing that GCN-LPA can also be seen as learning the weights for edges based", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 242, + 506, + 254 + ], + "spans": [ + { + "bbox": [ + 105, + 242, + 506, + 254 + ], + "score": 1.0, + "content": "on node label information, which requires less handcrafting and is more task-oriented than existing", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 253, + 505, + 264 + ], + "spans": [ + { + "bbox": [ + 105, + 253, + 505, + 264 + ], + "score": 1.0, + "content": "attention models that learn edge weights based on node feature similarity (Velickoviˇ c et al.´ , 2018;", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 264, + 504, + 275 + ], + "spans": [ + { + "bbox": [ + 106, + 264, + 504, + 275 + ], + "score": 1.0, + "content": "Thekumparampil et al., 2018; Zhang et al., 2018; Liu et al., 2019b) or diffusion models that learn", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 275, + 506, + 287 + ], + "spans": [ + { + "bbox": [ + 106, + 275, + 506, + 287 + ], + "score": 1.0, + "content": "adjacency matrix based on graph topology (Klicpera et al., 2019a; Xu et al., 2019a; Abu-El-Haija", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 285, + 250, + 298 + ], + "spans": [ + { + "bbox": [ + 105, + 285, + 250, + 298 + ], + "score": 1.0, + "content": "et al., 2019; Klicpera et al., 2019b).", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 11, + "bbox_fs": [ + 105, + 131, + 506, + 298 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 303, + 505, + 347 + ], + "lines": [ + { + "bbox": [ + 106, + 302, + 505, + 315 + ], + "spans": [ + { + "bbox": [ + 106, + 302, + 505, + 315 + ], + "score": 1.0, + "content": "We conduct extensive experiments on five datasets, and the results indicate that our model outper-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 314, + 505, + 325 + ], + "spans": [ + { + "bbox": [ + 106, + 314, + 505, + 325 + ], + "score": 1.0, + "content": "forms state-of-the-art graph neural networks in terms of classification accuracy. The experimental", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 324, + 505, + 338 + ], + "spans": [ + { + "bbox": [ + 105, + 324, + 505, + 338 + ], + "score": 1.0, + "content": "results also show that combining GCN and LPA together is able to learn more informative edge", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 336, + 295, + 349 + ], + "spans": [ + { + "bbox": [ + 106, + 336, + 295, + 349 + ], + "score": 1.0, + "content": "weights thereby leading to better performance.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 20.5, + "bbox_fs": [ + 105, + 302, + 505, + 349 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 364, + 209, + 377 + ], + "lines": [ + { + "bbox": [ + 104, + 362, + 211, + 380 + ], + "spans": [ + { + "bbox": [ + 104, + 362, + 211, + 380 + ], + "score": 1.0, + "content": "2 OUR APPROACH", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 107, + 390, + 505, + 434 + ], + "lines": [ + { + "bbox": [ + 105, + 390, + 505, + 402 + ], + "spans": [ + { + "bbox": [ + 105, + 390, + 505, + 402 + ], + "score": 1.0, + "content": "In this section, we first formulate the node classification problem and briefly introduce LPA and", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 401, + 505, + 414 + ], + "spans": [ + { + "bbox": [ + 105, + 401, + 505, + 414 + ], + "score": 1.0, + "content": "GCN. We then prove their relationship from the viewpoints of feature influence and label influence.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 411, + 505, + 425 + ], + "spans": [ + { + "bbox": [ + 105, + 411, + 505, + 425 + ], + "score": 1.0, + "content": "Based on the theoretical finding, we propose a unified model GCN-LPA, and analyze why our model", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 424, + 269, + 435 + ], + "spans": [ + { + "bbox": [ + 105, + 424, + 269, + 435 + ], + "score": 1.0, + "content": "is theoretically superior to vanilla GCN.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 25.5, + "bbox_fs": [ + 105, + 390, + 505, + 435 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 450, + 332, + 461 + ], + "lines": [ + { + "bbox": [ + 105, + 450, + 333, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 450, + 333, + 462 + ], + "score": 1.0, + "content": "2.1 PROBLEM FORMULATION AND PRELIMINARIES", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 107, + 469, + 505, + 537 + ], + "lines": [ + { + "bbox": [ + 105, + 469, + 506, + 483 + ], + "spans": [ + { + "bbox": [ + 105, + 469, + 177, + 483 + ], + "score": 1.0, + "content": "Consider a graph", + "type": "text" + }, + { + "bbox": [ + 178, + 470, + 250, + 483 + ], + "score": 0.92, + "content": "\\mathcal { G } = ( \\nu , A , X , Y )", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 469, + 281, + 483 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 281, + 470, + 357, + 482 + ], + "score": 0.92, + "content": "\\mathcal { V } = \\{ v _ { 1 } , \\cdots , v _ { n } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 357, + 469, + 435, + 483 + ], + "score": 1.0, + "content": "is the set of nodes,", + "type": "text" + }, + { + "bbox": [ + 435, + 470, + 480, + 481 + ], + "score": 0.92, + "content": "A \\in \\mathbb { R } ^ { n \\times n }", + "type": "inline_equation" + }, + { + "bbox": [ + 480, + 469, + 506, + 483 + ], + "score": 1.0, + "content": "is the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 482, + 506, + 495 + ], + "spans": [ + { + "bbox": [ + 105, + 482, + 180, + 495 + ], + "score": 1.0, + "content": "adjacency matrix,", + "type": "text" + }, + { + "bbox": [ + 180, + 482, + 190, + 492 + ], + "score": 0.81, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 482, + 329, + 495 + ], + "score": 1.0, + "content": "is the feature matrix of nodes and", + "type": "text" + }, + { + "bbox": [ + 329, + 482, + 339, + 492 + ], + "score": 0.78, + "content": "Y", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 482, + 415, + 495 + ], + "score": 1.0, + "content": "is labels of nodes.", + "type": "text" + }, + { + "bbox": [ + 416, + 483, + 429, + 494 + ], + "score": 0.87, + "content": "a _ { i j }", + "type": "inline_equation" + }, + { + "bbox": [ + 430, + 482, + 449, + 495 + ], + "score": 1.0, + "content": "(the", + "type": "text" + }, + { + "bbox": [ + 449, + 482, + 458, + 493 + ], + "score": 0.86, + "content": "i j", + "type": "inline_equation" + }, + { + "bbox": [ + 459, + 482, + 506, + 495 + ], + "score": 1.0, + "content": "-th entry of", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 107, + 492, + 506, + 505 + ], + "spans": [ + { + "bbox": [ + 107, + 493, + 115, + 503 + ], + "score": 0.63, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 116, + 492, + 268, + 505 + ], + "score": 1.0, + "content": ") is the weight of the edge connecting", + "type": "text" + }, + { + "bbox": [ + 268, + 494, + 277, + 504 + ], + "score": 0.85, + "content": "v _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 278, + 492, + 295, + 505 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 296, + 493, + 306, + 505 + ], + "score": 0.82, + "content": "v _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 307, + 492, + 311, + 505 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 311, + 492, + 335, + 505 + ], + "score": 0.89, + "content": "\\mathcal { N } ( v )", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 492, + 506, + 505 + ], + "score": 1.0, + "content": "denotes the set of first-order neighbors of", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 503, + 505, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 503, + 128, + 516 + ], + "score": 1.0, + "content": "node", + "type": "text" + }, + { + "bbox": [ + 128, + 506, + 135, + 514 + ], + "score": 0.75, + "content": "v", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 503, + 172, + 516 + ], + "score": 1.0, + "content": "in graph", + "type": "text" + }, + { + "bbox": [ + 172, + 504, + 180, + 514 + ], + "score": 0.78, + "content": "\\mathcal { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 180, + 503, + 229, + 516 + ], + "score": 1.0, + "content": ". Each node", + "type": "text" + }, + { + "bbox": [ + 230, + 505, + 239, + 515 + ], + "score": 0.85, + "content": "v _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 503, + 321, + 516 + ], + "score": 1.0, + "content": "has a feature vector", + "type": "text" + }, + { + "bbox": [ + 321, + 506, + 332, + 515 + ], + "score": 0.86, + "content": "\\mathbf { x } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 332, + 503, + 384, + 516 + ], + "score": 1.0, + "content": "which is the", + "type": "text" + }, + { + "bbox": [ + 385, + 505, + 389, + 514 + ], + "score": 0.78, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 503, + 431, + 516 + ], + "score": 1.0, + "content": "-th row of", + "type": "text" + }, + { + "bbox": [ + 431, + 504, + 441, + 514 + ], + "score": 0.83, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 503, + 505, + 516 + ], + "score": 1.0, + "content": ", while only the", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 514, + 505, + 527 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 124, + 527 + ], + "score": 1.0, + "content": "first", + "type": "text" + }, + { + "bbox": [ + 124, + 516, + 135, + 524 + ], + "score": 0.75, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 514, + 163, + 527 + ], + "score": 1.0, + "content": "nodes", + "type": "text" + }, + { + "bbox": [ + 163, + 515, + 198, + 525 + ], + "score": 0.83, + "content": "( m \\ll n )", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 514, + 246, + 527 + ], + "score": 1.0, + "content": "have labels", + "type": "text" + }, + { + "bbox": [ + 246, + 516, + 293, + 526 + ], + "score": 0.91, + "content": "y _ { 1 } , \\cdots , y _ { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 514, + 357, + 527 + ], + "score": 1.0, + "content": "from a label set", + "type": "text" + }, + { + "bbox": [ + 358, + 515, + 422, + 527 + ], + "score": 0.94, + "content": "\\mathcal { L } = \\{ 1 , \\cdots , c \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 423, + 514, + 505, + 527 + ], + "score": 1.0, + "content": ". The goal is to learn", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 525, + 356, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 525, + 151, + 538 + ], + "score": 1.0, + "content": "a mapping", + "type": "text" + }, + { + "bbox": [ + 151, + 526, + 202, + 536 + ], + "score": 0.89, + "content": "\\mathcal { M } : \\mathcal { V } \\to \\mathcal { L }", + "type": "inline_equation" + }, + { + "bbox": [ + 202, + 525, + 356, + 538 + ], + "score": 1.0, + "content": "and predict labels of unlabeled nodes.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 31.5, + "bbox_fs": [ + 105, + 469, + 506, + 538 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 542, + 505, + 625 + ], + "lines": [ + { + "bbox": [ + 105, + 541, + 506, + 555 + ], + "spans": [ + { + "bbox": [ + 105, + 541, + 506, + 555 + ], + "score": 1.0, + "content": "Label Propagation Algorithm. LPA (Zhu et al., 2005) assumes that two connected nodes are", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 104, + 551, + 505, + 566 + ], + "spans": [ + { + "bbox": [ + 104, + 551, + 472, + 566 + ], + "score": 1.0, + "content": "likely to have the same label, and thus it propagates labels iteratively along the edges. Let", + "type": "text" + }, + { + "bbox": [ + 472, + 552, + 505, + 563 + ], + "score": 0.91, + "content": "Y ^ { ( k ) } =", + "type": "inline_equation" + } + ], + "index": 36 + }, + { + "bbox": [ + 107, + 563, + 504, + 581 + ], + "spans": [ + { + "bbox": [ + 107, + 564, + 213, + 579 + ], + "score": 0.92, + "content": "[ y _ { 1 } ^ { ( k ) } , \\cdot \\cdot \\cdot , y _ { n } ^ { ( k ) } ] ^ { \\top } \\in \\mathbb { R } ^ { n \\times c }", + "type": "inline_equation" + }, + { + "bbox": [ + 174, + 563, + 493, + 581 + ], + "score": 1.0, + "content": "∈ Rn×c be the soft label matrix in iteration k > 0, in which the i-th row y(ki", + "type": "text" + }, + { + "bbox": [ + 480, + 564, + 504, + 579 + ], + "score": 0.87, + "content": "y _ { i } ^ { ( k ) \\top }", + "type": "inline_equation" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 577, + 505, + 590 + ], + "spans": [ + { + "bbox": [ + 105, + 577, + 306, + 590 + ], + "score": 1.0, + "content": "denotes the predicted label distribution for node", + "type": "text" + }, + { + "bbox": [ + 306, + 579, + 316, + 589 + ], + "score": 0.84, + "content": "v _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 316, + 577, + 366, + 590 + ], + "score": 1.0, + "content": "in iteration", + "type": "text" + }, + { + "bbox": [ + 366, + 579, + 372, + 588 + ], + "score": 0.81, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 373, + 577, + 407, + 590 + ], + "score": 1.0, + "content": ". When", + "type": "text" + }, + { + "bbox": [ + 407, + 578, + 436, + 588 + ], + "score": 0.9, + "content": "k = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 436, + 577, + 505, + 590 + ], + "score": 1.0, + "content": ", the initial label", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 585, + 504, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 591, + 136, + 603 + ], + "score": 1.0, + "content": "matrix", + "type": "text" + }, + { + "bbox": [ + 136, + 589, + 238, + 604 + ], + "score": 0.92, + "content": "Y ^ { ( 0 ) } = [ y _ { 1 } ^ { ( 0 ) } , \\cdot \\cdot \\cdot , y _ { n } ^ { ( 0 ) } ] ^ { \\top }", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 585, + 412, + 609 + ], + "score": 1.0, + "content": "consists of one-hot label indicator vectors", + "type": "text" + }, + { + "bbox": [ + 413, + 589, + 430, + 604 + ], + "score": 0.91, + "content": "y _ { i } ^ { ( 0 ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 430, + 585, + 446, + 609 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 447, + 591, + 504, + 603 + ], + "score": 0.88, + "content": "i = 1 , \\cdots , m", + "type": "inline_equation" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 601, + 506, + 614 + ], + "spans": [ + { + "bbox": [ + 106, + 601, + 487, + 614 + ], + "score": 1.0, + "content": "(i.e., labeled nodes) or zero vectors otherwise (i.e., unlabeled nodes). Then LPA in iteration", + "type": "text" + }, + { + "bbox": [ + 487, + 603, + 494, + 612 + ], + "score": 0.81, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 601, + 506, + 614 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 613, + 261, + 626 + ], + "spans": [ + { + "bbox": [ + 106, + 613, + 261, + 626 + ], + "score": 1.0, + "content": "formulated as the following two steps:", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 38, + "bbox_fs": [ + 104, + 541, + 506, + 626 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 255, + 631, + 356, + 664 + ], + "lines": [ + { + "bbox": [ + 255, + 631, + 356, + 664 + ], + "spans": [ + { + "bbox": [ + 255, + 631, + 356, + 664 + ], + "score": 0.89, + "content": "\\begin{array} { c } { { Y ^ { ( k + 1 ) } = \\tilde { A } Y ^ { ( k ) } , } } \\\\ { { y _ { i } ^ { ( k + 1 ) } = y _ { i } ^ { ( 0 ) } , \\forall i \\leq m . } } \\end{array}", + "type": "interline_equation", + "image_path": "37fff2412f258c71b93122cbec12d1f86699c9d90db7d9404adb81c931ce1cca.jpg" + } + ] + } + ], + "index": 42.5, + "virtual_lines": [ + { + "bbox": [ + 255, + 631, + 356, + 647.5 + ], + "spans": [], + "index": 42 + }, + { + "bbox": [ + 255, + 647.5, + 356, + 664.0 + ], + "spans": [], + "index": 43 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 670, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 670, + 506, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 670, + 202, + 684 + ], + "score": 1.0, + "content": "In the above equations,", + "type": "text" + }, + { + "bbox": [ + 202, + 670, + 211, + 681 + ], + "score": 0.87, + "content": "\\tilde { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 211, + 670, + 506, + 684 + ], + "score": 1.0, + "content": "is the normalized adjacency matrix, which can be the random walk tran-", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 104, + 682, + 506, + 697 + ], + "spans": [ + { + "bbox": [ + 104, + 682, + 160, + 697 + ], + "score": 1.0, + "content": "sition matrix", + "type": "text" + }, + { + "bbox": [ + 161, + 682, + 222, + 695 + ], + "score": 0.93, + "content": "\\tilde { A } _ { r w } = D ^ { - 1 } A", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 682, + 364, + 697 + ], + "score": 1.0, + "content": "or the symmetric transition matrix", + "type": "text" + }, + { + "bbox": [ + 364, + 682, + 452, + 696 + ], + "score": 0.93, + "content": "\\tilde { A } _ { s y m } = D ^ { - \\frac { 1 } { 2 } } A D ^ { - \\frac { 1 } { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 453, + 682, + 484, + 697 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 484, + 684, + 494, + 694 + ], + "score": 0.83, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 682, + 506, + 697 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 694, + 506, + 709 + ], + "spans": [ + { + "bbox": [ + 105, + 694, + 234, + 709 + ], + "score": 1.0, + "content": "the diagonal degree matrix for", + "type": "text" + }, + { + "bbox": [ + 234, + 696, + 243, + 705 + ], + "score": 0.81, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 243, + 694, + 296, + 709 + ], + "score": 1.0, + "content": "with entries", + "type": "text" + }, + { + "bbox": [ + 297, + 695, + 353, + 709 + ], + "score": 0.93, + "content": "\\begin{array} { r } { d _ { i i } = \\sum _ { j } a _ { i j } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 694, + 506, + 709 + ], + "score": 1.0, + "content": ". Without loss of generosity, we use", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 707, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 707, + 148, + 721 + ], + "score": 0.92, + "content": "\\tilde { A } = \\tilde { A } _ { r w }", + "type": "inline_equation" + }, + { + "bbox": [ + 148, + 707, + 506, + 723 + ], + "score": 1.0, + "content": "in this work. In Eq. (1), all nodes propagate labels to their neighbors according to nor-", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 720, + 506, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 506, + 732 + ], + "score": 1.0, + "content": "malized edge weights. Then in Eq. (2), labels of all labeled nodes are reset to their initial values,", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 106, + 83, + 505, + 94 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 505, + 94 + ], + "score": 1.0, + "content": "because LPA wants to persist labels of nodes which are labeled, so that unlabeled nodes do not", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 407, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 407, + 107 + ], + "score": 1.0, + "content": "overpower the labeled ones as the initial labels would otherwise fade away.", + "type": "text", + "cross_page": true + } + ], + "index": 1 + } + ], + "index": 46, + "bbox_fs": [ + 104, + 670, + 506, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 104, + 82, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 106, + 83, + 505, + 94 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 505, + 94 + ], + "score": 1.0, + "content": "because LPA wants to persist labels of nodes which are labeled, so that unlabeled nodes do not", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 407, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 407, + 107 + ], + "score": 1.0, + "content": "overpower the labeled ones as the initial labels would otherwise fade away.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 107, + 110, + 505, + 144 + ], + "lines": [ + { + "bbox": [ + 105, + 110, + 505, + 123 + ], + "spans": [ + { + "bbox": [ + 105, + 110, + 505, + 123 + ], + "score": 1.0, + "content": "Graph Convolutional Neural Networks. GCN Kipf & Welling (2017) is a multi-layer feedfor-", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 121, + 505, + 133 + ], + "spans": [ + { + "bbox": [ + 105, + 121, + 505, + 133 + ], + "score": 1.0, + "content": "ward neural network that propagates and transforms node features across the graph. The feature", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 132, + 277, + 144 + ], + "spans": [ + { + "bbox": [ + 105, + 132, + 256, + 144 + ], + "score": 1.0, + "content": "propagation scheme of GCN in layer", + "type": "text" + }, + { + "bbox": [ + 256, + 133, + 263, + 142 + ], + "score": 0.85, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 263, + 132, + 277, + 144 + ], + "score": 1.0, + "content": "is:", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3 + }, + { + "type": "interline_equation", + "bbox": [ + 245, + 148, + 365, + 170 + ], + "lines": [ + { + "bbox": [ + 245, + 148, + 365, + 170 + ], + "spans": [ + { + "bbox": [ + 245, + 148, + 365, + 170 + ], + "score": 0.94, + "content": "X ^ { ( k + 1 ) } = \\sigma \\left( \\tilde { A } X ^ { ( k ) } W ^ { ( k ) } \\right) ,", + "type": "interline_equation", + "image_path": "c8a04f56b69bf2e17bd0025a57c2d477f4d2dab59773fdcfce455933b35b950f.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 245, + 148, + 365, + 170 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 176, + 505, + 235 + ], + "lines": [ + { + "bbox": [ + 105, + 174, + 506, + 191 + ], + "spans": [ + { + "bbox": [ + 105, + 174, + 135, + 191 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 136, + 176, + 159, + 187 + ], + "score": 0.9, + "content": "W ^ { ( k ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 174, + 306, + 191 + ], + "score": 1.0, + "content": "is trainable weight matrix in the", + "type": "text" + }, + { + "bbox": [ + 307, + 177, + 313, + 187 + ], + "score": 0.82, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 314, + 174, + 355, + 191 + ], + "score": 1.0, + "content": "-th layer,", + "type": "text" + }, + { + "bbox": [ + 356, + 177, + 374, + 189 + ], + "score": 0.91, + "content": "\\sigma ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 174, + 506, + 191 + ], + "score": 1.0, + "content": "is an activation function, and", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 187, + 506, + 203 + ], + "spans": [ + { + "bbox": [ + 106, + 187, + 213, + 203 + ], + "score": 0.92, + "content": "X ^ { ( k ) } = [ \\mathbf { x } _ { 1 } ^ { ( k ) } , \\cdot \\cdot \\cdot , \\mathbf { x } _ { n } ^ { ( k ) } ] ^ { \\intercal }", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 189, + 245, + 203 + ], + "score": 1.0, + "content": "are the", + "type": "text" + }, + { + "bbox": [ + 246, + 190, + 253, + 200 + ], + "score": 0.8, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 189, + 395, + 203 + ], + "score": 1.0, + "content": "-th layer node representations with", + "type": "text" + }, + { + "bbox": [ + 395, + 189, + 440, + 201 + ], + "score": 0.91, + "content": "X ^ { ( 0 ) } = X", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 189, + 506, + 203 + ], + "score": 1.0, + "content": ". By setting the", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 201, + 505, + 214 + ], + "spans": [ + { + "bbox": [ + 106, + 201, + 316, + 214 + ], + "score": 1.0, + "content": "dimension of the last layer to the number of classes", + "type": "text" + }, + { + "bbox": [ + 317, + 204, + 322, + 212 + ], + "score": 0.73, + "content": "c", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 201, + 505, + 214 + ], + "score": 1.0, + "content": ", the last layer can be seen as (unnormalized)", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 212, + 506, + 226 + ], + "spans": [ + { + "bbox": [ + 105, + 212, + 506, + 226 + ], + "score": 1.0, + "content": "label distribution predicted for a given node. The whole model can thus be optimized by minimizing", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 224, + 453, + 236 + ], + "spans": [ + { + "bbox": [ + 106, + 224, + 437, + 236 + ], + "score": 1.0, + "content": "the discrepancy between predicted node label distributions and ground-truth labels", + "type": "text" + }, + { + "bbox": [ + 438, + 224, + 448, + 234 + ], + "score": 0.79, + "content": "Y", + "type": "inline_equation" + }, + { + "bbox": [ + 448, + 224, + 453, + 236 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 8 + }, + { + "type": "title", + "bbox": [ + 107, + 248, + 328, + 260 + ], + "lines": [ + { + "bbox": [ + 106, + 248, + 328, + 261 + ], + "spans": [ + { + "bbox": [ + 106, + 248, + 328, + 261 + ], + "score": 1.0, + "content": "2.2 FEATURE INFLUENCE AND LABEL INFLUENCE", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 106, + 268, + 505, + 338 + ], + "lines": [ + { + "bbox": [ + 106, + 269, + 505, + 281 + ], + "spans": [ + { + "bbox": [ + 106, + 269, + 188, + 281 + ], + "score": 1.0, + "content": "Consider two nodes", + "type": "text" + }, + { + "bbox": [ + 188, + 271, + 199, + 280 + ], + "score": 0.86, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 269, + 217, + 281 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 217, + 271, + 227, + 280 + ], + "score": 0.85, + "content": "v _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 269, + 422, + 281 + ], + "score": 1.0, + "content": "in a graph. Inspired by Koh & Liang (2017) and", + "type": "text" + }, + { + "bbox": [ + 423, + 270, + 437, + 279 + ], + "score": 0.46, + "content": "\\mathrm { X u }", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 269, + 505, + 281 + ], + "score": 1.0, + "content": "et al. (2018), we", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 280, + 505, + 291 + ], + "spans": [ + { + "bbox": [ + 106, + 280, + 505, + 291 + ], + "score": 1.0, + "content": "study the relationship between GCN and LPA in terms of influence, i.e., how the output feature/label", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 290, + 505, + 303 + ], + "spans": [ + { + "bbox": [ + 105, + 290, + 118, + 303 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 118, + 293, + 129, + 302 + ], + "score": 0.86, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 129, + 290, + 298, + 303 + ], + "score": 1.0, + "content": "will change if the initial feature/label of", + "type": "text" + }, + { + "bbox": [ + 298, + 293, + 308, + 302 + ], + "score": 0.85, + "content": "v _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 290, + 505, + 303 + ], + "score": 1.0, + "content": "is varied slightly. Technically, the feature/label", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 301, + 505, + 315 + ], + "spans": [ + { + "bbox": [ + 106, + 301, + 415, + 315 + ], + "score": 1.0, + "content": "influence is measured by the Jacobian/gradient of the output feature/label of", + "type": "text" + }, + { + "bbox": [ + 416, + 303, + 426, + 313 + ], + "score": 0.86, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 427, + 301, + 505, + 315 + ], + "score": 1.0, + "content": "with respect to the", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 312, + 504, + 329 + ], + "spans": [ + { + "bbox": [ + 105, + 312, + 195, + 329 + ], + "score": 1.0, + "content": "initial feature/label of", + "type": "text" + }, + { + "bbox": [ + 196, + 317, + 205, + 326 + ], + "score": 0.82, + "content": "v _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 206, + 312, + 241, + 329 + ], + "score": 1.0, + "content": ". Denote", + "type": "text" + }, + { + "bbox": [ + 242, + 313, + 260, + 326 + ], + "score": 0.91, + "content": "\\mathbf { x } _ { a } ^ { ( k ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 312, + 287, + 329 + ], + "score": 1.0, + "content": "as the", + "type": "text" + }, + { + "bbox": [ + 288, + 316, + 294, + 325 + ], + "score": 0.81, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 294, + 312, + 426, + 329 + ], + "score": 1.0, + "content": "-th layer representation vector of", + "type": "text" + }, + { + "bbox": [ + 427, + 317, + 437, + 326 + ], + "score": 0.86, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 438, + 312, + 492, + 329 + ], + "score": 1.0, + "content": "in GCN, and", + "type": "text" + }, + { + "bbox": [ + 492, + 317, + 504, + 326 + ], + "score": 0.83, + "content": "\\mathbf { x } _ { b }", + "type": "inline_equation" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 326, + 468, + 338 + ], + "spans": [ + { + "bbox": [ + 106, + 326, + 226, + 338 + ], + "score": 1.0, + "content": "as the initial feature vector of", + "type": "text" + }, + { + "bbox": [ + 226, + 327, + 236, + 337 + ], + "score": 0.85, + "content": "v _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 326, + 386, + 338 + ], + "score": 1.0, + "content": ". We quantify the feature influence of", + "type": "text" + }, + { + "bbox": [ + 386, + 328, + 396, + 337 + ], + "score": 0.85, + "content": "v _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 397, + 326, + 410, + 338 + ], + "score": 1.0, + "content": "on", + "type": "text" + }, + { + "bbox": [ + 410, + 328, + 421, + 337 + ], + "score": 0.86, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 326, + 468, + 338 + ], + "score": 1.0, + "content": "as follows:", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 14.5 + }, + { + "type": "text", + "bbox": [ + 107, + 347, + 505, + 389 + ], + "lines": [ + { + "bbox": [ + 105, + 346, + 506, + 361 + ], + "spans": [ + { + "bbox": [ + 105, + 346, + 360, + 361 + ], + "score": 1.0, + "content": "Definition 1 (Feature influence) The feature influence of node", + "type": "text" + }, + { + "bbox": [ + 361, + 350, + 370, + 359 + ], + "score": 0.82, + "content": "v _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 346, + 405, + 361 + ], + "score": 1.0, + "content": "on node", + "type": "text" + }, + { + "bbox": [ + 405, + 350, + 416, + 359 + ], + "score": 0.85, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 346, + 438, + 361 + ], + "score": 1.0, + "content": "after", + "type": "text" + }, + { + "bbox": [ + 438, + 349, + 445, + 358 + ], + "score": 0.71, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 445, + 346, + 506, + 361 + ], + "score": 1.0, + "content": "layers of GCN", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 104, + 358, + 506, + 376 + ], + "spans": [ + { + "bbox": [ + 104, + 358, + 129, + 376 + ], + "score": 1.0, + "content": "is the", + "type": "text" + }, + { + "bbox": [ + 129, + 362, + 141, + 371 + ], + "score": 0.58, + "content": "L l", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 358, + 294, + 376 + ], + "score": 1.0, + "content": "-norm of the expected Jacobian matrix", + "type": "text" + }, + { + "bbox": [ + 294, + 359, + 339, + 374 + ], + "score": 0.72, + "content": "\\partial \\mathbf { x } _ { a } ^ { ( k ) } / \\partial \\mathbf { x } _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 358, + 344, + 376 + ], + "score": 1.0, + "content": ":", + "type": "text" + }, + { + "bbox": [ + 345, + 359, + 483, + 375 + ], + "score": 0.88, + "content": "I _ { f } ( v _ { a } , v _ { b } ; k ) = \\left. \\mathbb { E } \\big [ \\partial \\mathbf { x } _ { a } ^ { ( k ) } / \\partial \\mathbf { x } _ { b } \\big ] \\right. _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 483, + 358, + 506, + 376 + ], + "score": 1.0, + "content": ". The", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 104, + 373, + 500, + 391 + ], + "spans": [ + { + "bbox": [ + 104, + 373, + 294, + 391 + ], + "score": 1.0, + "content": "normalized feature influence is then defined as", + "type": "text" + }, + { + "bbox": [ + 294, + 376, + 495, + 389 + ], + "score": 0.87, + "content": "\\begin{array} { r } { \\tilde { I } _ { f } ( v _ { a } , v _ { b } ; k ) = I _ { f } ( v _ { a } , v _ { b } ; k ) / \\sum _ { v _ { i } \\in \\mathcal { V } } I _ { f } ( v _ { a } , v _ { i } ; k ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 373, + 500, + 391 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 107, + 397, + 505, + 448 + ], + "lines": [ + { + "bbox": [ + 106, + 397, + 505, + 410 + ], + "spans": [ + { + "bbox": [ + 106, + 397, + 284, + 410 + ], + "score": 1.0, + "content": "We also consider the label influence of node", + "type": "text" + }, + { + "bbox": [ + 285, + 399, + 295, + 408 + ], + "score": 0.83, + "content": "v _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 295, + 397, + 330, + 410 + ], + "score": 1.0, + "content": "on node", + "type": "text" + }, + { + "bbox": [ + 330, + 399, + 341, + 408 + ], + "score": 0.85, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 342, + 397, + 442, + 410 + ], + "score": 1.0, + "content": "in LPA (this implies that", + "type": "text" + }, + { + "bbox": [ + 443, + 399, + 453, + 408 + ], + "score": 0.85, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 454, + 397, + 505, + 410 + ], + "score": 1.0, + "content": "is unlabeled", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 103, + 408, + 505, + 425 + ], + "spans": [ + { + "bbox": [ + 103, + 409, + 123, + 425 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 412, + 134, + 422 + ], + "score": 0.84, + "content": "v _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 134, + 409, + 327, + 425 + ], + "score": 1.0, + "content": "is labeled). Since different label dimensions of", + "type": "text" + }, + { + "bbox": [ + 328, + 408, + 343, + 423 + ], + "score": 0.92, + "content": "y _ { i } ^ { ( \\cdot ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 409, + 505, + 425 + ], + "score": 1.0, + "content": "do not interact with each other in LPA,", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 104, + 423, + 506, + 438 + ], + "spans": [ + { + "bbox": [ + 104, + 423, + 184, + 438 + ], + "score": 1.0, + "content": "we assume that all", + "type": "text" + }, + { + "bbox": [ + 185, + 427, + 194, + 437 + ], + "score": 0.82, + "content": "y _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 423, + 213, + 438 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 214, + 423, + 229, + 437 + ], + "score": 0.92, + "content": "y _ { i } ^ { ( \\cdot ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 230, + 423, + 306, + 438 + ], + "score": 1.0, + "content": "are scalars within", + "type": "text" + }, + { + "bbox": [ + 306, + 425, + 327, + 437 + ], + "score": 0.5, + "content": "[ 0 , 1 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 423, + 506, + 438 + ], + "score": 1.0, + "content": "(i.e., this is a binary classification task) for", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 437, + 302, + 448 + ], + "spans": [ + { + "bbox": [ + 106, + 437, + 302, + 448 + ], + "score": 1.0, + "content": "simplicity. Label influence is defined as follows:", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 22.5 + }, + { + "type": "text", + "bbox": [ + 106, + 457, + 505, + 484 + ], + "lines": [ + { + "bbox": [ + 106, + 457, + 504, + 471 + ], + "spans": [ + { + "bbox": [ + 106, + 457, + 376, + 471 + ], + "score": 1.0, + "content": "Definition 2 (Label influence) The label influence of labeled node", + "type": "text" + }, + { + "bbox": [ + 377, + 460, + 387, + 469 + ], + "score": 0.79, + "content": "v _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 457, + 464, + 471 + ], + "score": 1.0, + "content": "on unlabeled node", + "type": "text" + }, + { + "bbox": [ + 464, + 459, + 474, + 469 + ], + "score": 0.85, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 475, + 457, + 497, + 471 + ], + "score": 1.0, + "content": "after", + "type": "text" + }, + { + "bbox": [ + 497, + 459, + 504, + 468 + ], + "score": 0.77, + "content": "k", + "type": "inline_equation" + } + ], + "index": 25 + }, + { + "bbox": [ + 102, + 464, + 453, + 488 + ], + "spans": [ + { + "bbox": [ + 102, + 464, + 246, + 488 + ], + "score": 1.0, + "content": "iterations of LPA is the gradient of", + "type": "text" + }, + { + "bbox": [ + 247, + 469, + 264, + 483 + ], + "score": 0.91, + "content": "y _ { a } ^ { ( k ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 264, + 464, + 326, + 488 + ], + "score": 1.0, + "content": "with respect to", + "type": "text" + }, + { + "bbox": [ + 327, + 469, + 446, + 484 + ], + "score": 0.9, + "content": "y _ { b } \\colon I _ { l } ( v _ { a } , v _ { b } ; k ) = \\partial y _ { a } ^ { ( k ) } / \\partial y _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 464, + 453, + 488 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5 + }, + { + "type": "text", + "bbox": [ + 105, + 492, + 476, + 505 + ], + "lines": [ + { + "bbox": [ + 105, + 493, + 478, + 505 + ], + "spans": [ + { + "bbox": [ + 105, + 493, + 478, + 505 + ], + "score": 1.0, + "content": "The following theorem shows the relationship between feature influence and label influence:", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 105, + 514, + 505, + 560 + ], + "lines": [ + { + "bbox": [ + 106, + 515, + 505, + 527 + ], + "spans": [ + { + "bbox": [ + 106, + 515, + 505, + 527 + ], + "score": 1.0, + "content": "Theorem 1 (Relationship between feature influence and label influence) Assume the activation", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 526, + 505, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 526, + 264, + 538 + ], + "score": 1.0, + "content": "function used in GCN is ReLU. Denote", + "type": "text" + }, + { + "bbox": [ + 264, + 528, + 275, + 537 + ], + "score": 0.84, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 526, + 366, + 538 + ], + "score": 1.0, + "content": "as an unlabeled node,", + "type": "text" + }, + { + "bbox": [ + 366, + 528, + 376, + 537 + ], + "score": 0.83, + "content": "v _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 377, + 526, + 470, + 538 + ], + "score": 1.0, + "content": "as a labeled node, and", + "type": "text" + }, + { + "bbox": [ + 470, + 527, + 478, + 537 + ], + "score": 0.83, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 478, + 526, + 505, + 538 + ], + "score": 1.0, + "content": "as the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 537, + 505, + 549 + ], + "spans": [ + { + "bbox": [ + 105, + 537, + 329, + 549 + ], + "score": 1.0, + "content": "fraction of unlabeled nodes. Then the label influence of", + "type": "text" + }, + { + "bbox": [ + 329, + 538, + 339, + 548 + ], + "score": 0.84, + "content": "v _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 537, + 352, + 549 + ], + "score": 1.0, + "content": "on", + "type": "text" + }, + { + "bbox": [ + 353, + 539, + 363, + 548 + ], + "score": 0.85, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 364, + 537, + 385, + 549 + ], + "score": 1.0, + "content": "after", + "type": "text" + }, + { + "bbox": [ + 386, + 537, + 393, + 547 + ], + "score": 0.78, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 537, + 505, + 549 + ], + "score": 1.0, + "content": "iterations of LPA equals, in", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 548, + 483, + 560 + ], + "spans": [ + { + "bbox": [ + 105, + 548, + 354, + 560 + ], + "score": 1.0, + "content": "expectation, to the cumulative normalized feature influence of", + "type": "text" + }, + { + "bbox": [ + 355, + 550, + 365, + 559 + ], + "score": 0.82, + "content": "v _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 365, + 548, + 378, + 560 + ], + "score": 1.0, + "content": "on", + "type": "text" + }, + { + "bbox": [ + 379, + 550, + 389, + 559 + ], + "score": 0.85, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 548, + 412, + 560 + ], + "score": 1.0, + "content": "after", + "type": "text" + }, + { + "bbox": [ + 412, + 549, + 419, + 558 + ], + "score": 0.76, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 419, + 548, + 483, + 560 + ], + "score": 1.0, + "content": "layers of GCN:", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 29.5 + }, + { + "type": "interline_equation", + "bbox": [ + 219, + 564, + 391, + 588 + ], + "lines": [ + { + "bbox": [ + 219, + 564, + 391, + 588 + ], + "spans": [ + { + "bbox": [ + 219, + 564, + 391, + 588 + ], + "score": 0.94, + "content": "\\mathbb { E } \\big [ I _ { l } ( v _ { a } , v _ { b } ; k ) \\big ] = \\sum _ { j = 1 } ^ { k } \\beta ^ { j } \\tilde { I } _ { f } ( v _ { a } , v _ { b } ; j ) .", + "type": "interline_equation", + "image_path": "efb2d928aa652184175dd6f91edd01e6c4c2d70c8b465e480de443426bcf1d48.jpg" + } + ] + } + ], + "index": 32, + "virtual_lines": [ + { + "bbox": [ + 219, + 564, + 391, + 588 + ], + "spans": [], + "index": 32 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 597, + 505, + 632 + ], + "lines": [ + { + "bbox": [ + 105, + 598, + 505, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 598, + 399, + 610 + ], + "score": 1.0, + "content": "Proof of Theorem 1 is in Appendix A. Intuitively, Theorem 1 shows that if", + "type": "text" + }, + { + "bbox": [ + 399, + 600, + 409, + 609 + ], + "score": 0.85, + "content": "v _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 409, + 598, + 505, + 610 + ], + "score": 1.0, + "content": "has high label influence", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 609, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 609, + 119, + 622 + ], + "score": 1.0, + "content": "on", + "type": "text" + }, + { + "bbox": [ + 120, + 611, + 131, + 621 + ], + "score": 0.85, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 609, + 268, + 622 + ], + "score": 1.0, + "content": ", then the initial feature vector of", + "type": "text" + }, + { + "bbox": [ + 269, + 610, + 279, + 621 + ], + "score": 0.86, + "content": "v _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 609, + 460, + 622 + ], + "score": 1.0, + "content": "will also affect the output feature vector of", + "type": "text" + }, + { + "bbox": [ + 460, + 611, + 471, + 621 + ], + "score": 0.86, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 471, + 609, + 505, + 622 + ], + "score": 1.0, + "content": "greatly.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 619, + 505, + 633 + ], + "spans": [ + { + "bbox": [ + 105, + 619, + 505, + 633 + ], + "score": 1.0, + "content": "Theorem 1 provides the theoretical guideline for designing our unified model in the next subsection.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34 + }, + { + "type": "title", + "bbox": [ + 107, + 645, + 223, + 657 + ], + "lines": [ + { + "bbox": [ + 106, + 644, + 225, + 657 + ], + "spans": [ + { + "bbox": [ + 106, + 644, + 225, + 657 + ], + "score": 1.0, + "content": "2.3 THE UNIFIED MODEL", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 107, + 665, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 666, + 505, + 677 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 505, + 677 + ], + "score": 1.0, + "content": "Before introducing the proposed model, we rethink the GCN method and see what an ideal set of", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 676, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 676, + 505, + 689 + ], + "score": 1.0, + "content": "node representations should be like. Since we aim to classify nodes, the perfect node representation", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "score": 1.0, + "content": "would be such that nodes with the same label are embedded closely together, which would give a", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "large separation between different classes. Intuitively, the key to achieve this goal is to enable nodes", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "within the same class to connect more strongly with each other, so that they are pushed together by", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 720, + 505, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 734 + ], + "score": 1.0, + "content": "GCN (more discussion is presented in Section 2.4). We can therefore make edge strengths/weights", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 39.5 + } + ], + "page_idx": 2, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 26, + 307, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "score": 1.0, + "content": "3", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 104, + 82, + 504, + 105 + ], + "lines": [], + "index": 0.5, + "bbox_fs": [ + 105, + 83, + 505, + 107 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 110, + 505, + 144 + ], + "lines": [ + { + "bbox": [ + 105, + 110, + 505, + 123 + ], + "spans": [ + { + "bbox": [ + 105, + 110, + 505, + 123 + ], + "score": 1.0, + "content": "Graph Convolutional Neural Networks. GCN Kipf & Welling (2017) is a multi-layer feedfor-", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 121, + 505, + 133 + ], + "spans": [ + { + "bbox": [ + 105, + 121, + 505, + 133 + ], + "score": 1.0, + "content": "ward neural network that propagates and transforms node features across the graph. The feature", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 132, + 277, + 144 + ], + "spans": [ + { + "bbox": [ + 105, + 132, + 256, + 144 + ], + "score": 1.0, + "content": "propagation scheme of GCN in layer", + "type": "text" + }, + { + "bbox": [ + 256, + 133, + 263, + 142 + ], + "score": 0.85, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 263, + 132, + 277, + 144 + ], + "score": 1.0, + "content": "is:", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3, + "bbox_fs": [ + 105, + 110, + 505, + 144 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 245, + 148, + 365, + 170 + ], + "lines": [ + { + "bbox": [ + 245, + 148, + 365, + 170 + ], + "spans": [ + { + "bbox": [ + 245, + 148, + 365, + 170 + ], + "score": 0.94, + "content": "X ^ { ( k + 1 ) } = \\sigma \\left( \\tilde { A } X ^ { ( k ) } W ^ { ( k ) } \\right) ,", + "type": "interline_equation", + "image_path": "c8a04f56b69bf2e17bd0025a57c2d477f4d2dab59773fdcfce455933b35b950f.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 245, + 148, + 365, + 170 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 176, + 505, + 235 + ], + "lines": [ + { + "bbox": [ + 105, + 174, + 506, + 191 + ], + "spans": [ + { + "bbox": [ + 105, + 174, + 135, + 191 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 136, + 176, + 159, + 187 + ], + "score": 0.9, + "content": "W ^ { ( k ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 174, + 306, + 191 + ], + "score": 1.0, + "content": "is trainable weight matrix in the", + "type": "text" + }, + { + "bbox": [ + 307, + 177, + 313, + 187 + ], + "score": 0.82, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 314, + 174, + 355, + 191 + ], + "score": 1.0, + "content": "-th layer,", + "type": "text" + }, + { + "bbox": [ + 356, + 177, + 374, + 189 + ], + "score": 0.91, + "content": "\\sigma ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 174, + 506, + 191 + ], + "score": 1.0, + "content": "is an activation function, and", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 187, + 506, + 203 + ], + "spans": [ + { + "bbox": [ + 106, + 187, + 213, + 203 + ], + "score": 0.92, + "content": "X ^ { ( k ) } = [ \\mathbf { x } _ { 1 } ^ { ( k ) } , \\cdot \\cdot \\cdot , \\mathbf { x } _ { n } ^ { ( k ) } ] ^ { \\intercal }", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 189, + 245, + 203 + ], + "score": 1.0, + "content": "are the", + "type": "text" + }, + { + "bbox": [ + 246, + 190, + 253, + 200 + ], + "score": 0.8, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 189, + 395, + 203 + ], + "score": 1.0, + "content": "-th layer node representations with", + "type": "text" + }, + { + "bbox": [ + 395, + 189, + 440, + 201 + ], + "score": 0.91, + "content": "X ^ { ( 0 ) } = X", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 189, + 506, + 203 + ], + "score": 1.0, + "content": ". By setting the", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 201, + 505, + 214 + ], + "spans": [ + { + "bbox": [ + 106, + 201, + 316, + 214 + ], + "score": 1.0, + "content": "dimension of the last layer to the number of classes", + "type": "text" + }, + { + "bbox": [ + 317, + 204, + 322, + 212 + ], + "score": 0.73, + "content": "c", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 201, + 505, + 214 + ], + "score": 1.0, + "content": ", the last layer can be seen as (unnormalized)", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 212, + 506, + 226 + ], + "spans": [ + { + "bbox": [ + 105, + 212, + 506, + 226 + ], + "score": 1.0, + "content": "label distribution predicted for a given node. The whole model can thus be optimized by minimizing", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 224, + 453, + 236 + ], + "spans": [ + { + "bbox": [ + 106, + 224, + 437, + 236 + ], + "score": 1.0, + "content": "the discrepancy between predicted node label distributions and ground-truth labels", + "type": "text" + }, + { + "bbox": [ + 438, + 224, + 448, + 234 + ], + "score": 0.79, + "content": "Y", + "type": "inline_equation" + }, + { + "bbox": [ + 448, + 224, + 453, + 236 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 8, + "bbox_fs": [ + 105, + 174, + 506, + 236 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 248, + 328, + 260 + ], + "lines": [ + { + "bbox": [ + 106, + 248, + 328, + 261 + ], + "spans": [ + { + "bbox": [ + 106, + 248, + 328, + 261 + ], + "score": 1.0, + "content": "2.2 FEATURE INFLUENCE AND LABEL INFLUENCE", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 106, + 268, + 505, + 338 + ], + "lines": [ + { + "bbox": [ + 106, + 269, + 505, + 281 + ], + "spans": [ + { + "bbox": [ + 106, + 269, + 188, + 281 + ], + "score": 1.0, + "content": "Consider two nodes", + "type": "text" + }, + { + "bbox": [ + 188, + 271, + 199, + 280 + ], + "score": 0.86, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 269, + 217, + 281 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 217, + 271, + 227, + 280 + ], + "score": 0.85, + "content": "v _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 269, + 422, + 281 + ], + "score": 1.0, + "content": "in a graph. Inspired by Koh & Liang (2017) and", + "type": "text" + }, + { + "bbox": [ + 423, + 270, + 437, + 279 + ], + "score": 0.46, + "content": "\\mathrm { X u }", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 269, + 505, + 281 + ], + "score": 1.0, + "content": "et al. (2018), we", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 280, + 505, + 291 + ], + "spans": [ + { + "bbox": [ + 106, + 280, + 505, + 291 + ], + "score": 1.0, + "content": "study the relationship between GCN and LPA in terms of influence, i.e., how the output feature/label", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 290, + 505, + 303 + ], + "spans": [ + { + "bbox": [ + 105, + 290, + 118, + 303 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 118, + 293, + 129, + 302 + ], + "score": 0.86, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 129, + 290, + 298, + 303 + ], + "score": 1.0, + "content": "will change if the initial feature/label of", + "type": "text" + }, + { + "bbox": [ + 298, + 293, + 308, + 302 + ], + "score": 0.85, + "content": "v _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 290, + 505, + 303 + ], + "score": 1.0, + "content": "is varied slightly. Technically, the feature/label", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 301, + 505, + 315 + ], + "spans": [ + { + "bbox": [ + 106, + 301, + 415, + 315 + ], + "score": 1.0, + "content": "influence is measured by the Jacobian/gradient of the output feature/label of", + "type": "text" + }, + { + "bbox": [ + 416, + 303, + 426, + 313 + ], + "score": 0.86, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 427, + 301, + 505, + 315 + ], + "score": 1.0, + "content": "with respect to the", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 312, + 504, + 329 + ], + "spans": [ + { + "bbox": [ + 105, + 312, + 195, + 329 + ], + "score": 1.0, + "content": "initial feature/label of", + "type": "text" + }, + { + "bbox": [ + 196, + 317, + 205, + 326 + ], + "score": 0.82, + "content": "v _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 206, + 312, + 241, + 329 + ], + "score": 1.0, + "content": ". Denote", + "type": "text" + }, + { + "bbox": [ + 242, + 313, + 260, + 326 + ], + "score": 0.91, + "content": "\\mathbf { x } _ { a } ^ { ( k ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 312, + 287, + 329 + ], + "score": 1.0, + "content": "as the", + "type": "text" + }, + { + "bbox": [ + 288, + 316, + 294, + 325 + ], + "score": 0.81, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 294, + 312, + 426, + 329 + ], + "score": 1.0, + "content": "-th layer representation vector of", + "type": "text" + }, + { + "bbox": [ + 427, + 317, + 437, + 326 + ], + "score": 0.86, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 438, + 312, + 492, + 329 + ], + "score": 1.0, + "content": "in GCN, and", + "type": "text" + }, + { + "bbox": [ + 492, + 317, + 504, + 326 + ], + "score": 0.83, + "content": "\\mathbf { x } _ { b }", + "type": "inline_equation" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 326, + 468, + 338 + ], + "spans": [ + { + "bbox": [ + 106, + 326, + 226, + 338 + ], + "score": 1.0, + "content": "as the initial feature vector of", + "type": "text" + }, + { + "bbox": [ + 226, + 327, + 236, + 337 + ], + "score": 0.85, + "content": "v _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 326, + 386, + 338 + ], + "score": 1.0, + "content": ". We quantify the feature influence of", + "type": "text" + }, + { + "bbox": [ + 386, + 328, + 396, + 337 + ], + "score": 0.85, + "content": "v _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 397, + 326, + 410, + 338 + ], + "score": 1.0, + "content": "on", + "type": "text" + }, + { + "bbox": [ + 410, + 328, + 421, + 337 + ], + "score": 0.86, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 326, + 468, + 338 + ], + "score": 1.0, + "content": "as follows:", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 14.5, + "bbox_fs": [ + 105, + 269, + 505, + 338 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 347, + 505, + 389 + ], + "lines": [ + { + "bbox": [ + 105, + 346, + 506, + 361 + ], + "spans": [ + { + "bbox": [ + 105, + 346, + 360, + 361 + ], + "score": 1.0, + "content": "Definition 1 (Feature influence) The feature influence of node", + "type": "text" + }, + { + "bbox": [ + 361, + 350, + 370, + 359 + ], + "score": 0.82, + "content": "v _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 346, + 405, + 361 + ], + "score": 1.0, + "content": "on node", + "type": "text" + }, + { + "bbox": [ + 405, + 350, + 416, + 359 + ], + "score": 0.85, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 346, + 438, + 361 + ], + "score": 1.0, + "content": "after", + "type": "text" + }, + { + "bbox": [ + 438, + 349, + 445, + 358 + ], + "score": 0.71, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 445, + 346, + 506, + 361 + ], + "score": 1.0, + "content": "layers of GCN", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 104, + 358, + 506, + 376 + ], + "spans": [ + { + "bbox": [ + 104, + 358, + 129, + 376 + ], + "score": 1.0, + "content": "is the", + "type": "text" + }, + { + "bbox": [ + 129, + 362, + 141, + 371 + ], + "score": 0.58, + "content": "L l", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 358, + 294, + 376 + ], + "score": 1.0, + "content": "-norm of the expected Jacobian matrix", + "type": "text" + }, + { + "bbox": [ + 294, + 359, + 339, + 374 + ], + "score": 0.72, + "content": "\\partial \\mathbf { x } _ { a } ^ { ( k ) } / \\partial \\mathbf { x } _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 358, + 344, + 376 + ], + "score": 1.0, + "content": ":", + "type": "text" + }, + { + "bbox": [ + 345, + 359, + 483, + 375 + ], + "score": 0.88, + "content": "I _ { f } ( v _ { a } , v _ { b } ; k ) = \\left. \\mathbb { E } \\big [ \\partial \\mathbf { x } _ { a } ^ { ( k ) } / \\partial \\mathbf { x } _ { b } \\big ] \\right. _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 483, + 358, + 506, + 376 + ], + "score": 1.0, + "content": ". The", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 104, + 373, + 500, + 391 + ], + "spans": [ + { + "bbox": [ + 104, + 373, + 294, + 391 + ], + "score": 1.0, + "content": "normalized feature influence is then defined as", + "type": "text" + }, + { + "bbox": [ + 294, + 376, + 495, + 389 + ], + "score": 0.87, + "content": "\\begin{array} { r } { \\tilde { I } _ { f } ( v _ { a } , v _ { b } ; k ) = I _ { f } ( v _ { a } , v _ { b } ; k ) / \\sum _ { v _ { i } \\in \\mathcal { V } } I _ { f } ( v _ { a } , v _ { i } ; k ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 373, + 500, + 391 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19, + "bbox_fs": [ + 104, + 346, + 506, + 391 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 397, + 505, + 448 + ], + "lines": [ + { + "bbox": [ + 106, + 397, + 505, + 410 + ], + "spans": [ + { + "bbox": [ + 106, + 397, + 284, + 410 + ], + "score": 1.0, + "content": "We also consider the label influence of node", + "type": "text" + }, + { + "bbox": [ + 285, + 399, + 295, + 408 + ], + "score": 0.83, + "content": "v _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 295, + 397, + 330, + 410 + ], + "score": 1.0, + "content": "on node", + "type": "text" + }, + { + "bbox": [ + 330, + 399, + 341, + 408 + ], + "score": 0.85, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 342, + 397, + 442, + 410 + ], + "score": 1.0, + "content": "in LPA (this implies that", + "type": "text" + }, + { + "bbox": [ + 443, + 399, + 453, + 408 + ], + "score": 0.85, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 454, + 397, + 505, + 410 + ], + "score": 1.0, + "content": "is unlabeled", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 103, + 408, + 505, + 425 + ], + "spans": [ + { + "bbox": [ + 103, + 409, + 123, + 425 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 412, + 134, + 422 + ], + "score": 0.84, + "content": "v _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 134, + 409, + 327, + 425 + ], + "score": 1.0, + "content": "is labeled). Since different label dimensions of", + "type": "text" + }, + { + "bbox": [ + 328, + 408, + 343, + 423 + ], + "score": 0.92, + "content": "y _ { i } ^ { ( \\cdot ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 409, + 505, + 425 + ], + "score": 1.0, + "content": "do not interact with each other in LPA,", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 104, + 423, + 506, + 438 + ], + "spans": [ + { + "bbox": [ + 104, + 423, + 184, + 438 + ], + "score": 1.0, + "content": "we assume that all", + "type": "text" + }, + { + "bbox": [ + 185, + 427, + 194, + 437 + ], + "score": 0.82, + "content": "y _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 423, + 213, + 438 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 214, + 423, + 229, + 437 + ], + "score": 0.92, + "content": "y _ { i } ^ { ( \\cdot ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 230, + 423, + 306, + 438 + ], + "score": 1.0, + "content": "are scalars within", + "type": "text" + }, + { + "bbox": [ + 306, + 425, + 327, + 437 + ], + "score": 0.5, + "content": "[ 0 , 1 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 423, + 506, + 438 + ], + "score": 1.0, + "content": "(i.e., this is a binary classification task) for", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 437, + 302, + 448 + ], + "spans": [ + { + "bbox": [ + 106, + 437, + 302, + 448 + ], + "score": 1.0, + "content": "simplicity. Label influence is defined as follows:", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 22.5, + "bbox_fs": [ + 103, + 397, + 506, + 448 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 457, + 505, + 484 + ], + "lines": [ + { + "bbox": [ + 106, + 457, + 504, + 471 + ], + "spans": [ + { + "bbox": [ + 106, + 457, + 376, + 471 + ], + "score": 1.0, + "content": "Definition 2 (Label influence) The label influence of labeled node", + "type": "text" + }, + { + "bbox": [ + 377, + 460, + 387, + 469 + ], + "score": 0.79, + "content": "v _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 457, + 464, + 471 + ], + "score": 1.0, + "content": "on unlabeled node", + "type": "text" + }, + { + "bbox": [ + 464, + 459, + 474, + 469 + ], + "score": 0.85, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 475, + 457, + 497, + 471 + ], + "score": 1.0, + "content": "after", + "type": "text" + }, + { + "bbox": [ + 497, + 459, + 504, + 468 + ], + "score": 0.77, + "content": "k", + "type": "inline_equation" + } + ], + "index": 25 + }, + { + "bbox": [ + 102, + 464, + 453, + 488 + ], + "spans": [ + { + "bbox": [ + 102, + 464, + 246, + 488 + ], + "score": 1.0, + "content": "iterations of LPA is the gradient of", + "type": "text" + }, + { + "bbox": [ + 247, + 469, + 264, + 483 + ], + "score": 0.91, + "content": "y _ { a } ^ { ( k ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 264, + 464, + 326, + 488 + ], + "score": 1.0, + "content": "with respect to", + "type": "text" + }, + { + "bbox": [ + 327, + 469, + 446, + 484 + ], + "score": 0.9, + "content": "y _ { b } \\colon I _ { l } ( v _ { a } , v _ { b } ; k ) = \\partial y _ { a } ^ { ( k ) } / \\partial y _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 464, + 453, + 488 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5, + "bbox_fs": [ + 102, + 457, + 504, + 488 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 492, + 476, + 505 + ], + "lines": [ + { + "bbox": [ + 105, + 493, + 478, + 505 + ], + "spans": [ + { + "bbox": [ + 105, + 493, + 478, + 505 + ], + "score": 1.0, + "content": "The following theorem shows the relationship between feature influence and label influence:", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27, + "bbox_fs": [ + 105, + 493, + 478, + 505 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 514, + 505, + 560 + ], + "lines": [ + { + "bbox": [ + 106, + 515, + 505, + 527 + ], + "spans": [ + { + "bbox": [ + 106, + 515, + 505, + 527 + ], + "score": 1.0, + "content": "Theorem 1 (Relationship between feature influence and label influence) Assume the activation", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 526, + 505, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 526, + 264, + 538 + ], + "score": 1.0, + "content": "function used in GCN is ReLU. Denote", + "type": "text" + }, + { + "bbox": [ + 264, + 528, + 275, + 537 + ], + "score": 0.84, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 526, + 366, + 538 + ], + "score": 1.0, + "content": "as an unlabeled node,", + "type": "text" + }, + { + "bbox": [ + 366, + 528, + 376, + 537 + ], + "score": 0.83, + "content": "v _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 377, + 526, + 470, + 538 + ], + "score": 1.0, + "content": "as a labeled node, and", + "type": "text" + }, + { + "bbox": [ + 470, + 527, + 478, + 537 + ], + "score": 0.83, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 478, + 526, + 505, + 538 + ], + "score": 1.0, + "content": "as the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 537, + 505, + 549 + ], + "spans": [ + { + "bbox": [ + 105, + 537, + 329, + 549 + ], + "score": 1.0, + "content": "fraction of unlabeled nodes. Then the label influence of", + "type": "text" + }, + { + "bbox": [ + 329, + 538, + 339, + 548 + ], + "score": 0.84, + "content": "v _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 537, + 352, + 549 + ], + "score": 1.0, + "content": "on", + "type": "text" + }, + { + "bbox": [ + 353, + 539, + 363, + 548 + ], + "score": 0.85, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 364, + 537, + 385, + 549 + ], + "score": 1.0, + "content": "after", + "type": "text" + }, + { + "bbox": [ + 386, + 537, + 393, + 547 + ], + "score": 0.78, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 537, + 505, + 549 + ], + "score": 1.0, + "content": "iterations of LPA equals, in", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 548, + 483, + 560 + ], + "spans": [ + { + "bbox": [ + 105, + 548, + 354, + 560 + ], + "score": 1.0, + "content": "expectation, to the cumulative normalized feature influence of", + "type": "text" + }, + { + "bbox": [ + 355, + 550, + 365, + 559 + ], + "score": 0.82, + "content": "v _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 365, + 548, + 378, + 560 + ], + "score": 1.0, + "content": "on", + "type": "text" + }, + { + "bbox": [ + 379, + 550, + 389, + 559 + ], + "score": 0.85, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 548, + 412, + 560 + ], + "score": 1.0, + "content": "after", + "type": "text" + }, + { + "bbox": [ + 412, + 549, + 419, + 558 + ], + "score": 0.76, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 419, + 548, + 483, + 560 + ], + "score": 1.0, + "content": "layers of GCN:", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 29.5, + "bbox_fs": [ + 105, + 515, + 505, + 560 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 219, + 564, + 391, + 588 + ], + "lines": [ + { + "bbox": [ + 219, + 564, + 391, + 588 + ], + "spans": [ + { + "bbox": [ + 219, + 564, + 391, + 588 + ], + "score": 0.94, + "content": "\\mathbb { E } \\big [ I _ { l } ( v _ { a } , v _ { b } ; k ) \\big ] = \\sum _ { j = 1 } ^ { k } \\beta ^ { j } \\tilde { I } _ { f } ( v _ { a } , v _ { b } ; j ) .", + "type": "interline_equation", + "image_path": "efb2d928aa652184175dd6f91edd01e6c4c2d70c8b465e480de443426bcf1d48.jpg" + } + ] + } + ], + "index": 32, + "virtual_lines": [ + { + "bbox": [ + 219, + 564, + 391, + 588 + ], + "spans": [], + "index": 32 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 597, + 505, + 632 + ], + "lines": [ + { + "bbox": [ + 105, + 598, + 505, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 598, + 399, + 610 + ], + "score": 1.0, + "content": "Proof of Theorem 1 is in Appendix A. Intuitively, Theorem 1 shows that if", + "type": "text" + }, + { + "bbox": [ + 399, + 600, + 409, + 609 + ], + "score": 0.85, + "content": "v _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 409, + 598, + 505, + 610 + ], + "score": 1.0, + "content": "has high label influence", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 609, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 609, + 119, + 622 + ], + "score": 1.0, + "content": "on", + "type": "text" + }, + { + "bbox": [ + 120, + 611, + 131, + 621 + ], + "score": 0.85, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 609, + 268, + 622 + ], + "score": 1.0, + "content": ", then the initial feature vector of", + "type": "text" + }, + { + "bbox": [ + 269, + 610, + 279, + 621 + ], + "score": 0.86, + "content": "v _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 609, + 460, + 622 + ], + "score": 1.0, + "content": "will also affect the output feature vector of", + "type": "text" + }, + { + "bbox": [ + 460, + 611, + 471, + 621 + ], + "score": 0.86, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 471, + 609, + 505, + 622 + ], + "score": 1.0, + "content": "greatly.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 619, + 505, + 633 + ], + "spans": [ + { + "bbox": [ + 105, + 619, + 505, + 633 + ], + "score": 1.0, + "content": "Theorem 1 provides the theoretical guideline for designing our unified model in the next subsection.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34, + "bbox_fs": [ + 105, + 598, + 505, + 633 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 645, + 223, + 657 + ], + "lines": [ + { + "bbox": [ + 106, + 644, + 225, + 657 + ], + "spans": [ + { + "bbox": [ + 106, + 644, + 225, + 657 + ], + "score": 1.0, + "content": "2.3 THE UNIFIED MODEL", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 107, + 665, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 666, + 505, + 677 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 505, + 677 + ], + "score": 1.0, + "content": "Before introducing the proposed model, we rethink the GCN method and see what an ideal set of", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 676, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 676, + 505, + 689 + ], + "score": 1.0, + "content": "node representations should be like. Since we aim to classify nodes, the perfect node representation", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "score": 1.0, + "content": "would be such that nodes with the same label are embedded closely together, which would give a", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "large separation between different classes. Intuitively, the key to achieve this goal is to enable nodes", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "within the same class to connect more strongly with each other, so that they are pushed together by", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 720, + 505, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 734 + ], + "score": 1.0, + "content": "GCN (more discussion is presented in Section 2.4). We can therefore make edge strengths/weights", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 102, + 79, + 504, + 100 + ], + "spans": [ + { + "bbox": [ + 102, + 79, + 366, + 100 + ], + "score": 1.0, + "content": "trainable, then learn to increase the intra-class feature influence:", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 366, + 81, + 504, + 96 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\sum _ { i \\in \\mathcal { L } } \\sum _ { v _ { a } , v _ { b } : y _ { a } = i , y _ { b } = i } \\tilde { I } _ { f } ( v _ { a } , v _ { b } ) } \\end{array}", + "type": "inline_equation", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 94, + 505, + 107 + ], + "spans": [ + { + "bbox": [ + 106, + 94, + 110, + 107 + ], + "score": 1.0, + "content": "(", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 110, + 95, + 118, + 105 + ], + "score": 0.68, + "content": "\\mathcal { L }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 119, + 94, + 505, + 107 + ], + "score": 1.0, + "content": "is the label set), by adjusting edge weights. However, this requires operating on Jacobian ma-", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 104, + 104, + 506, + 119 + ], + "spans": [ + { + "bbox": [ + 104, + 104, + 197, + 119 + ], + "score": 1.0, + "content": "trices with the size of", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 197, + 105, + 245, + 117 + ], + "score": 0.91, + "content": "d ^ { ( 0 ) } \\times d ^ { ( \\mathrm { \\bar { \\tiny { K } } } ) }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 251, + 105, + 268, + 117 + ], + "score": 0.87, + "content": "\\bar { \\boldsymbol { d } } ^ { ( 0 ) }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 268, + 104, + 287, + 119 + ], + "score": 1.0, + "content": "and", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 287, + 105, + 307, + 117 + ], + "score": 0.91, + "content": "d ^ { ( K ) }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 307, + 104, + 506, + 119 + ], + "score": 1.0, + "content": "are the dimensions of input and output in GCN,", + "type": "text", + "cross_page": true + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 117, + 506, + 131 + ], + "spans": [ + { + "bbox": [ + 105, + 117, + 506, + 131 + ], + "score": 1.0, + "content": "respectively), which is impractical if initial node features are high-dimensional. Fortunately, we", + "type": "text", + "cross_page": true + } + ], + "index": 3 + }, + { + "bbox": [ + 103, + 126, + 507, + 147 + ], + "spans": [ + { + "bbox": [ + 103, + 126, + 366, + 147 + ], + "score": 1.0, + "content": "can turn to optimizing the intra-class label influence instead, i.e.,", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 366, + 128, + 501, + 142 + ], + "score": 0.89, + "content": "\\begin{array} { r } { \\dot { \\sum _ { i \\in \\mathcal { L } } } \\sum _ { v _ { a } , v _ { b } : y _ { a } = i , y _ { b } = i } I _ { l } ( v _ { a } , v _ { b } ) } \\end{array}", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 501, + 126, + 507, + 147 + ], + "score": 1.0, + "content": ",", + "type": "text", + "cross_page": true + } + ], + "index": 4 + }, + { + "bbox": [ + 102, + 138, + 507, + 159 + ], + "spans": [ + { + "bbox": [ + 102, + 138, + 248, + 159 + ], + "score": 1.0, + "content": "according to Theorem 1. Note that", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 249, + 141, + 502, + 155 + ], + "score": 0.9, + "content": "\\begin{array} { r } { \\sum _ { i \\in \\mathcal { L } } \\sum _ { v _ { a } , v _ { b } : y _ { a } = i , y _ { b } = i } I _ { l } ( v _ { a } , v _ { b } ) = \\sum _ { v _ { a } } \\sum _ { v _ { b } : y _ { b } = y _ { a } } I _ { l } ( v _ { a } , v _ { b } ) } \\end{array}", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 502, + 138, + 507, + 159 + ], + "score": 1.0, + "content": ".", + "type": "text", + "cross_page": true + } + ], + "index": 5 + }, + { + "bbox": [ + 102, + 150, + 508, + 173 + ], + "spans": [ + { + "bbox": [ + 102, + 150, + 338, + 173 + ], + "score": 1.0, + "content": "We further show, by the following theorem, that the term", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 338, + 154, + 421, + 168 + ], + "score": 0.91, + "content": "\\scriptstyle \\sum _ { v _ { b } : y _ { b } = y _ { a } } I _ { l } ( v _ { a } , v _ { b } )", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 421, + 150, + 508, + 173 + ], + "score": 1.0, + "content": "(the total intra-class", + "type": "text", + "cross_page": true + } + ], + "index": 6 + }, + { + "bbox": [ + 104, + 165, + 505, + 179 + ], + "spans": [ + { + "bbox": [ + 104, + 165, + 236, + 179 + ], + "score": 1.0, + "content": "label influence on a given node", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 236, + 168, + 247, + 177 + ], + "score": 0.81, + "content": "v _ { a }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 247, + 165, + 404, + 179 + ], + "score": 1.0, + "content": ") is proportional to the probability that", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 405, + 168, + 415, + 177 + ], + "score": 0.82, + "content": "v _ { a }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 416, + 165, + 505, + 179 + ], + "score": 1.0, + "content": "is classified correctly", + "type": "text", + "cross_page": true + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 177, + 143, + 190 + ], + "spans": [ + { + "bbox": [ + 105, + 177, + 143, + 190 + ], + "score": 1.0, + "content": "by LPA:", + "type": "text", + "cross_page": true + } + ], + "index": 8 + } + ], + "index": 39.5, + "bbox_fs": [ + 105, + 666, + 506, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 80, + 505, + 189 + ], + "lines": [ + { + "bbox": [ + 102, + 79, + 504, + 100 + ], + "spans": [ + { + "bbox": [ + 102, + 79, + 366, + 100 + ], + "score": 1.0, + "content": "trainable, then learn to increase the intra-class feature influence:", + "type": "text" + }, + { + "bbox": [ + 366, + 81, + 504, + 96 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\sum _ { i \\in \\mathcal { L } } \\sum _ { v _ { a } , v _ { b } : y _ { a } = i , y _ { b } = i } \\tilde { I } _ { f } ( v _ { a } , v _ { b } ) } \\end{array}", + "type": "inline_equation" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 94, + 505, + 107 + ], + "spans": [ + { + "bbox": [ + 106, + 94, + 110, + 107 + ], + "score": 1.0, + "content": "(", + "type": "text" + }, + { + "bbox": [ + 110, + 95, + 118, + 105 + ], + "score": 0.68, + "content": "\\mathcal { L }", + "type": "inline_equation" + }, + { + "bbox": [ + 119, + 94, + 505, + 107 + ], + "score": 1.0, + "content": "is the label set), by adjusting edge weights. However, this requires operating on Jacobian ma-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 104, + 104, + 506, + 119 + ], + "spans": [ + { + "bbox": [ + 104, + 104, + 197, + 119 + ], + "score": 1.0, + "content": "trices with the size of", + "type": "text" + }, + { + "bbox": [ + 197, + 105, + 245, + 117 + ], + "score": 0.91, + "content": "d ^ { ( 0 ) } \\times d ^ { ( \\mathrm { \\bar { \\tiny { K } } } ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 251, + 105, + 268, + 117 + ], + "score": 0.87, + "content": "\\bar { \\boldsymbol { d } } ^ { ( 0 ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 104, + 287, + 119 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 287, + 105, + 307, + 117 + ], + "score": 0.91, + "content": "d ^ { ( K ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 307, + 104, + 506, + 119 + ], + "score": 1.0, + "content": "are the dimensions of input and output in GCN,", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 117, + 506, + 131 + ], + "spans": [ + { + "bbox": [ + 105, + 117, + 506, + 131 + ], + "score": 1.0, + "content": "respectively), which is impractical if initial node features are high-dimensional. Fortunately, we", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 103, + 126, + 507, + 147 + ], + "spans": [ + { + "bbox": [ + 103, + 126, + 366, + 147 + ], + "score": 1.0, + "content": "can turn to optimizing the intra-class label influence instead, i.e.,", + "type": "text" + }, + { + "bbox": [ + 366, + 128, + 501, + 142 + ], + "score": 0.89, + "content": "\\begin{array} { r } { \\dot { \\sum _ { i \\in \\mathcal { L } } } \\sum _ { v _ { a } , v _ { b } : y _ { a } = i , y _ { b } = i } I _ { l } ( v _ { a } , v _ { b } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 126, + 507, + 147 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 102, + 138, + 507, + 159 + ], + "spans": [ + { + "bbox": [ + 102, + 138, + 248, + 159 + ], + "score": 1.0, + "content": "according to Theorem 1. Note that", + "type": "text" + }, + { + "bbox": [ + 249, + 141, + 502, + 155 + ], + "score": 0.9, + "content": "\\begin{array} { r } { \\sum _ { i \\in \\mathcal { L } } \\sum _ { v _ { a } , v _ { b } : y _ { a } = i , y _ { b } = i } I _ { l } ( v _ { a } , v _ { b } ) = \\sum _ { v _ { a } } \\sum _ { v _ { b } : y _ { b } = y _ { a } } I _ { l } ( v _ { a } , v _ { b } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 138, + 507, + 159 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 102, + 150, + 508, + 173 + ], + "spans": [ + { + "bbox": [ + 102, + 150, + 338, + 173 + ], + "score": 1.0, + "content": "We further show, by the following theorem, that the term", + "type": "text" + }, + { + "bbox": [ + 338, + 154, + 421, + 168 + ], + "score": 0.91, + "content": "\\scriptstyle \\sum _ { v _ { b } : y _ { b } = y _ { a } } I _ { l } ( v _ { a } , v _ { b } )", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 150, + 508, + 173 + ], + "score": 1.0, + "content": "(the total intra-class", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 104, + 165, + 505, + 179 + ], + "spans": [ + { + "bbox": [ + 104, + 165, + 236, + 179 + ], + "score": 1.0, + "content": "label influence on a given node", + "type": "text" + }, + { + "bbox": [ + 236, + 168, + 247, + 177 + ], + "score": 0.81, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 247, + 165, + 404, + 179 + ], + "score": 1.0, + "content": ") is proportional to the probability that", + "type": "text" + }, + { + "bbox": [ + 405, + 168, + 415, + 177 + ], + "score": 0.82, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 165, + 505, + 179 + ], + "score": 1.0, + "content": "is classified correctly", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 177, + 143, + 190 + ], + "spans": [ + { + "bbox": [ + 105, + 177, + 143, + 190 + ], + "score": 1.0, + "content": "by LPA:", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 107, + 196, + 505, + 230 + ], + "lines": [ + { + "bbox": [ + 106, + 196, + 505, + 208 + ], + "spans": [ + { + "bbox": [ + 106, + 196, + 505, + 208 + ], + "score": 1.0, + "content": "Theorem 2 (Relationship between label influence and LPA’s prediction) Consider a given node", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 107, + 207, + 506, + 220 + ], + "spans": [ + { + "bbox": [ + 107, + 209, + 117, + 218 + ], + "score": 0.83, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 118, + 207, + 173, + 220 + ], + "score": 1.0, + "content": "and its label", + "type": "text" + }, + { + "bbox": [ + 173, + 209, + 183, + 219 + ], + "score": 0.84, + "content": "y _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 184, + 207, + 258, + 220 + ], + "score": 1.0, + "content": ". If we treat node", + "type": "text" + }, + { + "bbox": [ + 258, + 209, + 269, + 218 + ], + "score": 0.85, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 270, + 207, + 506, + 220 + ], + "score": 1.0, + "content": "as unlabeled, then the total label influence of nodes with", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 217, + 480, + 231 + ], + "spans": [ + { + "bbox": [ + 105, + 217, + 128, + 231 + ], + "score": 1.0, + "content": "label", + "type": "text" + }, + { + "bbox": [ + 129, + 219, + 140, + 230 + ], + "score": 0.86, + "content": "y _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 217, + 175, + 231 + ], + "score": 1.0, + "content": "on node", + "type": "text" + }, + { + "bbox": [ + 176, + 220, + 186, + 230 + ], + "score": 0.86, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 186, + 217, + 360, + 231 + ], + "score": 1.0, + "content": "is proportional to the probability that node", + "type": "text" + }, + { + "bbox": [ + 361, + 220, + 371, + 230 + ], + "score": 0.86, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 217, + 433, + 231 + ], + "score": 1.0, + "content": "is classified as", + "type": "text" + }, + { + "bbox": [ + 433, + 219, + 444, + 230 + ], + "score": 0.84, + "content": "y _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 217, + 457, + 231 + ], + "score": 1.0, + "content": "by", + "type": "text" + }, + { + "bbox": [ + 457, + 219, + 475, + 228 + ], + "score": 0.58, + "content": "L P A", + "type": "inline_equation" + }, + { + "bbox": [ + 475, + 217, + 480, + 231 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10 + }, + { + "type": "interline_equation", + "bbox": [ + 225, + 231, + 386, + 258 + ], + "lines": [ + { + "bbox": [ + 225, + 231, + 386, + 258 + ], + "spans": [ + { + "bbox": [ + 225, + 231, + 386, + 258 + ], + "score": 0.93, + "content": "\\sum _ { v _ { b } : y _ { b } = y _ { a } } I _ { l } ( v _ { a } , v _ { b } ; k ) \\propto \\mathrm { P r } \\big ( \\hat { y } _ { a } ^ { l p a } = y _ { a } \\big ) ,", + "type": "interline_equation", + "image_path": "d4d7c1bdebb9ce0d72fb24be3bde36eba48dc9aeb0502bde3f41049973dcd455.jpg" + } + ] + } + ], + "index": 12.5, + "virtual_lines": [ + { + "bbox": [ + 225, + 231, + 386, + 244.5 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 225, + 244.5, + 386, + 258.0 + ], + "spans": [], + "index": 13 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 260, + 358, + 272 + ], + "lines": [ + { + "bbox": [ + 105, + 258, + 355, + 275 + ], + "spans": [ + { + "bbox": [ + 105, + 258, + 133, + 275 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 259, + 150, + 272 + ], + "score": 0.92, + "content": "\\hat { y } _ { a } ^ { l p a }", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 258, + 248, + 275 + ], + "score": 1.0, + "content": "is the predicted label of", + "type": "text" + }, + { + "bbox": [ + 249, + 262, + 259, + 271 + ], + "score": 0.87, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 258, + 292, + 275 + ], + "score": 1.0, + "content": "using a", + "type": "text" + }, + { + "bbox": [ + 292, + 261, + 299, + 270 + ], + "score": 0.78, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 258, + 337, + 275 + ], + "score": 1.0, + "content": "-iteration", + "type": "text" + }, + { + "bbox": [ + 337, + 261, + 355, + 270 + ], + "score": 0.31, + "content": "L P A", + "type": "inline_equation" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 106, + 279, + 505, + 323 + ], + "lines": [ + { + "bbox": [ + 105, + 278, + 505, + 292 + ], + "spans": [ + { + "bbox": [ + 105, + 278, + 438, + 292 + ], + "score": 1.0, + "content": "Proof of Theorem 2 is in Appendix B. Theorem 2 indicates that, if edge weights", + "type": "text" + }, + { + "bbox": [ + 438, + 279, + 461, + 291 + ], + "score": 0.92, + "content": "\\{ a _ { i j } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 462, + 278, + 505, + 292 + ], + "score": 1.0, + "content": "maximize", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 290, + 505, + 302 + ], + "spans": [ + { + "bbox": [ + 106, + 290, + 186, + 302 + ], + "score": 1.0, + "content": "the probability that", + "type": "text" + }, + { + "bbox": [ + 186, + 292, + 197, + 301 + ], + "score": 0.86, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 197, + 290, + 505, + 302 + ], + "score": 1.0, + "content": "is correctly classified by LPA, then they also maximize the intra-class label", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 301, + 505, + 314 + ], + "spans": [ + { + "bbox": [ + 105, + 301, + 181, + 314 + ], + "score": 1.0, + "content": "influence on node", + "type": "text" + }, + { + "bbox": [ + 181, + 303, + 191, + 312 + ], + "score": 0.85, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 301, + 414, + 314 + ], + "score": 1.0, + "content": ". We can therefore first learn the optimal edge weights", + "type": "text" + }, + { + "bbox": [ + 414, + 302, + 427, + 312 + ], + "score": 0.87, + "content": "A ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 427, + 301, + 505, + 314 + ], + "score": 1.0, + "content": "by minimizing the", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 312, + 241, + 324 + ], + "spans": [ + { + "bbox": [ + 105, + 312, + 241, + 324 + ], + "score": 1.0, + "content": "loss of predicted labels by LPA:2", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 16.5 + }, + { + "type": "interline_equation", + "bbox": [ + 187, + 324, + 423, + 355 + ], + "lines": [ + { + "bbox": [ + 187, + 324, + 423, + 355 + ], + "spans": [ + { + "bbox": [ + 187, + 324, + 423, + 355 + ], + "score": 0.94, + "content": "A ^ { * } = \\underset { A } { \\arg \\operatorname* { m i n } } L _ { l p a } ( A ) = \\underset { A } { \\arg \\operatorname* { m i n } } \\ \\frac { 1 } { m } \\sum _ { v _ { a } : a \\leq m } J ( \\hat { y } _ { a } ^ { l p a } , y _ { a } ) ,", + "type": "interline_equation", + "image_path": "d849c3b9c267c9a80474afb3da282b23e150c5031efc4fd9b375bb8fc408527f.jpg" + } + ] + } + ], + "index": 19.5, + "virtual_lines": [ + { + "bbox": [ + 187, + 324, + 423, + 339.5 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 187, + 339.5, + 423, + 355.0 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 356, + 505, + 433 + ], + "lines": [ + { + "bbox": [ + 105, + 356, + 506, + 371 + ], + "spans": [ + { + "bbox": [ + 105, + 356, + 133, + 371 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 358, + 141, + 367 + ], + "score": 0.82, + "content": "J", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 356, + 240, + 371 + ], + "score": 1.0, + "content": "is the cross-entropy loss,", + "type": "text" + }, + { + "bbox": [ + 240, + 356, + 258, + 369 + ], + "score": 0.92, + "content": "\\hat { y } _ { a } ^ { l p a }", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 356, + 275, + 371 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 275, + 358, + 286, + 369 + ], + "score": 0.86, + "content": "y _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 356, + 433, + 371 + ], + "score": 1.0, + "content": "are the predicted label distribution of", + "type": "text" + }, + { + "bbox": [ + 433, + 358, + 444, + 368 + ], + "score": 0.86, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 356, + 506, + 371 + ], + "score": 1.0, + "content": "using LPA and", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 368, + 505, + 380 + ], + "spans": [ + { + "bbox": [ + 106, + 368, + 206, + 380 + ], + "score": 1.0, + "content": "the true one-hot label of", + "type": "text" + }, + { + "bbox": [ + 207, + 370, + 217, + 379 + ], + "score": 0.86, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 368, + 275, + 380 + ], + "score": 1.0, + "content": ", respectively.", + "type": "text" + }, + { + "bbox": [ + 275, + 369, + 306, + 379 + ], + "score": 0.91, + "content": "a \\leq m", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 368, + 335, + 380 + ], + "score": 1.0, + "content": "means", + "type": "text" + }, + { + "bbox": [ + 335, + 370, + 346, + 379 + ], + "score": 0.87, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 368, + 444, + 380 + ], + "score": 1.0, + "content": "is labeled. The optimal", + "type": "text" + }, + { + "bbox": [ + 445, + 369, + 457, + 379 + ], + "score": 0.87, + "content": "A ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 458, + 368, + 505, + 380 + ], + "score": 1.0, + "content": "maximizes", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 379, + 505, + 391 + ], + "spans": [ + { + "bbox": [ + 105, + 379, + 505, + 391 + ], + "score": 1.0, + "content": "the probability that each node is correctly labeled by LPA, thus also maximizes the intra-class label", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 389, + 505, + 402 + ], + "spans": [ + { + "bbox": [ + 105, + 389, + 505, + 402 + ], + "score": 1.0, + "content": "influence (according to Theorem 2) and intra-class feature influence (according to Theorem 1). Since", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 107, + 401, + 505, + 414 + ], + "spans": [ + { + "bbox": [ + 107, + 401, + 120, + 411 + ], + "score": 0.85, + "content": "A ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 120, + 401, + 505, + 414 + ], + "score": 1.0, + "content": "increases the connection strength within each class, it is expected to improve the performance", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 412, + 506, + 424 + ], + "spans": [ + { + "bbox": [ + 105, + 412, + 326, + 424 + ], + "score": 1.0, + "content": "of GCN compared with the original adjacency matrix", + "type": "text" + }, + { + "bbox": [ + 326, + 412, + 334, + 422 + ], + "score": 0.79, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 412, + 437, + 424 + ], + "score": 1.0, + "content": ". Therefore, we can plug", + "type": "text" + }, + { + "bbox": [ + 437, + 412, + 450, + 422 + ], + "score": 0.87, + "content": "A ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 412, + 506, + 424 + ], + "score": 1.0, + "content": "into GCN to", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 424, + 165, + 434 + ], + "spans": [ + { + "bbox": [ + 105, + 424, + 165, + 434 + ], + "score": 1.0, + "content": "predict labels:", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 24 + }, + { + "type": "interline_equation", + "bbox": [ + 201, + 433, + 409, + 448 + ], + "lines": [ + { + "bbox": [ + 201, + 433, + 409, + 448 + ], + "spans": [ + { + "bbox": [ + 201, + 433, + 409, + 448 + ], + "score": 0.9, + "content": "X ^ { ( k + 1 ) } = \\sigma ( A ^ { * } X ^ { ( k ) } W ^ { ( k ) } ) , k = 0 , 1 , \\cdots , K - 1 .", + "type": "interline_equation", + "image_path": "32e2c0872ed537218face474de4c89a6397c37a9e19b4b55f4e3f5c4b0e23c61.jpg" + } + ] + } + ], + "index": 28, + "virtual_lines": [ + { + "bbox": [ + 201, + 433, + 409, + 448 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 448, + 505, + 482 + ], + "lines": [ + { + "bbox": [ + 103, + 446, + 507, + 463 + ], + "spans": [ + { + "bbox": [ + 103, + 446, + 138, + 463 + ], + "score": 1.0, + "content": "We use", + "type": "text" + }, + { + "bbox": [ + 138, + 450, + 158, + 461 + ], + "score": 0.91, + "content": "\\hat { y } _ { a } ^ { g c n }", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 446, + 177, + 463 + ], + "score": 1.0, + "content": ", the", + "type": "text" + }, + { + "bbox": [ + 177, + 451, + 183, + 459 + ], + "score": 0.79, + "content": "a", + "type": "inline_equation" + }, + { + "bbox": [ + 184, + 446, + 225, + 463 + ], + "score": 1.0, + "content": "-th row of", + "type": "text" + }, + { + "bbox": [ + 225, + 448, + 249, + 459 + ], + "score": 0.9, + "content": "X ^ { ( K ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 446, + 429, + 463 + ], + "score": 1.0, + "content": ", to denote the predicted label distribution of", + "type": "text" + }, + { + "bbox": [ + 430, + 451, + 441, + 460 + ], + "score": 0.87, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 446, + 507, + 463 + ], + "score": 1.0, + "content": "using the GCN", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 460, + 505, + 473 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 505, + 473 + ], + "score": 1.0, + "content": "specified in Eq. (7). Then the optimal transformation matrices in the GCN can be learned by", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 471, + 302, + 482 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 302, + 482 + ], + "score": 1.0, + "content": "minimizing the loss of predicted labels by GCN:", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30 + }, + { + "type": "interline_equation", + "bbox": [ + 176, + 483, + 434, + 514 + ], + "lines": [ + { + "bbox": [ + 176, + 483, + 434, + 514 + ], + "spans": [ + { + "bbox": [ + 176, + 483, + 434, + 514 + ], + "score": 0.92, + "content": "W ^ { * } = \\arg \\operatorname* { m i n } _ { W } L _ { g c n } ( W , A ^ { * } ) = \\arg \\operatorname* { m i n } _ { W } \\frac { 1 } { m } \\sum _ { v _ { a } : a \\leq m } J ( \\hat { y } _ { a } ^ { g c n } , y _ { a } ) ,", + "type": "interline_equation", + "image_path": "1660ec940e6d623e0ea431c1825efe2ef0176f0a049d9f24d52fdc87fdcc1540.jpg" + } + ] + } + ], + "index": 33, + "virtual_lines": [ + { + "bbox": [ + 176, + 483, + 434, + 493.3333333333333 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 176, + 493.3333333333333, + 434, + 503.66666666666663 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 176, + 503.66666666666663, + 434, + 514.0 + ], + "spans": [], + "index": 34 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 520, + 502, + 542 + ], + "lines": [ + { + "bbox": [ + 105, + 519, + 503, + 532 + ], + "spans": [ + { + "bbox": [ + 105, + 519, + 503, + 532 + ], + "score": 1.0, + "content": "It is more elegant (and empirically better) to combine the above two steps together into a multi-", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 532, + 445, + 543 + ], + "spans": [ + { + "bbox": [ + 106, + 532, + 445, + 543 + ], + "score": 1.0, + "content": "objective optimization problem, and train the whole model in an end-to-end fashion:", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5 + }, + { + "type": "interline_equation", + "bbox": [ + 212, + 543, + 398, + 565 + ], + "lines": [ + { + "bbox": [ + 212, + 543, + 398, + 565 + ], + "spans": [ + { + "bbox": [ + 212, + 543, + 398, + 565 + ], + "score": 0.91, + "content": "W ^ { * } , A ^ { * } = \\underset { W , A } { \\arg \\operatorname* { m i n } } \\ L _ { g c n } ( W , A ) + \\lambda L _ { l p a } ( A ) ,", + "type": "interline_equation", + "image_path": "b92ebe68fe041dacb89e80ef62d643e7a5a3c1b97063911c0781bc81ffb5e77a.jpg" + } + ] + } + ], + "index": 37, + "virtual_lines": [ + { + "bbox": [ + 212, + 543, + 398, + 565 + ], + "spans": [], + "index": 37 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 566, + 505, + 622 + ], + "lines": [ + { + "bbox": [ + 106, + 565, + 506, + 580 + ], + "spans": [ + { + "bbox": [ + 106, + 565, + 133, + 580 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 567, + 141, + 576 + ], + "score": 0.81, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 565, + 327, + 580 + ], + "score": 1.0, + "content": "is the balancing hyper-parameter. In this way,", + "type": "text" + }, + { + "bbox": [ + 327, + 567, + 362, + 578 + ], + "score": 0.92, + "content": "L _ { l p a } ( A )", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 565, + 506, + 580 + ], + "score": 1.0, + "content": "serves as a regularization term that", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 577, + 505, + 590 + ], + "spans": [ + { + "bbox": [ + 106, + 577, + 246, + 590 + ], + "score": 1.0, + "content": "assists the learning of edge weights", + "type": "text" + }, + { + "bbox": [ + 247, + 578, + 255, + 587 + ], + "score": 0.77, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 577, + 404, + 590 + ], + "score": 1.0, + "content": ", since it is hard for GCN to learn both", + "type": "text" + }, + { + "bbox": [ + 404, + 578, + 416, + 588 + ], + "score": 0.62, + "content": "W", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 577, + 433, + 590 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 433, + 578, + 442, + 587 + ], + "score": 0.78, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 577, + 505, + 590 + ], + "score": 1.0, + "content": "simultaneously", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 588, + 506, + 601 + ], + "spans": [ + { + "bbox": [ + 106, + 588, + 506, + 601 + ], + "score": 1.0, + "content": "due to overfitting. The proposed GCN-LPA approach can also be seen as learning the importance of", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 597, + 505, + 613 + ], + "spans": [ + { + "bbox": [ + 105, + 597, + 505, + 613 + ], + "score": 1.0, + "content": "edges that can be used to reconstruct node labels accurately by LPA, then transferring this knowledge", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 610, + 280, + 622 + ], + "spans": [ + { + "bbox": [ + 106, + 610, + 280, + 622 + ], + "score": 1.0, + "content": "from label space to feature space for GCN.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 40 + }, + { + "type": "text", + "bbox": [ + 106, + 626, + 505, + 695 + ], + "lines": [ + { + "bbox": [ + 105, + 626, + 504, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 268, + 639 + ], + "score": 1.0, + "content": "It is also worth noticing how the optimal", + "type": "text" + }, + { + "bbox": [ + 269, + 627, + 281, + 637 + ], + "score": 0.88, + "content": "A ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 626, + 504, + 639 + ], + "score": 1.0, + "content": "is configured. The principle here is that we do not mod-", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 637, + 505, + 652 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 505, + 652 + ], + "score": 1.0, + "content": "ify the basic structure of the original graph (i.e., not adding or removing edges) but only adjusting", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 648, + 505, + 663 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 421, + 663 + ], + "score": 1.0, + "content": "weights of existing edges. This is equivalent to learning a positive mask matrix", + "type": "text" + }, + { + "bbox": [ + 421, + 650, + 433, + 659 + ], + "score": 0.77, + "content": "M", + "type": "inline_equation" + }, + { + "bbox": [ + 434, + 648, + 505, + 663 + ], + "score": 1.0, + "content": "for the adjacency", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 660, + 506, + 673 + ], + "spans": [ + { + "bbox": [ + 105, + 660, + 135, + 673 + ], + "score": 1.0, + "content": "matrix", + "type": "text" + }, + { + "bbox": [ + 135, + 661, + 144, + 670 + ], + "score": 0.72, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 660, + 282, + 673 + ], + "score": 1.0, + "content": "and taking the Hadamard product", + "type": "text" + }, + { + "bbox": [ + 283, + 660, + 338, + 671 + ], + "score": 0.91, + "content": "M \\circ A = A ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 660, + 399, + 673 + ], + "score": 1.0, + "content": ". Each element", + "type": "text" + }, + { + "bbox": [ + 400, + 660, + 417, + 672 + ], + "score": 0.89, + "content": "M _ { i j }", + "type": "inline_equation" + }, + { + "bbox": [ + 418, + 660, + 506, + 673 + ], + "score": 1.0, + "content": "can be set as either a", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 104, + 671, + 504, + 685 + ], + "spans": [ + { + "bbox": [ + 104, + 671, + 338, + 685 + ], + "score": 1.0, + "content": "free variable or a function of the two nodes, for example,", + "type": "text" + }, + { + "bbox": [ + 338, + 672, + 465, + 685 + ], + "score": 0.9, + "content": "M _ { i j } = \\log \\left( \\exp ( \\mathbf { x } _ { i } ^ { \\top } \\mathbf { H } \\mathbf { x } _ { j } ) + 1 \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 465, + 671, + 493, + 685 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 494, + 672, + 504, + 683 + ], + "score": 0.39, + "content": "\\mathbf { H }", + "type": "inline_equation" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 683, + 347, + 696 + ], + "spans": [ + { + "bbox": [ + 105, + 683, + 347, + 696 + ], + "score": 1.0, + "content": "is a learnable kernel matrix for measuring feature similarity.", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 45.5 + } + ], + "page_idx": 3, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 701, + 504, + 731 + ], + "lines": [ + { + "bbox": [ + 118, + 699, + 506, + 714 + ], + "spans": [ + { + "bbox": [ + 118, + 699, + 235, + 714 + ], + "score": 1.0, + "content": "2Here the optimal edge weights", + "type": "text" + }, + { + "bbox": [ + 236, + 703, + 248, + 711 + ], + "score": 0.85, + "content": "A ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 699, + 415, + 714 + ], + "score": 1.0, + "content": "share the same topology as the original graph", + "type": "text" + }, + { + "bbox": [ + 415, + 702, + 422, + 711 + ], + "score": 0.81, + "content": "\\mathcal { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 423, + 699, + 506, + 714 + ], + "score": 1.0, + "content": ", i.e., we do not add or", + "type": "text" + } + ] + }, + { + "bbox": [ + 105, + 711, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 711, + 178, + 722 + ], + "score": 1.0, + "content": "remove edges from", + "type": "text" + }, + { + "bbox": [ + 178, + 712, + 186, + 721 + ], + "score": 0.81, + "content": "\\mathcal { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 186, + 711, + 506, + 722 + ], + "score": 1.0, + "content": "but only learning the weights of existing edges. See the end of this subsection for more", + "type": "text" + } + ] + }, + { + "bbox": [ + 105, + 720, + 149, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 149, + 732 + ], + "score": 1.0, + "content": "discussion.", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 27, + 307, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 759 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 12, + "width": 9 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 80, + 505, + 189 + ], + "lines": [], + "index": 4, + "bbox_fs": [ + 102, + 79, + 508, + 190 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 196, + 505, + 230 + ], + "lines": [ + { + "bbox": [ + 106, + 196, + 505, + 208 + ], + "spans": [ + { + "bbox": [ + 106, + 196, + 505, + 208 + ], + "score": 1.0, + "content": "Theorem 2 (Relationship between label influence and LPA’s prediction) Consider a given node", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 107, + 207, + 506, + 220 + ], + "spans": [ + { + "bbox": [ + 107, + 209, + 117, + 218 + ], + "score": 0.83, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 118, + 207, + 173, + 220 + ], + "score": 1.0, + "content": "and its label", + "type": "text" + }, + { + "bbox": [ + 173, + 209, + 183, + 219 + ], + "score": 0.84, + "content": "y _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 184, + 207, + 258, + 220 + ], + "score": 1.0, + "content": ". If we treat node", + "type": "text" + }, + { + "bbox": [ + 258, + 209, + 269, + 218 + ], + "score": 0.85, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 270, + 207, + 506, + 220 + ], + "score": 1.0, + "content": "as unlabeled, then the total label influence of nodes with", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 217, + 480, + 231 + ], + "spans": [ + { + "bbox": [ + 105, + 217, + 128, + 231 + ], + "score": 1.0, + "content": "label", + "type": "text" + }, + { + "bbox": [ + 129, + 219, + 140, + 230 + ], + "score": 0.86, + "content": "y _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 217, + 175, + 231 + ], + "score": 1.0, + "content": "on node", + "type": "text" + }, + { + "bbox": [ + 176, + 220, + 186, + 230 + ], + "score": 0.86, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 186, + 217, + 360, + 231 + ], + "score": 1.0, + "content": "is proportional to the probability that node", + "type": "text" + }, + { + "bbox": [ + 361, + 220, + 371, + 230 + ], + "score": 0.86, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 217, + 433, + 231 + ], + "score": 1.0, + "content": "is classified as", + "type": "text" + }, + { + "bbox": [ + 433, + 219, + 444, + 230 + ], + "score": 0.84, + "content": "y _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 217, + 457, + 231 + ], + "score": 1.0, + "content": "by", + "type": "text" + }, + { + "bbox": [ + 457, + 219, + 475, + 228 + ], + "score": 0.58, + "content": "L P A", + "type": "inline_equation" + }, + { + "bbox": [ + 475, + 217, + 480, + 231 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10, + "bbox_fs": [ + 105, + 196, + 506, + 231 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 225, + 231, + 386, + 258 + ], + "lines": [ + { + "bbox": [ + 225, + 231, + 386, + 258 + ], + "spans": [ + { + "bbox": [ + 225, + 231, + 386, + 258 + ], + "score": 0.93, + "content": "\\sum _ { v _ { b } : y _ { b } = y _ { a } } I _ { l } ( v _ { a } , v _ { b } ; k ) \\propto \\mathrm { P r } \\big ( \\hat { y } _ { a } ^ { l p a } = y _ { a } \\big ) ,", + "type": "interline_equation", + "image_path": "d4d7c1bdebb9ce0d72fb24be3bde36eba48dc9aeb0502bde3f41049973dcd455.jpg" + } + ] + } + ], + "index": 12.5, + "virtual_lines": [ + { + "bbox": [ + 225, + 231, + 386, + 244.5 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 225, + 244.5, + 386, + 258.0 + ], + "spans": [], + "index": 13 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 260, + 358, + 272 + ], + "lines": [ + { + "bbox": [ + 105, + 258, + 355, + 275 + ], + "spans": [ + { + "bbox": [ + 105, + 258, + 133, + 275 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 259, + 150, + 272 + ], + "score": 0.92, + "content": "\\hat { y } _ { a } ^ { l p a }", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 258, + 248, + 275 + ], + "score": 1.0, + "content": "is the predicted label of", + "type": "text" + }, + { + "bbox": [ + 249, + 262, + 259, + 271 + ], + "score": 0.87, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 258, + 292, + 275 + ], + "score": 1.0, + "content": "using a", + "type": "text" + }, + { + "bbox": [ + 292, + 261, + 299, + 270 + ], + "score": 0.78, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 258, + 337, + 275 + ], + "score": 1.0, + "content": "-iteration", + "type": "text" + }, + { + "bbox": [ + 337, + 261, + 355, + 270 + ], + "score": 0.31, + "content": "L P A", + "type": "inline_equation" + } + ], + "index": 14 + } + ], + "index": 14, + "bbox_fs": [ + 105, + 258, + 355, + 275 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 279, + 505, + 323 + ], + "lines": [ + { + "bbox": [ + 105, + 278, + 505, + 292 + ], + "spans": [ + { + "bbox": [ + 105, + 278, + 438, + 292 + ], + "score": 1.0, + "content": "Proof of Theorem 2 is in Appendix B. Theorem 2 indicates that, if edge weights", + "type": "text" + }, + { + "bbox": [ + 438, + 279, + 461, + 291 + ], + "score": 0.92, + "content": "\\{ a _ { i j } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 462, + 278, + 505, + 292 + ], + "score": 1.0, + "content": "maximize", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 290, + 505, + 302 + ], + "spans": [ + { + "bbox": [ + 106, + 290, + 186, + 302 + ], + "score": 1.0, + "content": "the probability that", + "type": "text" + }, + { + "bbox": [ + 186, + 292, + 197, + 301 + ], + "score": 0.86, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 197, + 290, + 505, + 302 + ], + "score": 1.0, + "content": "is correctly classified by LPA, then they also maximize the intra-class label", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 301, + 505, + 314 + ], + "spans": [ + { + "bbox": [ + 105, + 301, + 181, + 314 + ], + "score": 1.0, + "content": "influence on node", + "type": "text" + }, + { + "bbox": [ + 181, + 303, + 191, + 312 + ], + "score": 0.85, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 301, + 414, + 314 + ], + "score": 1.0, + "content": ". We can therefore first learn the optimal edge weights", + "type": "text" + }, + { + "bbox": [ + 414, + 302, + 427, + 312 + ], + "score": 0.87, + "content": "A ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 427, + 301, + 505, + 314 + ], + "score": 1.0, + "content": "by minimizing the", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 312, + 241, + 324 + ], + "spans": [ + { + "bbox": [ + 105, + 312, + 241, + 324 + ], + "score": 1.0, + "content": "loss of predicted labels by LPA:2", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 16.5, + "bbox_fs": [ + 105, + 278, + 505, + 324 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 187, + 324, + 423, + 355 + ], + "lines": [ + { + "bbox": [ + 187, + 324, + 423, + 355 + ], + "spans": [ + { + "bbox": [ + 187, + 324, + 423, + 355 + ], + "score": 0.94, + "content": "A ^ { * } = \\underset { A } { \\arg \\operatorname* { m i n } } L _ { l p a } ( A ) = \\underset { A } { \\arg \\operatorname* { m i n } } \\ \\frac { 1 } { m } \\sum _ { v _ { a } : a \\leq m } J ( \\hat { y } _ { a } ^ { l p a } , y _ { a } ) ,", + "type": "interline_equation", + "image_path": "d849c3b9c267c9a80474afb3da282b23e150c5031efc4fd9b375bb8fc408527f.jpg" + } + ] + } + ], + "index": 19.5, + "virtual_lines": [ + { + "bbox": [ + 187, + 324, + 423, + 339.5 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 187, + 339.5, + 423, + 355.0 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 356, + 505, + 433 + ], + "lines": [ + { + "bbox": [ + 105, + 356, + 506, + 371 + ], + "spans": [ + { + "bbox": [ + 105, + 356, + 133, + 371 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 358, + 141, + 367 + ], + "score": 0.82, + "content": "J", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 356, + 240, + 371 + ], + "score": 1.0, + "content": "is the cross-entropy loss,", + "type": "text" + }, + { + "bbox": [ + 240, + 356, + 258, + 369 + ], + "score": 0.92, + "content": "\\hat { y } _ { a } ^ { l p a }", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 356, + 275, + 371 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 275, + 358, + 286, + 369 + ], + "score": 0.86, + "content": "y _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 356, + 433, + 371 + ], + "score": 1.0, + "content": "are the predicted label distribution of", + "type": "text" + }, + { + "bbox": [ + 433, + 358, + 444, + 368 + ], + "score": 0.86, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 356, + 506, + 371 + ], + "score": 1.0, + "content": "using LPA and", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 368, + 505, + 380 + ], + "spans": [ + { + "bbox": [ + 106, + 368, + 206, + 380 + ], + "score": 1.0, + "content": "the true one-hot label of", + "type": "text" + }, + { + "bbox": [ + 207, + 370, + 217, + 379 + ], + "score": 0.86, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 368, + 275, + 380 + ], + "score": 1.0, + "content": ", respectively.", + "type": "text" + }, + { + "bbox": [ + 275, + 369, + 306, + 379 + ], + "score": 0.91, + "content": "a \\leq m", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 368, + 335, + 380 + ], + "score": 1.0, + "content": "means", + "type": "text" + }, + { + "bbox": [ + 335, + 370, + 346, + 379 + ], + "score": 0.87, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 368, + 444, + 380 + ], + "score": 1.0, + "content": "is labeled. The optimal", + "type": "text" + }, + { + "bbox": [ + 445, + 369, + 457, + 379 + ], + "score": 0.87, + "content": "A ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 458, + 368, + 505, + 380 + ], + "score": 1.0, + "content": "maximizes", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 379, + 505, + 391 + ], + "spans": [ + { + "bbox": [ + 105, + 379, + 505, + 391 + ], + "score": 1.0, + "content": "the probability that each node is correctly labeled by LPA, thus also maximizes the intra-class label", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 389, + 505, + 402 + ], + "spans": [ + { + "bbox": [ + 105, + 389, + 505, + 402 + ], + "score": 1.0, + "content": "influence (according to Theorem 2) and intra-class feature influence (according to Theorem 1). Since", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 107, + 401, + 505, + 414 + ], + "spans": [ + { + "bbox": [ + 107, + 401, + 120, + 411 + ], + "score": 0.85, + "content": "A ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 120, + 401, + 505, + 414 + ], + "score": 1.0, + "content": "increases the connection strength within each class, it is expected to improve the performance", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 412, + 506, + 424 + ], + "spans": [ + { + "bbox": [ + 105, + 412, + 326, + 424 + ], + "score": 1.0, + "content": "of GCN compared with the original adjacency matrix", + "type": "text" + }, + { + "bbox": [ + 326, + 412, + 334, + 422 + ], + "score": 0.79, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 412, + 437, + 424 + ], + "score": 1.0, + "content": ". Therefore, we can plug", + "type": "text" + }, + { + "bbox": [ + 437, + 412, + 450, + 422 + ], + "score": 0.87, + "content": "A ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 412, + 506, + 424 + ], + "score": 1.0, + "content": "into GCN to", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 424, + 165, + 434 + ], + "spans": [ + { + "bbox": [ + 105, + 424, + 165, + 434 + ], + "score": 1.0, + "content": "predict labels:", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 24, + "bbox_fs": [ + 105, + 356, + 506, + 434 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 201, + 433, + 409, + 448 + ], + "lines": [ + { + "bbox": [ + 201, + 433, + 409, + 448 + ], + "spans": [ + { + "bbox": [ + 201, + 433, + 409, + 448 + ], + "score": 0.9, + "content": "X ^ { ( k + 1 ) } = \\sigma ( A ^ { * } X ^ { ( k ) } W ^ { ( k ) } ) , k = 0 , 1 , \\cdots , K - 1 .", + "type": "interline_equation", + "image_path": "32e2c0872ed537218face474de4c89a6397c37a9e19b4b55f4e3f5c4b0e23c61.jpg" + } + ] + } + ], + "index": 28, + "virtual_lines": [ + { + "bbox": [ + 201, + 433, + 409, + 448 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 448, + 505, + 482 + ], + "lines": [ + { + "bbox": [ + 103, + 446, + 507, + 463 + ], + "spans": [ + { + "bbox": [ + 103, + 446, + 138, + 463 + ], + "score": 1.0, + "content": "We use", + "type": "text" + }, + { + "bbox": [ + 138, + 450, + 158, + 461 + ], + "score": 0.91, + "content": "\\hat { y } _ { a } ^ { g c n }", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 446, + 177, + 463 + ], + "score": 1.0, + "content": ", the", + "type": "text" + }, + { + "bbox": [ + 177, + 451, + 183, + 459 + ], + "score": 0.79, + "content": "a", + "type": "inline_equation" + }, + { + "bbox": [ + 184, + 446, + 225, + 463 + ], + "score": 1.0, + "content": "-th row of", + "type": "text" + }, + { + "bbox": [ + 225, + 448, + 249, + 459 + ], + "score": 0.9, + "content": "X ^ { ( K ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 446, + 429, + 463 + ], + "score": 1.0, + "content": ", to denote the predicted label distribution of", + "type": "text" + }, + { + "bbox": [ + 430, + 451, + 441, + 460 + ], + "score": 0.87, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 446, + 507, + 463 + ], + "score": 1.0, + "content": "using the GCN", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 460, + 505, + 473 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 505, + 473 + ], + "score": 1.0, + "content": "specified in Eq. (7). Then the optimal transformation matrices in the GCN can be learned by", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 471, + 302, + 482 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 302, + 482 + ], + "score": 1.0, + "content": "minimizing the loss of predicted labels by GCN:", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30, + "bbox_fs": [ + 103, + 446, + 507, + 482 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 176, + 483, + 434, + 514 + ], + "lines": [ + { + "bbox": [ + 176, + 483, + 434, + 514 + ], + "spans": [ + { + "bbox": [ + 176, + 483, + 434, + 514 + ], + "score": 0.92, + "content": "W ^ { * } = \\arg \\operatorname* { m i n } _ { W } L _ { g c n } ( W , A ^ { * } ) = \\arg \\operatorname* { m i n } _ { W } \\frac { 1 } { m } \\sum _ { v _ { a } : a \\leq m } J ( \\hat { y } _ { a } ^ { g c n } , y _ { a } ) ,", + "type": "interline_equation", + "image_path": "1660ec940e6d623e0ea431c1825efe2ef0176f0a049d9f24d52fdc87fdcc1540.jpg" + } + ] + } + ], + "index": 33, + "virtual_lines": [ + { + "bbox": [ + 176, + 483, + 434, + 493.3333333333333 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 176, + 493.3333333333333, + 434, + 503.66666666666663 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 176, + 503.66666666666663, + 434, + 514.0 + ], + "spans": [], + "index": 34 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 520, + 502, + 542 + ], + "lines": [ + { + "bbox": [ + 105, + 519, + 503, + 532 + ], + "spans": [ + { + "bbox": [ + 105, + 519, + 503, + 532 + ], + "score": 1.0, + "content": "It is more elegant (and empirically better) to combine the above two steps together into a multi-", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 532, + 445, + 543 + ], + "spans": [ + { + "bbox": [ + 106, + 532, + 445, + 543 + ], + "score": 1.0, + "content": "objective optimization problem, and train the whole model in an end-to-end fashion:", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5, + "bbox_fs": [ + 105, + 519, + 503, + 543 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 212, + 543, + 398, + 565 + ], + "lines": [ + { + "bbox": [ + 212, + 543, + 398, + 565 + ], + "spans": [ + { + "bbox": [ + 212, + 543, + 398, + 565 + ], + "score": 0.91, + "content": "W ^ { * } , A ^ { * } = \\underset { W , A } { \\arg \\operatorname* { m i n } } \\ L _ { g c n } ( W , A ) + \\lambda L _ { l p a } ( A ) ,", + "type": "interline_equation", + "image_path": "b92ebe68fe041dacb89e80ef62d643e7a5a3c1b97063911c0781bc81ffb5e77a.jpg" + } + ] + } + ], + "index": 37, + "virtual_lines": [ + { + "bbox": [ + 212, + 543, + 398, + 565 + ], + "spans": [], + "index": 37 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 566, + 505, + 622 + ], + "lines": [ + { + "bbox": [ + 106, + 565, + 506, + 580 + ], + "spans": [ + { + "bbox": [ + 106, + 565, + 133, + 580 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 567, + 141, + 576 + ], + "score": 0.81, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 565, + 327, + 580 + ], + "score": 1.0, + "content": "is the balancing hyper-parameter. In this way,", + "type": "text" + }, + { + "bbox": [ + 327, + 567, + 362, + 578 + ], + "score": 0.92, + "content": "L _ { l p a } ( A )", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 565, + 506, + 580 + ], + "score": 1.0, + "content": "serves as a regularization term that", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 577, + 505, + 590 + ], + "spans": [ + { + "bbox": [ + 106, + 577, + 246, + 590 + ], + "score": 1.0, + "content": "assists the learning of edge weights", + "type": "text" + }, + { + "bbox": [ + 247, + 578, + 255, + 587 + ], + "score": 0.77, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 577, + 404, + 590 + ], + "score": 1.0, + "content": ", since it is hard for GCN to learn both", + "type": "text" + }, + { + "bbox": [ + 404, + 578, + 416, + 588 + ], + "score": 0.62, + "content": "W", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 577, + 433, + 590 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 433, + 578, + 442, + 587 + ], + "score": 0.78, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 577, + 505, + 590 + ], + "score": 1.0, + "content": "simultaneously", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 588, + 506, + 601 + ], + "spans": [ + { + "bbox": [ + 106, + 588, + 506, + 601 + ], + "score": 1.0, + "content": "due to overfitting. The proposed GCN-LPA approach can also be seen as learning the importance of", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 597, + 505, + 613 + ], + "spans": [ + { + "bbox": [ + 105, + 597, + 505, + 613 + ], + "score": 1.0, + "content": "edges that can be used to reconstruct node labels accurately by LPA, then transferring this knowledge", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 610, + 280, + 622 + ], + "spans": [ + { + "bbox": [ + 106, + 610, + 280, + 622 + ], + "score": 1.0, + "content": "from label space to feature space for GCN.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 40, + "bbox_fs": [ + 105, + 565, + 506, + 622 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 626, + 505, + 695 + ], + "lines": [ + { + "bbox": [ + 105, + 626, + 504, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 268, + 639 + ], + "score": 1.0, + "content": "It is also worth noticing how the optimal", + "type": "text" + }, + { + "bbox": [ + 269, + 627, + 281, + 637 + ], + "score": 0.88, + "content": "A ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 626, + 504, + 639 + ], + "score": 1.0, + "content": "is configured. The principle here is that we do not mod-", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 637, + 505, + 652 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 505, + 652 + ], + "score": 1.0, + "content": "ify the basic structure of the original graph (i.e., not adding or removing edges) but only adjusting", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 648, + 505, + 663 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 421, + 663 + ], + "score": 1.0, + "content": "weights of existing edges. This is equivalent to learning a positive mask matrix", + "type": "text" + }, + { + "bbox": [ + 421, + 650, + 433, + 659 + ], + "score": 0.77, + "content": "M", + "type": "inline_equation" + }, + { + "bbox": [ + 434, + 648, + 505, + 663 + ], + "score": 1.0, + "content": "for the adjacency", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 660, + 506, + 673 + ], + "spans": [ + { + "bbox": [ + 105, + 660, + 135, + 673 + ], + "score": 1.0, + "content": "matrix", + "type": "text" + }, + { + "bbox": [ + 135, + 661, + 144, + 670 + ], + "score": 0.72, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 660, + 282, + 673 + ], + "score": 1.0, + "content": "and taking the Hadamard product", + "type": "text" + }, + { + "bbox": [ + 283, + 660, + 338, + 671 + ], + "score": 0.91, + "content": "M \\circ A = A ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 660, + 399, + 673 + ], + "score": 1.0, + "content": ". Each element", + "type": "text" + }, + { + "bbox": [ + 400, + 660, + 417, + 672 + ], + "score": 0.89, + "content": "M _ { i j }", + "type": "inline_equation" + }, + { + "bbox": [ + 418, + 660, + 506, + 673 + ], + "score": 1.0, + "content": "can be set as either a", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 104, + 671, + 504, + 685 + ], + "spans": [ + { + "bbox": [ + 104, + 671, + 338, + 685 + ], + "score": 1.0, + "content": "free variable or a function of the two nodes, for example,", + "type": "text" + }, + { + "bbox": [ + 338, + 672, + 465, + 685 + ], + "score": 0.9, + "content": "M _ { i j } = \\log \\left( \\exp ( \\mathbf { x } _ { i } ^ { \\top } \\mathbf { H } \\mathbf { x } _ { j } ) + 1 \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 465, + 671, + 493, + 685 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 494, + 672, + 504, + 683 + ], + "score": 0.39, + "content": "\\mathbf { H }", + "type": "inline_equation" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 683, + 347, + 696 + ], + "spans": [ + { + "bbox": [ + 105, + 683, + 347, + 696 + ], + "score": 1.0, + "content": "is a learnable kernel matrix for measuring feature similarity.", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 45.5, + "bbox_fs": [ + 104, + 626, + 506, + 696 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 82, + 319, + 93 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 321, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 321, + 95 + ], + "score": 1.0, + "content": "2.4 ANALYSIS OF GCN-LPA MODEL BEHAVIOR", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 105, + 505, + 224 + ], + "lines": [ + { + "bbox": [ + 105, + 103, + 506, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 103, + 506, + 118 + ], + "score": 1.0, + "content": "In this subsection, we show benefits of our unified model compared with GCN by analyzing proper-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 116, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 106, + 116, + 505, + 128 + ], + "score": 1.0, + "content": "ties of embeddings produced by the two models. We first analyze the update rule of GCN for node", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 109, + 121, + 510, + 152 + ], + "spans": [ + { + "bbox": [ + 109, + 127, + 281, + 147 + ], + "score": 0.88, + "content": "\\begin{array} { r } { \\mathbf { \\Phi } _ { \\upsilon i } \\colon \\mathbf { x } _ { i } ^ { ( k + 1 ) } = \\sigma \\left( \\sum _ { v _ { j } \\in \\mathcal { N } ( v _ { i } ) } \\tilde { a } _ { i j } \\mathbf { x } _ { j } ^ { ( k ) } W ^ { ( k ) } \\right) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 121, + 313, + 152 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 313, + 130, + 369, + 143 + ], + "score": 0.94, + "content": "\\tilde { a } _ { i j } = a _ { i j } / d _ { i i }", + "type": "inline_equation" + }, + { + "bbox": [ + 370, + 121, + 510, + 152 + ], + "score": 1.0, + "content": "is the normalized weight of edge", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 107, + 144, + 506, + 159 + ], + "spans": [ + { + "bbox": [ + 107, + 146, + 127, + 158 + ], + "score": 0.89, + "content": "( j , i )", + "type": "inline_equation" + }, + { + "bbox": [ + 127, + 144, + 506, + 159 + ], + "score": 1.0, + "content": ". This formula can be decomposed into the following two steps: (1) In aggregation step, we cal-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 100, + 153, + 501, + 179 + ], + "spans": [ + { + "bbox": [ + 100, + 153, + 253, + 179 + ], + "score": 1.0, + "content": "culate the aggregated representation", + "type": "text" + }, + { + "bbox": [ + 254, + 157, + 272, + 172 + ], + "score": 0.92, + "content": "{ \\bf h } _ { i } ^ { ( k ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 153, + 360, + 179 + ], + "score": 1.0, + "content": "of all neighborhoods", + "type": "text" + }, + { + "bbox": [ + 362, + 157, + 501, + 174 + ], + "score": 0.9, + "content": "\\begin{array} { r } { \\mathcal { N } ( v _ { i } ) \\colon { \\mathbf { h } } _ { i } ^ { ( k ) } = \\sum _ { v _ { j } \\in \\mathcal { N } ( v _ { i } ) } \\tilde { a } _ { i j } { \\mathbf { x } } _ { j } ^ { ( k ) } } \\end{array}", + "type": "inline_equation" + } + ], + "index": 5 + }, + { + "bbox": [ + 104, + 171, + 507, + 190 + ], + "spans": [ + { + "bbox": [ + 104, + 171, + 330, + 190 + ], + "score": 1.0, + "content": "(2) In transformation step, the aggregated representation", + "type": "text" + }, + { + "bbox": [ + 330, + 173, + 349, + 188 + ], + "score": 0.91, + "content": "{ \\bf h } _ { i } ^ { ( k ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 171, + 507, + 190 + ], + "score": 1.0, + "content": "is mapped to a new space by a transfor-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 104, + 185, + 507, + 206 + ], + "spans": [ + { + "bbox": [ + 104, + 186, + 261, + 205 + ], + "score": 1.0, + "content": "mation matrix and nonlinear function:", + "type": "text" + }, + { + "bbox": [ + 262, + 185, + 507, + 206 + ], + "score": 1.0, + "content": "x(k+1)i = σ\u0000h(k)i W (k)\u0001. We show by the following theorem", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 201, + 505, + 213 + ], + "spans": [ + { + "bbox": [ + 106, + 201, + 505, + 213 + ], + "score": 1.0, + "content": "that the aggregation step reduces the overall distance in the embedding space between the nodes that", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 212, + 216, + 225 + ], + "spans": [ + { + "bbox": [ + 105, + 212, + 216, + 225 + ], + "score": 1.0, + "content": "are connected in the graph:", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 107, + 234, + 503, + 262 + ], + "lines": [ + { + "bbox": [ + 105, + 232, + 506, + 251 + ], + "spans": [ + { + "bbox": [ + 105, + 232, + 300, + 251 + ], + "score": 1.0, + "content": "Theorem 3 (Shrinking property in GCN) Let", + "type": "text" + }, + { + "bbox": [ + 300, + 234, + 430, + 250 + ], + "score": 0.89, + "content": "\\begin{array} { r } { D ( \\mathbf { x } ) = \\frac { 1 } { 2 } \\sum _ { v _ { i } , v _ { j } } \\widetilde { a } _ { i j } \\| \\mathbf { x } _ { i } - \\mathbf { x } _ { j } \\| _ { 2 } ^ { 2 } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 431, + 232, + 506, + 251 + ], + "score": 1.0, + "content": "be a distance met-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 248, + 366, + 263 + ], + "spans": [ + { + "bbox": [ + 105, + 248, + 281, + 263 + ], + "score": 1.0, + "content": "ric over node embeddings x. Then we have", + "type": "text" + }, + { + "bbox": [ + 281, + 249, + 362, + 262 + ], + "score": 0.92, + "content": "D ( \\mathbf { h } ^ { ( k ) } ) \\leq D ( \\mathbf { x } ^ { ( k ) } )", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 248, + 366, + 263 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5 + }, + { + "type": "text", + "bbox": [ + 107, + 273, + 296, + 450 + ], + "lines": [ + { + "bbox": [ + 106, + 273, + 297, + 285 + ], + "spans": [ + { + "bbox": [ + 106, + 273, + 297, + 285 + ], + "score": 1.0, + "content": "Proof of Theorem 3 is in Appendix C. Theo-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 282, + 298, + 298 + ], + "spans": [ + { + "bbox": [ + 105, + 282, + 298, + 298 + ], + "score": 1.0, + "content": "rem 3 indicates that the overall distance among", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 294, + 298, + 309 + ], + "spans": [ + { + "bbox": [ + 105, + 294, + 298, + 309 + ], + "score": 1.0, + "content": "connected nodes is reduced after taking one ag-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 307, + 298, + 318 + ], + "spans": [ + { + "bbox": [ + 106, + 307, + 298, + 318 + ], + "score": 1.0, + "content": "gregation step, which implies that connected", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 318, + 297, + 329 + ], + "spans": [ + { + "bbox": [ + 106, + 318, + 297, + 329 + ], + "score": 1.0, + "content": "components in the graph “shrink” and nodes", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 328, + 297, + 340 + ], + "spans": [ + { + "bbox": [ + 106, + 328, + 297, + 340 + ], + "score": 1.0, + "content": "within each connected component get closer", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 339, + 298, + 352 + ], + "spans": [ + { + "bbox": [ + 106, + 339, + 298, + 352 + ], + "score": 1.0, + "content": "to each other in the embedding space. In an", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 350, + 297, + 361 + ], + "spans": [ + { + "bbox": [ + 105, + 350, + 297, + 361 + ], + "score": 1.0, + "content": "ideal case where edges only connect nodes with", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 361, + 298, + 374 + ], + "spans": [ + { + "bbox": [ + 106, + 361, + 298, + 374 + ], + "score": 1.0, + "content": "the same label, the aggregation step will push", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 372, + 297, + 384 + ], + "spans": [ + { + "bbox": [ + 106, + 372, + 297, + 384 + ], + "score": 1.0, + "content": "nodes within the same class together, which", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 383, + 298, + 396 + ], + "spans": [ + { + "bbox": [ + 105, + 383, + 298, + 396 + ], + "score": 1.0, + "content": "greatly benefits the transformation step that acts", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 394, + 297, + 408 + ], + "spans": [ + { + "bbox": [ + 106, + 394, + 201, + 408 + ], + "score": 1.0, + "content": "like using a hyperplane", + "type": "text" + }, + { + "bbox": [ + 201, + 394, + 225, + 406 + ], + "score": 0.9, + "content": "W ^ { ( k ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 394, + 297, + 408 + ], + "score": 1.0, + "content": "for classification.", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 406, + 297, + 417 + ], + "spans": [ + { + "bbox": [ + 106, + 406, + 297, + 417 + ], + "score": 1.0, + "content": "However, two connected nodes may have dif-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 417, + 297, + 429 + ], + "spans": [ + { + "bbox": [ + 106, + 417, + 297, + 429 + ], + "score": 1.0, + "content": "ferent labels. These “noisy” edges will impede", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 428, + 297, + 439 + ], + "spans": [ + { + "bbox": [ + 106, + 428, + 297, + 439 + ], + "score": 1.0, + "content": "the formation of clusters and make the inter-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 438, + 210, + 452 + ], + "spans": [ + { + "bbox": [ + 106, + 438, + 210, + 452 + ], + "score": 1.0, + "content": "class boundary less clear.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 19.5 + }, + { + "type": "text", + "bbox": [ + 107, + 456, + 296, + 489 + ], + "lines": [ + { + "bbox": [ + 105, + 455, + 297, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 455, + 297, + 469 + ], + "score": 1.0, + "content": "Fortunately, in GCN-LPA, edge weights are", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 467, + 297, + 479 + ], + "spans": [ + { + "bbox": [ + 106, + 467, + 297, + 479 + ], + "score": 1.0, + "content": "learned by minimizing the difference between", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 478, + 298, + 489 + ], + "spans": [ + { + "bbox": [ + 105, + 478, + 298, + 489 + ], + "score": 1.0, + "content": "ground-truth labels and labels reconstructed", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29 + }, + { + "type": "image", + "bbox": [ + 307, + 274, + 497, + 373 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 307, + 274, + 497, + 373 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 307, + 274, + 497, + 373 + ], + "spans": [ + { + "bbox": [ + 307, + 274, + 497, + 373 + ], + "score": 0.966, + "type": "image", + "image_path": "9825536a37154ab50e035bbf48b2a28cdb0bb40f69695acd0d2dbfcaa0fd3973.jpg" + } + ] + } + ], + "index": 34, + "virtual_lines": [ + { + "bbox": [ + 307, + 274, + 497, + 288.14285714285717 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 307, + 288.14285714285717, + 497, + 302.28571428571433 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 307, + 302.28571428571433, + 497, + 316.4285714285715 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 307, + 316.4285714285715, + 497, + 330.57142857142867 + ], + "spans": [], + "index": 34 + }, + { + "bbox": [ + 307, + 330.57142857142867, + 497, + 344.71428571428584 + ], + "spans": [], + "index": 35 + }, + { + "bbox": [ + 307, + 344.71428571428584, + 497, + 358.857142857143 + ], + "spans": [], + "index": 36 + }, + { + "bbox": [ + 307, + 358.857142857143, + 497, + 373.00000000000017 + ], + "spans": [], + "index": 37 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 304, + 382, + 504, + 470 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 304, + 382, + 505, + 394 + ], + "spans": [ + { + "bbox": [ + 304, + 382, + 505, + 394 + ], + "score": 1.0, + "content": "Figure 1: A graph with two classes of nodes,", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 303, + 392, + 505, + 405 + ], + "spans": [ + { + "bbox": [ + 303, + 392, + 505, + 405 + ], + "score": 1.0, + "content": "while white nodes are unlabeled (Figure 1a). To", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 304, + 404, + 505, + 416 + ], + "spans": [ + { + "bbox": [ + 304, + 404, + 505, + 416 + ], + "score": 1.0, + "content": "classify nodes, our model will increase the con-", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 304, + 415, + 505, + 426 + ], + "spans": [ + { + "bbox": [ + 304, + 415, + 505, + 426 + ], + "score": 1.0, + "content": "necting strength among nodes within the same", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 304, + 426, + 505, + 437 + ], + "spans": [ + { + "bbox": [ + 304, + 426, + 505, + 437 + ], + "score": 1.0, + "content": "class, thereby increasing their feature/label influ-", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 303, + 437, + 505, + 449 + ], + "spans": [ + { + "bbox": [ + 303, + 437, + 505, + 449 + ], + "score": 1.0, + "content": "ence on each other. In this way, our model is able", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 303, + 448, + 505, + 460 + ], + "spans": [ + { + "bbox": [ + 303, + 448, + 505, + 460 + ], + "score": 1.0, + "content": "to identify potential intra-class edges (bold links", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 303, + 459, + 477, + 471 + ], + "spans": [ + { + "bbox": [ + 303, + 459, + 477, + 471 + ], + "score": 1.0, + "content": "in Figure 1b) and strengthen their weights.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 41.5 + } + ], + "index": 37.75 + }, + { + "type": "text", + "bbox": [ + 107, + 489, + 505, + 544 + ], + "lines": [ + { + "bbox": [ + 106, + 488, + 505, + 501 + ], + "spans": [ + { + "bbox": [ + 106, + 488, + 505, + 501 + ], + "score": 1.0, + "content": "from local neighbors. This will force the model to increase the weight/bandwidth of possible paths", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 498, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 505, + 513 + ], + "score": 1.0, + "content": "that connect nodes with the same label, so that labels can “flow” easily along these paths for the", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 510, + 506, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 510, + 506, + 524 + ], + "score": 1.0, + "content": "purpose of label reconstruction. In this way, GCN-LPA is able to identify potential intra-class edges", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 519, + 506, + 536 + ], + "spans": [ + { + "bbox": [ + 105, + 519, + 506, + 536 + ], + "score": 1.0, + "content": "and increase their weights to assist learning clustering structures ( see Figure 1 for an illustrating", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 532, + 149, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 149, + 546 + ], + "score": 1.0, + "content": "example).", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 48 + }, + { + "type": "text", + "bbox": [ + 107, + 550, + 505, + 660 + ], + "lines": [ + { + "bbox": [ + 106, + 549, + 505, + 562 + ], + "spans": [ + { + "bbox": [ + 106, + 549, + 505, + 562 + ], + "score": 1.0, + "content": "To empirically justify our claim, we apply a two-layer untrained GCN with randomly initialized", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 560, + 506, + 573 + ], + "spans": [ + { + "bbox": [ + 105, + 560, + 506, + 573 + ], + "score": 1.0, + "content": "transformation matrices to the well-known Zachary’s karate club network (Zachary, 1977) as shown", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 106, + 572, + 505, + 583 + ], + "spans": [ + { + "bbox": [ + 106, + 572, + 505, + 583 + ], + "score": 1.0, + "content": "in Figure 2a, which contains 34 nodes of 2 classes and 78 unweighted edges (grey solid lines). We", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 105, + 582, + 505, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 505, + 595 + ], + "score": 1.0, + "content": "then increase the weights of intra-class edges by ten times to simulate GCN-LPA. We find that GCN", + "type": "text" + } + ], + "index": 54 + }, + { + "bbox": [ + 106, + 594, + 505, + 605 + ], + "spans": [ + { + "bbox": [ + 106, + 594, + 505, + 605 + ], + "score": 1.0, + "content": "works well on this network (Figure 2b), but GCN-LPA performs even better than GCN because", + "type": "text" + } + ], + "index": 55 + }, + { + "bbox": [ + 105, + 604, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 505, + 617 + ], + "score": 1.0, + "content": "the node embeddings are completely linearly separable as shown in Figure 2c. To further justify", + "type": "text" + } + ], + "index": 56 + }, + { + "bbox": [ + 105, + 615, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 505, + 628 + ], + "score": 1.0, + "content": "our claim, we randomly add 20 “noisy” inter-class edges (grey dotted lines) to the original network,", + "type": "text" + } + ], + "index": 57 + }, + { + "bbox": [ + 105, + 626, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 505, + 639 + ], + "score": 1.0, + "content": "from which we observe that GCN is misled by noise and mixes nodes of two classes together (Figure", + "type": "text" + } + ], + "index": 58 + }, + { + "bbox": [ + 105, + 635, + 505, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 635, + 505, + 651 + ], + "score": 1.0, + "content": "2d), but GCN-LPA still distinguishes the two clusters (Figure 2e) because it is better at “denoising”", + "type": "text" + } + ], + "index": 59 + }, + { + "bbox": [ + 105, + 648, + 343, + 660 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 343, + 660 + ], + "score": 1.0, + "content": "undesirable edges based on the supervised signal of labels.", + "type": "text" + } + ], + "index": 60 + } + ], + "index": 55.5 + }, + { + "type": "title", + "bbox": [ + 107, + 681, + 303, + 694 + ], + "lines": [ + { + "bbox": [ + 104, + 679, + 304, + 696 + ], + "spans": [ + { + "bbox": [ + 104, + 679, + 304, + 696 + ], + "score": 1.0, + "content": "3 CONNECTION TO EXISTING WORK", + "type": "text" + } + ], + "index": 61 + } + ], + "index": 61 + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 503, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "Edge weights play a key role in graph-based machine learning algorithms. In this section, we discuss", + "type": "text" + } + ], + "index": 62 + }, + { + "bbox": [ + 105, + 720, + 353, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 353, + 733 + ], + "score": 1.0, + "content": "three lines of related work that learn edge weights adaptively.", + "type": "text" + } + ], + "index": 63 + } + ], + "index": 62.5 + } + ], + "page_idx": 4, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 307, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 763 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 763 + ], + "score": 1.0, + "content": "5", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 82, + 319, + 93 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 321, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 321, + 95 + ], + "score": 1.0, + "content": "2.4 ANALYSIS OF GCN-LPA MODEL BEHAVIOR", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 105, + 505, + 224 + ], + "lines": [ + { + "bbox": [ + 105, + 103, + 506, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 103, + 506, + 118 + ], + "score": 1.0, + "content": "In this subsection, we show benefits of our unified model compared with GCN by analyzing proper-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 116, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 106, + 116, + 505, + 128 + ], + "score": 1.0, + "content": "ties of embeddings produced by the two models. We first analyze the update rule of GCN for node", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 109, + 121, + 510, + 152 + ], + "spans": [ + { + "bbox": [ + 109, + 127, + 281, + 147 + ], + "score": 0.88, + "content": "\\begin{array} { r } { \\mathbf { \\Phi } _ { \\upsilon i } \\colon \\mathbf { x } _ { i } ^ { ( k + 1 ) } = \\sigma \\left( \\sum _ { v _ { j } \\in \\mathcal { N } ( v _ { i } ) } \\tilde { a } _ { i j } \\mathbf { x } _ { j } ^ { ( k ) } W ^ { ( k ) } \\right) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 121, + 313, + 152 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 313, + 130, + 369, + 143 + ], + "score": 0.94, + "content": "\\tilde { a } _ { i j } = a _ { i j } / d _ { i i }", + "type": "inline_equation" + }, + { + "bbox": [ + 370, + 121, + 510, + 152 + ], + "score": 1.0, + "content": "is the normalized weight of edge", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 107, + 144, + 506, + 159 + ], + "spans": [ + { + "bbox": [ + 107, + 146, + 127, + 158 + ], + "score": 0.89, + "content": "( j , i )", + "type": "inline_equation" + }, + { + "bbox": [ + 127, + 144, + 506, + 159 + ], + "score": 1.0, + "content": ". This formula can be decomposed into the following two steps: (1) In aggregation step, we cal-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 100, + 153, + 501, + 179 + ], + "spans": [ + { + "bbox": [ + 100, + 153, + 253, + 179 + ], + "score": 1.0, + "content": "culate the aggregated representation", + "type": "text" + }, + { + "bbox": [ + 254, + 157, + 272, + 172 + ], + "score": 0.92, + "content": "{ \\bf h } _ { i } ^ { ( k ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 153, + 360, + 179 + ], + "score": 1.0, + "content": "of all neighborhoods", + "type": "text" + }, + { + "bbox": [ + 362, + 157, + 501, + 174 + ], + "score": 0.9, + "content": "\\begin{array} { r } { \\mathcal { N } ( v _ { i } ) \\colon { \\mathbf { h } } _ { i } ^ { ( k ) } = \\sum _ { v _ { j } \\in \\mathcal { N } ( v _ { i } ) } \\tilde { a } _ { i j } { \\mathbf { x } } _ { j } ^ { ( k ) } } \\end{array}", + "type": "inline_equation" + } + ], + "index": 5 + }, + { + "bbox": [ + 104, + 171, + 507, + 190 + ], + "spans": [ + { + "bbox": [ + 104, + 171, + 330, + 190 + ], + "score": 1.0, + "content": "(2) In transformation step, the aggregated representation", + "type": "text" + }, + { + "bbox": [ + 330, + 173, + 349, + 188 + ], + "score": 0.91, + "content": "{ \\bf h } _ { i } ^ { ( k ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 171, + 507, + 190 + ], + "score": 1.0, + "content": "is mapped to a new space by a transfor-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 104, + 185, + 507, + 206 + ], + "spans": [ + { + "bbox": [ + 104, + 186, + 261, + 205 + ], + "score": 1.0, + "content": "mation matrix and nonlinear function:", + "type": "text" + }, + { + "bbox": [ + 262, + 185, + 507, + 206 + ], + "score": 1.0, + "content": "x(k+1)i = σ\u0000h(k)i W (k)\u0001. We show by the following theorem", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 201, + 505, + 213 + ], + "spans": [ + { + "bbox": [ + 106, + 201, + 505, + 213 + ], + "score": 1.0, + "content": "that the aggregation step reduces the overall distance in the embedding space between the nodes that", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 212, + 216, + 225 + ], + "spans": [ + { + "bbox": [ + 105, + 212, + 216, + 225 + ], + "score": 1.0, + "content": "are connected in the graph:", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 5, + "bbox_fs": [ + 100, + 103, + 510, + 225 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 234, + 503, + 262 + ], + "lines": [ + { + "bbox": [ + 105, + 232, + 506, + 251 + ], + "spans": [ + { + "bbox": [ + 105, + 232, + 300, + 251 + ], + "score": 1.0, + "content": "Theorem 3 (Shrinking property in GCN) Let", + "type": "text" + }, + { + "bbox": [ + 300, + 234, + 430, + 250 + ], + "score": 0.89, + "content": "\\begin{array} { r } { D ( \\mathbf { x } ) = \\frac { 1 } { 2 } \\sum _ { v _ { i } , v _ { j } } \\widetilde { a } _ { i j } \\| \\mathbf { x } _ { i } - \\mathbf { x } _ { j } \\| _ { 2 } ^ { 2 } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 431, + 232, + 506, + 251 + ], + "score": 1.0, + "content": "be a distance met-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 248, + 366, + 263 + ], + "spans": [ + { + "bbox": [ + 105, + 248, + 281, + 263 + ], + "score": 1.0, + "content": "ric over node embeddings x. Then we have", + "type": "text" + }, + { + "bbox": [ + 281, + 249, + 362, + 262 + ], + "score": 0.92, + "content": "D ( \\mathbf { h } ^ { ( k ) } ) \\leq D ( \\mathbf { x } ^ { ( k ) } )", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 248, + 366, + 263 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5, + "bbox_fs": [ + 105, + 232, + 506, + 263 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 273, + 296, + 450 + ], + "lines": [ + { + "bbox": [ + 106, + 273, + 297, + 285 + ], + "spans": [ + { + "bbox": [ + 106, + 273, + 297, + 285 + ], + "score": 1.0, + "content": "Proof of Theorem 3 is in Appendix C. Theo-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 282, + 298, + 298 + ], + "spans": [ + { + "bbox": [ + 105, + 282, + 298, + 298 + ], + "score": 1.0, + "content": "rem 3 indicates that the overall distance among", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 294, + 298, + 309 + ], + "spans": [ + { + "bbox": [ + 105, + 294, + 298, + 309 + ], + "score": 1.0, + "content": "connected nodes is reduced after taking one ag-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 307, + 298, + 318 + ], + "spans": [ + { + "bbox": [ + 106, + 307, + 298, + 318 + ], + "score": 1.0, + "content": "gregation step, which implies that connected", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 318, + 297, + 329 + ], + "spans": [ + { + "bbox": [ + 106, + 318, + 297, + 329 + ], + "score": 1.0, + "content": "components in the graph “shrink” and nodes", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 328, + 297, + 340 + ], + "spans": [ + { + "bbox": [ + 106, + 328, + 297, + 340 + ], + "score": 1.0, + "content": "within each connected component get closer", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 339, + 298, + 352 + ], + "spans": [ + { + "bbox": [ + 106, + 339, + 298, + 352 + ], + "score": 1.0, + "content": "to each other in the embedding space. In an", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 350, + 297, + 361 + ], + "spans": [ + { + "bbox": [ + 105, + 350, + 297, + 361 + ], + "score": 1.0, + "content": "ideal case where edges only connect nodes with", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 361, + 298, + 374 + ], + "spans": [ + { + "bbox": [ + 106, + 361, + 298, + 374 + ], + "score": 1.0, + "content": "the same label, the aggregation step will push", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 372, + 297, + 384 + ], + "spans": [ + { + "bbox": [ + 106, + 372, + 297, + 384 + ], + "score": 1.0, + "content": "nodes within the same class together, which", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 383, + 298, + 396 + ], + "spans": [ + { + "bbox": [ + 105, + 383, + 298, + 396 + ], + "score": 1.0, + "content": "greatly benefits the transformation step that acts", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 394, + 297, + 408 + ], + "spans": [ + { + "bbox": [ + 106, + 394, + 201, + 408 + ], + "score": 1.0, + "content": "like using a hyperplane", + "type": "text" + }, + { + "bbox": [ + 201, + 394, + 225, + 406 + ], + "score": 0.9, + "content": "W ^ { ( k ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 394, + 297, + 408 + ], + "score": 1.0, + "content": "for classification.", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 406, + 297, + 417 + ], + "spans": [ + { + "bbox": [ + 106, + 406, + 297, + 417 + ], + "score": 1.0, + "content": "However, two connected nodes may have dif-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 417, + 297, + 429 + ], + "spans": [ + { + "bbox": [ + 106, + 417, + 297, + 429 + ], + "score": 1.0, + "content": "ferent labels. These “noisy” edges will impede", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 428, + 297, + 439 + ], + "spans": [ + { + "bbox": [ + 106, + 428, + 297, + 439 + ], + "score": 1.0, + "content": "the formation of clusters and make the inter-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 438, + 210, + 452 + ], + "spans": [ + { + "bbox": [ + 106, + 438, + 210, + 452 + ], + "score": 1.0, + "content": "class boundary less clear.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 19.5, + "bbox_fs": [ + 105, + 273, + 298, + 452 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 456, + 296, + 489 + ], + "lines": [ + { + "bbox": [ + 105, + 455, + 297, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 455, + 297, + 469 + ], + "score": 1.0, + "content": "Fortunately, in GCN-LPA, edge weights are", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 467, + 297, + 479 + ], + "spans": [ + { + "bbox": [ + 106, + 467, + 297, + 479 + ], + "score": 1.0, + "content": "learned by minimizing the difference between", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 478, + 298, + 489 + ], + "spans": [ + { + "bbox": [ + 105, + 478, + 298, + 489 + ], + "score": 1.0, + "content": "ground-truth labels and labels reconstructed", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29, + "bbox_fs": [ + 105, + 455, + 298, + 489 + ] + }, + { + "type": "image", + "bbox": [ + 307, + 274, + 497, + 373 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 307, + 274, + 497, + 373 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 307, + 274, + 497, + 373 + ], + "spans": [ + { + "bbox": [ + 307, + 274, + 497, + 373 + ], + "score": 0.966, + "type": "image", + "image_path": "9825536a37154ab50e035bbf48b2a28cdb0bb40f69695acd0d2dbfcaa0fd3973.jpg" + } + ] + } + ], + "index": 34, + "virtual_lines": [ + { + "bbox": [ + 307, + 274, + 497, + 288.14285714285717 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 307, + 288.14285714285717, + 497, + 302.28571428571433 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 307, + 302.28571428571433, + 497, + 316.4285714285715 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 307, + 316.4285714285715, + 497, + 330.57142857142867 + ], + "spans": [], + "index": 34 + }, + { + "bbox": [ + 307, + 330.57142857142867, + 497, + 344.71428571428584 + ], + "spans": [], + "index": 35 + }, + { + "bbox": [ + 307, + 344.71428571428584, + 497, + 358.857142857143 + ], + "spans": [], + "index": 36 + }, + { + "bbox": [ + 307, + 358.857142857143, + 497, + 373.00000000000017 + ], + "spans": [], + "index": 37 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 304, + 382, + 504, + 470 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 304, + 382, + 505, + 394 + ], + "spans": [ + { + "bbox": [ + 304, + 382, + 505, + 394 + ], + "score": 1.0, + "content": "Figure 1: A graph with two classes of nodes,", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 303, + 392, + 505, + 405 + ], + "spans": [ + { + "bbox": [ + 303, + 392, + 505, + 405 + ], + "score": 1.0, + "content": "while white nodes are unlabeled (Figure 1a). To", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 304, + 404, + 505, + 416 + ], + "spans": [ + { + "bbox": [ + 304, + 404, + 505, + 416 + ], + "score": 1.0, + "content": "classify nodes, our model will increase the con-", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 304, + 415, + 505, + 426 + ], + "spans": [ + { + "bbox": [ + 304, + 415, + 505, + 426 + ], + "score": 1.0, + "content": "necting strength among nodes within the same", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 304, + 426, + 505, + 437 + ], + "spans": [ + { + "bbox": [ + 304, + 426, + 505, + 437 + ], + "score": 1.0, + "content": "class, thereby increasing their feature/label influ-", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 303, + 437, + 505, + 449 + ], + "spans": [ + { + "bbox": [ + 303, + 437, + 505, + 449 + ], + "score": 1.0, + "content": "ence on each other. In this way, our model is able", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 303, + 448, + 505, + 460 + ], + "spans": [ + { + "bbox": [ + 303, + 448, + 505, + 460 + ], + "score": 1.0, + "content": "to identify potential intra-class edges (bold links", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 303, + 459, + 477, + 471 + ], + "spans": [ + { + "bbox": [ + 303, + 459, + 477, + 471 + ], + "score": 1.0, + "content": "in Figure 1b) and strengthen their weights.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 41.5 + } + ], + "index": 37.75 + }, + { + "type": "text", + "bbox": [ + 107, + 489, + 505, + 544 + ], + "lines": [ + { + "bbox": [ + 106, + 488, + 505, + 501 + ], + "spans": [ + { + "bbox": [ + 106, + 488, + 505, + 501 + ], + "score": 1.0, + "content": "from local neighbors. This will force the model to increase the weight/bandwidth of possible paths", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 498, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 505, + 513 + ], + "score": 1.0, + "content": "that connect nodes with the same label, so that labels can “flow” easily along these paths for the", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 510, + 506, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 510, + 506, + 524 + ], + "score": 1.0, + "content": "purpose of label reconstruction. In this way, GCN-LPA is able to identify potential intra-class edges", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 519, + 506, + 536 + ], + "spans": [ + { + "bbox": [ + 105, + 519, + 506, + 536 + ], + "score": 1.0, + "content": "and increase their weights to assist learning clustering structures ( see Figure 1 for an illustrating", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 532, + 149, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 149, + 546 + ], + "score": 1.0, + "content": "example).", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 48, + "bbox_fs": [ + 105, + 488, + 506, + 546 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 550, + 505, + 660 + ], + "lines": [ + { + "bbox": [ + 106, + 549, + 505, + 562 + ], + "spans": [ + { + "bbox": [ + 106, + 549, + 505, + 562 + ], + "score": 1.0, + "content": "To empirically justify our claim, we apply a two-layer untrained GCN with randomly initialized", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 560, + 506, + 573 + ], + "spans": [ + { + "bbox": [ + 105, + 560, + 506, + 573 + ], + "score": 1.0, + "content": "transformation matrices to the well-known Zachary’s karate club network (Zachary, 1977) as shown", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 106, + 572, + 505, + 583 + ], + "spans": [ + { + "bbox": [ + 106, + 572, + 505, + 583 + ], + "score": 1.0, + "content": "in Figure 2a, which contains 34 nodes of 2 classes and 78 unweighted edges (grey solid lines). We", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 105, + 582, + 505, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 505, + 595 + ], + "score": 1.0, + "content": "then increase the weights of intra-class edges by ten times to simulate GCN-LPA. We find that GCN", + "type": "text" + } + ], + "index": 54 + }, + { + "bbox": [ + 106, + 594, + 505, + 605 + ], + "spans": [ + { + "bbox": [ + 106, + 594, + 505, + 605 + ], + "score": 1.0, + "content": "works well on this network (Figure 2b), but GCN-LPA performs even better than GCN because", + "type": "text" + } + ], + "index": 55 + }, + { + "bbox": [ + 105, + 604, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 505, + 617 + ], + "score": 1.0, + "content": "the node embeddings are completely linearly separable as shown in Figure 2c. To further justify", + "type": "text" + } + ], + "index": 56 + }, + { + "bbox": [ + 105, + 615, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 505, + 628 + ], + "score": 1.0, + "content": "our claim, we randomly add 20 “noisy” inter-class edges (grey dotted lines) to the original network,", + "type": "text" + } + ], + "index": 57 + }, + { + "bbox": [ + 105, + 626, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 505, + 639 + ], + "score": 1.0, + "content": "from which we observe that GCN is misled by noise and mixes nodes of two classes together (Figure", + "type": "text" + } + ], + "index": 58 + }, + { + "bbox": [ + 105, + 635, + 505, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 635, + 505, + 651 + ], + "score": 1.0, + "content": "2d), but GCN-LPA still distinguishes the two clusters (Figure 2e) because it is better at “denoising”", + "type": "text" + } + ], + "index": 59 + }, + { + "bbox": [ + 105, + 648, + 343, + 660 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 343, + 660 + ], + "score": 1.0, + "content": "undesirable edges based on the supervised signal of labels.", + "type": "text" + } + ], + "index": 60 + } + ], + "index": 55.5, + "bbox_fs": [ + 105, + 549, + 506, + 660 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 681, + 303, + 694 + ], + "lines": [ + { + "bbox": [ + 104, + 679, + 304, + 696 + ], + "spans": [ + { + "bbox": [ + 104, + 679, + 304, + 696 + ], + "score": 1.0, + "content": "3 CONNECTION TO EXISTING WORK", + "type": "text" + } + ], + "index": 61 + } + ], + "index": 61 + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 503, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "Edge weights play a key role in graph-based machine learning algorithms. In this section, we discuss", + "type": "text" + } + ], + "index": 62 + }, + { + "bbox": [ + 105, + 720, + 353, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 353, + 733 + ], + "score": 1.0, + "content": "three lines of related work that learn edge weights adaptively.", + "type": "text" + } + ], + "index": 63 + } + ], + "index": 62.5, + "bbox_fs": [ + 105, + 709, + 505, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 111, + 86, + 504, + 169 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 111, + 86, + 504, + 169 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 111, + 86, + 504, + 169 + ], + "spans": [ + { + "bbox": [ + 111, + 86, + 504, + 169 + ], + "score": 0.95, + "type": "image", + "image_path": "8b89d54087379580a1fbf7d646ab988e468f16e6f929c417af73e0bd5bd30559.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 111, + 86, + 504, + 113.66666666666667 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 111, + 113.66666666666667, + 504, + 141.33333333333334 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 111, + 141.33333333333334, + 504, + 169.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 177, + 505, + 234 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 178, + 505, + 190 + ], + "spans": [ + { + "bbox": [ + 106, + 178, + 505, + 190 + ], + "score": 1.0, + "content": "Figure 2: Node embeddings of Zachary’s karate club network trained on a node classification task", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 187, + 506, + 203 + ], + "spans": [ + { + "bbox": [ + 105, + 187, + 506, + 203 + ], + "score": 1.0, + "content": "(red vs. blue). Figure 2a visualizes the graph. Node coordinates in Figure 2b-2e are the embedding", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 198, + 506, + 214 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 506, + 214 + ], + "score": 1.0, + "content": "coordinates. Notice that GCN does not produce linearly separable embeddings (Figure 2b vs. Figure", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 209, + 506, + 225 + ], + "spans": [ + { + "bbox": [ + 105, + 209, + 506, + 225 + ], + "score": 1.0, + "content": "2c), while GCN-LPA performs much better even in the presence of noisy edges (Figure 2d vs. Figure", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 222, + 342, + 234 + ], + "spans": [ + { + "bbox": [ + 106, + 222, + 342, + 234 + ], + "score": 1.0, + "content": "2e). Additional visualizations are included in Appendix D.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5 + } + ], + "index": 3.0 + }, + { + "type": "text", + "bbox": [ + 107, + 255, + 504, + 333 + ], + "lines": [ + { + "bbox": [ + 106, + 257, + 505, + 268 + ], + "spans": [ + { + "bbox": [ + 106, + 257, + 505, + 268 + ], + "score": 1.0, + "content": "Locally Linear Embedding. Locally linear embedding (LLE) (Roweis & Saul, 2000) and its vari-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 267, + 505, + 280 + ], + "spans": [ + { + "bbox": [ + 105, + 267, + 505, + 280 + ], + "score": 1.0, + "content": "ants (Zhang & Wang, 2007; Kong et al., 2012) learn edge weights by constructing a linear de-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 278, + 504, + 290 + ], + "spans": [ + { + "bbox": [ + 105, + 278, + 504, + 290 + ], + "score": 1.0, + "content": "pendency between a node and its neighbors, then use the learned edge weights to embed high-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 289, + 505, + 300 + ], + "spans": [ + { + "bbox": [ + 106, + 289, + 505, + 300 + ], + "score": 1.0, + "content": "dimensional nodes into a low-dimensional space. Our work is similar to LLE in the aspect of trans-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 299, + 505, + 312 + ], + "spans": [ + { + "bbox": [ + 105, + 299, + 505, + 312 + ], + "score": 1.0, + "content": "ferring the knowledge of edge importance from one space to another, but the difference is that LLE", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 312, + 505, + 323 + ], + "spans": [ + { + "bbox": [ + 105, + 312, + 505, + 323 + ], + "score": 1.0, + "content": "is an unsupervised dimension reduction method that learns the graph structure based on local prox-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 322, + 497, + 334 + ], + "spans": [ + { + "bbox": [ + 106, + 322, + 497, + 334 + ], + "score": 1.0, + "content": "imity only, while our work is semi-supervised and explores high-order relationship among nodes.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 106, + 338, + 505, + 460 + ], + "lines": [ + { + "bbox": [ + 105, + 337, + 505, + 351 + ], + "spans": [ + { + "bbox": [ + 105, + 337, + 505, + 351 + ], + "score": 1.0, + "content": "Label Propagation Algorithm. Classical LPA (Zhu et al., 2005; Zhou et al., 2004) can only make", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 349, + 505, + 361 + ], + "spans": [ + { + "bbox": [ + 105, + 349, + 505, + 361 + ], + "score": 1.0, + "content": "use of node labels rather than node features. In contrast, adaptive LPA considers node features", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 361, + 505, + 373 + ], + "spans": [ + { + "bbox": [ + 106, + 361, + 505, + 373 + ], + "score": 1.0, + "content": "by making edge weights learnable. Typical techniques of learning edge weights include adopting", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 104, + 370, + 504, + 387 + ], + "spans": [ + { + "bbox": [ + 104, + 370, + 354, + 387 + ], + "score": 1.0, + "content": "kernel functions (Zhu et al., 2003; Liu et al., 2019a) (e.g.,", + "type": "text" + }, + { + "bbox": [ + 355, + 371, + 504, + 384 + ], + "score": 0.92, + "content": "a _ { i j } \\ = \\ \\mathrm { { e x p } } ( - { \\textstyle \\sum } _ { d } ( x _ { i d } - x _ { j d } ) ^ { 2 } / \\sigma _ { d } ^ { 2 } )", + "type": "inline_equation" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 383, + 505, + 395 + ], + "spans": [ + { + "bbox": [ + 106, + 383, + 135, + 395 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 135, + 383, + 142, + 393 + ], + "score": 0.75, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 142, + 383, + 505, + 395 + ], + "score": 1.0, + "content": "is dimensionality of features), minimizing neighborhood reconstruction error (Wang &", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 394, + 505, + 405 + ], + "spans": [ + { + "bbox": [ + 106, + 394, + 505, + 405 + ], + "score": 1.0, + "content": "Zhang, 2008; Karasuyama & Mamitsuka, 2013), using leave-one-out loss (Zhang & Lee, 2007), or", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 405, + 505, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 405, + 505, + 416 + ], + "score": 1.0, + "content": "imposing sparseness on edge weights (Hong et al., 2009). However, in these LPA variants, node", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 416, + 504, + 427 + ], + "spans": [ + { + "bbox": [ + 106, + 416, + 504, + 427 + ], + "score": 1.0, + "content": "features are only used to assist learning the graph structure rather than explicitly mapped to node", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 426, + 505, + 438 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 505, + 438 + ], + "score": 1.0, + "content": "labels, which limits their capability in node classification. Another notable difference is that adaptive", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 437, + 505, + 449 + ], + "spans": [ + { + "bbox": [ + 105, + 437, + 505, + 449 + ], + "score": 1.0, + "content": "LPA learns edge weights by introducing the regularizations above, while our work takes LPA itself", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 449, + 264, + 460 + ], + "spans": [ + { + "bbox": [ + 106, + 449, + 264, + 460 + ], + "score": 1.0, + "content": "as regularization to learn edge weights.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 106, + 465, + 505, + 601 + ], + "lines": [ + { + "bbox": [ + 106, + 465, + 505, + 478 + ], + "spans": [ + { + "bbox": [ + 106, + 465, + 505, + 478 + ], + "score": 1.0, + "content": "Attention and Diffusion on Graphs. Our method is also conceptually connected to attention mech-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 476, + 505, + 489 + ], + "spans": [ + { + "bbox": [ + 106, + 476, + 293, + 489 + ], + "score": 1.0, + "content": "anism on graphs, in which an attention weight", + "type": "text" + }, + { + "bbox": [ + 293, + 478, + 308, + 489 + ], + "score": 0.88, + "content": "\\alpha _ { i j }", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 476, + 407, + 489 + ], + "score": 1.0, + "content": "is learned between node", + "type": "text" + }, + { + "bbox": [ + 408, + 478, + 417, + 487 + ], + "score": 0.84, + "content": "v _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 476, + 435, + 489 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 435, + 478, + 446, + 489 + ], + "score": 0.84, + "content": "v _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 476, + 505, + 489 + ], + "score": 1.0, + "content": ". For example,", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 488, + 504, + 501 + ], + "spans": [ + { + "bbox": [ + 106, + 488, + 258, + 501 + ], + "score": 0.81, + "content": "\\alpha _ { i j } = \\mathrm { L e a k y R e L U } ( a ^ { \\top } [ W \\mathbf { x } _ { i } | | W \\mathbf { x } _ { j } ] )", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 488, + 394, + 501 + ], + "score": 1.0, + "content": "in GAT (Velickovi ˇ c et al. ´ , 2018),", + "type": "text" + }, + { + "bbox": [ + 394, + 489, + 504, + 501 + ], + "score": 0.89, + "content": "\\alpha _ { i j } = a \\cdot \\cos ( W \\mathbf { x } _ { i } , W \\mathbf { x } _ { j } )", + "type": "inline_equation" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 500, + 505, + 514 + ], + "spans": [ + { + "bbox": [ + 105, + 500, + 281, + 514 + ], + "score": 1.0, + "content": "in AGNN (Thekumparampil et al., 2018),", + "type": "text" + }, + { + "bbox": [ + 281, + 500, + 375, + 514 + ], + "score": 0.93, + "content": "\\alpha _ { i j } = ( W _ { 1 } \\mathbf { x } _ { i } ) ^ { \\top } W _ { 2 } \\mathbf { x } _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 375, + 500, + 505, + 514 + ], + "score": 1.0, + "content": "in GaAN (Zhang et al., 2018),", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 513, + 505, + 526 + ], + "spans": [ + { + "bbox": [ + 106, + 513, + 123, + 525 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 513, + 253, + 526 + ], + "score": 0.88, + "content": "\\alpha _ { i j } = \\pmb { a } ^ { \\top } \\operatorname { t a n h } ( W _ { 1 } \\mathbf { x } _ { i } + W _ { 2 } \\mathbf { x } _ { j } )", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 513, + 414, + 525 + ], + "score": 1.0, + "content": "in GeniePath (Liu et al., 2019b), where", + "type": "text" + }, + { + "bbox": [ + 415, + 515, + 421, + 523 + ], + "score": 0.75, + "content": "a", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 513, + 439, + 525 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 439, + 514, + 452, + 524 + ], + "score": 0.57, + "content": "W", + "type": "inline_equation" + }, + { + "bbox": [ + 452, + 513, + 505, + 525 + ], + "score": 1.0, + "content": "are trainable", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 524, + 504, + 536 + ], + "spans": [ + { + "bbox": [ + 106, + 524, + 504, + 536 + ], + "score": 1.0, + "content": "variables. Our method is also similar to diffusion-based methods (Klicpera et al., 2019a; Xu et al.,", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 534, + 505, + 547 + ], + "spans": [ + { + "bbox": [ + 105, + 534, + 505, + 547 + ], + "score": 1.0, + "content": "2019a; Abu-El-Haija et al., 2019; Klicpera et al., 2019b; Jiang et al., 2019; Yang et al., 2019). Graph", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 545, + 506, + 559 + ], + "spans": [ + { + "bbox": [ + 105, + 545, + 506, + 559 + ], + "score": 1.0, + "content": "diffusion uses extended neighborhoods for aggregation in GNNs, which can be seen as learning a", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 557, + 505, + 569 + ], + "spans": [ + { + "bbox": [ + 105, + 557, + 505, + 569 + ], + "score": 1.0, + "content": "new adjacency matrix for a given graph. A significant difference between attention/diffusion mech-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 567, + 505, + 581 + ], + "spans": [ + { + "bbox": [ + 105, + 567, + 505, + 581 + ], + "score": 1.0, + "content": "anisms and our work is that attention/diffusion is learned based on feature similarity/graph topology,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 579, + 504, + 590 + ], + "spans": [ + { + "bbox": [ + 106, + 579, + 504, + 590 + ], + "score": 1.0, + "content": "while we propose that edge weights should be consistent with the distribution of labels on the graph,", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 590, + 481, + 603 + ], + "spans": [ + { + "bbox": [ + 106, + 590, + 481, + 603 + ], + "score": 1.0, + "content": "which requires less handcrafting of the attention/diffusion function and is more task-oriented.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 31.5 + }, + { + "type": "title", + "bbox": [ + 108, + 619, + 200, + 632 + ], + "lines": [ + { + "bbox": [ + 104, + 617, + 201, + 634 + ], + "spans": [ + { + "bbox": [ + 104, + 617, + 201, + 634 + ], + "score": 1.0, + "content": "4 EXPERIMENTS", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38 + }, + { + "type": "title", + "bbox": [ + 108, + 644, + 218, + 656 + ], + "lines": [ + { + "bbox": [ + 106, + 645, + 219, + 657 + ], + "spans": [ + { + "bbox": [ + 106, + 645, + 219, + 657 + ], + "score": 1.0, + "content": "4.1 EXPERIMENT SETUP", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 107, + 666, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 665, + 504, + 677 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 504, + 677 + ], + "score": 1.0, + "content": "Datasets. We use the following five datasets in our experiments. Cora, Citeseer, and Pubmed", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 676, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 676, + 505, + 689 + ], + "score": 1.0, + "content": "(Sen et al., 2008) are citation networks, where nodes correspond to documents, edges correspond", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "to citation links, and each node has a sparse bag-of-words feature vector as well as a class label.", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 697, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 697, + 505, + 712 + ], + "score": 1.0, + "content": "We also use two co-authorship networks (Shchur et al., 2018), Coauthor-CS and Coauthor-Phy,", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 709, + 505, + 721 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 721 + ], + "score": 1.0, + "content": "where nodes are authors and an edge indicates that two authors co-authored a paper. Node features", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 721, + 506, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 506, + 732 + ], + "score": 1.0, + "content": "represent paper keywords for each author’s papers, and class labels indicate most active fields of", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 42.5 + } + ], + "page_idx": 5, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 752, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "score": 1.0, + "content": "6", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 27, + 307, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 111, + 86, + 504, + 169 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 111, + 86, + 504, + 169 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 111, + 86, + 504, + 169 + ], + "spans": [ + { + "bbox": [ + 111, + 86, + 504, + 169 + ], + "score": 0.95, + "type": "image", + "image_path": "8b89d54087379580a1fbf7d646ab988e468f16e6f929c417af73e0bd5bd30559.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 111, + 86, + 504, + 113.66666666666667 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 111, + 113.66666666666667, + 504, + 141.33333333333334 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 111, + 141.33333333333334, + 504, + 169.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 177, + 505, + 234 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 178, + 505, + 190 + ], + "spans": [ + { + "bbox": [ + 106, + 178, + 505, + 190 + ], + "score": 1.0, + "content": "Figure 2: Node embeddings of Zachary’s karate club network trained on a node classification task", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 187, + 506, + 203 + ], + "spans": [ + { + "bbox": [ + 105, + 187, + 506, + 203 + ], + "score": 1.0, + "content": "(red vs. blue). Figure 2a visualizes the graph. Node coordinates in Figure 2b-2e are the embedding", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 198, + 506, + 214 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 506, + 214 + ], + "score": 1.0, + "content": "coordinates. Notice that GCN does not produce linearly separable embeddings (Figure 2b vs. Figure", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 209, + 506, + 225 + ], + "spans": [ + { + "bbox": [ + 105, + 209, + 506, + 225 + ], + "score": 1.0, + "content": "2c), while GCN-LPA performs much better even in the presence of noisy edges (Figure 2d vs. Figure", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 222, + 342, + 234 + ], + "spans": [ + { + "bbox": [ + 106, + 222, + 342, + 234 + ], + "score": 1.0, + "content": "2e). Additional visualizations are included in Appendix D.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5 + } + ], + "index": 3.0 + }, + { + "type": "text", + "bbox": [ + 107, + 255, + 504, + 333 + ], + "lines": [ + { + "bbox": [ + 106, + 257, + 505, + 268 + ], + "spans": [ + { + "bbox": [ + 106, + 257, + 505, + 268 + ], + "score": 1.0, + "content": "Locally Linear Embedding. Locally linear embedding (LLE) (Roweis & Saul, 2000) and its vari-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 267, + 505, + 280 + ], + "spans": [ + { + "bbox": [ + 105, + 267, + 505, + 280 + ], + "score": 1.0, + "content": "ants (Zhang & Wang, 2007; Kong et al., 2012) learn edge weights by constructing a linear de-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 278, + 504, + 290 + ], + "spans": [ + { + "bbox": [ + 105, + 278, + 504, + 290 + ], + "score": 1.0, + "content": "pendency between a node and its neighbors, then use the learned edge weights to embed high-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 289, + 505, + 300 + ], + "spans": [ + { + "bbox": [ + 106, + 289, + 505, + 300 + ], + "score": 1.0, + "content": "dimensional nodes into a low-dimensional space. Our work is similar to LLE in the aspect of trans-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 299, + 505, + 312 + ], + "spans": [ + { + "bbox": [ + 105, + 299, + 505, + 312 + ], + "score": 1.0, + "content": "ferring the knowledge of edge importance from one space to another, but the difference is that LLE", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 312, + 505, + 323 + ], + "spans": [ + { + "bbox": [ + 105, + 312, + 505, + 323 + ], + "score": 1.0, + "content": "is an unsupervised dimension reduction method that learns the graph structure based on local prox-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 322, + 497, + 334 + ], + "spans": [ + { + "bbox": [ + 106, + 322, + 497, + 334 + ], + "score": 1.0, + "content": "imity only, while our work is semi-supervised and explores high-order relationship among nodes.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 11, + "bbox_fs": [ + 105, + 257, + 505, + 334 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 338, + 505, + 460 + ], + "lines": [ + { + "bbox": [ + 105, + 337, + 505, + 351 + ], + "spans": [ + { + "bbox": [ + 105, + 337, + 505, + 351 + ], + "score": 1.0, + "content": "Label Propagation Algorithm. Classical LPA (Zhu et al., 2005; Zhou et al., 2004) can only make", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 349, + 505, + 361 + ], + "spans": [ + { + "bbox": [ + 105, + 349, + 505, + 361 + ], + "score": 1.0, + "content": "use of node labels rather than node features. In contrast, adaptive LPA considers node features", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 361, + 505, + 373 + ], + "spans": [ + { + "bbox": [ + 106, + 361, + 505, + 373 + ], + "score": 1.0, + "content": "by making edge weights learnable. Typical techniques of learning edge weights include adopting", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 104, + 370, + 504, + 387 + ], + "spans": [ + { + "bbox": [ + 104, + 370, + 354, + 387 + ], + "score": 1.0, + "content": "kernel functions (Zhu et al., 2003; Liu et al., 2019a) (e.g.,", + "type": "text" + }, + { + "bbox": [ + 355, + 371, + 504, + 384 + ], + "score": 0.92, + "content": "a _ { i j } \\ = \\ \\mathrm { { e x p } } ( - { \\textstyle \\sum } _ { d } ( x _ { i d } - x _ { j d } ) ^ { 2 } / \\sigma _ { d } ^ { 2 } )", + "type": "inline_equation" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 383, + 505, + 395 + ], + "spans": [ + { + "bbox": [ + 106, + 383, + 135, + 395 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 135, + 383, + 142, + 393 + ], + "score": 0.75, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 142, + 383, + 505, + 395 + ], + "score": 1.0, + "content": "is dimensionality of features), minimizing neighborhood reconstruction error (Wang &", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 394, + 505, + 405 + ], + "spans": [ + { + "bbox": [ + 106, + 394, + 505, + 405 + ], + "score": 1.0, + "content": "Zhang, 2008; Karasuyama & Mamitsuka, 2013), using leave-one-out loss (Zhang & Lee, 2007), or", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 405, + 505, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 405, + 505, + 416 + ], + "score": 1.0, + "content": "imposing sparseness on edge weights (Hong et al., 2009). However, in these LPA variants, node", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 416, + 504, + 427 + ], + "spans": [ + { + "bbox": [ + 106, + 416, + 504, + 427 + ], + "score": 1.0, + "content": "features are only used to assist learning the graph structure rather than explicitly mapped to node", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 426, + 505, + 438 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 505, + 438 + ], + "score": 1.0, + "content": "labels, which limits their capability in node classification. Another notable difference is that adaptive", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 437, + 505, + 449 + ], + "spans": [ + { + "bbox": [ + 105, + 437, + 505, + 449 + ], + "score": 1.0, + "content": "LPA learns edge weights by introducing the regularizations above, while our work takes LPA itself", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 449, + 264, + 460 + ], + "spans": [ + { + "bbox": [ + 106, + 449, + 264, + 460 + ], + "score": 1.0, + "content": "as regularization to learn edge weights.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 20, + "bbox_fs": [ + 104, + 337, + 505, + 460 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 465, + 505, + 601 + ], + "lines": [ + { + "bbox": [ + 106, + 465, + 505, + 478 + ], + "spans": [ + { + "bbox": [ + 106, + 465, + 505, + 478 + ], + "score": 1.0, + "content": "Attention and Diffusion on Graphs. Our method is also conceptually connected to attention mech-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 476, + 505, + 489 + ], + "spans": [ + { + "bbox": [ + 106, + 476, + 293, + 489 + ], + "score": 1.0, + "content": "anism on graphs, in which an attention weight", + "type": "text" + }, + { + "bbox": [ + 293, + 478, + 308, + 489 + ], + "score": 0.88, + "content": "\\alpha _ { i j }", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 476, + 407, + 489 + ], + "score": 1.0, + "content": "is learned between node", + "type": "text" + }, + { + "bbox": [ + 408, + 478, + 417, + 487 + ], + "score": 0.84, + "content": "v _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 476, + 435, + 489 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 435, + 478, + 446, + 489 + ], + "score": 0.84, + "content": "v _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 476, + 505, + 489 + ], + "score": 1.0, + "content": ". For example,", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 488, + 504, + 501 + ], + "spans": [ + { + "bbox": [ + 106, + 488, + 258, + 501 + ], + "score": 0.81, + "content": "\\alpha _ { i j } = \\mathrm { L e a k y R e L U } ( a ^ { \\top } [ W \\mathbf { x } _ { i } | | W \\mathbf { x } _ { j } ] )", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 488, + 394, + 501 + ], + "score": 1.0, + "content": "in GAT (Velickovi ˇ c et al. ´ , 2018),", + "type": "text" + }, + { + "bbox": [ + 394, + 489, + 504, + 501 + ], + "score": 0.89, + "content": "\\alpha _ { i j } = a \\cdot \\cos ( W \\mathbf { x } _ { i } , W \\mathbf { x } _ { j } )", + "type": "inline_equation" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 500, + 505, + 514 + ], + "spans": [ + { + "bbox": [ + 105, + 500, + 281, + 514 + ], + "score": 1.0, + "content": "in AGNN (Thekumparampil et al., 2018),", + "type": "text" + }, + { + "bbox": [ + 281, + 500, + 375, + 514 + ], + "score": 0.93, + "content": "\\alpha _ { i j } = ( W _ { 1 } \\mathbf { x } _ { i } ) ^ { \\top } W _ { 2 } \\mathbf { x } _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 375, + 500, + 505, + 514 + ], + "score": 1.0, + "content": "in GaAN (Zhang et al., 2018),", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 513, + 505, + 526 + ], + "spans": [ + { + "bbox": [ + 106, + 513, + 123, + 525 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 513, + 253, + 526 + ], + "score": 0.88, + "content": "\\alpha _ { i j } = \\pmb { a } ^ { \\top } \\operatorname { t a n h } ( W _ { 1 } \\mathbf { x } _ { i } + W _ { 2 } \\mathbf { x } _ { j } )", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 513, + 414, + 525 + ], + "score": 1.0, + "content": "in GeniePath (Liu et al., 2019b), where", + "type": "text" + }, + { + "bbox": [ + 415, + 515, + 421, + 523 + ], + "score": 0.75, + "content": "a", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 513, + 439, + 525 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 439, + 514, + 452, + 524 + ], + "score": 0.57, + "content": "W", + "type": "inline_equation" + }, + { + "bbox": [ + 452, + 513, + 505, + 525 + ], + "score": 1.0, + "content": "are trainable", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 524, + 504, + 536 + ], + "spans": [ + { + "bbox": [ + 106, + 524, + 504, + 536 + ], + "score": 1.0, + "content": "variables. Our method is also similar to diffusion-based methods (Klicpera et al., 2019a; Xu et al.,", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 534, + 505, + 547 + ], + "spans": [ + { + "bbox": [ + 105, + 534, + 505, + 547 + ], + "score": 1.0, + "content": "2019a; Abu-El-Haija et al., 2019; Klicpera et al., 2019b; Jiang et al., 2019; Yang et al., 2019). Graph", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 545, + 506, + 559 + ], + "spans": [ + { + "bbox": [ + 105, + 545, + 506, + 559 + ], + "score": 1.0, + "content": "diffusion uses extended neighborhoods for aggregation in GNNs, which can be seen as learning a", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 557, + 505, + 569 + ], + "spans": [ + { + "bbox": [ + 105, + 557, + 505, + 569 + ], + "score": 1.0, + "content": "new adjacency matrix for a given graph. A significant difference between attention/diffusion mech-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 567, + 505, + 581 + ], + "spans": [ + { + "bbox": [ + 105, + 567, + 505, + 581 + ], + "score": 1.0, + "content": "anisms and our work is that attention/diffusion is learned based on feature similarity/graph topology,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 579, + 504, + 590 + ], + "spans": [ + { + "bbox": [ + 106, + 579, + 504, + 590 + ], + "score": 1.0, + "content": "while we propose that edge weights should be consistent with the distribution of labels on the graph,", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 590, + 481, + 603 + ], + "spans": [ + { + "bbox": [ + 106, + 590, + 481, + 603 + ], + "score": 1.0, + "content": "which requires less handcrafting of the attention/diffusion function and is more task-oriented.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 31.5, + "bbox_fs": [ + 105, + 465, + 506, + 603 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 619, + 200, + 632 + ], + "lines": [ + { + "bbox": [ + 104, + 617, + 201, + 634 + ], + "spans": [ + { + "bbox": [ + 104, + 617, + 201, + 634 + ], + "score": 1.0, + "content": "4 EXPERIMENTS", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38 + }, + { + "type": "title", + "bbox": [ + 108, + 644, + 218, + 656 + ], + "lines": [ + { + "bbox": [ + 106, + 645, + 219, + 657 + ], + "spans": [ + { + "bbox": [ + 106, + 645, + 219, + 657 + ], + "score": 1.0, + "content": "4.1 EXPERIMENT SETUP", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 107, + 666, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 665, + 504, + 677 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 504, + 677 + ], + "score": 1.0, + "content": "Datasets. We use the following five datasets in our experiments. Cora, Citeseer, and Pubmed", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 676, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 676, + 505, + 689 + ], + "score": 1.0, + "content": "(Sen et al., 2008) are citation networks, where nodes correspond to documents, edges correspond", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "to citation links, and each node has a sparse bag-of-words feature vector as well as a class label.", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 697, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 697, + 505, + 712 + ], + "score": 1.0, + "content": "We also use two co-authorship networks (Shchur et al., 2018), Coauthor-CS and Coauthor-Phy,", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 709, + 505, + 721 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 721 + ], + "score": 1.0, + "content": "where nodes are authors and an edge indicates that two authors co-authored a paper. Node features", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 721, + 506, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 506, + 732 + ], + "score": 1.0, + "content": "represent paper keywords for each author’s papers, and class labels indicate most active fields of", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 42.5, + "bbox_fs": [ + 105, + 665, + 506, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 126, + 80, + 485, + 183 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 126, + 80, + 485, + 183 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 126, + 80, + 485, + 183 + ], + "spans": [ + { + "bbox": [ + 126, + 80, + 485, + 183 + ], + "score": 0.981, + "html": "
MethodCoraCiteseerPubmedCoauthor-CSCoauthor-Phy
LR57.1 ± 2.361.0±2.264.1 ± 3.186.4±0.986.7±1.5
LPA74.4± 2.667.8 ± 2.170.5 ± 5.373.6 ± 3.986.6 ± 2.0
GCN81.4 ± 1.371.9 ± 1.977.5 ± 2.991.1 ± 0.592.4 ± 1.0
GAT80.7 ±1.371.4 ± 1.976.7 ± 2.390.5 ± 0.692.2 ± 0.9
JK-Net81.3 ± 1.470.2 ±1.377.6 ± 0.990.3 ± 0.491.0 ± 0.7
GIN74.5 ± 1.560.7 ±1.373.4 ±1.284.1 ± 1.987.3 ±1.7
GDC83.2 ± 0.972.2 ±1.477.8 ± 0.891.4 ± 1.092.0± 0.7
GCN+LPA78.4± 0.769.8 ± 1.474.1 ± 0.984.5 ±1.089.7 ± 0.8
GCN-LPA83.0±1.472.6± 0.978.4 ± 1.591.9± 0.993.4± 1.6
", + "type": "table", + "image_path": "e80d553a0c1536cf7f21af5d109eea4c763685a4a268c2d33780ab4d399252ad.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 126, + 80, + 485, + 114.33333333333334 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 126, + 114.33333333333334, + 485, + 148.66666666666669 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 126, + 148.66666666666669, + 485, + 183.00000000000003 + ], + "spans": [], + "index": 2 + } + ] + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 113, + 191, + 499, + 203 + ], + "lines": [ + { + "bbox": [ + 111, + 190, + 500, + 204 + ], + "spans": [ + { + "bbox": [ + 111, + 190, + 203, + 204 + ], + "score": 1.0, + "content": "Table 1: Mean and the", + "type": "text" + }, + { + "bbox": [ + 203, + 191, + 223, + 202 + ], + "score": 0.86, + "content": "9 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 190, + 500, + 204 + ], + "score": 1.0, + "content": "confidence intervals of test set accuracy for all methods and datasets.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + }, + { + "type": "image", + "bbox": [ + 108, + 217, + 225, + 303 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 108, + 217, + 225, + 303 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 217, + 225, + 303 + ], + "spans": [ + { + "bbox": [ + 108, + 217, + 225, + 303 + ], + "score": 0.959, + "type": "image", + "image_path": "f2e00f387ed5dd75968b2e3dee9711338c82e71e21c227901943451cea3df114.jpg" + } + ] + } + ], + "index": 5.5, + "virtual_lines": [ + { + "bbox": [ + 108, + 217, + 225, + 260.0 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 108, + 260.0, + 225, + 303.0 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 313, + 227, + 346 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 313, + 227, + 325 + ], + "spans": [ + { + "bbox": [ + 106, + 313, + 227, + 325 + ], + "score": 1.0, + "content": "Figure 3: Sensitivity to the", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 324, + 228, + 336 + ], + "spans": [ + { + "bbox": [ + 106, + 324, + 228, + 336 + ], + "score": 1.0, + "content": "number of LPA iterations on", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 334, + 175, + 347 + ], + "spans": [ + { + "bbox": [ + 106, + 334, + 175, + 347 + ], + "score": 1.0, + "content": "Citeseer dataset.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11 + } + ], + "index": 8.25 + }, + { + "type": "image", + "bbox": [ + 246, + 217, + 364, + 302 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 246, + 217, + 364, + 302 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 246, + 217, + 364, + 302 + ], + "spans": [ + { + "bbox": [ + 246, + 217, + 364, + 302 + ], + "score": 0.961, + "type": "image", + "image_path": "2739308ba9dc241429355300c63f9ecee44905c7a88e31e0c6d8c41dd3291e12.jpg" + } + ] + } + ], + "index": 6.5, + "virtual_lines": [ + { + "bbox": [ + 246, + 217, + 364, + 259.5 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 246, + 259.5, + 364, + 302.0 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 244, + 313, + 366, + 346 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 244, + 313, + 365, + 325 + ], + "spans": [ + { + "bbox": [ + 244, + 313, + 358, + 325 + ], + "score": 1.0, + "content": "Figure 4: Sensitivity to", + "type": "text" + }, + { + "bbox": [ + 358, + 314, + 365, + 323 + ], + "score": 0.67, + "content": "\\lambda", + "type": "inline_equation" + } + ], + "index": 13 + }, + { + "bbox": [ + 244, + 324, + 366, + 336 + ], + "spans": [ + { + "bbox": [ + 244, + 324, + 366, + 336 + ], + "score": 1.0, + "content": "(weight of LPA loss) on Cite-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 245, + 336, + 296, + 346 + ], + "spans": [ + { + "bbox": [ + 245, + 336, + 296, + 346 + ], + "score": 1.0, + "content": "seer dataset.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14 + } + ], + "index": 10.25 + }, + { + "type": "image", + "bbox": [ + 384, + 218, + 502, + 303 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 384, + 218, + 502, + 303 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 384, + 218, + 502, + 303 + ], + "spans": [ + { + "bbox": [ + 384, + 218, + 502, + 303 + ], + "score": 0.962, + "type": "image", + "image_path": "b8eb7838ea7c122c499093fc31310f4c5ee59e5087729ed812b8387432c2c282.jpg" + } + ] + } + ], + "index": 7.5, + "virtual_lines": [ + { + "bbox": [ + 384, + 218, + 502, + 260.5 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 384, + 260.5, + 502, + 303.0 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 384, + 313, + 505, + 336 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 383, + 312, + 505, + 326 + ], + "spans": [ + { + "bbox": [ + 383, + 312, + 505, + 326 + ], + "score": 1.0, + "content": "Figure 5: Training time per", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 383, + 324, + 487, + 337 + ], + "spans": [ + { + "bbox": [ + 383, + 324, + 487, + 337 + ], + "score": 1.0, + "content": "epoch on random graphs.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5 + } + ], + "index": 12.0 + }, + { + "type": "text", + "bbox": [ + 107, + 369, + 505, + 413 + ], + "lines": [ + { + "bbox": [ + 106, + 369, + 505, + 380 + ], + "spans": [ + { + "bbox": [ + 106, + 369, + 505, + 380 + ], + "score": 1.0, + "content": "study for each author. Statistics of the five datasets are shown in Appendix E. We also calculate", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 380, + 505, + 392 + ], + "spans": [ + { + "bbox": [ + 106, + 380, + 505, + 392 + ], + "score": 1.0, + "content": "the intra-class edge rate (the fraction of edges that connect two nodes within the same class), which", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 391, + 505, + 403 + ], + "spans": [ + { + "bbox": [ + 105, + 391, + 505, + 403 + ], + "score": 1.0, + "content": "is significantly higher than inter-class edge rate in all networks. The finding supports our claim in", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 401, + 416, + 414 + ], + "spans": [ + { + "bbox": [ + 105, + 401, + 416, + 414 + ], + "score": 1.0, + "content": "Section 2.4 that node classification benefits from intra-class edges in a graph.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 19.5 + }, + { + "type": "text", + "bbox": [ + 106, + 419, + 505, + 506 + ], + "lines": [ + { + "bbox": [ + 105, + 417, + 505, + 432 + ], + "spans": [ + { + "bbox": [ + 105, + 417, + 505, + 432 + ], + "score": 1.0, + "content": "Baselines. We compare against the following baselines in our experiments. Logistic Regression", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 429, + 505, + 443 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 505, + 443 + ], + "score": 1.0, + "content": "(LR) is feature-based methods that do not consider the graph structure. Label Propagation (LPA)", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 440, + 505, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 440, + 505, + 453 + ], + "score": 1.0, + "content": "(Zhu et al., 2005), on the other hand, only consider the graph structure and ignore node features.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 450, + 505, + 465 + ], + "spans": [ + { + "bbox": [ + 105, + 450, + 505, + 465 + ], + "score": 1.0, + "content": "We also compare with several GNNs: Graph Convolutional Network (GCN) (Kipf & Welling,", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 462, + 505, + 475 + ], + "spans": [ + { + "bbox": [ + 105, + 462, + 505, + 475 + ], + "score": 1.0, + "content": "2017), Graph Attention Network (GAT), Jumping Knowledge Network (JK-Net) (Xu et al.,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 472, + 505, + 487 + ], + "spans": [ + { + "bbox": [ + 105, + 472, + 505, + 487 + ], + "score": 1.0, + "content": "2018), Graph Isomorphism Network (GIN) (Xu et al., 2019b), and Graph Diffusion Convolution", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 484, + 505, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 505, + 497 + ], + "score": 1.0, + "content": "(GDC) (Klicpera et al., 2019b) (with GCN as the base model). In addition, we propose another", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 495, + 426, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 141, + 507 + ], + "score": 1.0, + "content": "baseline", + "type": "text" + }, + { + "bbox": [ + 142, + 495, + 189, + 506 + ], + "score": 0.42, + "content": "\\mathbf { G C \\bar { N } + L P A }", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 495, + 426, + 507 + ], + "score": 1.0, + "content": ", which simply adds predictions of GCN and LPA together.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 25.5 + }, + { + "type": "text", + "bbox": [ + 107, + 513, + 505, + 623 + ], + "lines": [ + { + "bbox": [ + 105, + 512, + 505, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 512, + 505, + 524 + ], + "score": 1.0, + "content": "Experimental Setup. Our experiments focus on the transductive setting where we only know labels", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 522, + 505, + 536 + ], + "spans": [ + { + "bbox": [ + 105, + 522, + 505, + 536 + ], + "score": 1.0, + "content": "of part of nodes but have access to the entire graph as well as features of all nodes.3 We randomly", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 533, + 506, + 548 + ], + "spans": [ + { + "bbox": [ + 105, + 533, + 506, + 548 + ], + "score": 1.0, + "content": "sample 20 nodes per class as training set, 50 nodes per class as validation set, and the remaining", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 545, + 505, + 558 + ], + "spans": [ + { + "bbox": [ + 105, + 545, + 505, + 558 + ], + "score": 1.0, + "content": "nodes as test set. The weight of each edge is treated as a free variable during training. We train", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 557, + 505, + 568 + ], + "spans": [ + { + "bbox": [ + 106, + 557, + 505, + 568 + ], + "score": 1.0, + "content": "our model for 200 epochs using Adam (Kingma & Ba, 2015) and report the test set accuracy when", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 567, + 505, + 580 + ], + "spans": [ + { + "bbox": [ + 105, + 567, + 505, + 580 + ], + "score": 1.0, + "content": "validation set accuracy is maximized. Each experiment is repeated five times and we report the", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 578, + 505, + 590 + ], + "spans": [ + { + "bbox": [ + 106, + 578, + 162, + 590 + ], + "score": 1.0, + "content": "mean and the", + "type": "text" + }, + { + "bbox": [ + 163, + 578, + 182, + 589 + ], + "score": 0.89, + "content": "9 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 183, + 578, + 505, + 590 + ], + "score": 1.0, + "content": "confidence interval. We initialize weights according to Glorot & Bengio (2010)", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 588, + 505, + 602 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 505, + 602 + ], + "score": 1.0, + "content": "and row-normalize input features. During training, we apply L2 regularization to the transformation", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 600, + 505, + 613 + ], + "spans": [ + { + "bbox": [ + 105, + 600, + 505, + 613 + ], + "score": 1.0, + "content": "matrices and use the dropout technique (Srivastava et al., 2014). The settings of all other hyper-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 612, + 268, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 612, + 268, + 622 + ], + "score": 1.0, + "content": "parameters can be found in Appendix F.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 34.5 + }, + { + "type": "title", + "bbox": [ + 107, + 637, + 170, + 648 + ], + "lines": [ + { + "bbox": [ + 105, + 635, + 172, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 635, + 172, + 650 + ], + "score": 1.0, + "content": "4.2 RESULTS", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 40 + }, + { + "type": "text", + "bbox": [ + 107, + 657, + 504, + 702 + ], + "lines": [ + { + "bbox": [ + 106, + 657, + 506, + 669 + ], + "spans": [ + { + "bbox": [ + 106, + 657, + 506, + 669 + ], + "score": 1.0, + "content": "Comparison with Baselines. The results of node classification are summarized in Table 1. Table", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 668, + 506, + 681 + ], + "spans": [ + { + "bbox": [ + 105, + 668, + 506, + 681 + ], + "score": 1.0, + "content": "1 indicates that only using node features (LR) or graph structure (LPA) will lead to information", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 679, + 506, + 692 + ], + "spans": [ + { + "bbox": [ + 105, + 679, + 506, + 692 + ], + "score": 1.0, + "content": "loss and cannot fully exploit datasets. The results demonstrate that our proposed GCN-LPA model", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 690, + 506, + 703 + ], + "spans": [ + { + "bbox": [ + 105, + 690, + 506, + 703 + ], + "score": 1.0, + "content": "surpasses state-of-the-art GNN baselines. We notice that GDC is a strong baseline on Cora, but it", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 42.5 + } + ], + "page_idx": 6, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 712, + 504, + 731 + ], + "lines": [ + { + "bbox": [ + 117, + 709, + 506, + 724 + ], + "spans": [ + { + "bbox": [ + 117, + 709, + 506, + 724 + ], + "score": 1.0, + "content": "3Our method can be easily generalized to inductive setting if implemented using minibatch training like", + "type": "text" + } + ] + }, + { + "bbox": [ + 106, + 721, + 240, + 731 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 240, + 731 + ], + "score": 1.0, + "content": "GraphSAGE (Hamilton et al., 2017).", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 27, + 307, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "score": 1.0, + "content": "7", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 126, + 80, + 485, + 183 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 126, + 80, + 485, + 183 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 126, + 80, + 485, + 183 + ], + "spans": [ + { + "bbox": [ + 126, + 80, + 485, + 183 + ], + "score": 0.981, + "html": "
MethodCoraCiteseerPubmedCoauthor-CSCoauthor-Phy
LR57.1 ± 2.361.0±2.264.1 ± 3.186.4±0.986.7±1.5
LPA74.4± 2.667.8 ± 2.170.5 ± 5.373.6 ± 3.986.6 ± 2.0
GCN81.4 ± 1.371.9 ± 1.977.5 ± 2.991.1 ± 0.592.4 ± 1.0
GAT80.7 ±1.371.4 ± 1.976.7 ± 2.390.5 ± 0.692.2 ± 0.9
JK-Net81.3 ± 1.470.2 ±1.377.6 ± 0.990.3 ± 0.491.0 ± 0.7
GIN74.5 ± 1.560.7 ±1.373.4 ±1.284.1 ± 1.987.3 ±1.7
GDC83.2 ± 0.972.2 ±1.477.8 ± 0.891.4 ± 1.092.0± 0.7
GCN+LPA78.4± 0.769.8 ± 1.474.1 ± 0.984.5 ±1.089.7 ± 0.8
GCN-LPA83.0±1.472.6± 0.978.4 ± 1.591.9± 0.993.4± 1.6
", + "type": "table", + "image_path": "e80d553a0c1536cf7f21af5d109eea4c763685a4a268c2d33780ab4d399252ad.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 126, + 80, + 485, + 114.33333333333334 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 126, + 114.33333333333334, + 485, + 148.66666666666669 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 126, + 148.66666666666669, + 485, + 183.00000000000003 + ], + "spans": [], + "index": 2 + } + ] + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 113, + 191, + 499, + 203 + ], + "lines": [ + { + "bbox": [ + 111, + 190, + 500, + 204 + ], + "spans": [ + { + "bbox": [ + 111, + 190, + 203, + 204 + ], + "score": 1.0, + "content": "Table 1: Mean and the", + "type": "text" + }, + { + "bbox": [ + 203, + 191, + 223, + 202 + ], + "score": 0.86, + "content": "9 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 190, + 500, + 204 + ], + "score": 1.0, + "content": "confidence intervals of test set accuracy for all methods and datasets.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3, + "bbox_fs": [ + 111, + 190, + 500, + 204 + ] + }, + { + "type": "image", + "bbox": [ + 108, + 217, + 225, + 303 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 108, + 217, + 225, + 303 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 217, + 225, + 303 + ], + "spans": [ + { + "bbox": [ + 108, + 217, + 225, + 303 + ], + "score": 0.959, + "type": "image", + "image_path": "f2e00f387ed5dd75968b2e3dee9711338c82e71e21c227901943451cea3df114.jpg" + } + ] + } + ], + "index": 5.5, + "virtual_lines": [ + { + "bbox": [ + 108, + 217, + 225, + 260.0 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 108, + 260.0, + 225, + 303.0 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 313, + 227, + 346 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 313, + 227, + 325 + ], + "spans": [ + { + "bbox": [ + 106, + 313, + 227, + 325 + ], + "score": 1.0, + "content": "Figure 3: Sensitivity to the", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 324, + 228, + 336 + ], + "spans": [ + { + "bbox": [ + 106, + 324, + 228, + 336 + ], + "score": 1.0, + "content": "number of LPA iterations on", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 334, + 175, + 347 + ], + "spans": [ + { + "bbox": [ + 106, + 334, + 175, + 347 + ], + "score": 1.0, + "content": "Citeseer dataset.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11 + } + ], + "index": 8.25 + }, + { + "type": "image", + "bbox": [ + 246, + 217, + 364, + 302 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 246, + 217, + 364, + 302 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 246, + 217, + 364, + 302 + ], + "spans": [ + { + "bbox": [ + 246, + 217, + 364, + 302 + ], + "score": 0.961, + "type": "image", + "image_path": "2739308ba9dc241429355300c63f9ecee44905c7a88e31e0c6d8c41dd3291e12.jpg" + } + ] + } + ], + "index": 6.5, + "virtual_lines": [ + { + "bbox": [ + 246, + 217, + 364, + 259.5 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 246, + 259.5, + 364, + 302.0 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 244, + 313, + 366, + 346 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 244, + 313, + 365, + 325 + ], + "spans": [ + { + "bbox": [ + 244, + 313, + 358, + 325 + ], + "score": 1.0, + "content": "Figure 4: Sensitivity to", + "type": "text" + }, + { + "bbox": [ + 358, + 314, + 365, + 323 + ], + "score": 0.67, + "content": "\\lambda", + "type": "inline_equation" + } + ], + "index": 13 + }, + { + "bbox": [ + 244, + 324, + 366, + 336 + ], + "spans": [ + { + "bbox": [ + 244, + 324, + 366, + 336 + ], + "score": 1.0, + "content": "(weight of LPA loss) on Cite-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 245, + 336, + 296, + 346 + ], + "spans": [ + { + "bbox": [ + 245, + 336, + 296, + 346 + ], + "score": 1.0, + "content": "seer dataset.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14 + } + ], + "index": 10.25 + }, + { + "type": "image", + "bbox": [ + 384, + 218, + 502, + 303 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 384, + 218, + 502, + 303 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 384, + 218, + 502, + 303 + ], + "spans": [ + { + "bbox": [ + 384, + 218, + 502, + 303 + ], + "score": 0.962, + "type": "image", + "image_path": "b8eb7838ea7c122c499093fc31310f4c5ee59e5087729ed812b8387432c2c282.jpg" + } + ] + } + ], + "index": 7.5, + "virtual_lines": [ + { + "bbox": [ + 384, + 218, + 502, + 260.5 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 384, + 260.5, + 502, + 303.0 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 384, + 313, + 505, + 336 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 383, + 312, + 505, + 326 + ], + "spans": [ + { + "bbox": [ + 383, + 312, + 505, + 326 + ], + "score": 1.0, + "content": "Figure 5: Training time per", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 383, + 324, + 487, + 337 + ], + "spans": [ + { + "bbox": [ + 383, + 324, + 487, + 337 + ], + "score": 1.0, + "content": "epoch on random graphs.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5 + } + ], + "index": 12.0 + }, + { + "type": "text", + "bbox": [ + 107, + 369, + 505, + 413 + ], + "lines": [ + { + "bbox": [ + 106, + 369, + 505, + 380 + ], + "spans": [ + { + "bbox": [ + 106, + 369, + 505, + 380 + ], + "score": 1.0, + "content": "study for each author. Statistics of the five datasets are shown in Appendix E. We also calculate", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 380, + 505, + 392 + ], + "spans": [ + { + "bbox": [ + 106, + 380, + 505, + 392 + ], + "score": 1.0, + "content": "the intra-class edge rate (the fraction of edges that connect two nodes within the same class), which", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 391, + 505, + 403 + ], + "spans": [ + { + "bbox": [ + 105, + 391, + 505, + 403 + ], + "score": 1.0, + "content": "is significantly higher than inter-class edge rate in all networks. The finding supports our claim in", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 401, + 416, + 414 + ], + "spans": [ + { + "bbox": [ + 105, + 401, + 416, + 414 + ], + "score": 1.0, + "content": "Section 2.4 that node classification benefits from intra-class edges in a graph.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 19.5, + "bbox_fs": [ + 105, + 369, + 505, + 414 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 419, + 505, + 506 + ], + "lines": [ + { + "bbox": [ + 105, + 417, + 505, + 432 + ], + "spans": [ + { + "bbox": [ + 105, + 417, + 505, + 432 + ], + "score": 1.0, + "content": "Baselines. We compare against the following baselines in our experiments. Logistic Regression", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 429, + 505, + 443 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 505, + 443 + ], + "score": 1.0, + "content": "(LR) is feature-based methods that do not consider the graph structure. Label Propagation (LPA)", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 440, + 505, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 440, + 505, + 453 + ], + "score": 1.0, + "content": "(Zhu et al., 2005), on the other hand, only consider the graph structure and ignore node features.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 450, + 505, + 465 + ], + "spans": [ + { + "bbox": [ + 105, + 450, + 505, + 465 + ], + "score": 1.0, + "content": "We also compare with several GNNs: Graph Convolutional Network (GCN) (Kipf & Welling,", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 462, + 505, + 475 + ], + "spans": [ + { + "bbox": [ + 105, + 462, + 505, + 475 + ], + "score": 1.0, + "content": "2017), Graph Attention Network (GAT), Jumping Knowledge Network (JK-Net) (Xu et al.,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 472, + 505, + 487 + ], + "spans": [ + { + "bbox": [ + 105, + 472, + 505, + 487 + ], + "score": 1.0, + "content": "2018), Graph Isomorphism Network (GIN) (Xu et al., 2019b), and Graph Diffusion Convolution", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 484, + 505, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 505, + 497 + ], + "score": 1.0, + "content": "(GDC) (Klicpera et al., 2019b) (with GCN as the base model). In addition, we propose another", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 495, + 426, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 141, + 507 + ], + "score": 1.0, + "content": "baseline", + "type": "text" + }, + { + "bbox": [ + 142, + 495, + 189, + 506 + ], + "score": 0.42, + "content": "\\mathbf { G C \\bar { N } + L P A }", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 495, + 426, + 507 + ], + "score": 1.0, + "content": ", which simply adds predictions of GCN and LPA together.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 25.5, + "bbox_fs": [ + 105, + 417, + 505, + 507 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 513, + 505, + 623 + ], + "lines": [ + { + "bbox": [ + 105, + 512, + 505, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 512, + 505, + 524 + ], + "score": 1.0, + "content": "Experimental Setup. Our experiments focus on the transductive setting where we only know labels", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 522, + 505, + 536 + ], + "spans": [ + { + "bbox": [ + 105, + 522, + 505, + 536 + ], + "score": 1.0, + "content": "of part of nodes but have access to the entire graph as well as features of all nodes.3 We randomly", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 533, + 506, + 548 + ], + "spans": [ + { + "bbox": [ + 105, + 533, + 506, + 548 + ], + "score": 1.0, + "content": "sample 20 nodes per class as training set, 50 nodes per class as validation set, and the remaining", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 545, + 505, + 558 + ], + "spans": [ + { + "bbox": [ + 105, + 545, + 505, + 558 + ], + "score": 1.0, + "content": "nodes as test set. The weight of each edge is treated as a free variable during training. We train", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 557, + 505, + 568 + ], + "spans": [ + { + "bbox": [ + 106, + 557, + 505, + 568 + ], + "score": 1.0, + "content": "our model for 200 epochs using Adam (Kingma & Ba, 2015) and report the test set accuracy when", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 567, + 505, + 580 + ], + "spans": [ + { + "bbox": [ + 105, + 567, + 505, + 580 + ], + "score": 1.0, + "content": "validation set accuracy is maximized. Each experiment is repeated five times and we report the", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 578, + 505, + 590 + ], + "spans": [ + { + "bbox": [ + 106, + 578, + 162, + 590 + ], + "score": 1.0, + "content": "mean and the", + "type": "text" + }, + { + "bbox": [ + 163, + 578, + 182, + 589 + ], + "score": 0.89, + "content": "9 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 183, + 578, + 505, + 590 + ], + "score": 1.0, + "content": "confidence interval. We initialize weights according to Glorot & Bengio (2010)", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 588, + 505, + 602 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 505, + 602 + ], + "score": 1.0, + "content": "and row-normalize input features. During training, we apply L2 regularization to the transformation", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 600, + 505, + 613 + ], + "spans": [ + { + "bbox": [ + 105, + 600, + 505, + 613 + ], + "score": 1.0, + "content": "matrices and use the dropout technique (Srivastava et al., 2014). The settings of all other hyper-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 612, + 268, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 612, + 268, + 622 + ], + "score": 1.0, + "content": "parameters can be found in Appendix F.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 34.5, + "bbox_fs": [ + 105, + 512, + 506, + 622 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 637, + 170, + 648 + ], + "lines": [ + { + "bbox": [ + 105, + 635, + 172, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 635, + 172, + 650 + ], + "score": 1.0, + "content": "4.2 RESULTS", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 40 + }, + { + "type": "text", + "bbox": [ + 107, + 657, + 504, + 702 + ], + "lines": [ + { + "bbox": [ + 106, + 657, + 506, + 669 + ], + "spans": [ + { + "bbox": [ + 106, + 657, + 506, + 669 + ], + "score": 1.0, + "content": "Comparison with Baselines. The results of node classification are summarized in Table 1. Table", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 668, + 506, + 681 + ], + "spans": [ + { + "bbox": [ + 105, + 668, + 506, + 681 + ], + "score": 1.0, + "content": "1 indicates that only using node features (LR) or graph structure (LPA) will lead to information", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 679, + 506, + 692 + ], + "spans": [ + { + "bbox": [ + 105, + 679, + 506, + 692 + ], + "score": 1.0, + "content": "loss and cannot fully exploit datasets. The results demonstrate that our proposed GCN-LPA model", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 690, + 506, + 703 + ], + "spans": [ + { + "bbox": [ + 105, + 690, + 506, + 703 + ], + "score": 1.0, + "content": "surpasses state-of-the-art GNN baselines. We notice that GDC is a strong baseline on Cora, but it", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 167, + 505, + 180 + ], + "spans": [ + { + "bbox": [ + 106, + 167, + 366, + 180 + ], + "score": 1.0, + "content": "does not perform consistently well on other datasets. In addition,", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 366, + 167, + 412, + 178 + ], + "score": 0.49, + "content": "\\mathrm { G C N + L P A }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 412, + 167, + 505, + 180 + ], + "score": 1.0, + "content": "does not perform well,", + "type": "text", + "cross_page": true + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 178, + 455, + 190 + ], + "spans": [ + { + "bbox": [ + 105, + 178, + 455, + 190 + ], + "score": 1.0, + "content": "since it utilizes the prediction of LPA directly, making its performance limited by LPA.", + "type": "text", + "cross_page": true + } + ], + "index": 5 + } + ], + "index": 42.5, + "bbox_fs": [ + 105, + 657, + 506, + 703 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 128, + 80, + 483, + 124 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 128, + 80, + 483, + 124 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 128, + 80, + 483, + 124 + ], + "spans": [ + { + "bbox": [ + 128, + 80, + 483, + 124 + ], + "score": 0.974, + "html": "
Labeled node rate5%10%20%50%80%
LPA67.9 ± 2.168.1 ± 1.370.5± 1.572.5 ± 1.276.4 ±1.1
GCN72.1 ± 1.972.5 ± 1.874.3 ± 0.976.8 ± 0.680.2 ±1.5
GCN-LPA72.7 ± 1.273.2 ± 1.175.4 ± 1.578.2 ± 1.382.3 ± 0.9
", + "type": "table", + "image_path": "114172e526485c5867a3e9d2cb64b84cb331f4e27edb129ab5187e99ae982e53.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 128, + 80, + 483, + 94.66666666666667 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 128, + 94.66666666666667, + 483, + 109.33333333333334 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 128, + 109.33333333333334, + 483, + 124.00000000000001 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "table_footnote", + "bbox": [ + 121, + 131, + 491, + 142 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 118, + 130, + 493, + 144 + ], + "spans": [ + { + "bbox": [ + 118, + 130, + 493, + 144 + ], + "score": 1.0, + "content": "Table 2: Accuracy of LPA, GCN, and GCN-LPA on Citeseer with different labeled node rate.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + }, + { + "type": "text", + "bbox": [ + 108, + 167, + 503, + 190 + ], + "lines": [ + { + "bbox": [ + 106, + 167, + 505, + 180 + ], + "spans": [ + { + "bbox": [ + 106, + 167, + 366, + 180 + ], + "score": 1.0, + "content": "does not perform consistently well on other datasets. In addition,", + "type": "text" + }, + { + "bbox": [ + 366, + 167, + 412, + 178 + ], + "score": 0.49, + "content": "\\mathrm { G C N + L P A }", + "type": "inline_equation" + }, + { + "bbox": [ + 412, + 167, + 505, + 180 + ], + "score": 1.0, + "content": "does not perform well,", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 178, + 455, + 190 + ], + "spans": [ + { + "bbox": [ + 105, + 178, + 455, + 190 + ], + "score": 1.0, + "content": "since it utilizes the prediction of LPA directly, making its performance limited by LPA.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5 + }, + { + "type": "text", + "bbox": [ + 106, + 195, + 505, + 294 + ], + "lines": [ + { + "bbox": [ + 106, + 195, + 506, + 208 + ], + "spans": [ + { + "bbox": [ + 106, + 195, + 506, + 208 + ], + "score": 1.0, + "content": "Efficacy of LPA Regularization. We investigate the influence of the number of LPA iterations and", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 206, + 506, + 219 + ], + "spans": [ + { + "bbox": [ + 106, + 206, + 254, + 219 + ], + "score": 1.0, + "content": "the training weight of LPA loss term", + "type": "text" + }, + { + "bbox": [ + 254, + 207, + 262, + 216 + ], + "score": 0.7, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 206, + 506, + 219 + ], + "score": 1.0, + "content": "on the performance of classification. The results on Citeseer", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 218, + 505, + 230 + ], + "spans": [ + { + "bbox": [ + 106, + 218, + 505, + 230 + ], + "score": 1.0, + "content": "dataset are plotted in Figures 3 and 4, respectively, where each line corresponds to a given number of", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 228, + 505, + 240 + ], + "spans": [ + { + "bbox": [ + 106, + 228, + 505, + 240 + ], + "score": 1.0, + "content": "GCN layers in GCN-LPA. From Figure 3 we observe that the performance is boosted at first when", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 238, + 506, + 252 + ], + "spans": [ + { + "bbox": [ + 105, + 238, + 506, + 252 + ], + "score": 1.0, + "content": "the number of LPA iterations increases, then the accuracy stops increasing and decreases since a", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 250, + 505, + 263 + ], + "spans": [ + { + "bbox": [ + 105, + 250, + 505, + 263 + ], + "score": 1.0, + "content": "large number of LPA iterations will include more noisy nodes. Figure 4 shows that training without", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 260, + 505, + 274 + ], + "spans": [ + { + "bbox": [ + 105, + 260, + 201, + 274 + ], + "score": 1.0, + "content": "the LPA loss term (i.e.,", + "type": "text" + }, + { + "bbox": [ + 201, + 261, + 228, + 272 + ], + "score": 0.91, + "content": "\\lambda = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 260, + 380, + 274 + ], + "score": 1.0, + "content": ") is more difficult than the case where", + "type": "text" + }, + { + "bbox": [ + 380, + 261, + 425, + 272 + ], + "score": 0.91, + "content": "\\lambda = 1 \\sim 5", + "type": "inline_equation" + }, + { + "bbox": [ + 425, + 260, + 505, + 274 + ], + "score": 1.0, + "content": ", which justifies our", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 272, + 505, + 284 + ], + "spans": [ + { + "bbox": [ + 106, + 272, + 474, + 284 + ], + "score": 1.0, + "content": "aforementioned claim that it is hard for the GCN part to learn both transformation matrices", + "type": "text" + }, + { + "bbox": [ + 475, + 272, + 487, + 282 + ], + "score": 0.56, + "content": "W", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 272, + 505, + 284 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 284, + 415, + 295 + ], + "spans": [ + { + "bbox": [ + 106, + 284, + 161, + 295 + ], + "score": 1.0, + "content": "edge weights", + "type": "text" + }, + { + "bbox": [ + 162, + 284, + 170, + 293 + ], + "score": 0.68, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 171, + 284, + 415, + 295 + ], + "score": 1.0, + "content": "simultaneously without the assistance of LPA regularization.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 106, + 299, + 505, + 377 + ], + "lines": [ + { + "bbox": [ + 105, + 299, + 505, + 312 + ], + "spans": [ + { + "bbox": [ + 105, + 299, + 505, + 312 + ], + "score": 1.0, + "content": "Influence of Labeled Node Rate. To study the influence of labeled node rate on the performance", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 309, + 506, + 325 + ], + "spans": [ + { + "bbox": [ + 105, + 309, + 395, + 325 + ], + "score": 1.0, + "content": "of our model, we vary the ratio of labeled node rate on Citeseer from", + "type": "text" + }, + { + "bbox": [ + 396, + 311, + 411, + 321 + ], + "score": 0.86, + "content": "5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 411, + 309, + 423, + 325 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 424, + 311, + 444, + 321 + ], + "score": 0.88, + "content": "8 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 309, + 506, + 325 + ], + "score": 1.0, + "content": "while keeping", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 321, + 506, + 334 + ], + "spans": [ + { + "bbox": [ + 106, + 321, + 506, + 334 + ], + "score": 1.0, + "content": "the validation and test set fixed, and report the result in Table 2. From Table 2 we observe that", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 332, + 505, + 345 + ], + "spans": [ + { + "bbox": [ + 106, + 332, + 505, + 345 + ], + "score": 1.0, + "content": "GCN-LPA outperforms GCN and LPA consistently, and the improvement achieved by GCN-LPA", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 343, + 506, + 357 + ], + "spans": [ + { + "bbox": [ + 105, + 343, + 297, + 357 + ], + "score": 1.0, + "content": "increases when labeled node rate is larger (from", + "type": "text" + }, + { + "bbox": [ + 297, + 344, + 319, + 354 + ], + "score": 0.82, + "content": "0 . 6 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 319, + 343, + 329, + 357 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 330, + 344, + 352, + 354 + ], + "score": 0.88, + "content": "2 . 1 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 343, + 506, + 357 + ], + "score": 1.0, + "content": "compared with GCN). This is because", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 355, + 505, + 367 + ], + "spans": [ + { + "bbox": [ + 106, + 355, + 505, + 367 + ], + "score": 1.0, + "content": "GCN-LPA requires node labels to calculate edge weights. Therefore, a larger labeled node rate will", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 365, + 324, + 379 + ], + "spans": [ + { + "bbox": [ + 105, + 365, + 324, + 379 + ], + "score": 1.0, + "content": "provide more information for identifying noisy edges.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 107, + 383, + 395, + 503 + ], + "lines": [ + { + "bbox": [ + 107, + 383, + 396, + 394 + ], + "spans": [ + { + "bbox": [ + 107, + 383, + 396, + 394 + ], + "score": 1.0, + "content": "Visualization of Learned Edge Weights. To intuitively understand", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 393, + 396, + 406 + ], + "spans": [ + { + "bbox": [ + 106, + 393, + 396, + 406 + ], + "score": 1.0, + "content": "what our model learns about edge weights, we split nodes in Coauthor-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 404, + 396, + 417 + ], + "spans": [ + { + "bbox": [ + 105, + 404, + 396, + 417 + ], + "score": 1.0, + "content": "CS dataset into 15 groups according to their labels, and calculate the", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 415, + 397, + 428 + ], + "spans": [ + { + "bbox": [ + 105, + 415, + 397, + 428 + ], + "score": 1.0, + "content": "average weights of edges connecting every pair of node groups as well", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 426, + 397, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 397, + 439 + ], + "score": 1.0, + "content": "as the average weights of edges within every group. The results are", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 437, + 396, + 449 + ], + "spans": [ + { + "bbox": [ + 106, + 437, + 396, + 449 + ], + "score": 1.0, + "content": "shown in Figure 6, where darker color indicates higher average weights", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 448, + 396, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 396, + 461 + ], + "score": 1.0, + "content": "of edges. It is clear that values along the diagonal (intra-class edges", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 459, + 397, + 472 + ], + "spans": [ + { + "bbox": [ + 105, + 459, + 397, + 472 + ], + "score": 1.0, + "content": "weights) are significantly larger than off-diagonal values (inter-class", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 469, + 397, + 482 + ], + "spans": [ + { + "bbox": [ + 105, + 469, + 397, + 482 + ], + "score": 1.0, + "content": "edge weights) in general, which demonstrates that GCN-LPA is able to", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 481, + 396, + 493 + ], + "spans": [ + { + "bbox": [ + 105, + 481, + 396, + 493 + ], + "score": 1.0, + "content": "identify the importance of edges and distinguish inter-class and intra-", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 492, + 375, + 504 + ], + "spans": [ + { + "bbox": [ + 106, + 492, + 375, + 504 + ], + "score": 1.0, + "content": "class edges. The visualization results are similar for other datasets.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 107, + 509, + 395, + 542 + ], + "lines": [ + { + "bbox": [ + 106, + 509, + 396, + 521 + ], + "spans": [ + { + "bbox": [ + 106, + 509, + 396, + 521 + ], + "score": 1.0, + "content": "Time Complexity. We study the training time of GCN-LPA on random", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 520, + 397, + 532 + ], + "spans": [ + { + "bbox": [ + 106, + 520, + 397, + 532 + ], + "score": 1.0, + "content": "graphs. We use the one-hot identity vector as feature and 0 as label for", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 531, + 397, + 543 + ], + "spans": [ + { + "bbox": [ + 105, + 531, + 397, + 543 + ], + "score": 1.0, + "content": "each node. The size of training set and validation set is 100 and 200,", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 34 + }, + { + "type": "image", + "bbox": [ + 407, + 384, + 502, + 479 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 407, + 384, + 502, + 479 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 407, + 384, + 502, + 479 + ], + "spans": [ + { + "bbox": [ + 407, + 384, + 502, + 479 + ], + "score": 0.968, + "type": "image", + "image_path": "12752225748b0306fa8c5f9ff6a59d1eb807ee3556ff1e27994a80b83cb73e9a.jpg" + } + ] + } + ], + "index": 36.5, + "virtual_lines": [ + { + "bbox": [ + 407, + 384, + 502, + 431.5 + ], + "spans": [], + "index": 36 + }, + { + "bbox": [ + 407, + 431.5, + 502, + 479.0 + ], + "spans": [], + "index": 37 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 403, + 489, + 505, + 523 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 403, + 489, + 505, + 501 + ], + "spans": [ + { + "bbox": [ + 403, + 489, + 505, + 501 + ], + "score": 1.0, + "content": "Figure 6: Visualization", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 403, + 500, + 504, + 512 + ], + "spans": [ + { + "bbox": [ + 403, + 500, + 504, + 512 + ], + "score": 1.0, + "content": "of learned edge weights", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 403, + 511, + 501, + 523 + ], + "spans": [ + { + "bbox": [ + 403, + 511, + 501, + 523 + ], + "score": 1.0, + "content": "in Coauthor-CS dataset.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39 + } + ], + "index": 37.75 + }, + { + "type": "text", + "bbox": [ + 107, + 542, + 505, + 608 + ], + "lines": [ + { + "bbox": [ + 105, + 541, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 541, + 505, + 554 + ], + "score": 1.0, + "content": "respectively, while the rest is test set. The average number of neighbors for each node is set as 5,", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 553, + 505, + 564 + ], + "spans": [ + { + "bbox": [ + 106, + 553, + 505, + 564 + ], + "score": 1.0, + "content": "and the number of nodes is varied from one thousand to one million. We run GCN-LPA and GCN", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 564, + 505, + 575 + ], + "spans": [ + { + "bbox": [ + 106, + 564, + 505, + 575 + ], + "score": 1.0, + "content": "for 100 epochs on a Microsoft Azure virtual machine with 1 NVIDIA Tesla M60 GPU, 12 Intel", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 574, + 505, + 588 + ], + "spans": [ + { + "bbox": [ + 105, + 574, + 158, + 588 + ], + "score": 1.0, + "content": "Xeon CPUs", + "type": "text" + }, + { + "bbox": [ + 158, + 575, + 257, + 586 + ], + "score": 0.46, + "content": "\\left( \\mathrm { E 5 - } 2 6 9 0 \\mathrm { v } 3 @ 2 . 6 0 \\mathrm { G H z } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 574, + 505, + 588 + ], + "score": 1.0, + "content": ", and 128GB of RAM, using the same hyper-parameter setting", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 585, + 505, + 598 + ], + "spans": [ + { + "bbox": [ + 105, + 585, + 505, + 598 + ], + "score": 1.0, + "content": "as in Cora. The training time per epoch of GCN-LPA and GCN is presented in Figure 5. Our result", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 597, + 474, + 609 + ], + "spans": [ + { + "bbox": [ + 106, + 597, + 250, + 609 + ], + "score": 1.0, + "content": "shows that GCN-LPA requires only", + "type": "text" + }, + { + "bbox": [ + 250, + 597, + 273, + 608 + ], + "score": 0.87, + "content": "9 . 2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 597, + 474, + 609 + ], + "score": 1.0, + "content": "extra training time on average compared to GCN.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 43.5 + }, + { + "type": "title", + "bbox": [ + 108, + 628, + 195, + 640 + ], + "lines": [ + { + "bbox": [ + 104, + 626, + 197, + 643 + ], + "spans": [ + { + "bbox": [ + 104, + 626, + 197, + 643 + ], + "score": 1.0, + "content": "5 CONCLUSION", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 47 + }, + { + "type": "text", + "bbox": [ + 107, + 654, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 654, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 505, + 668 + ], + "score": 1.0, + "content": "We studies the theoretical relationship between two types of well-known graph-based algorithms", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 665, + 506, + 679 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 506, + 679 + ], + "score": 1.0, + "content": "for node classification, label propagation algorithm and graph convolutional neural networks, from", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 689 + ], + "score": 1.0, + "content": "the perspectives of feature/label influence. We then propose a unified model GCN-LPA, which", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "learns transformation matrices and edge weights simultaneously in GCN with the assistance of LPA", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "regularizer. We also analyze why our unified model performs better than traditional GCN in terms", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "of node classification. Experiments on five datasets demonstrate that our model outperforms state-", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 105, + 720, + 463, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 463, + 733 + ], + "score": 1.0, + "content": "of-the-art baselines, and it is also highly time-efficient with respect to the size of a graph.", + "type": "text" + } + ], + "index": 54 + } + ], + "index": 51 + } + ], + "page_idx": 7, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 27, + 307, + 37 + ], + "lines": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 300, + 750, + 309, + 761 + ], + "spans": [ + { + "bbox": [ + 300, + 750, + 309, + 761 + ], + "score": 1.0, + "content": "8", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 128, + 80, + 483, + 124 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 128, + 80, + 483, + 124 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 128, + 80, + 483, + 124 + ], + "spans": [ + { + "bbox": [ + 128, + 80, + 483, + 124 + ], + "score": 0.974, + "html": "
Labeled node rate5%10%20%50%80%
LPA67.9 ± 2.168.1 ± 1.370.5± 1.572.5 ± 1.276.4 ±1.1
GCN72.1 ± 1.972.5 ± 1.874.3 ± 0.976.8 ± 0.680.2 ±1.5
GCN-LPA72.7 ± 1.273.2 ± 1.175.4 ± 1.578.2 ± 1.382.3 ± 0.9
", + "type": "table", + "image_path": "114172e526485c5867a3e9d2cb64b84cb331f4e27edb129ab5187e99ae982e53.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 128, + 80, + 483, + 94.66666666666667 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 128, + 94.66666666666667, + 483, + 109.33333333333334 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 128, + 109.33333333333334, + 483, + 124.00000000000001 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "table_footnote", + "bbox": [ + 121, + 131, + 491, + 142 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 118, + 130, + 493, + 144 + ], + "spans": [ + { + "bbox": [ + 118, + 130, + 493, + 144 + ], + "score": 1.0, + "content": "Table 2: Accuracy of LPA, GCN, and GCN-LPA on Citeseer with different labeled node rate.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + }, + { + "type": "text", + "bbox": [ + 108, + 167, + 503, + 190 + ], + "lines": [], + "index": 4.5, + "bbox_fs": [ + 105, + 167, + 505, + 190 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 106, + 195, + 505, + 294 + ], + "lines": [ + { + "bbox": [ + 106, + 195, + 506, + 208 + ], + "spans": [ + { + "bbox": [ + 106, + 195, + 506, + 208 + ], + "score": 1.0, + "content": "Efficacy of LPA Regularization. We investigate the influence of the number of LPA iterations and", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 206, + 506, + 219 + ], + "spans": [ + { + "bbox": [ + 106, + 206, + 254, + 219 + ], + "score": 1.0, + "content": "the training weight of LPA loss term", + "type": "text" + }, + { + "bbox": [ + 254, + 207, + 262, + 216 + ], + "score": 0.7, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 206, + 506, + 219 + ], + "score": 1.0, + "content": "on the performance of classification. The results on Citeseer", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 218, + 505, + 230 + ], + "spans": [ + { + "bbox": [ + 106, + 218, + 505, + 230 + ], + "score": 1.0, + "content": "dataset are plotted in Figures 3 and 4, respectively, where each line corresponds to a given number of", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 228, + 505, + 240 + ], + "spans": [ + { + "bbox": [ + 106, + 228, + 505, + 240 + ], + "score": 1.0, + "content": "GCN layers in GCN-LPA. From Figure 3 we observe that the performance is boosted at first when", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 238, + 506, + 252 + ], + "spans": [ + { + "bbox": [ + 105, + 238, + 506, + 252 + ], + "score": 1.0, + "content": "the number of LPA iterations increases, then the accuracy stops increasing and decreases since a", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 250, + 505, + 263 + ], + "spans": [ + { + "bbox": [ + 105, + 250, + 505, + 263 + ], + "score": 1.0, + "content": "large number of LPA iterations will include more noisy nodes. Figure 4 shows that training without", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 260, + 505, + 274 + ], + "spans": [ + { + "bbox": [ + 105, + 260, + 201, + 274 + ], + "score": 1.0, + "content": "the LPA loss term (i.e.,", + "type": "text" + }, + { + "bbox": [ + 201, + 261, + 228, + 272 + ], + "score": 0.91, + "content": "\\lambda = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 260, + 380, + 274 + ], + "score": 1.0, + "content": ") is more difficult than the case where", + "type": "text" + }, + { + "bbox": [ + 380, + 261, + 425, + 272 + ], + "score": 0.91, + "content": "\\lambda = 1 \\sim 5", + "type": "inline_equation" + }, + { + "bbox": [ + 425, + 260, + 505, + 274 + ], + "score": 1.0, + "content": ", which justifies our", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 272, + 505, + 284 + ], + "spans": [ + { + "bbox": [ + 106, + 272, + 474, + 284 + ], + "score": 1.0, + "content": "aforementioned claim that it is hard for the GCN part to learn both transformation matrices", + "type": "text" + }, + { + "bbox": [ + 475, + 272, + 487, + 282 + ], + "score": 0.56, + "content": "W", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 272, + 505, + 284 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 284, + 415, + 295 + ], + "spans": [ + { + "bbox": [ + 106, + 284, + 161, + 295 + ], + "score": 1.0, + "content": "edge weights", + "type": "text" + }, + { + "bbox": [ + 162, + 284, + 170, + 293 + ], + "score": 0.68, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 171, + 284, + 415, + 295 + ], + "score": 1.0, + "content": "simultaneously without the assistance of LPA regularization.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 10, + "bbox_fs": [ + 105, + 195, + 506, + 295 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 299, + 505, + 377 + ], + "lines": [ + { + "bbox": [ + 105, + 299, + 505, + 312 + ], + "spans": [ + { + "bbox": [ + 105, + 299, + 505, + 312 + ], + "score": 1.0, + "content": "Influence of Labeled Node Rate. To study the influence of labeled node rate on the performance", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 309, + 506, + 325 + ], + "spans": [ + { + "bbox": [ + 105, + 309, + 395, + 325 + ], + "score": 1.0, + "content": "of our model, we vary the ratio of labeled node rate on Citeseer from", + "type": "text" + }, + { + "bbox": [ + 396, + 311, + 411, + 321 + ], + "score": 0.86, + "content": "5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 411, + 309, + 423, + 325 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 424, + 311, + 444, + 321 + ], + "score": 0.88, + "content": "8 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 309, + 506, + 325 + ], + "score": 1.0, + "content": "while keeping", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 321, + 506, + 334 + ], + "spans": [ + { + "bbox": [ + 106, + 321, + 506, + 334 + ], + "score": 1.0, + "content": "the validation and test set fixed, and report the result in Table 2. From Table 2 we observe that", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 332, + 505, + 345 + ], + "spans": [ + { + "bbox": [ + 106, + 332, + 505, + 345 + ], + "score": 1.0, + "content": "GCN-LPA outperforms GCN and LPA consistently, and the improvement achieved by GCN-LPA", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 343, + 506, + 357 + ], + "spans": [ + { + "bbox": [ + 105, + 343, + 297, + 357 + ], + "score": 1.0, + "content": "increases when labeled node rate is larger (from", + "type": "text" + }, + { + "bbox": [ + 297, + 344, + 319, + 354 + ], + "score": 0.82, + "content": "0 . 6 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 319, + 343, + 329, + 357 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 330, + 344, + 352, + 354 + ], + "score": 0.88, + "content": "2 . 1 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 343, + 506, + 357 + ], + "score": 1.0, + "content": "compared with GCN). This is because", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 355, + 505, + 367 + ], + "spans": [ + { + "bbox": [ + 106, + 355, + 505, + 367 + ], + "score": 1.0, + "content": "GCN-LPA requires node labels to calculate edge weights. Therefore, a larger labeled node rate will", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 365, + 324, + 379 + ], + "spans": [ + { + "bbox": [ + 105, + 365, + 324, + 379 + ], + "score": 1.0, + "content": "provide more information for identifying noisy edges.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 18, + "bbox_fs": [ + 105, + 299, + 506, + 379 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 383, + 395, + 503 + ], + "lines": [ + { + "bbox": [ + 107, + 383, + 396, + 394 + ], + "spans": [ + { + "bbox": [ + 107, + 383, + 396, + 394 + ], + "score": 1.0, + "content": "Visualization of Learned Edge Weights. To intuitively understand", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 393, + 396, + 406 + ], + "spans": [ + { + "bbox": [ + 106, + 393, + 396, + 406 + ], + "score": 1.0, + "content": "what our model learns about edge weights, we split nodes in Coauthor-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 404, + 396, + 417 + ], + "spans": [ + { + "bbox": [ + 105, + 404, + 396, + 417 + ], + "score": 1.0, + "content": "CS dataset into 15 groups according to their labels, and calculate the", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 415, + 397, + 428 + ], + "spans": [ + { + "bbox": [ + 105, + 415, + 397, + 428 + ], + "score": 1.0, + "content": "average weights of edges connecting every pair of node groups as well", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 426, + 397, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 397, + 439 + ], + "score": 1.0, + "content": "as the average weights of edges within every group. The results are", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 437, + 396, + 449 + ], + "spans": [ + { + "bbox": [ + 106, + 437, + 396, + 449 + ], + "score": 1.0, + "content": "shown in Figure 6, where darker color indicates higher average weights", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 448, + 396, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 396, + 461 + ], + "score": 1.0, + "content": "of edges. It is clear that values along the diagonal (intra-class edges", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 459, + 397, + 472 + ], + "spans": [ + { + "bbox": [ + 105, + 459, + 397, + 472 + ], + "score": 1.0, + "content": "weights) are significantly larger than off-diagonal values (inter-class", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 469, + 397, + 482 + ], + "spans": [ + { + "bbox": [ + 105, + 469, + 397, + 482 + ], + "score": 1.0, + "content": "edge weights) in general, which demonstrates that GCN-LPA is able to", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 481, + 396, + 493 + ], + "spans": [ + { + "bbox": [ + 105, + 481, + 396, + 493 + ], + "score": 1.0, + "content": "identify the importance of edges and distinguish inter-class and intra-", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 492, + 375, + 504 + ], + "spans": [ + { + "bbox": [ + 106, + 492, + 375, + 504 + ], + "score": 1.0, + "content": "class edges. The visualization results are similar for other datasets.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 27, + "bbox_fs": [ + 105, + 383, + 397, + 504 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 509, + 395, + 542 + ], + "lines": [ + { + "bbox": [ + 106, + 509, + 396, + 521 + ], + "spans": [ + { + "bbox": [ + 106, + 509, + 396, + 521 + ], + "score": 1.0, + "content": "Time Complexity. We study the training time of GCN-LPA on random", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 520, + 397, + 532 + ], + "spans": [ + { + "bbox": [ + 106, + 520, + 397, + 532 + ], + "score": 1.0, + "content": "graphs. We use the one-hot identity vector as feature and 0 as label for", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 531, + 397, + 543 + ], + "spans": [ + { + "bbox": [ + 105, + 531, + 397, + 543 + ], + "score": 1.0, + "content": "each node. The size of training set and validation set is 100 and 200,", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 541, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 541, + 505, + 554 + ], + "score": 1.0, + "content": "respectively, while the rest is test set. The average number of neighbors for each node is set as 5,", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 553, + 505, + 564 + ], + "spans": [ + { + "bbox": [ + 106, + 553, + 505, + 564 + ], + "score": 1.0, + "content": "and the number of nodes is varied from one thousand to one million. We run GCN-LPA and GCN", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 564, + 505, + 575 + ], + "spans": [ + { + "bbox": [ + 106, + 564, + 505, + 575 + ], + "score": 1.0, + "content": "for 100 epochs on a Microsoft Azure virtual machine with 1 NVIDIA Tesla M60 GPU, 12 Intel", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 574, + 505, + 588 + ], + "spans": [ + { + "bbox": [ + 105, + 574, + 158, + 588 + ], + "score": 1.0, + "content": "Xeon CPUs", + "type": "text" + }, + { + "bbox": [ + 158, + 575, + 257, + 586 + ], + "score": 0.46, + "content": "\\left( \\mathrm { E 5 - } 2 6 9 0 \\mathrm { v } 3 @ 2 . 6 0 \\mathrm { G H z } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 574, + 505, + 588 + ], + "score": 1.0, + "content": ", and 128GB of RAM, using the same hyper-parameter setting", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 585, + 505, + 598 + ], + "spans": [ + { + "bbox": [ + 105, + 585, + 505, + 598 + ], + "score": 1.0, + "content": "as in Cora. The training time per epoch of GCN-LPA and GCN is presented in Figure 5. Our result", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 597, + 474, + 609 + ], + "spans": [ + { + "bbox": [ + 106, + 597, + 250, + 609 + ], + "score": 1.0, + "content": "shows that GCN-LPA requires only", + "type": "text" + }, + { + "bbox": [ + 250, + 597, + 273, + 608 + ], + "score": 0.87, + "content": "9 . 2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 597, + 474, + 609 + ], + "score": 1.0, + "content": "extra training time on average compared to GCN.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 34, + "bbox_fs": [ + 105, + 509, + 397, + 543 + ] + }, + { + "type": "image", + "bbox": [ + 407, + 384, + 502, + 479 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 407, + 384, + 502, + 479 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 407, + 384, + 502, + 479 + ], + "spans": [ + { + "bbox": [ + 407, + 384, + 502, + 479 + ], + "score": 0.968, + "type": "image", + "image_path": "12752225748b0306fa8c5f9ff6a59d1eb807ee3556ff1e27994a80b83cb73e9a.jpg" + } + ] + } + ], + "index": 36.5, + "virtual_lines": [ + { + "bbox": [ + 407, + 384, + 502, + 431.5 + ], + "spans": [], + "index": 36 + }, + { + "bbox": [ + 407, + 431.5, + 502, + 479.0 + ], + "spans": [], + "index": 37 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 403, + 489, + 505, + 523 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 403, + 489, + 505, + 501 + ], + "spans": [ + { + "bbox": [ + 403, + 489, + 505, + 501 + ], + "score": 1.0, + "content": "Figure 6: Visualization", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 403, + 500, + 504, + 512 + ], + "spans": [ + { + "bbox": [ + 403, + 500, + 504, + 512 + ], + "score": 1.0, + "content": "of learned edge weights", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 403, + 511, + 501, + 523 + ], + "spans": [ + { + "bbox": [ + 403, + 511, + 501, + 523 + ], + "score": 1.0, + "content": "in Coauthor-CS dataset.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39 + } + ], + "index": 37.75 + }, + { + "type": "text", + "bbox": [ + 107, + 542, + 505, + 608 + ], + "lines": [], + "index": 43.5, + "bbox_fs": [ + 105, + 541, + 505, + 609 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 108, + 628, + 195, + 640 + ], + "lines": [ + { + "bbox": [ + 104, + 626, + 197, + 643 + ], + "spans": [ + { + "bbox": [ + 104, + 626, + 197, + 643 + ], + "score": 1.0, + "content": "5 CONCLUSION", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 47 + }, + { + "type": "text", + "bbox": [ + 107, + 654, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 654, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 505, + 668 + ], + "score": 1.0, + "content": "We studies the theoretical relationship between two types of well-known graph-based algorithms", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 665, + 506, + 679 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 506, + 679 + ], + "score": 1.0, + "content": "for node classification, label propagation algorithm and graph convolutional neural networks, from", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 689 + ], + "score": 1.0, + "content": "the perspectives of feature/label influence. We then propose a unified model GCN-LPA, which", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "learns transformation matrices and edge weights simultaneously in GCN with the assistance of LPA", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "regularizer. We also analyze why our unified model performs better than traditional GCN in terms", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "of node classification. Experiments on five datasets demonstrate that our model outperforms state-", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 105, + 720, + 463, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 463, + 733 + ], + "score": 1.0, + "content": "of-the-art baselines, and it is also highly time-efficient with respect to the size of a graph.", + "type": "text" + } + ], + "index": 54 + } + ], + "index": 51, + "bbox_fs": [ + 105, + 654, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 81, + 175, + 93 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 176, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 176, + 95 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 100, + 505, + 145 + ], + "lines": [ + { + "bbox": [ + 105, + 100, + 505, + 113 + ], + "spans": [ + { + "bbox": [ + 105, + 100, + 505, + 113 + ], + "score": 1.0, + "content": "Sami Abu-El-Haija, Bryan Perozzi, Amol Kapoor, Nazanin Alipourfard, Kristina Lerman, Hrayr", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 111, + 506, + 123 + ], + "spans": [ + { + "bbox": [ + 115, + 111, + 506, + 123 + ], + "score": 1.0, + "content": "Harutyunyan, Greg Ver Steeg, and Aram Galstyan. Mixhop: Higher-order graph convolutional", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 123, + 504, + 135 + ], + "spans": [ + { + "bbox": [ + 115, + 123, + 504, + 135 + ], + "score": 1.0, + "content": "architectures via sparsified neighborhood mixing. In Proceedings of the 36th International Con-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 133, + 309, + 145 + ], + "spans": [ + { + "bbox": [ + 115, + 133, + 309, + 145 + ], + "score": 1.0, + "content": "ference on Machine Learning, pp. 21–29, 2019.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 107, + 153, + 504, + 187 + ], + "lines": [ + { + "bbox": [ + 106, + 154, + 505, + 166 + ], + "spans": [ + { + "bbox": [ + 106, + 154, + 505, + 166 + ], + "score": 1.0, + "content": "Xavier Glorot and Yoshua Bengio. Understanding the difficulty of training deep feedforward neural", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 164, + 505, + 177 + ], + "spans": [ + { + "bbox": [ + 115, + 164, + 505, + 177 + ], + "score": 1.0, + "content": "networks. In Proceedings of the 13th International Conference on Artificial Intelligence and", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 116, + 176, + 182, + 187 + ], + "spans": [ + { + "bbox": [ + 116, + 176, + 182, + 187 + ], + "score": 1.0, + "content": "Statistics, 2010.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 106, + 195, + 505, + 229 + ], + "lines": [ + { + "bbox": [ + 106, + 195, + 505, + 209 + ], + "spans": [ + { + "bbox": [ + 106, + 195, + 505, + 209 + ], + "score": 1.0, + "content": "Chen Gong, Dacheng Tao, Wei Liu, Liu Liu, and Jie Yang. Label propagation via teaching-to-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 116, + 207, + 505, + 219 + ], + "spans": [ + { + "bbox": [ + 116, + 207, + 505, + 219 + ], + "score": 1.0, + "content": "learn and learning-to-teach. IEEE Transactions on Neural Networks and Learning Lystems, 28", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 217, + 158, + 229 + ], + "spans": [ + { + "bbox": [ + 115, + 217, + 158, + 229 + ], + "score": 1.0, + "content": "(6), 2017.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 106, + 237, + 504, + 261 + ], + "lines": [ + { + "bbox": [ + 106, + 237, + 504, + 251 + ], + "spans": [ + { + "bbox": [ + 106, + 237, + 504, + 251 + ], + "score": 1.0, + "content": "Will Hamilton, Zhitao Ying, and Jure Leskovec. Inductive representation learning on large graphs.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 248, + 366, + 262 + ], + "spans": [ + { + "bbox": [ + 115, + 248, + 366, + 262 + ], + "score": 1.0, + "content": "In Advances in Neural Information Processing Systems, 2017.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5 + }, + { + "type": "text", + "bbox": [ + 105, + 268, + 505, + 292 + ], + "lines": [ + { + "bbox": [ + 106, + 269, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 106, + 269, + 505, + 282 + ], + "score": 1.0, + "content": "Cheng Hong, Zicheng Liu, and Jie Yang. Sparsity induced similarity measure for label propagation.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 115, + 280, + 488, + 293 + ], + "spans": [ + { + "bbox": [ + 115, + 280, + 488, + 293 + ], + "score": 1.0, + "content": "In Proceedings of the 12th IEEE International Conference on Computer Vision. IEEE, 2009.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5 + }, + { + "type": "text", + "bbox": [ + 107, + 300, + 504, + 334 + ], + "lines": [ + { + "bbox": [ + 105, + 299, + 505, + 313 + ], + "spans": [ + { + "bbox": [ + 105, + 299, + 505, + 313 + ], + "score": 1.0, + "content": "Bo Jiang, Ziyan Zhang, Doudou Lin, Jin Tang, and Bin Luo. Semi-supervised learning with graph", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 116, + 312, + 506, + 324 + ], + "spans": [ + { + "bbox": [ + 116, + 312, + 506, + 324 + ], + "score": 1.0, + "content": "learning-convolutional networks. In Proceedings of the IEEE Conference on Computer Vision", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 116, + 322, + 318, + 335 + ], + "spans": [ + { + "bbox": [ + 116, + 322, + 318, + 335 + ], + "score": 1.0, + "content": "and Pattern Recognition, pp. 11313–11320, 2019.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 106, + 342, + 504, + 365 + ], + "lines": [ + { + "bbox": [ + 105, + 340, + 505, + 357 + ], + "spans": [ + { + "bbox": [ + 105, + 340, + 505, + 357 + ], + "score": 1.0, + "content": "Masayuki Karasuyama and Hiroshi Mamitsuka. Manifold-based similarity adaptation for label prop-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 353, + 402, + 366 + ], + "spans": [ + { + "bbox": [ + 115, + 353, + 402, + 366 + ], + "score": 1.0, + "content": "agation. In Advances in Neural Information Processing Systems, 2013.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5 + }, + { + "type": "text", + "bbox": [ + 107, + 373, + 504, + 397 + ], + "lines": [ + { + "bbox": [ + 105, + 372, + 506, + 387 + ], + "spans": [ + { + "bbox": [ + 105, + 372, + 506, + 387 + ], + "score": 1.0, + "content": "Diederik P Kingma and Jimmy Ba. Adam: A method for stochastic optimization. In Proceedings of", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 116, + 384, + 395, + 397 + ], + "spans": [ + { + "bbox": [ + 116, + 384, + 395, + 397 + ], + "score": 1.0, + "content": "the 3rd International Conference on Learning Representations, 2015.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5 + }, + { + "type": "text", + "bbox": [ + 107, + 404, + 504, + 428 + ], + "lines": [ + { + "bbox": [ + 106, + 404, + 505, + 417 + ], + "spans": [ + { + "bbox": [ + 106, + 404, + 505, + 417 + ], + "score": 1.0, + "content": "Thomas N Kipf and Max Welling. Semi-supervised classification with graph convolutional net-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 117, + 416, + 498, + 429 + ], + "spans": [ + { + "bbox": [ + 117, + 416, + 498, + 429 + ], + "score": 1.0, + "content": "works. In Proceedings of the 5th International Conference on Learning Representations, 2017.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5 + }, + { + "type": "text", + "bbox": [ + 106, + 435, + 505, + 470 + ], + "lines": [ + { + "bbox": [ + 105, + 435, + 504, + 449 + ], + "spans": [ + { + "bbox": [ + 105, + 435, + 504, + 449 + ], + "score": 1.0, + "content": "Johannes Klicpera, Aleksandar Bojchevski, and Stephan Gunnemann. Predict then propagate:¨", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 116, + 447, + 505, + 460 + ], + "spans": [ + { + "bbox": [ + 116, + 447, + 505, + 460 + ], + "score": 1.0, + "content": "Graph neural networks meet personalized pagerank. In Proceedings of the 7th International", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 117, + 458, + 314, + 471 + ], + "spans": [ + { + "bbox": [ + 117, + 458, + 314, + 471 + ], + "score": 1.0, + "content": "Conference on Learning Representations, 2019a.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 105, + 478, + 504, + 501 + ], + "lines": [ + { + "bbox": [ + 105, + 477, + 505, + 491 + ], + "spans": [ + { + "bbox": [ + 105, + 477, + 505, + 491 + ], + "score": 1.0, + "content": "Johannes Klicpera, Stefan Weißenberger, and Stephan Gunnemann. Diffusion improves graph learn- ¨", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 115, + 489, + 465, + 501 + ], + "spans": [ + { + "bbox": [ + 115, + 489, + 465, + 501 + ], + "score": 1.0, + "content": "ing. In Advances in Neural Information Processing Systems, pp. 13354–13366, 2019b.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5 + }, + { + "type": "text", + "bbox": [ + 105, + 509, + 504, + 532 + ], + "lines": [ + { + "bbox": [ + 106, + 510, + 505, + 523 + ], + "spans": [ + { + "bbox": [ + 106, + 510, + 505, + 523 + ], + "score": 1.0, + "content": "Pang Wei Koh and Percy Liang. Understanding black-box predictions via influence functions. In", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 116, + 520, + 433, + 533 + ], + "spans": [ + { + "bbox": [ + 116, + 520, + 433, + 533 + ], + "score": 1.0, + "content": "Proceedings of the 34th International Conference on Machine Learning, 2017.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5 + }, + { + "type": "text", + "bbox": [ + 106, + 540, + 505, + 574 + ], + "lines": [ + { + "bbox": [ + 105, + 540, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 540, + 505, + 554 + ], + "score": 1.0, + "content": "Deguang Kong, Chris Ding, Heng Huang, and Feiping Nie. An iterative locally linear embedding", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 551, + 505, + 565 + ], + "spans": [ + { + "bbox": [ + 115, + 551, + 505, + 565 + ], + "score": 1.0, + "content": "algorithm. In Proceedings of the 29th International Coference on International Conference on", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 116, + 563, + 268, + 575 + ], + "spans": [ + { + "bbox": [ + 116, + 563, + 268, + 575 + ], + "score": 1.0, + "content": "Machine Learning. Omnipress, 2012.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 107, + 582, + 504, + 606 + ], + "lines": [ + { + "bbox": [ + 107, + 583, + 506, + 596 + ], + "spans": [ + { + "bbox": [ + 107, + 583, + 506, + 596 + ], + "score": 1.0, + "content": "Qimai Li, Zhichao Han, and Xiao-Ming Wu. Deeper insights into graph convolutional networks for", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 115, + 594, + 473, + 606 + ], + "spans": [ + { + "bbox": [ + 115, + 594, + 473, + 606 + ], + "score": 1.0, + "content": "semi-supervised learning. In The 32nd AAAI Conference on Artificial Intelligence, 2018.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5 + }, + { + "type": "text", + "bbox": [ + 106, + 613, + 505, + 648 + ], + "lines": [ + { + "bbox": [ + 106, + 613, + 504, + 627 + ], + "spans": [ + { + "bbox": [ + 106, + 613, + 504, + 627 + ], + "score": 1.0, + "content": "Qimai Li, Xiao-Ming Wu, Han Liu, Xiaotong Zhang, and Zhichao Guan. Label efficient semi-", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 116, + 626, + 505, + 638 + ], + "spans": [ + { + "bbox": [ + 116, + 626, + 505, + 638 + ], + "score": 1.0, + "content": "supervised learning via graph filtering. In Proceedings of the IEEE Conference on Computer", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 118, + 636, + 336, + 648 + ], + "spans": [ + { + "bbox": [ + 118, + 636, + 336, + 648 + ], + "score": 1.0, + "content": "Vision and Pattern Recognition, pp. 9582–9591, 2019.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 107, + 655, + 504, + 690 + ], + "lines": [ + { + "bbox": [ + 105, + 655, + 505, + 669 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 505, + 669 + ], + "score": 1.0, + "content": "Renjie Liao, Zhizhen Zhao, Raquel Urtasun, and Richard S Zemel. Lanczosnet: Multi-scale deep", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 115, + 666, + 505, + 682 + ], + "spans": [ + { + "bbox": [ + 115, + 666, + 505, + 682 + ], + "score": 1.0, + "content": "graph convolutional networks. In Proceedings of the 7th International Conference on Learning", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 115, + 678, + 210, + 690 + ], + "spans": [ + { + "bbox": [ + 115, + 678, + 210, + 690 + ], + "score": 1.0, + "content": "Representations, 2019.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40 + }, + { + "type": "text", + "bbox": [ + 108, + 698, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 697, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 697, + 505, + 712 + ], + "score": 1.0, + "content": "Yanbin Liu, Juho Lee, Minseop Park, Saehoon Kim, Eunho Yang, Sung Ju Hwang, and Yi Yang.", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 115, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 115, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "Learning to propagate labels: Transductive propagation network for few-shot learning. In Pro-", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 116, + 721, + 446, + 733 + ], + "spans": [ + { + "bbox": [ + 116, + 721, + 446, + 733 + ], + "score": 1.0, + "content": "ceedings of the 7th International Conference on Learning Representations, 2019a.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43 + } + ], + "page_idx": 8, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 307, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "score": 1.0, + "content": "9", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 81, + 175, + 93 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 176, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 176, + 95 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 100, + 505, + 145 + ], + "lines": [ + { + "bbox": [ + 105, + 100, + 505, + 113 + ], + "spans": [ + { + "bbox": [ + 105, + 100, + 505, + 113 + ], + "score": 1.0, + "content": "Sami Abu-El-Haija, Bryan Perozzi, Amol Kapoor, Nazanin Alipourfard, Kristina Lerman, Hrayr", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 111, + 506, + 123 + ], + "spans": [ + { + "bbox": [ + 115, + 111, + 506, + 123 + ], + "score": 1.0, + "content": "Harutyunyan, Greg Ver Steeg, and Aram Galstyan. Mixhop: Higher-order graph convolutional", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 123, + 504, + 135 + ], + "spans": [ + { + "bbox": [ + 115, + 123, + 504, + 135 + ], + "score": 1.0, + "content": "architectures via sparsified neighborhood mixing. In Proceedings of the 36th International Con-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 133, + 309, + 145 + ], + "spans": [ + { + "bbox": [ + 115, + 133, + 309, + 145 + ], + "score": 1.0, + "content": "ference on Machine Learning, pp. 21–29, 2019.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2.5, + "bbox_fs": [ + 105, + 100, + 506, + 145 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 153, + 504, + 187 + ], + "lines": [ + { + "bbox": [ + 106, + 154, + 505, + 166 + ], + "spans": [ + { + "bbox": [ + 106, + 154, + 505, + 166 + ], + "score": 1.0, + "content": "Xavier Glorot and Yoshua Bengio. Understanding the difficulty of training deep feedforward neural", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 164, + 505, + 177 + ], + "spans": [ + { + "bbox": [ + 115, + 164, + 505, + 177 + ], + "score": 1.0, + "content": "networks. In Proceedings of the 13th International Conference on Artificial Intelligence and", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 116, + 176, + 182, + 187 + ], + "spans": [ + { + "bbox": [ + 116, + 176, + 182, + 187 + ], + "score": 1.0, + "content": "Statistics, 2010.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6, + "bbox_fs": [ + 106, + 154, + 505, + 187 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 195, + 505, + 229 + ], + "lines": [ + { + "bbox": [ + 106, + 195, + 505, + 209 + ], + "spans": [ + { + "bbox": [ + 106, + 195, + 505, + 209 + ], + "score": 1.0, + "content": "Chen Gong, Dacheng Tao, Wei Liu, Liu Liu, and Jie Yang. Label propagation via teaching-to-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 116, + 207, + 505, + 219 + ], + "spans": [ + { + "bbox": [ + 116, + 207, + 505, + 219 + ], + "score": 1.0, + "content": "learn and learning-to-teach. IEEE Transactions on Neural Networks and Learning Lystems, 28", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 217, + 158, + 229 + ], + "spans": [ + { + "bbox": [ + 115, + 217, + 158, + 229 + ], + "score": 1.0, + "content": "(6), 2017.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9, + "bbox_fs": [ + 106, + 195, + 505, + 229 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 237, + 504, + 261 + ], + "lines": [ + { + "bbox": [ + 106, + 237, + 504, + 251 + ], + "spans": [ + { + "bbox": [ + 106, + 237, + 504, + 251 + ], + "score": 1.0, + "content": "Will Hamilton, Zhitao Ying, and Jure Leskovec. Inductive representation learning on large graphs.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 248, + 366, + 262 + ], + "spans": [ + { + "bbox": [ + 115, + 248, + 366, + 262 + ], + "score": 1.0, + "content": "In Advances in Neural Information Processing Systems, 2017.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5, + "bbox_fs": [ + 106, + 237, + 504, + 262 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 268, + 505, + 292 + ], + "lines": [ + { + "bbox": [ + 106, + 269, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 106, + 269, + 505, + 282 + ], + "score": 1.0, + "content": "Cheng Hong, Zicheng Liu, and Jie Yang. Sparsity induced similarity measure for label propagation.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 115, + 280, + 488, + 293 + ], + "spans": [ + { + "bbox": [ + 115, + 280, + 488, + 293 + ], + "score": 1.0, + "content": "In Proceedings of the 12th IEEE International Conference on Computer Vision. IEEE, 2009.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5, + "bbox_fs": [ + 106, + 269, + 505, + 293 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 300, + 504, + 334 + ], + "lines": [ + { + "bbox": [ + 105, + 299, + 505, + 313 + ], + "spans": [ + { + "bbox": [ + 105, + 299, + 505, + 313 + ], + "score": 1.0, + "content": "Bo Jiang, Ziyan Zhang, Doudou Lin, Jin Tang, and Bin Luo. Semi-supervised learning with graph", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 116, + 312, + 506, + 324 + ], + "spans": [ + { + "bbox": [ + 116, + 312, + 506, + 324 + ], + "score": 1.0, + "content": "learning-convolutional networks. In Proceedings of the IEEE Conference on Computer Vision", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 116, + 322, + 318, + 335 + ], + "spans": [ + { + "bbox": [ + 116, + 322, + 318, + 335 + ], + "score": 1.0, + "content": "and Pattern Recognition, pp. 11313–11320, 2019.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16, + "bbox_fs": [ + 105, + 299, + 506, + 335 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 342, + 504, + 365 + ], + "lines": [ + { + "bbox": [ + 105, + 340, + 505, + 357 + ], + "spans": [ + { + "bbox": [ + 105, + 340, + 505, + 357 + ], + "score": 1.0, + "content": "Masayuki Karasuyama and Hiroshi Mamitsuka. Manifold-based similarity adaptation for label prop-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 353, + 402, + 366 + ], + "spans": [ + { + "bbox": [ + 115, + 353, + 402, + 366 + ], + "score": 1.0, + "content": "agation. In Advances in Neural Information Processing Systems, 2013.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5, + "bbox_fs": [ + 105, + 340, + 505, + 366 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 373, + 504, + 397 + ], + "lines": [ + { + "bbox": [ + 105, + 372, + 506, + 387 + ], + "spans": [ + { + "bbox": [ + 105, + 372, + 506, + 387 + ], + "score": 1.0, + "content": "Diederik P Kingma and Jimmy Ba. Adam: A method for stochastic optimization. In Proceedings of", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 116, + 384, + 395, + 397 + ], + "spans": [ + { + "bbox": [ + 116, + 384, + 395, + 397 + ], + "score": 1.0, + "content": "the 3rd International Conference on Learning Representations, 2015.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5, + "bbox_fs": [ + 105, + 372, + 506, + 397 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 404, + 504, + 428 + ], + "lines": [ + { + "bbox": [ + 106, + 404, + 505, + 417 + ], + "spans": [ + { + "bbox": [ + 106, + 404, + 505, + 417 + ], + "score": 1.0, + "content": "Thomas N Kipf and Max Welling. Semi-supervised classification with graph convolutional net-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 117, + 416, + 498, + 429 + ], + "spans": [ + { + "bbox": [ + 117, + 416, + 498, + 429 + ], + "score": 1.0, + "content": "works. In Proceedings of the 5th International Conference on Learning Representations, 2017.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5, + "bbox_fs": [ + 106, + 404, + 505, + 429 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 435, + 505, + 470 + ], + "lines": [ + { + "bbox": [ + 105, + 435, + 504, + 449 + ], + "spans": [ + { + "bbox": [ + 105, + 435, + 504, + 449 + ], + "score": 1.0, + "content": "Johannes Klicpera, Aleksandar Bojchevski, and Stephan Gunnemann. Predict then propagate:¨", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 116, + 447, + 505, + 460 + ], + "spans": [ + { + "bbox": [ + 116, + 447, + 505, + 460 + ], + "score": 1.0, + "content": "Graph neural networks meet personalized pagerank. In Proceedings of the 7th International", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 117, + 458, + 314, + 471 + ], + "spans": [ + { + "bbox": [ + 117, + 458, + 314, + 471 + ], + "score": 1.0, + "content": "Conference on Learning Representations, 2019a.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25, + "bbox_fs": [ + 105, + 435, + 505, + 471 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 478, + 504, + 501 + ], + "lines": [ + { + "bbox": [ + 105, + 477, + 505, + 491 + ], + "spans": [ + { + "bbox": [ + 105, + 477, + 505, + 491 + ], + "score": 1.0, + "content": "Johannes Klicpera, Stefan Weißenberger, and Stephan Gunnemann. Diffusion improves graph learn- ¨", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 115, + 489, + 465, + 501 + ], + "spans": [ + { + "bbox": [ + 115, + 489, + 465, + 501 + ], + "score": 1.0, + "content": "ing. In Advances in Neural Information Processing Systems, pp. 13354–13366, 2019b.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5, + "bbox_fs": [ + 105, + 477, + 505, + 501 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 509, + 504, + 532 + ], + "lines": [ + { + "bbox": [ + 106, + 510, + 505, + 523 + ], + "spans": [ + { + "bbox": [ + 106, + 510, + 505, + 523 + ], + "score": 1.0, + "content": "Pang Wei Koh and Percy Liang. Understanding black-box predictions via influence functions. In", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 116, + 520, + 433, + 533 + ], + "spans": [ + { + "bbox": [ + 116, + 520, + 433, + 533 + ], + "score": 1.0, + "content": "Proceedings of the 34th International Conference on Machine Learning, 2017.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5, + "bbox_fs": [ + 106, + 510, + 505, + 533 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 540, + 505, + 574 + ], + "lines": [ + { + "bbox": [ + 105, + 540, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 540, + 505, + 554 + ], + "score": 1.0, + "content": "Deguang Kong, Chris Ding, Heng Huang, and Feiping Nie. An iterative locally linear embedding", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 551, + 505, + 565 + ], + "spans": [ + { + "bbox": [ + 115, + 551, + 505, + 565 + ], + "score": 1.0, + "content": "algorithm. In Proceedings of the 29th International Coference on International Conference on", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 116, + 563, + 268, + 575 + ], + "spans": [ + { + "bbox": [ + 116, + 563, + 268, + 575 + ], + "score": 1.0, + "content": "Machine Learning. Omnipress, 2012.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32, + "bbox_fs": [ + 105, + 540, + 505, + 575 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 582, + 504, + 606 + ], + "lines": [ + { + "bbox": [ + 107, + 583, + 506, + 596 + ], + "spans": [ + { + "bbox": [ + 107, + 583, + 506, + 596 + ], + "score": 1.0, + "content": "Qimai Li, Zhichao Han, and Xiao-Ming Wu. Deeper insights into graph convolutional networks for", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 115, + 594, + 473, + 606 + ], + "spans": [ + { + "bbox": [ + 115, + 594, + 473, + 606 + ], + "score": 1.0, + "content": "semi-supervised learning. In The 32nd AAAI Conference on Artificial Intelligence, 2018.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5, + "bbox_fs": [ + 107, + 583, + 506, + 606 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 613, + 505, + 648 + ], + "lines": [ + { + "bbox": [ + 106, + 613, + 504, + 627 + ], + "spans": [ + { + "bbox": [ + 106, + 613, + 504, + 627 + ], + "score": 1.0, + "content": "Qimai Li, Xiao-Ming Wu, Han Liu, Xiaotong Zhang, and Zhichao Guan. Label efficient semi-", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 116, + 626, + 505, + 638 + ], + "spans": [ + { + "bbox": [ + 116, + 626, + 505, + 638 + ], + "score": 1.0, + "content": "supervised learning via graph filtering. In Proceedings of the IEEE Conference on Computer", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 118, + 636, + 336, + 648 + ], + "spans": [ + { + "bbox": [ + 118, + 636, + 336, + 648 + ], + "score": 1.0, + "content": "Vision and Pattern Recognition, pp. 9582–9591, 2019.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37, + "bbox_fs": [ + 106, + 613, + 505, + 648 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 655, + 504, + 690 + ], + "lines": [ + { + "bbox": [ + 105, + 655, + 505, + 669 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 505, + 669 + ], + "score": 1.0, + "content": "Renjie Liao, Zhizhen Zhao, Raquel Urtasun, and Richard S Zemel. Lanczosnet: Multi-scale deep", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 115, + 666, + 505, + 682 + ], + "spans": [ + { + "bbox": [ + 115, + 666, + 505, + 682 + ], + "score": 1.0, + "content": "graph convolutional networks. In Proceedings of the 7th International Conference on Learning", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 115, + 678, + 210, + 690 + ], + "spans": [ + { + "bbox": [ + 115, + 678, + 210, + 690 + ], + "score": 1.0, + "content": "Representations, 2019.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40, + "bbox_fs": [ + 105, + 655, + 505, + 690 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 698, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 697, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 697, + 505, + 712 + ], + "score": 1.0, + "content": "Yanbin Liu, Juho Lee, Minseop Park, Saehoon Kim, Eunho Yang, Sung Ju Hwang, and Yi Yang.", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 115, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 115, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "Learning to propagate labels: Transductive propagation network for few-shot learning. In Pro-", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 116, + 721, + 446, + 733 + ], + "spans": [ + { + "bbox": [ + 116, + 721, + 446, + 733 + ], + "score": 1.0, + "content": "ceedings of the 7th International Conference on Learning Representations, 2019a.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43, + "bbox_fs": [ + 106, + 697, + 505, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 504, + 116 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Ziqi Liu, Chaochao Chen, Longfei Li, Jun Zhou, Xiaolong Li, Le Song, and Yuan Qi. Geniepath:", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 92, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 115, + 92, + 506, + 106 + ], + "score": 1.0, + "content": "Graph neural networks with adaptive receptive paths. In The 33rd AAAI Conference on Artificial", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 104, + 198, + 117 + ], + "spans": [ + { + "bbox": [ + 115, + 104, + 198, + 117 + ], + "score": 1.0, + "content": "Intelligence, 2019b.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 107, + 124, + 503, + 147 + ], + "lines": [ + { + "bbox": [ + 105, + 123, + 505, + 137 + ], + "spans": [ + { + "bbox": [ + 105, + 123, + 505, + 137 + ], + "score": 1.0, + "content": "Meng Qu, Yoshua Bengio, and Jian Tang. Gmnn: Graph markov neural networks. In Proceedings", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 116, + 135, + 381, + 147 + ], + "spans": [ + { + "bbox": [ + 116, + 135, + 381, + 147 + ], + "score": 1.0, + "content": "of the 36th International Conference on Machine Learning, 2019.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + }, + { + "type": "text", + "bbox": [ + 106, + 154, + 505, + 189 + ], + "lines": [ + { + "bbox": [ + 105, + 154, + 505, + 168 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 505, + 168 + ], + "score": 1.0, + "content": "Ryan A Rossi, Luke K McDowell, David William Aha, and Jennifer Neville. Transforming graph", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 166, + 505, + 179 + ], + "spans": [ + { + "bbox": [ + 115, + 166, + 505, + 179 + ], + "score": 1.0, + "content": "data for statistical relational learning. Journal of Artificial Intelligence Research, 45:363–441,", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 115, + 176, + 144, + 190 + ], + "spans": [ + { + "bbox": [ + 115, + 176, + 144, + 190 + ], + "score": 1.0, + "content": "2012.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 106, + 197, + 503, + 220 + ], + "lines": [ + { + "bbox": [ + 106, + 196, + 505, + 210 + ], + "spans": [ + { + "bbox": [ + 106, + 196, + 505, + 210 + ], + "score": 1.0, + "content": "Sam T Roweis and Lawrence K Saul. Nonlinear dimensionality reduction by locally linear embed-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 115, + 208, + 246, + 220 + ], + "spans": [ + { + "bbox": [ + 115, + 208, + 246, + 220 + ], + "score": 1.0, + "content": "ding. science, 290(5500), 2000.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5 + }, + { + "type": "text", + "bbox": [ + 106, + 227, + 504, + 252 + ], + "lines": [ + { + "bbox": [ + 106, + 228, + 505, + 240 + ], + "spans": [ + { + "bbox": [ + 106, + 228, + 505, + 240 + ], + "score": 1.0, + "content": "Prithviraj Sen, Galileo Namata, Mustafa Bilgic, Lise Getoor, Brian Galligher, and Tina Eliassi-Rad.", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 117, + 240, + 388, + 252 + ], + "spans": [ + { + "bbox": [ + 117, + 240, + 388, + 252 + ], + "score": 1.0, + "content": "Collective classification in network data. AI magazine, 29(3), 2008.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5 + }, + { + "type": "text", + "bbox": [ + 108, + 259, + 504, + 294 + ], + "lines": [ + { + "bbox": [ + 106, + 259, + 505, + 272 + ], + "spans": [ + { + "bbox": [ + 106, + 259, + 505, + 272 + ], + "score": 1.0, + "content": "Oleksandr Shchur, Maximilian Mumme, Aleksandar Bojchevski, and Stephan Gunnemann. Pitfalls ¨", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 117, + 272, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 117, + 272, + 505, + 282 + ], + "score": 1.0, + "content": "of graph neural network evaluation. In Neural Information Processing Systems Workshop on", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 115, + 281, + 289, + 294 + ], + "spans": [ + { + "bbox": [ + 115, + 281, + 289, + 294 + ], + "score": 1.0, + "content": "Relational Representation Learning, 2018.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 109, + 301, + 504, + 335 + ], + "lines": [ + { + "bbox": [ + 106, + 301, + 505, + 315 + ], + "spans": [ + { + "bbox": [ + 106, + 301, + 505, + 315 + ], + "score": 1.0, + "content": "Nitish Srivastava, Geoffrey Hinton, Alex Krizhevsky, Ilya Sutskever, and Ruslan Salakhutdinov.", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 116, + 313, + 504, + 324 + ], + "spans": [ + { + "bbox": [ + 116, + 313, + 504, + 324 + ], + "score": 1.0, + "content": "Dropout: a simple way to prevent neural networks from overfitting. The Journal of Machine", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 116, + 324, + 249, + 336 + ], + "spans": [ + { + "bbox": [ + 116, + 324, + 249, + 336 + ], + "score": 1.0, + "content": "Learning Research, 15(1), 2014.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 106, + 343, + 502, + 367 + ], + "lines": [ + { + "bbox": [ + 106, + 343, + 505, + 356 + ], + "spans": [ + { + "bbox": [ + 106, + 343, + 505, + 356 + ], + "score": 1.0, + "content": "Kiran K Thekumparampil, Chong Wang, Sewoong Oh, and Li-Jia Li. Attention-based graph neural", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 354, + 433, + 368 + ], + "spans": [ + { + "bbox": [ + 115, + 354, + 433, + 368 + ], + "score": 1.0, + "content": "network for semi-supervised learning. arXiv preprint arXiv:1803.03735, 2018.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5 + }, + { + "type": "text", + "bbox": [ + 106, + 374, + 505, + 408 + ], + "lines": [ + { + "bbox": [ + 105, + 374, + 505, + 388 + ], + "spans": [ + { + "bbox": [ + 105, + 374, + 505, + 388 + ], + "score": 1.0, + "content": "Petar Velickovi ˇ c, Guillem Cucurull, Arantxa Casanova, Adriana Romero, Pietro Lio, and Yoshua ´", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 385, + 505, + 398 + ], + "spans": [ + { + "bbox": [ + 115, + 385, + 505, + 398 + ], + "score": 1.0, + "content": "Bengio. Graph attention networks. In Proceedings of the 6th International Conference on Learn-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 397, + 226, + 409 + ], + "spans": [ + { + "bbox": [ + 115, + 397, + 226, + 409 + ], + "score": 1.0, + "content": "ing Representations, 2018.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 105, + 416, + 504, + 440 + ], + "lines": [ + { + "bbox": [ + 105, + 416, + 505, + 430 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 505, + 430 + ], + "score": 1.0, + "content": "Fei Wang and Changshui Zhang. Label propagation through linear neighborhoods. IEEE Transac-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 116, + 427, + 343, + 440 + ], + "spans": [ + { + "bbox": [ + 116, + 427, + 343, + 440 + ], + "score": 1.0, + "content": "tions on Knowledge and Data Engineering, 20(1), 2008.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5 + }, + { + "type": "text", + "bbox": [ + 107, + 447, + 505, + 482 + ], + "lines": [ + { + "bbox": [ + 105, + 447, + 505, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 447, + 505, + 461 + ], + "score": 1.0, + "content": "Bingbing Xu, Huawei Shen, Qi Cao, Keting Cen, and Xueqi Cheng. Graph convolutional networks", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 116, + 459, + 505, + 471 + ], + "spans": [ + { + "bbox": [ + 116, + 459, + 505, + 471 + ], + "score": 1.0, + "content": "using heat kernel for semi-supervised learning. In Proceedings of the 28th International Joint", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 116, + 470, + 415, + 483 + ], + "spans": [ + { + "bbox": [ + 116, + 470, + 415, + 483 + ], + "score": 1.0, + "content": "Conference on Artificial Intelligence, pp. 1928–1934. AAAI Press, 2019a.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 107, + 489, + 504, + 524 + ], + "lines": [ + { + "bbox": [ + 106, + 489, + 506, + 503 + ], + "spans": [ + { + "bbox": [ + 106, + 489, + 506, + 503 + ], + "score": 1.0, + "content": "Keyulu Xu, Chengtao Li, Yonglong Tian, Tomohiro Sonobe, Ken-ichi Kawarabayashi, and Stefanie", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 115, + 501, + 505, + 514 + ], + "spans": [ + { + "bbox": [ + 115, + 501, + 505, + 514 + ], + "score": 1.0, + "content": "Jegelka. Representation learning on graphs with jumping knowledge networks. In Proceedings", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 115, + 512, + 381, + 524 + ], + "spans": [ + { + "bbox": [ + 115, + 512, + 381, + 524 + ], + "score": 1.0, + "content": "of the 35th International Conference on Machine Learning, 2018.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 106, + 531, + 506, + 565 + ], + "lines": [ + { + "bbox": [ + 106, + 532, + 505, + 544 + ], + "spans": [ + { + "bbox": [ + 106, + 532, + 505, + 544 + ], + "score": 1.0, + "content": "Keyulu Xu, Weihua Hu, Jure Leskovec, and Stefanie Jegelka. How powerful are graph neural", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 114, + 542, + 506, + 557 + ], + "spans": [ + { + "bbox": [ + 114, + 542, + 506, + 557 + ], + "score": 1.0, + "content": "networks? In Proceedings of the 7th International Conference on Learning Representations,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 552, + 148, + 567 + ], + "spans": [ + { + "bbox": [ + 115, + 552, + 148, + 567 + ], + "score": 1.0, + "content": "2019b.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 106, + 573, + 503, + 597 + ], + "lines": [ + { + "bbox": [ + 105, + 573, + 505, + 588 + ], + "spans": [ + { + "bbox": [ + 105, + 573, + 505, + 588 + ], + "score": 1.0, + "content": "Liang Yang, Zesheng Kang, Xiaochun Cao, Di Jin, Bo Yang, and Yuanfang Guo. Topology opti-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 115, + 585, + 429, + 597 + ], + "spans": [ + { + "bbox": [ + 115, + 585, + 429, + 597 + ], + "score": 1.0, + "content": "mization based graph convolutional network. In IJCAI, pp. 4054–4061, 2019.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5 + }, + { + "type": "text", + "bbox": [ + 106, + 604, + 505, + 628 + ], + "lines": [ + { + "bbox": [ + 106, + 603, + 506, + 619 + ], + "spans": [ + { + "bbox": [ + 106, + 603, + 506, + 619 + ], + "score": 1.0, + "content": "Wayne W Zachary. An information flow model for conflict and fission in small groups. Journal of", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 115, + 616, + 274, + 628 + ], + "spans": [ + { + "bbox": [ + 115, + 616, + 274, + 628 + ], + "score": 1.0, + "content": "anthropological research, 33(4), 1977.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5 + }, + { + "type": "text", + "bbox": [ + 107, + 636, + 504, + 670 + ], + "lines": [ + { + "bbox": [ + 105, + 635, + 506, + 649 + ], + "spans": [ + { + "bbox": [ + 105, + 635, + 506, + 649 + ], + "score": 1.0, + "content": "Jiani Zhang, Xingjian Shi, Junyuan Xie, Hao Ma, Irwin King, and Dit-Yan Yeung. Gaan:", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 116, + 647, + 505, + 660 + ], + "spans": [ + { + "bbox": [ + 116, + 647, + 505, + 660 + ], + "score": 1.0, + "content": "Gated attention networks for learning on large and spatiotemporal graphs. arXiv preprint", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 116, + 658, + 220, + 669 + ], + "spans": [ + { + "bbox": [ + 116, + 658, + 220, + 669 + ], + "score": 1.0, + "content": "arXiv:1803.07294, 2018.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 105, + 678, + 504, + 701 + ], + "lines": [ + { + "bbox": [ + 105, + 676, + 506, + 693 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 506, + 693 + ], + "score": 1.0, + "content": "Xinhua Zhang and Wee S Lee. Hyperparameter learning for graph based semi-supervised learning", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 115, + 689, + 415, + 702 + ], + "spans": [ + { + "bbox": [ + 115, + 689, + 415, + 702 + ], + "score": 1.0, + "content": "algorithms. In Advances in Neural Information Processing Systems, 2007.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41.5 + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 503, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 708, + 504, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 504, + 723 + ], + "score": 1.0, + "content": "Zhenyue Zhang and Jing Wang. Mlle: Modified locally linear embedding using multiple weights.", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 116, + 720, + 367, + 733 + ], + "spans": [ + { + "bbox": [ + 116, + 720, + 367, + 733 + ], + "score": 1.0, + "content": "In Advances in Neural Information Processing Systems, 2007.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43.5 + } + ], + "page_idx": 9, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 307, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "10", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 504, + 116 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Ziqi Liu, Chaochao Chen, Longfei Li, Jun Zhou, Xiaolong Li, Le Song, and Yuan Qi. Geniepath:", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 92, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 115, + 92, + 506, + 106 + ], + "score": 1.0, + "content": "Graph neural networks with adaptive receptive paths. In The 33rd AAAI Conference on Artificial", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 104, + 198, + 117 + ], + "spans": [ + { + "bbox": [ + 115, + 104, + 198, + 117 + ], + "score": 1.0, + "content": "Intelligence, 2019b.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1, + "bbox_fs": [ + 106, + 82, + 506, + 117 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 124, + 503, + 147 + ], + "lines": [ + { + "bbox": [ + 105, + 123, + 505, + 137 + ], + "spans": [ + { + "bbox": [ + 105, + 123, + 505, + 137 + ], + "score": 1.0, + "content": "Meng Qu, Yoshua Bengio, and Jian Tang. Gmnn: Graph markov neural networks. In Proceedings", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 116, + 135, + 381, + 147 + ], + "spans": [ + { + "bbox": [ + 116, + 135, + 381, + 147 + ], + "score": 1.0, + "content": "of the 36th International Conference on Machine Learning, 2019.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5, + "bbox_fs": [ + 105, + 123, + 505, + 147 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 154, + 505, + 189 + ], + "lines": [ + { + "bbox": [ + 105, + 154, + 505, + 168 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 505, + 168 + ], + "score": 1.0, + "content": "Ryan A Rossi, Luke K McDowell, David William Aha, and Jennifer Neville. Transforming graph", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 166, + 505, + 179 + ], + "spans": [ + { + "bbox": [ + 115, + 166, + 505, + 179 + ], + "score": 1.0, + "content": "data for statistical relational learning. Journal of Artificial Intelligence Research, 45:363–441,", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 115, + 176, + 144, + 190 + ], + "spans": [ + { + "bbox": [ + 115, + 176, + 144, + 190 + ], + "score": 1.0, + "content": "2012.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6, + "bbox_fs": [ + 105, + 154, + 505, + 190 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 197, + 503, + 220 + ], + "lines": [ + { + "bbox": [ + 106, + 196, + 505, + 210 + ], + "spans": [ + { + "bbox": [ + 106, + 196, + 505, + 210 + ], + "score": 1.0, + "content": "Sam T Roweis and Lawrence K Saul. Nonlinear dimensionality reduction by locally linear embed-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 115, + 208, + 246, + 220 + ], + "spans": [ + { + "bbox": [ + 115, + 208, + 246, + 220 + ], + "score": 1.0, + "content": "ding. science, 290(5500), 2000.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5, + "bbox_fs": [ + 106, + 196, + 505, + 220 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 227, + 504, + 252 + ], + "lines": [ + { + "bbox": [ + 106, + 228, + 505, + 240 + ], + "spans": [ + { + "bbox": [ + 106, + 228, + 505, + 240 + ], + "score": 1.0, + "content": "Prithviraj Sen, Galileo Namata, Mustafa Bilgic, Lise Getoor, Brian Galligher, and Tina Eliassi-Rad.", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 117, + 240, + 388, + 252 + ], + "spans": [ + { + "bbox": [ + 117, + 240, + 388, + 252 + ], + "score": 1.0, + "content": "Collective classification in network data. AI magazine, 29(3), 2008.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5, + "bbox_fs": [ + 106, + 228, + 505, + 252 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 259, + 504, + 294 + ], + "lines": [ + { + "bbox": [ + 106, + 259, + 505, + 272 + ], + "spans": [ + { + "bbox": [ + 106, + 259, + 505, + 272 + ], + "score": 1.0, + "content": "Oleksandr Shchur, Maximilian Mumme, Aleksandar Bojchevski, and Stephan Gunnemann. Pitfalls ¨", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 117, + 272, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 117, + 272, + 505, + 282 + ], + "score": 1.0, + "content": "of graph neural network evaluation. In Neural Information Processing Systems Workshop on", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 115, + 281, + 289, + 294 + ], + "spans": [ + { + "bbox": [ + 115, + 281, + 289, + 294 + ], + "score": 1.0, + "content": "Relational Representation Learning, 2018.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13, + "bbox_fs": [ + 106, + 259, + 505, + 294 + ] + }, + { + "type": "text", + "bbox": [ + 109, + 301, + 504, + 335 + ], + "lines": [ + { + "bbox": [ + 106, + 301, + 505, + 315 + ], + "spans": [ + { + "bbox": [ + 106, + 301, + 505, + 315 + ], + "score": 1.0, + "content": "Nitish Srivastava, Geoffrey Hinton, Alex Krizhevsky, Ilya Sutskever, and Ruslan Salakhutdinov.", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 116, + 313, + 504, + 324 + ], + "spans": [ + { + "bbox": [ + 116, + 313, + 504, + 324 + ], + "score": 1.0, + "content": "Dropout: a simple way to prevent neural networks from overfitting. The Journal of Machine", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 116, + 324, + 249, + 336 + ], + "spans": [ + { + "bbox": [ + 116, + 324, + 249, + 336 + ], + "score": 1.0, + "content": "Learning Research, 15(1), 2014.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16, + "bbox_fs": [ + 106, + 301, + 505, + 336 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 343, + 502, + 367 + ], + "lines": [ + { + "bbox": [ + 106, + 343, + 505, + 356 + ], + "spans": [ + { + "bbox": [ + 106, + 343, + 505, + 356 + ], + "score": 1.0, + "content": "Kiran K Thekumparampil, Chong Wang, Sewoong Oh, and Li-Jia Li. Attention-based graph neural", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 354, + 433, + 368 + ], + "spans": [ + { + "bbox": [ + 115, + 354, + 433, + 368 + ], + "score": 1.0, + "content": "network for semi-supervised learning. arXiv preprint arXiv:1803.03735, 2018.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5, + "bbox_fs": [ + 106, + 343, + 505, + 368 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 374, + 505, + 408 + ], + "lines": [ + { + "bbox": [ + 105, + 374, + 505, + 388 + ], + "spans": [ + { + "bbox": [ + 105, + 374, + 505, + 388 + ], + "score": 1.0, + "content": "Petar Velickovi ˇ c, Guillem Cucurull, Arantxa Casanova, Adriana Romero, Pietro Lio, and Yoshua ´", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 385, + 505, + 398 + ], + "spans": [ + { + "bbox": [ + 115, + 385, + 505, + 398 + ], + "score": 1.0, + "content": "Bengio. Graph attention networks. In Proceedings of the 6th International Conference on Learn-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 397, + 226, + 409 + ], + "spans": [ + { + "bbox": [ + 115, + 397, + 226, + 409 + ], + "score": 1.0, + "content": "ing Representations, 2018.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21, + "bbox_fs": [ + 105, + 374, + 505, + 409 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 416, + 504, + 440 + ], + "lines": [ + { + "bbox": [ + 105, + 416, + 505, + 430 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 505, + 430 + ], + "score": 1.0, + "content": "Fei Wang and Changshui Zhang. Label propagation through linear neighborhoods. IEEE Transac-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 116, + 427, + 343, + 440 + ], + "spans": [ + { + "bbox": [ + 116, + 427, + 343, + 440 + ], + "score": 1.0, + "content": "tions on Knowledge and Data Engineering, 20(1), 2008.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5, + "bbox_fs": [ + 105, + 416, + 505, + 440 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 447, + 505, + 482 + ], + "lines": [ + { + "bbox": [ + 105, + 447, + 505, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 447, + 505, + 461 + ], + "score": 1.0, + "content": "Bingbing Xu, Huawei Shen, Qi Cao, Keting Cen, and Xueqi Cheng. Graph convolutional networks", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 116, + 459, + 505, + 471 + ], + "spans": [ + { + "bbox": [ + 116, + 459, + 505, + 471 + ], + "score": 1.0, + "content": "using heat kernel for semi-supervised learning. In Proceedings of the 28th International Joint", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 116, + 470, + 415, + 483 + ], + "spans": [ + { + "bbox": [ + 116, + 470, + 415, + 483 + ], + "score": 1.0, + "content": "Conference on Artificial Intelligence, pp. 1928–1934. AAAI Press, 2019a.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26, + "bbox_fs": [ + 105, + 447, + 505, + 483 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 489, + 504, + 524 + ], + "lines": [ + { + "bbox": [ + 106, + 489, + 506, + 503 + ], + "spans": [ + { + "bbox": [ + 106, + 489, + 506, + 503 + ], + "score": 1.0, + "content": "Keyulu Xu, Chengtao Li, Yonglong Tian, Tomohiro Sonobe, Ken-ichi Kawarabayashi, and Stefanie", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 115, + 501, + 505, + 514 + ], + "spans": [ + { + "bbox": [ + 115, + 501, + 505, + 514 + ], + "score": 1.0, + "content": "Jegelka. Representation learning on graphs with jumping knowledge networks. In Proceedings", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 115, + 512, + 381, + 524 + ], + "spans": [ + { + "bbox": [ + 115, + 512, + 381, + 524 + ], + "score": 1.0, + "content": "of the 35th International Conference on Machine Learning, 2018.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29, + "bbox_fs": [ + 106, + 489, + 506, + 524 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 531, + 506, + 565 + ], + "lines": [ + { + "bbox": [ + 106, + 532, + 505, + 544 + ], + "spans": [ + { + "bbox": [ + 106, + 532, + 505, + 544 + ], + "score": 1.0, + "content": "Keyulu Xu, Weihua Hu, Jure Leskovec, and Stefanie Jegelka. How powerful are graph neural", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 114, + 542, + 506, + 557 + ], + "spans": [ + { + "bbox": [ + 114, + 542, + 506, + 557 + ], + "score": 1.0, + "content": "networks? In Proceedings of the 7th International Conference on Learning Representations,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 552, + 148, + 567 + ], + "spans": [ + { + "bbox": [ + 115, + 552, + 148, + 567 + ], + "score": 1.0, + "content": "2019b.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32, + "bbox_fs": [ + 106, + 532, + 506, + 567 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 573, + 503, + 597 + ], + "lines": [ + { + "bbox": [ + 105, + 573, + 505, + 588 + ], + "spans": [ + { + "bbox": [ + 105, + 573, + 505, + 588 + ], + "score": 1.0, + "content": "Liang Yang, Zesheng Kang, Xiaochun Cao, Di Jin, Bo Yang, and Yuanfang Guo. Topology opti-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 115, + 585, + 429, + 597 + ], + "spans": [ + { + "bbox": [ + 115, + 585, + 429, + 597 + ], + "score": 1.0, + "content": "mization based graph convolutional network. In IJCAI, pp. 4054–4061, 2019.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5, + "bbox_fs": [ + 105, + 573, + 505, + 597 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 604, + 505, + 628 + ], + "lines": [ + { + "bbox": [ + 106, + 603, + 506, + 619 + ], + "spans": [ + { + "bbox": [ + 106, + 603, + 506, + 619 + ], + "score": 1.0, + "content": "Wayne W Zachary. An information flow model for conflict and fission in small groups. Journal of", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 115, + 616, + 274, + 628 + ], + "spans": [ + { + "bbox": [ + 115, + 616, + 274, + 628 + ], + "score": 1.0, + "content": "anthropological research, 33(4), 1977.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5, + "bbox_fs": [ + 106, + 603, + 506, + 628 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 636, + 504, + 670 + ], + "lines": [ + { + "bbox": [ + 105, + 635, + 506, + 649 + ], + "spans": [ + { + "bbox": [ + 105, + 635, + 506, + 649 + ], + "score": 1.0, + "content": "Jiani Zhang, Xingjian Shi, Junyuan Xie, Hao Ma, Irwin King, and Dit-Yan Yeung. Gaan:", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 116, + 647, + 505, + 660 + ], + "spans": [ + { + "bbox": [ + 116, + 647, + 505, + 660 + ], + "score": 1.0, + "content": "Gated attention networks for learning on large and spatiotemporal graphs. arXiv preprint", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 116, + 658, + 220, + 669 + ], + "spans": [ + { + "bbox": [ + 116, + 658, + 220, + 669 + ], + "score": 1.0, + "content": "arXiv:1803.07294, 2018.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39, + "bbox_fs": [ + 105, + 635, + 506, + 669 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 678, + 504, + 701 + ], + "lines": [ + { + "bbox": [ + 105, + 676, + 506, + 693 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 506, + 693 + ], + "score": 1.0, + "content": "Xinhua Zhang and Wee S Lee. Hyperparameter learning for graph based semi-supervised learning", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 115, + 689, + 415, + 702 + ], + "spans": [ + { + "bbox": [ + 115, + 689, + 415, + 702 + ], + "score": 1.0, + "content": "algorithms. In Advances in Neural Information Processing Systems, 2007.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41.5, + "bbox_fs": [ + 105, + 676, + 506, + 702 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 503, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 708, + 504, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 504, + 723 + ], + "score": 1.0, + "content": "Zhenyue Zhang and Jing Wang. Mlle: Modified locally linear embedding using multiple weights.", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 116, + 720, + 367, + 733 + ], + "spans": [ + { + "bbox": [ + 116, + 720, + 367, + 733 + ], + "score": 1.0, + "content": "In Advances in Neural Information Processing Systems, 2007.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43.5, + "bbox_fs": [ + 105, + 708, + 504, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 504, + 115 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Dengyong Zhou, Olivier Bousquet, Thomas N Lal, Jason Weston, and Bernhard Scholkopf. Learn- ¨", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 93, + 505, + 107 + ], + "spans": [ + { + "bbox": [ + 115, + 93, + 505, + 107 + ], + "score": 1.0, + "content": "ing with local and global consistency. In Advances in Neural Information Processing Systems,", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 102, + 143, + 117 + ], + "spans": [ + { + "bbox": [ + 115, + 102, + 143, + 117 + ], + "score": 1.0, + "content": "2004.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 106, + 123, + 504, + 156 + ], + "lines": [ + { + "bbox": [ + 105, + 122, + 505, + 137 + ], + "spans": [ + { + "bbox": [ + 105, + 122, + 505, + 137 + ], + "score": 1.0, + "content": "Xiaojin Zhu, Zoubin Ghahramani, and John D Lafferty. Semi-supervised learning using gaussian", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 133, + 505, + 146 + ], + "spans": [ + { + "bbox": [ + 115, + 133, + 505, + 146 + ], + "score": 1.0, + "content": "fields and harmonic functions. In Proceedings of the 20th International Conference on Machine", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 116, + 145, + 183, + 157 + ], + "spans": [ + { + "bbox": [ + 116, + 145, + 183, + 157 + ], + "score": 1.0, + "content": "Learning, 2003.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 106, + 164, + 504, + 186 + ], + "lines": [ + { + "bbox": [ + 105, + 163, + 505, + 177 + ], + "spans": [ + { + "bbox": [ + 105, + 163, + 505, + 177 + ], + "score": 1.0, + "content": "Xiaojin Zhu, John Lafferty, and Ronald Rosenfeld. Semi-supervised learning with graphs. PhD", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 115, + 174, + 452, + 187 + ], + "spans": [ + { + "bbox": [ + 115, + 174, + 452, + 187 + ], + "score": 1.0, + "content": "thesis, Carnegie Mellon University, school of language technologies institute, 2005.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5 + } + ], + "page_idx": 10, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 300, + 751, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 13 + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 27, + 307, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 504, + 115 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Dengyong Zhou, Olivier Bousquet, Thomas N Lal, Jason Weston, and Bernhard Scholkopf. Learn- ¨", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 93, + 505, + 107 + ], + "spans": [ + { + "bbox": [ + 115, + 93, + 505, + 107 + ], + "score": 1.0, + "content": "ing with local and global consistency. In Advances in Neural Information Processing Systems,", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 102, + 143, + 117 + ], + "spans": [ + { + "bbox": [ + 115, + 102, + 143, + 117 + ], + "score": 1.0, + "content": "2004.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1, + "bbox_fs": [ + 105, + 82, + 505, + 117 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 123, + 504, + 156 + ], + "lines": [ + { + "bbox": [ + 105, + 122, + 505, + 137 + ], + "spans": [ + { + "bbox": [ + 105, + 122, + 505, + 137 + ], + "score": 1.0, + "content": "Xiaojin Zhu, Zoubin Ghahramani, and John D Lafferty. Semi-supervised learning using gaussian", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 133, + 505, + 146 + ], + "spans": [ + { + "bbox": [ + 115, + 133, + 505, + 146 + ], + "score": 1.0, + "content": "fields and harmonic functions. In Proceedings of the 20th International Conference on Machine", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 116, + 145, + 183, + 157 + ], + "spans": [ + { + "bbox": [ + 116, + 145, + 183, + 157 + ], + "score": 1.0, + "content": "Learning, 2003.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4, + "bbox_fs": [ + 105, + 122, + 505, + 157 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 164, + 504, + 186 + ], + "lines": [ + { + "bbox": [ + 105, + 163, + 505, + 177 + ], + "spans": [ + { + "bbox": [ + 105, + 163, + 505, + 177 + ], + "score": 1.0, + "content": "Xiaojin Zhu, John Lafferty, and Ronald Rosenfeld. Semi-supervised learning with graphs. PhD", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 115, + 174, + 452, + 187 + ], + "spans": [ + { + "bbox": [ + 115, + 174, + 452, + 187 + ], + "score": 1.0, + "content": "thesis, Carnegie Mellon University, school of language technologies institute, 2005.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5, + "bbox_fs": [ + 105, + 163, + 505, + 187 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 81, + 162, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 163, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 163, + 96 + ], + "score": 1.0, + "content": "APPENDIX", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 108, + 106, + 221, + 118 + ], + "lines": [ + { + "bbox": [ + 106, + 106, + 222, + 118 + ], + "spans": [ + { + "bbox": [ + 106, + 106, + 222, + 118 + ], + "score": 1.0, + "content": "A PROOF OF THEOREM 1", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 106, + 127, + 505, + 161 + ], + "lines": [ + { + "bbox": [ + 106, + 127, + 505, + 140 + ], + "spans": [ + { + "bbox": [ + 106, + 127, + 505, + 140 + ], + "score": 1.0, + "content": "Before proving Theorem 1, we first give two lemmas that demonstrate the exact form of feature", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 139, + 504, + 150 + ], + "spans": [ + { + "bbox": [ + 106, + 139, + 504, + 150 + ], + "score": 1.0, + "content": "influence and label influence defined in this paper. The relationship between feature influence and", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 149, + 345, + 162 + ], + "spans": [ + { + "bbox": [ + 105, + 149, + 345, + 162 + ], + "score": 1.0, + "content": "label influence can then be deduced from their exact forms.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 106, + 170, + 506, + 207 + ], + "lines": [ + { + "bbox": [ + 105, + 168, + 506, + 183 + ], + "spans": [ + { + "bbox": [ + 105, + 168, + 435, + 183 + ], + "score": 1.0, + "content": "Lemma 1 Assume that the nonlinear activation function in GCN is ReLU. Let", + "type": "text" + }, + { + "bbox": [ + 435, + 170, + 460, + 183 + ], + "score": 0.91, + "content": "\\mathcal { P } _ { k } ^ { a b }", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 168, + 506, + 183 + ], + "score": 1.0, + "content": "be a path", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 107, + 180, + 506, + 196 + ], + "spans": [ + { + "bbox": [ + 107, + 182, + 200, + 195 + ], + "score": 0.89, + "content": "[ v ^ { ( k ) } , v ^ { ( k - 1 ) } , \\cdot \\cdot \\cdot , v ^ { ( 0 ) } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 180, + 242, + 196 + ], + "score": 1.0, + "content": "of length", + "type": "text" + }, + { + "bbox": [ + 243, + 184, + 250, + 194 + ], + "score": 0.74, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 180, + 297, + 196 + ], + "score": 1.0, + "content": "from node", + "type": "text" + }, + { + "bbox": [ + 297, + 185, + 308, + 194 + ], + "score": 0.84, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 180, + 344, + 196 + ], + "score": 1.0, + "content": "to node", + "type": "text" + }, + { + "bbox": [ + 345, + 185, + 355, + 194 + ], + "score": 0.83, + "content": "v _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 355, + 180, + 388, + 196 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 388, + 182, + 433, + 194 + ], + "score": 0.84, + "content": "\\boldsymbol { v } ^ { ( k ) } = \\boldsymbol { v } _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 433, + 180, + 438, + 196 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 439, + 183, + 482, + 194 + ], + "score": 0.85, + "content": "\\boldsymbol { v } ^ { ( 0 ) } = \\boldsymbol { v } _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 482, + 180, + 506, + 196 + ], + "score": 1.0, + "content": ", and", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 107, + 192, + 307, + 210 + ], + "spans": [ + { + "bbox": [ + 107, + 195, + 244, + 208 + ], + "score": 0.61, + "content": "v ^ { ( i - 1 ) } \\in \\mathcal { N } ( v ^ { ( i ) } ) f o r i = k , \\cdots , 1", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 192, + 307, + 210 + ], + "score": 1.0, + "content": ". Then we have", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6 + }, + { + "type": "interline_equation", + "bbox": [ + 231, + 213, + 379, + 251 + ], + "lines": [ + { + "bbox": [ + 231, + 213, + 379, + 251 + ], + "spans": [ + { + "bbox": [ + 231, + 213, + 379, + 251 + ], + "score": 0.94, + "content": "\\tilde { I } _ { f } ( v _ { a } , v _ { b } ; k ) = \\sum _ { \\mathcal { P } _ { k } ^ { a b } } \\prod _ { i = k } ^ { 1 } \\tilde { a } _ { v ^ { ( i - 1 ) } , v ^ { ( i ) } } ,", + "type": "interline_equation", + "image_path": "095a02207e050c7257a5815bc6ac732c2c92d896b6e3b1eb4648435f78acc0b2.jpg" + } + ] + } + ], + "index": 8.5, + "virtual_lines": [ + { + "bbox": [ + 231, + 213, + 379, + 232.0 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 231, + 232.0, + 379, + 251.0 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 257, + 365, + 271 + ], + "lines": [ + { + "bbox": [ + 105, + 256, + 366, + 272 + ], + "spans": [ + { + "bbox": [ + 105, + 256, + 133, + 272 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 259, + 176, + 271 + ], + "score": 0.92, + "content": "\\tilde { a } _ { v ^ { ( i - 1 ) } , v ^ { ( i ) } }", + "type": "inline_equation" + }, + { + "bbox": [ + 176, + 256, + 310, + 272 + ], + "score": 1.0, + "content": "is the normalized weight of edge", + "type": "text" + }, + { + "bbox": [ + 311, + 257, + 362, + 271 + ], + "score": 0.91, + "content": "( v ^ { ( i ) } , v ^ { ( i - 1 ) } )", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 256, + 366, + 272 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 106, + 279, + 315, + 291 + ], + "lines": [ + { + "bbox": [ + 106, + 278, + 316, + 293 + ], + "spans": [ + { + "bbox": [ + 106, + 278, + 160, + 293 + ], + "score": 1.0, + "content": "Proof. See", + "type": "text" + }, + { + "bbox": [ + 161, + 280, + 175, + 290 + ], + "score": 0.36, + "content": "\\mathrm { X u }", + "type": "inline_equation" + }, + { + "bbox": [ + 175, + 278, + 316, + 293 + ], + "score": 1.0, + "content": "et al. (2018) for the detailed proof.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 106, + 296, + 506, + 330 + ], + "lines": [ + { + "bbox": [ + 105, + 294, + 506, + 310 + ], + "spans": [ + { + "bbox": [ + 105, + 294, + 355, + 310 + ], + "score": 1.0, + "content": "The product term in Eq. (10) is the probability of a given path", + "type": "text" + }, + { + "bbox": [ + 355, + 296, + 380, + 309 + ], + "score": 0.92, + "content": "\\mathcal { P } _ { k } ^ { a b }", + "type": "inline_equation" + }, + { + "bbox": [ + 380, + 294, + 506, + 310 + ], + "score": 1.0, + "content": ". Therefore, the right hand side", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 308, + 505, + 320 + ], + "spans": [ + { + "bbox": [ + 106, + 308, + 388, + 320 + ], + "score": 1.0, + "content": "in Eq. (10) is the sum over probabilities of all possible paths of length", + "type": "text" + }, + { + "bbox": [ + 388, + 308, + 395, + 318 + ], + "score": 0.8, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 395, + 308, + 417, + 320 + ], + "score": 1.0, + "content": "from", + "type": "text" + }, + { + "bbox": [ + 418, + 309, + 429, + 319 + ], + "score": 0.84, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 429, + 308, + 440, + 320 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 441, + 309, + 450, + 319 + ], + "score": 0.83, + "content": "v _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 308, + 505, + 320 + ], + "score": 1.0, + "content": ", which is the", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 318, + 410, + 332 + ], + "spans": [ + { + "bbox": [ + 105, + 318, + 273, + 332 + ], + "score": 1.0, + "content": "probability that a random walk starting at", + "type": "text" + }, + { + "bbox": [ + 274, + 320, + 285, + 330 + ], + "score": 0.85, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 285, + 318, + 316, + 332 + ], + "score": 1.0, + "content": "ends at", + "type": "text" + }, + { + "bbox": [ + 317, + 321, + 326, + 330 + ], + "score": 0.85, + "content": "v _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 318, + 375, + 332 + ], + "score": 1.0, + "content": "after taking", + "type": "text" + }, + { + "bbox": [ + 376, + 319, + 383, + 329 + ], + "score": 0.81, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 318, + 410, + 332 + ], + "score": 1.0, + "content": "steps.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 106, + 340, + 505, + 380 + ], + "lines": [ + { + "bbox": [ + 105, + 338, + 506, + 356 + ], + "spans": [ + { + "bbox": [ + 105, + 338, + 167, + 356 + ], + "score": 1.0, + "content": "Lemma 2 Let", + "type": "text" + }, + { + "bbox": [ + 167, + 341, + 192, + 355 + ], + "score": 0.91, + "content": "\\mathcal { U } _ { j } ^ { a b }", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 338, + 235, + 356 + ], + "score": 1.0, + "content": "be a path", + "type": "text" + }, + { + "bbox": [ + 235, + 341, + 327, + 354 + ], + "score": 0.92, + "content": "[ v ^ { ( j ) } , v ^ { ( j - 1 ) } , \\cdot \\cdot \\cdot , v ^ { ( 0 ) } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 338, + 367, + 356 + ], + "score": 1.0, + "content": "of length", + "type": "text" + }, + { + "bbox": [ + 367, + 343, + 373, + 354 + ], + "score": 0.64, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 338, + 418, + 356 + ], + "score": 1.0, + "content": "from node", + "type": "text" + }, + { + "bbox": [ + 419, + 344, + 429, + 353 + ], + "score": 0.84, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 430, + 338, + 464, + 356 + ], + "score": 1.0, + "content": "to node", + "type": "text" + }, + { + "bbox": [ + 464, + 344, + 474, + 353 + ], + "score": 0.82, + "content": "v _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 338, + 506, + 356 + ], + "score": 1.0, + "content": ", where", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 107, + 352, + 506, + 370 + ], + "spans": [ + { + "bbox": [ + 107, + 354, + 146, + 367 + ], + "score": 0.76, + "content": "\\boldsymbol { v } ^ { ( j ) } = \\boldsymbol { v } _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 352, + 150, + 370 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 150, + 355, + 189, + 367 + ], + "score": 0.65, + "content": "v ^ { ( 0 ) } = v _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 352, + 193, + 370 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 193, + 354, + 265, + 368 + ], + "score": 0.7, + "content": "v ^ { ( i - 1 ) } \\in \\mathcal { N } ( v ^ { ( i ) } ) .", + "type": "inline_equation" + }, + { + "bbox": [ + 265, + 352, + 278, + 370 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 278, + 356, + 329, + 367 + ], + "score": 0.4, + "content": "i = j , \\cdots , 1", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 352, + 506, + 370 + ], + "score": 1.0, + "content": ", and all nodes along the path are unlabeled", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 365, + 214, + 382 + ], + "spans": [ + { + "bbox": [ + 105, + 365, + 134, + 382 + ], + "score": 1.0, + "content": "except", + "type": "text" + }, + { + "bbox": [ + 135, + 367, + 151, + 379 + ], + "score": 0.87, + "content": "v ^ { ( 0 ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 365, + 214, + 382 + ], + "score": 1.0, + "content": ". Then we have", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16 + }, + { + "type": "interline_equation", + "bbox": [ + 224, + 385, + 385, + 424 + ], + "lines": [ + { + "bbox": [ + 224, + 385, + 385, + 424 + ], + "spans": [ + { + "bbox": [ + 224, + 385, + 385, + 424 + ], + "score": 0.95, + "content": "I _ { l } ( v _ { a } , v _ { b } ; k ) = \\sum _ { j = 1 } ^ { k } \\sum _ { \\mathcal { U } _ { j } ^ { a b } } \\prod _ { i = j } ^ { 1 } \\tilde { a } _ { v ^ { ( i - 1 ) } , v ^ { ( i ) } } ,", + "type": "interline_equation", + "image_path": "66358b7f4c19de3cb2808e29d0090ab9cb36c360c0aba1d2cd35fb54637f75d5.jpg" + } + ] + } + ], + "index": 18.5, + "virtual_lines": [ + { + "bbox": [ + 224, + 385, + 385, + 404.5 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 224, + 404.5, + 385, + 424.0 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 431, + 365, + 444 + ], + "lines": [ + { + "bbox": [ + 105, + 430, + 366, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 430, + 133, + 446 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 433, + 176, + 445 + ], + "score": 0.92, + "content": "\\tilde { a } _ { v ^ { ( i - 1 ) } , v ^ { ( i ) } }", + "type": "inline_equation" + }, + { + "bbox": [ + 176, + 430, + 310, + 446 + ], + "score": 1.0, + "content": "is the normalized weight of edge", + "type": "text" + }, + { + "bbox": [ + 310, + 430, + 362, + 444 + ], + "score": 0.9, + "content": "( v ^ { ( i ) } , v ^ { ( i - 1 ) } )", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 430, + 366, + 446 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 106, + 453, + 506, + 577 + ], + "lines": [ + { + "bbox": [ + 106, + 454, + 506, + 467 + ], + "spans": [ + { + "bbox": [ + 106, + 454, + 506, + 467 + ], + "score": 1.0, + "content": "To intuitively understand this lemma, note that there are two differences between Lemma 1 and", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 465, + 506, + 480 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 227, + 480 + ], + "score": 1.0, + "content": "Lemma 2: (1) In Lemma 1,", + "type": "text" + }, + { + "bbox": [ + 227, + 465, + 279, + 479 + ], + "score": 0.92, + "content": "\\tilde { I } _ { f } ( v _ { a } , v _ { b } ; k )", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 466, + 388, + 480 + ], + "score": 1.0, + "content": "sums over all paths from", + "type": "text" + }, + { + "bbox": [ + 388, + 469, + 399, + 478 + ], + "score": 0.85, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 466, + 413, + 480 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 413, + 468, + 423, + 478 + ], + "score": 0.84, + "content": "v _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 424, + 466, + 466, + 480 + ], + "score": 1.0, + "content": "of length", + "type": "text" + }, + { + "bbox": [ + 466, + 467, + 473, + 477 + ], + "score": 0.79, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 466, + 506, + 480 + ], + "score": 1.0, + "content": ", but in", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 104, + 476, + 506, + 491 + ], + "spans": [ + { + "bbox": [ + 104, + 476, + 149, + 491 + ], + "score": 1.0, + "content": "Lemma 2,", + "type": "text" + }, + { + "bbox": [ + 149, + 478, + 198, + 490 + ], + "score": 0.91, + "content": "I _ { l } ( v _ { a } , v _ { b } ; k )", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 476, + 298, + 491 + ], + "score": 1.0, + "content": "sums over all paths from", + "type": "text" + }, + { + "bbox": [ + 299, + 479, + 309, + 489 + ], + "score": 0.85, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 476, + 320, + 491 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 320, + 479, + 330, + 489 + ], + "score": 0.85, + "content": "v _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 476, + 423, + 491 + ], + "score": 1.0, + "content": "of length no more than", + "type": "text" + }, + { + "bbox": [ + 424, + 478, + 430, + 488 + ], + "score": 0.78, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 430, + 476, + 506, + 491 + ], + "score": 1.0, + "content": ". The is because in", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 488, + 505, + 500 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 129, + 500 + ], + "score": 1.0, + "content": "LPA,", + "type": "text" + }, + { + "bbox": [ + 129, + 490, + 139, + 500 + ], + "score": 0.85, + "content": "v _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 488, + 466, + 500 + ], + "score": 1.0, + "content": "’s label is reset to its initial value after each iteration, which means that the label of", + "type": "text" + }, + { + "bbox": [ + 467, + 490, + 477, + 500 + ], + "score": 0.84, + "content": "v _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 477, + 488, + 505, + 500 + ], + "score": 1.0, + "content": "serves", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 500, + 505, + 511 + ], + "spans": [ + { + "bbox": [ + 105, + 500, + 505, + 511 + ], + "score": 1.0, + "content": "as a constant signal that begins propagating in the graph again and again after each iteration. (2) In", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 510, + 506, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 510, + 293, + 523 + ], + "score": 1.0, + "content": "Lemma 1 we consider all possible paths from", + "type": "text" + }, + { + "bbox": [ + 293, + 513, + 304, + 522 + ], + "score": 0.85, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 510, + 316, + 523 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 317, + 512, + 326, + 522 + ], + "score": 0.84, + "content": "v _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 510, + 506, + 523 + ], + "score": 1.0, + "content": ", but in Lemma 2, the paths are restricted to", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 522, + 505, + 533 + ], + "spans": [ + { + "bbox": [ + 105, + 522, + 505, + 533 + ], + "score": 1.0, + "content": "contain unlabeled nodes only. The reason here is the same as above: Since the labels of labeled nodes", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 533, + 505, + 544 + ], + "spans": [ + { + "bbox": [ + 106, + 533, + 398, + 544 + ], + "score": 1.0, + "content": "are reset to their initial values after each iteration in LPA, the influence of", + "type": "text" + }, + { + "bbox": [ + 398, + 533, + 408, + 543 + ], + "score": 0.86, + "content": "v _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 408, + 533, + 505, + 544 + ], + "score": 1.0, + "content": "’s label will be absorbed", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 544, + 505, + 555 + ], + "spans": [ + { + "bbox": [ + 106, + 544, + 273, + 555 + ], + "score": 1.0, + "content": "in labeled nodes, and the propagation of", + "type": "text" + }, + { + "bbox": [ + 274, + 545, + 284, + 554 + ], + "score": 0.85, + "content": "v _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 284, + 544, + 487, + 555 + ], + "score": 1.0, + "content": "’s label will be cut off at these nodes. Therefore,", + "type": "text" + }, + { + "bbox": [ + 487, + 545, + 497, + 554 + ], + "score": 0.81, + "content": "v _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 497, + 544, + 505, + 555 + ], + "score": 1.0, + "content": "’s", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 104, + 553, + 506, + 568 + ], + "spans": [ + { + "bbox": [ + 104, + 553, + 195, + 568 + ], + "score": 1.0, + "content": "label can only flow to", + "type": "text" + }, + { + "bbox": [ + 195, + 556, + 206, + 565 + ], + "score": 0.85, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 206, + 553, + 506, + 568 + ], + "score": 1.0, + "content": "along the paths with unlabeled nodes only. See Figure 7 for an illustrating", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 566, + 298, + 577 + ], + "spans": [ + { + "bbox": [ + 106, + 566, + 298, + 577 + ], + "score": 1.0, + "content": "example showing the label propagation in LPA.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 106, + 581, + 505, + 633 + ], + "lines": [ + { + "bbox": [ + 105, + 581, + 505, + 594 + ], + "spans": [ + { + "bbox": [ + 105, + 581, + 505, + 594 + ], + "score": 1.0, + "content": "Proof. As mentioned above, a significant difference between LPA and GCN is that all labeled", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 593, + 506, + 626 + ], + "spans": [ + { + "bbox": [ + 106, + 609, + 117, + 618 + ], + "score": 0.81, + "content": "y _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 117, + 593, + 151, + 626 + ], + "score": 1.0, + "content": "des are of node", + "type": "text" + }, + { + "bbox": [ + 151, + 609, + 162, + 618 + ], + "score": 0.84, + "content": "v _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 593, + 243, + 626 + ], + "score": 1.0, + "content": "et to its original labappears not only as", + "type": "text" + }, + { + "bbox": [ + 244, + 604, + 261, + 619 + ], + "score": 0.92, + "content": "y _ { b } ^ { ( 0 ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 593, + 335, + 626 + ], + "score": 1.0, + "content": "fter each iteration, but also as every", + "type": "text" + }, + { + "bbox": [ + 335, + 604, + 352, + 619 + ], + "score": 0.91, + "content": "y _ { b } ^ { ( j ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 593, + 368, + 626 + ], + "score": 1.0, + "content": "PA.for", + "type": "text" + }, + { + "bbox": [ + 369, + 606, + 440, + 618 + ], + "score": 0.91, + "content": "j = 1 , \\cdots , k - 1", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 593, + 506, + 626 + ], + "score": 1.0, + "content": "the initial label. Therefore, the", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 101, + 617, + 468, + 638 + ], + "spans": [ + { + "bbox": [ + 101, + 617, + 156, + 638 + ], + "score": 1.0, + "content": "influence of", + "type": "text" + }, + { + "bbox": [ + 156, + 623, + 166, + 633 + ], + "score": 0.81, + "content": "y _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 617, + 180, + 638 + ], + "score": 1.0, + "content": "on", + "type": "text" + }, + { + "bbox": [ + 180, + 618, + 198, + 633 + ], + "score": 0.93, + "content": "y _ { a } ^ { ( k ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 617, + 319, + 638 + ], + "score": 1.0, + "content": "is the cumulative influence of", + "type": "text" + }, + { + "bbox": [ + 319, + 619, + 335, + 634 + ], + "score": 0.92, + "content": "y _ { b } ^ { ( j ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 336, + 617, + 349, + 638 + ], + "score": 1.0, + "content": "on", + "type": "text" + }, + { + "bbox": [ + 350, + 618, + 367, + 633 + ], + "score": 0.91, + "content": "y _ { a } ^ { ( k ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 367, + 617, + 383, + 638 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 383, + 621, + 462, + 633 + ], + "score": 0.92, + "content": "j = 0 , 1 , \\cdots , k - 1", + "type": "inline_equation" + }, + { + "bbox": [ + 463, + 617, + 468, + 638 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33 + }, + { + "type": "interline_equation", + "bbox": [ + 232, + 640, + 379, + 675 + ], + "lines": [ + { + "bbox": [ + 232, + 640, + 379, + 675 + ], + "spans": [ + { + "bbox": [ + 232, + 640, + 379, + 675 + ], + "score": 0.95, + "content": "I _ { l } ( v _ { a } , v _ { b } ; k ) = \\frac { \\partial y _ { a } ^ { ( k ) } } { \\partial y _ { b } } = \\sum _ { j = 0 } ^ { k - 1 } \\frac { \\partial y _ { a } ^ { ( k ) } } { \\partial y _ { b } ^ { ( j ) } } .", + "type": "interline_equation", + "image_path": "6c539e654413b2254c0e0c5a466767592a274fd50409f5a40d68509719244fe5.jpg" + } + ] + } + ], + "index": 35.5, + "virtual_lines": [ + { + "bbox": [ + 232, + 640, + 379, + 657.5 + ], + "spans": [], + "index": 35 + }, + { + "bbox": [ + 232, + 657.5, + 379, + 675.0 + ], + "spans": [], + "index": 36 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 680, + 299, + 692 + ], + "lines": [ + { + "bbox": [ + 107, + 680, + 300, + 693 + ], + "spans": [ + { + "bbox": [ + 107, + 680, + 300, + 693 + ], + "score": 1.0, + "content": "According to the updating rule of LPA, we have", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37 + }, + { + "type": "interline_equation", + "bbox": [ + 185, + 698, + 427, + 735 + ], + "lines": [ + { + "bbox": [ + 185, + 698, + 427, + 735 + ], + "spans": [ + { + "bbox": [ + 185, + 698, + 427, + 735 + ], + "score": 0.94, + "content": "\\frac { \\partial y _ { a } ^ { ( k ) } } { \\partial y _ { b } ^ { ( j ) } } = \\frac { \\partial \\sum _ { v _ { z } \\in \\mathcal { N } ( v _ { a } ) } \\tilde { a } _ { a z } y _ { z } ^ { ( k - 1 ) } } { \\partial y _ { b } ^ { ( j ) } } = \\sum _ { v _ { z } \\in \\mathcal { N } ( v _ { a } ) } \\tilde { a } _ { a z } \\frac { \\partial y _ { z } ^ { ( k - 1 ) } } { \\partial y _ { b } ^ { ( j ) } } .", + "type": "interline_equation", + "image_path": "425b0ad244a52dadaf319afd5488cb72ea6f4d93e9cbcea02ba2202642fc58c9.jpg" + } + ] + } + ], + "index": 38.5, + "virtual_lines": [ + { + "bbox": [ + 185, + 698, + 427, + 716.5 + ], + "spans": [], + "index": 38 + }, + { + "bbox": [ + 185, + 716.5, + 427, + 735.0 + ], + "spans": [], + "index": 39 + } + ] + } + ], + "page_idx": 11, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 26, + 307, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 308, + 39 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 308, + 39 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 765 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 765 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 14 + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 494, + 280, + 504, + 290 + ], + "lines": [ + { + "bbox": [ + 496, + 281, + 504, + 290 + ], + "spans": [ + { + "bbox": [ + 496, + 281, + 504, + 290 + ], + "score": 1.0, + "content": "\u0003", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 81, + 162, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 163, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 163, + 96 + ], + "score": 1.0, + "content": "APPENDIX", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 108, + 106, + 221, + 118 + ], + "lines": [ + { + "bbox": [ + 106, + 106, + 222, + 118 + ], + "spans": [ + { + "bbox": [ + 106, + 106, + 222, + 118 + ], + "score": 1.0, + "content": "A PROOF OF THEOREM 1", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1, + "bbox_fs": [ + 106, + 106, + 222, + 118 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 127, + 505, + 161 + ], + "lines": [ + { + "bbox": [ + 106, + 127, + 505, + 140 + ], + "spans": [ + { + "bbox": [ + 106, + 127, + 505, + 140 + ], + "score": 1.0, + "content": "Before proving Theorem 1, we first give two lemmas that demonstrate the exact form of feature", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 139, + 504, + 150 + ], + "spans": [ + { + "bbox": [ + 106, + 139, + 504, + 150 + ], + "score": 1.0, + "content": "influence and label influence defined in this paper. The relationship between feature influence and", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 149, + 345, + 162 + ], + "spans": [ + { + "bbox": [ + 105, + 149, + 345, + 162 + ], + "score": 1.0, + "content": "label influence can then be deduced from their exact forms.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3, + "bbox_fs": [ + 105, + 127, + 505, + 162 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 170, + 506, + 207 + ], + "lines": [ + { + "bbox": [ + 105, + 168, + 506, + 183 + ], + "spans": [ + { + "bbox": [ + 105, + 168, + 435, + 183 + ], + "score": 1.0, + "content": "Lemma 1 Assume that the nonlinear activation function in GCN is ReLU. Let", + "type": "text" + }, + { + "bbox": [ + 435, + 170, + 460, + 183 + ], + "score": 0.91, + "content": "\\mathcal { P } _ { k } ^ { a b }", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 168, + 506, + 183 + ], + "score": 1.0, + "content": "be a path", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 107, + 180, + 506, + 196 + ], + "spans": [ + { + "bbox": [ + 107, + 182, + 200, + 195 + ], + "score": 0.89, + "content": "[ v ^ { ( k ) } , v ^ { ( k - 1 ) } , \\cdot \\cdot \\cdot , v ^ { ( 0 ) } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 180, + 242, + 196 + ], + "score": 1.0, + "content": "of length", + "type": "text" + }, + { + "bbox": [ + 243, + 184, + 250, + 194 + ], + "score": 0.74, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 180, + 297, + 196 + ], + "score": 1.0, + "content": "from node", + "type": "text" + }, + { + "bbox": [ + 297, + 185, + 308, + 194 + ], + "score": 0.84, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 180, + 344, + 196 + ], + "score": 1.0, + "content": "to node", + "type": "text" + }, + { + "bbox": [ + 345, + 185, + 355, + 194 + ], + "score": 0.83, + "content": "v _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 355, + 180, + 388, + 196 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 388, + 182, + 433, + 194 + ], + "score": 0.84, + "content": "\\boldsymbol { v } ^ { ( k ) } = \\boldsymbol { v } _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 433, + 180, + 438, + 196 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 439, + 183, + 482, + 194 + ], + "score": 0.85, + "content": "\\boldsymbol { v } ^ { ( 0 ) } = \\boldsymbol { v } _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 482, + 180, + 506, + 196 + ], + "score": 1.0, + "content": ", and", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 107, + 192, + 307, + 210 + ], + "spans": [ + { + "bbox": [ + 107, + 195, + 244, + 208 + ], + "score": 0.61, + "content": "v ^ { ( i - 1 ) } \\in \\mathcal { N } ( v ^ { ( i ) } ) f o r i = k , \\cdots , 1", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 192, + 307, + 210 + ], + "score": 1.0, + "content": ". Then we have", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6, + "bbox_fs": [ + 105, + 168, + 506, + 210 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 231, + 213, + 379, + 251 + ], + "lines": [ + { + "bbox": [ + 231, + 213, + 379, + 251 + ], + "spans": [ + { + "bbox": [ + 231, + 213, + 379, + 251 + ], + "score": 0.94, + "content": "\\tilde { I } _ { f } ( v _ { a } , v _ { b } ; k ) = \\sum _ { \\mathcal { P } _ { k } ^ { a b } } \\prod _ { i = k } ^ { 1 } \\tilde { a } _ { v ^ { ( i - 1 ) } , v ^ { ( i ) } } ,", + "type": "interline_equation", + "image_path": "095a02207e050c7257a5815bc6ac732c2c92d896b6e3b1eb4648435f78acc0b2.jpg" + } + ] + } + ], + "index": 8.5, + "virtual_lines": [ + { + "bbox": [ + 231, + 213, + 379, + 232.0 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 231, + 232.0, + 379, + 251.0 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 257, + 365, + 271 + ], + "lines": [ + { + "bbox": [ + 105, + 256, + 366, + 272 + ], + "spans": [ + { + "bbox": [ + 105, + 256, + 133, + 272 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 259, + 176, + 271 + ], + "score": 0.92, + "content": "\\tilde { a } _ { v ^ { ( i - 1 ) } , v ^ { ( i ) } }", + "type": "inline_equation" + }, + { + "bbox": [ + 176, + 256, + 310, + 272 + ], + "score": 1.0, + "content": "is the normalized weight of edge", + "type": "text" + }, + { + "bbox": [ + 311, + 257, + 362, + 271 + ], + "score": 0.91, + "content": "( v ^ { ( i ) } , v ^ { ( i - 1 ) } )", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 256, + 366, + 272 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10, + "bbox_fs": [ + 105, + 256, + 366, + 272 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 279, + 315, + 291 + ], + "lines": [ + { + "bbox": [ + 106, + 278, + 316, + 293 + ], + "spans": [ + { + "bbox": [ + 106, + 278, + 160, + 293 + ], + "score": 1.0, + "content": "Proof. See", + "type": "text" + }, + { + "bbox": [ + 161, + 280, + 175, + 290 + ], + "score": 0.36, + "content": "\\mathrm { X u }", + "type": "inline_equation" + }, + { + "bbox": [ + 175, + 278, + 316, + 293 + ], + "score": 1.0, + "content": "et al. (2018) for the detailed proof.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11, + "bbox_fs": [ + 106, + 278, + 316, + 293 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 296, + 506, + 330 + ], + "lines": [ + { + "bbox": [ + 105, + 294, + 506, + 310 + ], + "spans": [ + { + "bbox": [ + 105, + 294, + 355, + 310 + ], + "score": 1.0, + "content": "The product term in Eq. (10) is the probability of a given path", + "type": "text" + }, + { + "bbox": [ + 355, + 296, + 380, + 309 + ], + "score": 0.92, + "content": "\\mathcal { P } _ { k } ^ { a b }", + "type": "inline_equation" + }, + { + "bbox": [ + 380, + 294, + 506, + 310 + ], + "score": 1.0, + "content": ". Therefore, the right hand side", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 308, + 505, + 320 + ], + "spans": [ + { + "bbox": [ + 106, + 308, + 388, + 320 + ], + "score": 1.0, + "content": "in Eq. (10) is the sum over probabilities of all possible paths of length", + "type": "text" + }, + { + "bbox": [ + 388, + 308, + 395, + 318 + ], + "score": 0.8, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 395, + 308, + 417, + 320 + ], + "score": 1.0, + "content": "from", + "type": "text" + }, + { + "bbox": [ + 418, + 309, + 429, + 319 + ], + "score": 0.84, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 429, + 308, + 440, + 320 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 441, + 309, + 450, + 319 + ], + "score": 0.83, + "content": "v _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 308, + 505, + 320 + ], + "score": 1.0, + "content": ", which is the", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 318, + 410, + 332 + ], + "spans": [ + { + "bbox": [ + 105, + 318, + 273, + 332 + ], + "score": 1.0, + "content": "probability that a random walk starting at", + "type": "text" + }, + { + "bbox": [ + 274, + 320, + 285, + 330 + ], + "score": 0.85, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 285, + 318, + 316, + 332 + ], + "score": 1.0, + "content": "ends at", + "type": "text" + }, + { + "bbox": [ + 317, + 321, + 326, + 330 + ], + "score": 0.85, + "content": "v _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 318, + 375, + 332 + ], + "score": 1.0, + "content": "after taking", + "type": "text" + }, + { + "bbox": [ + 376, + 319, + 383, + 329 + ], + "score": 0.81, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 318, + 410, + 332 + ], + "score": 1.0, + "content": "steps.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13, + "bbox_fs": [ + 105, + 294, + 506, + 332 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 340, + 505, + 380 + ], + "lines": [ + { + "bbox": [ + 105, + 338, + 506, + 356 + ], + "spans": [ + { + "bbox": [ + 105, + 338, + 167, + 356 + ], + "score": 1.0, + "content": "Lemma 2 Let", + "type": "text" + }, + { + "bbox": [ + 167, + 341, + 192, + 355 + ], + "score": 0.91, + "content": "\\mathcal { U } _ { j } ^ { a b }", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 338, + 235, + 356 + ], + "score": 1.0, + "content": "be a path", + "type": "text" + }, + { + "bbox": [ + 235, + 341, + 327, + 354 + ], + "score": 0.92, + "content": "[ v ^ { ( j ) } , v ^ { ( j - 1 ) } , \\cdot \\cdot \\cdot , v ^ { ( 0 ) } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 338, + 367, + 356 + ], + "score": 1.0, + "content": "of length", + "type": "text" + }, + { + "bbox": [ + 367, + 343, + 373, + 354 + ], + "score": 0.64, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 338, + 418, + 356 + ], + "score": 1.0, + "content": "from node", + "type": "text" + }, + { + "bbox": [ + 419, + 344, + 429, + 353 + ], + "score": 0.84, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 430, + 338, + 464, + 356 + ], + "score": 1.0, + "content": "to node", + "type": "text" + }, + { + "bbox": [ + 464, + 344, + 474, + 353 + ], + "score": 0.82, + "content": "v _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 338, + 506, + 356 + ], + "score": 1.0, + "content": ", where", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 107, + 352, + 506, + 370 + ], + "spans": [ + { + "bbox": [ + 107, + 354, + 146, + 367 + ], + "score": 0.76, + "content": "\\boldsymbol { v } ^ { ( j ) } = \\boldsymbol { v } _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 352, + 150, + 370 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 150, + 355, + 189, + 367 + ], + "score": 0.65, + "content": "v ^ { ( 0 ) } = v _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 352, + 193, + 370 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 193, + 354, + 265, + 368 + ], + "score": 0.7, + "content": "v ^ { ( i - 1 ) } \\in \\mathcal { N } ( v ^ { ( i ) } ) .", + "type": "inline_equation" + }, + { + "bbox": [ + 265, + 352, + 278, + 370 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 278, + 356, + 329, + 367 + ], + "score": 0.4, + "content": "i = j , \\cdots , 1", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 352, + 506, + 370 + ], + "score": 1.0, + "content": ", and all nodes along the path are unlabeled", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 365, + 214, + 382 + ], + "spans": [ + { + "bbox": [ + 105, + 365, + 134, + 382 + ], + "score": 1.0, + "content": "except", + "type": "text" + }, + { + "bbox": [ + 135, + 367, + 151, + 379 + ], + "score": 0.87, + "content": "v ^ { ( 0 ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 365, + 214, + 382 + ], + "score": 1.0, + "content": ". Then we have", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16, + "bbox_fs": [ + 105, + 338, + 506, + 382 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 224, + 385, + 385, + 424 + ], + "lines": [ + { + "bbox": [ + 224, + 385, + 385, + 424 + ], + "spans": [ + { + "bbox": [ + 224, + 385, + 385, + 424 + ], + "score": 0.95, + "content": "I _ { l } ( v _ { a } , v _ { b } ; k ) = \\sum _ { j = 1 } ^ { k } \\sum _ { \\mathcal { U } _ { j } ^ { a b } } \\prod _ { i = j } ^ { 1 } \\tilde { a } _ { v ^ { ( i - 1 ) } , v ^ { ( i ) } } ,", + "type": "interline_equation", + "image_path": "66358b7f4c19de3cb2808e29d0090ab9cb36c360c0aba1d2cd35fb54637f75d5.jpg" + } + ] + } + ], + "index": 18.5, + "virtual_lines": [ + { + "bbox": [ + 224, + 385, + 385, + 404.5 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 224, + 404.5, + 385, + 424.0 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 431, + 365, + 444 + ], + "lines": [ + { + "bbox": [ + 105, + 430, + 366, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 430, + 133, + 446 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 433, + 176, + 445 + ], + "score": 0.92, + "content": "\\tilde { a } _ { v ^ { ( i - 1 ) } , v ^ { ( i ) } }", + "type": "inline_equation" + }, + { + "bbox": [ + 176, + 430, + 310, + 446 + ], + "score": 1.0, + "content": "is the normalized weight of edge", + "type": "text" + }, + { + "bbox": [ + 310, + 430, + 362, + 444 + ], + "score": 0.9, + "content": "( v ^ { ( i ) } , v ^ { ( i - 1 ) } )", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 430, + 366, + 446 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20, + "bbox_fs": [ + 105, + 430, + 366, + 446 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 453, + 506, + 577 + ], + "lines": [ + { + "bbox": [ + 106, + 454, + 506, + 467 + ], + "spans": [ + { + "bbox": [ + 106, + 454, + 506, + 467 + ], + "score": 1.0, + "content": "To intuitively understand this lemma, note that there are two differences between Lemma 1 and", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 465, + 506, + 480 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 227, + 480 + ], + "score": 1.0, + "content": "Lemma 2: (1) In Lemma 1,", + "type": "text" + }, + { + "bbox": [ + 227, + 465, + 279, + 479 + ], + "score": 0.92, + "content": "\\tilde { I } _ { f } ( v _ { a } , v _ { b } ; k )", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 466, + 388, + 480 + ], + "score": 1.0, + "content": "sums over all paths from", + "type": "text" + }, + { + "bbox": [ + 388, + 469, + 399, + 478 + ], + "score": 0.85, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 466, + 413, + 480 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 413, + 468, + 423, + 478 + ], + "score": 0.84, + "content": "v _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 424, + 466, + 466, + 480 + ], + "score": 1.0, + "content": "of length", + "type": "text" + }, + { + "bbox": [ + 466, + 467, + 473, + 477 + ], + "score": 0.79, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 466, + 506, + 480 + ], + "score": 1.0, + "content": ", but in", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 104, + 476, + 506, + 491 + ], + "spans": [ + { + "bbox": [ + 104, + 476, + 149, + 491 + ], + "score": 1.0, + "content": "Lemma 2,", + "type": "text" + }, + { + "bbox": [ + 149, + 478, + 198, + 490 + ], + "score": 0.91, + "content": "I _ { l } ( v _ { a } , v _ { b } ; k )", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 476, + 298, + 491 + ], + "score": 1.0, + "content": "sums over all paths from", + "type": "text" + }, + { + "bbox": [ + 299, + 479, + 309, + 489 + ], + "score": 0.85, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 476, + 320, + 491 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 320, + 479, + 330, + 489 + ], + "score": 0.85, + "content": "v _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 476, + 423, + 491 + ], + "score": 1.0, + "content": "of length no more than", + "type": "text" + }, + { + "bbox": [ + 424, + 478, + 430, + 488 + ], + "score": 0.78, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 430, + 476, + 506, + 491 + ], + "score": 1.0, + "content": ". The is because in", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 488, + 505, + 500 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 129, + 500 + ], + "score": 1.0, + "content": "LPA,", + "type": "text" + }, + { + "bbox": [ + 129, + 490, + 139, + 500 + ], + "score": 0.85, + "content": "v _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 488, + 466, + 500 + ], + "score": 1.0, + "content": "’s label is reset to its initial value after each iteration, which means that the label of", + "type": "text" + }, + { + "bbox": [ + 467, + 490, + 477, + 500 + ], + "score": 0.84, + "content": "v _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 477, + 488, + 505, + 500 + ], + "score": 1.0, + "content": "serves", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 500, + 505, + 511 + ], + "spans": [ + { + "bbox": [ + 105, + 500, + 505, + 511 + ], + "score": 1.0, + "content": "as a constant signal that begins propagating in the graph again and again after each iteration. (2) In", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 510, + 506, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 510, + 293, + 523 + ], + "score": 1.0, + "content": "Lemma 1 we consider all possible paths from", + "type": "text" + }, + { + "bbox": [ + 293, + 513, + 304, + 522 + ], + "score": 0.85, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 510, + 316, + 523 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 317, + 512, + 326, + 522 + ], + "score": 0.84, + "content": "v _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 510, + 506, + 523 + ], + "score": 1.0, + "content": ", but in Lemma 2, the paths are restricted to", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 522, + 505, + 533 + ], + "spans": [ + { + "bbox": [ + 105, + 522, + 505, + 533 + ], + "score": 1.0, + "content": "contain unlabeled nodes only. The reason here is the same as above: Since the labels of labeled nodes", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 533, + 505, + 544 + ], + "spans": [ + { + "bbox": [ + 106, + 533, + 398, + 544 + ], + "score": 1.0, + "content": "are reset to their initial values after each iteration in LPA, the influence of", + "type": "text" + }, + { + "bbox": [ + 398, + 533, + 408, + 543 + ], + "score": 0.86, + "content": "v _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 408, + 533, + 505, + 544 + ], + "score": 1.0, + "content": "’s label will be absorbed", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 544, + 505, + 555 + ], + "spans": [ + { + "bbox": [ + 106, + 544, + 273, + 555 + ], + "score": 1.0, + "content": "in labeled nodes, and the propagation of", + "type": "text" + }, + { + "bbox": [ + 274, + 545, + 284, + 554 + ], + "score": 0.85, + "content": "v _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 284, + 544, + 487, + 555 + ], + "score": 1.0, + "content": "’s label will be cut off at these nodes. Therefore,", + "type": "text" + }, + { + "bbox": [ + 487, + 545, + 497, + 554 + ], + "score": 0.81, + "content": "v _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 497, + 544, + 505, + 555 + ], + "score": 1.0, + "content": "’s", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 104, + 553, + 506, + 568 + ], + "spans": [ + { + "bbox": [ + 104, + 553, + 195, + 568 + ], + "score": 1.0, + "content": "label can only flow to", + "type": "text" + }, + { + "bbox": [ + 195, + 556, + 206, + 565 + ], + "score": 0.85, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 206, + 553, + 506, + 568 + ], + "score": 1.0, + "content": "along the paths with unlabeled nodes only. See Figure 7 for an illustrating", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 566, + 298, + 577 + ], + "spans": [ + { + "bbox": [ + 106, + 566, + 298, + 577 + ], + "score": 1.0, + "content": "example showing the label propagation in LPA.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 26, + "bbox_fs": [ + 104, + 454, + 506, + 577 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 581, + 505, + 633 + ], + "lines": [ + { + "bbox": [ + 105, + 581, + 505, + 594 + ], + "spans": [ + { + "bbox": [ + 105, + 581, + 505, + 594 + ], + "score": 1.0, + "content": "Proof. As mentioned above, a significant difference between LPA and GCN is that all labeled", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 593, + 506, + 626 + ], + "spans": [ + { + "bbox": [ + 106, + 609, + 117, + 618 + ], + "score": 0.81, + "content": "y _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 117, + 593, + 151, + 626 + ], + "score": 1.0, + "content": "des are of node", + "type": "text" + }, + { + "bbox": [ + 151, + 609, + 162, + 618 + ], + "score": 0.84, + "content": "v _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 593, + 243, + 626 + ], + "score": 1.0, + "content": "et to its original labappears not only as", + "type": "text" + }, + { + "bbox": [ + 244, + 604, + 261, + 619 + ], + "score": 0.92, + "content": "y _ { b } ^ { ( 0 ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 593, + 335, + 626 + ], + "score": 1.0, + "content": "fter each iteration, but also as every", + "type": "text" + }, + { + "bbox": [ + 335, + 604, + 352, + 619 + ], + "score": 0.91, + "content": "y _ { b } ^ { ( j ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 593, + 368, + 626 + ], + "score": 1.0, + "content": "PA.for", + "type": "text" + }, + { + "bbox": [ + 369, + 606, + 440, + 618 + ], + "score": 0.91, + "content": "j = 1 , \\cdots , k - 1", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 593, + 506, + 626 + ], + "score": 1.0, + "content": "the initial label. Therefore, the", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 101, + 617, + 468, + 638 + ], + "spans": [ + { + "bbox": [ + 101, + 617, + 156, + 638 + ], + "score": 1.0, + "content": "influence of", + "type": "text" + }, + { + "bbox": [ + 156, + 623, + 166, + 633 + ], + "score": 0.81, + "content": "y _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 617, + 180, + 638 + ], + "score": 1.0, + "content": "on", + "type": "text" + }, + { + "bbox": [ + 180, + 618, + 198, + 633 + ], + "score": 0.93, + "content": "y _ { a } ^ { ( k ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 617, + 319, + 638 + ], + "score": 1.0, + "content": "is the cumulative influence of", + "type": "text" + }, + { + "bbox": [ + 319, + 619, + 335, + 634 + ], + "score": 0.92, + "content": "y _ { b } ^ { ( j ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 336, + 617, + 349, + 638 + ], + "score": 1.0, + "content": "on", + "type": "text" + }, + { + "bbox": [ + 350, + 618, + 367, + 633 + ], + "score": 0.91, + "content": "y _ { a } ^ { ( k ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 367, + 617, + 383, + 638 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 383, + 621, + 462, + 633 + ], + "score": 0.92, + "content": "j = 0 , 1 , \\cdots , k - 1", + "type": "inline_equation" + }, + { + "bbox": [ + 463, + 617, + 468, + 638 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33, + "bbox_fs": [ + 101, + 581, + 506, + 638 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 232, + 640, + 379, + 675 + ], + "lines": [ + { + "bbox": [ + 232, + 640, + 379, + 675 + ], + "spans": [ + { + "bbox": [ + 232, + 640, + 379, + 675 + ], + "score": 0.95, + "content": "I _ { l } ( v _ { a } , v _ { b } ; k ) = \\frac { \\partial y _ { a } ^ { ( k ) } } { \\partial y _ { b } } = \\sum _ { j = 0 } ^ { k - 1 } \\frac { \\partial y _ { a } ^ { ( k ) } } { \\partial y _ { b } ^ { ( j ) } } .", + "type": "interline_equation", + "image_path": "6c539e654413b2254c0e0c5a466767592a274fd50409f5a40d68509719244fe5.jpg" + } + ] + } + ], + "index": 35.5, + "virtual_lines": [ + { + "bbox": [ + 232, + 640, + 379, + 657.5 + ], + "spans": [], + "index": 35 + }, + { + "bbox": [ + 232, + 657.5, + 379, + 675.0 + ], + "spans": [], + "index": 36 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 680, + 299, + 692 + ], + "lines": [ + { + "bbox": [ + 107, + 680, + 300, + 693 + ], + "spans": [ + { + "bbox": [ + 107, + 680, + 300, + 693 + ], + "score": 1.0, + "content": "According to the updating rule of LPA, we have", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37, + "bbox_fs": [ + 107, + 680, + 300, + 693 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 185, + 698, + 427, + 735 + ], + "lines": [ + { + "bbox": [ + 185, + 698, + 427, + 735 + ], + "spans": [ + { + "bbox": [ + 185, + 698, + 427, + 735 + ], + "score": 0.94, + "content": "\\frac { \\partial y _ { a } ^ { ( k ) } } { \\partial y _ { b } ^ { ( j ) } } = \\frac { \\partial \\sum _ { v _ { z } \\in \\mathcal { N } ( v _ { a } ) } \\tilde { a } _ { a z } y _ { z } ^ { ( k - 1 ) } } { \\partial y _ { b } ^ { ( j ) } } = \\sum _ { v _ { z } \\in \\mathcal { N } ( v _ { a } ) } \\tilde { a } _ { a z } \\frac { \\partial y _ { z } ^ { ( k - 1 ) } } { \\partial y _ { b } ^ { ( j ) } } .", + "type": "interline_equation", + "image_path": "425b0ad244a52dadaf319afd5488cb72ea6f4d93e9cbcea02ba2202642fc58c9.jpg" + } + ] + } + ], + "index": 38.5, + "virtual_lines": [ + { + "bbox": [ + 185, + 698, + 427, + 716.5 + ], + "spans": [], + "index": 38 + }, + { + "bbox": [ + 185, + 716.5, + 427, + 735.0 + ], + "spans": [], + "index": 39 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 110, + 83, + 504, + 172 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 110, + 83, + 504, + 172 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 110, + 83, + 504, + 172 + ], + "spans": [ + { + "bbox": [ + 110, + 83, + 504, + 172 + ], + "score": 0.938, + "type": "image", + "image_path": "a8be6adfe9b29716610210ac6cd406194bbbff6b169ed3ea15aab2b7784c6266.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 110, + 83, + 504, + 112.66666666666667 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 110, + 112.66666666666667, + 504, + 142.33333333333334 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 110, + 142.33333333333334, + 504, + 172.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 180, + 505, + 280 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 181, + 505, + 192 + ], + "spans": [ + { + "bbox": [ + 106, + 181, + 505, + 192 + ], + "score": 1.0, + "content": "Figure 7: An illustrating example of label propagation in LPA. Suppose labels are propagated for", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 191, + 506, + 204 + ], + "spans": [ + { + "bbox": [ + 105, + 191, + 506, + 204 + ], + "score": 1.0, + "content": "three iterations, and no self-loop exists. Blue nodes are labeled while white nodes are unlabeled. (a)", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 202, + 506, + 215 + ], + "spans": [ + { + "bbox": [ + 106, + 203, + 117, + 213 + ], + "score": 0.84, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 118, + 202, + 204, + 215 + ], + "score": 1.0, + "content": "’s label propagates to", + "type": "text" + }, + { + "bbox": [ + 204, + 204, + 215, + 213 + ], + "score": 0.84, + "content": "v _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 202, + 402, + 215 + ], + "score": 1.0, + "content": "(yellow arrows). Note that the propagation of", + "type": "text" + }, + { + "bbox": [ + 403, + 204, + 414, + 213 + ], + "score": 0.86, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 414, + 202, + 454, + 215 + ], + "score": 1.0, + "content": "’s label to", + "type": "text" + }, + { + "bbox": [ + 455, + 204, + 465, + 213 + ], + "score": 0.84, + "content": "v _ { 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 465, + 202, + 506, + 215 + ], + "score": 1.0, + "content": "is cut off", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 212, + 505, + 227 + ], + "spans": [ + { + "bbox": [ + 105, + 212, + 129, + 227 + ], + "score": 1.0, + "content": "since", + "type": "text" + }, + { + "bbox": [ + 129, + 215, + 140, + 224 + ], + "score": 0.85, + "content": "v _ { 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 212, + 243, + 227 + ], + "score": 1.0, + "content": "is labeled thus absorbing", + "type": "text" + }, + { + "bbox": [ + 243, + 214, + 254, + 224 + ], + "score": 0.82, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 212, + 302, + 227 + ], + "score": 1.0, + "content": "’s label. (b)", + "type": "text" + }, + { + "bbox": [ + 302, + 214, + 313, + 224 + ], + "score": 0.85, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 212, + 417, + 227 + ], + "score": 1.0, + "content": "’s label that propagated to", + "type": "text" + }, + { + "bbox": [ + 418, + 215, + 428, + 224 + ], + "score": 0.85, + "content": "v _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 429, + 212, + 505, + 227 + ], + "score": 1.0, + "content": "further propagates", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 224, + 506, + 237 + ], + "spans": [ + { + "bbox": [ + 105, + 224, + 117, + 237 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 117, + 226, + 127, + 235 + ], + "score": 0.86, + "content": "v _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 128, + 224, + 145, + 237 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 145, + 225, + 155, + 235 + ], + "score": 0.85, + "content": "v _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 156, + 224, + 275, + 237 + ], + "score": 1.0, + "content": "(yellow arrows). Meanwhile,", + "type": "text" + }, + { + "bbox": [ + 275, + 225, + 286, + 235 + ], + "score": 0.86, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 224, + 506, + 237 + ], + "score": 1.0, + "content": "’s label is reset to its initial value then propagates from", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 235, + 506, + 248 + ], + "spans": [ + { + "bbox": [ + 106, + 237, + 117, + 246 + ], + "score": 0.85, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 118, + 235, + 506, + 248 + ], + "score": 1.0, + "content": "again (green arrows). (c) Label propagation in iteration 3. Purple arrows denote the propagation", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 246, + 505, + 258 + ], + "spans": [ + { + "bbox": [ + 106, + 246, + 117, + 258 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 118, + 247, + 128, + 257 + ], + "score": 0.87, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 129, + 246, + 213, + 258 + ], + "score": 1.0, + "content": "’s label starting from", + "type": "text" + }, + { + "bbox": [ + 213, + 248, + 224, + 257 + ], + "score": 0.86, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 224, + 246, + 505, + 258 + ], + "score": 1.0, + "content": "for the third time. (d) All possible paths of length no more than three", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 256, + 506, + 270 + ], + "spans": [ + { + "bbox": [ + 105, + 256, + 128, + 270 + ], + "score": 1.0, + "content": "from", + "type": "text" + }, + { + "bbox": [ + 129, + 259, + 140, + 268 + ], + "score": 0.86, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 256, + 151, + 270 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 151, + 259, + 162, + 268 + ], + "score": 0.85, + "content": "v _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 256, + 482, + 270 + ], + "score": 1.0, + "content": "containing unlabeled nodes only. Note that there is no path of length one from", + "type": "text" + }, + { + "bbox": [ + 482, + 259, + 493, + 268 + ], + "score": 0.84, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 493, + 256, + 506, + 270 + ], + "score": 1.0, + "content": "to", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 268, + 121, + 282 + ], + "spans": [ + { + "bbox": [ + 106, + 270, + 116, + 279 + ], + "score": 0.82, + "content": "v _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 117, + 268, + 121, + 282 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 7 + } + ], + "index": 4.0 + }, + { + "type": "text", + "bbox": [ + 106, + 297, + 506, + 370 + ], + "lines": [ + { + "bbox": [ + 105, + 294, + 509, + 322 + ], + "spans": [ + { + "bbox": [ + 105, + 299, + 260, + 314 + ], + "score": 1.0, + "content": "In the above equation, the derivative", + "type": "text" + }, + { + "bbox": [ + 257, + 294, + 286, + 311 + ], + "score": 1.0, + "content": "∂y(k)a", + "type": "text" + }, + { + "bbox": [ + 261, + 297, + 282, + 319 + ], + "score": 0.93, + "content": "\\frac { \\partial y _ { a } ^ { ( k ) } } { \\partial y _ { b } ^ { ( j ) } }", + "type": "inline_equation" + }, + { + "bbox": [ + 283, + 300, + 470, + 315 + ], + "score": 1.0, + "content": "is decomposed into the weighted average of", + "type": "text" + }, + { + "bbox": [ + 467, + 294, + 504, + 309 + ], + "score": 1.0, + "content": "∂y(k−1)z", + "type": "text" + }, + { + "bbox": [ + 471, + 304, + 509, + 322 + ], + "score": 1.0, + "content": "∂ y ( j )b ,", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 104, + 316, + 506, + 336 + ], + "spans": [ + { + "bbox": [ + 104, + 316, + 133, + 336 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 323, + 145, + 332 + ], + "score": 0.84, + "content": "v _ { z }", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 316, + 252, + 336 + ], + "score": 1.0, + "content": "traverses all neighbors of", + "type": "text" + }, + { + "bbox": [ + 252, + 322, + 263, + 332 + ], + "score": 0.87, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 263, + 316, + 311, + 336 + ], + "score": 1.0, + "content": ". For those", + "type": "text" + }, + { + "bbox": [ + 311, + 322, + 322, + 332 + ], + "score": 0.85, + "content": "v _ { z }", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 316, + 433, + 336 + ], + "score": 1.0, + "content": "’s that are initially labeled,", + "type": "text" + }, + { + "bbox": [ + 433, + 318, + 460, + 333 + ], + "score": 0.92, + "content": "y _ { z } ^ { ( k - 1 ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 316, + 506, + 336 + ], + "score": 1.0, + "content": "is reset to", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 103, + 327, + 508, + 351 + ], + "spans": [ + { + "bbox": [ + 103, + 327, + 484, + 351 + ], + "score": 1.0, + "content": "their initial labels in each iteration. Therefore, they are always constant and independent of", + "type": "text" + }, + { + "bbox": [ + 484, + 332, + 501, + 347 + ], + "score": 0.92, + "content": "y _ { b } ^ { ( j ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 327, + 508, + 351 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 101, + 340, + 506, + 368 + ], + "spans": [ + { + "bbox": [ + 101, + 340, + 248, + 368 + ], + "score": 1.0, + "content": "meaning that their derivatives w.r.t.", + "type": "text" + }, + { + "bbox": [ + 249, + 346, + 265, + 361 + ], + "score": 0.92, + "content": "y _ { b } ^ { ( j ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 340, + 484, + 368 + ], + "score": 1.0, + "content": "are zero. So we only need to consider the terms where", + "type": "text" + }, + { + "bbox": [ + 484, + 351, + 495, + 360 + ], + "score": 0.85, + "content": "v _ { z }", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 340, + 506, + 368 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13.5 + }, + { + "type": "interline_equation", + "bbox": [ + 231, + 367, + 380, + 402 + ], + "lines": [ + { + "bbox": [ + 231, + 367, + 380, + 402 + ], + "spans": [ + { + "bbox": [ + 231, + 367, + 380, + 402 + ], + "score": 0.94, + "content": "\\frac { \\partial y _ { a } ^ { ( k ) } } { \\partial y _ { b } ^ { ( j ) } } = \\sum _ { v _ { z } \\in \\mathcal { N } \\left( v _ { a } \\right) , z > m } \\tilde { a } _ { a z } \\frac { \\partial y _ { z } ^ { ( k - 1 ) } } { \\partial y _ { b } ^ { ( j ) } } ,", + "type": "interline_equation", + "image_path": "f3863be58ec7591fb169d6ddd57254b9d003dee2758e3ea4eac6b6877734a3ac.jpg" + } + ] + } + ], + "index": 16.5, + "virtual_lines": [ + { + "bbox": [ + 231, + 367, + 380, + 384.5 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 231, + 384.5, + 380, + 402.0 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 403, + 506, + 484 + ], + "lines": [ + { + "bbox": [ + 105, + 403, + 506, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 403, + 133, + 416 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 406, + 164, + 414 + ], + "score": 0.88, + "content": "z > m", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 403, + 193, + 416 + ], + "score": 1.0, + "content": "means", + "type": "text" + }, + { + "bbox": [ + 194, + 406, + 204, + 415 + ], + "score": 0.85, + "content": "v _ { z }", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 403, + 506, + 416 + ], + "score": 1.0, + "content": "is unlabeled. To intuitively understand Eq. (14), one can imagine that we", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 415, + 506, + 427 + ], + "spans": [ + { + "bbox": [ + 105, + 415, + 279, + 427 + ], + "score": 1.0, + "content": "perform a random walk starting from node", + "type": "text" + }, + { + "bbox": [ + 279, + 416, + 290, + 426 + ], + "score": 0.87, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 290, + 415, + 506, + 427 + ], + "score": 1.0, + "content": "for one step, where the “transition probability” is the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 425, + 506, + 438 + ], + "spans": [ + { + "bbox": [ + 106, + 425, + 161, + 438 + ], + "score": 1.0, + "content": "edge weights", + "type": "text" + }, + { + "bbox": [ + 162, + 426, + 168, + 436 + ], + "score": 0.78, + "content": "\\tilde { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 425, + 506, + 438 + ], + "score": 1.0, + "content": ", and all nodes in this random walk are restricted to unlabeled nodes only. Note that", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 102, + 432, + 506, + 456 + ], + "spans": [ + { + "bbox": [ + 102, + 432, + 242, + 456 + ], + "score": 1.0, + "content": "we can further decompose every", + "type": "text" + }, + { + "bbox": [ + 242, + 437, + 269, + 451 + ], + "score": 0.92, + "content": "y _ { z } ^ { ( k - 1 ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 270, + 432, + 475, + 456 + ], + "score": 1.0, + "content": "in Eq. (14) in the way similar to what we do for", + "type": "text" + }, + { + "bbox": [ + 475, + 437, + 493, + 451 + ], + "score": 0.92, + "content": "y _ { a } ^ { ( k ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 493, + 432, + 506, + 456 + ], + "score": 1.0, + "content": "in", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 104, + 449, + 506, + 464 + ], + "spans": [ + { + "bbox": [ + 104, + 449, + 436, + 464 + ], + "score": 1.0, + "content": "Eq. (13). So the expansion in Eq. (14) can be performed iteratively until the index", + "type": "text" + }, + { + "bbox": [ + 437, + 451, + 443, + 460 + ], + "score": 0.8, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 449, + 495, + 464 + ], + "score": 1.0, + "content": "decreases to", + "type": "text" + }, + { + "bbox": [ + 496, + 451, + 501, + 462 + ], + "score": 0.77, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 449, + 506, + 464 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 460, + 506, + 474 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 360, + 474 + ], + "score": 1.0, + "content": "This is equivalent to performing all possible random walks for", + "type": "text" + }, + { + "bbox": [ + 360, + 462, + 384, + 473 + ], + "score": 0.92, + "content": "k - j", + "type": "inline_equation" + }, + { + "bbox": [ + 384, + 460, + 463, + 474 + ], + "score": 1.0, + "content": "steps starting from", + "type": "text" + }, + { + "bbox": [ + 464, + 463, + 474, + 472 + ], + "score": 0.83, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 460, + 506, + 474 + ], + "score": 1.0, + "content": ", where", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 473, + 416, + 484 + ], + "spans": [ + { + "bbox": [ + 106, + 473, + 416, + 484 + ], + "score": 1.0, + "content": "all nodes but the last in the random walk are restricted to be unlabeled nodes:", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 21 + }, + { + "type": "interline_equation", + "bbox": [ + 207, + 485, + 403, + 525 + ], + "lines": [ + { + "bbox": [ + 207, + 485, + 403, + 525 + ], + "spans": [ + { + "bbox": [ + 207, + 485, + 403, + 525 + ], + "score": 0.94, + "content": "\\frac { \\partial y _ { a } ^ { ( k ) } } { \\partial y _ { b } ^ { ( j ) } } = \\sum _ { v _ { z } \\in \\mathcal { V } } \\sum _ { \\mathcal { U } _ { k - j } ^ { a \\to z } } \\left( \\prod _ { i = k - j } ^ { 1 } \\tilde { a } _ { v ^ { ( i - 1 ) } , v ^ { ( i ) } } \\right) \\frac { \\partial y _ { z } ^ { ( j ) } } { \\partial y _ { b } ^ { ( j ) } } ,", + "type": "interline_equation", + "image_path": "dfc8dc352c414ce449db39bd4cff4778a1598b2624c1ad6b4931454c6ce26c85.jpg" + } + ] + } + ], + "index": 25.5, + "virtual_lines": [ + { + "bbox": [ + 207, + 485, + 403, + 505.0 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 207, + 505.0, + 403, + 525.0 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 527, + 506, + 613 + ], + "lines": [ + { + "bbox": [ + 105, + 526, + 506, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 526, + 133, + 542 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 530, + 144, + 540 + ], + "score": 0.85, + "content": "v _ { z }", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 526, + 389, + 542 + ], + "score": 1.0, + "content": "in the first summation term is the end node of a random walk,", + "type": "text" + }, + { + "bbox": [ + 389, + 528, + 415, + 542 + ], + "score": 0.91, + "content": "\\mathcal { U } _ { k - j } ^ { a z }", + "type": "inline_equation" + }, + { + "bbox": [ + 415, + 526, + 506, + 542 + ], + "score": 1.0, + "content": "in the second summa-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 541, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 106, + 541, + 296, + 552 + ], + "score": 1.0, + "content": "tion term is an unlabeled-nodes-only path from", + "type": "text" + }, + { + "bbox": [ + 297, + 542, + 307, + 551 + ], + "score": 0.85, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 307, + 541, + 319, + 552 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 319, + 542, + 329, + 551 + ], + "score": 0.81, + "content": "v _ { z }", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 541, + 369, + 552 + ], + "score": 1.0, + "content": "of length", + "type": "text" + }, + { + "bbox": [ + 369, + 541, + 392, + 552 + ], + "score": 0.89, + "content": "k - j", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 541, + 505, + 552 + ], + "score": 1.0, + "content": ", and the product term is the", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 551, + 504, + 576 + ], + "spans": [ + { + "bbox": [ + 105, + 554, + 214, + 569 + ], + "score": 1.0, + "content": "probability of a given path", + "type": "text" + }, + { + "bbox": [ + 214, + 555, + 239, + 569 + ], + "score": 0.92, + "content": "\\mathcal { U } _ { k - j } ^ { a z }", + "type": "inline_equation" + }, + { + "bbox": [ + 240, + 554, + 335, + 569 + ], + "score": 1.0, + "content": ". Consider the last term", + "type": "text" + }, + { + "bbox": [ + 331, + 558, + 359, + 576 + ], + "score": 1.0, + "content": "∂ y(j)b", + "type": "text" + }, + { + "bbox": [ + 356, + 555, + 464, + 567 + ], + "score": 1.0, + "content": "in Eq. (15). We know that", + "type": "text" + }, + { + "bbox": [ + 464, + 551, + 504, + 573 + ], + "score": 0.94, + "content": "\\begin{array} { r } { \\frac { \\partial y _ { z } ^ { ( j ) } } { \\partial y _ { b } ^ { ( j ) } } = 0 } \\end{array}", + "type": "inline_equation" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 572, + 505, + 593 + ], + "spans": [ + { + "bbox": [ + 105, + 575, + 134, + 588 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 135, + 575, + 161, + 588 + ], + "score": 0.89, + "content": "z \\neq b", + "type": "inline_equation" + }, + { + "bbox": [ + 161, + 575, + 181, + 588 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 181, + 572, + 223, + 593 + ], + "score": 0.94, + "content": "\\begin{array} { r } { \\frac { \\partial y _ { z } ^ { ( j ) } } { \\partial y _ { b } ^ { ( j ) } } = 1 } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 576, + 239, + 588 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 240, + 576, + 266, + 586 + ], + "score": 0.89, + "content": "z = b", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 576, + 505, + 588 + ], + "score": 1.0, + "content": ", which means that only those random-walk paths that end", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 592, + 505, + 604 + ], + "spans": [ + { + "bbox": [ + 105, + 592, + 147, + 604 + ], + "score": 1.0, + "content": "exactly at", + "type": "text" + }, + { + "bbox": [ + 148, + 594, + 158, + 603 + ], + "score": 0.84, + "content": "v _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 592, + 235, + 604 + ], + "score": 1.0, + "content": "(i.e., the end node", + "type": "text" + }, + { + "bbox": [ + 235, + 594, + 245, + 603 + ], + "score": 0.84, + "content": "v _ { z }", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 592, + 288, + 604 + ], + "score": 1.0, + "content": "is exactly", + "type": "text" + }, + { + "bbox": [ + 288, + 594, + 298, + 603 + ], + "score": 0.8, + "content": "v _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 592, + 505, + 604 + ], + "score": 1.0, + "content": ") count for the computation in Eq. (15). Therefore,", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 601, + 143, + 615 + ], + "spans": [ + { + "bbox": [ + 106, + 601, + 143, + 615 + ], + "score": 1.0, + "content": "we have", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 29.5 + }, + { + "type": "interline_equation", + "bbox": [ + 239, + 610, + 371, + 649 + ], + "lines": [ + { + "bbox": [ + 239, + 610, + 371, + 649 + ], + "spans": [ + { + "bbox": [ + 239, + 610, + 371, + 649 + ], + "score": 0.94, + "content": "{ \\frac { \\partial y _ { a } ^ { ( k ) } } { \\partial y _ { b } ^ { ( j ) } } } = \\sum _ { \\mathcal { U } _ { k - j } ^ { a b } } \\prod _ { i = k - j } ^ { 1 } \\tilde { a } _ { v ^ { ( i - 1 ) } , v ^ { ( i ) } } ,", + "type": "interline_equation", + "image_path": "a229afa616ea0dc510690ef83f957856f2db325c4b613a2362f2cb3bf408aa5a.jpg" + } + ] + } + ], + "index": 33.5, + "virtual_lines": [ + { + "bbox": [ + 239, + 610, + 371, + 629.5 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 239, + 629.5, + 371, + 649.0 + ], + "spans": [], + "index": 34 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 651, + 505, + 676 + ], + "lines": [ + { + "bbox": [ + 103, + 646, + 501, + 671 + ], + "spans": [ + { + "bbox": [ + 103, + 646, + 133, + 671 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 651, + 159, + 665 + ], + "score": 0.93, + "content": "\\mathcal { U } _ { k - j } ^ { a b }", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 646, + 222, + 671 + ], + "score": 1.0, + "content": "is a path from", + "type": "text" + }, + { + "bbox": [ + 223, + 654, + 233, + 663 + ], + "score": 0.84, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 646, + 246, + 671 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 247, + 654, + 257, + 663 + ], + "score": 0.85, + "content": "v _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 646, + 299, + 671 + ], + "score": 1.0, + "content": "of length", + "type": "text" + }, + { + "bbox": [ + 299, + 652, + 324, + 663 + ], + "score": 0.92, + "content": "k - j", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 646, + 491, + 671 + ], + "score": 1.0, + "content": "containing only unlabeled nodes except", + "type": "text" + }, + { + "bbox": [ + 491, + 654, + 501, + 663 + ], + "score": 0.81, + "content": "v _ { b }", + "type": "inline_equation" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 663, + 400, + 676 + ], + "spans": [ + { + "bbox": [ + 106, + 663, + 400, + 676 + ], + "score": 1.0, + "content": "Substituting the right hand term of Eq. (12) with Eq. (16), we obtain that", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5 + }, + { + "type": "interline_equation", + "bbox": [ + 165, + 678, + 446, + 717 + ], + "lines": [ + { + "bbox": [ + 165, + 678, + 446, + 717 + ], + "spans": [ + { + "bbox": [ + 165, + 678, + 446, + 717 + ], + "score": 0.94, + "content": "I _ { l } ( v _ { a } , v _ { b } ; k ) = \\sum _ { j = 0 } ^ { k - 1 } \\sum _ { \\mathcal { U } _ { k - j } ^ { a b } } \\prod _ { i = k - j } ^ { 1 } \\tilde { a } _ { v ^ { ( i - 1 ) } , v ^ { ( i ) } } = \\sum _ { j = 1 } ^ { k } \\sum _ { \\mathcal { U } _ { j } ^ { a b } } \\prod _ { i = j } ^ { 1 } \\tilde { a } _ { v ^ { ( i - 1 ) } , v ^ { ( i ) } } .", + "type": "interline_equation", + "image_path": "efaf3f041e5001119d74dfaf48ddc0ee304f3e8a4f95827a2de0291563901a68.jpg" + } + ] + } + ], + "index": 38, + "virtual_lines": [ + { + "bbox": [ + 165, + 678, + 446, + 691.0 + ], + "spans": [], + "index": 37 + }, + { + "bbox": [ + 165, + 691.0, + 446, + 704.0 + ], + "spans": [], + "index": 38 + }, + { + "bbox": [ + 165, + 704.0, + 446, + 717.0 + ], + "spans": [], + "index": 39 + } + ] + } + ], + "page_idx": 12, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "13", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 27, + 307, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 494, + 721, + 505, + 731 + ], + "lines": [ + { + "bbox": [ + 495, + 721, + 505, + 732 + ], + "spans": [ + { + "bbox": [ + 495, + 721, + 505, + 732 + ], + "score": 1.0, + "content": "\u0003", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 110, + 83, + 504, + 172 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 110, + 83, + 504, + 172 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 110, + 83, + 504, + 172 + ], + "spans": [ + { + "bbox": [ + 110, + 83, + 504, + 172 + ], + "score": 0.938, + "type": "image", + "image_path": "a8be6adfe9b29716610210ac6cd406194bbbff6b169ed3ea15aab2b7784c6266.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 110, + 83, + 504, + 112.66666666666667 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 110, + 112.66666666666667, + 504, + 142.33333333333334 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 110, + 142.33333333333334, + 504, + 172.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 180, + 505, + 280 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 181, + 505, + 192 + ], + "spans": [ + { + "bbox": [ + 106, + 181, + 505, + 192 + ], + "score": 1.0, + "content": "Figure 7: An illustrating example of label propagation in LPA. Suppose labels are propagated for", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 191, + 506, + 204 + ], + "spans": [ + { + "bbox": [ + 105, + 191, + 506, + 204 + ], + "score": 1.0, + "content": "three iterations, and no self-loop exists. Blue nodes are labeled while white nodes are unlabeled. (a)", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 202, + 506, + 215 + ], + "spans": [ + { + "bbox": [ + 106, + 203, + 117, + 213 + ], + "score": 0.84, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 118, + 202, + 204, + 215 + ], + "score": 1.0, + "content": "’s label propagates to", + "type": "text" + }, + { + "bbox": [ + 204, + 204, + 215, + 213 + ], + "score": 0.84, + "content": "v _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 202, + 402, + 215 + ], + "score": 1.0, + "content": "(yellow arrows). Note that the propagation of", + "type": "text" + }, + { + "bbox": [ + 403, + 204, + 414, + 213 + ], + "score": 0.86, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 414, + 202, + 454, + 215 + ], + "score": 1.0, + "content": "’s label to", + "type": "text" + }, + { + "bbox": [ + 455, + 204, + 465, + 213 + ], + "score": 0.84, + "content": "v _ { 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 465, + 202, + 506, + 215 + ], + "score": 1.0, + "content": "is cut off", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 212, + 505, + 227 + ], + "spans": [ + { + "bbox": [ + 105, + 212, + 129, + 227 + ], + "score": 1.0, + "content": "since", + "type": "text" + }, + { + "bbox": [ + 129, + 215, + 140, + 224 + ], + "score": 0.85, + "content": "v _ { 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 212, + 243, + 227 + ], + "score": 1.0, + "content": "is labeled thus absorbing", + "type": "text" + }, + { + "bbox": [ + 243, + 214, + 254, + 224 + ], + "score": 0.82, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 212, + 302, + 227 + ], + "score": 1.0, + "content": "’s label. (b)", + "type": "text" + }, + { + "bbox": [ + 302, + 214, + 313, + 224 + ], + "score": 0.85, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 212, + 417, + 227 + ], + "score": 1.0, + "content": "’s label that propagated to", + "type": "text" + }, + { + "bbox": [ + 418, + 215, + 428, + 224 + ], + "score": 0.85, + "content": "v _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 429, + 212, + 505, + 227 + ], + "score": 1.0, + "content": "further propagates", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 224, + 506, + 237 + ], + "spans": [ + { + "bbox": [ + 105, + 224, + 117, + 237 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 117, + 226, + 127, + 235 + ], + "score": 0.86, + "content": "v _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 128, + 224, + 145, + 237 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 145, + 225, + 155, + 235 + ], + "score": 0.85, + "content": "v _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 156, + 224, + 275, + 237 + ], + "score": 1.0, + "content": "(yellow arrows). Meanwhile,", + "type": "text" + }, + { + "bbox": [ + 275, + 225, + 286, + 235 + ], + "score": 0.86, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 224, + 506, + 237 + ], + "score": 1.0, + "content": "’s label is reset to its initial value then propagates from", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 235, + 506, + 248 + ], + "spans": [ + { + "bbox": [ + 106, + 237, + 117, + 246 + ], + "score": 0.85, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 118, + 235, + 506, + 248 + ], + "score": 1.0, + "content": "again (green arrows). (c) Label propagation in iteration 3. Purple arrows denote the propagation", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 246, + 505, + 258 + ], + "spans": [ + { + "bbox": [ + 106, + 246, + 117, + 258 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 118, + 247, + 128, + 257 + ], + "score": 0.87, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 129, + 246, + 213, + 258 + ], + "score": 1.0, + "content": "’s label starting from", + "type": "text" + }, + { + "bbox": [ + 213, + 248, + 224, + 257 + ], + "score": 0.86, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 224, + 246, + 505, + 258 + ], + "score": 1.0, + "content": "for the third time. (d) All possible paths of length no more than three", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 256, + 506, + 270 + ], + "spans": [ + { + "bbox": [ + 105, + 256, + 128, + 270 + ], + "score": 1.0, + "content": "from", + "type": "text" + }, + { + "bbox": [ + 129, + 259, + 140, + 268 + ], + "score": 0.86, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 256, + 151, + 270 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 151, + 259, + 162, + 268 + ], + "score": 0.85, + "content": "v _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 256, + 482, + 270 + ], + "score": 1.0, + "content": "containing unlabeled nodes only. Note that there is no path of length one from", + "type": "text" + }, + { + "bbox": [ + 482, + 259, + 493, + 268 + ], + "score": 0.84, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 493, + 256, + 506, + 270 + ], + "score": 1.0, + "content": "to", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 268, + 121, + 282 + ], + "spans": [ + { + "bbox": [ + 106, + 270, + 116, + 279 + ], + "score": 0.82, + "content": "v _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 117, + 268, + 121, + 282 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 7 + } + ], + "index": 4.0 + }, + { + "type": "text", + "bbox": [ + 106, + 297, + 506, + 370 + ], + "lines": [ + { + "bbox": [ + 105, + 294, + 509, + 322 + ], + "spans": [ + { + "bbox": [ + 105, + 299, + 260, + 314 + ], + "score": 1.0, + "content": "In the above equation, the derivative", + "type": "text" + }, + { + "bbox": [ + 257, + 294, + 286, + 311 + ], + "score": 1.0, + "content": "∂y(k)a", + "type": "text" + }, + { + "bbox": [ + 261, + 297, + 282, + 319 + ], + "score": 0.93, + "content": "\\frac { \\partial y _ { a } ^ { ( k ) } } { \\partial y _ { b } ^ { ( j ) } }", + "type": "inline_equation" + }, + { + "bbox": [ + 283, + 300, + 470, + 315 + ], + "score": 1.0, + "content": "is decomposed into the weighted average of", + "type": "text" + }, + { + "bbox": [ + 467, + 294, + 504, + 309 + ], + "score": 1.0, + "content": "∂y(k−1)z", + "type": "text" + }, + { + "bbox": [ + 471, + 304, + 509, + 322 + ], + "score": 1.0, + "content": "∂ y ( j )b ,", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 104, + 316, + 506, + 336 + ], + "spans": [ + { + "bbox": [ + 104, + 316, + 133, + 336 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 323, + 145, + 332 + ], + "score": 0.84, + "content": "v _ { z }", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 316, + 252, + 336 + ], + "score": 1.0, + "content": "traverses all neighbors of", + "type": "text" + }, + { + "bbox": [ + 252, + 322, + 263, + 332 + ], + "score": 0.87, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 263, + 316, + 311, + 336 + ], + "score": 1.0, + "content": ". For those", + "type": "text" + }, + { + "bbox": [ + 311, + 322, + 322, + 332 + ], + "score": 0.85, + "content": "v _ { z }", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 316, + 433, + 336 + ], + "score": 1.0, + "content": "’s that are initially labeled,", + "type": "text" + }, + { + "bbox": [ + 433, + 318, + 460, + 333 + ], + "score": 0.92, + "content": "y _ { z } ^ { ( k - 1 ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 316, + 506, + 336 + ], + "score": 1.0, + "content": "is reset to", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 103, + 327, + 508, + 351 + ], + "spans": [ + { + "bbox": [ + 103, + 327, + 484, + 351 + ], + "score": 1.0, + "content": "their initial labels in each iteration. Therefore, they are always constant and independent of", + "type": "text" + }, + { + "bbox": [ + 484, + 332, + 501, + 347 + ], + "score": 0.92, + "content": "y _ { b } ^ { ( j ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 327, + 508, + 351 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 101, + 340, + 506, + 368 + ], + "spans": [ + { + "bbox": [ + 101, + 340, + 248, + 368 + ], + "score": 1.0, + "content": "meaning that their derivatives w.r.t.", + "type": "text" + }, + { + "bbox": [ + 249, + 346, + 265, + 361 + ], + "score": 0.92, + "content": "y _ { b } ^ { ( j ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 340, + 484, + 368 + ], + "score": 1.0, + "content": "are zero. So we only need to consider the terms where", + "type": "text" + }, + { + "bbox": [ + 484, + 351, + 495, + 360 + ], + "score": 0.85, + "content": "v _ { z }", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 340, + 506, + 368 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13.5, + "bbox_fs": [ + 101, + 294, + 509, + 368 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 231, + 367, + 380, + 402 + ], + "lines": [ + { + "bbox": [ + 231, + 367, + 380, + 402 + ], + "spans": [ + { + "bbox": [ + 231, + 367, + 380, + 402 + ], + "score": 0.94, + "content": "\\frac { \\partial y _ { a } ^ { ( k ) } } { \\partial y _ { b } ^ { ( j ) } } = \\sum _ { v _ { z } \\in \\mathcal { N } \\left( v _ { a } \\right) , z > m } \\tilde { a } _ { a z } \\frac { \\partial y _ { z } ^ { ( k - 1 ) } } { \\partial y _ { b } ^ { ( j ) } } ,", + "type": "interline_equation", + "image_path": "f3863be58ec7591fb169d6ddd57254b9d003dee2758e3ea4eac6b6877734a3ac.jpg" + } + ] + } + ], + "index": 16.5, + "virtual_lines": [ + { + "bbox": [ + 231, + 367, + 380, + 384.5 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 231, + 384.5, + 380, + 402.0 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 403, + 506, + 484 + ], + "lines": [ + { + "bbox": [ + 105, + 403, + 506, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 403, + 133, + 416 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 406, + 164, + 414 + ], + "score": 0.88, + "content": "z > m", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 403, + 193, + 416 + ], + "score": 1.0, + "content": "means", + "type": "text" + }, + { + "bbox": [ + 194, + 406, + 204, + 415 + ], + "score": 0.85, + "content": "v _ { z }", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 403, + 506, + 416 + ], + "score": 1.0, + "content": "is unlabeled. To intuitively understand Eq. (14), one can imagine that we", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 415, + 506, + 427 + ], + "spans": [ + { + "bbox": [ + 105, + 415, + 279, + 427 + ], + "score": 1.0, + "content": "perform a random walk starting from node", + "type": "text" + }, + { + "bbox": [ + 279, + 416, + 290, + 426 + ], + "score": 0.87, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 290, + 415, + 506, + 427 + ], + "score": 1.0, + "content": "for one step, where the “transition probability” is the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 425, + 506, + 438 + ], + "spans": [ + { + "bbox": [ + 106, + 425, + 161, + 438 + ], + "score": 1.0, + "content": "edge weights", + "type": "text" + }, + { + "bbox": [ + 162, + 426, + 168, + 436 + ], + "score": 0.78, + "content": "\\tilde { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 425, + 506, + 438 + ], + "score": 1.0, + "content": ", and all nodes in this random walk are restricted to unlabeled nodes only. Note that", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 102, + 432, + 506, + 456 + ], + "spans": [ + { + "bbox": [ + 102, + 432, + 242, + 456 + ], + "score": 1.0, + "content": "we can further decompose every", + "type": "text" + }, + { + "bbox": [ + 242, + 437, + 269, + 451 + ], + "score": 0.92, + "content": "y _ { z } ^ { ( k - 1 ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 270, + 432, + 475, + 456 + ], + "score": 1.0, + "content": "in Eq. (14) in the way similar to what we do for", + "type": "text" + }, + { + "bbox": [ + 475, + 437, + 493, + 451 + ], + "score": 0.92, + "content": "y _ { a } ^ { ( k ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 493, + 432, + 506, + 456 + ], + "score": 1.0, + "content": "in", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 104, + 449, + 506, + 464 + ], + "spans": [ + { + "bbox": [ + 104, + 449, + 436, + 464 + ], + "score": 1.0, + "content": "Eq. (13). So the expansion in Eq. (14) can be performed iteratively until the index", + "type": "text" + }, + { + "bbox": [ + 437, + 451, + 443, + 460 + ], + "score": 0.8, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 449, + 495, + 464 + ], + "score": 1.0, + "content": "decreases to", + "type": "text" + }, + { + "bbox": [ + 496, + 451, + 501, + 462 + ], + "score": 0.77, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 449, + 506, + 464 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 460, + 506, + 474 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 360, + 474 + ], + "score": 1.0, + "content": "This is equivalent to performing all possible random walks for", + "type": "text" + }, + { + "bbox": [ + 360, + 462, + 384, + 473 + ], + "score": 0.92, + "content": "k - j", + "type": "inline_equation" + }, + { + "bbox": [ + 384, + 460, + 463, + 474 + ], + "score": 1.0, + "content": "steps starting from", + "type": "text" + }, + { + "bbox": [ + 464, + 463, + 474, + 472 + ], + "score": 0.83, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 460, + 506, + 474 + ], + "score": 1.0, + "content": ", where", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 473, + 416, + 484 + ], + "spans": [ + { + "bbox": [ + 106, + 473, + 416, + 484 + ], + "score": 1.0, + "content": "all nodes but the last in the random walk are restricted to be unlabeled nodes:", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 21, + "bbox_fs": [ + 102, + 403, + 506, + 484 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 207, + 485, + 403, + 525 + ], + "lines": [ + { + "bbox": [ + 207, + 485, + 403, + 525 + ], + "spans": [ + { + "bbox": [ + 207, + 485, + 403, + 525 + ], + "score": 0.94, + "content": "\\frac { \\partial y _ { a } ^ { ( k ) } } { \\partial y _ { b } ^ { ( j ) } } = \\sum _ { v _ { z } \\in \\mathcal { V } } \\sum _ { \\mathcal { U } _ { k - j } ^ { a \\to z } } \\left( \\prod _ { i = k - j } ^ { 1 } \\tilde { a } _ { v ^ { ( i - 1 ) } , v ^ { ( i ) } } \\right) \\frac { \\partial y _ { z } ^ { ( j ) } } { \\partial y _ { b } ^ { ( j ) } } ,", + "type": "interline_equation", + "image_path": "dfc8dc352c414ce449db39bd4cff4778a1598b2624c1ad6b4931454c6ce26c85.jpg" + } + ] + } + ], + "index": 25.5, + "virtual_lines": [ + { + "bbox": [ + 207, + 485, + 403, + 505.0 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 207, + 505.0, + 403, + 525.0 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 527, + 506, + 613 + ], + "lines": [ + { + "bbox": [ + 105, + 526, + 506, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 526, + 133, + 542 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 530, + 144, + 540 + ], + "score": 0.85, + "content": "v _ { z }", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 526, + 389, + 542 + ], + "score": 1.0, + "content": "in the first summation term is the end node of a random walk,", + "type": "text" + }, + { + "bbox": [ + 389, + 528, + 415, + 542 + ], + "score": 0.91, + "content": "\\mathcal { U } _ { k - j } ^ { a z }", + "type": "inline_equation" + }, + { + "bbox": [ + 415, + 526, + 506, + 542 + ], + "score": 1.0, + "content": "in the second summa-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 541, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 106, + 541, + 296, + 552 + ], + "score": 1.0, + "content": "tion term is an unlabeled-nodes-only path from", + "type": "text" + }, + { + "bbox": [ + 297, + 542, + 307, + 551 + ], + "score": 0.85, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 307, + 541, + 319, + 552 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 319, + 542, + 329, + 551 + ], + "score": 0.81, + "content": "v _ { z }", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 541, + 369, + 552 + ], + "score": 1.0, + "content": "of length", + "type": "text" + }, + { + "bbox": [ + 369, + 541, + 392, + 552 + ], + "score": 0.89, + "content": "k - j", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 541, + 505, + 552 + ], + "score": 1.0, + "content": ", and the product term is the", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 551, + 504, + 576 + ], + "spans": [ + { + "bbox": [ + 105, + 554, + 214, + 569 + ], + "score": 1.0, + "content": "probability of a given path", + "type": "text" + }, + { + "bbox": [ + 214, + 555, + 239, + 569 + ], + "score": 0.92, + "content": "\\mathcal { U } _ { k - j } ^ { a z }", + "type": "inline_equation" + }, + { + "bbox": [ + 240, + 554, + 335, + 569 + ], + "score": 1.0, + "content": ". Consider the last term", + "type": "text" + }, + { + "bbox": [ + 331, + 558, + 359, + 576 + ], + "score": 1.0, + "content": "∂ y(j)b", + "type": "text" + }, + { + "bbox": [ + 356, + 555, + 464, + 567 + ], + "score": 1.0, + "content": "in Eq. (15). We know that", + "type": "text" + }, + { + "bbox": [ + 464, + 551, + 504, + 573 + ], + "score": 0.94, + "content": "\\begin{array} { r } { \\frac { \\partial y _ { z } ^ { ( j ) } } { \\partial y _ { b } ^ { ( j ) } } = 0 } \\end{array}", + "type": "inline_equation" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 572, + 505, + 593 + ], + "spans": [ + { + "bbox": [ + 105, + 575, + 134, + 588 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 135, + 575, + 161, + 588 + ], + "score": 0.89, + "content": "z \\neq b", + "type": "inline_equation" + }, + { + "bbox": [ + 161, + 575, + 181, + 588 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 181, + 572, + 223, + 593 + ], + "score": 0.94, + "content": "\\begin{array} { r } { \\frac { \\partial y _ { z } ^ { ( j ) } } { \\partial y _ { b } ^ { ( j ) } } = 1 } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 576, + 239, + 588 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 240, + 576, + 266, + 586 + ], + "score": 0.89, + "content": "z = b", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 576, + 505, + 588 + ], + "score": 1.0, + "content": ", which means that only those random-walk paths that end", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 592, + 505, + 604 + ], + "spans": [ + { + "bbox": [ + 105, + 592, + 147, + 604 + ], + "score": 1.0, + "content": "exactly at", + "type": "text" + }, + { + "bbox": [ + 148, + 594, + 158, + 603 + ], + "score": 0.84, + "content": "v _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 592, + 235, + 604 + ], + "score": 1.0, + "content": "(i.e., the end node", + "type": "text" + }, + { + "bbox": [ + 235, + 594, + 245, + 603 + ], + "score": 0.84, + "content": "v _ { z }", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 592, + 288, + 604 + ], + "score": 1.0, + "content": "is exactly", + "type": "text" + }, + { + "bbox": [ + 288, + 594, + 298, + 603 + ], + "score": 0.8, + "content": "v _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 592, + 505, + 604 + ], + "score": 1.0, + "content": ") count for the computation in Eq. (15). Therefore,", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 601, + 143, + 615 + ], + "spans": [ + { + "bbox": [ + 106, + 601, + 143, + 615 + ], + "score": 1.0, + "content": "we have", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 29.5, + "bbox_fs": [ + 105, + 526, + 506, + 615 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 239, + 610, + 371, + 649 + ], + "lines": [ + { + "bbox": [ + 239, + 610, + 371, + 649 + ], + "spans": [ + { + "bbox": [ + 239, + 610, + 371, + 649 + ], + "score": 0.94, + "content": "{ \\frac { \\partial y _ { a } ^ { ( k ) } } { \\partial y _ { b } ^ { ( j ) } } } = \\sum _ { \\mathcal { U } _ { k - j } ^ { a b } } \\prod _ { i = k - j } ^ { 1 } \\tilde { a } _ { v ^ { ( i - 1 ) } , v ^ { ( i ) } } ,", + "type": "interline_equation", + "image_path": "a229afa616ea0dc510690ef83f957856f2db325c4b613a2362f2cb3bf408aa5a.jpg" + } + ] + } + ], + "index": 33.5, + "virtual_lines": [ + { + "bbox": [ + 239, + 610, + 371, + 629.5 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 239, + 629.5, + 371, + 649.0 + ], + "spans": [], + "index": 34 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 651, + 505, + 676 + ], + "lines": [ + { + "bbox": [ + 103, + 646, + 501, + 671 + ], + "spans": [ + { + "bbox": [ + 103, + 646, + 133, + 671 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 651, + 159, + 665 + ], + "score": 0.93, + "content": "\\mathcal { U } _ { k - j } ^ { a b }", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 646, + 222, + 671 + ], + "score": 1.0, + "content": "is a path from", + "type": "text" + }, + { + "bbox": [ + 223, + 654, + 233, + 663 + ], + "score": 0.84, + "content": "v _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 646, + 246, + 671 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 247, + 654, + 257, + 663 + ], + "score": 0.85, + "content": "v _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 646, + 299, + 671 + ], + "score": 1.0, + "content": "of length", + "type": "text" + }, + { + "bbox": [ + 299, + 652, + 324, + 663 + ], + "score": 0.92, + "content": "k - j", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 646, + 491, + 671 + ], + "score": 1.0, + "content": "containing only unlabeled nodes except", + "type": "text" + }, + { + "bbox": [ + 491, + 654, + 501, + 663 + ], + "score": 0.81, + "content": "v _ { b }", + "type": "inline_equation" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 663, + 400, + 676 + ], + "spans": [ + { + "bbox": [ + 106, + 663, + 400, + 676 + ], + "score": 1.0, + "content": "Substituting the right hand term of Eq. (12) with Eq. (16), we obtain that", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5, + "bbox_fs": [ + 103, + 646, + 501, + 676 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 165, + 678, + 446, + 717 + ], + "lines": [ + { + "bbox": [ + 165, + 678, + 446, + 717 + ], + "spans": [ + { + "bbox": [ + 165, + 678, + 446, + 717 + ], + "score": 0.94, + "content": "I _ { l } ( v _ { a } , v _ { b } ; k ) = \\sum _ { j = 0 } ^ { k - 1 } \\sum _ { \\mathcal { U } _ { k - j } ^ { a b } } \\prod _ { i = k - j } ^ { 1 } \\tilde { a } _ { v ^ { ( i - 1 ) } , v ^ { ( i ) } } = \\sum _ { j = 1 } ^ { k } \\sum _ { \\mathcal { U } _ { j } ^ { a b } } \\prod _ { i = j } ^ { 1 } \\tilde { a } _ { v ^ { ( i - 1 ) } , v ^ { ( i ) } } .", + "type": "interline_equation", + "image_path": "efaf3f041e5001119d74dfaf48ddc0ee304f3e8a4f95827a2de0291563901a68.jpg" + } + ] + } + ], + "index": 38, + "virtual_lines": [ + { + "bbox": [ + 165, + 678, + 446, + 691.0 + ], + "spans": [], + "index": 37 + }, + { + "bbox": [ + 165, + 691.0, + 446, + 704.0 + ], + "spans": [], + "index": 38 + }, + { + "bbox": [ + 165, + 704.0, + 446, + 717.0 + ], + "spans": [], + "index": 39 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 389, + 95 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 390, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 390, + 96 + ], + "score": 1.0, + "content": "Now Theorem 1 can be proved by combining Lemma 1 and Lemma 2:", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 99, + 505, + 122 + ], + "lines": [ + { + "bbox": [ + 105, + 98, + 505, + 113 + ], + "spans": [ + { + "bbox": [ + 105, + 98, + 505, + 113 + ], + "score": 1.0, + "content": "Proof. Suppose that whether a node is labeled or not is independent of each other for the given", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 110, + 194, + 123 + ], + "spans": [ + { + "bbox": [ + 105, + 110, + 194, + 123 + ], + "score": 1.0, + "content": "graph. Then we have", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1.5 + }, + { + "type": "interline_equation", + "bbox": [ + 120, + 129, + 472, + 250 + ], + "lines": [ + { + "bbox": [ + 120, + 129, + 472, + 250 + ], + "spans": [ + { + "bbox": [ + 120, + 129, + 472, + 250 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { \\mathbb { E } [ \\boldsymbol { I } _ { l } ( v _ { a } , v _ { b } ; k ) ] = \\mathbb { E } [ \\displaystyle \\sum _ { j = 1 } ^ { k } \\sum _ { U _ { j } ^ { a - b } } \\prod _ { i = j } ^ { 1 } \\tilde { a } _ { v ^ { ( i - 1 ) } , v ^ { ( i ) } } ] = \\displaystyle \\sum _ { j = 1 } ^ { k } \\mathbb { E } [ \\displaystyle \\sum _ { U _ { j } ^ { a - b } } \\prod _ { i = j } ^ { 1 } \\tilde { a } _ { v ^ { ( i - 1 ) } , v ^ { ( i ) } } ] } \\\\ & { \\qquad = \\displaystyle \\sum _ { j = 1 } ^ { k } \\sum _ { \\mathcal { P } _ { j } ^ { a - b } } \\operatorname* { P r } ( \\mathcal { P } _ { j } ^ { a b } \\mathrm { \\ i s ~ a n ~ u n l a b e l e d - n o d e s - o n l y ~ p a t h } ) \\prod _ { i = j } ^ { 1 } \\tilde { a } _ { v ^ { ( i - 1 ) } , v ^ { ( i ) } } } \\\\ & { \\qquad = \\displaystyle \\sum _ { j = 1 } ^ { k } \\sum _ { \\mathcal { P } _ { j } ^ { a - b } } \\beta ^ { j } \\prod _ { i = j } ^ { 1 } \\tilde { a } _ { v ^ { ( i - 1 ) } , v ^ { ( i ) } } = \\displaystyle \\sum _ { j = 1 } ^ { k } \\beta ^ { j } \\tilde { I } _ { f } ( v _ { a } , v _ { b } ; j ) . } \\end{array}", + "type": "interline_equation", + "image_path": "6dcaae8e44eda140257312e7edf02ffcab8b205cb26bd55e33379f9804056e62.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 120, + 129, + 472, + 169.33333333333334 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 120, + 169.33333333333334, + 472, + 209.66666666666669 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 120, + 209.66666666666669, + 472, + 250.00000000000003 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "title", + "bbox": [ + 107, + 285, + 222, + 297 + ], + "lines": [ + { + "bbox": [ + 105, + 284, + 223, + 299 + ], + "spans": [ + { + "bbox": [ + 105, + 284, + 223, + 299 + ], + "score": 1.0, + "content": "B PROOF OF THEOREM 2", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 106, + 306, + 505, + 344 + ], + "lines": [ + { + "bbox": [ + 104, + 304, + 506, + 321 + ], + "spans": [ + { + "bbox": [ + 104, + 304, + 252, + 321 + ], + "score": 1.0, + "content": "Proof. Denote the set of labels as", + "type": "text" + }, + { + "bbox": [ + 253, + 308, + 261, + 318 + ], + "score": 0.76, + "content": "\\mathcal { L }", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 304, + 407, + 321 + ], + "score": 1.0, + "content": ". Since different label dimensions in", + "type": "text" + }, + { + "bbox": [ + 407, + 305, + 423, + 320 + ], + "score": 0.91, + "content": "y _ { a } ^ { ( \\cdot ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 423, + 304, + 506, + 321 + ], + "score": 1.0, + "content": "do not interact with", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 104, + 318, + 506, + 335 + ], + "spans": [ + { + "bbox": [ + 104, + 318, + 296, + 335 + ], + "score": 1.0, + "content": "each other when running LPA, the value of the", + "type": "text" + }, + { + "bbox": [ + 296, + 322, + 307, + 333 + ], + "score": 0.87, + "content": "y _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 307, + 318, + 374, + 335 + ], + "score": 1.0, + "content": "-th dimension in", + "type": "text" + }, + { + "bbox": [ + 374, + 318, + 390, + 333 + ], + "score": 0.9, + "content": "y _ { a } ^ { ( \\cdot ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 318, + 441, + 335 + ], + "score": 1.0, + "content": "(denoted by", + "type": "text" + }, + { + "bbox": [ + 442, + 318, + 474, + 333 + ], + "score": 0.92, + "content": "y _ { a } ^ { ( \\cdot ) } [ y _ { a } ] \\rangle", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 318, + 506, + 335 + ], + "score": 1.0, + "content": ") comes", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 332, + 330, + 344 + ], + "spans": [ + { + "bbox": [ + 105, + 332, + 256, + 344 + ], + "score": 1.0, + "content": "only from the nodes with initial label", + "type": "text" + }, + { + "bbox": [ + 257, + 334, + 267, + 344 + ], + "score": 0.86, + "content": "y _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 332, + 330, + 344 + ], + "score": 1.0, + "content": ". It is clear that", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8 + }, + { + "type": "interline_equation", + "bbox": [ + 216, + 351, + 394, + 390 + ], + "lines": [ + { + "bbox": [ + 216, + 351, + 394, + 390 + ], + "spans": [ + { + "bbox": [ + 216, + 351, + 394, + 390 + ], + "score": 0.94, + "content": "y _ { a } ^ { ( k ) } [ y _ { a } ] = \\sum _ { v _ { b } : y _ { b } = y _ { a } } \\sum _ { j = 1 } ^ { k } \\sum _ { \\mathcal { U } _ { j } ^ { a b } } \\prod _ { i = j } ^ { 1 } \\tilde { a } _ { v ^ { ( i - 1 ) } , v ^ { ( i ) } } ,", + "type": "interline_equation", + "image_path": "4af461db26787185f8ce9e9021acb5db67dc76d42788643a03d7a17952a07eeb.jpg" + } + ] + } + ], + "index": 10.5, + "virtual_lines": [ + { + "bbox": [ + 216, + 351, + 394, + 370.5 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 216, + 370.5, + 394, + 390.0 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 398, + 432, + 413 + ], + "lines": [ + { + "bbox": [ + 104, + 396, + 434, + 417 + ], + "spans": [ + { + "bbox": [ + 104, + 396, + 161, + 417 + ], + "score": 1.0, + "content": "which equals", + "type": "text" + }, + { + "bbox": [ + 162, + 399, + 255, + 413 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\sum _ { v { b } : y _ { b } = y _ { a } } I _ { l } ( v _ { a } , v _ { b } ; k ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 396, + 434, + 417 + ], + "score": 1.0, + "content": "according to Lemma 2. Therefore, we have", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "interline_equation", + "bbox": [ + 175, + 421, + 437, + 455 + ], + "lines": [ + { + "bbox": [ + 175, + 421, + 437, + 455 + ], + "spans": [ + { + "bbox": [ + 175, + 421, + 437, + 455 + ], + "score": 0.94, + "content": "\\mathrm { P r } ( \\hat { y } _ { a } = y _ { a } ) = \\frac { y _ { a } ^ { ( k ) } [ y _ { a } ] } { \\sum _ { i \\in \\mathcal { L } } y _ { a } ^ { ( k ) } [ i ] } \\propto y _ { a } ^ { ( k ) } [ y _ { a } ] = \\sum _ { v _ { b } : y _ { b } = y _ { a } } I _ { l } ( v _ { a } , v _ { b } ; k )", + "type": "interline_equation", + "image_path": "90fd4d1f1494a326b21b3b0c56b8ac77ecb77443b9155184348209374c063d71.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 175, + 421, + 437, + 432.3333333333333 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 175, + 432.3333333333333, + 437, + 443.66666666666663 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 175, + 443.66666666666663, + 437, + 454.99999999999994 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "title", + "bbox": [ + 107, + 491, + 222, + 502 + ], + "lines": [ + { + "bbox": [ + 106, + 490, + 223, + 503 + ], + "spans": [ + { + "bbox": [ + 106, + 490, + 223, + 503 + ], + "score": 1.0, + "content": "C PROOF OF THEOREM 3", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 106, + 512, + 506, + 572 + ], + "lines": [ + { + "bbox": [ + 106, + 513, + 504, + 524 + ], + "spans": [ + { + "bbox": [ + 106, + 513, + 504, + 524 + ], + "score": 1.0, + "content": "In this proof we assume that the dimension of node representations is one, but note that the conclu-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 525, + 505, + 536 + ], + "spans": [ + { + "bbox": [ + 106, + 525, + 505, + 536 + ], + "score": 1.0, + "content": "sion can be easily generalized to the case of multi-dimensional representations since the function", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 534, + 505, + 547 + ], + "spans": [ + { + "bbox": [ + 106, + 535, + 130, + 547 + ], + "score": 0.91, + "content": "D ( \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 130, + 534, + 505, + 547 + ], + "score": 1.0, + "content": "can be decomposed into the sum of one-dimensional cases. In the following of this proof, we", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 546, + 506, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 546, + 199, + 563 + ], + "score": 1.0, + "content": "still use bold notations", + "type": "text" + }, + { + "bbox": [ + 199, + 546, + 218, + 561 + ], + "score": 0.92, + "content": "\\mathbf { x } _ { i } ^ { ( k ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 546, + 260, + 563 + ], + "score": 1.0, + "content": ") and h(k)i t", + "type": "text" + }, + { + "bbox": [ + 255, + 547, + 506, + 562 + ], + "score": 1.0, + "content": "o denote node representations, but keep in mind that they are", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 561, + 214, + 571 + ], + "spans": [ + { + "bbox": [ + 106, + 561, + 214, + 571 + ], + "score": 1.0, + "content": "scalars rather than vectors.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 105, + 576, + 476, + 589 + ], + "lines": [ + { + "bbox": [ + 105, + 574, + 473, + 591 + ], + "spans": [ + { + "bbox": [ + 105, + 574, + 450, + 591 + ], + "score": 1.0, + "content": "We give two lemmas before proving Theorem 3. The first one is about the gradient of", + "type": "text" + }, + { + "bbox": [ + 450, + 577, + 473, + 589 + ], + "score": 0.91, + "content": "D ( \\mathbf { x } )", + "type": "inline_equation" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 107, + 598, + 250, + 620 + ], + "lines": [ + { + "bbox": [ + 103, + 595, + 247, + 621 + ], + "spans": [ + { + "bbox": [ + 103, + 595, + 151, + 621 + ], + "score": 1.0, + "content": "Lemma 3", + "type": "text" + }, + { + "bbox": [ + 151, + 599, + 247, + 621 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\mathbf { h } _ { i } ^ { ( k ) } = \\mathbf { x } _ { i } ^ { ( k ) } - \\frac { \\partial D ( \\mathbf { x } ^ { ( k ) } ) } { \\partial \\mathbf { x } _ { i } ^ { ( k ) } } } \\end{array}", + "type": "inline_equation" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "interline_equation", + "bbox": [ + 143, + 630, + 487, + 653 + ], + "lines": [ + { + "bbox": [ + 143, + 630, + 487, + 653 + ], + "spans": [ + { + "bbox": [ + 143, + 630, + 487, + 653 + ], + "score": 0.87, + "content": "\\begin{array} { r } { \\mathbf { x } _ { i } ^ { ( k ) } - \\frac { \\partial D ( \\mathbf { x } ^ { ( k ) } ) } { \\partial \\mathbf { x } _ { i } ^ { ( k ) } } = \\mathbf { x } _ { i } ^ { ( k ) } - \\sum _ { v _ { j } \\in N ( v _ { i } ) } \\widetilde { a } _ { i j } \\big ( \\mathbf { x } _ { i } ^ { ( k ) } - \\mathbf { x } _ { j } ^ { ( k ) } \\big ) = \\sum _ { v _ { j } \\in N ( v _ { i } ) } \\widetilde { a } _ { i j } \\mathbf { x } _ { j } ^ { ( k ) } = \\mathbf { h } _ { i } ^ { ( k ) } . } \\end{array}", + "type": "interline_equation", + "image_path": "9cb3b16e19ca9ffc7f3780eac29affd88490298e6388d319a5cf9d8849dc48e3.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 143, + 630, + 487, + 653 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 656, + 505, + 691 + ], + "lines": [ + { + "bbox": [ + 105, + 657, + 505, + 670 + ], + "spans": [ + { + "bbox": [ + 105, + 657, + 505, + 670 + ], + "score": 1.0, + "content": "It is interesting to see from Lemma 3 that the aggregation step in GCN is equivalent to running", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 668, + 505, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 668, + 505, + 680 + ], + "score": 1.0, + "content": "gradient descent for one step with a step size of one. However, this is not able to guarantee that", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 678, + 446, + 693 + ], + "spans": [ + { + "bbox": [ + 106, + 678, + 188, + 692 + ], + "score": 0.93, + "content": "\\mathbf { \\bar { \\Gamma } } D ( \\mathbf { h } ^ { ( k ) } ) \\leq D ( \\mathbf { x } ^ { ( k ) } )", + "type": "inline_equation" + }, + { + "bbox": [ + 188, + 678, + 432, + 693 + ], + "score": 1.0, + "content": "because the step size may be too large to reduce the value of", + "type": "text" + }, + { + "bbox": [ + 433, + 680, + 442, + 689 + ], + "score": 0.84, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 678, + 446, + 693 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 107, + 696, + 304, + 708 + ], + "lines": [ + { + "bbox": [ + 105, + 694, + 304, + 709 + ], + "spans": [ + { + "bbox": [ + 105, + 694, + 277, + 709 + ], + "score": 1.0, + "content": "The second lemma is about the Hessian of", + "type": "text" + }, + { + "bbox": [ + 278, + 697, + 301, + 708 + ], + "score": 0.91, + "content": "D ( \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 301, + 694, + 304, + 709 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 103, + 719, + 470, + 733 + ], + "lines": [ + { + "bbox": [ + 104, + 717, + 471, + 735 + ], + "spans": [ + { + "bbox": [ + 104, + 717, + 151, + 735 + ], + "score": 1.0, + "content": "Lemma 4", + "type": "text" + }, + { + "bbox": [ + 151, + 720, + 212, + 732 + ], + "score": 0.91, + "content": "\\nabla ^ { 2 } D ( \\mathbf { x } ) \\preceq 2 I _ { ! }", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 717, + 280, + 735 + ], + "score": 1.0, + "content": ", or equivalently,", + "type": "text" + }, + { + "bbox": [ + 280, + 720, + 338, + 732 + ], + "score": 0.93, + "content": "2 I - \\nabla ^ { 2 } D ( \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 717, + 471, + 735 + ], + "score": 1.0, + "content": "is a positive semidefinite matrix.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + } + ], + "page_idx": 13, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 26, + 307, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 307, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 307, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "14", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 494, + 463, + 505, + 474 + ], + "lines": [ + { + "bbox": [ + 495, + 464, + 505, + 475 + ], + "spans": [ + { + "bbox": [ + 495, + 464, + 505, + 475 + ], + "score": 1.0, + "content": "\u0003", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 494, + 258, + 505, + 269 + ], + "lines": [ + { + "bbox": [ + 495, + 259, + 505, + 270 + ], + "spans": [ + { + "bbox": [ + 495, + 259, + 505, + 270 + ], + "score": 1.0, + "content": "\u0003", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 495, + 634, + 504, + 646 + ], + "lines": [ + { + "bbox": [ + 496, + 636, + 504, + 646 + ], + "spans": [ + { + "bbox": [ + 496, + 636, + 504, + 646 + ], + "score": 1.0, + "content": "\u0003", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 389, + 95 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 390, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 390, + 96 + ], + "score": 1.0, + "content": "Now Theorem 1 can be proved by combining Lemma 1 and Lemma 2:", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0, + "bbox_fs": [ + 105, + 81, + 390, + 96 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 99, + 505, + 122 + ], + "lines": [ + { + "bbox": [ + 105, + 98, + 505, + 113 + ], + "spans": [ + { + "bbox": [ + 105, + 98, + 505, + 113 + ], + "score": 1.0, + "content": "Proof. Suppose that whether a node is labeled or not is independent of each other for the given", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 110, + 194, + 123 + ], + "spans": [ + { + "bbox": [ + 105, + 110, + 194, + 123 + ], + "score": 1.0, + "content": "graph. Then we have", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1.5, + "bbox_fs": [ + 105, + 98, + 505, + 123 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 120, + 129, + 472, + 250 + ], + "lines": [ + { + "bbox": [ + 120, + 129, + 472, + 250 + ], + "spans": [ + { + "bbox": [ + 120, + 129, + 472, + 250 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { \\mathbb { E } [ \\boldsymbol { I } _ { l } ( v _ { a } , v _ { b } ; k ) ] = \\mathbb { E } [ \\displaystyle \\sum _ { j = 1 } ^ { k } \\sum _ { U _ { j } ^ { a - b } } \\prod _ { i = j } ^ { 1 } \\tilde { a } _ { v ^ { ( i - 1 ) } , v ^ { ( i ) } } ] = \\displaystyle \\sum _ { j = 1 } ^ { k } \\mathbb { E } [ \\displaystyle \\sum _ { U _ { j } ^ { a - b } } \\prod _ { i = j } ^ { 1 } \\tilde { a } _ { v ^ { ( i - 1 ) } , v ^ { ( i ) } } ] } \\\\ & { \\qquad = \\displaystyle \\sum _ { j = 1 } ^ { k } \\sum _ { \\mathcal { P } _ { j } ^ { a - b } } \\operatorname* { P r } ( \\mathcal { P } _ { j } ^ { a b } \\mathrm { \\ i s ~ a n ~ u n l a b e l e d - n o d e s - o n l y ~ p a t h } ) \\prod _ { i = j } ^ { 1 } \\tilde { a } _ { v ^ { ( i - 1 ) } , v ^ { ( i ) } } } \\\\ & { \\qquad = \\displaystyle \\sum _ { j = 1 } ^ { k } \\sum _ { \\mathcal { P } _ { j } ^ { a - b } } \\beta ^ { j } \\prod _ { i = j } ^ { 1 } \\tilde { a } _ { v ^ { ( i - 1 ) } , v ^ { ( i ) } } = \\displaystyle \\sum _ { j = 1 } ^ { k } \\beta ^ { j } \\tilde { I } _ { f } ( v _ { a } , v _ { b } ; j ) . } \\end{array}", + "type": "interline_equation", + "image_path": "6dcaae8e44eda140257312e7edf02ffcab8b205cb26bd55e33379f9804056e62.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 120, + 129, + 472, + 169.33333333333334 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 120, + 169.33333333333334, + 472, + 209.66666666666669 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 120, + 209.66666666666669, + 472, + 250.00000000000003 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "title", + "bbox": [ + 107, + 285, + 222, + 297 + ], + "lines": [ + { + "bbox": [ + 105, + 284, + 223, + 299 + ], + "spans": [ + { + "bbox": [ + 105, + 284, + 223, + 299 + ], + "score": 1.0, + "content": "B PROOF OF THEOREM 2", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 106, + 306, + 505, + 344 + ], + "lines": [ + { + "bbox": [ + 104, + 304, + 506, + 321 + ], + "spans": [ + { + "bbox": [ + 104, + 304, + 252, + 321 + ], + "score": 1.0, + "content": "Proof. Denote the set of labels as", + "type": "text" + }, + { + "bbox": [ + 253, + 308, + 261, + 318 + ], + "score": 0.76, + "content": "\\mathcal { L }", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 304, + 407, + 321 + ], + "score": 1.0, + "content": ". Since different label dimensions in", + "type": "text" + }, + { + "bbox": [ + 407, + 305, + 423, + 320 + ], + "score": 0.91, + "content": "y _ { a } ^ { ( \\cdot ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 423, + 304, + 506, + 321 + ], + "score": 1.0, + "content": "do not interact with", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 104, + 318, + 506, + 335 + ], + "spans": [ + { + "bbox": [ + 104, + 318, + 296, + 335 + ], + "score": 1.0, + "content": "each other when running LPA, the value of the", + "type": "text" + }, + { + "bbox": [ + 296, + 322, + 307, + 333 + ], + "score": 0.87, + "content": "y _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 307, + 318, + 374, + 335 + ], + "score": 1.0, + "content": "-th dimension in", + "type": "text" + }, + { + "bbox": [ + 374, + 318, + 390, + 333 + ], + "score": 0.9, + "content": "y _ { a } ^ { ( \\cdot ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 318, + 441, + 335 + ], + "score": 1.0, + "content": "(denoted by", + "type": "text" + }, + { + "bbox": [ + 442, + 318, + 474, + 333 + ], + "score": 0.92, + "content": "y _ { a } ^ { ( \\cdot ) } [ y _ { a } ] \\rangle", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 318, + 506, + 335 + ], + "score": 1.0, + "content": ") comes", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 332, + 330, + 344 + ], + "spans": [ + { + "bbox": [ + 105, + 332, + 256, + 344 + ], + "score": 1.0, + "content": "only from the nodes with initial label", + "type": "text" + }, + { + "bbox": [ + 257, + 334, + 267, + 344 + ], + "score": 0.86, + "content": "y _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 332, + 330, + 344 + ], + "score": 1.0, + "content": ". It is clear that", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8, + "bbox_fs": [ + 104, + 304, + 506, + 344 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 216, + 351, + 394, + 390 + ], + "lines": [ + { + "bbox": [ + 216, + 351, + 394, + 390 + ], + "spans": [ + { + "bbox": [ + 216, + 351, + 394, + 390 + ], + "score": 0.94, + "content": "y _ { a } ^ { ( k ) } [ y _ { a } ] = \\sum _ { v _ { b } : y _ { b } = y _ { a } } \\sum _ { j = 1 } ^ { k } \\sum _ { \\mathcal { U } _ { j } ^ { a b } } \\prod _ { i = j } ^ { 1 } \\tilde { a } _ { v ^ { ( i - 1 ) } , v ^ { ( i ) } } ,", + "type": "interline_equation", + "image_path": "4af461db26787185f8ce9e9021acb5db67dc76d42788643a03d7a17952a07eeb.jpg" + } + ] + } + ], + "index": 10.5, + "virtual_lines": [ + { + "bbox": [ + 216, + 351, + 394, + 370.5 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 216, + 370.5, + 394, + 390.0 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 398, + 432, + 413 + ], + "lines": [ + { + "bbox": [ + 104, + 396, + 434, + 417 + ], + "spans": [ + { + "bbox": [ + 104, + 396, + 161, + 417 + ], + "score": 1.0, + "content": "which equals", + "type": "text" + }, + { + "bbox": [ + 162, + 399, + 255, + 413 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\sum _ { v { b } : y _ { b } = y _ { a } } I _ { l } ( v _ { a } , v _ { b } ; k ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 396, + 434, + 417 + ], + "score": 1.0, + "content": "according to Lemma 2. Therefore, we have", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12, + "bbox_fs": [ + 104, + 396, + 434, + 417 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 175, + 421, + 437, + 455 + ], + "lines": [ + { + "bbox": [ + 175, + 421, + 437, + 455 + ], + "spans": [ + { + "bbox": [ + 175, + 421, + 437, + 455 + ], + "score": 0.94, + "content": "\\mathrm { P r } ( \\hat { y } _ { a } = y _ { a } ) = \\frac { y _ { a } ^ { ( k ) } [ y _ { a } ] } { \\sum _ { i \\in \\mathcal { L } } y _ { a } ^ { ( k ) } [ i ] } \\propto y _ { a } ^ { ( k ) } [ y _ { a } ] = \\sum _ { v _ { b } : y _ { b } = y _ { a } } I _ { l } ( v _ { a } , v _ { b } ; k )", + "type": "interline_equation", + "image_path": "90fd4d1f1494a326b21b3b0c56b8ac77ecb77443b9155184348209374c063d71.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 175, + 421, + 437, + 432.3333333333333 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 175, + 432.3333333333333, + 437, + 443.66666666666663 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 175, + 443.66666666666663, + 437, + 454.99999999999994 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "title", + "bbox": [ + 107, + 491, + 222, + 502 + ], + "lines": [ + { + "bbox": [ + 106, + 490, + 223, + 503 + ], + "spans": [ + { + "bbox": [ + 106, + 490, + 223, + 503 + ], + "score": 1.0, + "content": "C PROOF OF THEOREM 3", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 106, + 512, + 506, + 572 + ], + "lines": [ + { + "bbox": [ + 106, + 513, + 504, + 524 + ], + "spans": [ + { + "bbox": [ + 106, + 513, + 504, + 524 + ], + "score": 1.0, + "content": "In this proof we assume that the dimension of node representations is one, but note that the conclu-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 525, + 505, + 536 + ], + "spans": [ + { + "bbox": [ + 106, + 525, + 505, + 536 + ], + "score": 1.0, + "content": "sion can be easily generalized to the case of multi-dimensional representations since the function", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 534, + 505, + 547 + ], + "spans": [ + { + "bbox": [ + 106, + 535, + 130, + 547 + ], + "score": 0.91, + "content": "D ( \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 130, + 534, + 505, + 547 + ], + "score": 1.0, + "content": "can be decomposed into the sum of one-dimensional cases. In the following of this proof, we", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 546, + 506, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 546, + 199, + 563 + ], + "score": 1.0, + "content": "still use bold notations", + "type": "text" + }, + { + "bbox": [ + 199, + 546, + 218, + 561 + ], + "score": 0.92, + "content": "\\mathbf { x } _ { i } ^ { ( k ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 546, + 260, + 563 + ], + "score": 1.0, + "content": ") and h(k)i t", + "type": "text" + }, + { + "bbox": [ + 255, + 547, + 506, + 562 + ], + "score": 1.0, + "content": "o denote node representations, but keep in mind that they are", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 561, + 214, + 571 + ], + "spans": [ + { + "bbox": [ + 106, + 561, + 214, + 571 + ], + "score": 1.0, + "content": "scalars rather than vectors.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 19, + "bbox_fs": [ + 105, + 513, + 506, + 571 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 576, + 476, + 589 + ], + "lines": [ + { + "bbox": [ + 105, + 574, + 473, + 591 + ], + "spans": [ + { + "bbox": [ + 105, + 574, + 450, + 591 + ], + "score": 1.0, + "content": "We give two lemmas before proving Theorem 3. The first one is about the gradient of", + "type": "text" + }, + { + "bbox": [ + 450, + 577, + 473, + 589 + ], + "score": 0.91, + "content": "D ( \\mathbf { x } )", + "type": "inline_equation" + } + ], + "index": 22 + } + ], + "index": 22, + "bbox_fs": [ + 105, + 574, + 473, + 591 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 598, + 250, + 620 + ], + "lines": [ + { + "bbox": [ + 103, + 595, + 247, + 621 + ], + "spans": [ + { + "bbox": [ + 103, + 595, + 151, + 621 + ], + "score": 1.0, + "content": "Lemma 3", + "type": "text" + }, + { + "bbox": [ + 151, + 599, + 247, + 621 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\mathbf { h } _ { i } ^ { ( k ) } = \\mathbf { x } _ { i } ^ { ( k ) } - \\frac { \\partial D ( \\mathbf { x } ^ { ( k ) } ) } { \\partial \\mathbf { x } _ { i } ^ { ( k ) } } } \\end{array}", + "type": "inline_equation" + } + ], + "index": 23 + } + ], + "index": 23, + "bbox_fs": [ + 103, + 595, + 247, + 621 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 143, + 630, + 487, + 653 + ], + "lines": [ + { + "bbox": [ + 143, + 630, + 487, + 653 + ], + "spans": [ + { + "bbox": [ + 143, + 630, + 487, + 653 + ], + "score": 0.87, + "content": "\\begin{array} { r } { \\mathbf { x } _ { i } ^ { ( k ) } - \\frac { \\partial D ( \\mathbf { x } ^ { ( k ) } ) } { \\partial \\mathbf { x } _ { i } ^ { ( k ) } } = \\mathbf { x } _ { i } ^ { ( k ) } - \\sum _ { v _ { j } \\in N ( v _ { i } ) } \\widetilde { a } _ { i j } \\big ( \\mathbf { x } _ { i } ^ { ( k ) } - \\mathbf { x } _ { j } ^ { ( k ) } \\big ) = \\sum _ { v _ { j } \\in N ( v _ { i } ) } \\widetilde { a } _ { i j } \\mathbf { x } _ { j } ^ { ( k ) } = \\mathbf { h } _ { i } ^ { ( k ) } . } \\end{array}", + "type": "interline_equation", + "image_path": "9cb3b16e19ca9ffc7f3780eac29affd88490298e6388d319a5cf9d8849dc48e3.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 143, + 630, + 487, + 653 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 656, + 505, + 691 + ], + "lines": [ + { + "bbox": [ + 105, + 657, + 505, + 670 + ], + "spans": [ + { + "bbox": [ + 105, + 657, + 505, + 670 + ], + "score": 1.0, + "content": "It is interesting to see from Lemma 3 that the aggregation step in GCN is equivalent to running", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 668, + 505, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 668, + 505, + 680 + ], + "score": 1.0, + "content": "gradient descent for one step with a step size of one. However, this is not able to guarantee that", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 678, + 446, + 693 + ], + "spans": [ + { + "bbox": [ + 106, + 678, + 188, + 692 + ], + "score": 0.93, + "content": "\\mathbf { \\bar { \\Gamma } } D ( \\mathbf { h } ^ { ( k ) } ) \\leq D ( \\mathbf { x } ^ { ( k ) } )", + "type": "inline_equation" + }, + { + "bbox": [ + 188, + 678, + 432, + 693 + ], + "score": 1.0, + "content": "because the step size may be too large to reduce the value of", + "type": "text" + }, + { + "bbox": [ + 433, + 680, + 442, + 689 + ], + "score": 0.84, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 678, + 446, + 693 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26, + "bbox_fs": [ + 105, + 657, + 505, + 693 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 696, + 304, + 708 + ], + "lines": [ + { + "bbox": [ + 105, + 694, + 304, + 709 + ], + "spans": [ + { + "bbox": [ + 105, + 694, + 277, + 709 + ], + "score": 1.0, + "content": "The second lemma is about the Hessian of", + "type": "text" + }, + { + "bbox": [ + 278, + 697, + 301, + 708 + ], + "score": 0.91, + "content": "D ( \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 301, + 694, + 304, + 709 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28, + "bbox_fs": [ + 105, + 694, + 304, + 709 + ] + }, + { + "type": "text", + "bbox": [ + 103, + 719, + 470, + 733 + ], + "lines": [ + { + "bbox": [ + 104, + 717, + 471, + 735 + ], + "spans": [ + { + "bbox": [ + 104, + 717, + 151, + 735 + ], + "score": 1.0, + "content": "Lemma 4", + "type": "text" + }, + { + "bbox": [ + 151, + 720, + 212, + 732 + ], + "score": 0.91, + "content": "\\nabla ^ { 2 } D ( \\mathbf { x } ) \\preceq 2 I _ { ! }", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 717, + 280, + 735 + ], + "score": 1.0, + "content": ", or equivalently,", + "type": "text" + }, + { + "bbox": [ + 280, + 720, + 338, + 732 + ], + "score": 0.93, + "content": "2 I - \\nabla ^ { 2 } D ( \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 717, + 471, + 735 + ], + "score": 1.0, + "content": "is a positive semidefinite matrix.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29, + "bbox_fs": [ + 104, + 717, + 471, + 735 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 81, + 412, + 96 + ], + "lines": [ + { + "bbox": [ + 104, + 78, + 409, + 100 + ], + "spans": [ + { + "bbox": [ + 104, + 78, + 275, + 100 + ], + "score": 1.0, + "content": "Proof. We first calculate the Hessian of", + "type": "text" + }, + { + "bbox": [ + 275, + 81, + 409, + 97 + ], + "score": 0.92, + "content": "\\begin{array} { r } { D ( \\mathbf { x } ) = \\frac { 1 } { 2 } \\sum _ { v _ { i } , v _ { j } } \\widetilde { a } _ { i j } \\| \\mathbf { x } _ { i } - \\mathbf { x } _ { j } \\| _ { 2 } ^ { 2 } } \\end{array}", + "type": "inline_equation" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "interline_equation", + "bbox": [ + 173, + 101, + 437, + 156 + ], + "lines": [ + { + "bbox": [ + 173, + 101, + 437, + 156 + ], + "spans": [ + { + "bbox": [ + 173, + 101, + 437, + 156 + ], + "score": 0.95, + "content": "\\nabla ^ { 2 } D ( { \\bf x } ) = \\left[ \\begin{array} { c c c c } { 1 - \\tilde { a } _ { 1 1 } } & { - \\tilde { a } _ { 1 2 } } & { \\cdots } & { - \\tilde { a } _ { 1 n } } \\\\ { - \\tilde { a } _ { 2 1 } } & { 1 - \\tilde { a } _ { 2 2 } } & { \\cdots } & { - \\tilde { a } _ { 2 n } } \\\\ { \\vdots } & { \\vdots } & { \\ddots } & { \\vdots } \\\\ { - \\tilde { a } _ { n 1 } } & { - \\tilde { a } _ { n 2 } } & { \\cdots } & { 1 - \\tilde { a } _ { n n } } \\end{array} \\right] = I - D ^ { - 1 } A .", + "type": "interline_equation", + "image_path": "b96402ad645d9df2c1f3c865ee7e909678e0770a58d9aa9aa38c1298dd96ff9b.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 173, + 101, + 437, + 119.33333333333333 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 173, + 119.33333333333333, + 437, + 137.66666666666666 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 173, + 137.66666666666666, + 437, + 156.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 161, + 502, + 207 + ], + "lines": [ + { + "bbox": [ + 105, + 159, + 505, + 176 + ], + "spans": [ + { + "bbox": [ + 105, + 159, + 151, + 176 + ], + "score": 1.0, + "content": "Therefore,", + "type": "text" + }, + { + "bbox": [ + 152, + 162, + 272, + 174 + ], + "score": 0.92, + "content": "2 I - \\nabla ^ { 2 } D ( \\mathbf { x } ) = I + D ^ { - 1 } A", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 159, + 304, + 176 + ], + "score": 1.0, + "content": ". Since", + "type": "text" + }, + { + "bbox": [ + 304, + 162, + 333, + 173 + ], + "score": 0.91, + "content": "D ^ { - 1 } A", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 159, + 505, + 176 + ], + "score": 1.0, + "content": "is Markov matrix (i.e., each entry is non-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 172, + 504, + 186 + ], + "spans": [ + { + "bbox": [ + 106, + 172, + 504, + 186 + ], + "score": 1.0, + "content": "negative and the sum of each row is one), its eigenvalues are within the range [-1, 1], so the eigen-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 183, + 505, + 198 + ], + "spans": [ + { + "bbox": [ + 105, + 183, + 146, + 198 + ], + "score": 1.0, + "content": "values of", + "type": "text" + }, + { + "bbox": [ + 146, + 184, + 192, + 195 + ], + "score": 0.92, + "content": "I + D ^ { - 1 } A", + "type": "inline_equation" + }, + { + "bbox": [ + 193, + 183, + 353, + 198 + ], + "score": 1.0, + "content": "are within the range [0, 2]. Therefore,", + "type": "text" + }, + { + "bbox": [ + 354, + 184, + 400, + 195 + ], + "score": 0.92, + "content": "I + D ^ { - 1 } A", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 183, + 505, + 198 + ], + "score": 1.0, + "content": "is a positive semidefinite", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 194, + 504, + 208 + ], + "spans": [ + { + "bbox": [ + 106, + 194, + 190, + 208 + ], + "score": 1.0, + "content": "matrix, and we have", + "type": "text" + }, + { + "bbox": [ + 190, + 195, + 249, + 207 + ], + "score": 0.93, + "content": "\\nabla ^ { 2 } D ( \\mathbf { x } ) \\preceq 2 I", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 194, + 253, + 208 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 494, + 196, + 504, + 207 + ], + "score": 1.0, + "content": "\u0003", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5.5 + }, + { + "type": "text", + "bbox": [ + 107, + 212, + 230, + 223 + ], + "lines": [ + { + "bbox": [ + 106, + 211, + 231, + 225 + ], + "spans": [ + { + "bbox": [ + 106, + 211, + 231, + 225 + ], + "score": 1.0, + "content": "We can now prove Theorem 3:", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 107, + 228, + 506, + 253 + ], + "lines": [ + { + "bbox": [ + 105, + 228, + 505, + 242 + ], + "spans": [ + { + "bbox": [ + 105, + 228, + 168, + 242 + ], + "score": 1.0, + "content": "Proof. Since", + "type": "text" + }, + { + "bbox": [ + 169, + 230, + 178, + 239 + ], + "score": 0.81, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 179, + 228, + 464, + 242 + ], + "score": 1.0, + "content": "is a quadratic function, we perform a second-order Taylor expansion of", + "type": "text" + }, + { + "bbox": [ + 464, + 230, + 474, + 239 + ], + "score": 0.85, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 228, + 505, + 242 + ], + "score": 1.0, + "content": "around", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 239, + 271, + 255 + ], + "spans": [ + { + "bbox": [ + 106, + 240, + 124, + 251 + ], + "score": 0.89, + "content": "\\mathbf { x } ^ { ( k ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 125, + 239, + 271, + 255 + ], + "score": 1.0, + "content": "and obtain the following inequality:", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5 + }, + { + "type": "interline_equation", + "bbox": [ + 113, + 256, + 482, + 340 + ], + "lines": [ + { + "bbox": [ + 113, + 256, + 482, + 340 + ], + "spans": [ + { + "bbox": [ + 113, + 256, + 482, + 340 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { D ( \\mathbf { h } ^ { ( k ) } ) = D ( \\mathbf { x } ^ { ( k ) } ) + \\nabla D ( \\mathbf { x } ^ { ( k ) } ) ^ { \\top } ( \\mathbf { h } ^ { ( k ) } - \\mathbf { x } ^ { ( k ) } ) + \\displaystyle \\frac { 1 } { 2 } ( \\mathbf { h } ^ { ( k ) } - \\mathbf { x } ^ { ( k ) } ) ^ { \\top } \\nabla ^ { 2 } D ( \\mathbf { x } ) ( \\mathbf { h } ^ { ( k ) } - \\mathbf { x } ^ { ( k ) } ) } \\\\ & { \\qquad = D ( \\mathbf { x } ^ { ( k ) } ) - \\nabla D ( \\mathbf { x } ^ { ( k ) } ) ^ { \\top } \\nabla D ( \\mathbf { x } ^ { ( k ) } ) + \\displaystyle \\frac { 1 } { 2 } \\nabla D ( \\mathbf { x } ^ { ( k ) } ) ^ { \\top } \\nabla ^ { 2 } D ( \\mathbf { x } ) \\nabla D ( \\mathbf { x } ^ { ( k ) } ) } \\\\ & { \\qquad \\leq D ( \\mathbf { x } ^ { ( k ) } ) - \\nabla D ( \\mathbf { x } ^ { ( k ) } ) ^ { \\top } \\nabla D ( \\mathbf { x } ^ { ( k ) } ) + \\nabla D ( \\mathbf { x } ^ { ( k ) } ) ^ { \\top } \\nabla D ( \\mathbf { x } ^ { ( k ) } ) } \\\\ & { \\qquad = D ( \\mathbf { x } ^ { ( k ) } ) . } \\end{array}", + "type": "interline_equation", + "image_path": "4444c8d9085720df90157b16d1ad142474203c9a6dd2b2834bf5f7cbc3b36587.jpg" + } + ] + } + ], + "index": 12, + "virtual_lines": [ + { + "bbox": [ + 113, + 256, + 482, + 284.0 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 113, + 284.0, + 482, + 312.0 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 113, + 312.0, + 482, + 340.0 + ], + "spans": [], + "index": 13 + } + ] + }, + { + "type": "title", + "bbox": [ + 107, + 367, + 392, + 380 + ], + "lines": [ + { + "bbox": [ + 105, + 367, + 393, + 381 + ], + "spans": [ + { + "bbox": [ + 105, + 367, + 393, + 381 + ], + "score": 1.0, + "content": "D MORE VISUALIZATION RESULTS ON KARATE CLUB NETWORK", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 106, + 387, + 505, + 499 + ], + "lines": [ + { + "bbox": [ + 105, + 388, + 505, + 401 + ], + "spans": [ + { + "bbox": [ + 105, + 388, + 505, + 401 + ], + "score": 1.0, + "content": "Figure 8 illustrates more visualization of GCN and GCN-LPA on karate club network. In each", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 399, + 505, + 412 + ], + "spans": [ + { + "bbox": [ + 105, + 399, + 505, + 412 + ], + "score": 1.0, + "content": "subfigure, we vary the number of layers from 1 to 4 to examine how the learned representations", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 409, + 505, + 423 + ], + "spans": [ + { + "bbox": [ + 105, + 409, + 505, + 423 + ], + "score": 1.0, + "content": "evolve. The initial node features are one-hot identity vectors, and the dimension of hidden layers", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 422, + 505, + 433 + ], + "spans": [ + { + "bbox": [ + 106, + 422, + 505, + 433 + ], + "score": 1.0, + "content": "and output layer is 2. The transformation matrices are uniformly initialized within range [-1, 1]. We", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 432, + 505, + 445 + ], + "spans": [ + { + "bbox": [ + 105, + 432, + 505, + 445 + ], + "score": 1.0, + "content": "use sigmoid function as the nonlinear activation function. Comparing the four figures in each row,", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 443, + 506, + 456 + ], + "spans": [ + { + "bbox": [ + 105, + 443, + 506, + 456 + ], + "score": 1.0, + "content": "we conclude that the aggregation step and transformation step in GCN and GCN-LPA do benefit the", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 453, + 506, + 466 + ], + "spans": [ + { + "bbox": [ + 105, + 453, + 506, + 466 + ], + "score": 1.0, + "content": "separation of different classes. Comparing Figure 8a and 8c (or Figure 8b and 8d), we conclude that", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 465, + 506, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 465, + 506, + 478 + ], + "score": 1.0, + "content": "more inter-class edges will make the separation harder for GCN (or GCN-LPA). Comparing Figure", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 476, + 505, + 488 + ], + "spans": [ + { + "bbox": [ + 106, + 476, + 505, + 488 + ], + "score": 1.0, + "content": "8a and 8b (or Figure 8c and 8d), we conclude that GCN-LPA is more noise-resistant than GCN,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 486, + 464, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 486, + 464, + 501 + ], + "score": 1.0, + "content": "therefore, GCN-LPA can better differentiate classes and identify clustering substructures.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 19.5 + }, + { + "type": "title", + "bbox": [ + 107, + 512, + 208, + 523 + ], + "lines": [ + { + "bbox": [ + 106, + 511, + 209, + 524 + ], + "spans": [ + { + "bbox": [ + 106, + 511, + 209, + 524 + ], + "score": 1.0, + "content": "E DATASETS DETAILS", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 107, + 532, + 305, + 544 + ], + "lines": [ + { + "bbox": [ + 106, + 532, + 306, + 545 + ], + "spans": [ + { + "bbox": [ + 106, + 532, + 306, + 545 + ], + "score": 1.0, + "content": "The statistics of all datasets are shown in Table 3.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "table", + "bbox": [ + 124, + 551, + 486, + 626 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 124, + 551, + 486, + 626 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 124, + 551, + 486, + 626 + ], + "spans": [ + { + "bbox": [ + 124, + 551, + 486, + 626 + ], + "score": 0.982, + "html": "
CoraCiteseerPubmedCoauthor-CSCoauthor-Phy
#nodes2,7083,32719,71718,33334,493
# edges5,2784,55244,32481,894247,962
# features1,4333,7035006.8058,415
#classes763155
Intra-class edge rate81.0%73.6%80.2%80.8%93.1%
Labeled node rate5.2%3.6%0.3%1.6%0.3%
", + "type": "table", + "image_path": "77c2eac0fec92ae07fc101d3e0ab4eacf5491617963ba5b1c72ed49d0c6125d9.jpg" + } + ] + } + ], + "index": 28, + "virtual_lines": [ + { + "bbox": [ + 124, + 551, + 486, + 576.0 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 124, + 576.0, + 486, + 601.0 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 124, + 601.0, + 486, + 626.0 + ], + "spans": [], + "index": 29 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 238, + 633, + 373, + 644 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 237, + 632, + 374, + 645 + ], + "spans": [ + { + "bbox": [ + 237, + 632, + 374, + 645 + ], + "score": 1.0, + "content": "Table 3: Statistics for all datasets.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + } + ], + "index": 29.0 + }, + { + "type": "title", + "bbox": [ + 107, + 667, + 255, + 678 + ], + "lines": [ + { + "bbox": [ + 106, + 667, + 255, + 679 + ], + "spans": [ + { + "bbox": [ + 106, + 667, + 255, + 679 + ], + "score": 1.0, + "content": "F HYPER-PARAMETER SETTINGS", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 107, + 687, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "score": 1.0, + "content": "The detailed hyper-parameter settings for all datasets are listed in Table 4. In GCN-LPA, we use", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "score": 1.0, + "content": "the same dimension for all hidden layers. Note that the number of GCN layers and the number of", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "LPA iterations can actually be different since GCN and LPA are implemented as two independent", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 720, + 505, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 734 + ], + "score": 1.0, + "content": "modules. We use grid search to determine hyper-parameters on Cora, and perform fine-tuning on", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 33.5 + } + ], + "page_idx": 14, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 26, + 307, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 308, + 39 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 308, + 39 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "15", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 494, + 343, + 505, + 353 + ], + "lines": [ + { + "bbox": [ + 495, + 344, + 505, + 355 + ], + "spans": [ + { + "bbox": [ + 495, + 344, + 505, + 355 + ], + "score": 1.0, + "content": "\u0003", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 81, + 412, + 96 + ], + "lines": [ + { + "bbox": [ + 104, + 78, + 409, + 100 + ], + "spans": [ + { + "bbox": [ + 104, + 78, + 275, + 100 + ], + "score": 1.0, + "content": "Proof. We first calculate the Hessian of", + "type": "text" + }, + { + "bbox": [ + 275, + 81, + 409, + 97 + ], + "score": 0.92, + "content": "\\begin{array} { r } { D ( \\mathbf { x } ) = \\frac { 1 } { 2 } \\sum _ { v _ { i } , v _ { j } } \\widetilde { a } _ { i j } \\| \\mathbf { x } _ { i } - \\mathbf { x } _ { j } \\| _ { 2 } ^ { 2 } } \\end{array}", + "type": "inline_equation" + } + ], + "index": 0 + } + ], + "index": 0, + "bbox_fs": [ + 104, + 78, + 409, + 100 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 173, + 101, + 437, + 156 + ], + "lines": [ + { + "bbox": [ + 173, + 101, + 437, + 156 + ], + "spans": [ + { + "bbox": [ + 173, + 101, + 437, + 156 + ], + "score": 0.95, + "content": "\\nabla ^ { 2 } D ( { \\bf x } ) = \\left[ \\begin{array} { c c c c } { 1 - \\tilde { a } _ { 1 1 } } & { - \\tilde { a } _ { 1 2 } } & { \\cdots } & { - \\tilde { a } _ { 1 n } } \\\\ { - \\tilde { a } _ { 2 1 } } & { 1 - \\tilde { a } _ { 2 2 } } & { \\cdots } & { - \\tilde { a } _ { 2 n } } \\\\ { \\vdots } & { \\vdots } & { \\ddots } & { \\vdots } \\\\ { - \\tilde { a } _ { n 1 } } & { - \\tilde { a } _ { n 2 } } & { \\cdots } & { 1 - \\tilde { a } _ { n n } } \\end{array} \\right] = I - D ^ { - 1 } A .", + "type": "interline_equation", + "image_path": "b96402ad645d9df2c1f3c865ee7e909678e0770a58d9aa9aa38c1298dd96ff9b.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 173, + 101, + 437, + 119.33333333333333 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 173, + 119.33333333333333, + 437, + 137.66666666666666 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 173, + 137.66666666666666, + 437, + 156.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 161, + 502, + 207 + ], + "lines": [ + { + "bbox": [ + 105, + 159, + 505, + 176 + ], + "spans": [ + { + "bbox": [ + 105, + 159, + 151, + 176 + ], + "score": 1.0, + "content": "Therefore,", + "type": "text" + }, + { + "bbox": [ + 152, + 162, + 272, + 174 + ], + "score": 0.92, + "content": "2 I - \\nabla ^ { 2 } D ( \\mathbf { x } ) = I + D ^ { - 1 } A", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 159, + 304, + 176 + ], + "score": 1.0, + "content": ". Since", + "type": "text" + }, + { + "bbox": [ + 304, + 162, + 333, + 173 + ], + "score": 0.91, + "content": "D ^ { - 1 } A", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 159, + 505, + 176 + ], + "score": 1.0, + "content": "is Markov matrix (i.e., each entry is non-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 172, + 504, + 186 + ], + "spans": [ + { + "bbox": [ + 106, + 172, + 504, + 186 + ], + "score": 1.0, + "content": "negative and the sum of each row is one), its eigenvalues are within the range [-1, 1], so the eigen-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 183, + 505, + 198 + ], + "spans": [ + { + "bbox": [ + 105, + 183, + 146, + 198 + ], + "score": 1.0, + "content": "values of", + "type": "text" + }, + { + "bbox": [ + 146, + 184, + 192, + 195 + ], + "score": 0.92, + "content": "I + D ^ { - 1 } A", + "type": "inline_equation" + }, + { + "bbox": [ + 193, + 183, + 353, + 198 + ], + "score": 1.0, + "content": "are within the range [0, 2]. Therefore,", + "type": "text" + }, + { + "bbox": [ + 354, + 184, + 400, + 195 + ], + "score": 0.92, + "content": "I + D ^ { - 1 } A", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 183, + 505, + 198 + ], + "score": 1.0, + "content": "is a positive semidefinite", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 194, + 504, + 208 + ], + "spans": [ + { + "bbox": [ + 106, + 194, + 190, + 208 + ], + "score": 1.0, + "content": "matrix, and we have", + "type": "text" + }, + { + "bbox": [ + 190, + 195, + 249, + 207 + ], + "score": 0.93, + "content": "\\nabla ^ { 2 } D ( \\mathbf { x } ) \\preceq 2 I", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 194, + 253, + 208 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 494, + 196, + 504, + 207 + ], + "score": 1.0, + "content": "\u0003", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5.5, + "bbox_fs": [ + 105, + 159, + 505, + 208 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 212, + 230, + 223 + ], + "lines": [ + { + "bbox": [ + 106, + 211, + 231, + 225 + ], + "spans": [ + { + "bbox": [ + 106, + 211, + 231, + 225 + ], + "score": 1.0, + "content": "We can now prove Theorem 3:", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8, + "bbox_fs": [ + 106, + 211, + 231, + 225 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 228, + 506, + 253 + ], + "lines": [ + { + "bbox": [ + 105, + 228, + 505, + 242 + ], + "spans": [ + { + "bbox": [ + 105, + 228, + 168, + 242 + ], + "score": 1.0, + "content": "Proof. Since", + "type": "text" + }, + { + "bbox": [ + 169, + 230, + 178, + 239 + ], + "score": 0.81, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 179, + 228, + 464, + 242 + ], + "score": 1.0, + "content": "is a quadratic function, we perform a second-order Taylor expansion of", + "type": "text" + }, + { + "bbox": [ + 464, + 230, + 474, + 239 + ], + "score": 0.85, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 228, + 505, + 242 + ], + "score": 1.0, + "content": "around", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 239, + 271, + 255 + ], + "spans": [ + { + "bbox": [ + 106, + 240, + 124, + 251 + ], + "score": 0.89, + "content": "\\mathbf { x } ^ { ( k ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 125, + 239, + 271, + 255 + ], + "score": 1.0, + "content": "and obtain the following inequality:", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5, + "bbox_fs": [ + 105, + 228, + 505, + 255 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 113, + 256, + 482, + 340 + ], + "lines": [ + { + "bbox": [ + 113, + 256, + 482, + 340 + ], + "spans": [ + { + "bbox": [ + 113, + 256, + 482, + 340 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { D ( \\mathbf { h } ^ { ( k ) } ) = D ( \\mathbf { x } ^ { ( k ) } ) + \\nabla D ( \\mathbf { x } ^ { ( k ) } ) ^ { \\top } ( \\mathbf { h } ^ { ( k ) } - \\mathbf { x } ^ { ( k ) } ) + \\displaystyle \\frac { 1 } { 2 } ( \\mathbf { h } ^ { ( k ) } - \\mathbf { x } ^ { ( k ) } ) ^ { \\top } \\nabla ^ { 2 } D ( \\mathbf { x } ) ( \\mathbf { h } ^ { ( k ) } - \\mathbf { x } ^ { ( k ) } ) } \\\\ & { \\qquad = D ( \\mathbf { x } ^ { ( k ) } ) - \\nabla D ( \\mathbf { x } ^ { ( k ) } ) ^ { \\top } \\nabla D ( \\mathbf { x } ^ { ( k ) } ) + \\displaystyle \\frac { 1 } { 2 } \\nabla D ( \\mathbf { x } ^ { ( k ) } ) ^ { \\top } \\nabla ^ { 2 } D ( \\mathbf { x } ) \\nabla D ( \\mathbf { x } ^ { ( k ) } ) } \\\\ & { \\qquad \\leq D ( \\mathbf { x } ^ { ( k ) } ) - \\nabla D ( \\mathbf { x } ^ { ( k ) } ) ^ { \\top } \\nabla D ( \\mathbf { x } ^ { ( k ) } ) + \\nabla D ( \\mathbf { x } ^ { ( k ) } ) ^ { \\top } \\nabla D ( \\mathbf { x } ^ { ( k ) } ) } \\\\ & { \\qquad = D ( \\mathbf { x } ^ { ( k ) } ) . } \\end{array}", + "type": "interline_equation", + "image_path": "4444c8d9085720df90157b16d1ad142474203c9a6dd2b2834bf5f7cbc3b36587.jpg" + } + ] + } + ], + "index": 12, + "virtual_lines": [ + { + "bbox": [ + 113, + 256, + 482, + 284.0 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 113, + 284.0, + 482, + 312.0 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 113, + 312.0, + 482, + 340.0 + ], + "spans": [], + "index": 13 + } + ] + }, + { + "type": "title", + "bbox": [ + 107, + 367, + 392, + 380 + ], + "lines": [ + { + "bbox": [ + 105, + 367, + 393, + 381 + ], + "spans": [ + { + "bbox": [ + 105, + 367, + 393, + 381 + ], + "score": 1.0, + "content": "D MORE VISUALIZATION RESULTS ON KARATE CLUB NETWORK", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 106, + 387, + 505, + 499 + ], + "lines": [ + { + "bbox": [ + 105, + 388, + 505, + 401 + ], + "spans": [ + { + "bbox": [ + 105, + 388, + 505, + 401 + ], + "score": 1.0, + "content": "Figure 8 illustrates more visualization of GCN and GCN-LPA on karate club network. In each", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 399, + 505, + 412 + ], + "spans": [ + { + "bbox": [ + 105, + 399, + 505, + 412 + ], + "score": 1.0, + "content": "subfigure, we vary the number of layers from 1 to 4 to examine how the learned representations", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 409, + 505, + 423 + ], + "spans": [ + { + "bbox": [ + 105, + 409, + 505, + 423 + ], + "score": 1.0, + "content": "evolve. The initial node features are one-hot identity vectors, and the dimension of hidden layers", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 422, + 505, + 433 + ], + "spans": [ + { + "bbox": [ + 106, + 422, + 505, + 433 + ], + "score": 1.0, + "content": "and output layer is 2. The transformation matrices are uniformly initialized within range [-1, 1]. We", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 432, + 505, + 445 + ], + "spans": [ + { + "bbox": [ + 105, + 432, + 505, + 445 + ], + "score": 1.0, + "content": "use sigmoid function as the nonlinear activation function. Comparing the four figures in each row,", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 443, + 506, + 456 + ], + "spans": [ + { + "bbox": [ + 105, + 443, + 506, + 456 + ], + "score": 1.0, + "content": "we conclude that the aggregation step and transformation step in GCN and GCN-LPA do benefit the", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 453, + 506, + 466 + ], + "spans": [ + { + "bbox": [ + 105, + 453, + 506, + 466 + ], + "score": 1.0, + "content": "separation of different classes. Comparing Figure 8a and 8c (or Figure 8b and 8d), we conclude that", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 465, + 506, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 465, + 506, + 478 + ], + "score": 1.0, + "content": "more inter-class edges will make the separation harder for GCN (or GCN-LPA). Comparing Figure", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 476, + 505, + 488 + ], + "spans": [ + { + "bbox": [ + 106, + 476, + 505, + 488 + ], + "score": 1.0, + "content": "8a and 8b (or Figure 8c and 8d), we conclude that GCN-LPA is more noise-resistant than GCN,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 486, + 464, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 486, + 464, + 501 + ], + "score": 1.0, + "content": "therefore, GCN-LPA can better differentiate classes and identify clustering substructures.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 19.5, + "bbox_fs": [ + 105, + 388, + 506, + 501 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 512, + 208, + 523 + ], + "lines": [ + { + "bbox": [ + 106, + 511, + 209, + 524 + ], + "spans": [ + { + "bbox": [ + 106, + 511, + 209, + 524 + ], + "score": 1.0, + "content": "E DATASETS DETAILS", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 107, + 532, + 305, + 544 + ], + "lines": [ + { + "bbox": [ + 106, + 532, + 306, + 545 + ], + "spans": [ + { + "bbox": [ + 106, + 532, + 306, + 545 + ], + "score": 1.0, + "content": "The statistics of all datasets are shown in Table 3.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26, + "bbox_fs": [ + 106, + 532, + 306, + 545 + ] + }, + { + "type": "table", + "bbox": [ + 124, + 551, + 486, + 626 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 124, + 551, + 486, + 626 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 124, + 551, + 486, + 626 + ], + "spans": [ + { + "bbox": [ + 124, + 551, + 486, + 626 + ], + "score": 0.982, + "html": "
CoraCiteseerPubmedCoauthor-CSCoauthor-Phy
#nodes2,7083,32719,71718,33334,493
# edges5,2784,55244,32481,894247,962
# features1,4333,7035006.8058,415
#classes763155
Intra-class edge rate81.0%73.6%80.2%80.8%93.1%
Labeled node rate5.2%3.6%0.3%1.6%0.3%
", + "type": "table", + "image_path": "77c2eac0fec92ae07fc101d3e0ab4eacf5491617963ba5b1c72ed49d0c6125d9.jpg" + } + ] + } + ], + "index": 28, + "virtual_lines": [ + { + "bbox": [ + 124, + 551, + 486, + 576.0 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 124, + 576.0, + 486, + 601.0 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 124, + 601.0, + 486, + 626.0 + ], + "spans": [], + "index": 29 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 238, + 633, + 373, + 644 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 237, + 632, + 374, + 645 + ], + "spans": [ + { + "bbox": [ + 237, + 632, + 374, + 645 + ], + "score": 1.0, + "content": "Table 3: Statistics for all datasets.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + } + ], + "index": 29.0 + }, + { + "type": "title", + "bbox": [ + 107, + 667, + 255, + 678 + ], + "lines": [ + { + "bbox": [ + 106, + 667, + 255, + 679 + ], + "spans": [ + { + "bbox": [ + 106, + 667, + 255, + 679 + ], + "score": 1.0, + "content": "F HYPER-PARAMETER SETTINGS", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 107, + 687, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "score": 1.0, + "content": "The detailed hyper-parameter settings for all datasets are listed in Table 4. In GCN-LPA, we use", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "score": 1.0, + "content": "the same dimension for all hidden layers. Note that the number of GCN layers and the number of", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "LPA iterations can actually be different since GCN and LPA are implemented as two independent", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 720, + 505, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 734 + ], + "score": 1.0, + "content": "modules. We use grid search to determine hyper-parameters on Cora, and perform fine-tuning on", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 619, + 505, + 632 + ], + "spans": [ + { + "bbox": [ + 106, + 619, + 505, + 632 + ], + "score": 1.0, + "content": "other datasets, i.e., varying one hyper-parameter per time to see if the performance can be further", + "type": "text", + "cross_page": true + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 630, + 371, + 642 + ], + "spans": [ + { + "bbox": [ + 106, + 630, + 371, + 642 + ], + "score": 1.0, + "content": "improved. The search spaces for hyper-parameters are as follows:", + "type": "text", + "cross_page": true + } + ], + "index": 9 + } + ], + "index": 33.5, + "bbox_fs": [ + 105, + 687, + 506, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 110, + 74, + 501, + 464 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 110, + 74, + 501, + 464 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 110, + 74, + 501, + 463 + ], + "spans": [ + { + "bbox": [ + 110, + 74, + 501, + 463 + ], + "score": 0.974, + "type": "image", + "image_path": "9a2e196e94e5bcbff2b2721b9a616cc0e0339bd5fb0c29307d9645d266cde7e0.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 110, + 74, + 501, + 204.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 110, + 204.0, + 501, + 334.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 110, + 334.0, + 501, + 464.0 + ], + "spans": [], + "index": 2 + } + ] + } + ], + "index": 1 + }, + { + "type": "table", + "bbox": [ + 114, + 495, + 497, + 580 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 125, + 473, + 484, + 486 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 125, + 473, + 485, + 487 + ], + "spans": [ + { + "bbox": [ + 125, + 473, + 337, + 487 + ], + "score": 1.0, + "content": "Figure 8: Visualization of GCN and GCN-LPA with", + "type": "text" + }, + { + "bbox": [ + 337, + 474, + 361, + 484 + ], + "score": 0.85, + "content": "1 \\sim 4", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 473, + 485, + 487 + ], + "score": 1.0, + "content": "layers on karate club network.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + }, + { + "type": "table_body", + "bbox": [ + 114, + 495, + 497, + 580 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 114, + 495, + 497, + 580 + ], + "spans": [ + { + "bbox": [ + 114, + 495, + 497, + 580 + ], + "score": 0.972, + "html": "
CoraCiteseerPubmedCoauthor-CSCoauthor-Phy
Dimension of hidden layers3216323232
# GCN layers52222
#LPA iterations55123
L2 weight1×10 -45×10-42 ×10-41×10-41×10-4
LPA weight (入)101121
Dropout rate0.2000.20.2
Learning rate0.050.20.10.10.05
", + "type": "table", + "image_path": "b3d29e6a81777378299136259e1aad59a8917f416f984eee1408781522136f24.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 114, + 495, + 497, + 523.3333333333334 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 114, + 523.3333333333334, + 497, + 551.6666666666667 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 114, + 551.6666666666667, + 497, + 580.0000000000001 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 205, + 587, + 405, + 600 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 204, + 586, + 406, + 601 + ], + "spans": [ + { + "bbox": [ + 204, + 586, + 406, + 601 + ], + "score": 1.0, + "content": "Table 4: Hyper-parameter settings for all datasets.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 107, + 619, + 503, + 642 + ], + "lines": [ + { + "bbox": [ + 106, + 619, + 505, + 632 + ], + "spans": [ + { + "bbox": [ + 106, + 619, + 505, + 632 + ], + "score": 1.0, + "content": "other datasets, i.e., varying one hyper-parameter per time to see if the performance can be further", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 630, + 371, + 642 + ], + "spans": [ + { + "bbox": [ + 106, + 630, + 371, + 642 + ], + "score": 1.0, + "content": "improved. The search spaces for hyper-parameters are as follows:", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5 + }, + { + "type": "text", + "bbox": [ + 132, + 650, + 505, + 733 + ], + "lines": [ + { + "bbox": [ + 132, + 650, + 307, + 663 + ], + "spans": [ + { + "bbox": [ + 132, + 650, + 258, + 663 + ], + "score": 1.0, + "content": "• Dimension of hidden layers:", + "type": "text" + }, + { + "bbox": [ + 259, + 651, + 304, + 663 + ], + "score": 0.87, + "content": "\\{ 8 , 1 6 , 3 2 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 650, + 307, + 663 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 132, + 665, + 271, + 678 + ], + "spans": [ + { + "bbox": [ + 132, + 665, + 203, + 678 + ], + "score": 1.0, + "content": "• # GCN layers:", + "type": "text" + }, + { + "bbox": [ + 204, + 665, + 266, + 678 + ], + "score": 0.91, + "content": "\\{ 1 , 2 , 3 , 4 , 5 , 6 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 665, + 271, + 678 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 131, + 678, + 309, + 692 + ], + "spans": [ + { + "bbox": [ + 131, + 678, + 213, + 692 + ], + "score": 1.0, + "content": "• # LPA iterations:", + "type": "text" + }, + { + "bbox": [ + 213, + 680, + 304, + 692 + ], + "score": 0.89, + "content": "\\{ 1 , 2 , 3 , 4 , 5 , 6 , 7 , 8 , 9 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 678, + 309, + 692 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 131, + 692, + 504, + 707 + ], + "spans": [ + { + "bbox": [ + 131, + 692, + 190, + 707 + ], + "score": 1.0, + "content": "• L2 weight:", + "type": "text" + }, + { + "bbox": [ + 190, + 694, + 504, + 706 + ], + "score": 0.58, + "content": "\\{ 1 0 ^ { - 7 } , 2 \\times 1 0 ^ { - 7 } , 5 \\times 1 0 ^ { - 7 } , 1 0 ^ { - 6 } , 2 \\times 1 0 ^ { - 6 } , 5 \\times 1 0 ^ { - 6 } , 1 0 ^ { - 5 } , 2 \\times 1 0 ^ { - 5 } , 5 \\times 1 0 ^ { - 6 } , 1 \\}", + "type": "inline_equation" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 704, + 308, + 718 + ], + "spans": [ + { + "bbox": [ + 141, + 706, + 303, + 718 + ], + "score": 0.65, + "content": "1 0 ^ { - 5 } , 1 0 ^ { - 4 } , 2 \\times 1 0 ^ { - 4 } , 5 \\times 1 0 ^ { - 4 } , 1 0 ^ { - 3 } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 704, + 308, + 718 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 131, + 719, + 303, + 733 + ], + "spans": [ + { + "bbox": [ + 131, + 719, + 192, + 733 + ], + "score": 1.0, + "content": "• LPA weight", + "type": "text" + }, + { + "bbox": [ + 193, + 721, + 206, + 731 + ], + "score": 0.53, + "content": "( \\lambda )", + "type": "inline_equation" + }, + { + "bbox": [ + 206, + 719, + 211, + 733 + ], + "score": 1.0, + "content": ":", + "type": "text" + }, + { + "bbox": [ + 211, + 720, + 298, + 732 + ], + "score": 0.86, + "content": "\\{ 0 , 1 , 2 , 5 , 1 0 , 1 5 , 2 0 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 719, + 303, + 733 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 12.5 + } + ], + "page_idx": 15, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 306, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "16", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 110, + 74, + 501, + 464 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 110, + 74, + 501, + 464 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 110, + 74, + 501, + 463 + ], + "spans": [ + { + "bbox": [ + 110, + 74, + 501, + 463 + ], + "score": 0.974, + "type": "image", + "image_path": "9a2e196e94e5bcbff2b2721b9a616cc0e0339bd5fb0c29307d9645d266cde7e0.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 110, + 74, + 501, + 204.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 110, + 204.0, + 501, + 334.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 110, + 334.0, + 501, + 464.0 + ], + "spans": [], + "index": 2 + } + ] + } + ], + "index": 1 + }, + { + "type": "table", + "bbox": [ + 114, + 495, + 497, + 580 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 125, + 473, + 484, + 486 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 125, + 473, + 485, + 487 + ], + "spans": [ + { + "bbox": [ + 125, + 473, + 337, + 487 + ], + "score": 1.0, + "content": "Figure 8: Visualization of GCN and GCN-LPA with", + "type": "text" + }, + { + "bbox": [ + 337, + 474, + 361, + 484 + ], + "score": 0.85, + "content": "1 \\sim 4", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 473, + 485, + 487 + ], + "score": 1.0, + "content": "layers on karate club network.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + }, + { + "type": "table_body", + "bbox": [ + 114, + 495, + 497, + 580 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 114, + 495, + 497, + 580 + ], + "spans": [ + { + "bbox": [ + 114, + 495, + 497, + 580 + ], + "score": 0.972, + "html": "
CoraCiteseerPubmedCoauthor-CSCoauthor-Phy
Dimension of hidden layers3216323232
# GCN layers52222
#LPA iterations55123
L2 weight1×10 -45×10-42 ×10-41×10-41×10-4
LPA weight (入)101121
Dropout rate0.2000.20.2
Learning rate0.050.20.10.10.05
", + "type": "table", + "image_path": "b3d29e6a81777378299136259e1aad59a8917f416f984eee1408781522136f24.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 114, + 495, + 497, + 523.3333333333334 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 114, + 523.3333333333334, + 497, + 551.6666666666667 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 114, + 551.6666666666667, + 497, + 580.0000000000001 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 205, + 587, + 405, + 600 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 204, + 586, + 406, + 601 + ], + "spans": [ + { + "bbox": [ + 204, + 586, + 406, + 601 + ], + "score": 1.0, + "content": "Table 4: Hyper-parameter settings for all datasets.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 107, + 619, + 503, + 642 + ], + "lines": [], + "index": 8.5, + "bbox_fs": [ + 106, + 619, + 505, + 642 + ], + "lines_deleted": true + }, + { + "type": "list", + "bbox": [ + 132, + 650, + 505, + 733 + ], + "lines": [ + { + "bbox": [ + 132, + 650, + 307, + 663 + ], + "spans": [ + { + "bbox": [ + 132, + 650, + 258, + 663 + ], + "score": 1.0, + "content": "• Dimension of hidden layers:", + "type": "text" + }, + { + "bbox": [ + 259, + 651, + 304, + 663 + ], + "score": 0.87, + "content": "\\{ 8 , 1 6 , 3 2 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 650, + 307, + 663 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 10, + "is_list_end_line": true + }, + { + "bbox": [ + 132, + 665, + 271, + 678 + ], + "spans": [ + { + "bbox": [ + 132, + 665, + 203, + 678 + ], + "score": 1.0, + "content": "• # GCN layers:", + "type": "text" + }, + { + "bbox": [ + 204, + 665, + 266, + 678 + ], + "score": 0.91, + "content": "\\{ 1 , 2 , 3 , 4 , 5 , 6 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 665, + 271, + 678 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 11, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 131, + 678, + 309, + 692 + ], + "spans": [ + { + "bbox": [ + 131, + 678, + 213, + 692 + ], + "score": 1.0, + "content": "• # LPA iterations:", + "type": "text" + }, + { + "bbox": [ + 213, + 680, + 304, + 692 + ], + "score": 0.89, + "content": "\\{ 1 , 2 , 3 , 4 , 5 , 6 , 7 , 8 , 9 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 678, + 309, + 692 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 12, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 131, + 692, + 504, + 707 + ], + "spans": [ + { + "bbox": [ + 131, + 692, + 190, + 707 + ], + "score": 1.0, + "content": "• L2 weight:", + "type": "text" + }, + { + "bbox": [ + 190, + 694, + 504, + 706 + ], + "score": 0.58, + "content": "\\{ 1 0 ^ { - 7 } , 2 \\times 1 0 ^ { - 7 } , 5 \\times 1 0 ^ { - 7 } , 1 0 ^ { - 6 } , 2 \\times 1 0 ^ { - 6 } , 5 \\times 1 0 ^ { - 6 } , 1 0 ^ { - 5 } , 2 \\times 1 0 ^ { - 5 } , 5 \\times 1 0 ^ { - 6 } , 1 \\}", + "type": "inline_equation" + } + ], + "index": 13, + "is_list_start_line": true + }, + { + "bbox": [ + 141, + 704, + 308, + 718 + ], + "spans": [ + { + "bbox": [ + 141, + 706, + 303, + 718 + ], + "score": 0.65, + "content": "1 0 ^ { - 5 } , 1 0 ^ { - 4 } , 2 \\times 1 0 ^ { - 4 } , 5 \\times 1 0 ^ { - 4 } , 1 0 ^ { - 3 } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 704, + 308, + 718 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 14, + "is_list_end_line": true + }, + { + "bbox": [ + 131, + 719, + 303, + 733 + ], + "spans": [ + { + "bbox": [ + 131, + 719, + 192, + 733 + ], + "score": 1.0, + "content": "• LPA weight", + "type": "text" + }, + { + "bbox": [ + 193, + 721, + 206, + 731 + ], + "score": 0.53, + "content": "( \\lambda )", + "type": "inline_equation" + }, + { + "bbox": [ + 206, + 719, + 211, + 733 + ], + "score": 1.0, + "content": ":", + "type": "text" + }, + { + "bbox": [ + 211, + 720, + 298, + 732 + ], + "score": 0.86, + "content": "\\{ 0 , 1 , 2 , 5 , 1 0 , 1 5 , 2 0 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 719, + 303, + 733 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 15, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 132, + 82, + 306, + 95 + ], + "spans": [ + { + "bbox": [ + 132, + 82, + 199, + 95 + ], + "score": 1.0, + "content": "• Dropout rate:", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 199, + 82, + 301, + 95 + ], + "score": 0.86, + "content": "\\{ 0 , 0 . 1 , 0 . 2 , 0 . 3 , 0 . 4 , 0 . 5 \\}", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 301, + 82, + 306, + 95 + ], + "score": 1.0, + "content": ";", + "type": "text", + "cross_page": true + } + ], + "index": 0, + "is_list_end_line": true + }, + { + "bbox": [ + 132, + 96, + 330, + 111 + ], + "spans": [ + { + "bbox": [ + 132, + 96, + 202, + 111 + ], + "score": 1.0, + "content": "• Learning rate:", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 202, + 97, + 326, + 110 + ], + "score": 0.8, + "content": "\\{ 0 . 0 1 , 0 . 0 2 , 0 . 0 5 , 0 . 1 , 0 . 2 , 0 . 5 \\}", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 327, + 96, + 330, + 111 + ], + "score": 1.0, + "content": ".", + "type": "text", + "cross_page": true + } + ], + "index": 1, + "is_list_start_line": true, + "is_list_end_line": true + } + ], + "index": 12.5, + "bbox_fs": [ + 131, + 650, + 504, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 132, + 82, + 329, + 110 + ], + "lines": [ + { + "bbox": [ + 132, + 82, + 306, + 95 + ], + "spans": [ + { + "bbox": [ + 132, + 82, + 199, + 95 + ], + "score": 1.0, + "content": "• Dropout rate:", + "type": "text" + }, + { + "bbox": [ + 199, + 82, + 301, + 95 + ], + "score": 0.86, + "content": "\\{ 0 , 0 . 1 , 0 . 2 , 0 . 3 , 0 . 4 , 0 . 5 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 301, + 82, + 306, + 95 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 132, + 96, + 330, + 111 + ], + "spans": [ + { + "bbox": [ + 132, + 96, + 202, + 111 + ], + "score": 1.0, + "content": "• Learning rate:", + "type": "text" + }, + { + "bbox": [ + 202, + 97, + 326, + 110 + ], + "score": 0.8, + "content": "\\{ 0 . 0 1 , 0 . 0 2 , 0 . 0 5 , 0 . 1 , 0 . 2 , 0 . 5 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 96, + 330, + 111 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + } + ], + "page_idx": 16, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "17", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 106, + 27, + 307, + 38 + ], + "lines": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "list", + "bbox": [ + 132, + 82, + 329, + 110 + ], + "lines": [], + "index": 0.5, + "bbox_fs": [ + 132, + 82, + 330, + 111 + ], + "lines_deleted": true + } + ] + } + ], + "_backend": "pipeline", + "_version_name": "2.2.2" +} \ No newline at end of file diff --git a/parse/train/oh71uL93yay/oh71uL93yay_model.json b/parse/train/oh71uL93yay/oh71uL93yay_model.json new file mode 100644 index 0000000000000000000000000000000000000000..ec681134c888f9bb9bc047596d931520ff42aa38 --- /dev/null +++ b/parse/train/oh71uL93yay/oh71uL93yay_model.json @@ -0,0 +1,28697 @@ +[ + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1246, + 1404, + 1246, + 1404, + 1673, + 298, + 1673 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 398, + 589, + 1302, + 589, + 1302, + 1108, + 398, + 1108 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 1690, + 1402, + 1690, + 1402, + 1842, + 298, + 1842 + ], + "score": 0.967 + }, + { + "category_id": 0, + "poly": [ + 301, + 219, + 1398, + 219, + 1398, + 324, + 301, + 324 + ], + "score": 0.962 + }, + { + "category_id": 2, + "poly": [ + 298, + 1949, + 1401, + 1949, + 1401, + 2033, + 298, + 2033 + ], + "score": 0.953 + }, + { + "category_id": 1, + "poly": [ + 302, + 1858, + 1400, + 1858, + 1400, + 1919, + 302, + 1919 + ], + "score": 0.935 + }, + { + "category_id": 1, + "poly": [ + 313, + 378, + 680, + 378, + 680, + 438, + 313, + 438 + ], + "score": 0.933 + }, + { + "category_id": 0, + "poly": [ + 302, + 1174, + 573, + 1174, + 573, + 1209, + 302, + 1209 + ], + "score": 0.89 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 854, + 75, + 854, + 104, + 298, + 104 + ], + "score": 0.88 + }, + { + "category_id": 0, + "poly": [ + 773, + 520, + 926, + 520, + 926, + 553, + 773, + 553 + ], + "score": 0.844 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 857, + 2088, + 857, + 2112, + 841, + 2112 + ], + "score": 0.692 + }, + { + "category_id": 13, + "poly": [ + 297, + 1277, + 391, + 1277, + 391, + 1306, + 297, + 1306 + ], + "score": 0.9, + "latex": "\\nu \\mathcal { L }" + }, + { + "category_id": 13, + "poly": [ + 1250, + 1892, + 1278, + 1892, + 1278, + 1919, + 1250, + 1919 + ], + "score": 0.84, + "latex": "v _ { b }" + }, + { + "category_id": 13, + "poly": [ + 562, + 1278, + 586, + 1278, + 586, + 1305, + 562, + 1305 + ], + "score": 0.74, + "latex": "\\nu" + }, + { + "category_id": 13, + "poly": [ + 298, + 1720, + 333, + 1720, + 333, + 1748, + 298, + 1748 + ], + "score": 0.71, + "latex": "\\mathcal { M }" + }, + { + "category_id": 13, + "poly": [ + 653, + 1461, + 675, + 1461, + 675, + 1488, + 653, + 1488 + ], + "score": 0.7, + "latex": "\\mathcal { L }" + }, + { + "category_id": 13, + "poly": [ + 725, + 1278, + 747, + 1278, + 747, + 1304, + 725, + 1304 + ], + "score": 0.68, + "latex": "\\mathcal { L }" + }, + { + "category_id": 13, + "poly": [ + 707, + 1552, + 730, + 1552, + 730, + 1579, + 707, + 1579 + ], + "score": 0.59, + "latex": "\\nu" + }, + { + "category_id": 13, + "poly": [ + 1346, + 1246, + 1404, + 1246, + 1404, + 1277, + 1346, + 1277 + ], + "score": 0.4, + "latex": "\\mathcal { M } :" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 219.0, + 1401.0, + 219.0, + 1401.0, + 271.0, + 297.0, + 271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 278.0, + 1010.0, + 278.0, + 1010.0, + 327.0, + 297.0, + 327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 1943.0, + 1405.0, + 1943.0, + 1405.0, + 1984.0, + 330.0, + 1984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1976.0, + 1403.0, + 1976.0, + 1403.0, + 2007.0, + 296.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2005.0, + 834.0, + 2005.0, + 834.0, + 2035.0, + 294.0, + 2035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1171.0, + 579.0, + 1171.0, + 579.0, + 1218.0, + 294.0, + 1218.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 857.0, + 72.0, + 857.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 769.0, + 519.0, + 932.0, + 519.0, + 932.0, + 556.0, + 769.0, + 556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2087.0, + 860.0, + 2087.0, + 860.0, + 2117.0, + 840.0, + 2117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1243.0, + 1345.0, + 1243.0, + 1345.0, + 1281.0, + 293.0, + 1281.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1273.0, + 296.0, + 1273.0, + 296.0, + 1311.0, + 293.0, + 1311.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1273.0, + 561.0, + 1273.0, + 561.0, + 1311.0, + 392.0, + 1311.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 587.0, + 1273.0, + 724.0, + 1273.0, + 724.0, + 1311.0, + 587.0, + 1311.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 748.0, + 1273.0, + 1406.0, + 1273.0, + 1406.0, + 1311.0, + 748.0, + 1311.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1306.0, + 1408.0, + 1306.0, + 1408.0, + 1342.0, + 294.0, + 1342.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1337.0, + 1405.0, + 1337.0, + 1405.0, + 1372.0, + 294.0, + 1372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1366.0, + 1405.0, + 1366.0, + 1405.0, + 1403.0, + 293.0, + 1403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1396.0, + 1404.0, + 1396.0, + 1404.0, + 1433.0, + 293.0, + 1433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1427.0, + 1404.0, + 1427.0, + 1404.0, + 1465.0, + 293.0, + 1465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1458.0, + 652.0, + 1458.0, + 652.0, + 1494.0, + 294.0, + 1494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 676.0, + 1458.0, + 1404.0, + 1458.0, + 1404.0, + 1494.0, + 676.0, + 1494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1490.0, + 1405.0, + 1490.0, + 1405.0, + 1522.0, + 293.0, + 1522.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1519.0, + 1404.0, + 1519.0, + 1404.0, + 1555.0, + 294.0, + 1555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1547.0, + 706.0, + 1547.0, + 706.0, + 1585.0, + 293.0, + 1585.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 731.0, + 1547.0, + 1405.0, + 1547.0, + 1405.0, + 1585.0, + 731.0, + 1585.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1579.0, + 1401.0, + 1579.0, + 1401.0, + 1613.0, + 293.0, + 1613.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1609.0, + 1402.0, + 1609.0, + 1402.0, + 1644.0, + 296.0, + 1644.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1638.0, + 635.0, + 1638.0, + 635.0, + 1677.0, + 293.0, + 1677.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 591.0, + 1306.0, + 591.0, + 1306.0, + 627.0, + 394.0, + 627.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 622.0, + 1306.0, + 622.0, + 1306.0, + 658.0, + 394.0, + 658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 653.0, + 1303.0, + 653.0, + 1303.0, + 686.0, + 395.0, + 686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 682.0, + 1307.0, + 682.0, + 1307.0, + 718.0, + 394.0, + 718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 713.0, + 1307.0, + 713.0, + 1307.0, + 746.0, + 393.0, + 746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 743.0, + 1304.0, + 743.0, + 1304.0, + 779.0, + 394.0, + 779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 773.0, + 1305.0, + 773.0, + 1305.0, + 808.0, + 393.0, + 808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 804.0, + 1305.0, + 804.0, + 1305.0, + 838.0, + 394.0, + 838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 835.0, + 1306.0, + 835.0, + 1306.0, + 869.0, + 393.0, + 869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 391.0, + 865.0, + 1307.0, + 865.0, + 1307.0, + 899.0, + 391.0, + 899.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 896.0, + 1306.0, + 896.0, + 1306.0, + 930.0, + 393.0, + 930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 926.0, + 1306.0, + 926.0, + 1306.0, + 962.0, + 393.0, + 962.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 955.0, + 1306.0, + 955.0, + 1306.0, + 990.0, + 393.0, + 990.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 986.0, + 1306.0, + 986.0, + 1306.0, + 1022.0, + 393.0, + 1022.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1018.0, + 1304.0, + 1018.0, + 1304.0, + 1052.0, + 395.0, + 1052.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1048.0, + 1305.0, + 1048.0, + 1305.0, + 1085.0, + 394.0, + 1085.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1077.0, + 846.0, + 1077.0, + 846.0, + 1114.0, + 393.0, + 1114.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1686.0, + 1406.0, + 1686.0, + 1406.0, + 1725.0, + 293.0, + 1725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 334.0, + 1717.0, + 1406.0, + 1717.0, + 1406.0, + 1754.0, + 334.0, + 1754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1750.0, + 1404.0, + 1750.0, + 1404.0, + 1783.0, + 294.0, + 1783.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1780.0, + 1403.0, + 1780.0, + 1403.0, + 1813.0, + 296.0, + 1813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1809.0, + 672.0, + 1809.0, + 672.0, + 1846.0, + 294.0, + 1846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1856.0, + 1401.0, + 1856.0, + 1401.0, + 1891.0, + 297.0, + 1891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1887.0, + 1249.0, + 1887.0, + 1249.0, + 1922.0, + 294.0, + 1922.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1279.0, + 1887.0, + 1404.0, + 1887.0, + 1404.0, + 1922.0, + 1279.0, + 1922.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 315.0, + 379.0, + 560.0, + 379.0, + 560.0, + 411.0, + 315.0, + 411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 312.0, + 407.0, + 681.0, + 407.0, + 681.0, + 442.0, + 312.0, + 442.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 0, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 367, + 1404, + 367, + 1404, + 826, + 298, + 826 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 297, + 1507, + 1403, + 1507, + 1403, + 1737, + 297, + 1737 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 1305, + 1404, + 1305, + 1404, + 1493, + 298, + 1493 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 297, + 1863, + 1402, + 1863, + 1402, + 2035, + 297, + 2035 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 300, + 842, + 1403, + 842, + 1403, + 965, + 300, + 965 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 1085, + 1403, + 1085, + 1403, + 1208, + 298, + 1208 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 299, + 228, + 1402, + 228, + 1402, + 352, + 299, + 352 + ], + "score": 0.974 + }, + { + "category_id": 0, + "poly": [ + 300, + 1012, + 582, + 1012, + 582, + 1048, + 300, + 1048 + ], + "score": 0.907 + }, + { + "category_id": 0, + "poly": [ + 298, + 1250, + 923, + 1250, + 923, + 1282, + 298, + 1282 + ], + "score": 0.896 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1764, + 1400, + 1764, + 1400, + 1793, + 1366, + 1793 + ], + "score": 0.867 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1809, + 1400, + 1809, + 1400, + 1838, + 1366, + 1838 + ], + "score": 0.865 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 852, + 76, + 852, + 104, + 300, + 104 + ], + "score": 0.85 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.73 + }, + { + "category_id": 8, + "poly": [ + 708, + 1799, + 988, + 1799, + 988, + 1845, + 708, + 1845 + ], + "score": 0.637 + }, + { + "category_id": 8, + "poly": [ + 742, + 1756, + 951, + 1756, + 951, + 1793, + 742, + 1793 + ], + "score": 0.594 + }, + { + "category_id": 8, + "poly": [ + 707, + 1755, + 989, + 1755, + 989, + 1845, + 707, + 1845 + ], + "score": 0.343 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.123 + }, + { + "category_id": 13, + "poly": [ + 995, + 1431, + 1174, + 1431, + 1174, + 1464, + 995, + 1464 + ], + "score": 0.94, + "latex": "\\mathcal { L } = \\{ 1 , \\cdots , c \\}" + }, + { + "category_id": 13, + "poly": [ + 825, + 1931, + 983, + 1931, + 983, + 1971, + 825, + 1971 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { d _ { i i } = \\sum _ { j } a _ { i j } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1013, + 1896, + 1258, + 1896, + 1258, + 1935, + 1013, + 1935 + ], + "score": 0.93, + "latex": "\\tilde { A } _ { s y m } = D ^ { - \\frac { 1 } { 2 } } A D ^ { - \\frac { 1 } { 2 } }" + }, + { + "category_id": 13, + "poly": [ + 448, + 1897, + 617, + 1897, + 617, + 1933, + 448, + 1933 + ], + "score": 0.93, + "latex": "\\tilde { A } _ { r w } = D ^ { - 1 } A" + }, + { + "category_id": 13, + "poly": [ + 297, + 1966, + 412, + 1966, + 412, + 2003, + 297, + 2003 + ], + "score": 0.92, + "latex": "\\tilde { A } = \\tilde { A } _ { r w }" + }, + { + "category_id": 13, + "poly": [ + 379, + 1637, + 663, + 1637, + 663, + 1678, + 379, + 1678 + ], + "score": 0.92, + "latex": "Y ^ { ( 0 ) } = [ y _ { 1 } ^ { ( 0 ) } , \\cdot \\cdot \\cdot , y _ { n } ^ { ( 0 ) } ] ^ { \\top }" + }, + { + "category_id": 13, + "poly": [ + 783, + 1308, + 992, + 1308, + 992, + 1341, + 783, + 1341 + ], + "score": 0.92, + "latex": "\\mathcal { V } = \\{ v _ { 1 } , \\cdots , v _ { n } \\}" + }, + { + "category_id": 13, + "poly": [ + 495, + 1308, + 696, + 1308, + 696, + 1342, + 495, + 1342 + ], + "score": 0.92, + "latex": "\\mathcal { G } = ( \\nu , A , X , Y )" + }, + { + "category_id": 13, + "poly": [ + 298, + 1568, + 593, + 1568, + 593, + 1610, + 298, + 1610 + ], + "score": 0.92, + "latex": "[ y _ { 1 } ^ { ( k ) } , \\cdot \\cdot \\cdot , y _ { n } ^ { ( k ) } ] ^ { \\top } \\in \\mathbb { R } ^ { n \\times c }" + }, + { + "category_id": 13, + "poly": [ + 1210, + 1308, + 1334, + 1308, + 1334, + 1337, + 1210, + 1337 + ], + "score": 0.92, + "latex": "A \\in \\mathbb { R } ^ { n \\times n }" + }, + { + "category_id": 13, + "poly": [ + 1148, + 1637, + 1195, + 1637, + 1195, + 1678, + 1148, + 1678 + ], + "score": 0.91, + "latex": "y _ { i } ^ { ( 0 ) }" + }, + { + "category_id": 13, + "poly": [ + 1313, + 1536, + 1403, + 1536, + 1403, + 1566, + 1313, + 1566 + ], + "score": 0.91, + "latex": "Y ^ { ( k ) } =" + }, + { + "category_id": 13, + "poly": [ + 686, + 1434, + 815, + 1434, + 815, + 1463, + 686, + 1463 + ], + "score": 0.91, + "latex": "y _ { 1 } , \\cdots , y _ { m }" + }, + { + "category_id": 13, + "poly": [ + 1133, + 1607, + 1212, + 1607, + 1212, + 1635, + 1133, + 1635 + ], + "score": 0.9, + "latex": "k = 0" + }, + { + "category_id": 13, + "poly": [ + 999, + 1576, + 1074, + 1576, + 1074, + 1605, + 999, + 1605 + ], + "score": 0.9, + "latex": "k > 0" + }, + { + "category_id": 14, + "poly": [ + 709, + 1753, + 991, + 1753, + 991, + 1847, + 709, + 1847 + ], + "score": 0.89, + "latex": "\\begin{array} { c } { { Y ^ { ( k + 1 ) } = \\tilde { A } Y ^ { ( k ) } , } } \\\\ { { y _ { i } ^ { ( k + 1 ) } = y _ { i } ^ { ( 0 ) } , \\forall i \\leq m . } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 421, + 1463, + 562, + 1463, + 562, + 1491, + 421, + 1491 + ], + "score": 0.89, + "latex": "\\mathcal { M } : \\mathcal { V } \\to \\mathcal { L }" + }, + { + "category_id": 13, + "poly": [ + 866, + 1369, + 932, + 1369, + 932, + 1403, + 866, + 1403 + ], + "score": 0.89, + "latex": "\\mathcal { N } ( v )" + }, + { + "category_id": 13, + "poly": [ + 1242, + 1644, + 1401, + 1644, + 1401, + 1676, + 1242, + 1676 + ], + "score": 0.88, + "latex": "i = 1 , \\cdots , m" + }, + { + "category_id": 13, + "poly": [ + 1156, + 1343, + 1194, + 1343, + 1194, + 1374, + 1156, + 1374 + ], + "score": 0.87, + "latex": "a _ { i j }" + }, + { + "category_id": 13, + "poly": [ + 1335, + 1568, + 1400, + 1568, + 1400, + 1610, + 1335, + 1610 + ], + "score": 0.87, + "latex": "y _ { i } ^ { ( k ) \\top }" + }, + { + "category_id": 13, + "poly": [ + 563, + 1862, + 587, + 1862, + 587, + 1894, + 563, + 1894 + ], + "score": 0.87, + "latex": "\\tilde { A }" + }, + { + "category_id": 13, + "poly": [ + 1249, + 1341, + 1274, + 1341, + 1274, + 1372, + 1249, + 1372 + ], + "score": 0.86, + "latex": "i j" + }, + { + "category_id": 13, + "poly": [ + 654, + 235, + 685, + 235, + 685, + 261, + 654, + 261 + ], + "score": 0.86, + "latex": "v _ { a }" + }, + { + "category_id": 13, + "poly": [ + 704, + 296, + 731, + 296, + 731, + 322, + 704, + 322 + ], + "score": 0.86, + "latex": "v _ { b }" + }, + { + "category_id": 13, + "poly": [ + 894, + 1406, + 923, + 1406, + 923, + 1431, + 894, + 1431 + ], + "score": 0.86, + "latex": "\\mathbf { x } _ { i }" + }, + { + "category_id": 13, + "poly": [ + 770, + 297, + 801, + 297, + 801, + 322, + 770, + 322 + ], + "score": 0.86, + "latex": "v _ { a }" + }, + { + "category_id": 13, + "poly": [ + 473, + 266, + 503, + 266, + 503, + 292, + 473, + 292 + ], + "score": 0.85, + "latex": "v _ { a }" + }, + { + "category_id": 13, + "poly": [ + 639, + 1405, + 665, + 1405, + 665, + 1431, + 639, + 1431 + ], + "score": 0.85, + "latex": "v _ { i }" + }, + { + "category_id": 13, + "poly": [ + 363, + 325, + 393, + 325, + 393, + 353, + 363, + 353 + ], + "score": 0.85, + "latex": "v _ { a }" + }, + { + "category_id": 13, + "poly": [ + 746, + 1374, + 772, + 1374, + 772, + 1400, + 746, + 1400 + ], + "score": 0.85, + "latex": "v _ { i }" + }, + { + "category_id": 13, + "poly": [ + 852, + 1611, + 879, + 1611, + 879, + 1637, + 852, + 1637 + ], + "score": 0.84, + "latex": "v _ { i }" + }, + { + "category_id": 13, + "poly": [ + 1315, + 235, + 1344, + 235, + 1344, + 261, + 1315, + 261 + ], + "score": 0.83, + "latex": "v _ { b }" + }, + { + "category_id": 13, + "poly": [ + 1347, + 1902, + 1374, + 1902, + 1374, + 1929, + 1347, + 1929 + ], + "score": 0.83, + "latex": "D" + }, + { + "category_id": 13, + "poly": [ + 455, + 1433, + 551, + 1433, + 551, + 1460, + 455, + 1460 + ], + "score": 0.83, + "latex": "( m \\ll n )" + }, + { + "category_id": 13, + "poly": [ + 1199, + 1402, + 1226, + 1402, + 1226, + 1428, + 1199, + 1428 + ], + "score": 0.83, + "latex": "X" + }, + { + "category_id": 13, + "poly": [ + 297, + 327, + 325, + 327, + 325, + 353, + 297, + 353 + ], + "score": 0.82, + "latex": "v _ { b }" + }, + { + "category_id": 13, + "poly": [ + 823, + 1372, + 852, + 1372, + 852, + 1403, + 823, + 1403 + ], + "score": 0.82, + "latex": "v _ { j }" + }, + { + "category_id": 13, + "poly": [ + 652, + 1934, + 676, + 1934, + 676, + 1960, + 652, + 1960 + ], + "score": 0.81, + "latex": "A" + }, + { + "category_id": 13, + "poly": [ + 1354, + 1677, + 1374, + 1677, + 1374, + 1702, + 1354, + 1702 + ], + "score": 0.81, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 1018, + 1609, + 1036, + 1609, + 1036, + 1634, + 1018, + 1634 + ], + "score": 0.81, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 502, + 1341, + 530, + 1341, + 530, + 1368, + 502, + 1368 + ], + "score": 0.81, + "latex": "X" + }, + { + "category_id": 13, + "poly": [ + 480, + 1402, + 501, + 1402, + 501, + 1430, + 480, + 1430 + ], + "score": 0.78, + "latex": "\\mathcal { G }" + }, + { + "category_id": 13, + "poly": [ + 916, + 1341, + 942, + 1341, + 942, + 1367, + 916, + 1367 + ], + "score": 0.78, + "latex": "Y" + }, + { + "category_id": 13, + "poly": [ + 1070, + 1403, + 1083, + 1403, + 1083, + 1428, + 1070, + 1428 + ], + "score": 0.78, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 347, + 1436, + 375, + 1436, + 375, + 1458, + 347, + 1458 + ], + "score": 0.75, + "latex": "m" + }, + { + "category_id": 13, + "poly": [ + 358, + 1406, + 376, + 1406, + 376, + 1428, + 358, + 1428 + ], + "score": 0.75, + "latex": "v" + }, + { + "category_id": 13, + "poly": [ + 1234, + 1578, + 1248, + 1578, + 1248, + 1604, + 1234, + 1604 + ], + "score": 0.69, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 298, + 1371, + 322, + 1371, + 322, + 1398, + 298, + 1398 + ], + "score": 0.63, + "latex": "A" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1007.0, + 588.0, + 1007.0, + 588.0, + 1056.0, + 290.0, + 1056.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1250.0, + 925.0, + 1250.0, + 925.0, + 1285.0, + 294.0, + 1285.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 856.0, + 73.0, + 856.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2120.0, + 838.0, + 2120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2120.0, + 838.0, + 2120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 366.0, + 1405.0, + 366.0, + 1405.0, + 404.0, + 294.0, + 404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 398.0, + 1405.0, + 398.0, + 1405.0, + 432.0, + 294.0, + 432.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 429.0, + 1405.0, + 429.0, + 1405.0, + 464.0, + 294.0, + 464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 461.0, + 1406.0, + 461.0, + 1406.0, + 494.0, + 293.0, + 494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 489.0, + 1405.0, + 489.0, + 1405.0, + 524.0, + 294.0, + 524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 523.0, + 1405.0, + 523.0, + 1405.0, + 554.0, + 296.0, + 554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 550.0, + 1405.0, + 550.0, + 1405.0, + 585.0, + 294.0, + 585.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 580.0, + 1405.0, + 580.0, + 1405.0, + 616.0, + 293.0, + 616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 611.0, + 1404.0, + 611.0, + 1404.0, + 646.0, + 294.0, + 646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 641.0, + 1405.0, + 641.0, + 1405.0, + 676.0, + 294.0, + 676.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 673.0, + 1406.0, + 673.0, + 1406.0, + 708.0, + 294.0, + 708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 703.0, + 1405.0, + 703.0, + 1405.0, + 736.0, + 293.0, + 736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 735.0, + 1402.0, + 735.0, + 1402.0, + 766.0, + 297.0, + 766.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 764.0, + 1406.0, + 764.0, + 1406.0, + 799.0, + 296.0, + 799.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 792.0, + 697.0, + 792.0, + 697.0, + 830.0, + 293.0, + 830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1505.0, + 1407.0, + 1505.0, + 1407.0, + 1543.0, + 292.0, + 1543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1533.0, + 1312.0, + 1533.0, + 1312.0, + 1574.0, + 290.0, + 1574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1605.0, + 851.0, + 1605.0, + 851.0, + 1639.0, + 292.0, + 1639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 880.0, + 1605.0, + 1017.0, + 1605.0, + 1017.0, + 1639.0, + 880.0, + 1639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1037.0, + 1605.0, + 1132.0, + 1605.0, + 1132.0, + 1639.0, + 1037.0, + 1639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1213.0, + 1605.0, + 1405.0, + 1605.0, + 1405.0, + 1639.0, + 1213.0, + 1639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1642.0, + 378.0, + 1642.0, + 378.0, + 1675.0, + 292.0, + 1675.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 664.0, + 1625.0, + 1147.0, + 1625.0, + 1147.0, + 1693.0, + 664.0, + 1693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1196.0, + 1625.0, + 1241.0, + 1625.0, + 1241.0, + 1693.0, + 1196.0, + 1693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 1625.0, + 1417.0, + 1625.0, + 1417.0, + 1693.0, + 1402.0, + 1693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1672.0, + 1353.0, + 1672.0, + 1353.0, + 1708.0, + 295.0, + 1708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1375.0, + 1672.0, + 1407.0, + 1672.0, + 1407.0, + 1708.0, + 1375.0, + 1708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1704.0, + 727.0, + 1704.0, + 727.0, + 1741.0, + 295.0, + 1741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 430.0, + 1567.5, + 496.0, + 1567.5, + 496.0, + 1597.0, + 430.0, + 1597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 485.75, + 1566.5, + 1369.75, + 1566.5, + 1369.75, + 1615.5, + 485.75, + 1615.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1304.0, + 494.0, + 1304.0, + 494.0, + 1344.0, + 293.0, + 1344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 697.0, + 1304.0, + 782.0, + 1304.0, + 782.0, + 1344.0, + 697.0, + 1344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 993.0, + 1304.0, + 1209.0, + 1304.0, + 1209.0, + 1344.0, + 993.0, + 1344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1335.0, + 1304.0, + 1406.0, + 1304.0, + 1406.0, + 1344.0, + 1335.0, + 1344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1339.0, + 501.0, + 1339.0, + 501.0, + 1375.0, + 294.0, + 1375.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 531.0, + 1339.0, + 915.0, + 1339.0, + 915.0, + 1375.0, + 531.0, + 1375.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 943.0, + 1339.0, + 1155.0, + 1339.0, + 1155.0, + 1375.0, + 943.0, + 1375.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1195.0, + 1339.0, + 1248.0, + 1339.0, + 1248.0, + 1375.0, + 1195.0, + 1375.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1275.0, + 1339.0, + 1406.0, + 1339.0, + 1406.0, + 1375.0, + 1275.0, + 1375.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1368.0, + 745.0, + 1368.0, + 745.0, + 1404.0, + 323.0, + 1404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 773.0, + 1368.0, + 822.0, + 1368.0, + 822.0, + 1404.0, + 773.0, + 1404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 853.0, + 1368.0, + 865.0, + 1368.0, + 865.0, + 1404.0, + 853.0, + 1404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 933.0, + 1368.0, + 1406.0, + 1368.0, + 1406.0, + 1404.0, + 933.0, + 1404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1399.0, + 357.0, + 1399.0, + 357.0, + 1435.0, + 293.0, + 1435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 377.0, + 1399.0, + 479.0, + 1399.0, + 479.0, + 1435.0, + 377.0, + 1435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 502.0, + 1399.0, + 638.0, + 1399.0, + 638.0, + 1435.0, + 502.0, + 1435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 666.0, + 1399.0, + 893.0, + 1399.0, + 893.0, + 1435.0, + 666.0, + 1435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 924.0, + 1399.0, + 1069.0, + 1399.0, + 1069.0, + 1435.0, + 924.0, + 1435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1084.0, + 1399.0, + 1198.0, + 1399.0, + 1198.0, + 1435.0, + 1084.0, + 1435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1227.0, + 1399.0, + 1404.0, + 1399.0, + 1404.0, + 1435.0, + 1227.0, + 1435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1430.0, + 346.0, + 1430.0, + 346.0, + 1466.0, + 293.0, + 1466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 376.0, + 1430.0, + 454.0, + 1430.0, + 454.0, + 1466.0, + 376.0, + 1466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 552.0, + 1430.0, + 685.0, + 1430.0, + 685.0, + 1466.0, + 552.0, + 1466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 816.0, + 1430.0, + 994.0, + 1430.0, + 994.0, + 1466.0, + 816.0, + 1466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1175.0, + 1430.0, + 1404.0, + 1430.0, + 1404.0, + 1466.0, + 1175.0, + 1466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1461.0, + 420.0, + 1461.0, + 420.0, + 1495.0, + 292.0, + 1495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 563.0, + 1461.0, + 990.0, + 1461.0, + 990.0, + 1495.0, + 563.0, + 1495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1863.0, + 562.0, + 1863.0, + 562.0, + 1902.0, + 292.0, + 1902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 588.0, + 1863.0, + 1406.0, + 1863.0, + 1406.0, + 1902.0, + 588.0, + 1902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1897.0, + 447.0, + 1897.0, + 447.0, + 1938.0, + 291.0, + 1938.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 618.0, + 1897.0, + 1012.0, + 1897.0, + 1012.0, + 1938.0, + 618.0, + 1938.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1259.0, + 1897.0, + 1346.0, + 1897.0, + 1346.0, + 1938.0, + 1259.0, + 1938.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1375.0, + 1897.0, + 1408.0, + 1897.0, + 1408.0, + 1938.0, + 1375.0, + 1938.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1930.0, + 651.0, + 1930.0, + 651.0, + 1970.0, + 292.0, + 1970.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 677.0, + 1930.0, + 824.0, + 1930.0, + 824.0, + 1970.0, + 677.0, + 1970.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 984.0, + 1930.0, + 1407.0, + 1930.0, + 1407.0, + 1970.0, + 984.0, + 1970.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1965.0, + 296.0, + 1965.0, + 296.0, + 2011.0, + 292.0, + 2011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 413.0, + 1965.0, + 1407.0, + 1965.0, + 1407.0, + 2011.0, + 413.0, + 2011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2002.0, + 1406.0, + 2002.0, + 1406.0, + 2036.0, + 295.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 840.0, + 1403.0, + 840.0, + 1403.0, + 877.0, + 295.0, + 877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 873.0, + 1404.0, + 873.0, + 1404.0, + 905.0, + 295.0, + 905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 901.0, + 1405.0, + 901.0, + 1405.0, + 940.0, + 293.0, + 940.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 934.0, + 821.0, + 934.0, + 821.0, + 970.0, + 295.0, + 970.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1085.0, + 1405.0, + 1085.0, + 1405.0, + 1117.0, + 294.0, + 1117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1115.0, + 1403.0, + 1115.0, + 1403.0, + 1150.0, + 293.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1144.0, + 1405.0, + 1144.0, + 1405.0, + 1181.0, + 292.0, + 1181.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1178.0, + 748.0, + 1178.0, + 748.0, + 1209.0, + 293.0, + 1209.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 229.0, + 653.0, + 229.0, + 653.0, + 265.0, + 294.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 686.0, + 229.0, + 1314.0, + 229.0, + 1314.0, + 265.0, + 686.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1345.0, + 229.0, + 1406.0, + 229.0, + 1406.0, + 265.0, + 1345.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 262.0, + 472.0, + 262.0, + 472.0, + 293.0, + 293.0, + 293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 504.0, + 262.0, + 1404.0, + 262.0, + 1404.0, + 293.0, + 504.0, + 293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 291.0, + 703.0, + 291.0, + 703.0, + 327.0, + 294.0, + 327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 732.0, + 291.0, + 769.0, + 291.0, + 769.0, + 327.0, + 732.0, + 327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 802.0, + 291.0, + 1408.0, + 291.0, + 1408.0, + 327.0, + 802.0, + 327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 324.0, + 362.0, + 324.0, + 362.0, + 355.0, + 326.0, + 355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 324.0, + 713.0, + 324.0, + 713.0, + 355.0, + 394.0, + 355.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 1, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 746, + 1405, + 746, + 1405, + 941, + 297, + 941 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 297, + 489, + 1405, + 489, + 1405, + 655, + 297, + 655 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 1848, + 1405, + 1848, + 1405, + 2035, + 298, + 2035 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 1103, + 1405, + 1103, + 1405, + 1246, + 298, + 1246 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 294, + 1430, + 1405, + 1430, + 1405, + 1556, + 294, + 1556 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 1661, + 1404, + 1661, + 1404, + 1757, + 298, + 1757 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 966, + 1404, + 966, + 1404, + 1081, + 298, + 1081 + ], + "score": 0.971 + }, + { + "category_id": 1, + "poly": [ + 298, + 306, + 1403, + 306, + 1403, + 400, + 298, + 400 + ], + "score": 0.971 + }, + { + "category_id": 1, + "poly": [ + 291, + 228, + 1402, + 228, + 1402, + 293, + 291, + 293 + ], + "score": 0.958 + }, + { + "category_id": 8, + "poly": [ + 685, + 414, + 1012, + 414, + 1012, + 473, + 685, + 473 + ], + "score": 0.951 + }, + { + "category_id": 8, + "poly": [ + 610, + 1570, + 1087, + 1570, + 1087, + 1634, + 610, + 1634 + ], + "score": 0.949 + }, + { + "category_id": 1, + "poly": [ + 297, + 1271, + 1404, + 1271, + 1404, + 1347, + 297, + 1347 + ], + "score": 0.948 + }, + { + "category_id": 1, + "poly": [ + 293, + 1369, + 1323, + 1369, + 1323, + 1404, + 293, + 1404 + ], + "score": 0.917 + }, + { + "category_id": 0, + "poly": [ + 299, + 1792, + 621, + 1792, + 621, + 1825, + 299, + 1825 + ], + "score": 0.915 + }, + { + "category_id": 0, + "poly": [ + 298, + 690, + 912, + 690, + 912, + 723, + 298, + 723 + ], + "score": 0.901 + }, + { + "category_id": 9, + "poly": [ + 1366, + 429, + 1400, + 429, + 1400, + 460, + 1366, + 460 + ], + "score": 0.885 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1587, + 1400, + 1587, + 1400, + 1617, + 1366, + 1617 + ], + "score": 0.881 + }, + { + "category_id": 2, + "poly": [ + 297, + 74, + 854, + 74, + 854, + 105, + 297, + 105 + ], + "score": 0.82 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.641 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.472 + }, + { + "category_id": 2, + "poly": [ + 298, + 74, + 854, + 74, + 854, + 105, + 298, + 105 + ], + "score": 0.15 + }, + { + "category_id": 14, + "poly": [ + 683, + 413, + 1014, + 413, + 1014, + 474, + 683, + 474 + ], + "score": 0.94, + "latex": "X ^ { ( k + 1 ) } = \\sigma \\left( \\tilde { A } X ^ { ( k ) } W ^ { ( k ) } \\right) ," + }, + { + "category_id": 14, + "poly": [ + 609, + 1568, + 1088, + 1568, + 1088, + 1635, + 609, + 1635 + ], + "score": 0.94, + "latex": "\\mathbb { E } \\big [ I _ { l } ( v _ { a } , v _ { b } ; k ) \\big ] = \\sum _ { j = 1 } ^ { k } \\beta ^ { j } \\tilde { I } _ { f } ( v _ { a } , v _ { b } ; j ) ." + }, + { + "category_id": 13, + "poly": [ + 297, + 522, + 593, + 522, + 593, + 565, + 297, + 565 + ], + "score": 0.92, + "latex": "X ^ { ( k ) } = [ \\mathbf { x } _ { 1 } ^ { ( k ) } , \\cdot \\cdot \\cdot , \\mathbf { x } _ { n } ^ { ( k ) } ] ^ { \\intercal }" + }, + { + "category_id": 13, + "poly": [ + 595, + 1175, + 638, + 1175, + 638, + 1216, + 595, + 1216 + ], + "score": 0.92, + "latex": "y _ { i } ^ { ( \\cdot ) }" + }, + { + "category_id": 13, + "poly": [ + 912, + 1136, + 955, + 1136, + 955, + 1177, + 912, + 1177 + ], + "score": 0.92, + "latex": "y _ { i } ^ { ( \\cdot ) }" + }, + { + "category_id": 13, + "poly": [ + 1099, + 526, + 1224, + 526, + 1224, + 559, + 1099, + 559 + ], + "score": 0.91, + "latex": "X ^ { ( 0 ) } = X" + }, + { + "category_id": 13, + "poly": [ + 673, + 870, + 724, + 870, + 724, + 907, + 673, + 907 + ], + "score": 0.91, + "latex": "\\mathbf { x } _ { a } ^ { ( k ) }" + }, + { + "category_id": 13, + "poly": [ + 989, + 492, + 1039, + 492, + 1039, + 526, + 989, + 526 + ], + "score": 0.91, + "latex": "\\sigma ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 687, + 1303, + 735, + 1303, + 735, + 1344, + 687, + 1344 + ], + "score": 0.91, + "latex": "y _ { a } ^ { ( k ) }" + }, + { + "category_id": 13, + "poly": [ + 909, + 1304, + 1241, + 1304, + 1241, + 1345, + 909, + 1345 + ], + "score": 0.9, + "latex": "y _ { b } \\colon I _ { l } ( v _ { a } , v _ { b } ; k ) = \\partial y _ { a } ^ { ( k ) } / \\partial y _ { b }" + }, + { + "category_id": 13, + "poly": [ + 378, + 489, + 442, + 489, + 442, + 520, + 378, + 520 + ], + "score": 0.9, + "latex": "W ^ { ( k ) }" + }, + { + "category_id": 13, + "poly": [ + 959, + 999, + 1342, + 999, + 1342, + 1042, + 959, + 1042 + ], + "score": 0.88, + "latex": "I _ { f } ( v _ { a } , v _ { b } ; k ) = \\left. \\mathbb { E } \\big [ \\partial \\mathbf { x } _ { a } ^ { ( k ) } / \\partial \\mathbf { x } _ { b } \\big ] \\right. _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 819, + 1045, + 1376, + 1045, + 1376, + 1083, + 819, + 1083 + ], + "score": 0.87, + "latex": "\\begin{array} { r } { \\tilde { I } _ { f } ( v _ { a } , v _ { b } ; k ) = I _ { f } ( v _ { a } , v _ { b } ; k ) / \\sum _ { v _ { i } \\in \\mathcal { V } } I _ { f } ( v _ { a } , v _ { i } ; k ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 329, + 814, + 360, + 814, + 360, + 840, + 329, + 840 + ], + "score": 0.86, + "latex": "v _ { a }" + }, + { + "category_id": 13, + "poly": [ + 1187, + 882, + 1216, + 882, + 1216, + 908, + 1187, + 908 + ], + "score": 0.86, + "latex": "v _ { a }" + }, + { + "category_id": 13, + "poly": [ + 524, + 754, + 553, + 754, + 553, + 779, + 524, + 779 + ], + "score": 0.86, + "latex": "v _ { a }" + }, + { + "category_id": 13, + "poly": [ + 748, + 1697, + 776, + 1697, + 776, + 1725, + 748, + 1725 + ], + "score": 0.86, + "latex": "v _ { b }" + }, + { + "category_id": 13, + "poly": [ + 1140, + 913, + 1170, + 913, + 1170, + 938, + 1140, + 938 + ], + "score": 0.86, + "latex": "v _ { a }" + }, + { + "category_id": 13, + "poly": [ + 1279, + 1698, + 1310, + 1698, + 1310, + 1725, + 1279, + 1725 + ], + "score": 0.86, + "latex": "v _ { a }" + }, + { + "category_id": 13, + "poly": [ + 1156, + 843, + 1186, + 843, + 1186, + 870, + 1156, + 870 + ], + "score": 0.86, + "latex": "v _ { a }" + }, + { + "category_id": 13, + "poly": [ + 1231, + 1110, + 1261, + 1110, + 1261, + 1136, + 1231, + 1136 + ], + "score": 0.85, + "latex": "v _ { a }" + }, + { + "category_id": 13, + "poly": [ + 981, + 1498, + 1011, + 1498, + 1011, + 1524, + 981, + 1524 + ], + "score": 0.85, + "latex": "v _ { a }" + }, + { + "category_id": 13, + "poly": [ + 1290, + 1277, + 1319, + 1277, + 1319, + 1304, + 1290, + 1304 + ], + "score": 0.85, + "latex": "v _ { a }" + }, + { + "category_id": 13, + "poly": [ + 1110, + 1667, + 1137, + 1667, + 1137, + 1694, + 1110, + 1694 + ], + "score": 0.85, + "latex": "v _ { b }" + }, + { + "category_id": 13, + "poly": [ + 1053, + 1529, + 1082, + 1529, + 1082, + 1554, + 1053, + 1554 + ], + "score": 0.85, + "latex": "v _ { a }" + }, + { + "category_id": 13, + "poly": [ + 1074, + 912, + 1102, + 912, + 1102, + 938, + 1074, + 938 + ], + "score": 0.85, + "latex": "v _ { b }" + }, + { + "category_id": 13, + "poly": [ + 604, + 753, + 632, + 753, + 632, + 779, + 604, + 779 + ], + "score": 0.85, + "latex": "v _ { b }" + }, + { + "category_id": 13, + "poly": [ + 629, + 911, + 656, + 911, + 656, + 938, + 629, + 938 + ], + "score": 0.85, + "latex": "v _ { b }" + }, + { + "category_id": 13, + "poly": [ + 829, + 814, + 857, + 814, + 857, + 840, + 829, + 840 + ], + "score": 0.85, + "latex": "v _ { b }" + }, + { + "category_id": 13, + "poly": [ + 334, + 1698, + 364, + 1698, + 364, + 1725, + 334, + 1725 + ], + "score": 0.85, + "latex": "v _ { a }" + }, + { + "category_id": 13, + "poly": [ + 919, + 1110, + 949, + 1110, + 949, + 1136, + 919, + 1136 + ], + "score": 0.85, + "latex": "v _ { a }" + }, + { + "category_id": 13, + "poly": [ + 1127, + 973, + 1156, + 973, + 1156, + 999, + 1127, + 999 + ], + "score": 0.85, + "latex": "v _ { a }" + }, + { + "category_id": 13, + "poly": [ + 713, + 370, + 731, + 370, + 731, + 395, + 713, + 395 + ], + "score": 0.85, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 916, + 1496, + 943, + 1496, + 943, + 1524, + 916, + 1524 + ], + "score": 0.84, + "latex": "v _ { b }" + }, + { + "category_id": 13, + "poly": [ + 735, + 1468, + 765, + 1468, + 765, + 1493, + 735, + 1493 + ], + "score": 0.84, + "latex": "v _ { a }" + }, + { + "category_id": 13, + "poly": [ + 345, + 1147, + 373, + 1147, + 373, + 1174, + 345, + 1174 + ], + "score": 0.84, + "latex": "v _ { b }" + }, + { + "category_id": 13, + "poly": [ + 792, + 1111, + 820, + 1111, + 820, + 1136, + 792, + 1136 + ], + "score": 0.83, + "latex": "v _ { b }" + }, + { + "category_id": 13, + "poly": [ + 1369, + 882, + 1401, + 882, + 1401, + 908, + 1369, + 908 + ], + "score": 0.83, + "latex": "\\mathbf { x } _ { b }" + }, + { + "category_id": 13, + "poly": [ + 1308, + 1464, + 1329, + 1464, + 1329, + 1494, + 1308, + 1494 + ], + "score": 0.83, + "latex": "\\beta" + }, + { + "category_id": 13, + "poly": [ + 1019, + 1468, + 1047, + 1468, + 1047, + 1493, + 1019, + 1493 + ], + "score": 0.83, + "latex": "v _ { b }" + }, + { + "category_id": 13, + "poly": [ + 545, + 881, + 572, + 881, + 572, + 908, + 545, + 908 + ], + "score": 0.82, + "latex": "v _ { b }" + }, + { + "category_id": 13, + "poly": [ + 514, + 1187, + 541, + 1187, + 541, + 1214, + 514, + 1214 + ], + "score": 0.82, + "latex": "y _ { i }" + }, + { + "category_id": 13, + "poly": [ + 987, + 1529, + 1014, + 1529, + 1014, + 1554, + 987, + 1554 + ], + "score": 0.82, + "latex": "v _ { b }" + }, + { + "category_id": 13, + "poly": [ + 853, + 493, + 872, + 493, + 872, + 521, + 853, + 521 + ], + "score": 0.82, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 1003, + 974, + 1030, + 974, + 1030, + 999, + 1003, + 999 + ], + "score": 0.82, + "latex": "v _ { b }" + }, + { + "category_id": 13, + "poly": [ + 800, + 878, + 818, + 878, + 818, + 905, + 800, + 905 + ], + "score": 0.81, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 684, + 530, + 703, + 530, + 703, + 558, + 684, + 558 + ], + "score": 0.8, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 1217, + 624, + 1245, + 624, + 1245, + 650, + 1217, + 650 + ], + "score": 0.79, + "latex": "Y" + }, + { + "category_id": 13, + "poly": [ + 1048, + 1280, + 1075, + 1280, + 1075, + 1304, + 1048, + 1304 + ], + "score": 0.79, + "latex": "v _ { b }" + }, + { + "category_id": 13, + "poly": [ + 1073, + 1494, + 1092, + 1494, + 1092, + 1520, + 1073, + 1520 + ], + "score": 0.78, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 1383, + 1275, + 1401, + 1275, + 1401, + 1301, + 1383, + 1301 + ], + "score": 0.77, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 1146, + 1525, + 1165, + 1525, + 1165, + 1551, + 1146, + 1551 + ], + "score": 0.76, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 881, + 568, + 896, + 568, + 896, + 589, + 881, + 589 + ], + "score": 0.73, + "latex": "c" + }, + { + "category_id": 13, + "poly": [ + 819, + 998, + 943, + 998, + 943, + 1039, + 819, + 1039 + ], + "score": 0.72, + "latex": "\\partial \\mathbf { x } _ { a } ^ { ( k ) } / \\partial \\mathbf { x } _ { b }" + }, + { + "category_id": 13, + "poly": [ + 1219, + 970, + 1237, + 970, + 1237, + 996, + 1219, + 996 + ], + "score": 0.71, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 360, + 1006, + 393, + 1006, + 393, + 1033, + 360, + 1033 + ], + "score": 0.58, + "latex": "L l" + }, + { + "category_id": 13, + "poly": [ + 851, + 1181, + 909, + 1181, + 909, + 1216, + 851, + 1216 + ], + "score": 0.5, + "latex": "[ 0 , 1 ]" + }, + { + "category_id": 13, + "poly": [ + 1175, + 750, + 1214, + 750, + 1214, + 777, + 1175, + 777 + ], + "score": 0.46, + "latex": "\\mathrm { X u }" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1791.0, + 627.0, + 1791.0, + 627.0, + 1827.0, + 295.0, + 1827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 690.0, + 913.0, + 690.0, + 913.0, + 725.0, + 295.0, + 725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 856.0, + 72.0, + 856.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2118.0, + 838.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2118.0, + 838.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 72.0, + 857.0, + 72.0, + 857.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 749.0, + 523.0, + 749.0, + 523.0, + 782.0, + 297.0, + 782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 554.0, + 749.0, + 603.0, + 749.0, + 603.0, + 782.0, + 554.0, + 782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 633.0, + 749.0, + 1174.0, + 749.0, + 1174.0, + 782.0, + 633.0, + 782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1215.0, + 749.0, + 1405.0, + 749.0, + 1405.0, + 782.0, + 1215.0, + 782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 778.0, + 1403.0, + 778.0, + 1403.0, + 811.0, + 295.0, + 811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 808.0, + 328.0, + 808.0, + 328.0, + 843.0, + 294.0, + 843.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 361.0, + 808.0, + 828.0, + 808.0, + 828.0, + 843.0, + 361.0, + 843.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 858.0, + 808.0, + 1405.0, + 808.0, + 1405.0, + 843.0, + 858.0, + 843.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 838.0, + 1155.0, + 838.0, + 1155.0, + 875.0, + 295.0, + 875.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1187.0, + 838.0, + 1405.0, + 838.0, + 1405.0, + 875.0, + 1187.0, + 875.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 868.0, + 544.0, + 868.0, + 544.0, + 916.0, + 293.0, + 916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 573.0, + 868.0, + 672.0, + 868.0, + 672.0, + 916.0, + 573.0, + 916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 725.0, + 868.0, + 799.0, + 868.0, + 799.0, + 916.0, + 725.0, + 916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 819.0, + 868.0, + 1186.0, + 868.0, + 1186.0, + 916.0, + 819.0, + 916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1217.0, + 868.0, + 1368.0, + 868.0, + 1368.0, + 916.0, + 1217.0, + 916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 868.0, + 1405.0, + 868.0, + 1405.0, + 916.0, + 1402.0, + 916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 908.0, + 628.0, + 908.0, + 628.0, + 941.0, + 295.0, + 941.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 657.0, + 908.0, + 1073.0, + 908.0, + 1073.0, + 941.0, + 657.0, + 941.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1103.0, + 908.0, + 1139.0, + 908.0, + 1139.0, + 941.0, + 1103.0, + 941.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1171.0, + 908.0, + 1300.0, + 908.0, + 1300.0, + 941.0, + 1171.0, + 941.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 485.0, + 377.0, + 485.0, + 377.0, + 531.0, + 292.0, + 531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 443.0, + 485.0, + 852.0, + 485.0, + 852.0, + 531.0, + 443.0, + 531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 873.0, + 485.0, + 988.0, + 485.0, + 988.0, + 531.0, + 873.0, + 531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1040.0, + 485.0, + 1407.0, + 485.0, + 1407.0, + 531.0, + 1040.0, + 531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 522.0, + 296.0, + 522.0, + 296.0, + 564.0, + 289.0, + 564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 594.0, + 526.0, + 683.0, + 526.0, + 683.0, + 565.0, + 594.0, + 565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 704.0, + 526.0, + 1098.0, + 526.0, + 1098.0, + 565.0, + 704.0, + 565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1225.0, + 526.0, + 1406.0, + 526.0, + 1406.0, + 565.0, + 1225.0, + 565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 560.0, + 880.0, + 560.0, + 880.0, + 596.0, + 295.0, + 596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 897.0, + 560.0, + 1403.0, + 560.0, + 1403.0, + 596.0, + 897.0, + 596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 589.0, + 1406.0, + 589.0, + 1406.0, + 628.0, + 292.0, + 628.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 623.0, + 1216.0, + 623.0, + 1216.0, + 656.0, + 295.0, + 656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1246.0, + 623.0, + 1260.0, + 623.0, + 1260.0, + 656.0, + 1246.0, + 656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 531.0, + 521.5, + 597.0, + 521.5, + 597.0, + 552.5, + 531.0, + 552.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 505.0, + 537.5, + 555.0, + 537.5, + 555.0, + 562.5, + 505.0, + 562.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1851.0, + 1405.0, + 1851.0, + 1405.0, + 1883.0, + 296.0, + 1883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1880.0, + 1405.0, + 1880.0, + 1405.0, + 1916.0, + 295.0, + 1916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1909.0, + 1407.0, + 1909.0, + 1407.0, + 1947.0, + 293.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1942.0, + 1405.0, + 1942.0, + 1405.0, + 1977.0, + 295.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1970.0, + 1403.0, + 1970.0, + 1403.0, + 2008.0, + 293.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2000.0, + 1405.0, + 2000.0, + 1405.0, + 2039.0, + 293.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1104.0, + 791.0, + 1104.0, + 791.0, + 1139.0, + 297.0, + 1139.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 821.0, + 1104.0, + 918.0, + 1104.0, + 918.0, + 1139.0, + 821.0, + 1139.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 950.0, + 1104.0, + 1230.0, + 1104.0, + 1230.0, + 1139.0, + 950.0, + 1139.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1262.0, + 1104.0, + 1405.0, + 1104.0, + 1405.0, + 1139.0, + 1262.0, + 1139.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 1138.0, + 344.0, + 1138.0, + 344.0, + 1183.0, + 288.0, + 1183.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 374.0, + 1138.0, + 911.0, + 1138.0, + 911.0, + 1183.0, + 374.0, + 1183.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 956.0, + 1138.0, + 1403.0, + 1138.0, + 1403.0, + 1183.0, + 956.0, + 1183.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1175.0, + 513.0, + 1175.0, + 513.0, + 1219.0, + 289.0, + 1219.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 542.0, + 1175.0, + 594.0, + 1175.0, + 594.0, + 1219.0, + 542.0, + 1219.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 639.0, + 1175.0, + 850.0, + 1175.0, + 850.0, + 1219.0, + 639.0, + 1219.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 910.0, + 1175.0, + 1408.0, + 1175.0, + 1408.0, + 1219.0, + 910.0, + 1219.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1214.0, + 841.0, + 1214.0, + 841.0, + 1245.0, + 296.0, + 1245.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1432.0, + 1403.0, + 1432.0, + 1403.0, + 1465.0, + 296.0, + 1465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1462.0, + 734.0, + 1462.0, + 734.0, + 1495.0, + 292.0, + 1495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 766.0, + 1462.0, + 1018.0, + 1462.0, + 1018.0, + 1495.0, + 766.0, + 1495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1048.0, + 1462.0, + 1307.0, + 1462.0, + 1307.0, + 1495.0, + 1048.0, + 1495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1330.0, + 1462.0, + 1405.0, + 1462.0, + 1405.0, + 1495.0, + 1330.0, + 1495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1494.0, + 915.0, + 1494.0, + 915.0, + 1527.0, + 292.0, + 1527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 944.0, + 1494.0, + 980.0, + 1494.0, + 980.0, + 1527.0, + 944.0, + 1527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1012.0, + 1494.0, + 1072.0, + 1494.0, + 1072.0, + 1527.0, + 1012.0, + 1527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1093.0, + 1494.0, + 1405.0, + 1494.0, + 1405.0, + 1527.0, + 1093.0, + 1527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1524.0, + 986.0, + 1524.0, + 986.0, + 1558.0, + 292.0, + 1558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1015.0, + 1524.0, + 1052.0, + 1524.0, + 1052.0, + 1558.0, + 1015.0, + 1558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1083.0, + 1524.0, + 1145.0, + 1524.0, + 1145.0, + 1558.0, + 1083.0, + 1558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1166.0, + 1524.0, + 1344.0, + 1524.0, + 1344.0, + 1558.0, + 1166.0, + 1558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1662.0, + 1109.0, + 1662.0, + 1109.0, + 1697.0, + 294.0, + 1697.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1138.0, + 1662.0, + 1404.0, + 1662.0, + 1404.0, + 1697.0, + 1138.0, + 1697.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1693.0, + 333.0, + 1693.0, + 333.0, + 1729.0, + 293.0, + 1729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 365.0, + 1693.0, + 747.0, + 1693.0, + 747.0, + 1729.0, + 365.0, + 1729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 777.0, + 1693.0, + 1278.0, + 1693.0, + 1278.0, + 1729.0, + 777.0, + 1729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1311.0, + 1693.0, + 1404.0, + 1693.0, + 1404.0, + 1729.0, + 1311.0, + 1729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1721.0, + 1405.0, + 1721.0, + 1405.0, + 1760.0, + 293.0, + 1760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 963.0, + 1002.0, + 963.0, + 1002.0, + 1003.0, + 292.0, + 1003.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1031.0, + 963.0, + 1126.0, + 963.0, + 1126.0, + 1003.0, + 1031.0, + 1003.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1157.0, + 963.0, + 1218.0, + 963.0, + 1218.0, + 1003.0, + 1157.0, + 1003.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1238.0, + 963.0, + 1406.0, + 963.0, + 1406.0, + 1003.0, + 1238.0, + 1003.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 995.0, + 359.0, + 995.0, + 359.0, + 1046.0, + 291.0, + 1046.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 995.0, + 818.0, + 995.0, + 818.0, + 1046.0, + 394.0, + 1046.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 944.0, + 995.0, + 958.0, + 995.0, + 958.0, + 1046.0, + 944.0, + 1046.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1343.0, + 995.0, + 1406.0, + 995.0, + 1406.0, + 1046.0, + 1343.0, + 1046.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1037.0, + 818.0, + 1037.0, + 818.0, + 1087.0, + 291.0, + 1087.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1377.0, + 1037.0, + 1389.0, + 1037.0, + 1389.0, + 1087.0, + 1377.0, + 1087.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 306.0, + 1404.0, + 306.0, + 1404.0, + 343.0, + 294.0, + 343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 338.0, + 1405.0, + 338.0, + 1405.0, + 372.0, + 294.0, + 372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 369.0, + 712.0, + 369.0, + 712.0, + 401.0, + 292.0, + 401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 732.0, + 369.0, + 770.0, + 369.0, + 770.0, + 401.0, + 732.0, + 401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 231.0, + 1404.0, + 231.0, + 1404.0, + 263.0, + 297.0, + 263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 259.0, + 1133.0, + 259.0, + 1133.0, + 298.0, + 294.0, + 298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1271.0, + 1047.0, + 1271.0, + 1047.0, + 1309.0, + 295.0, + 1309.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1076.0, + 1271.0, + 1289.0, + 1271.0, + 1289.0, + 1309.0, + 1076.0, + 1309.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1320.0, + 1271.0, + 1382.0, + 1271.0, + 1382.0, + 1309.0, + 1320.0, + 1309.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 1271.0, + 1406.0, + 1271.0, + 1406.0, + 1309.0, + 1402.0, + 1309.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 286.0, + 1290.0, + 686.0, + 1290.0, + 686.0, + 1356.0, + 286.0, + 1356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 736.0, + 1290.0, + 908.0, + 1290.0, + 908.0, + 1356.0, + 736.0, + 1356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1242.0, + 1290.0, + 1259.0, + 1290.0, + 1259.0, + 1356.0, + 1242.0, + 1356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1370.0, + 1328.0, + 1370.0, + 1328.0, + 1405.0, + 294.0, + 1405.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 2, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 224, + 1405, + 224, + 1405, + 526, + 296, + 526 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 297, + 991, + 1404, + 991, + 1404, + 1205, + 297, + 1205 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 297, + 1574, + 1404, + 1574, + 1404, + 1729, + 297, + 1729 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 297, + 775, + 1404, + 775, + 1404, + 899, + 297, + 899 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 296, + 1741, + 1405, + 1741, + 1405, + 1932, + 296, + 1932 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 546, + 1405, + 546, + 1405, + 639, + 298, + 639 + ], + "score": 0.971 + }, + { + "category_id": 1, + "poly": [ + 298, + 1247, + 1404, + 1247, + 1404, + 1341, + 298, + 1341 + ], + "score": 0.956 + }, + { + "category_id": 8, + "poly": [ + 522, + 906, + 1176, + 906, + 1176, + 984, + 522, + 984 + ], + "score": 0.952 + }, + { + "category_id": 1, + "poly": [ + 295, + 1445, + 1396, + 1445, + 1396, + 1508, + 295, + 1508 + ], + "score": 0.95 + }, + { + "category_id": 8, + "poly": [ + 628, + 645, + 1076, + 645, + 1076, + 717, + 628, + 717 + ], + "score": 0.949 + }, + { + "category_id": 8, + "poly": [ + 589, + 1513, + 1107, + 1513, + 1107, + 1567, + 589, + 1567 + ], + "score": 0.949 + }, + { + "category_id": 2, + "poly": [ + 297, + 1948, + 1402, + 1948, + 1402, + 2033, + 297, + 2033 + ], + "score": 0.948 + }, + { + "category_id": 8, + "poly": [ + 560, + 1205, + 1135, + 1205, + 1135, + 1244, + 560, + 1244 + ], + "score": 0.947 + }, + { + "category_id": 8, + "poly": [ + 492, + 1347, + 1207, + 1347, + 1207, + 1427, + 492, + 1427 + ], + "score": 0.944 + }, + { + "category_id": 1, + "poly": [ + 297, + 723, + 995, + 723, + 995, + 758, + 297, + 758 + ], + "score": 0.93 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 854, + 75, + 854, + 105, + 298, + 105 + ], + "score": 0.909 + }, + { + "category_id": 9, + "poly": [ + 1366, + 922, + 1400, + 922, + 1400, + 951, + 1366, + 951 + ], + "score": 0.883 + }, + { + "category_id": 9, + "poly": [ + 1365, + 654, + 1400, + 654, + 1400, + 683, + 1365, + 683 + ], + "score": 0.881 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1515, + 1400, + 1515, + 1400, + 1545, + 1366, + 1545 + ], + "score": 0.879 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1364, + 1400, + 1364, + 1400, + 1393, + 1366, + 1393 + ], + "score": 0.877 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1211, + 1400, + 1211, + 1400, + 1241, + 1366, + 1241 + ], + "score": 0.873 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 858, + 2088, + 858, + 2111, + 840, + 2111 + ], + "score": 0.777 + }, + { + "category_id": 14, + "poly": [ + 521, + 901, + 1176, + 901, + 1176, + 987, + 521, + 987 + ], + "score": 0.94, + "latex": "A ^ { * } = \\underset { A } { \\arg \\operatorname* { m i n } } L _ { l p a } ( A ) = \\underset { A } { \\arg \\operatorname* { m i n } } \\ \\frac { 1 } { m } \\sum _ { v _ { a } : a \\leq m } J ( \\hat { y } _ { a } ^ { l p a } , y _ { a } ) ," + }, + { + "category_id": 14, + "poly": [ + 626, + 643, + 1074, + 643, + 1074, + 718, + 626, + 718 + ], + "score": 0.93, + "latex": "\\sum _ { v _ { b } : y _ { b } = y _ { a } } I _ { l } ( v _ { a } , v _ { b } ; k ) \\propto \\mathrm { P r } \\big ( \\hat { y } _ { a } ^ { l p a } = y _ { a } \\big ) ," + }, + { + "category_id": 13, + "poly": [ + 1218, + 777, + 1283, + 777, + 1283, + 811, + 1218, + 811 + ], + "score": 0.92, + "latex": "\\{ a _ { i j } \\}" + }, + { + "category_id": 13, + "poly": [ + 1019, + 225, + 1401, + 225, + 1401, + 269, + 1019, + 269 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { \\sum _ { i \\in \\mathcal { L } } \\sum _ { v _ { a } , v _ { b } : y _ { a } = i , y _ { b } = i } \\tilde { I } _ { f } ( v _ { a } , v _ { b } ) } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 490, + 1343, + 1206, + 1343, + 1206, + 1429, + 490, + 1429 + ], + "score": 0.92, + "latex": "W ^ { * } = \\arg \\operatorname* { m i n } _ { W } L _ { g c n } ( W , A ^ { * } ) = \\arg \\operatorname* { m i n } _ { W } \\frac { 1 } { m } \\sum _ { v _ { a } : a \\leq m } J ( \\hat { y } _ { a } ^ { g c n } , y _ { a } ) ," + }, + { + "category_id": 13, + "poly": [ + 911, + 1575, + 1007, + 1575, + 1007, + 1608, + 911, + 1608 + ], + "score": 0.92, + "latex": "L _ { l p a } ( A )" + }, + { + "category_id": 13, + "poly": [ + 668, + 991, + 717, + 991, + 717, + 1027, + 668, + 1027 + ], + "score": 0.92, + "latex": "\\hat { y } _ { a } ^ { l p a }" + }, + { + "category_id": 13, + "poly": [ + 371, + 722, + 419, + 722, + 419, + 757, + 371, + 757 + ], + "score": 0.92, + "latex": "\\hat { y } _ { a } ^ { l p a }" + }, + { + "category_id": 14, + "poly": [ + 589, + 1510, + 1108, + 1510, + 1108, + 1570, + 589, + 1570 + ], + "score": 0.91, + "latex": "W ^ { * } , A ^ { * } = \\underset { W , A } { \\arg \\operatorname* { m i n } } \\ L _ { g c n } ( W , A ) + \\lambda L _ { l p a } ( A ) ," + }, + { + "category_id": 13, + "poly": [ + 549, + 294, + 683, + 294, + 683, + 327, + 549, + 327 + ], + "score": 0.91, + "latex": "d ^ { ( 0 ) } \\times d ^ { ( \\mathrm { \\bar { \\tiny { K } } } ) }" + }, + { + "category_id": 13, + "poly": [ + 787, + 1836, + 939, + 1836, + 939, + 1864, + 787, + 1864 + ], + "score": 0.91, + "latex": "M \\circ A = A ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 386, + 1250, + 439, + 1250, + 439, + 1282, + 386, + 1282 + ], + "score": 0.91, + "latex": "\\hat { y } _ { a } ^ { g c n }" + }, + { + "category_id": 13, + "poly": [ + 766, + 1027, + 850, + 1027, + 850, + 1055, + 766, + 1055 + ], + "score": 0.91, + "latex": "a \\leq m" + }, + { + "category_id": 13, + "poly": [ + 799, + 294, + 854, + 294, + 854, + 326, + 799, + 326 + ], + "score": 0.91, + "latex": "d ^ { ( K ) }" + }, + { + "category_id": 13, + "poly": [ + 940, + 430, + 1171, + 430, + 1171, + 468, + 940, + 468 + ], + "score": 0.91, + "latex": "\\scriptstyle \\sum _ { v _ { b } : y _ { b } = y _ { a } } I _ { l } ( v _ { a } , v _ { b } )" + }, + { + "category_id": 13, + "poly": [ + 941, + 1867, + 1292, + 1867, + 1292, + 1905, + 941, + 1905 + ], + "score": 0.9, + "latex": "M _ { i j } = \\log \\left( \\exp ( \\mathbf { x } _ { i } ^ { \\top } \\mathbf { H } \\mathbf { x } _ { j } ) + 1 \\right)" + }, + { + "category_id": 13, + "poly": [ + 627, + 1246, + 692, + 1246, + 692, + 1277, + 627, + 1277 + ], + "score": 0.9, + "latex": "X ^ { ( K ) }" + }, + { + "category_id": 13, + "poly": [ + 692, + 393, + 1395, + 393, + 1395, + 432, + 692, + 432 + ], + "score": 0.9, + "latex": "\\begin{array} { r } { \\sum _ { i \\in \\mathcal { L } } \\sum _ { v _ { a } , v _ { b } : y _ { a } = i , y _ { b } = i } I _ { l } ( v _ { a } , v _ { b } ) = \\sum _ { v _ { a } } \\sum _ { v _ { b } : y _ { b } = y _ { a } } I _ { l } ( v _ { a } , v _ { b } ) } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 561, + 1203, + 1138, + 1203, + 1138, + 1245, + 561, + 1245 + ], + "score": 0.9, + "latex": "X ^ { ( k + 1 ) } = \\sigma ( A ^ { * } X ^ { ( k ) } W ^ { ( k ) } ) , k = 0 , 1 , \\cdots , K - 1 ." + }, + { + "category_id": 13, + "poly": [ + 1018, + 358, + 1393, + 358, + 1393, + 395, + 1018, + 395 + ], + "score": 0.89, + "latex": "\\begin{array} { r } { \\dot { \\sum _ { i \\in \\mathcal { L } } } \\sum _ { v _ { a } , v _ { b } : y _ { a } = i , y _ { b } = i } I _ { l } ( v _ { a } , v _ { b } ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1112, + 1836, + 1161, + 1836, + 1161, + 1868, + 1112, + 1868 + ], + "score": 0.89, + "latex": "M _ { i j }" + }, + { + "category_id": 13, + "poly": [ + 748, + 1744, + 783, + 1744, + 783, + 1772, + 748, + 1772 + ], + "score": 0.88, + "latex": "A ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 1151, + 839, + 1187, + 839, + 1187, + 867, + 1151, + 867 + ], + "score": 0.87, + "latex": "A ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 698, + 294, + 745, + 294, + 745, + 327, + 698, + 327 + ], + "score": 0.87, + "latex": "\\bar { \\boldsymbol { d } } ^ { ( 0 ) }" + }, + { + "category_id": 13, + "poly": [ + 1216, + 1146, + 1252, + 1146, + 1252, + 1174, + 1216, + 1174 + ], + "score": 0.87, + "latex": "A ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 692, + 728, + 721, + 728, + 721, + 755, + 692, + 755 + ], + "score": 0.87, + "latex": "v _ { a }" + }, + { + "category_id": 13, + "poly": [ + 1237, + 1025, + 1272, + 1025, + 1272, + 1053, + 1237, + 1053 + ], + "score": 0.87, + "latex": "A ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 932, + 1028, + 963, + 1028, + 963, + 1055, + 932, + 1055 + ], + "score": 0.87, + "latex": "v _ { a }" + }, + { + "category_id": 13, + "poly": [ + 1195, + 1253, + 1226, + 1253, + 1226, + 1280, + 1195, + 1280 + ], + "score": 0.87, + "latex": "v _ { a }" + }, + { + "category_id": 13, + "poly": [ + 1003, + 612, + 1033, + 612, + 1033, + 639, + 1003, + 639 + ], + "score": 0.86, + "latex": "v _ { a }" + }, + { + "category_id": 13, + "poly": [ + 766, + 997, + 795, + 997, + 795, + 1025, + 766, + 1025 + ], + "score": 0.86, + "latex": "y _ { a }" + }, + { + "category_id": 13, + "poly": [ + 359, + 611, + 389, + 611, + 389, + 640, + 359, + 640 + ], + "score": 0.86, + "latex": "y _ { a }" + }, + { + "category_id": 13, + "poly": [ + 518, + 812, + 548, + 812, + 548, + 838, + 518, + 838 + ], + "score": 0.86, + "latex": "v _ { a }" + }, + { + "category_id": 13, + "poly": [ + 489, + 613, + 518, + 613, + 518, + 639, + 489, + 639 + ], + "score": 0.86, + "latex": "v _ { a }" + }, + { + "category_id": 13, + "poly": [ + 1205, + 997, + 1234, + 997, + 1234, + 1024, + 1205, + 1024 + ], + "score": 0.86, + "latex": "v _ { a }" + }, + { + "category_id": 13, + "poly": [ + 575, + 1029, + 605, + 1029, + 605, + 1055, + 575, + 1055 + ], + "score": 0.86, + "latex": "v _ { a }" + }, + { + "category_id": 13, + "poly": [ + 504, + 843, + 533, + 843, + 533, + 869, + 504, + 869 + ], + "score": 0.85, + "latex": "v _ { a }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1116, + 334, + 1116, + 334, + 1143, + 298, + 1143 + ], + "score": 0.85, + "latex": "A ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 719, + 582, + 749, + 582, + 749, + 608, + 719, + 608 + ], + "score": 0.85, + "latex": "v _ { a }" + }, + { + "category_id": 13, + "poly": [ + 656, + 1953, + 689, + 1953, + 689, + 1975, + 656, + 1975 + ], + "score": 0.85, + "latex": "A ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 482, + 581, + 511, + 581, + 511, + 609, + 482, + 609 + ], + "score": 0.84, + "latex": "y _ { a }" + }, + { + "category_id": 13, + "poly": [ + 1204, + 611, + 1234, + 611, + 1234, + 640, + 1204, + 640 + ], + "score": 0.84, + "latex": "y _ { a }" + }, + { + "category_id": 13, + "poly": [ + 298, + 583, + 327, + 583, + 327, + 608, + 298, + 608 + ], + "score": 0.83, + "latex": "v _ { a }" + }, + { + "category_id": 13, + "poly": [ + 1125, + 469, + 1155, + 469, + 1155, + 494, + 1125, + 494 + ], + "score": 0.82, + "latex": "v _ { a }" + }, + { + "category_id": 13, + "poly": [ + 371, + 996, + 392, + 996, + 392, + 1022, + 371, + 1022 + ], + "score": 0.82, + "latex": "J" + }, + { + "category_id": 13, + "poly": [ + 497, + 1979, + 517, + 1979, + 517, + 2005, + 497, + 2005 + ], + "score": 0.81, + "latex": "\\mathcal { G }" + }, + { + "category_id": 13, + "poly": [ + 1155, + 1951, + 1174, + 1951, + 1174, + 1977, + 1155, + 1977 + ], + "score": 0.81, + "latex": "\\mathcal { G }" + }, + { + "category_id": 13, + "poly": [ + 657, + 467, + 687, + 467, + 687, + 494, + 657, + 494 + ], + "score": 0.81, + "latex": "v _ { a }" + }, + { + "category_id": 13, + "poly": [ + 372, + 1576, + 392, + 1576, + 392, + 1602, + 372, + 1602 + ], + "score": 0.81, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 907, + 1147, + 930, + 1147, + 930, + 1173, + 907, + 1173 + ], + "score": 0.79, + "latex": "A" + }, + { + "category_id": 13, + "poly": [ + 493, + 1253, + 511, + 1253, + 511, + 1276, + 493, + 1276 + ], + "score": 0.79, + "latex": "a" + }, + { + "category_id": 13, + "poly": [ + 1204, + 1607, + 1228, + 1607, + 1228, + 1633, + 1204, + 1633 + ], + "score": 0.78, + "latex": "A" + }, + { + "category_id": 13, + "poly": [ + 813, + 726, + 831, + 726, + 831, + 752, + 813, + 752 + ], + "score": 0.78, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 687, + 1607, + 709, + 1607, + 709, + 1633, + 687, + 1633 + ], + "score": 0.77, + "latex": "A" + }, + { + "category_id": 13, + "poly": [ + 1172, + 1806, + 1205, + 1806, + 1205, + 1833, + 1172, + 1833 + ], + "score": 0.77, + "latex": "M" + }, + { + "category_id": 13, + "poly": [ + 377, + 1837, + 402, + 1837, + 402, + 1863, + 377, + 1863 + ], + "score": 0.72, + "latex": "A" + }, + { + "category_id": 13, + "poly": [ + 307, + 265, + 330, + 265, + 330, + 293, + 307, + 293 + ], + "score": 0.68, + "latex": "\\mathcal { L }" + }, + { + "category_id": 13, + "poly": [ + 1124, + 1606, + 1156, + 1606, + 1156, + 1634, + 1124, + 1634 + ], + "score": 0.62, + "latex": "W" + }, + { + "category_id": 13, + "poly": [ + 1271, + 609, + 1320, + 609, + 1320, + 636, + 1271, + 636 + ], + "score": 0.58, + "latex": "L P A" + }, + { + "category_id": 13, + "poly": [ + 1373, + 1869, + 1402, + 1869, + 1402, + 1898, + 1373, + 1898 + ], + "score": 0.39, + "latex": "\\mathbf { H }" + }, + { + "category_id": 13, + "poly": [ + 938, + 726, + 988, + 726, + 988, + 752, + 938, + 752 + ], + "score": 0.31, + "latex": "L P A" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 1943.0, + 655.0, + 1943.0, + 655.0, + 1984.0, + 330.0, + 1984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 690.0, + 1943.0, + 1154.0, + 1943.0, + 1154.0, + 1984.0, + 690.0, + 1984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1175.0, + 1943.0, + 1407.0, + 1943.0, + 1407.0, + 1984.0, + 1175.0, + 1984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1977.0, + 496.0, + 1977.0, + 496.0, + 2008.0, + 292.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 518.0, + 1977.0, + 1406.0, + 1977.0, + 1406.0, + 2008.0, + 518.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2002.0, + 416.0, + 2002.0, + 416.0, + 2036.0, + 294.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 857.0, + 73.0, + 857.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 863.0, + 2085.0, + 863.0, + 2118.0, + 838.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 286.0, + 221.0, + 1018.0, + 221.0, + 1018.0, + 278.0, + 286.0, + 278.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 221.0, + 1411.0, + 221.0, + 1411.0, + 278.0, + 1402.0, + 278.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 263.0, + 306.0, + 263.0, + 306.0, + 298.0, + 295.0, + 298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 263.0, + 1405.0, + 263.0, + 1405.0, + 298.0, + 331.0, + 298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 291.0, + 548.0, + 291.0, + 548.0, + 332.0, + 291.0, + 332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 684.0, + 291.0, + 697.0, + 291.0, + 697.0, + 332.0, + 684.0, + 332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 746.0, + 291.0, + 798.0, + 291.0, + 798.0, + 332.0, + 746.0, + 332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 855.0, + 291.0, + 1406.0, + 291.0, + 1406.0, + 332.0, + 855.0, + 332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 326.0, + 1406.0, + 326.0, + 1406.0, + 365.0, + 293.0, + 365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 351.0, + 1017.0, + 351.0, + 1017.0, + 410.0, + 288.0, + 410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 351.0, + 1411.0, + 351.0, + 1411.0, + 410.0, + 1394.0, + 410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 286.0, + 385.0, + 691.0, + 385.0, + 691.0, + 443.0, + 286.0, + 443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1396.0, + 385.0, + 1411.0, + 385.0, + 1411.0, + 443.0, + 1396.0, + 443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 286.0, + 419.0, + 939.0, + 419.0, + 939.0, + 482.0, + 286.0, + 482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1172.0, + 419.0, + 1413.0, + 419.0, + 1413.0, + 482.0, + 1172.0, + 482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 460.0, + 656.0, + 460.0, + 656.0, + 498.0, + 291.0, + 498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 688.0, + 460.0, + 1124.0, + 460.0, + 1124.0, + 498.0, + 688.0, + 498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1156.0, + 460.0, + 1405.0, + 460.0, + 1405.0, + 498.0, + 1156.0, + 498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 492.0, + 398.0, + 492.0, + 398.0, + 530.0, + 293.0, + 530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 989.0, + 370.0, + 989.0, + 370.0, + 1031.0, + 294.0, + 1031.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 989.0, + 667.0, + 989.0, + 667.0, + 1031.0, + 393.0, + 1031.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 718.0, + 989.0, + 765.0, + 989.0, + 765.0, + 1031.0, + 718.0, + 1031.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 796.0, + 989.0, + 1204.0, + 989.0, + 1204.0, + 1031.0, + 796.0, + 1031.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1235.0, + 989.0, + 1406.0, + 989.0, + 1406.0, + 1031.0, + 1235.0, + 1031.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1023.0, + 574.0, + 1023.0, + 574.0, + 1058.0, + 295.0, + 1058.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 606.0, + 1023.0, + 765.0, + 1023.0, + 765.0, + 1058.0, + 606.0, + 1058.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 851.0, + 1023.0, + 931.0, + 1023.0, + 931.0, + 1058.0, + 851.0, + 1058.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 964.0, + 1023.0, + 1236.0, + 1023.0, + 1236.0, + 1058.0, + 964.0, + 1058.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1273.0, + 1023.0, + 1405.0, + 1023.0, + 1405.0, + 1058.0, + 1273.0, + 1058.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1054.0, + 1405.0, + 1054.0, + 1405.0, + 1087.0, + 294.0, + 1087.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1083.0, + 1405.0, + 1083.0, + 1405.0, + 1119.0, + 294.0, + 1119.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1114.0, + 297.0, + 1114.0, + 297.0, + 1151.0, + 294.0, + 1151.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 335.0, + 1114.0, + 1404.0, + 1114.0, + 1404.0, + 1151.0, + 335.0, + 1151.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1146.0, + 906.0, + 1146.0, + 906.0, + 1180.0, + 294.0, + 1180.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 931.0, + 1146.0, + 1215.0, + 1146.0, + 1215.0, + 1180.0, + 931.0, + 1180.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1253.0, + 1146.0, + 1406.0, + 1146.0, + 1406.0, + 1180.0, + 1253.0, + 1180.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1178.0, + 460.0, + 1178.0, + 460.0, + 1207.0, + 293.0, + 1207.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1572.0, + 371.0, + 1572.0, + 371.0, + 1613.0, + 295.0, + 1613.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1572.0, + 910.0, + 1572.0, + 910.0, + 1613.0, + 393.0, + 1613.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1008.0, + 1572.0, + 1407.0, + 1572.0, + 1407.0, + 1613.0, + 1008.0, + 1613.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1604.0, + 686.0, + 1604.0, + 686.0, + 1641.0, + 295.0, + 1641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 710.0, + 1604.0, + 1123.0, + 1604.0, + 1123.0, + 1641.0, + 710.0, + 1641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1157.0, + 1604.0, + 1203.0, + 1604.0, + 1203.0, + 1641.0, + 1157.0, + 1641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1229.0, + 1604.0, + 1404.0, + 1604.0, + 1404.0, + 1641.0, + 1229.0, + 1641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1634.0, + 1406.0, + 1634.0, + 1406.0, + 1671.0, + 295.0, + 1671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1661.0, + 1405.0, + 1661.0, + 1405.0, + 1705.0, + 292.0, + 1705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1697.0, + 778.0, + 1697.0, + 778.0, + 1730.0, + 295.0, + 1730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 774.0, + 1217.0, + 774.0, + 1217.0, + 813.0, + 292.0, + 813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1284.0, + 774.0, + 1405.0, + 774.0, + 1405.0, + 813.0, + 1284.0, + 813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 808.0, + 517.0, + 808.0, + 517.0, + 841.0, + 295.0, + 841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 549.0, + 808.0, + 1405.0, + 808.0, + 1405.0, + 841.0, + 549.0, + 841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 838.0, + 503.0, + 838.0, + 503.0, + 874.0, + 294.0, + 874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 534.0, + 838.0, + 1150.0, + 838.0, + 1150.0, + 874.0, + 534.0, + 874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1188.0, + 838.0, + 1405.0, + 838.0, + 1405.0, + 874.0, + 1188.0, + 874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 869.0, + 670.0, + 869.0, + 670.0, + 901.0, + 292.0, + 901.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1740.0, + 747.0, + 1740.0, + 747.0, + 1777.0, + 294.0, + 1777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 784.0, + 1740.0, + 1402.0, + 1740.0, + 1402.0, + 1777.0, + 784.0, + 1777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1770.0, + 1405.0, + 1770.0, + 1405.0, + 1813.0, + 294.0, + 1813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1800.0, + 1171.0, + 1800.0, + 1171.0, + 1843.0, + 293.0, + 1843.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1206.0, + 1800.0, + 1405.0, + 1800.0, + 1405.0, + 1843.0, + 1206.0, + 1843.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1834.0, + 376.0, + 1834.0, + 376.0, + 1870.0, + 294.0, + 1870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 403.0, + 1834.0, + 786.0, + 1834.0, + 786.0, + 1870.0, + 403.0, + 1870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 940.0, + 1834.0, + 1111.0, + 1834.0, + 1111.0, + 1870.0, + 940.0, + 1870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1162.0, + 1834.0, + 1407.0, + 1834.0, + 1407.0, + 1870.0, + 1162.0, + 1870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1866.0, + 940.0, + 1866.0, + 940.0, + 1905.0, + 291.0, + 1905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1293.0, + 1866.0, + 1372.0, + 1866.0, + 1372.0, + 1905.0, + 1293.0, + 1905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1403.0, + 1866.0, + 1406.0, + 1866.0, + 1406.0, + 1905.0, + 1403.0, + 1905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1898.0, + 966.0, + 1898.0, + 966.0, + 1934.0, + 293.0, + 1934.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 547.0, + 1403.0, + 547.0, + 1403.0, + 580.0, + 296.0, + 580.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 577.0, + 297.0, + 577.0, + 297.0, + 612.0, + 293.0, + 612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 577.0, + 481.0, + 577.0, + 481.0, + 612.0, + 328.0, + 612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 512.0, + 577.0, + 718.0, + 577.0, + 718.0, + 612.0, + 512.0, + 612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 750.0, + 577.0, + 1406.0, + 577.0, + 1406.0, + 612.0, + 750.0, + 612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 605.0, + 358.0, + 605.0, + 358.0, + 643.0, + 293.0, + 643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 390.0, + 605.0, + 488.0, + 605.0, + 488.0, + 643.0, + 390.0, + 643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 519.0, + 605.0, + 1002.0, + 605.0, + 1002.0, + 643.0, + 519.0, + 643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1034.0, + 605.0, + 1203.0, + 605.0, + 1203.0, + 643.0, + 1034.0, + 643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1235.0, + 605.0, + 1270.0, + 605.0, + 1270.0, + 643.0, + 1235.0, + 643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1321.0, + 605.0, + 1334.0, + 605.0, + 1334.0, + 643.0, + 1321.0, + 643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 1240.0, + 385.0, + 1240.0, + 385.0, + 1287.0, + 288.0, + 1287.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 440.0, + 1240.0, + 492.0, + 1240.0, + 492.0, + 1287.0, + 440.0, + 1287.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 512.0, + 1240.0, + 626.0, + 1240.0, + 626.0, + 1287.0, + 512.0, + 1287.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 693.0, + 1240.0, + 1194.0, + 1240.0, + 1194.0, + 1287.0, + 693.0, + 1287.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1227.0, + 1240.0, + 1410.0, + 1240.0, + 1410.0, + 1287.0, + 1227.0, + 1287.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1278.0, + 1405.0, + 1278.0, + 1405.0, + 1316.0, + 294.0, + 1316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1310.0, + 840.0, + 1310.0, + 840.0, + 1341.0, + 294.0, + 1341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1443.0, + 1398.0, + 1443.0, + 1398.0, + 1479.0, + 294.0, + 1479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1478.0, + 1237.0, + 1478.0, + 1237.0, + 1511.0, + 295.0, + 1511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 718.0, + 370.0, + 718.0, + 370.0, + 765.0, + 294.0, + 765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 420.0, + 718.0, + 691.0, + 718.0, + 691.0, + 765.0, + 420.0, + 765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 722.0, + 718.0, + 812.0, + 718.0, + 812.0, + 765.0, + 722.0, + 765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 718.0, + 937.0, + 718.0, + 937.0, + 765.0, + 832.0, + 765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 989.0, + 718.0, + 999.0, + 718.0, + 999.0, + 765.0, + 989.0, + 765.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 3, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1528, + 1404, + 1528, + 1404, + 1834, + 298, + 1834 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 299, + 761, + 824, + 761, + 824, + 1252, + 299, + 1252 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 296, + 292, + 1405, + 292, + 1405, + 624, + 296, + 624 + ], + "score": 0.971 + }, + { + "category_id": 4, + "poly": [ + 847, + 1063, + 1402, + 1063, + 1402, + 1308, + 847, + 1308 + ], + "score": 0.97 + }, + { + "category_id": 3, + "poly": [ + 854, + 763, + 1381, + 763, + 1381, + 1037, + 854, + 1037 + ], + "score": 0.966 + }, + { + "category_id": 1, + "poly": [ + 298, + 1360, + 1405, + 1360, + 1405, + 1513, + 298, + 1513 + ], + "score": 0.966 + }, + { + "category_id": 1, + "poly": [ + 298, + 1972, + 1399, + 1972, + 1399, + 2034, + 298, + 2034 + ], + "score": 0.945 + }, + { + "category_id": 1, + "poly": [ + 298, + 1268, + 823, + 1268, + 823, + 1359, + 298, + 1359 + ], + "score": 0.94 + }, + { + "category_id": 1, + "poly": [ + 299, + 651, + 1398, + 651, + 1398, + 730, + 299, + 730 + ], + "score": 0.94 + }, + { + "category_id": 0, + "poly": [ + 299, + 1892, + 842, + 1892, + 842, + 1929, + 299, + 1929 + ], + "score": 0.901 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 853, + 75, + 853, + 104, + 298, + 104 + ], + "score": 0.833 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.703 + }, + { + "category_id": 0, + "poly": [ + 301, + 230, + 888, + 230, + 888, + 261, + 301, + 261 + ], + "score": 0.622 + }, + { + "category_id": 0, + "poly": [ + 302, + 230, + 887, + 230, + 887, + 261, + 302, + 261 + ], + "score": 0.199 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 853, + 76, + 853, + 104, + 300, + 104 + ], + "score": 0.142 + }, + { + "category_id": 13, + "poly": [ + 871, + 363, + 1027, + 363, + 1027, + 399, + 871, + 399 + ], + "score": 0.94, + "latex": "\\tilde { a } _ { i j } = a _ { i j } / d _ { i i }" + }, + { + "category_id": 13, + "poly": [ + 728, + 522, + 995, + 522, + 995, + 565, + 728, + 565 + ], + "score": 0.94, + "latex": "\\mathbf { x } _ { i } ^ { ( k + 1 ) } = \\sigma \\big ( \\mathbf { h } _ { i } ^ { ( k ) } W ^ { ( k ) } \\big )" + }, + { + "category_id": 13, + "poly": [ + 783, + 693, + 1007, + 693, + 1007, + 730, + 783, + 730 + ], + "score": 0.92, + "latex": "D ( \\mathbf { h } ^ { ( k ) } ) \\leq D ( \\mathbf { x } ^ { ( k ) } )" + }, + { + "category_id": 13, + "poly": [ + 706, + 437, + 757, + 437, + 757, + 479, + 706, + 479 + ], + "score": 0.92, + "latex": "{ \\bf h } _ { i } ^ { ( k ) }" + }, + { + "category_id": 13, + "poly": [ + 919, + 481, + 970, + 481, + 970, + 523, + 919, + 523 + ], + "score": 0.91, + "latex": "{ \\bf h } _ { i } ^ { ( k ) }" + }, + { + "category_id": 13, + "poly": [ + 561, + 1096, + 625, + 1096, + 625, + 1128, + 561, + 1128 + ], + "score": 0.9, + "latex": "W ^ { ( k ) }" + }, + { + "category_id": 13, + "poly": [ + 1006, + 437, + 1393, + 437, + 1393, + 485, + 1006, + 485 + ], + "score": 0.9, + "latex": "\\begin{array} { r } { \\mathcal { N } ( v _ { i } ) \\colon { \\mathbf { h } } _ { i } ^ { ( k ) } = \\sum _ { v _ { j } \\in \\mathcal { N } ( v _ { i } ) } \\tilde { a } _ { i j } { \\mathbf { x } } _ { j } ^ { ( k ) } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 835, + 652, + 1197, + 652, + 1197, + 695, + 835, + 695 + ], + "score": 0.89, + "latex": "\\begin{array} { r } { D ( \\mathbf { x } ) = \\frac { 1 } { 2 } \\sum _ { v _ { i } , v _ { j } } \\widetilde { a } _ { i j } \\| \\mathbf { x } _ { i } - \\mathbf { x } _ { j } \\| _ { 2 } ^ { 2 } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 299, + 406, + 354, + 406, + 354, + 440, + 299, + 440 + ], + "score": 0.89, + "latex": "( j , i )" + }, + { + "category_id": 13, + "poly": [ + 305, + 354, + 783, + 354, + 783, + 409, + 305, + 409 + ], + "score": 0.88, + "latex": "\\begin{array} { r } { \\mathbf { \\Phi } _ { \\upsilon i } \\colon \\mathbf { x } _ { i } ^ { ( k + 1 ) } = \\sigma \\left( \\sum _ { v _ { j } \\in \\mathcal { N } ( v _ { i } ) } \\tilde { a } _ { i j } \\mathbf { x } _ { j } ^ { ( k ) } W ^ { ( k ) } \\right) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1001, + 441, + 1074, + 441, + 1074, + 479, + 1001, + 479 + ], + "score": 0.45, + "latex": "\\mathcal { N } ( v _ { i } )" + }, + { + "category_id": 13, + "poly": [ + 297, + 367, + 322, + 367, + 322, + 396, + 297, + 396 + ], + "score": 0.36, + "latex": "v _ { i }" + }, + { + "category_id": 15, + "poly": [ + 845.0, + 1063.0, + 1404.0, + 1063.0, + 1404.0, + 1096.0, + 845.0, + 1096.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 844.0, + 1091.0, + 1403.0, + 1091.0, + 1403.0, + 1127.0, + 844.0, + 1127.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 845.0, + 1124.0, + 1405.0, + 1124.0, + 1405.0, + 1157.0, + 845.0, + 1157.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 845.0, + 1155.0, + 1404.0, + 1155.0, + 1404.0, + 1185.0, + 845.0, + 1185.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 845.0, + 1185.0, + 1403.0, + 1185.0, + 1403.0, + 1215.0, + 845.0, + 1215.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 844.0, + 1215.0, + 1404.0, + 1215.0, + 1404.0, + 1248.0, + 844.0, + 1248.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 844.0, + 1245.0, + 1404.0, + 1245.0, + 1404.0, + 1279.0, + 844.0, + 1279.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 844.0, + 1275.0, + 1325.0, + 1275.0, + 1325.0, + 1310.0, + 844.0, + 1310.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 867.0, + 978.0, + 1087.0, + 978.0, + 1087.0, + 1012.0, + 867.0, + 1012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1153.0, + 978.0, + 1386.0, + 978.0, + 1386.0, + 1012.0, + 1153.0, + 1012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 890.0, + 1006.0, + 1063.0, + 1006.0, + 1063.0, + 1037.0, + 890.0, + 1037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1178.0, + 1005.0, + 1369.0, + 1005.0, + 1369.0, + 1042.0, + 1178.0, + 1042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1888.0, + 847.0, + 1888.0, + 847.0, + 1935.0, + 291.0, + 1935.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 857.0, + 72.0, + 857.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2085.0, + 861.0, + 2085.0, + 861.0, + 2120.0, + 839.0, + 2120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 229.0, + 894.0, + 229.0, + 894.0, + 265.0, + 296.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 229.0, + 893.0, + 229.0, + 893.0, + 265.0, + 296.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 856.0, + 73.0, + 856.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1527.0, + 1405.0, + 1527.0, + 1405.0, + 1563.0, + 296.0, + 1563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1557.0, + 1406.0, + 1557.0, + 1406.0, + 1592.0, + 294.0, + 1592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1590.0, + 1405.0, + 1590.0, + 1405.0, + 1621.0, + 296.0, + 1621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1619.0, + 1405.0, + 1619.0, + 1405.0, + 1654.0, + 294.0, + 1654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1651.0, + 1405.0, + 1651.0, + 1405.0, + 1682.0, + 296.0, + 1682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1680.0, + 1404.0, + 1680.0, + 1404.0, + 1715.0, + 294.0, + 1715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1710.0, + 1404.0, + 1710.0, + 1404.0, + 1746.0, + 294.0, + 1746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1741.0, + 1404.0, + 1741.0, + 1404.0, + 1775.0, + 293.0, + 1775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1766.0, + 1403.0, + 1766.0, + 1403.0, + 1809.0, + 292.0, + 1809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1802.0, + 954.0, + 1802.0, + 954.0, + 1836.0, + 293.0, + 1836.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 759.0, + 825.0, + 759.0, + 825.0, + 794.0, + 295.0, + 794.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 786.0, + 828.0, + 786.0, + 828.0, + 829.0, + 292.0, + 829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 818.0, + 828.0, + 818.0, + 828.0, + 861.0, + 293.0, + 861.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 854.0, + 828.0, + 854.0, + 828.0, + 885.0, + 295.0, + 885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 884.0, + 827.0, + 884.0, + 827.0, + 915.0, + 295.0, + 915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 913.0, + 827.0, + 913.0, + 827.0, + 947.0, + 295.0, + 947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 944.0, + 829.0, + 944.0, + 829.0, + 979.0, + 295.0, + 979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 974.0, + 827.0, + 974.0, + 827.0, + 1005.0, + 294.0, + 1005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1003.0, + 828.0, + 1003.0, + 828.0, + 1039.0, + 295.0, + 1039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1035.0, + 826.0, + 1035.0, + 826.0, + 1067.0, + 295.0, + 1067.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1065.0, + 828.0, + 1065.0, + 828.0, + 1100.0, + 294.0, + 1100.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1095.0, + 560.0, + 1095.0, + 560.0, + 1134.0, + 295.0, + 1134.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 626.0, + 1095.0, + 827.0, + 1095.0, + 827.0, + 1134.0, + 626.0, + 1134.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1130.0, + 826.0, + 1130.0, + 826.0, + 1161.0, + 296.0, + 1161.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1159.0, + 825.0, + 1159.0, + 825.0, + 1193.0, + 295.0, + 1193.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1190.0, + 826.0, + 1190.0, + 826.0, + 1222.0, + 296.0, + 1222.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1217.0, + 584.0, + 1217.0, + 584.0, + 1256.0, + 295.0, + 1256.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 287.0, + 1406.0, + 287.0, + 1406.0, + 329.0, + 293.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 323.0, + 1405.0, + 323.0, + 1405.0, + 357.0, + 295.0, + 357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 278.0, + 338.0, + 296.0, + 338.0, + 296.0, + 424.0, + 278.0, + 424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 784.0, + 338.0, + 870.0, + 338.0, + 870.0, + 424.0, + 784.0, + 424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1028.0, + 338.0, + 1417.0, + 338.0, + 1417.0, + 424.0, + 1028.0, + 424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 402.0, + 298.0, + 402.0, + 298.0, + 442.0, + 294.0, + 442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 355.0, + 402.0, + 1406.0, + 402.0, + 1406.0, + 442.0, + 355.0, + 442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 280.0, + 426.0, + 705.0, + 426.0, + 705.0, + 498.0, + 280.0, + 498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 758.0, + 426.0, + 1000.0, + 426.0, + 1000.0, + 498.0, + 758.0, + 498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 426.0, + 1414.0, + 426.0, + 1414.0, + 498.0, + 1394.0, + 498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 476.0, + 918.0, + 476.0, + 918.0, + 530.0, + 289.0, + 530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 971.0, + 476.0, + 1409.0, + 476.0, + 1409.0, + 530.0, + 971.0, + 530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 518.0, + 727.0, + 518.0, + 727.0, + 571.0, + 289.0, + 571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 560.0, + 1405.0, + 560.0, + 1405.0, + 594.0, + 295.0, + 594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 591.0, + 602.0, + 591.0, + 602.0, + 625.0, + 294.0, + 625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 730.0, + 515.5, + 1410.0, + 515.5, + 1410.0, + 573.5, + 730.0, + 573.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1357.0, + 1403.0, + 1357.0, + 1403.0, + 1393.0, + 295.0, + 1393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1385.0, + 1405.0, + 1385.0, + 1405.0, + 1425.0, + 293.0, + 1425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1418.0, + 1406.0, + 1418.0, + 1406.0, + 1458.0, + 292.0, + 1458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1444.0, + 1406.0, + 1444.0, + 1406.0, + 1491.0, + 292.0, + 1491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1480.0, + 414.0, + 1480.0, + 414.0, + 1518.0, + 293.0, + 1518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1971.0, + 1403.0, + 1971.0, + 1403.0, + 2007.0, + 296.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2000.0, + 982.0, + 2000.0, + 982.0, + 2038.0, + 294.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1264.0, + 827.0, + 1264.0, + 827.0, + 1303.0, + 294.0, + 1303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1298.0, + 827.0, + 1298.0, + 827.0, + 1331.0, + 296.0, + 1331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1328.0, + 829.0, + 1328.0, + 829.0, + 1361.0, + 294.0, + 1361.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 647.0, + 834.0, + 647.0, + 834.0, + 699.0, + 293.0, + 699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1198.0, + 647.0, + 1406.0, + 647.0, + 1406.0, + 699.0, + 1198.0, + 699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 691.0, + 782.0, + 691.0, + 782.0, + 731.0, + 293.0, + 731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1008.0, + 691.0, + 1017.0, + 691.0, + 1017.0, + 731.0, + 1008.0, + 731.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 4, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1293, + 1405, + 1293, + 1405, + 1672, + 297, + 1672 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 297, + 941, + 1404, + 941, + 1404, + 1279, + 297, + 1279 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 1850, + 1404, + 1850, + 1404, + 2034, + 298, + 2034 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 711, + 1402, + 711, + 1402, + 927, + 298, + 927 + ], + "score": 0.979 + }, + { + "category_id": 4, + "poly": [ + 295, + 494, + 1405, + 494, + 1405, + 650, + 295, + 650 + ], + "score": 0.961 + }, + { + "category_id": 3, + "poly": [ + 311, + 239, + 1400, + 239, + 1400, + 472, + 311, + 472 + ], + "score": 0.95 + }, + { + "category_id": 0, + "poly": [ + 300, + 1791, + 608, + 1791, + 608, + 1823, + 300, + 1823 + ], + "score": 0.901 + }, + { + "category_id": 0, + "poly": [ + 300, + 1721, + 557, + 1721, + 557, + 1756, + 300, + 1756 + ], + "score": 0.887 + }, + { + "category_id": 2, + "poly": [ + 840, + 2089, + 858, + 2089, + 858, + 2112, + 840, + 2112 + ], + "score": 0.773 + }, + { + "category_id": 2, + "poly": [ + 298, + 76, + 854, + 76, + 854, + 104, + 298, + 104 + ], + "score": 0.673 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 852, + 76, + 852, + 104, + 299, + 104 + ], + "score": 0.446 + }, + { + "category_id": 13, + "poly": [ + 783, + 1390, + 1042, + 1390, + 1042, + 1428, + 783, + 1428 + ], + "score": 0.93, + "latex": "\\alpha _ { i j } = ( W _ { 1 } \\mathbf { x } _ { i } ) ^ { \\top } W _ { 2 } \\mathbf { x } _ { j }" + }, + { + "category_id": 13, + "poly": [ + 987, + 1033, + 1400, + 1033, + 1400, + 1069, + 987, + 1069 + ], + "score": 0.92, + "latex": "a _ { i j } \\ = \\ \\mathrm { { e x p } } ( - { \\textstyle \\sum } _ { d } ( x _ { i d } - x _ { j d } ) ^ { 2 } / \\sigma _ { d } ^ { 2 } )" + }, + { + "category_id": 13, + "poly": [ + 1097, + 1359, + 1400, + 1359, + 1400, + 1394, + 1097, + 1394 + ], + "score": 0.89, + "latex": "\\alpha _ { i j } = a \\cdot \\cos ( W \\mathbf { x } _ { i } , W \\mathbf { x } _ { j } )" + }, + { + "category_id": 13, + "poly": [ + 815, + 1328, + 856, + 1328, + 856, + 1359, + 815, + 1359 + ], + "score": 0.88, + "latex": "\\alpha _ { i j }" + }, + { + "category_id": 13, + "poly": [ + 345, + 1425, + 705, + 1425, + 705, + 1462, + 345, + 1462 + ], + "score": 0.88, + "latex": "\\alpha _ { i j } = \\pmb { a } ^ { \\top } \\operatorname { t a n h } ( W _ { 1 } \\mathbf { x } _ { i } + W _ { 2 } \\mathbf { x } _ { j } )" + }, + { + "category_id": 13, + "poly": [ + 1211, + 1328, + 1239, + 1328, + 1239, + 1359, + 1211, + 1359 + ], + "score": 0.84, + "latex": "v _ { j }" + }, + { + "category_id": 13, + "poly": [ + 1134, + 1329, + 1160, + 1329, + 1160, + 1355, + 1134, + 1355 + ], + "score": 0.84, + "latex": "v _ { i }" + }, + { + "category_id": 13, + "poly": [ + 296, + 1356, + 717, + 1356, + 717, + 1394, + 296, + 1394 + ], + "score": 0.81, + "latex": "\\alpha _ { i j } = \\mathrm { L e a k y R e L U } ( a ^ { \\top } [ W \\mathbf { x } _ { i } | | W \\mathbf { x } _ { j } ] )" + }, + { + "category_id": 13, + "poly": [ + 376, + 1066, + 395, + 1066, + 395, + 1092, + 376, + 1092 + ], + "score": 0.75, + "latex": "d" + }, + { + "category_id": 13, + "poly": [ + 1153, + 1433, + 1171, + 1433, + 1171, + 1455, + 1153, + 1455 + ], + "score": 0.75, + "latex": "a" + }, + { + "category_id": 13, + "poly": [ + 297, + 1358, + 375, + 1358, + 375, + 1394, + 297, + 1394 + ], + "score": 0.58, + "latex": "\\alpha _ { i j } =" + }, + { + "category_id": 13, + "poly": [ + 1222, + 1428, + 1256, + 1428, + 1256, + 1456, + 1222, + 1456 + ], + "score": 0.57, + "latex": "W" + }, + { + "category_id": 13, + "poly": [ + 345, + 1425, + 458, + 1425, + 458, + 1461, + 345, + 1461 + ], + "score": 0.35, + "latex": "\\alpha _ { i j } = \\pmb { a } ^ { \\top }" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 495.0, + 1405.0, + 495.0, + 1405.0, + 528.0, + 295.0, + 528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 521.0, + 1406.0, + 521.0, + 1406.0, + 564.0, + 293.0, + 564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 551.0, + 1406.0, + 551.0, + 1406.0, + 595.0, + 292.0, + 595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 581.0, + 1406.0, + 581.0, + 1406.0, + 625.0, + 292.0, + 625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 617.0, + 952.0, + 617.0, + 952.0, + 651.0, + 295.0, + 651.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 689.0, + 270.0, + 698.0, + 270.0, + 698.0, + 289.0, + 689.0, + 289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 901.0, + 264.0, + 917.0, + 264.0, + 917.0, + 297.0, + 901.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 867.0, + 376.0, + 882.0, + 376.0, + 882.0, + 387.0, + 867.0, + 387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1107.0, + 374.0, + 1117.0, + 374.0, + 1117.0, + 385.0, + 1107.0, + 385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 303.0, + 410.0, + 546.0, + 410.0, + 546.0, + 441.0, + 303.0, + 441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 561.0, + 410.0, + 734.0, + 410.0, + 734.0, + 441.0, + 561.0, + 441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 754.0, + 410.0, + 974.0, + 410.0, + 974.0, + 443.0, + 754.0, + 443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 995.0, + 410.0, + 1165.0, + 410.0, + 1165.0, + 441.0, + 995.0, + 441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1186.0, + 410.0, + 1404.0, + 410.0, + 1404.0, + 443.0, + 1186.0, + 443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 435.0, + 509.0, + 435.0, + 509.0, + 475.0, + 327.0, + 475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 558.0, + 439.0, + 736.0, + 439.0, + 736.0, + 472.0, + 558.0, + 472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 774.0, + 440.0, + 952.0, + 440.0, + 952.0, + 470.0, + 774.0, + 470.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1000.0, + 439.0, + 1156.0, + 439.0, + 1156.0, + 470.0, + 1000.0, + 470.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1217.0, + 439.0, + 1372.0, + 439.0, + 1372.0, + 470.0, + 1217.0, + 470.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1792.0, + 611.0, + 1792.0, + 611.0, + 1825.0, + 295.0, + 1825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1716.0, + 561.0, + 1716.0, + 561.0, + 1762.0, + 291.0, + 1762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2087.0, + 861.0, + 2087.0, + 861.0, + 2118.0, + 840.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 857.0, + 73.0, + 857.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 856.0, + 73.0, + 856.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1293.0, + 1403.0, + 1293.0, + 1403.0, + 1328.0, + 296.0, + 1328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1324.0, + 814.0, + 1324.0, + 814.0, + 1359.0, + 296.0, + 1359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 857.0, + 1324.0, + 1133.0, + 1324.0, + 1133.0, + 1359.0, + 857.0, + 1359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1161.0, + 1324.0, + 1210.0, + 1324.0, + 1210.0, + 1359.0, + 1161.0, + 1359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1240.0, + 1324.0, + 1403.0, + 1324.0, + 1403.0, + 1359.0, + 1240.0, + 1359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1357.0, + 295.0, + 1357.0, + 295.0, + 1394.0, + 292.0, + 1394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 718.0, + 1357.0, + 1096.0, + 1357.0, + 1096.0, + 1394.0, + 718.0, + 1394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1391.0, + 782.0, + 1391.0, + 782.0, + 1430.0, + 294.0, + 1430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1043.0, + 1391.0, + 1405.0, + 1391.0, + 1405.0, + 1430.0, + 1043.0, + 1430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1426.0, + 344.0, + 1426.0, + 344.0, + 1461.0, + 295.0, + 1461.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 706.0, + 1426.0, + 1152.0, + 1426.0, + 1152.0, + 1461.0, + 706.0, + 1461.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1172.0, + 1426.0, + 1221.0, + 1426.0, + 1221.0, + 1461.0, + 1172.0, + 1461.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1257.0, + 1426.0, + 1405.0, + 1426.0, + 1405.0, + 1461.0, + 1257.0, + 1461.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1458.0, + 1402.0, + 1458.0, + 1402.0, + 1489.0, + 296.0, + 1489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1485.0, + 1403.0, + 1485.0, + 1403.0, + 1521.0, + 294.0, + 1521.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1515.0, + 1406.0, + 1515.0, + 1406.0, + 1554.0, + 294.0, + 1554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1549.0, + 1403.0, + 1549.0, + 1403.0, + 1582.0, + 292.0, + 1582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1576.0, + 1403.0, + 1576.0, + 1403.0, + 1615.0, + 292.0, + 1615.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1610.0, + 1401.0, + 1610.0, + 1401.0, + 1641.0, + 296.0, + 1641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1640.0, + 1338.0, + 1640.0, + 1338.0, + 1675.0, + 296.0, + 1675.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 938.0, + 1404.0, + 938.0, + 1404.0, + 976.0, + 292.0, + 976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 971.0, + 1404.0, + 971.0, + 1404.0, + 1005.0, + 294.0, + 1005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1003.0, + 1404.0, + 1003.0, + 1404.0, + 1038.0, + 295.0, + 1038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1029.0, + 986.0, + 1029.0, + 986.0, + 1075.0, + 291.0, + 1075.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 1029.0, + 1406.0, + 1029.0, + 1406.0, + 1075.0, + 1401.0, + 1075.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1064.0, + 375.0, + 1064.0, + 375.0, + 1099.0, + 295.0, + 1099.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 1064.0, + 1404.0, + 1064.0, + 1404.0, + 1099.0, + 396.0, + 1099.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1096.0, + 1404.0, + 1096.0, + 1404.0, + 1127.0, + 296.0, + 1127.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1125.0, + 1405.0, + 1125.0, + 1405.0, + 1157.0, + 293.0, + 1157.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1156.0, + 1402.0, + 1156.0, + 1402.0, + 1187.0, + 295.0, + 1187.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1185.0, + 1405.0, + 1185.0, + 1405.0, + 1219.0, + 294.0, + 1219.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1215.0, + 1405.0, + 1215.0, + 1405.0, + 1249.0, + 294.0, + 1249.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1248.0, + 735.0, + 1248.0, + 735.0, + 1279.0, + 295.0, + 1279.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1849.0, + 1402.0, + 1849.0, + 1402.0, + 1881.0, + 294.0, + 1881.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1880.0, + 1405.0, + 1880.0, + 1405.0, + 1914.0, + 296.0, + 1914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1910.0, + 1405.0, + 1910.0, + 1405.0, + 1946.0, + 294.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1937.0, + 1405.0, + 1937.0, + 1405.0, + 1979.0, + 292.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1971.0, + 1405.0, + 1971.0, + 1405.0, + 2005.0, + 295.0, + 2005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2003.0, + 1406.0, + 2003.0, + 1406.0, + 2035.0, + 293.0, + 2035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 714.0, + 1403.0, + 714.0, + 1403.0, + 745.0, + 296.0, + 745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 744.0, + 1403.0, + 744.0, + 1403.0, + 778.0, + 294.0, + 778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 773.0, + 1402.0, + 773.0, + 1402.0, + 808.0, + 294.0, + 808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 805.0, + 1404.0, + 805.0, + 1404.0, + 836.0, + 297.0, + 836.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 833.0, + 1404.0, + 833.0, + 1404.0, + 867.0, + 294.0, + 867.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 867.0, + 1404.0, + 867.0, + 1404.0, + 898.0, + 294.0, + 898.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 896.0, + 1382.0, + 896.0, + 1382.0, + 930.0, + 296.0, + 930.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 5, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1425, + 1403, + 1425, + 1403, + 1731, + 298, + 1731 + ], + "score": 0.981 + }, + { + "category_id": 5, + "poly": [ + 352, + 223, + 1349, + 223, + 1349, + 510, + 352, + 510 + ], + "score": 0.981, + "html": "
MethodCoraCiteseerPubmedCoauthor-CSCoauthor-Phy
LR57.1 ± 2.361.0±2.264.1 ± 3.186.4±0.986.7±1.5
LPA74.4± 2.667.8 ± 2.170.5 ± 5.373.6 ± 3.986.6 ± 2.0
GCN81.4 ± 1.371.9 ± 1.977.5 ± 2.991.1 ± 0.592.4 ± 1.0
GAT80.7 ±1.371.4 ± 1.976.7 ± 2.390.5 ± 0.692.2 ± 0.9
JK-Net81.3 ± 1.470.2 ±1.377.6 ± 0.990.3 ± 0.491.0 ± 0.7
GIN74.5 ± 1.560.7 ±1.373.4 ±1.284.1 ± 1.987.3 ±1.7
GDC83.2 ± 0.972.2 ±1.477.8 ± 0.891.4 ± 1.092.0± 0.7
GCN+LPA78.4± 0.769.8 ± 1.474.1 ± 0.984.5 ±1.089.7 ± 0.8
GCN-LPA83.0±1.472.6± 0.978.4 ± 1.591.9± 0.993.4± 1.6
" + }, + { + "category_id": 1, + "poly": [ + 297, + 1164, + 1403, + 1164, + 1403, + 1408, + 297, + 1408 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 299, + 1827, + 1402, + 1827, + 1402, + 1950, + 299, + 1950 + ], + "score": 0.971 + }, + { + "category_id": 1, + "poly": [ + 299, + 1026, + 1403, + 1026, + 1403, + 1148, + 299, + 1148 + ], + "score": 0.97 + }, + { + "category_id": 3, + "poly": [ + 1069, + 607, + 1397, + 607, + 1397, + 843, + 1069, + 843 + ], + "score": 0.962 + }, + { + "category_id": 3, + "poly": [ + 686, + 605, + 1013, + 605, + 1013, + 840, + 686, + 840 + ], + "score": 0.961 + }, + { + "category_id": 3, + "poly": [ + 301, + 603, + 627, + 603, + 627, + 843, + 301, + 843 + ], + "score": 0.959 + }, + { + "category_id": 4, + "poly": [ + 295, + 872, + 633, + 872, + 633, + 963, + 295, + 963 + ], + "score": 0.954 + }, + { + "category_id": 4, + "poly": [ + 680, + 872, + 1017, + 872, + 1017, + 963, + 680, + 963 + ], + "score": 0.953 + }, + { + "category_id": 4, + "poly": [ + 1067, + 872, + 1403, + 872, + 1403, + 935, + 1067, + 935 + ], + "score": 0.938 + }, + { + "category_id": 2, + "poly": [ + 297, + 1978, + 1402, + 1978, + 1402, + 2033, + 297, + 2033 + ], + "score": 0.935 + }, + { + "category_id": 0, + "poly": [ + 299, + 1770, + 473, + 1770, + 473, + 1801, + 299, + 1801 + ], + "score": 0.887 + }, + { + "category_id": 2, + "poly": [ + 298, + 76, + 854, + 76, + 854, + 104, + 298, + 104 + ], + "score": 0.879 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2111, + 841, + 2111 + ], + "score": 0.704 + }, + { + "category_id": 1, + "poly": [ + 315, + 533, + 1387, + 533, + 1387, + 566, + 315, + 566 + ], + "score": 0.331 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 852, + 76, + 852, + 104, + 300, + 104 + ], + "score": 0.109 + }, + { + "category_id": 2, + "poly": [ + 841, + 2087, + 859, + 2087, + 859, + 2111, + 841, + 2111 + ], + "score": 0.106 + }, + { + "category_id": 13, + "poly": [ + 453, + 1607, + 508, + 1607, + 508, + 1637, + 453, + 1637 + ], + "score": 0.89, + "latex": "9 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 565, + 533, + 620, + 533, + 620, + 563, + 565, + 563 + ], + "score": 0.86, + "latex": "9 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 996, + 873, + 1016, + 873, + 1016, + 899, + 996, + 899 + ], + "score": 0.67, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 395, + 1377, + 527, + 1377, + 527, + 1407, + 395, + 1407 + ], + "score": 0.42, + "latex": "\\mathbf { G C \\bar { N } + L P A }" + }, + { + "category_id": 15, + "poly": [ + 1067.0, + 606.0, + 1096.0, + 606.0, + 1096.0, + 814.0, + 1067.0, + 814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1149.0, + 614.0, + 1213.0, + 614.0, + 1213.0, + 638.0, + 1149.0, + 638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1149.0, + 629.0, + 1190.0, + 629.0, + 1190.0, + 656.0, + 1149.0, + 656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1093.0, + 643.0, + 1115.0, + 643.0, + 1115.0, + 660.0, + 1093.0, + 660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1093.0, + 701.0, + 1111.0, + 701.0, + 1111.0, + 717.0, + 1093.0, + 717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1090.0, + 761.0, + 1103.0, + 761.0, + 1103.0, + 774.0, + 1090.0, + 774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1141.0, + 810.0, + 1162.0, + 810.0, + 1162.0, + 827.0, + 1141.0, + 827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1203.0, + 807.0, + 1236.0, + 807.0, + 1236.0, + 830.0, + 1203.0, + 830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1266.0, + 806.0, + 1309.0, + 806.0, + 1309.0, + 831.0, + 1266.0, + 831.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1343.0, + 809.0, + 1368.0, + 809.0, + 1368.0, + 828.0, + 1343.0, + 828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1218.0, + 821.0, + 1291.0, + 821.0, + 1291.0, + 848.0, + 1218.0, + 848.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 701.0, + 601.0, + 728.0, + 601.0, + 728.0, + 625.0, + 701.0, + 625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 685.0, + 669.0, + 712.0, + 669.0, + 712.0, + 752.0, + 685.0, + 752.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 701.0, + 669.0, + 726.0, + 669.0, + 726.0, + 689.0, + 701.0, + 689.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 857.0, + 687.0, + 872.0, + 687.0, + 872.0, + 699.0, + 857.0, + 699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 766.0, + 703.0, + 778.0, + 703.0, + 778.0, + 711.0, + 766.0, + 711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 812.0, + 696.0, + 826.0, + 696.0, + 826.0, + 709.0, + 812.0, + 709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 904.0, + 695.0, + 917.0, + 695.0, + 917.0, + 708.0, + 904.0, + 708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 949.0, + 706.0, + 963.0, + 706.0, + 963.0, + 719.0, + 949.0, + 719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 814.0, + 721.0, + 823.0, + 721.0, + 823.0, + 732.0, + 814.0, + 732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 702.0, + 734.0, + 726.0, + 734.0, + 726.0, + 754.0, + 702.0, + 754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 767.0, + 735.0, + 777.0, + 735.0, + 777.0, + 743.0, + 767.0, + 743.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 859.0, + 735.0, + 869.0, + 735.0, + 869.0, + 744.0, + 859.0, + 744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 906.0, + 734.0, + 916.0, + 734.0, + 916.0, + 743.0, + 906.0, + 743.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 735.0, + 758.0, + 755.0, + 758.0, + 755.0, + 774.0, + 735.0, + 774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 757.0, + 756.0, + 856.0, + 756.0, + 856.0, + 776.0, + 757.0, + 776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 735.0, + 773.0, + 755.0, + 773.0, + 755.0, + 788.0, + 735.0, + 788.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 756.0, + 770.0, + 857.0, + 770.0, + 857.0, + 793.0, + 756.0, + 793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 732.0, + 783.0, + 858.0, + 783.0, + 858.0, + 807.0, + 732.0, + 807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 764.0, + 808.0, + 780.0, + 808.0, + 780.0, + 828.0, + 764.0, + 828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 808.0, + 806.0, + 828.0, + 806.0, + 828.0, + 829.0, + 808.0, + 829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 854.0, + 805.0, + 876.0, + 805.0, + 876.0, + 846.0, + 854.0, + 846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 899.0, + 808.0, + 923.0, + 808.0, + 923.0, + 829.0, + 899.0, + 829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 943.0, + 806.0, + 971.0, + 806.0, + 971.0, + 830.0, + 943.0, + 830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 989.0, + 808.0, + 1015.0, + 808.0, + 1015.0, + 828.0, + 989.0, + 828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 706.75, + 798.0, + 729.75, + 798.0, + 729.75, + 826.0, + 706.75, + 826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 601.0, + 341.0, + 601.0, + 341.0, + 621.0, + 318.0, + 621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 667.0, + 341.0, + 667.0, + 341.0, + 686.0, + 318.0, + 686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 299.0, + 669.0, + 326.0, + 669.0, + 326.0, + 750.0, + 299.0, + 750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 478.0, + 675.0, + 487.0, + 675.0, + 487.0, + 682.0, + 478.0, + 682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 406.0, + 677.0, + 417.0, + 677.0, + 417.0, + 684.0, + 406.0, + 684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 440.0, + 679.0, + 454.0, + 679.0, + 454.0, + 689.0, + 440.0, + 689.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 372.0, + 689.0, + 382.0, + 689.0, + 382.0, + 697.0, + 372.0, + 697.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 548.0, + 718.0, + 556.0, + 718.0, + 556.0, + 726.0, + 548.0, + 726.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 407.0, + 726.0, + 416.0, + 726.0, + 416.0, + 736.0, + 407.0, + 736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 731.0, + 342.0, + 731.0, + 342.0, + 754.0, + 317.0, + 754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 355.0, + 763.0, + 364.0, + 763.0, + 364.0, + 769.0, + 355.0, + 769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 373.0, + 756.0, + 472.0, + 756.0, + 472.0, + 774.0, + 373.0, + 774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 372.0, + 769.0, + 473.0, + 769.0, + 473.0, + 791.0, + 372.0, + 791.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 784.0, + 473.0, + 784.0, + 473.0, + 806.0, + 352.0, + 806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 799.0, + 342.0, + 799.0, + 342.0, + 819.0, + 318.0, + 819.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 335.0, + 813.0, + 347.0, + 813.0, + 347.0, + 826.0, + 335.0, + 826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 368.0, + 809.0, + 385.0, + 809.0, + 385.0, + 827.0, + 368.0, + 827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 403.0, + 809.0, + 420.0, + 809.0, + 420.0, + 827.0, + 403.0, + 827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 437.0, + 810.0, + 456.0, + 810.0, + 456.0, + 826.0, + 437.0, + 826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 473.0, + 809.0, + 490.0, + 809.0, + 490.0, + 827.0, + 473.0, + 827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 508.0, + 809.0, + 524.0, + 809.0, + 524.0, + 826.0, + 508.0, + 826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 578.0, + 809.0, + 595.0, + 809.0, + 595.0, + 827.0, + 578.0, + 827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 614.0, + 810.0, + 629.0, + 810.0, + 629.0, + 826.0, + 614.0, + 826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 419.0, + 822.0, + 545.0, + 822.0, + 545.0, + 845.0, + 419.0, + 845.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 540.0, + 811.0, + 562.0, + 811.0, + 562.0, + 823.0, + 540.0, + 823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 870.0, + 633.0, + 870.0, + 633.0, + 905.0, + 295.0, + 905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 901.0, + 634.0, + 901.0, + 634.0, + 934.0, + 295.0, + 934.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 930.0, + 487.0, + 930.0, + 487.0, + 964.0, + 296.0, + 964.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 680.0, + 870.0, + 995.0, + 870.0, + 995.0, + 905.0, + 680.0, + 905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1017.0, + 870.0, + 1020.0, + 870.0, + 1020.0, + 905.0, + 1017.0, + 905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 679.0, + 900.0, + 1019.0, + 900.0, + 1019.0, + 936.0, + 679.0, + 936.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 681.0, + 934.0, + 824.0, + 934.0, + 824.0, + 963.0, + 681.0, + 963.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1064.0, + 868.0, + 1404.0, + 868.0, + 1404.0, + 906.0, + 1064.0, + 906.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1065.0, + 902.0, + 1354.0, + 902.0, + 1354.0, + 937.0, + 1065.0, + 937.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 1970.0, + 1406.0, + 1970.0, + 1406.0, + 2012.0, + 327.0, + 2012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 2003.0, + 669.0, + 2003.0, + 669.0, + 2033.0, + 296.0, + 2033.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1765.0, + 478.0, + 1765.0, + 478.0, + 1807.0, + 293.0, + 1807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 857.0, + 73.0, + 857.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2086.0, + 860.0, + 2086.0, + 860.0, + 2118.0, + 839.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 856.0, + 73.0, + 856.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2086.0, + 860.0, + 2086.0, + 860.0, + 2118.0, + 839.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1423.0, + 1405.0, + 1423.0, + 1405.0, + 1457.0, + 293.0, + 1457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1451.0, + 1404.0, + 1451.0, + 1404.0, + 1490.0, + 293.0, + 1490.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1483.0, + 1407.0, + 1483.0, + 1407.0, + 1523.0, + 292.0, + 1523.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1515.0, + 1405.0, + 1515.0, + 1405.0, + 1551.0, + 293.0, + 1551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1548.0, + 1404.0, + 1548.0, + 1404.0, + 1579.0, + 296.0, + 1579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1577.0, + 1405.0, + 1577.0, + 1405.0, + 1612.0, + 294.0, + 1612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1608.0, + 452.0, + 1608.0, + 452.0, + 1640.0, + 296.0, + 1640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 509.0, + 1608.0, + 1404.0, + 1608.0, + 1404.0, + 1640.0, + 509.0, + 1640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1636.0, + 1405.0, + 1636.0, + 1405.0, + 1673.0, + 293.0, + 1673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1667.0, + 1404.0, + 1667.0, + 1404.0, + 1704.0, + 293.0, + 1704.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1702.0, + 747.0, + 1702.0, + 747.0, + 1730.0, + 294.0, + 1730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1161.0, + 1404.0, + 1161.0, + 1404.0, + 1201.0, + 292.0, + 1201.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1193.0, + 1405.0, + 1193.0, + 1405.0, + 1231.0, + 292.0, + 1231.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1223.0, + 1405.0, + 1223.0, + 1405.0, + 1261.0, + 294.0, + 1261.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1250.0, + 1405.0, + 1250.0, + 1405.0, + 1294.0, + 292.0, + 1294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1285.0, + 1404.0, + 1285.0, + 1404.0, + 1322.0, + 293.0, + 1322.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1313.0, + 1404.0, + 1313.0, + 1404.0, + 1353.0, + 292.0, + 1353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1346.0, + 1405.0, + 1346.0, + 1405.0, + 1382.0, + 294.0, + 1382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1376.0, + 394.0, + 1376.0, + 394.0, + 1411.0, + 294.0, + 1411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 528.0, + 1376.0, + 1184.0, + 1376.0, + 1184.0, + 1411.0, + 528.0, + 1411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1827.0, + 1406.0, + 1827.0, + 1406.0, + 1859.0, + 297.0, + 1859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1857.0, + 1407.0, + 1857.0, + 1407.0, + 1893.0, + 294.0, + 1893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1887.0, + 1406.0, + 1887.0, + 1406.0, + 1923.0, + 294.0, + 1923.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1919.0, + 1407.0, + 1919.0, + 1407.0, + 1954.0, + 293.0, + 1954.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1026.0, + 1405.0, + 1026.0, + 1405.0, + 1058.0, + 295.0, + 1058.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1057.0, + 1405.0, + 1057.0, + 1405.0, + 1089.0, + 295.0, + 1089.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1088.0, + 1405.0, + 1088.0, + 1405.0, + 1121.0, + 294.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1116.0, + 1156.0, + 1116.0, + 1156.0, + 1152.0, + 294.0, + 1152.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 310.0, + 530.0, + 564.0, + 530.0, + 564.0, + 569.0, + 310.0, + 569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 621.0, + 530.0, + 1391.0, + 530.0, + 1391.0, + 569.0, + 621.0, + 569.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 6, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 542, + 1404, + 542, + 1404, + 819, + 297, + 819 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 1064, + 1098, + 1064, + 1098, + 1399, + 298, + 1399 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 1819, + 1403, + 1819, + 1403, + 2034, + 298, + 2034 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 297, + 833, + 1404, + 833, + 1404, + 1049, + 297, + 1049 + ], + "score": 0.978 + }, + { + "category_id": 5, + "poly": [ + 356, + 223, + 1344, + 223, + 1344, + 345, + 356, + 345 + ], + "score": 0.974, + "html": "
Labeled node rate5%10%20%50%80%
LPA67.9 ± 2.168.1 ± 1.370.5± 1.572.5 ± 1.276.4 ±1.1
GCN72.1 ± 1.972.5 ± 1.874.3 ± 0.976.8 ± 0.680.2 ±1.5
GCN-LPA72.7 ± 1.273.2 ± 1.175.4 ± 1.578.2 ± 1.382.3 ± 0.9
" + }, + { + "category_id": 1, + "poly": [ + 299, + 1508, + 1403, + 1508, + 1403, + 1691, + 299, + 1691 + ], + "score": 0.968 + }, + { + "category_id": 3, + "poly": [ + 1131, + 1068, + 1396, + 1068, + 1396, + 1332, + 1131, + 1332 + ], + "score": 0.968 + }, + { + "category_id": 1, + "poly": [ + 301, + 466, + 1398, + 466, + 1398, + 528, + 301, + 528 + ], + "score": 0.952 + }, + { + "category_id": 4, + "poly": [ + 1122, + 1361, + 1403, + 1361, + 1403, + 1453, + 1122, + 1453 + ], + "score": 0.937 + }, + { + "category_id": 1, + "poly": [ + 298, + 1415, + 1098, + 1415, + 1098, + 1507, + 298, + 1507 + ], + "score": 0.921 + }, + { + "category_id": 2, + "poly": [ + 297, + 75, + 854, + 75, + 854, + 105, + 297, + 105 + ], + "score": 0.914 + }, + { + "category_id": 0, + "poly": [ + 300, + 1745, + 543, + 1745, + 543, + 1779, + 300, + 1779 + ], + "score": 0.891 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 858, + 2088, + 858, + 2112, + 840, + 2112 + ], + "score": 0.793 + }, + { + "category_id": 7, + "poly": [ + 338, + 365, + 1366, + 365, + 1366, + 397, + 338, + 397 + ], + "score": 0.6 + }, + { + "category_id": 1, + "poly": [ + 338, + 365, + 1366, + 365, + 1366, + 397, + 338, + 397 + ], + "score": 0.135 + }, + { + "category_id": 13, + "poly": [ + 561, + 727, + 634, + 727, + 634, + 756, + 561, + 756 + ], + "score": 0.91, + "latex": "\\lambda = 0" + }, + { + "category_id": 13, + "poly": [ + 1057, + 727, + 1181, + 727, + 1181, + 756, + 1057, + 756 + ], + "score": 0.91, + "latex": "\\lambda = 1 \\sim 5" + }, + { + "category_id": 13, + "poly": [ + 917, + 957, + 978, + 957, + 978, + 986, + 917, + 986 + ], + "score": 0.88, + "latex": "2 . 1 \\%" + }, + { + "category_id": 13, + "poly": [ + 1178, + 864, + 1234, + 864, + 1234, + 894, + 1178, + 894 + ], + "score": 0.88, + "latex": "8 0 \\%" + }, + { + "category_id": 13, + "poly": [ + 697, + 1659, + 760, + 1659, + 760, + 1690, + 697, + 1690 + ], + "score": 0.87, + "latex": "9 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 1100, + 864, + 1143, + 864, + 1143, + 894, + 1100, + 894 + ], + "score": 0.86, + "latex": "5 \\%" + }, + { + "category_id": 13, + "poly": [ + 826, + 957, + 887, + 957, + 887, + 986, + 826, + 986 + ], + "score": 0.82, + "latex": "0 . 6 \\%" + }, + { + "category_id": 13, + "poly": [ + 708, + 576, + 728, + 576, + 728, + 602, + 708, + 602 + ], + "score": 0.7, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 450, + 789, + 474, + 789, + 474, + 815, + 450, + 815 + ], + "score": 0.68, + "latex": "A" + }, + { + "category_id": 13, + "poly": [ + 1320, + 758, + 1353, + 758, + 1353, + 786, + 1320, + 786 + ], + "score": 0.56, + "latex": "W" + }, + { + "category_id": 13, + "poly": [ + 1018, + 466, + 1146, + 466, + 1146, + 497, + 1018, + 497 + ], + "score": 0.49, + "latex": "\\mathrm { G C N + L P A }" + }, + { + "category_id": 13, + "poly": [ + 440, + 1599, + 716, + 1599, + 716, + 1629, + 440, + 1629 + ], + "score": 0.46, + "latex": "\\left( \\mathrm { E 5 - } 2 6 9 0 \\mathrm { v } 3 @ 2 . 6 0 \\mathrm { G H z } \\right)" + }, + { + "category_id": 15, + "poly": [ + 1137.0, + 1173.0, + 1146.0, + 1173.0, + 1146.0, + 1180.0, + 1137.0, + 1180.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1137.0, + 1205.0, + 1145.0, + 1205.0, + 1145.0, + 1214.0, + 1137.0, + 1214.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1131.0, + 1236.0, + 1146.0, + 1236.0, + 1146.0, + 1248.0, + 1131.0, + 1248.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1132.0, + 1269.0, + 1145.0, + 1269.0, + 1145.0, + 1281.0, + 1132.0, + 1281.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1133.0, + 1302.0, + 1144.0, + 1302.0, + 1144.0, + 1311.0, + 1133.0, + 1311.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1154.0, + 1321.0, + 1162.0, + 1321.0, + 1162.0, + 1329.0, + 1154.0, + 1329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1188.0, + 1322.0, + 1193.0, + 1322.0, + 1193.0, + 1327.0, + 1188.0, + 1327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1219.0, + 1320.0, + 1227.0, + 1320.0, + 1227.0, + 1329.0, + 1219.0, + 1329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1251.0, + 1320.0, + 1259.0, + 1320.0, + 1259.0, + 1330.0, + 1251.0, + 1330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1282.0, + 1318.0, + 1294.0, + 1318.0, + 1294.0, + 1331.0, + 1282.0, + 1331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1311.0, + 1317.0, + 1330.0, + 1317.0, + 1330.0, + 1332.0, + 1311.0, + 1332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1343.0, + 1316.0, + 1362.0, + 1316.0, + 1362.0, + 1332.0, + 1343.0, + 1332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1378.0, + 1318.0, + 1393.0, + 1318.0, + 1393.0, + 1330.0, + 1378.0, + 1330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1122.0, + 1361.0, + 1404.0, + 1361.0, + 1404.0, + 1393.0, + 1122.0, + 1393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1121.0, + 1390.0, + 1402.0, + 1390.0, + 1402.0, + 1424.0, + 1121.0, + 1424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1120.0, + 1420.0, + 1394.0, + 1420.0, + 1394.0, + 1454.0, + 1120.0, + 1454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 73.0, + 856.0, + 73.0, + 856.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1739.0, + 549.0, + 1739.0, + 549.0, + 1788.0, + 291.0, + 1788.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 836.0, + 2085.0, + 859.0, + 2085.0, + 859.0, + 2116.0, + 836.0, + 2116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 362.0, + 1371.0, + 362.0, + 1371.0, + 401.0, + 330.0, + 401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 542.0, + 1406.0, + 542.0, + 1406.0, + 578.0, + 295.0, + 578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 573.0, + 707.0, + 573.0, + 707.0, + 610.0, + 295.0, + 610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 729.0, + 573.0, + 1406.0, + 573.0, + 1406.0, + 610.0, + 729.0, + 610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 606.0, + 1405.0, + 606.0, + 1405.0, + 639.0, + 296.0, + 639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 636.0, + 1404.0, + 636.0, + 1404.0, + 669.0, + 295.0, + 669.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 663.0, + 1407.0, + 663.0, + 1407.0, + 701.0, + 292.0, + 701.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 695.0, + 1405.0, + 695.0, + 1405.0, + 733.0, + 292.0, + 733.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 724.0, + 560.0, + 724.0, + 560.0, + 763.0, + 292.0, + 763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 635.0, + 724.0, + 1056.0, + 724.0, + 1056.0, + 763.0, + 635.0, + 763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1182.0, + 724.0, + 1405.0, + 724.0, + 1405.0, + 763.0, + 1182.0, + 763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 758.0, + 1319.0, + 758.0, + 1319.0, + 790.0, + 296.0, + 790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1354.0, + 758.0, + 1405.0, + 758.0, + 1405.0, + 790.0, + 1354.0, + 790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 789.0, + 449.0, + 789.0, + 449.0, + 822.0, + 296.0, + 822.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 475.0, + 789.0, + 1154.0, + 789.0, + 1154.0, + 822.0, + 475.0, + 822.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 1064.0, + 1102.0, + 1064.0, + 1102.0, + 1097.0, + 298.0, + 1097.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1093.0, + 1101.0, + 1093.0, + 1101.0, + 1128.0, + 295.0, + 1128.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1124.0, + 1101.0, + 1124.0, + 1101.0, + 1160.0, + 294.0, + 1160.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1155.0, + 1103.0, + 1155.0, + 1103.0, + 1191.0, + 292.0, + 1191.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1185.0, + 1103.0, + 1185.0, + 1103.0, + 1221.0, + 293.0, + 1221.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1216.0, + 1101.0, + 1216.0, + 1101.0, + 1249.0, + 295.0, + 1249.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1245.0, + 1102.0, + 1245.0, + 1102.0, + 1281.0, + 294.0, + 1281.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1276.0, + 1103.0, + 1276.0, + 1103.0, + 1312.0, + 294.0, + 1312.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1305.0, + 1103.0, + 1305.0, + 1103.0, + 1341.0, + 293.0, + 1341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1338.0, + 1102.0, + 1338.0, + 1102.0, + 1371.0, + 294.0, + 1371.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1368.0, + 1044.0, + 1368.0, + 1044.0, + 1402.0, + 296.0, + 1402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1817.0, + 1405.0, + 1817.0, + 1405.0, + 1856.0, + 293.0, + 1856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1848.0, + 1407.0, + 1848.0, + 1407.0, + 1887.0, + 292.0, + 1887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1881.0, + 1405.0, + 1881.0, + 1405.0, + 1914.0, + 293.0, + 1914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1912.0, + 1405.0, + 1912.0, + 1405.0, + 1945.0, + 293.0, + 1945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1942.0, + 1405.0, + 1942.0, + 1405.0, + 1977.0, + 294.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1971.0, + 1405.0, + 1971.0, + 1405.0, + 2006.0, + 293.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2002.0, + 1287.0, + 2002.0, + 1287.0, + 2037.0, + 293.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 831.0, + 1405.0, + 831.0, + 1405.0, + 869.0, + 292.0, + 869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 859.0, + 1099.0, + 859.0, + 1099.0, + 903.0, + 292.0, + 903.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1144.0, + 859.0, + 1177.0, + 859.0, + 1177.0, + 903.0, + 1144.0, + 903.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1235.0, + 859.0, + 1406.0, + 859.0, + 1406.0, + 903.0, + 1235.0, + 903.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 894.0, + 1406.0, + 894.0, + 1406.0, + 929.0, + 295.0, + 929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 924.0, + 1404.0, + 924.0, + 1404.0, + 960.0, + 295.0, + 960.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 953.0, + 825.0, + 953.0, + 825.0, + 993.0, + 292.0, + 993.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 888.0, + 953.0, + 916.0, + 953.0, + 916.0, + 993.0, + 888.0, + 993.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 979.0, + 953.0, + 1406.0, + 953.0, + 1406.0, + 993.0, + 979.0, + 993.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 987.0, + 1404.0, + 987.0, + 1404.0, + 1021.0, + 295.0, + 1021.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1016.0, + 900.0, + 1016.0, + 900.0, + 1053.0, + 294.0, + 1053.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1505.0, + 1404.0, + 1505.0, + 1404.0, + 1540.0, + 294.0, + 1540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1538.0, + 1404.0, + 1538.0, + 1404.0, + 1569.0, + 295.0, + 1569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1567.0, + 1403.0, + 1567.0, + 1403.0, + 1598.0, + 295.0, + 1598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1596.0, + 439.0, + 1596.0, + 439.0, + 1635.0, + 293.0, + 1635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 717.0, + 1596.0, + 1405.0, + 1596.0, + 1405.0, + 1635.0, + 717.0, + 1635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1627.0, + 1405.0, + 1627.0, + 1405.0, + 1663.0, + 294.0, + 1663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1659.0, + 696.0, + 1659.0, + 696.0, + 1694.0, + 295.0, + 1694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 761.0, + 1659.0, + 1318.0, + 1659.0, + 1318.0, + 1694.0, + 761.0, + 1694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 465.0, + 1017.0, + 465.0, + 1017.0, + 501.0, + 297.0, + 501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1147.0, + 465.0, + 1403.0, + 465.0, + 1403.0, + 501.0, + 1147.0, + 501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 497.0, + 1266.0, + 497.0, + 1266.0, + 530.0, + 293.0, + 530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1415.0, + 1102.0, + 1415.0, + 1102.0, + 1449.0, + 296.0, + 1449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1447.0, + 1103.0, + 1447.0, + 1103.0, + 1479.0, + 295.0, + 1479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1475.0, + 1103.0, + 1475.0, + 1103.0, + 1510.0, + 294.0, + 1510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 362.0, + 1371.0, + 362.0, + 1371.0, + 401.0, + 330.0, + 401.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 7, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 298, + 75, + 854, + 75, + 854, + 105, + 298, + 105 + ], + "score": 0.885 + }, + { + "category_id": 0, + "poly": [ + 300, + 227, + 488, + 227, + 488, + 261, + 300, + 261 + ], + "score": 0.818 + }, + { + "category_id": 1, + "poly": [ + 298, + 1124, + 1402, + 1124, + 1402, + 1190, + 298, + 1190 + ], + "score": 0.817 + }, + { + "category_id": 1, + "poly": [ + 298, + 280, + 1404, + 280, + 1404, + 404, + 298, + 404 + ], + "score": 0.815 + }, + { + "category_id": 1, + "poly": [ + 295, + 661, + 1401, + 661, + 1401, + 726, + 295, + 726 + ], + "score": 0.805 + }, + { + "category_id": 1, + "poly": [ + 298, + 1822, + 1400, + 1822, + 1400, + 1917, + 298, + 1917 + ], + "score": 0.8 + }, + { + "category_id": 1, + "poly": [ + 293, + 747, + 1404, + 747, + 1404, + 812, + 293, + 812 + ], + "score": 0.8 + }, + { + "category_id": 1, + "poly": [ + 301, + 1941, + 1402, + 1941, + 1402, + 2034, + 301, + 2034 + ], + "score": 0.794 + }, + { + "category_id": 1, + "poly": [ + 293, + 1328, + 1400, + 1328, + 1400, + 1394, + 293, + 1394 + ], + "score": 0.794 + }, + { + "category_id": 1, + "poly": [ + 298, + 1037, + 1401, + 1037, + 1401, + 1103, + 298, + 1103 + ], + "score": 0.794 + }, + { + "category_id": 1, + "poly": [ + 292, + 1415, + 1402, + 1415, + 1402, + 1480, + 292, + 1480 + ], + "score": 0.79 + }, + { + "category_id": 1, + "poly": [ + 298, + 1619, + 1402, + 1619, + 1402, + 1684, + 298, + 1684 + ], + "score": 0.789 + }, + { + "category_id": 1, + "poly": [ + 297, + 951, + 1400, + 951, + 1400, + 1016, + 297, + 1016 + ], + "score": 0.779 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 858, + 2088, + 858, + 2111, + 840, + 2111 + ], + "score": 0.776 + }, + { + "category_id": 1, + "poly": [ + 299, + 834, + 1402, + 834, + 1402, + 930, + 299, + 930 + ], + "score": 0.772 + }, + { + "category_id": 1, + "poly": [ + 299, + 427, + 1400, + 427, + 1400, + 521, + 299, + 521 + ], + "score": 0.768 + }, + { + "category_id": 1, + "poly": [ + 297, + 1501, + 1404, + 1501, + 1404, + 1597, + 297, + 1597 + ], + "score": 0.764 + }, + { + "category_id": 1, + "poly": [ + 297, + 1211, + 1404, + 1211, + 1404, + 1306, + 297, + 1306 + ], + "score": 0.747 + }, + { + "category_id": 1, + "poly": [ + 297, + 543, + 1405, + 543, + 1405, + 637, + 297, + 637 + ], + "score": 0.741 + }, + { + "category_id": 1, + "poly": [ + 297, + 1705, + 1405, + 1705, + 1405, + 1800, + 297, + 1800 + ], + "score": 0.723 + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 857.0, + 73.0, + 857.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 227.0, + 490.0, + 227.0, + 490.0, + 264.0, + 296.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2087.0, + 860.0, + 2087.0, + 860.0, + 2117.0, + 839.0, + 2117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1123.0, + 1404.0, + 1123.0, + 1404.0, + 1161.0, + 296.0, + 1161.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1157.0, + 1386.0, + 1157.0, + 1386.0, + 1193.0, + 325.0, + 1193.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 279.0, + 1405.0, + 279.0, + 1405.0, + 315.0, + 294.0, + 315.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 311.0, + 1406.0, + 311.0, + 1406.0, + 344.0, + 321.0, + 344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 343.0, + 1402.0, + 343.0, + 1402.0, + 376.0, + 322.0, + 376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 372.0, + 859.0, + 372.0, + 859.0, + 405.0, + 320.0, + 405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 659.0, + 1402.0, + 659.0, + 1402.0, + 699.0, + 295.0, + 699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 690.0, + 1019.0, + 690.0, + 1019.0, + 728.0, + 322.0, + 728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1821.0, + 1405.0, + 1821.0, + 1405.0, + 1861.0, + 293.0, + 1861.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1852.0, + 1405.0, + 1852.0, + 1405.0, + 1895.0, + 321.0, + 1895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1885.0, + 586.0, + 1885.0, + 586.0, + 1918.0, + 322.0, + 1918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 749.0, + 1404.0, + 749.0, + 1404.0, + 785.0, + 297.0, + 785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 778.0, + 1356.0, + 778.0, + 1356.0, + 814.0, + 321.0, + 814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1937.0, + 1403.0, + 1937.0, + 1403.0, + 1980.0, + 295.0, + 1980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1973.0, + 1404.0, + 1973.0, + 1404.0, + 2007.0, + 322.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 2003.0, + 1241.0, + 2003.0, + 1241.0, + 2037.0, + 324.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1327.0, + 1404.0, + 1327.0, + 1404.0, + 1366.0, + 293.0, + 1366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1360.0, + 1293.0, + 1360.0, + 1293.0, + 1393.0, + 322.0, + 1393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1035.0, + 1406.0, + 1035.0, + 1406.0, + 1076.0, + 294.0, + 1076.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1069.0, + 1099.0, + 1069.0, + 1099.0, + 1104.0, + 323.0, + 1104.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1417.0, + 1405.0, + 1417.0, + 1405.0, + 1453.0, + 295.0, + 1453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1446.0, + 1204.0, + 1446.0, + 1204.0, + 1482.0, + 323.0, + 1482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 1621.0, + 1406.0, + 1621.0, + 1406.0, + 1657.0, + 298.0, + 1657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1650.0, + 1314.0, + 1650.0, + 1314.0, + 1686.0, + 322.0, + 1686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 947.0, + 1404.0, + 947.0, + 1404.0, + 993.0, + 293.0, + 993.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 982.0, + 1119.0, + 982.0, + 1119.0, + 1018.0, + 321.0, + 1018.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 833.0, + 1404.0, + 833.0, + 1404.0, + 872.0, + 293.0, + 872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 867.0, + 1406.0, + 867.0, + 1406.0, + 902.0, + 323.0, + 902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 897.0, + 886.0, + 897.0, + 886.0, + 931.0, + 323.0, + 931.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 428.0, + 1404.0, + 428.0, + 1404.0, + 462.0, + 295.0, + 462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 457.0, + 1404.0, + 457.0, + 1404.0, + 493.0, + 320.0, + 493.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 490.0, + 507.0, + 490.0, + 507.0, + 520.0, + 324.0, + 520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1501.0, + 1404.0, + 1501.0, + 1404.0, + 1540.0, + 294.0, + 1540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1532.0, + 1404.0, + 1532.0, + 1404.0, + 1570.0, + 322.0, + 1570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1565.0, + 746.0, + 1565.0, + 746.0, + 1599.0, + 324.0, + 1599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1210.0, + 1402.0, + 1210.0, + 1402.0, + 1249.0, + 294.0, + 1249.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1244.0, + 1405.0, + 1244.0, + 1405.0, + 1278.0, + 324.0, + 1278.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1273.0, + 874.0, + 1273.0, + 874.0, + 1311.0, + 325.0, + 1311.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 543.0, + 1403.0, + 543.0, + 1403.0, + 582.0, + 296.0, + 582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 577.0, + 1403.0, + 577.0, + 1403.0, + 611.0, + 323.0, + 611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 605.0, + 441.0, + 605.0, + 441.0, + 638.0, + 321.0, + 638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1705.0, + 1402.0, + 1705.0, + 1402.0, + 1743.0, + 297.0, + 1743.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1739.0, + 1405.0, + 1739.0, + 1405.0, + 1773.0, + 324.0, + 1773.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 1768.0, + 934.0, + 1768.0, + 934.0, + 1802.0, + 328.0, + 1802.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 8, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 298, + 75, + 854, + 75, + 854, + 105, + 298, + 105 + ], + "score": 0.883 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2113, + 836, + 2113 + ], + "score": 0.829 + }, + { + "category_id": 1, + "poly": [ + 303, + 837, + 1401, + 837, + 1401, + 933, + 303, + 933 + ], + "score": 0.769 + }, + { + "category_id": 1, + "poly": [ + 297, + 548, + 1399, + 548, + 1399, + 612, + 297, + 612 + ], + "score": 0.763 + }, + { + "category_id": 1, + "poly": [ + 296, + 633, + 1402, + 633, + 1402, + 700, + 296, + 700 + ], + "score": 0.758 + }, + { + "category_id": 1, + "poly": [ + 296, + 1680, + 1404, + 1680, + 1404, + 1746, + 296, + 1746 + ], + "score": 0.745 + }, + { + "category_id": 1, + "poly": [ + 301, + 721, + 1400, + 721, + 1400, + 817, + 301, + 817 + ], + "score": 0.745 + }, + { + "category_id": 1, + "poly": [ + 294, + 1157, + 1401, + 1157, + 1401, + 1224, + 294, + 1224 + ], + "score": 0.743 + }, + { + "category_id": 1, + "poly": [ + 296, + 954, + 1397, + 954, + 1397, + 1021, + 296, + 1021 + ], + "score": 0.742 + }, + { + "category_id": 1, + "poly": [ + 298, + 1244, + 1403, + 1244, + 1403, + 1341, + 298, + 1341 + ], + "score": 0.721 + }, + { + "category_id": 1, + "poly": [ + 297, + 228, + 1401, + 228, + 1401, + 323, + 297, + 323 + ], + "score": 0.697 + }, + { + "category_id": 1, + "poly": [ + 298, + 1767, + 1402, + 1767, + 1402, + 1862, + 298, + 1862 + ], + "score": 0.693 + }, + { + "category_id": 1, + "poly": [ + 295, + 1594, + 1398, + 1594, + 1398, + 1660, + 295, + 1660 + ], + "score": 0.693 + }, + { + "category_id": 1, + "poly": [ + 298, + 1361, + 1401, + 1361, + 1401, + 1456, + 298, + 1456 + ], + "score": 0.691 + }, + { + "category_id": 1, + "poly": [ + 298, + 345, + 1398, + 345, + 1398, + 410, + 298, + 410 + ], + "score": 0.645 + }, + { + "category_id": 1, + "poly": [ + 294, + 1885, + 1402, + 1885, + 1402, + 1949, + 294, + 1949 + ], + "score": 0.642 + }, + { + "category_id": 1, + "poly": [ + 298, + 1971, + 1398, + 1971, + 1398, + 2035, + 298, + 2035 + ], + "score": 0.618 + }, + { + "category_id": 1, + "poly": [ + 297, + 1476, + 1406, + 1476, + 1406, + 1572, + 297, + 1572 + ], + "score": 0.61 + }, + { + "category_id": 1, + "poly": [ + 297, + 1040, + 1404, + 1040, + 1404, + 1135, + 297, + 1135 + ], + "score": 0.59 + }, + { + "category_id": 1, + "poly": [ + 297, + 430, + 1405, + 430, + 1405, + 526, + 297, + 526 + ], + "score": 0.449 + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 857.0, + 73.0, + 857.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2084.0, + 871.0, + 2084.0, + 871.0, + 2123.0, + 832.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 837.0, + 1405.0, + 837.0, + 1405.0, + 875.0, + 295.0, + 875.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 872.0, + 1402.0, + 872.0, + 1402.0, + 902.0, + 324.0, + 902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 901.0, + 692.0, + 901.0, + 692.0, + 935.0, + 324.0, + 935.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 547.0, + 1403.0, + 547.0, + 1403.0, + 586.0, + 295.0, + 586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 580.0, + 684.0, + 580.0, + 684.0, + 613.0, + 322.0, + 613.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 636.0, + 1403.0, + 636.0, + 1403.0, + 669.0, + 295.0, + 669.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 668.0, + 1078.0, + 668.0, + 1078.0, + 700.0, + 325.0, + 700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1677.0, + 1406.0, + 1677.0, + 1406.0, + 1720.0, + 295.0, + 1720.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1713.0, + 762.0, + 1713.0, + 762.0, + 1747.0, + 321.0, + 1747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 722.0, + 1404.0, + 722.0, + 1404.0, + 757.0, + 297.0, + 757.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 756.0, + 1404.0, + 756.0, + 1404.0, + 786.0, + 325.0, + 786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 783.0, + 804.0, + 783.0, + 804.0, + 819.0, + 322.0, + 819.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1157.0, + 1403.0, + 1157.0, + 1403.0, + 1196.0, + 294.0, + 1196.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1188.0, + 954.0, + 1188.0, + 954.0, + 1224.0, + 323.0, + 1224.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 955.0, + 1403.0, + 955.0, + 1403.0, + 991.0, + 296.0, + 991.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 986.0, + 1205.0, + 986.0, + 1205.0, + 1023.0, + 321.0, + 1023.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1244.0, + 1405.0, + 1244.0, + 1405.0, + 1283.0, + 294.0, + 1283.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1276.0, + 1405.0, + 1276.0, + 1405.0, + 1311.0, + 323.0, + 1311.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1306.0, + 1153.0, + 1306.0, + 1153.0, + 1344.0, + 323.0, + 1344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 228.0, + 1403.0, + 228.0, + 1403.0, + 266.0, + 295.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 258.0, + 1406.0, + 258.0, + 1406.0, + 297.0, + 321.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 290.0, + 551.0, + 290.0, + 551.0, + 325.0, + 322.0, + 325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1766.0, + 1406.0, + 1766.0, + 1406.0, + 1805.0, + 292.0, + 1805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1799.0, + 1404.0, + 1799.0, + 1404.0, + 1834.0, + 323.0, + 1834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1830.0, + 612.0, + 1830.0, + 612.0, + 1860.0, + 323.0, + 1860.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1592.0, + 1403.0, + 1592.0, + 1403.0, + 1634.0, + 293.0, + 1634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1626.0, + 1192.0, + 1626.0, + 1192.0, + 1661.0, + 321.0, + 1661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1361.0, + 1406.0, + 1361.0, + 1406.0, + 1399.0, + 296.0, + 1399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1393.0, + 1405.0, + 1393.0, + 1405.0, + 1430.0, + 321.0, + 1430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1423.0, + 1059.0, + 1423.0, + 1059.0, + 1457.0, + 322.0, + 1457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 344.0, + 1403.0, + 344.0, + 1403.0, + 383.0, + 293.0, + 383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 376.0, + 1060.0, + 376.0, + 1060.0, + 411.0, + 323.0, + 411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1880.0, + 1406.0, + 1880.0, + 1406.0, + 1926.0, + 292.0, + 1926.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1914.0, + 1155.0, + 1914.0, + 1155.0, + 1952.0, + 322.0, + 1952.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1968.0, + 1402.0, + 1968.0, + 1402.0, + 2009.0, + 293.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 2002.0, + 1021.0, + 2002.0, + 1021.0, + 2038.0, + 323.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1479.0, + 1404.0, + 1479.0, + 1404.0, + 1513.0, + 296.0, + 1513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1507.0, + 1407.0, + 1507.0, + 1407.0, + 1549.0, + 319.0, + 1549.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1535.0, + 412.0, + 1535.0, + 412.0, + 1576.0, + 320.0, + 1576.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1040.0, + 1405.0, + 1040.0, + 1405.0, + 1079.0, + 292.0, + 1079.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1072.0, + 1404.0, + 1072.0, + 1404.0, + 1108.0, + 322.0, + 1108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1103.0, + 628.0, + 1103.0, + 628.0, + 1137.0, + 322.0, + 1137.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 429.0, + 1405.0, + 429.0, + 1405.0, + 469.0, + 292.0, + 469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 462.0, + 1405.0, + 462.0, + 1405.0, + 499.0, + 321.0, + 499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 489.0, + 401.0, + 489.0, + 401.0, + 529.0, + 320.0, + 529.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 9, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 229, + 1401, + 229, + 1401, + 322, + 298, + 322 + ], + "score": 0.928 + }, + { + "category_id": 1, + "poly": [ + 295, + 343, + 1400, + 343, + 1400, + 435, + 295, + 435 + ], + "score": 0.921 + }, + { + "category_id": 1, + "poly": [ + 297, + 456, + 1400, + 456, + 1400, + 519, + 297, + 519 + ], + "score": 0.921 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 863, + 2088, + 863, + 2112, + 836, + 2112 + ], + "score": 0.83 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 854, + 75, + 854, + 105, + 298, + 105 + ], + "score": 0.825 + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2124.0, + 832.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 857.0, + 73.0, + 857.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 228.0, + 1405.0, + 228.0, + 1405.0, + 266.0, + 294.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 259.0, + 1405.0, + 259.0, + 1405.0, + 298.0, + 321.0, + 298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 286.0, + 399.0, + 286.0, + 399.0, + 327.0, + 321.0, + 327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 340.0, + 1405.0, + 340.0, + 1405.0, + 381.0, + 293.0, + 381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 372.0, + 1404.0, + 372.0, + 1404.0, + 408.0, + 322.0, + 408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 403.0, + 511.0, + 403.0, + 511.0, + 438.0, + 323.0, + 438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 454.0, + 1405.0, + 454.0, + 1405.0, + 494.0, + 293.0, + 494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 486.0, + 1258.0, + 486.0, + 1258.0, + 521.0, + 322.0, + 521.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 10, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 1259, + 1406, + 1259, + 1406, + 1605, + 296, + 1605 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 297, + 1616, + 1404, + 1616, + 1404, + 1761, + 297, + 1761 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 297, + 945, + 1405, + 945, + 1405, + 1056, + 297, + 1056 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 297, + 473, + 1406, + 473, + 1406, + 577, + 297, + 577 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 297, + 354, + 1404, + 354, + 1404, + 449, + 297, + 449 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 297, + 823, + 1406, + 823, + 1406, + 919, + 297, + 919 + ], + "score": 0.971 + }, + { + "category_id": 8, + "poly": [ + 513, + 1940, + 1184, + 1940, + 1184, + 2042, + 513, + 2042 + ], + "score": 0.963 + }, + { + "category_id": 8, + "poly": [ + 625, + 1077, + 1072, + 1077, + 1072, + 1177, + 625, + 1177 + ], + "score": 0.962 + }, + { + "category_id": 8, + "poly": [ + 643, + 598, + 1056, + 598, + 1056, + 695, + 643, + 695 + ], + "score": 0.962 + }, + { + "category_id": 8, + "poly": [ + 648, + 1779, + 1050, + 1779, + 1050, + 1873, + 648, + 1873 + ], + "score": 0.958 + }, + { + "category_id": 1, + "poly": [ + 295, + 715, + 1016, + 715, + 1016, + 754, + 295, + 754 + ], + "score": 0.926 + }, + { + "category_id": 1, + "poly": [ + 297, + 1198, + 1016, + 1198, + 1016, + 1236, + 297, + 1236 + ], + "score": 0.925 + }, + { + "category_id": 1, + "poly": [ + 297, + 776, + 877, + 776, + 877, + 810, + 297, + 810 + ], + "score": 0.914 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1810, + 1400, + 1810, + 1400, + 1840, + 1351, + 1840 + ], + "score": 0.906 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1975, + 1401, + 1975, + 1401, + 2006, + 1351, + 2006 + ], + "score": 0.902 + }, + { + "category_id": 9, + "poly": [ + 1351, + 625, + 1400, + 625, + 1400, + 657, + 1351, + 657 + ], + "score": 0.896 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1104, + 1400, + 1104, + 1400, + 1136, + 1351, + 1136 + ], + "score": 0.895 + }, + { + "category_id": 2, + "poly": [ + 297, + 74, + 855, + 74, + 855, + 106, + 297, + 106 + ], + "score": 0.894 + }, + { + "category_id": 2, + "poly": [ + 836, + 2087, + 865, + 2087, + 865, + 2113, + 836, + 2113 + ], + "score": 0.869 + }, + { + "category_id": 2, + "poly": [ + 1374, + 778, + 1402, + 778, + 1402, + 807, + 1374, + 807 + ], + "score": 0.833 + }, + { + "category_id": 0, + "poly": [ + 301, + 227, + 450, + 227, + 450, + 262, + 301, + 262 + ], + "score": 0.828 + }, + { + "category_id": 1, + "poly": [ + 301, + 295, + 615, + 295, + 615, + 329, + 301, + 329 + ], + "score": 0.765 + }, + { + "category_id": 1, + "poly": [ + 297, + 1890, + 833, + 1890, + 833, + 1924, + 297, + 1924 + ], + "score": 0.532 + }, + { + "category_id": 0, + "poly": [ + 301, + 295, + 615, + 295, + 615, + 329, + 301, + 329 + ], + "score": 0.179 + }, + { + "category_id": 14, + "poly": [ + 647, + 1778, + 1053, + 1778, + 1053, + 1875, + 647, + 1875 + ], + "score": 0.95, + "latex": "I _ { l } ( v _ { a } , v _ { b } ; k ) = \\frac { \\partial y _ { a } ^ { ( k ) } } { \\partial y _ { b } } = \\sum _ { j = 0 } ^ { k - 1 } \\frac { \\partial y _ { a } ^ { ( k ) } } { \\partial y _ { b } ^ { ( j ) } } ." + }, + { + "category_id": 14, + "poly": [ + 624, + 1071, + 1072, + 1071, + 1072, + 1180, + 624, + 1180 + ], + "score": 0.95, + "latex": "I _ { l } ( v _ { a } , v _ { b } ; k ) = \\sum _ { j = 1 } ^ { k } \\sum _ { \\mathcal { U } _ { j } ^ { a b } } \\prod _ { i = j } ^ { 1 } \\tilde { a } _ { v ^ { ( i - 1 ) } , v ^ { ( i ) } } ," + }, + { + "category_id": 14, + "poly": [ + 643, + 593, + 1055, + 593, + 1055, + 698, + 643, + 698 + ], + "score": 0.94, + "latex": "\\tilde { I } _ { f } ( v _ { a } , v _ { b } ; k ) = \\sum _ { \\mathcal { P } _ { k } ^ { a b } } \\prod _ { i = k } ^ { 1 } \\tilde { a } _ { v ^ { ( i - 1 ) } , v ^ { ( i ) } } ," + }, + { + "category_id": 14, + "poly": [ + 515, + 1940, + 1188, + 1940, + 1188, + 2043, + 515, + 2043 + ], + "score": 0.94, + "latex": "\\frac { \\partial y _ { a } ^ { ( k ) } } { \\partial y _ { b } ^ { ( j ) } } = \\frac { \\partial \\sum _ { v _ { z } \\in \\mathcal { N } ( v _ { a } ) } \\tilde { a } _ { a z } y _ { z } ^ { ( k - 1 ) } } { \\partial y _ { b } ^ { ( j ) } } = \\sum _ { v _ { z } \\in \\mathcal { N } ( v _ { a } ) } \\tilde { a } _ { a z } \\frac { \\partial y _ { z } ^ { ( k - 1 ) } } { \\partial y _ { b } ^ { ( j ) } } ." + }, + { + "category_id": 13, + "poly": [ + 502, + 1719, + 550, + 1719, + 550, + 1759, + 502, + 1759 + ], + "score": 0.93, + "latex": "y _ { a } ^ { ( k ) }" + }, + { + "category_id": 13, + "poly": [ + 633, + 1293, + 775, + 1293, + 775, + 1331, + 633, + 1331 + ], + "score": 0.92, + "latex": "\\tilde { I } _ { f } ( v _ { a } , v _ { b } ; k )" + }, + { + "category_id": 13, + "poly": [ + 988, + 824, + 1057, + 824, + 1057, + 860, + 988, + 860 + ], + "score": 0.92, + "latex": "\\mathcal { P } _ { k } ^ { a b }" + }, + { + "category_id": 13, + "poly": [ + 888, + 1720, + 933, + 1720, + 933, + 1762, + 888, + 1762 + ], + "score": 0.92, + "latex": "y _ { b } ^ { ( j ) }" + }, + { + "category_id": 13, + "poly": [ + 1065, + 1726, + 1286, + 1726, + 1286, + 1759, + 1065, + 1759 + ], + "score": 0.92, + "latex": "j = 0 , 1 , \\cdots , k - 1" + }, + { + "category_id": 13, + "poly": [ + 678, + 1679, + 725, + 1679, + 725, + 1722, + 678, + 1722 + ], + "score": 0.92, + "latex": "y _ { b } ^ { ( 0 ) }" + }, + { + "category_id": 13, + "poly": [ + 371, + 1204, + 489, + 1204, + 489, + 1237, + 371, + 1237 + ], + "score": 0.92, + "latex": "\\tilde { a } _ { v ^ { ( i - 1 ) } , v ^ { ( i ) } }" + }, + { + "category_id": 13, + "poly": [ + 655, + 948, + 910, + 948, + 910, + 985, + 655, + 985 + ], + "score": 0.92, + "latex": "[ v ^ { ( j ) } , v ^ { ( j - 1 ) } , \\cdot \\cdot \\cdot , v ^ { ( 0 ) } ]" + }, + { + "category_id": 13, + "poly": [ + 372, + 721, + 489, + 721, + 489, + 755, + 372, + 755 + ], + "score": 0.92, + "latex": "\\tilde { a } _ { v ^ { ( i - 1 ) } , v ^ { ( i ) } }" + }, + { + "category_id": 13, + "poly": [ + 973, + 1719, + 1020, + 1719, + 1020, + 1759, + 973, + 1759 + ], + "score": 0.91, + "latex": "y _ { a } ^ { ( k ) }" + }, + { + "category_id": 13, + "poly": [ + 416, + 1329, + 551, + 1329, + 551, + 1362, + 416, + 1362 + ], + "score": 0.91, + "latex": "I _ { l } ( v _ { a } , v _ { b } ; k )" + }, + { + "category_id": 13, + "poly": [ + 465, + 949, + 535, + 949, + 535, + 988, + 465, + 988 + ], + "score": 0.91, + "latex": "\\mathcal { U } _ { j } ^ { a b }" + }, + { + "category_id": 13, + "poly": [ + 1025, + 1685, + 1224, + 1685, + 1224, + 1719, + 1025, + 1719 + ], + "score": 0.91, + "latex": "j = 1 , \\cdots , k - 1" + }, + { + "category_id": 13, + "poly": [ + 932, + 1679, + 978, + 1679, + 978, + 1721, + 932, + 1721 + ], + "score": 0.91, + "latex": "y _ { b } ^ { ( j ) }" + }, + { + "category_id": 13, + "poly": [ + 864, + 715, + 1007, + 715, + 1007, + 753, + 864, + 753 + ], + "score": 0.91, + "latex": "( v ^ { ( i ) } , v ^ { ( i - 1 ) } )" + }, + { + "category_id": 13, + "poly": [ + 1210, + 473, + 1280, + 473, + 1280, + 509, + 1210, + 509 + ], + "score": 0.91, + "latex": "\\mathcal { P } _ { k } ^ { a b }" + }, + { + "category_id": 13, + "poly": [ + 863, + 1196, + 1007, + 1196, + 1007, + 1235, + 863, + 1235 + ], + "score": 0.9, + "latex": "( v ^ { ( i ) } , v ^ { ( i - 1 ) } )" + }, + { + "category_id": 13, + "poly": [ + 298, + 506, + 557, + 506, + 557, + 543, + 298, + 543 + ], + "score": 0.89, + "latex": "[ v ^ { ( k ) } , v ^ { ( k - 1 ) } , \\cdot \\cdot \\cdot , v ^ { ( 0 ) } ]" + }, + { + "category_id": 13, + "poly": [ + 375, + 1022, + 420, + 1022, + 420, + 1053, + 375, + 1053 + ], + "score": 0.87, + "latex": "v ^ { ( 0 ) }" + }, + { + "category_id": 13, + "poly": [ + 1107, + 1483, + 1134, + 1483, + 1134, + 1511, + 1107, + 1511 + ], + "score": 0.86, + "latex": "v _ { b }" + }, + { + "category_id": 13, + "poly": [ + 816, + 1425, + 846, + 1425, + 846, + 1450, + 816, + 1450 + ], + "score": 0.85, + "latex": "v _ { a }" + }, + { + "category_id": 13, + "poly": [ + 762, + 891, + 792, + 891, + 792, + 917, + 762, + 917 + ], + "score": 0.85, + "latex": "v _ { a }" + }, + { + "category_id": 13, + "poly": [ + 762, + 1514, + 789, + 1514, + 789, + 1541, + 762, + 1541 + ], + "score": 0.85, + "latex": "v _ { b }" + }, + { + "category_id": 13, + "poly": [ + 544, + 1546, + 573, + 1546, + 573, + 1572, + 544, + 1572 + ], + "score": 0.85, + "latex": "v _ { a }" + }, + { + "category_id": 13, + "poly": [ + 1220, + 509, + 1340, + 509, + 1340, + 541, + 1220, + 541 + ], + "score": 0.85, + "latex": "\\boldsymbol { v } ^ { ( 0 ) } = \\boldsymbol { v } _ { b }" + }, + { + "category_id": 13, + "poly": [ + 360, + 1362, + 388, + 1362, + 388, + 1389, + 360, + 1389 + ], + "score": 0.85, + "latex": "v _ { b }" + }, + { + "category_id": 13, + "poly": [ + 891, + 1333, + 919, + 1333, + 919, + 1359, + 891, + 1359 + ], + "score": 0.85, + "latex": "v _ { b }" + }, + { + "category_id": 13, + "poly": [ + 881, + 892, + 908, + 892, + 908, + 917, + 881, + 917 + ], + "score": 0.85, + "latex": "v _ { b }" + }, + { + "category_id": 13, + "poly": [ + 1079, + 1303, + 1110, + 1303, + 1110, + 1328, + 1079, + 1328 + ], + "score": 0.85, + "latex": "v _ { a }" + }, + { + "category_id": 13, + "poly": [ + 831, + 1333, + 860, + 1333, + 860, + 1359, + 831, + 1359 + ], + "score": 0.85, + "latex": "v _ { a }" + }, + { + "category_id": 13, + "poly": [ + 1298, + 1362, + 1326, + 1362, + 1326, + 1389, + 1298, + 1389 + ], + "score": 0.84, + "latex": "v _ { b }" + }, + { + "category_id": 13, + "poly": [ + 881, + 1424, + 908, + 1424, + 908, + 1450, + 881, + 1450 + ], + "score": 0.84, + "latex": "v _ { b }" + }, + { + "category_id": 13, + "poly": [ + 1149, + 1302, + 1177, + 1302, + 1177, + 1328, + 1149, + 1328 + ], + "score": 0.84, + "latex": "v _ { b }" + }, + { + "category_id": 13, + "poly": [ + 422, + 1692, + 450, + 1692, + 450, + 1717, + 422, + 1717 + ], + "score": 0.84, + "latex": "v _ { b }" + }, + { + "category_id": 13, + "poly": [ + 826, + 514, + 857, + 514, + 857, + 541, + 826, + 541 + ], + "score": 0.84, + "latex": "v _ { a }" + }, + { + "category_id": 13, + "poly": [ + 1080, + 507, + 1203, + 507, + 1203, + 541, + 1080, + 541 + ], + "score": 0.84, + "latex": "\\boldsymbol { v } ^ { ( k ) } = \\boldsymbol { v } _ { a }" + }, + { + "category_id": 13, + "poly": [ + 1164, + 956, + 1194, + 956, + 1194, + 982, + 1164, + 982 + ], + "score": 0.84, + "latex": "v _ { a }" + }, + { + "category_id": 13, + "poly": [ + 1162, + 861, + 1192, + 861, + 1192, + 887, + 1162, + 887 + ], + "score": 0.84, + "latex": "v _ { a }" + }, + { + "category_id": 13, + "poly": [ + 1225, + 861, + 1252, + 861, + 1252, + 887, + 1225, + 887 + ], + "score": 0.83, + "latex": "v _ { b }" + }, + { + "category_id": 13, + "poly": [ + 959, + 514, + 987, + 514, + 987, + 541, + 959, + 541 + ], + "score": 0.83, + "latex": "v _ { b }" + }, + { + "category_id": 13, + "poly": [ + 1291, + 957, + 1317, + 957, + 1317, + 982, + 1291, + 982 + ], + "score": 0.82, + "latex": "v _ { b }" + }, + { + "category_id": 13, + "poly": [ + 1354, + 1514, + 1382, + 1514, + 1382, + 1541, + 1354, + 1541 + ], + "score": 0.81, + "latex": "v _ { b }" + }, + { + "category_id": 13, + "poly": [ + 1045, + 888, + 1064, + 888, + 1064, + 914, + 1045, + 914 + ], + "score": 0.81, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 297, + 1693, + 325, + 1693, + 325, + 1719, + 297, + 1719 + ], + "score": 0.81, + "latex": "y _ { b }" + }, + { + "category_id": 13, + "poly": [ + 436, + 1732, + 463, + 1732, + 463, + 1759, + 436, + 1759 + ], + "score": 0.81, + "latex": "y _ { b }" + }, + { + "category_id": 13, + "poly": [ + 1080, + 858, + 1098, + 858, + 1098, + 884, + 1080, + 884 + ], + "score": 0.8, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 1297, + 1298, + 1316, + 1298, + 1316, + 1326, + 1297, + 1326 + ], + "score": 0.79, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 1178, + 1330, + 1196, + 1330, + 1196, + 1356, + 1178, + 1356 + ], + "score": 0.78, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 298, + 985, + 407, + 985, + 407, + 1021, + 298, + 1021 + ], + "score": 0.76, + "latex": "\\boldsymbol { v } ^ { ( j ) } = \\boldsymbol { v } _ { a }" + }, + { + "category_id": 13, + "poly": [ + 675, + 512, + 695, + 512, + 695, + 539, + 675, + 539 + ], + "score": 0.74, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 538, + 986, + 737, + 986, + 737, + 1023, + 538, + 1023 + ], + "score": 0.7, + "latex": "v ^ { ( i - 1 ) } \\in \\mathcal { N } ( v ^ { ( i ) } ) ." + }, + { + "category_id": 13, + "poly": [ + 419, + 987, + 526, + 987, + 526, + 1021, + 419, + 1021 + ], + "score": 0.65, + "latex": "v ^ { ( 0 ) } = v _ { b }" + }, + { + "category_id": 13, + "poly": [ + 1021, + 954, + 1038, + 954, + 1038, + 984, + 1021, + 984 + ], + "score": 0.64, + "latex": "j" + }, + { + "category_id": 13, + "poly": [ + 298, + 542, + 679, + 542, + 679, + 578, + 298, + 578 + ], + "score": 0.61, + "latex": "v ^ { ( i - 1 ) } \\in \\mathcal { N } ( v ^ { ( i ) } ) f o r i = k , \\cdots , 1" + }, + { + "category_id": 13, + "poly": [ + 535, + 545, + 680, + 545, + 680, + 577, + 535, + 577 + ], + "score": 0.51, + "latex": "i = k , \\cdots , 1" + }, + { + "category_id": 13, + "poly": [ + 774, + 990, + 915, + 990, + 915, + 1022, + 774, + 1022 + ], + "score": 0.4, + "latex": "i = j , \\cdots , 1" + }, + { + "category_id": 13, + "poly": [ + 448, + 779, + 487, + 779, + 487, + 807, + 448, + 807 + ], + "score": 0.36, + "latex": "\\mathrm { X u }" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 856.0, + 72.0, + 856.0, + 109.0, + 297.0, + 109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2125.0, + 832.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1379.0, + 783.0, + 1401.0, + 783.0, + 1401.0, + 806.0, + 1379.0, + 806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 225.0, + 453.0, + 225.0, + 453.0, + 269.0, + 296.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 296.0, + 618.0, + 296.0, + 618.0, + 330.0, + 297.0, + 330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1262.0, + 1406.0, + 1262.0, + 1406.0, + 1298.0, + 295.0, + 1298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1295.0, + 632.0, + 1295.0, + 632.0, + 1334.0, + 293.0, + 1334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 776.0, + 1295.0, + 1078.0, + 1295.0, + 1078.0, + 1334.0, + 776.0, + 1334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1111.0, + 1295.0, + 1148.0, + 1295.0, + 1148.0, + 1334.0, + 1111.0, + 1334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1178.0, + 1295.0, + 1296.0, + 1295.0, + 1296.0, + 1334.0, + 1178.0, + 1334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1317.0, + 1295.0, + 1407.0, + 1295.0, + 1407.0, + 1334.0, + 1317.0, + 1334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1324.0, + 415.0, + 1324.0, + 415.0, + 1365.0, + 290.0, + 1365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 552.0, + 1324.0, + 830.0, + 1324.0, + 830.0, + 1365.0, + 552.0, + 1365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 1324.0, + 890.0, + 1324.0, + 890.0, + 1365.0, + 861.0, + 1365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 920.0, + 1324.0, + 1177.0, + 1324.0, + 1177.0, + 1365.0, + 920.0, + 1365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1197.0, + 1324.0, + 1407.0, + 1324.0, + 1407.0, + 1365.0, + 1197.0, + 1365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1358.0, + 359.0, + 1358.0, + 359.0, + 1391.0, + 293.0, + 1391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 389.0, + 1358.0, + 1297.0, + 1358.0, + 1297.0, + 1391.0, + 389.0, + 1391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1327.0, + 1358.0, + 1404.0, + 1358.0, + 1404.0, + 1391.0, + 1327.0, + 1391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1389.0, + 1403.0, + 1389.0, + 1403.0, + 1421.0, + 294.0, + 1421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1419.0, + 815.0, + 1419.0, + 815.0, + 1455.0, + 294.0, + 1455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 847.0, + 1419.0, + 880.0, + 1419.0, + 880.0, + 1455.0, + 847.0, + 1455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 909.0, + 1419.0, + 1407.0, + 1419.0, + 1407.0, + 1455.0, + 909.0, + 1455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1450.0, + 1404.0, + 1450.0, + 1404.0, + 1481.0, + 294.0, + 1481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1481.0, + 1106.0, + 1481.0, + 1106.0, + 1513.0, + 295.0, + 1513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1135.0, + 1481.0, + 1403.0, + 1481.0, + 1403.0, + 1513.0, + 1135.0, + 1513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1512.0, + 761.0, + 1512.0, + 761.0, + 1543.0, + 295.0, + 1543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 790.0, + 1512.0, + 1353.0, + 1512.0, + 1353.0, + 1543.0, + 790.0, + 1543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1383.0, + 1512.0, + 1404.0, + 1512.0, + 1404.0, + 1543.0, + 1383.0, + 1543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1537.0, + 543.0, + 1537.0, + 543.0, + 1580.0, + 291.0, + 1580.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 574.0, + 1537.0, + 1407.0, + 1537.0, + 1407.0, + 1580.0, + 574.0, + 1580.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1574.0, + 829.0, + 1574.0, + 829.0, + 1603.0, + 295.0, + 1603.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1616.0, + 1405.0, + 1616.0, + 1405.0, + 1650.0, + 293.0, + 1650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 283.0, + 1649.0, + 296.0, + 1649.0, + 296.0, + 1741.0, + 283.0, + 1741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 1649.0, + 421.0, + 1649.0, + 421.0, + 1741.0, + 326.0, + 1741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 451.0, + 1649.0, + 677.0, + 1649.0, + 677.0, + 1741.0, + 451.0, + 1741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 726.0, + 1649.0, + 931.0, + 1649.0, + 931.0, + 1741.0, + 726.0, + 1741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 979.0, + 1649.0, + 1024.0, + 1649.0, + 1024.0, + 1741.0, + 979.0, + 1741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1225.0, + 1649.0, + 1406.0, + 1649.0, + 1406.0, + 1741.0, + 1225.0, + 1741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 281.0, + 1714.0, + 435.0, + 1714.0, + 435.0, + 1774.0, + 281.0, + 1774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 464.0, + 1714.0, + 501.0, + 1714.0, + 501.0, + 1774.0, + 464.0, + 1774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 551.0, + 1714.0, + 887.0, + 1714.0, + 887.0, + 1774.0, + 551.0, + 1774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 934.0, + 1714.0, + 972.0, + 1714.0, + 972.0, + 1774.0, + 934.0, + 1774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1021.0, + 1714.0, + 1064.0, + 1714.0, + 1064.0, + 1774.0, + 1021.0, + 1774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1287.0, + 1714.0, + 1301.0, + 1714.0, + 1301.0, + 1774.0, + 1287.0, + 1774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 941.0, + 464.0, + 941.0, + 464.0, + 990.0, + 292.0, + 990.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 536.0, + 941.0, + 654.0, + 941.0, + 654.0, + 990.0, + 536.0, + 990.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 911.0, + 941.0, + 1020.0, + 941.0, + 1020.0, + 990.0, + 911.0, + 990.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1039.0, + 941.0, + 1163.0, + 941.0, + 1163.0, + 990.0, + 1039.0, + 990.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1195.0, + 941.0, + 1290.0, + 941.0, + 1290.0, + 990.0, + 1195.0, + 990.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1318.0, + 941.0, + 1408.0, + 941.0, + 1408.0, + 990.0, + 1318.0, + 990.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 979.0, + 297.0, + 979.0, + 297.0, + 1028.0, + 294.0, + 1028.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 408.0, + 979.0, + 418.0, + 979.0, + 418.0, + 1028.0, + 408.0, + 1028.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 527.0, + 979.0, + 537.0, + 979.0, + 537.0, + 1028.0, + 527.0, + 1028.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 738.0, + 979.0, + 773.0, + 979.0, + 773.0, + 1028.0, + 738.0, + 1028.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 916.0, + 979.0, + 1408.0, + 979.0, + 1408.0, + 1028.0, + 916.0, + 1028.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1016.0, + 374.0, + 1016.0, + 374.0, + 1062.0, + 292.0, + 1062.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 421.0, + 1016.0, + 597.0, + 1016.0, + 597.0, + 1062.0, + 421.0, + 1062.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 468.0, + 1209.0, + 468.0, + 1209.0, + 511.0, + 292.0, + 511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1281.0, + 468.0, + 1406.0, + 468.0, + 1406.0, + 511.0, + 1281.0, + 511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 501.0, + 297.0, + 501.0, + 297.0, + 547.0, + 294.0, + 547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 558.0, + 501.0, + 674.0, + 501.0, + 674.0, + 547.0, + 558.0, + 547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 696.0, + 501.0, + 825.0, + 501.0, + 825.0, + 547.0, + 696.0, + 547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 858.0, + 501.0, + 958.0, + 501.0, + 958.0, + 547.0, + 858.0, + 547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 988.0, + 501.0, + 1079.0, + 501.0, + 1079.0, + 547.0, + 988.0, + 547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1204.0, + 501.0, + 1219.0, + 501.0, + 1219.0, + 547.0, + 1204.0, + 547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1341.0, + 501.0, + 1407.0, + 501.0, + 1407.0, + 547.0, + 1341.0, + 547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 536.0, + 297.0, + 536.0, + 297.0, + 584.0, + 294.0, + 584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 681.0, + 536.0, + 854.0, + 536.0, + 854.0, + 584.0, + 681.0, + 584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 355.0, + 1404.0, + 355.0, + 1404.0, + 389.0, + 295.0, + 389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 387.0, + 1402.0, + 387.0, + 1402.0, + 417.0, + 296.0, + 417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 415.0, + 960.0, + 415.0, + 960.0, + 450.0, + 294.0, + 450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 817.0, + 987.0, + 817.0, + 987.0, + 862.0, + 292.0, + 862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1058.0, + 817.0, + 1408.0, + 817.0, + 1408.0, + 862.0, + 1058.0, + 862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 856.0, + 1079.0, + 856.0, + 1079.0, + 891.0, + 295.0, + 891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1099.0, + 856.0, + 1161.0, + 856.0, + 1161.0, + 891.0, + 1099.0, + 891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1193.0, + 856.0, + 1224.0, + 856.0, + 1224.0, + 891.0, + 1193.0, + 891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1253.0, + 856.0, + 1404.0, + 856.0, + 1404.0, + 891.0, + 1253.0, + 891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 886.0, + 761.0, + 886.0, + 761.0, + 924.0, + 294.0, + 924.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 793.0, + 886.0, + 880.0, + 886.0, + 880.0, + 924.0, + 793.0, + 924.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 909.0, + 886.0, + 1044.0, + 886.0, + 1044.0, + 924.0, + 909.0, + 924.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1065.0, + 886.0, + 1139.0, + 886.0, + 1139.0, + 924.0, + 1065.0, + 924.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 713.0, + 371.0, + 713.0, + 371.0, + 758.0, + 292.0, + 758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 490.0, + 713.0, + 863.0, + 713.0, + 863.0, + 758.0, + 490.0, + 758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1008.0, + 713.0, + 1018.0, + 713.0, + 1018.0, + 758.0, + 1008.0, + 758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1196.0, + 370.0, + 1196.0, + 370.0, + 1241.0, + 292.0, + 1241.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 490.0, + 1196.0, + 862.0, + 1196.0, + 862.0, + 1241.0, + 490.0, + 1241.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1008.0, + 1196.0, + 1018.0, + 1196.0, + 1018.0, + 1241.0, + 1008.0, + 1241.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 774.0, + 447.0, + 774.0, + 447.0, + 814.0, + 295.0, + 814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 488.0, + 774.0, + 878.0, + 774.0, + 878.0, + 814.0, + 488.0, + 814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 296.0, + 618.0, + 296.0, + 618.0, + 330.0, + 297.0, + 330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 1890.0, + 835.0, + 1890.0, + 835.0, + 1927.0, + 298.0, + 1927.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 11, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 1122, + 1406, + 1122, + 1406, + 1345, + 296, + 1345 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 295, + 825, + 1407, + 825, + 1407, + 1030, + 295, + 1030 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 295, + 1465, + 1406, + 1465, + 1406, + 1705, + 295, + 1705 + ], + "score": 0.98 + }, + { + "category_id": 4, + "poly": [ + 295, + 501, + 1405, + 501, + 1405, + 779, + 295, + 779 + ], + "score": 0.967 + }, + { + "category_id": 8, + "poly": [ + 461, + 1889, + 1238, + 1889, + 1238, + 1992, + 461, + 1992 + ], + "score": 0.959 + }, + { + "category_id": 8, + "poly": [ + 576, + 1351, + 1122, + 1351, + 1122, + 1459, + 576, + 1459 + ], + "score": 0.958 + }, + { + "category_id": 8, + "poly": [ + 642, + 1027, + 1057, + 1027, + 1057, + 1118, + 642, + 1118 + ], + "score": 0.955 + }, + { + "category_id": 8, + "poly": [ + 665, + 1703, + 1033, + 1703, + 1033, + 1802, + 665, + 1802 + ], + "score": 0.955 + }, + { + "category_id": 1, + "poly": [ + 299, + 1810, + 1404, + 1810, + 1404, + 1878, + 299, + 1878 + ], + "score": 0.954 + }, + { + "category_id": 3, + "poly": [ + 306, + 232, + 1400, + 232, + 1400, + 478, + 306, + 478 + ], + "score": 0.938 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1387, + 1400, + 1387, + 1400, + 1419, + 1351, + 1419 + ], + "score": 0.897 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1729, + 1400, + 1729, + 1400, + 1760, + 1351, + 1760 + ], + "score": 0.896 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1052, + 1400, + 1052, + 1400, + 1082, + 1351, + 1082 + ], + "score": 0.89 + }, + { + "category_id": 2, + "poly": [ + 836, + 2087, + 865, + 2087, + 865, + 2113, + 836, + 2113 + ], + "score": 0.868 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 854, + 75, + 854, + 105, + 298, + 105 + ], + "score": 0.865 + }, + { + "category_id": 2, + "poly": [ + 1374, + 2003, + 1403, + 2003, + 1403, + 2031, + 1374, + 2031 + ], + "score": 0.836 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1918, + 1401, + 1918, + 1401, + 1950, + 1351, + 1950 + ], + "score": 0.671 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1918, + 1401, + 1918, + 1401, + 1950, + 1351, + 1950 + ], + "score": 0.266 + }, + { + "category_id": 14, + "poly": [ + 577, + 1348, + 1120, + 1348, + 1120, + 1460, + 577, + 1460 + ], + "score": 0.94, + "latex": "\\frac { \\partial y _ { a } ^ { ( k ) } } { \\partial y _ { b } ^ { ( j ) } } = \\sum _ { v _ { z } \\in \\mathcal { V } } \\sum _ { \\mathcal { U } _ { k - j } ^ { a \\to z } } \\left( \\prod _ { i = k - j } ^ { 1 } \\tilde { a } _ { v ^ { ( i - 1 ) } , v ^ { ( i ) } } \\right) \\frac { \\partial y _ { z } ^ { ( j ) } } { \\partial y _ { b } ^ { ( j ) } } ," + }, + { + "category_id": 14, + "poly": [ + 666, + 1696, + 1032, + 1696, + 1032, + 1804, + 666, + 1804 + ], + "score": 0.94, + "latex": "{ \\frac { \\partial y _ { a } ^ { ( k ) } } { \\partial y _ { b } ^ { ( j ) } } } = \\sum _ { \\mathcal { U } _ { k - j } ^ { a b } } \\prod _ { i = k - j } ^ { 1 } \\tilde { a } _ { v ^ { ( i - 1 ) } , v ^ { ( i ) } } ," + }, + { + "category_id": 14, + "poly": [ + 460, + 1886, + 1239, + 1886, + 1239, + 1994, + 460, + 1994 + ], + "score": 0.94, + "latex": "I _ { l } ( v _ { a } , v _ { b } ; k ) = \\sum _ { j = 0 } ^ { k - 1 } \\sum _ { \\mathcal { U } _ { k - j } ^ { a b } } \\prod _ { i = k - j } ^ { 1 } \\tilde { a } _ { v ^ { ( i - 1 ) } , v ^ { ( i ) } } = \\sum _ { j = 1 } ^ { k } \\sum _ { \\mathcal { U } _ { j } ^ { a b } } \\prod _ { i = j } ^ { 1 } \\tilde { a } _ { v ^ { ( i - 1 ) } , v ^ { ( i ) } } ." + }, + { + "category_id": 14, + "poly": [ + 643, + 1021, + 1056, + 1021, + 1056, + 1119, + 643, + 1119 + ], + "score": 0.94, + "latex": "\\frac { \\partial y _ { a } ^ { ( k ) } } { \\partial y _ { b } ^ { ( j ) } } = \\sum _ { v _ { z } \\in \\mathcal { N } \\left( v _ { a } \\right) , z > m } \\tilde { a } _ { a z } \\frac { \\partial y _ { z } ^ { ( k - 1 ) } } { \\partial y _ { b } ^ { ( j ) } } ," + }, + { + "category_id": 13, + "poly": [ + 504, + 1589, + 620, + 1589, + 620, + 1649, + 504, + 1649 + ], + "score": 0.94, + "latex": "\\begin{array} { r } { \\frac { \\partial y _ { z } ^ { ( j ) } } { \\partial y _ { b } ^ { ( j ) } } = 1 } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1291, + 1532, + 1401, + 1532, + 1401, + 1593, + 1291, + 1593 + ], + "score": 0.94, + "latex": "\\begin{array} { r } { \\frac { \\partial y _ { z } ^ { ( j ) } } { \\partial y _ { b } ^ { ( j ) } } = 0 } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 726, + 827, + 786, + 827, + 786, + 888, + 726, + 888 + ], + "score": 0.93, + "latex": "\\frac { \\partial y _ { a } ^ { ( k ) } } { \\partial y _ { b } ^ { ( j ) } }" + }, + { + "category_id": 13, + "poly": [ + 373, + 1809, + 443, + 1809, + 443, + 1849, + 373, + 1849 + ], + "score": 0.93, + "latex": "\\mathcal { U } _ { k - j } ^ { a b }" + }, + { + "category_id": 13, + "poly": [ + 932, + 1532, + 989, + 1532, + 989, + 1593, + 932, + 1593 + ], + "score": 0.92, + "latex": "\\frac { \\partial y _ { z } ^ { ( j ) } } { \\partial y _ { b } ^ { ( j ) } }" + }, + { + "category_id": 13, + "poly": [ + 1309, + 827, + 1392, + 827, + 1392, + 888, + 1309, + 888 + ], + "score": 0.92, + "latex": "\\frac { \\partial y _ { z } ^ { ( k - 1 ) } } { \\partial y _ { b } ^ { ( j ) } }" + }, + { + "category_id": 13, + "poly": [ + 1204, + 885, + 1280, + 885, + 1280, + 925, + 1204, + 925 + ], + "score": 0.92, + "latex": "y _ { z } ^ { ( k - 1 ) }" + }, + { + "category_id": 13, + "poly": [ + 692, + 963, + 738, + 963, + 738, + 1005, + 692, + 1005 + ], + "score": 0.92, + "latex": "y _ { b } ^ { ( j ) }" + }, + { + "category_id": 13, + "poly": [ + 1321, + 1215, + 1370, + 1215, + 1370, + 1254, + 1321, + 1254 + ], + "score": 0.92, + "latex": "y _ { a } ^ { ( k ) }" + }, + { + "category_id": 13, + "poly": [ + 674, + 1216, + 749, + 1216, + 749, + 1253, + 674, + 1253 + ], + "score": 0.92, + "latex": "y _ { z } ^ { ( k - 1 ) }" + }, + { + "category_id": 13, + "poly": [ + 1002, + 1284, + 1068, + 1284, + 1068, + 1315, + 1002, + 1315 + ], + "score": 0.92, + "latex": "k - j" + }, + { + "category_id": 13, + "poly": [ + 596, + 1544, + 666, + 1544, + 666, + 1582, + 596, + 1582 + ], + "score": 0.92, + "latex": "\\mathcal { U } _ { k - j } ^ { a z }" + }, + { + "category_id": 13, + "poly": [ + 832, + 1812, + 902, + 1812, + 902, + 1844, + 832, + 1844 + ], + "score": 0.92, + "latex": "k - j" + }, + { + "category_id": 13, + "poly": [ + 1347, + 923, + 1392, + 923, + 1392, + 965, + 1347, + 965 + ], + "score": 0.92, + "latex": "y _ { b } ^ { ( j ) }" + }, + { + "category_id": 13, + "poly": [ + 1083, + 1469, + 1153, + 1469, + 1153, + 1506, + 1083, + 1506 + ], + "score": 0.91, + "latex": "\\mathcal { U } _ { k - j } ^ { a z }" + }, + { + "category_id": 13, + "poly": [ + 667, + 1602, + 739, + 1602, + 739, + 1630, + 667, + 1630 + ], + "score": 0.89, + "latex": "z = b" + }, + { + "category_id": 13, + "poly": [ + 375, + 1599, + 448, + 1599, + 448, + 1634, + 375, + 1634 + ], + "score": 0.89, + "latex": "z \\neq b" + }, + { + "category_id": 13, + "poly": [ + 1027, + 1504, + 1090, + 1504, + 1090, + 1535, + 1027, + 1535 + ], + "score": 0.89, + "latex": "k - j" + }, + { + "category_id": 13, + "poly": [ + 373, + 1128, + 456, + 1128, + 456, + 1152, + 373, + 1152 + ], + "score": 0.88, + "latex": "z > m" + }, + { + "category_id": 13, + "poly": [ + 328, + 688, + 358, + 688, + 358, + 715, + 328, + 715 + ], + "score": 0.87, + "latex": "v _ { a }" + }, + { + "category_id": 13, + "poly": [ + 702, + 897, + 732, + 897, + 732, + 923, + 702, + 923 + ], + "score": 0.87, + "latex": "v _ { a }" + }, + { + "category_id": 13, + "poly": [ + 777, + 1158, + 807, + 1158, + 807, + 1184, + 777, + 1184 + ], + "score": 0.87, + "latex": "v _ { a }" + }, + { + "category_id": 13, + "poly": [ + 765, + 627, + 796, + 627, + 796, + 655, + 765, + 655 + ], + "score": 0.86, + "latex": "v _ { a }" + }, + { + "category_id": 13, + "poly": [ + 359, + 721, + 389, + 721, + 389, + 746, + 359, + 746 + ], + "score": 0.86, + "latex": "v _ { a }" + }, + { + "category_id": 13, + "poly": [ + 593, + 689, + 623, + 689, + 623, + 715, + 593, + 715 + ], + "score": 0.86, + "latex": "v _ { a }" + }, + { + "category_id": 13, + "poly": [ + 1120, + 567, + 1150, + 567, + 1150, + 594, + 1120, + 594 + ], + "score": 0.86, + "latex": "v _ { a }" + }, + { + "category_id": 13, + "poly": [ + 326, + 629, + 355, + 629, + 355, + 655, + 326, + 655 + ], + "score": 0.86, + "latex": "v _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 297, + 660, + 327, + 660, + 327, + 685, + 297, + 685 + ], + "score": 0.85, + "latex": "v _ { a }" + }, + { + "category_id": 13, + "poly": [ + 371, + 1473, + 400, + 1473, + 400, + 1500, + 371, + 1500 + ], + "score": 0.85, + "latex": "v _ { z }" + }, + { + "category_id": 13, + "poly": [ + 405, + 627, + 433, + 627, + 433, + 655, + 405, + 655 + ], + "score": 0.85, + "latex": "v _ { b }" + }, + { + "category_id": 13, + "poly": [ + 1162, + 598, + 1191, + 598, + 1191, + 624, + 1162, + 624 + ], + "score": 0.85, + "latex": "v _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 687, + 1817, + 714, + 1817, + 714, + 1842, + 687, + 1842 + ], + "score": 0.85, + "latex": "v _ { b }" + }, + { + "category_id": 13, + "poly": [ + 840, + 596, + 870, + 596, + 870, + 624, + 840, + 624 + ], + "score": 0.85, + "latex": "v _ { a }" + }, + { + "category_id": 13, + "poly": [ + 422, + 720, + 451, + 720, + 451, + 746, + 422, + 746 + ], + "score": 0.85, + "latex": "v _ { b }" + }, + { + "category_id": 13, + "poly": [ + 1346, + 977, + 1375, + 977, + 1375, + 1001, + 1346, + 1001 + ], + "score": 0.85, + "latex": "v _ { z }" + }, + { + "category_id": 13, + "poly": [ + 539, + 1129, + 568, + 1129, + 568, + 1154, + 539, + 1154 + ], + "score": 0.85, + "latex": "v _ { z }" + }, + { + "category_id": 13, + "poly": [ + 825, + 1508, + 854, + 1508, + 854, + 1533, + 825, + 1533 + ], + "score": 0.85, + "latex": "v _ { a }" + }, + { + "category_id": 13, + "poly": [ + 865, + 896, + 895, + 896, + 895, + 923, + 865, + 923 + ], + "score": 0.85, + "latex": "v _ { z }" + }, + { + "category_id": 13, + "poly": [ + 361, + 598, + 390, + 598, + 390, + 624, + 361, + 624 + ], + "score": 0.85, + "latex": "v _ { 3 }" + }, + { + "category_id": 13, + "poly": [ + 1264, + 568, + 1293, + 568, + 1293, + 594, + 1264, + 594 + ], + "score": 0.84, + "latex": "v _ { 3 }" + }, + { + "category_id": 13, + "poly": [ + 1341, + 720, + 1371, + 720, + 1371, + 746, + 1341, + 746 + ], + "score": 0.84, + "latex": "v _ { a }" + }, + { + "category_id": 13, + "poly": [ + 654, + 1651, + 683, + 1651, + 683, + 1676, + 654, + 1676 + ], + "score": 0.84, + "latex": "v _ { z }" + }, + { + "category_id": 13, + "poly": [ + 373, + 898, + 403, + 898, + 403, + 923, + 373, + 923 + ], + "score": 0.84, + "latex": "v _ { z }" + }, + { + "category_id": 13, + "poly": [ + 297, + 566, + 327, + 566, + 327, + 594, + 297, + 594 + ], + "score": 0.84, + "latex": "v _ { a }" + }, + { + "category_id": 13, + "poly": [ + 620, + 1817, + 649, + 1817, + 649, + 1842, + 620, + 1842 + ], + "score": 0.84, + "latex": "v _ { a }" + }, + { + "category_id": 13, + "poly": [ + 1342, + 426, + 1369, + 426, + 1369, + 446, + 1342, + 446 + ], + "score": 0.84, + "latex": "v _ { a }" + }, + { + "category_id": 13, + "poly": [ + 569, + 567, + 599, + 567, + 599, + 594, + 569, + 594 + ], + "score": 0.84, + "latex": "v _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 412, + 1651, + 440, + 1651, + 440, + 1676, + 412, + 1676 + ], + "score": 0.84, + "latex": "v _ { b }" + }, + { + "category_id": 13, + "poly": [ + 1289, + 1287, + 1317, + 1287, + 1317, + 1313, + 1289, + 1313 + ], + "score": 0.83, + "latex": "v _ { a }" + }, + { + "category_id": 13, + "poly": [ + 677, + 597, + 707, + 597, + 707, + 624, + 677, + 624 + ], + "score": 0.82, + "latex": "v _ { a }" + }, + { + "category_id": 13, + "poly": [ + 297, + 752, + 324, + 752, + 324, + 776, + 297, + 776 + ], + "score": 0.82, + "latex": "v _ { b }" + }, + { + "category_id": 13, + "poly": [ + 888, + 1508, + 916, + 1508, + 916, + 1533, + 888, + 1533 + ], + "score": 0.81, + "latex": "v _ { z }" + }, + { + "category_id": 13, + "poly": [ + 1366, + 1818, + 1393, + 1818, + 1393, + 1842, + 1366, + 1842 + ], + "score": 0.81, + "latex": "v _ { b }" + }, + { + "category_id": 13, + "poly": [ + 1214, + 1254, + 1233, + 1254, + 1233, + 1280, + 1214, + 1280 + ], + "score": 0.8, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 801, + 1651, + 828, + 1651, + 828, + 1676, + 801, + 1676 + ], + "score": 0.8, + "latex": "v _ { b }" + }, + { + "category_id": 13, + "poly": [ + 450, + 1186, + 468, + 1186, + 468, + 1212, + 450, + 1212 + ], + "score": 0.78, + "latex": "\\tilde { a }" + }, + { + "category_id": 13, + "poly": [ + 1378, + 1255, + 1393, + 1255, + 1393, + 1285, + 1378, + 1285 + ], + "score": 0.77, + "latex": "j" + }, + { + "category_id": 13, + "poly": [ + 1364, + 271, + 1388, + 271, + 1388, + 288, + 1364, + 288 + ], + "score": 0.54, + "latex": "v _ { 3 }" + }, + { + "category_id": 13, + "poly": [ + 1178, + 453, + 1203, + 453, + 1203, + 474, + 1178, + 474 + ], + "score": 0.38, + "latex": "v _ { b }" + }, + { + "category_id": 13, + "poly": [ + 316, + 402, + 340, + 402, + 340, + 422, + 316, + 422 + ], + "score": 0.27, + "latex": "v _ { 2 }" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 504.0, + 1405.0, + 504.0, + 1405.0, + 536.0, + 295.0, + 536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 531.0, + 1406.0, + 531.0, + 1406.0, + 568.0, + 294.0, + 568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 563.0, + 296.0, + 563.0, + 296.0, + 598.0, + 293.0, + 598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 563.0, + 568.0, + 563.0, + 568.0, + 598.0, + 328.0, + 598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 600.0, + 563.0, + 1119.0, + 563.0, + 1119.0, + 598.0, + 600.0, + 598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1151.0, + 563.0, + 1263.0, + 563.0, + 1263.0, + 598.0, + 1151.0, + 598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1294.0, + 563.0, + 1406.0, + 563.0, + 1406.0, + 598.0, + 1294.0, + 598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 589.0, + 360.0, + 589.0, + 360.0, + 632.0, + 293.0, + 632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 391.0, + 589.0, + 676.0, + 589.0, + 676.0, + 632.0, + 391.0, + 632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 708.0, + 589.0, + 839.0, + 589.0, + 839.0, + 632.0, + 708.0, + 632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 871.0, + 589.0, + 1161.0, + 589.0, + 1161.0, + 632.0, + 871.0, + 632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1192.0, + 589.0, + 1405.0, + 589.0, + 1405.0, + 632.0, + 1192.0, + 632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 623.0, + 325.0, + 623.0, + 325.0, + 660.0, + 294.0, + 660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 623.0, + 404.0, + 623.0, + 404.0, + 660.0, + 356.0, + 660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 434.0, + 623.0, + 764.0, + 623.0, + 764.0, + 660.0, + 434.0, + 660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 797.0, + 623.0, + 1406.0, + 623.0, + 1406.0, + 660.0, + 797.0, + 660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 653.0, + 296.0, + 653.0, + 296.0, + 691.0, + 292.0, + 691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 653.0, + 1406.0, + 653.0, + 1406.0, + 691.0, + 328.0, + 691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 686.0, + 327.0, + 686.0, + 327.0, + 719.0, + 295.0, + 719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 359.0, + 686.0, + 592.0, + 686.0, + 592.0, + 719.0, + 359.0, + 719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 624.0, + 686.0, + 1403.0, + 686.0, + 1403.0, + 719.0, + 624.0, + 719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 712.0, + 358.0, + 712.0, + 358.0, + 752.0, + 293.0, + 752.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 390.0, + 712.0, + 421.0, + 712.0, + 421.0, + 752.0, + 390.0, + 752.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 452.0, + 712.0, + 1340.0, + 712.0, + 1340.0, + 752.0, + 452.0, + 752.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1372.0, + 712.0, + 1406.0, + 712.0, + 1406.0, + 752.0, + 1372.0, + 752.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 747.0, + 338.0, + 747.0, + 338.0, + 784.0, + 325.0, + 784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1282.0, + 230.0, + 1308.0, + 230.0, + 1308.0, + 254.0, + 1282.0, + 254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 252.0, + 405.0, + 252.0, + 405.0, + 306.0, + 353.0, + 306.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 467.0, + 287.0, + 515.0, + 287.0, + 515.0, + 319.0, + 467.0, + 319.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 770.0, + 287.0, + 812.0, + 287.0, + 812.0, + 322.0, + 770.0, + 322.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1338.0, + 264.0, + 1363.0, + 264.0, + 1363.0, + 295.0, + 1338.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1389.0, + 264.0, + 1394.0, + 264.0, + 1394.0, + 295.0, + 1389.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 305.0, + 299.0, + 339.0, + 299.0, + 339.0, + 329.0, + 305.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 598.0, + 299.0, + 632.0, + 299.0, + 632.0, + 329.0, + 598.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 892.0, + 299.0, + 925.0, + 299.0, + 925.0, + 329.0, + 892.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 696.0, + 361.0, + 706.0, + 361.0, + 706.0, + 372.0, + 696.0, + 372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1359.0, + 348.0, + 1393.0, + 348.0, + 1393.0, + 378.0, + 1359.0, + 378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 479.0, + 377.0, + 513.0, + 377.0, + 513.0, + 407.0, + 479.0, + 407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 772.0, + 377.0, + 806.0, + 377.0, + 806.0, + 407.0, + 772.0, + 407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1277.0, + 375.0, + 1318.0, + 375.0, + 1318.0, + 409.0, + 1277.0, + 409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 309.0, + 395.0, + 315.0, + 395.0, + 315.0, + 429.0, + 309.0, + 429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 341.0, + 395.0, + 348.0, + 395.0, + 348.0, + 429.0, + 341.0, + 429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 397.0, + 403.0, + 439.0, + 403.0, + 439.0, + 437.0, + 397.0, + 437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 603.0, + 395.0, + 642.0, + 395.0, + 642.0, + 429.0, + 603.0, + 429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 690.0, + 403.0, + 731.0, + 403.0, + 731.0, + 437.0, + 690.0, + 437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 897.0, + 395.0, + 935.0, + 395.0, + 935.0, + 429.0, + 897.0, + 429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1174.0, + 419.0, + 1341.0, + 419.0, + 1341.0, + 451.0, + 1174.0, + 451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1370.0, + 419.0, + 1406.0, + 419.0, + 1406.0, + 451.0, + 1370.0, + 451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 336.0, + 444.0, + 484.0, + 444.0, + 484.0, + 479.0, + 336.0, + 479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 628.0, + 443.0, + 779.0, + 443.0, + 779.0, + 477.0, + 628.0, + 477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 921.0, + 444.0, + 1071.0, + 444.0, + 1071.0, + 477.0, + 921.0, + 477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1173.0, + 450.0, + 1177.0, + 450.0, + 1177.0, + 479.0, + 1173.0, + 479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1204.0, + 450.0, + 1210.0, + 450.0, + 1210.0, + 479.0, + 1204.0, + 479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1252.25, + 229.0, + 1278.25, + 229.0, + 1278.25, + 251.5, + 1252.25, + 251.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 664.0, + 254.5, + 692.0, + 254.5, + 692.0, + 280.0, + 664.0, + 280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 957.0, + 254.5, + 985.0, + 254.5, + 985.0, + 280.5, + 957.0, + 280.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1192.0, + 273.0, + 1210.0, + 273.0, + 1210.0, + 294.0, + 1192.0, + 294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1066.75, + 291.0, + 1099.75, + 291.0, + 1099.75, + 317.0, + 1066.75, + 317.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1070.75, + 378.5, + 1092.75, + 378.5, + 1092.75, + 401.5, + 1070.75, + 401.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1192.0, + 365.5, + 1225.0, + 365.5, + 1225.0, + 398.0, + 1192.0, + 398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 986.0, + 403.5, + 1020.0, + 403.5, + 1020.0, + 435.0, + 986.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2123.0, + 831.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 857.0, + 73.0, + 857.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1376.0, + 2005.0, + 1404.0, + 2005.0, + 1404.0, + 2036.0, + 1376.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1121.0, + 372.0, + 1121.0, + 372.0, + 1158.0, + 294.0, + 1158.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 457.0, + 1121.0, + 538.0, + 1121.0, + 538.0, + 1158.0, + 457.0, + 1158.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 569.0, + 1121.0, + 1406.0, + 1121.0, + 1406.0, + 1158.0, + 569.0, + 1158.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1153.0, + 776.0, + 1153.0, + 776.0, + 1188.0, + 294.0, + 1188.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 808.0, + 1153.0, + 1406.0, + 1153.0, + 1406.0, + 1188.0, + 808.0, + 1188.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1183.0, + 449.0, + 1183.0, + 449.0, + 1218.0, + 295.0, + 1218.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 469.0, + 1183.0, + 1407.0, + 1183.0, + 1407.0, + 1218.0, + 469.0, + 1218.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 284.0, + 1202.0, + 673.0, + 1202.0, + 673.0, + 1269.0, + 284.0, + 1269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 750.0, + 1202.0, + 1320.0, + 1202.0, + 1320.0, + 1269.0, + 750.0, + 1269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1371.0, + 1202.0, + 1406.0, + 1202.0, + 1406.0, + 1269.0, + 1371.0, + 1269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1249.0, + 1213.0, + 1249.0, + 1213.0, + 1290.0, + 291.0, + 1290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1234.0, + 1249.0, + 1377.0, + 1249.0, + 1377.0, + 1290.0, + 1234.0, + 1290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 1249.0, + 1407.0, + 1249.0, + 1407.0, + 1290.0, + 1394.0, + 1290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1280.0, + 1001.0, + 1280.0, + 1001.0, + 1318.0, + 294.0, + 1318.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1069.0, + 1280.0, + 1288.0, + 1280.0, + 1288.0, + 1318.0, + 1069.0, + 1318.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1318.0, + 1280.0, + 1406.0, + 1280.0, + 1406.0, + 1318.0, + 1318.0, + 1318.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1314.0, + 1156.0, + 1314.0, + 1156.0, + 1346.0, + 295.0, + 1346.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 833.0, + 724.0, + 833.0, + 724.0, + 874.0, + 292.0, + 874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 787.0, + 835.0, + 1308.0, + 835.0, + 1308.0, + 876.0, + 787.0, + 876.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 716.0, + 852.0, + 725.0, + 852.0, + 725.0, + 893.0, + 716.0, + 893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 787.0, + 852.0, + 790.0, + 852.0, + 790.0, + 893.0, + 787.0, + 893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 879.0, + 372.0, + 879.0, + 372.0, + 934.0, + 289.0, + 934.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 404.0, + 879.0, + 701.0, + 879.0, + 701.0, + 934.0, + 404.0, + 934.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 733.0, + 879.0, + 864.0, + 879.0, + 864.0, + 934.0, + 733.0, + 934.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 896.0, + 879.0, + 1203.0, + 879.0, + 1203.0, + 934.0, + 896.0, + 934.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1281.0, + 879.0, + 1408.0, + 879.0, + 1408.0, + 934.0, + 1281.0, + 934.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 287.0, + 911.0, + 1346.0, + 911.0, + 1346.0, + 977.0, + 287.0, + 977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1393.0, + 911.0, + 1413.0, + 911.0, + 1413.0, + 977.0, + 1393.0, + 977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 282.0, + 947.0, + 691.0, + 947.0, + 691.0, + 1023.0, + 282.0, + 1023.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 739.0, + 947.0, + 1345.0, + 947.0, + 1345.0, + 1023.0, + 739.0, + 1023.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1376.0, + 947.0, + 1408.0, + 947.0, + 1408.0, + 1023.0, + 1376.0, + 1023.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1001.0, + 514.0, + 1001.0, + 514.0, + 1030.0, + 294.0, + 1030.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 714.75, + 818.0, + 796.75, + 818.0, + 796.75, + 865.5, + 714.75, + 865.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1298.0, + 819.0, + 1401.0, + 819.0, + 1401.0, + 859.5, + 1298.0, + 859.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1310.0, + 845.0, + 1416.0, + 845.0, + 1416.0, + 896.5, + 1310.0, + 896.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1463.0, + 370.0, + 1463.0, + 370.0, + 1508.0, + 292.0, + 1508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 401.0, + 1463.0, + 1082.0, + 1463.0, + 1082.0, + 1508.0, + 401.0, + 1508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1154.0, + 1463.0, + 1407.0, + 1463.0, + 1407.0, + 1508.0, + 1154.0, + 1508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1503.0, + 824.0, + 1503.0, + 824.0, + 1536.0, + 295.0, + 1536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 855.0, + 1503.0, + 887.0, + 1503.0, + 887.0, + 1536.0, + 855.0, + 1536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 917.0, + 1503.0, + 1026.0, + 1503.0, + 1026.0, + 1536.0, + 917.0, + 1536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1091.0, + 1503.0, + 1404.0, + 1503.0, + 1404.0, + 1536.0, + 1091.0, + 1536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1540.0, + 595.0, + 1540.0, + 595.0, + 1582.0, + 293.0, + 1582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 667.0, + 1540.0, + 931.0, + 1540.0, + 931.0, + 1582.0, + 667.0, + 1582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 990.0, + 1544.0, + 1290.0, + 1544.0, + 1290.0, + 1577.0, + 990.0, + 1577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 1543.0, + 1406.0, + 1543.0, + 1406.0, + 1576.0, + 1402.0, + 1576.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1598.0, + 374.0, + 1598.0, + 374.0, + 1634.0, + 293.0, + 1634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 449.0, + 1598.0, + 503.0, + 1598.0, + 503.0, + 1634.0, + 449.0, + 1634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 621.0, + 1601.0, + 666.0, + 1601.0, + 666.0, + 1635.0, + 621.0, + 1635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 740.0, + 1601.0, + 1405.0, + 1601.0, + 1405.0, + 1635.0, + 740.0, + 1635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1646.0, + 411.0, + 1646.0, + 411.0, + 1679.0, + 294.0, + 1679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 441.0, + 1646.0, + 653.0, + 1646.0, + 653.0, + 1679.0, + 441.0, + 1679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 684.0, + 1646.0, + 800.0, + 1646.0, + 800.0, + 1679.0, + 684.0, + 1679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 829.0, + 1646.0, + 1404.0, + 1646.0, + 1404.0, + 1679.0, + 829.0, + 1679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1672.0, + 398.0, + 1672.0, + 398.0, + 1710.0, + 295.0, + 1710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 923.0, + 1528.0, + 995.0, + 1528.0, + 995.0, + 1565.0, + 923.0, + 1565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1282.0, + 1528.5, + 1356.0, + 1528.5, + 1356.0, + 1566.0, + 1282.0, + 1566.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 921.75, + 1552.5, + 998.75, + 1552.5, + 998.75, + 1600.0, + 921.75, + 1600.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1278.25, + 1550.5, + 1362.25, + 1550.5, + 1362.25, + 1604.0, + 1278.25, + 1604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 497.0, + 1585.0, + 568.0, + 1585.0, + 568.0, + 1622.0, + 497.0, + 1622.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 491.75, + 1608.5, + 574.75, + 1608.5, + 574.75, + 1659.5, + 491.75, + 1659.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 287.0, + 1795.0, + 372.0, + 1795.0, + 372.0, + 1865.0, + 287.0, + 1865.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 444.0, + 1795.0, + 619.0, + 1795.0, + 619.0, + 1865.0, + 444.0, + 1865.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 650.0, + 1795.0, + 686.0, + 1795.0, + 686.0, + 1865.0, + 650.0, + 1865.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 715.0, + 1795.0, + 831.0, + 1795.0, + 831.0, + 1865.0, + 715.0, + 1865.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 903.0, + 1795.0, + 1365.0, + 1795.0, + 1365.0, + 1865.0, + 903.0, + 1865.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 1795.0, + 1414.0, + 1795.0, + 1414.0, + 1865.0, + 1394.0, + 1865.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1843.0, + 1113.0, + 1843.0, + 1113.0, + 1879.0, + 295.0, + 1879.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 12, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 1424, + 1406, + 1424, + 1406, + 1589, + 296, + 1589 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 297, + 850, + 1404, + 850, + 1404, + 957, + 297, + 957 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 296, + 1824, + 1403, + 1824, + 1403, + 1922, + 296, + 1922 + ], + "score": 0.971 + }, + { + "category_id": 8, + "poly": [ + 340, + 360, + 1312, + 360, + 1312, + 695, + 340, + 695 + ], + "score": 0.967 + }, + { + "category_id": 8, + "poly": [ + 600, + 982, + 1097, + 982, + 1097, + 1084, + 600, + 1084 + ], + "score": 0.963 + }, + { + "category_id": 8, + "poly": [ + 487, + 1173, + 1215, + 1173, + 1215, + 1267, + 487, + 1267 + ], + "score": 0.96 + }, + { + "category_id": 1, + "poly": [ + 298, + 275, + 1403, + 275, + 1403, + 340, + 298, + 340 + ], + "score": 0.936 + }, + { + "category_id": 1, + "poly": [ + 296, + 1107, + 1202, + 1107, + 1202, + 1149, + 296, + 1149 + ], + "score": 0.933 + }, + { + "category_id": 1, + "poly": [ + 297, + 228, + 1083, + 228, + 1083, + 264, + 297, + 264 + ], + "score": 0.926 + }, + { + "category_id": 1, + "poly": [ + 298, + 1934, + 846, + 1934, + 846, + 1968, + 298, + 1968 + ], + "score": 0.919 + }, + { + "category_id": 2, + "poly": [ + 297, + 73, + 855, + 73, + 855, + 106, + 297, + 106 + ], + "score": 0.916 + }, + { + "category_id": 1, + "poly": [ + 292, + 1601, + 1324, + 1601, + 1324, + 1637, + 292, + 1637 + ], + "score": 0.911 + }, + { + "category_id": 1, + "poly": [ + 287, + 1998, + 1306, + 1998, + 1306, + 2037, + 287, + 2037 + ], + "score": 0.909 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1011, + 1400, + 1011, + 1400, + 1043, + 1351, + 1043 + ], + "score": 0.903 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1200, + 1400, + 1200, + 1400, + 1232, + 1351, + 1232 + ], + "score": 0.89 + }, + { + "category_id": 2, + "poly": [ + 836, + 2087, + 865, + 2087, + 865, + 2113, + 836, + 2113 + ], + "score": 0.869 + }, + { + "category_id": 9, + "poly": [ + 1351, + 513, + 1401, + 513, + 1401, + 545, + 1351, + 545 + ], + "score": 0.867 + }, + { + "category_id": 0, + "poly": [ + 298, + 794, + 617, + 794, + 617, + 826, + 298, + 826 + ], + "score": 0.853 + }, + { + "category_id": 2, + "poly": [ + 1374, + 1287, + 1403, + 1287, + 1403, + 1317, + 1374, + 1317 + ], + "score": 0.842 + }, + { + "category_id": 2, + "poly": [ + 1373, + 717, + 1404, + 717, + 1404, + 748, + 1373, + 748 + ], + "score": 0.826 + }, + { + "category_id": 0, + "poly": [ + 298, + 1364, + 617, + 1364, + 617, + 1397, + 298, + 1397 + ], + "score": 0.821 + }, + { + "category_id": 1, + "poly": [ + 298, + 1663, + 695, + 1663, + 695, + 1723, + 298, + 1723 + ], + "score": 0.797 + }, + { + "category_id": 2, + "poly": [ + 1375, + 1763, + 1402, + 1763, + 1402, + 1796, + 1375, + 1796 + ], + "score": 0.719 + }, + { + "category_id": 8, + "poly": [ + 288, + 1752, + 1349, + 1752, + 1349, + 1810, + 288, + 1810 + ], + "score": 0.344 + }, + { + "category_id": 8, + "poly": [ + 289, + 1752, + 1348, + 1752, + 1348, + 1811, + 289, + 1811 + ], + "score": 0.344 + }, + { + "category_id": 1, + "poly": [ + 298, + 1364, + 617, + 1364, + 617, + 1397, + 298, + 1397 + ], + "score": 0.111 + }, + { + "category_id": 14, + "poly": [ + 335, + 361, + 1313, + 361, + 1313, + 697, + 335, + 697 + ], + "score": 0.94, + "latex": "\\begin{array} { r l } & { \\mathbb { E } [ \\boldsymbol { I } _ { l } ( v _ { a } , v _ { b } ; k ) ] = \\mathbb { E } [ \\displaystyle \\sum _ { j = 1 } ^ { k } \\sum _ { U _ { j } ^ { a - b } } \\prod _ { i = j } ^ { 1 } \\tilde { a } _ { v ^ { ( i - 1 ) } , v ^ { ( i ) } } ] = \\displaystyle \\sum _ { j = 1 } ^ { k } \\mathbb { E } [ \\displaystyle \\sum _ { U _ { j } ^ { a - b } } \\prod _ { i = j } ^ { 1 } \\tilde { a } _ { v ^ { ( i - 1 ) } , v ^ { ( i ) } } ] } \\\\ & { \\qquad = \\displaystyle \\sum _ { j = 1 } ^ { k } \\sum _ { \\mathcal { P } _ { j } ^ { a - b } } \\operatorname* { P r } ( \\mathcal { P } _ { j } ^ { a b } \\mathrm { \\ i s ~ a n ~ u n l a b e l e d - n o d e s - o n l y ~ p a t h } ) \\prod _ { i = j } ^ { 1 } \\tilde { a } _ { v ^ { ( i - 1 ) } , v ^ { ( i ) } } } \\\\ & { \\qquad = \\displaystyle \\sum _ { j = 1 } ^ { k } \\sum _ { \\mathcal { P } _ { j } ^ { a - b } } \\beta ^ { j } \\prod _ { i = j } ^ { 1 } \\tilde { a } _ { v ^ { ( i - 1 ) } , v ^ { ( i ) } } = \\displaystyle \\sum _ { j = 1 } ^ { k } \\beta ^ { j } \\tilde { I } _ { f } ( v _ { a } , v _ { b } ; j ) . } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 488, + 1170, + 1216, + 1170, + 1216, + 1265, + 488, + 1265 + ], + "score": 0.94, + "latex": "\\mathrm { P r } ( \\hat { y } _ { a } = y _ { a } ) = \\frac { y _ { a } ^ { ( k ) } [ y _ { a } ] } { \\sum _ { i \\in \\mathcal { L } } y _ { a } ^ { ( k ) } [ i ] } \\propto y _ { a } ^ { ( k ) } [ y _ { a } ] = \\sum _ { v _ { b } : y _ { b } = y _ { a } } I _ { l } ( v _ { a } , v _ { b } ; k )" + }, + { + "category_id": 14, + "poly": [ + 600, + 976, + 1097, + 976, + 1097, + 1086, + 600, + 1086 + ], + "score": 0.94, + "latex": "y _ { a } ^ { ( k ) } [ y _ { a } ] = \\sum _ { v _ { b } : y _ { b } = y _ { a } } \\sum _ { j = 1 } ^ { k } \\sum _ { \\mathcal { U } _ { j } ^ { a b } } \\prod _ { i = j } ^ { 1 } \\tilde { a } _ { v ^ { ( i - 1 ) } , v ^ { ( i ) } } ," + }, + { + "category_id": 13, + "poly": [ + 779, + 2001, + 940, + 2001, + 940, + 2036, + 779, + 2036 + ], + "score": 0.93, + "latex": "2 I - \\nabla ^ { 2 } D ( \\mathbf { x } )" + }, + { + "category_id": 13, + "poly": [ + 297, + 1884, + 523, + 1884, + 523, + 1923, + 297, + 1923 + ], + "score": 0.93, + "latex": "\\mathbf { \\bar { \\Gamma } } D ( \\mathbf { h } ^ { ( k ) } ) \\leq D ( \\mathbf { x } ^ { ( k ) } )" + }, + { + "category_id": 13, + "poly": [ + 450, + 1109, + 710, + 1109, + 710, + 1149, + 450, + 1149 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { \\sum _ { v { b } : y _ { b } = y _ { a } } I _ { l } ( v _ { a } , v _ { b } ; k ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 555, + 1518, + 606, + 1518, + 606, + 1560, + 555, + 1560 + ], + "score": 0.92, + "latex": "\\mathbf { x } _ { i } ^ { ( k ) }" + }, + { + "category_id": 13, + "poly": [ + 657, + 1518, + 709, + 1518, + 709, + 1560, + 657, + 1560 + ], + "score": 0.92, + "latex": "{ \\bf h } _ { i } ^ { ( k ) }" + }, + { + "category_id": 13, + "poly": [ + 422, + 1665, + 687, + 1665, + 687, + 1726, + 422, + 1726 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { \\mathbf { h } _ { i } ^ { ( k ) } = \\mathbf { x } _ { i } ^ { ( k ) } - \\frac { \\partial D ( \\mathbf { x } ^ { ( k ) } ) } { \\partial \\mathbf { x } _ { i } ^ { ( k ) } } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1228, + 886, + 1317, + 886, + 1317, + 927, + 1228, + 927 + ], + "score": 0.92, + "latex": "y _ { a } ^ { ( \\cdot ) } [ y _ { a } ] \\rangle" + }, + { + "category_id": 13, + "poly": [ + 773, + 1937, + 837, + 1937, + 837, + 1969, + 773, + 1969 + ], + "score": 0.91, + "latex": "D ( \\mathbf { x } )" + }, + { + "category_id": 13, + "poly": [ + 422, + 2000, + 589, + 2000, + 589, + 2036, + 422, + 2036 + ], + "score": 0.91, + "latex": "\\nabla ^ { 2 } D ( \\mathbf { x } ) \\preceq 2 I _ { ! }" + }, + { + "category_id": 13, + "poly": [ + 297, + 1487, + 362, + 1487, + 362, + 1521, + 297, + 1521 + ], + "score": 0.91, + "latex": "D ( \\mathbf { x } )" + }, + { + "category_id": 13, + "poly": [ + 1251, + 1603, + 1315, + 1603, + 1315, + 1637, + 1251, + 1637 + ], + "score": 0.91, + "latex": "D ( \\mathbf { x } )" + }, + { + "category_id": 13, + "poly": [ + 1133, + 849, + 1175, + 849, + 1175, + 889, + 1133, + 889 + ], + "score": 0.91, + "latex": "y _ { a } ^ { ( \\cdot ) }" + }, + { + "category_id": 13, + "poly": [ + 1041, + 886, + 1084, + 886, + 1084, + 926, + 1041, + 926 + ], + "score": 0.9, + "latex": "y _ { a } ^ { ( \\cdot ) }" + }, + { + "category_id": 14, + "poly": [ + 398, + 1751, + 1353, + 1751, + 1353, + 1814, + 398, + 1814 + ], + "score": 0.87, + "latex": "\\begin{array} { r } { \\mathbf { x } _ { i } ^ { ( k ) } - \\frac { \\partial D ( \\mathbf { x } ^ { ( k ) } ) } { \\partial \\mathbf { x } _ { i } ^ { ( k ) } } = \\mathbf { x } _ { i } ^ { ( k ) } - \\sum _ { v _ { j } \\in N ( v _ { i } ) } \\widetilde { a } _ { i j } \\big ( \\mathbf { x } _ { i } ^ { ( k ) } - \\mathbf { x } _ { j } ^ { ( k ) } \\big ) = \\sum _ { v _ { j } \\in N ( v _ { i } ) } \\widetilde { a } _ { i j } \\mathbf { x } _ { j } ^ { ( k ) } = \\mathbf { h } _ { i } ^ { ( k ) } . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 824, + 896, + 854, + 896, + 854, + 926, + 824, + 926 + ], + "score": 0.87, + "latex": "y _ { a }" + }, + { + "category_id": 13, + "poly": [ + 714, + 929, + 744, + 929, + 744, + 957, + 714, + 957 + ], + "score": 0.86, + "latex": "y _ { a }" + }, + { + "category_id": 13, + "poly": [ + 1203, + 1890, + 1228, + 1890, + 1228, + 1916, + 1203, + 1916 + ], + "score": 0.84, + "latex": "D" + }, + { + "category_id": 13, + "poly": [ + 703, + 858, + 725, + 858, + 725, + 884, + 703, + 884 + ], + "score": 0.76, + "latex": "\\mathcal { L }" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 855.0, + 72.0, + 855.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 871.0, + 2085.0, + 871.0, + 2124.0, + 832.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 789.0, + 621.0, + 789.0, + 621.0, + 831.0, + 292.0, + 831.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1376.0, + 1290.0, + 1404.0, + 1290.0, + 1404.0, + 1321.0, + 1376.0, + 1321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1376.0, + 720.0, + 1404.0, + 720.0, + 1404.0, + 752.0, + 1376.0, + 752.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1363.0, + 620.0, + 1363.0, + 620.0, + 1399.0, + 296.0, + 1399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1378.0, + 1768.0, + 1402.0, + 1768.0, + 1402.0, + 1797.0, + 1378.0, + 1797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1427.0, + 1401.0, + 1427.0, + 1401.0, + 1457.0, + 295.0, + 1457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1459.0, + 1403.0, + 1459.0, + 1403.0, + 1489.0, + 295.0, + 1489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 363.0, + 1486.0, + 1404.0, + 1486.0, + 1404.0, + 1522.0, + 363.0, + 1522.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1518.0, + 554.0, + 1518.0, + 554.0, + 1564.0, + 293.0, + 1564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 710.0, + 1522.0, + 1406.0, + 1522.0, + 1406.0, + 1563.0, + 710.0, + 1563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1559.0, + 596.0, + 1559.0, + 596.0, + 1588.0, + 295.0, + 1588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 595.0, + 1517.0, + 724.0, + 1517.0, + 724.0, + 1566.0, + 595.0, + 1566.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 847.0, + 702.0, + 847.0, + 702.0, + 894.0, + 291.0, + 894.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 726.0, + 847.0, + 1132.0, + 847.0, + 1132.0, + 894.0, + 726.0, + 894.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1176.0, + 847.0, + 1406.0, + 847.0, + 1406.0, + 894.0, + 1176.0, + 894.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 885.0, + 823.0, + 885.0, + 823.0, + 933.0, + 291.0, + 933.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 855.0, + 885.0, + 1040.0, + 885.0, + 1040.0, + 933.0, + 855.0, + 933.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1085.0, + 885.0, + 1227.0, + 885.0, + 1227.0, + 933.0, + 1085.0, + 933.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1318.0, + 885.0, + 1406.0, + 885.0, + 1406.0, + 933.0, + 1318.0, + 933.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 923.0, + 713.0, + 923.0, + 713.0, + 958.0, + 293.0, + 958.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 745.0, + 923.0, + 917.0, + 923.0, + 917.0, + 958.0, + 745.0, + 958.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1825.0, + 1404.0, + 1825.0, + 1404.0, + 1863.0, + 293.0, + 1863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1857.0, + 1405.0, + 1857.0, + 1405.0, + 1889.0, + 294.0, + 1889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 524.0, + 1884.0, + 1202.0, + 1884.0, + 1202.0, + 1925.0, + 524.0, + 1925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1229.0, + 1884.0, + 1241.0, + 1884.0, + 1241.0, + 1925.0, + 1229.0, + 1925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 273.0, + 1405.0, + 273.0, + 1405.0, + 314.0, + 292.0, + 314.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 306.0, + 540.0, + 306.0, + 540.0, + 343.0, + 292.0, + 343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1100.0, + 449.0, + 1100.0, + 449.0, + 1159.0, + 290.0, + 1159.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 711.0, + 1100.0, + 1206.0, + 1100.0, + 1206.0, + 1159.0, + 711.0, + 1159.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 226.0, + 1086.0, + 226.0, + 1086.0, + 267.0, + 294.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1930.0, + 772.0, + 1930.0, + 772.0, + 1972.0, + 294.0, + 1972.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 1930.0, + 847.0, + 1930.0, + 847.0, + 1972.0, + 838.0, + 1972.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1597.0, + 1250.0, + 1597.0, + 1250.0, + 1642.0, + 293.0, + 1642.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1316.0, + 1597.0, + 1328.0, + 1597.0, + 1328.0, + 1642.0, + 1316.0, + 1642.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1994.0, + 421.0, + 1994.0, + 421.0, + 2042.0, + 291.0, + 2042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 590.0, + 1994.0, + 778.0, + 1994.0, + 778.0, + 2042.0, + 590.0, + 2042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 941.0, + 1994.0, + 1311.0, + 1994.0, + 1311.0, + 2042.0, + 941.0, + 2042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 1655.0, + 421.0, + 1655.0, + 421.0, + 1727.0, + 288.0, + 1727.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 481.0, + 1674.5, + 542.0, + 1674.5, + 542.0, + 1713.5, + 481.0, + 1713.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1363.0, + 620.0, + 1363.0, + 620.0, + 1399.0, + 296.0, + 1399.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 13, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 1077, + 1405, + 1077, + 1405, + 1387, + 296, + 1387 + ], + "score": 0.984 + }, + { + "category_id": 5, + "poly": [ + 346, + 1533, + 1351, + 1533, + 1351, + 1739, + 346, + 1739 + ], + "score": 0.982, + "html": "
CoraCiteseerPubmedCoauthor-CSCoauthor-Phy
#nodes2,7083,32719,71718,33334,493
# edges5,2784,55244,32481,894247,962
# features1,4333,7035006.8058,415
#classes763155
Intra-class edge rate81.0%73.6%80.2%80.8%93.1%
Labeled node rate5.2%3.6%0.3%1.6%0.3%
" + }, + { + "category_id": 1, + "poly": [ + 298, + 1911, + 1404, + 1911, + 1404, + 2035, + 298, + 2035 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 302, + 448, + 1396, + 448, + 1396, + 577, + 302, + 577 + ], + "score": 0.976 + }, + { + "category_id": 8, + "poly": [ + 480, + 283, + 1217, + 283, + 1217, + 435, + 480, + 435 + ], + "score": 0.969 + }, + { + "category_id": 8, + "poly": [ + 317, + 717, + 1333, + 717, + 1333, + 939, + 317, + 939 + ], + "score": 0.968 + }, + { + "category_id": 1, + "poly": [ + 298, + 636, + 1406, + 636, + 1406, + 705, + 298, + 705 + ], + "score": 0.949 + }, + { + "category_id": 1, + "poly": [ + 296, + 225, + 1145, + 225, + 1145, + 269, + 296, + 269 + ], + "score": 0.923 + }, + { + "category_id": 1, + "poly": [ + 299, + 590, + 640, + 590, + 640, + 622, + 299, + 622 + ], + "score": 0.912 + }, + { + "category_id": 0, + "poly": [ + 299, + 1853, + 709, + 1853, + 709, + 1885, + 299, + 1885 + ], + "score": 0.91 + }, + { + "category_id": 2, + "poly": [ + 297, + 74, + 855, + 74, + 855, + 106, + 297, + 106 + ], + "score": 0.898 + }, + { + "category_id": 9, + "poly": [ + 1351, + 343, + 1401, + 343, + 1401, + 375, + 1351, + 375 + ], + "score": 0.892 + }, + { + "category_id": 6, + "poly": [ + 662, + 1759, + 1037, + 1759, + 1037, + 1791, + 662, + 1791 + ], + "score": 0.891 + }, + { + "category_id": 0, + "poly": [ + 299, + 1423, + 579, + 1423, + 579, + 1455, + 299, + 1455 + ], + "score": 0.888 + }, + { + "category_id": 9, + "poly": [ + 1351, + 813, + 1400, + 813, + 1400, + 843, + 1351, + 843 + ], + "score": 0.884 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2113, + 836, + 2113 + ], + "score": 0.858 + }, + { + "category_id": 2, + "poly": [ + 1374, + 954, + 1403, + 954, + 1403, + 982, + 1374, + 982 + ], + "score": 0.831 + }, + { + "category_id": 1, + "poly": [ + 298, + 1479, + 848, + 1479, + 848, + 1513, + 298, + 1513 + ], + "score": 0.718 + }, + { + "category_id": 0, + "poly": [ + 299, + 1021, + 1089, + 1021, + 1089, + 1056, + 299, + 1056 + ], + "score": 0.684 + }, + { + "category_id": 1, + "poly": [ + 299, + 1021, + 1089, + 1021, + 1089, + 1056, + 299, + 1056 + ], + "score": 0.255 + }, + { + "category_id": 6, + "poly": [ + 298, + 1479, + 848, + 1479, + 848, + 1513, + 298, + 1513 + ], + "score": 0.207 + }, + { + "category_id": 14, + "poly": [ + 483, + 283, + 1216, + 283, + 1216, + 436, + 483, + 436 + ], + "score": 0.95, + "latex": "\\nabla ^ { 2 } D ( { \\bf x } ) = \\left[ \\begin{array} { c c c c } { 1 - \\tilde { a } _ { 1 1 } } & { - \\tilde { a } _ { 1 2 } } & { \\cdots } & { - \\tilde { a } _ { 1 n } } \\\\ { - \\tilde { a } _ { 2 1 } } & { 1 - \\tilde { a } _ { 2 2 } } & { \\cdots } & { - \\tilde { a } _ { 2 n } } \\\\ { \\vdots } & { \\vdots } & { \\ddots } & { \\vdots } \\\\ { - \\tilde { a } _ { n 1 } } & { - \\tilde { a } _ { n 2 } } & { \\cdots } & { 1 - \\tilde { a } _ { n n } } \\end{array} \\right] = I - D ^ { - 1 } A ." + }, + { + "category_id": 14, + "poly": [ + 314, + 713, + 1339, + 713, + 1339, + 945, + 314, + 945 + ], + "score": 0.94, + "latex": "\\begin{array} { r l } & { D ( \\mathbf { h } ^ { ( k ) } ) = D ( \\mathbf { x } ^ { ( k ) } ) + \\nabla D ( \\mathbf { x } ^ { ( k ) } ) ^ { \\top } ( \\mathbf { h } ^ { ( k ) } - \\mathbf { x } ^ { ( k ) } ) + \\displaystyle \\frac { 1 } { 2 } ( \\mathbf { h } ^ { ( k ) } - \\mathbf { x } ^ { ( k ) } ) ^ { \\top } \\nabla ^ { 2 } D ( \\mathbf { x } ) ( \\mathbf { h } ^ { ( k ) } - \\mathbf { x } ^ { ( k ) } ) } \\\\ & { \\qquad = D ( \\mathbf { x } ^ { ( k ) } ) - \\nabla D ( \\mathbf { x } ^ { ( k ) } ) ^ { \\top } \\nabla D ( \\mathbf { x } ^ { ( k ) } ) + \\displaystyle \\frac { 1 } { 2 } \\nabla D ( \\mathbf { x } ^ { ( k ) } ) ^ { \\top } \\nabla ^ { 2 } D ( \\mathbf { x } ) \\nabla D ( \\mathbf { x } ^ { ( k ) } ) } \\\\ & { \\qquad \\leq D ( \\mathbf { x } ^ { ( k ) } ) - \\nabla D ( \\mathbf { x } ^ { ( k ) } ) ^ { \\top } \\nabla D ( \\mathbf { x } ^ { ( k ) } ) + \\nabla D ( \\mathbf { x } ^ { ( k ) } ) ^ { \\top } \\nabla D ( \\mathbf { x } ^ { ( k ) } ) } \\\\ & { \\qquad = D ( \\mathbf { x } ^ { ( k ) } ) . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 529, + 542, + 693, + 542, + 693, + 577, + 529, + 577 + ], + "score": 0.93, + "latex": "\\nabla ^ { 2 } D ( \\mathbf { x } ) \\preceq 2 I" + }, + { + "category_id": 13, + "poly": [ + 765, + 227, + 1137, + 227, + 1137, + 271, + 765, + 271 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { D ( \\mathbf { x } ) = \\frac { 1 } { 2 } \\sum _ { v _ { i } , v _ { j } } \\widetilde { a } _ { i j } \\| \\mathbf { x } _ { i } - \\mathbf { x } _ { j } \\| _ { 2 } ^ { 2 } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 423, + 450, + 758, + 450, + 758, + 486, + 423, + 486 + ], + "score": 0.92, + "latex": "2 I - \\nabla ^ { 2 } D ( \\mathbf { x } ) = I + D ^ { - 1 } A" + }, + { + "category_id": 13, + "poly": [ + 984, + 512, + 1113, + 512, + 1113, + 543, + 984, + 543 + ], + "score": 0.92, + "latex": "I + D ^ { - 1 } A" + }, + { + "category_id": 13, + "poly": [ + 408, + 512, + 536, + 512, + 536, + 542, + 408, + 542 + ], + "score": 0.92, + "latex": "I + D ^ { - 1 } A" + }, + { + "category_id": 13, + "poly": [ + 847, + 450, + 925, + 450, + 925, + 481, + 847, + 481 + ], + "score": 0.91, + "latex": "D ^ { - 1 } A" + }, + { + "category_id": 13, + "poly": [ + 297, + 668, + 347, + 668, + 347, + 699, + 297, + 699 + ], + "score": 0.89, + "latex": "\\mathbf { x } ^ { ( k ) }" + }, + { + "category_id": 13, + "poly": [ + 1291, + 640, + 1317, + 640, + 1317, + 664, + 1291, + 664 + ], + "score": 0.85, + "latex": "D" + }, + { + "category_id": 13, + "poly": [ + 470, + 639, + 497, + 639, + 497, + 665, + 470, + 665 + ], + "score": 0.81, + "latex": "D" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1854.0, + 711.0, + 1854.0, + 711.0, + 1887.0, + 295.0, + 1887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 856.0, + 72.0, + 856.0, + 109.0, + 297.0, + 109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 659.0, + 1756.0, + 1039.0, + 1756.0, + 1039.0, + 1793.0, + 659.0, + 1793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1421.0, + 582.0, + 1421.0, + 582.0, + 1458.0, + 295.0, + 1458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2123.0, + 832.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1376.0, + 956.0, + 1404.0, + 956.0, + 1404.0, + 987.0, + 1376.0, + 987.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1021.0, + 1092.0, + 1021.0, + 1092.0, + 1059.0, + 294.0, + 1059.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1478.0, + 852.0, + 1478.0, + 852.0, + 1514.0, + 296.0, + 1514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1080.0, + 1405.0, + 1080.0, + 1405.0, + 1114.0, + 293.0, + 1114.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1110.0, + 1405.0, + 1110.0, + 1405.0, + 1146.0, + 294.0, + 1146.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1138.0, + 1405.0, + 1138.0, + 1405.0, + 1177.0, + 293.0, + 1177.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1173.0, + 1403.0, + 1173.0, + 1403.0, + 1205.0, + 296.0, + 1205.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1201.0, + 1405.0, + 1201.0, + 1405.0, + 1237.0, + 294.0, + 1237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1232.0, + 1406.0, + 1232.0, + 1406.0, + 1267.0, + 293.0, + 1267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1261.0, + 1407.0, + 1261.0, + 1407.0, + 1297.0, + 293.0, + 1297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1292.0, + 1406.0, + 1292.0, + 1406.0, + 1329.0, + 293.0, + 1329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1324.0, + 1405.0, + 1324.0, + 1405.0, + 1356.0, + 295.0, + 1356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1351.0, + 1291.0, + 1351.0, + 1291.0, + 1392.0, + 293.0, + 1392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1910.0, + 1408.0, + 1910.0, + 1408.0, + 1946.0, + 293.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1943.0, + 1406.0, + 1943.0, + 1406.0, + 1975.0, + 294.0, + 1975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1972.0, + 1404.0, + 1972.0, + 1404.0, + 2007.0, + 293.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 2001.0, + 1405.0, + 2001.0, + 1405.0, + 2041.0, + 292.0, + 2041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 444.0, + 422.0, + 444.0, + 422.0, + 489.0, + 294.0, + 489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 759.0, + 444.0, + 846.0, + 444.0, + 846.0, + 489.0, + 759.0, + 489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 926.0, + 444.0, + 1404.0, + 444.0, + 1404.0, + 489.0, + 926.0, + 489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 480.0, + 1402.0, + 480.0, + 1402.0, + 517.0, + 296.0, + 517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 509.0, + 407.0, + 509.0, + 407.0, + 550.0, + 294.0, + 550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 537.0, + 509.0, + 983.0, + 509.0, + 983.0, + 550.0, + 537.0, + 550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1114.0, + 509.0, + 1404.0, + 509.0, + 1404.0, + 550.0, + 1114.0, + 550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 541.0, + 528.0, + 541.0, + 528.0, + 578.0, + 296.0, + 578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 694.0, + 541.0, + 705.0, + 541.0, + 705.0, + 578.0, + 694.0, + 578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1373.0, + 545.0, + 1402.0, + 545.0, + 1402.0, + 575.0, + 1373.0, + 575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 634.0, + 469.0, + 634.0, + 469.0, + 673.0, + 293.0, + 673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 498.0, + 634.0, + 1290.0, + 634.0, + 1290.0, + 673.0, + 498.0, + 673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1318.0, + 634.0, + 1404.0, + 634.0, + 1404.0, + 673.0, + 1318.0, + 673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 665.0, + 754.0, + 665.0, + 754.0, + 710.0, + 348.0, + 710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 219.0, + 764.0, + 219.0, + 764.0, + 279.0, + 289.0, + 279.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1138.0, + 219.0, + 1152.0, + 219.0, + 1152.0, + 279.0, + 1138.0, + 279.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 588.0, + 644.0, + 588.0, + 644.0, + 625.0, + 296.0, + 625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1478.0, + 852.0, + 1478.0, + 852.0, + 1514.0, + 296.0, + 1514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1021.0, + 1092.0, + 1021.0, + 1092.0, + 1059.0, + 294.0, + 1059.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 14, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 3, + "poly": [ + 306, + 208, + 1392, + 208, + 1392, + 1288, + 306, + 1288 + ], + "score": 0.974 + }, + { + "category_id": 5, + "poly": [ + 317, + 1377, + 1382, + 1377, + 1382, + 1612, + 317, + 1612 + ], + "score": 0.972, + "html": "
CoraCiteseerPubmedCoauthor-CSCoauthor-Phy
Dimension of hidden layers3216323232
# GCN layers52222
#LPA iterations55123
L2 weight1×10 -45×10-42 ×10-41×10-41×10-4
LPA weight (入)101121
Dropout rate0.2000.20.2
Learning rate0.050.20.10.10.05
" + }, + { + "category_id": 1, + "poly": [ + 368, + 1807, + 1402, + 1807, + 1402, + 2037, + 368, + 2037 + ], + "score": 0.97 + }, + { + "category_id": 1, + "poly": [ + 299, + 1722, + 1399, + 1722, + 1399, + 1784, + 299, + 1784 + ], + "score": 0.95 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 852, + 76, + 852, + 104, + 300, + 104 + ], + "score": 0.871 + }, + { + "category_id": 6, + "poly": [ + 572, + 1633, + 1126, + 1633, + 1126, + 1667, + 572, + 1667 + ], + "score": 0.869 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2113, + 836, + 2113 + ], + "score": 0.843 + }, + { + "category_id": 6, + "poly": [ + 348, + 1316, + 1345, + 1316, + 1345, + 1350, + 348, + 1350 + ], + "score": 0.824 + }, + { + "category_id": 4, + "poly": [ + 668, + 1261, + 1032, + 1261, + 1032, + 1291, + 668, + 1291 + ], + "score": 0.292 + }, + { + "category_id": 13, + "poly": [ + 567, + 1849, + 740, + 1849, + 740, + 1884, + 567, + 1884 + ], + "score": 0.91, + "latex": "\\{ 1 , 2 , 3 , 4 , 5 , 6 \\}" + }, + { + "category_id": 13, + "poly": [ + 594, + 1890, + 846, + 1890, + 846, + 1924, + 594, + 1924 + ], + "score": 0.89, + "latex": "\\{ 1 , 2 , 3 , 4 , 5 , 6 , 7 , 8 , 9 \\}" + }, + { + "category_id": 13, + "poly": [ + 720, + 1809, + 845, + 1809, + 845, + 1843, + 720, + 1843 + ], + "score": 0.87, + "latex": "\\{ 8 , 1 6 , 3 2 \\}" + }, + { + "category_id": 13, + "poly": [ + 588, + 2002, + 829, + 2002, + 829, + 2036, + 588, + 2036 + ], + "score": 0.86, + "latex": "\\{ 0 , 1 , 2 , 5 , 1 0 , 1 5 , 2 0 \\}" + }, + { + "category_id": 13, + "poly": [ + 938, + 1318, + 1005, + 1318, + 1005, + 1346, + 938, + 1346 + ], + "score": 0.85, + "latex": "1 \\sim 4" + }, + { + "category_id": 13, + "poly": [ + 393, + 1963, + 844, + 1963, + 844, + 1995, + 393, + 1995 + ], + "score": 0.65, + "latex": "1 0 ^ { - 5 } , 1 0 ^ { - 4 } , 2 \\times 1 0 ^ { - 4 } , 5 \\times 1 0 ^ { - 4 } , 1 0 ^ { - 3 } \\}" + }, + { + "category_id": 13, + "poly": [ + 396, + 1961, + 456, + 1961, + 456, + 1993, + 396, + 1993 + ], + "score": 0.6, + "latex": "1 0 ^ { - 5 }" + }, + { + "category_id": 13, + "poly": [ + 529, + 1929, + 1402, + 1929, + 1402, + 1963, + 529, + 1963 + ], + "score": 0.58, + "latex": "\\{ 1 0 ^ { - 7 } , 2 \\times 1 0 ^ { - 7 } , 5 \\times 1 0 ^ { - 7 } , 1 0 ^ { - 6 } , 2 \\times 1 0 ^ { - 6 } , 5 \\times 1 0 ^ { - 6 } , 1 0 ^ { - 5 } , 2 \\times 1 0 ^ { - 5 } , 5 \\times 1 0 ^ { - 6 } , 1 \\}" + }, + { + "category_id": 13, + "poly": [ + 537, + 2003, + 573, + 2003, + 573, + 2033, + 537, + 2033 + ], + "score": 0.53, + "latex": "( \\lambda )" + }, + { + "category_id": 13, + "poly": [ + 465, + 1962, + 524, + 1962, + 524, + 1993, + 465, + 1993 + ], + "score": 0.42, + "latex": "1 0 ^ { - 4 }" + }, + { + "category_id": 14, + "poly": [ + 534, + 1928, + 1404, + 1928, + 1404, + 1965, + 534, + 1965 + ], + "score": 0.36, + "latex": "\\{ 1 0 ^ { - 7 } , 2 \\times 1 0 ^ { - 7 } , 5 \\times 1 0 ^ { - 7 } , 1 0 ^ { - 6 } , 2 \\times 1 0 ^ { - 6 } , 5 \\times 1 0 ^ { - 6 } , 1 0 ^ { - 5 } , 2 \\times 1 0 ^ { - 5 } , 5 \\times 1 0 ^ { - 6 } , 1 \\}" + }, + { + "category_id": 15, + "poly": [ + 391.0, + 226.0, + 458.0, + 226.0, + 458.0, + 260.0, + 391.0, + 260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 675.0, + 226.0, + 742.0, + 226.0, + 742.0, + 259.0, + 675.0, + 259.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 960.0, + 228.0, + 1025.0, + 228.0, + 1025.0, + 258.0, + 960.0, + 258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1243.0, + 226.0, + 1312.0, + 226.0, + 1312.0, + 259.0, + 1243.0, + 259.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 359.0, + 262.0, + 370.0, + 262.0, + 370.0, + 272.0, + 359.0, + 272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 790.0, + 259.0, + 805.0, + 259.0, + 805.0, + 274.0, + 790.0, + 274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 985.0, + 269.0, + 997.0, + 269.0, + 997.0, + 278.0, + 985.0, + 278.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 779.0, + 276.0, + 785.0, + 276.0, + 785.0, + 282.0, + 779.0, + 282.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 890.0, + 275.0, + 906.0, + 275.0, + 906.0, + 291.0, + 890.0, + 291.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 283.0, + 340.0, + 283.0, + 340.0, + 293.0, + 330.0, + 293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 749.0, + 281.0, + 767.0, + 281.0, + 767.0, + 320.0, + 749.0, + 320.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 641.0, + 315.0, + 648.0, + 315.0, + 648.0, + 321.0, + 641.0, + 321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 366.0, + 324.0, + 376.0, + 324.0, + 376.0, + 333.0, + 366.0, + 333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 704.0, + 324.0, + 719.0, + 324.0, + 719.0, + 339.0, + 704.0, + 339.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 797.0, + 319.0, + 812.0, + 319.0, + 812.0, + 334.0, + 797.0, + 334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 935.0, + 318.0, + 944.0, + 318.0, + 944.0, + 329.0, + 935.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 515.0, + 335.0, + 525.0, + 335.0, + 525.0, + 346.0, + 515.0, + 346.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 685.0, + 333.0, + 696.0, + 333.0, + 696.0, + 344.0, + 685.0, + 344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1082.0, + 335.0, + 1097.0, + 335.0, + 1097.0, + 350.0, + 1082.0, + 350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 766.0, + 342.0, + 781.0, + 342.0, + 781.0, + 357.0, + 766.0, + 357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 926.0, + 344.0, + 935.0, + 344.0, + 935.0, + 356.0, + 926.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 940.0, + 346.0, + 949.0, + 346.0, + 949.0, + 356.0, + 940.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 351.0, + 333.0, + 351.0, + 333.0, + 362.0, + 320.0, + 362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 739.0, + 355.0, + 759.0, + 355.0, + 759.0, + 367.0, + 739.0, + 367.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1044.0, + 350.0, + 1059.0, + 350.0, + 1059.0, + 364.0, + 1044.0, + 364.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 430.0, + 364.0, + 440.0, + 364.0, + 440.0, + 376.0, + 430.0, + 376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 460.0, + 379.0, + 466.0, + 379.0, + 466.0, + 385.0, + 460.0, + 385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 984.0, + 384.0, + 990.0, + 384.0, + 990.0, + 390.0, + 984.0, + 390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 606.0, + 396.0, + 616.0, + 396.0, + 616.0, + 406.0, + 606.0, + 406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 729.0, + 388.0, + 744.0, + 388.0, + 744.0, + 404.0, + 729.0, + 404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1207.0, + 398.0, + 1216.0, + 398.0, + 1216.0, + 409.0, + 1207.0, + 409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1227.0, + 393.0, + 1241.0, + 393.0, + 1241.0, + 411.0, + 1227.0, + 411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1242.0, + 404.0, + 1252.0, + 404.0, + 1252.0, + 414.0, + 1242.0, + 414.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 473.0, + 417.0, + 483.0, + 417.0, + 483.0, + 427.0, + 473.0, + 427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 681.0, + 458.0, + 1018.0, + 458.0, + 1018.0, + 491.0, + 681.0, + 491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 391.0, + 492.0, + 458.0, + 492.0, + 458.0, + 526.0, + 391.0, + 526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 675.0, + 493.0, + 742.0, + 493.0, + 742.0, + 526.0, + 675.0, + 526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 960.0, + 496.0, + 1025.0, + 496.0, + 1025.0, + 525.0, + 960.0, + 525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1245.0, + 493.0, + 1311.0, + 493.0, + 1311.0, + 526.0, + 1245.0, + 526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 357.0, + 529.0, + 370.0, + 529.0, + 370.0, + 539.0, + 357.0, + 539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 790.0, + 526.0, + 805.0, + 526.0, + 805.0, + 541.0, + 790.0, + 541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 955.0, + 521.0, + 1012.0, + 521.0, + 1012.0, + 567.0, + 955.0, + 567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 404.0, + 534.0, + 414.0, + 534.0, + 414.0, + 544.0, + 404.0, + 544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 550.0, + 341.0, + 550.0, + 341.0, + 560.0, + 330.0, + 560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 407.0, + 545.0, + 417.0, + 545.0, + 417.0, + 556.0, + 407.0, + 556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 748.0, + 546.0, + 769.0, + 546.0, + 769.0, + 588.0, + 748.0, + 588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 569.0, + 377.0, + 569.0, + 377.0, + 578.0, + 367.0, + 578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 418.0, + 580.0, + 428.0, + 580.0, + 428.0, + 588.0, + 418.0, + 588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 798.0, + 587.0, + 811.0, + 587.0, + 811.0, + 598.0, + 798.0, + 598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 693.0, + 596.0, + 707.0, + 596.0, + 707.0, + 604.0, + 693.0, + 604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1081.0, + 592.0, + 1097.0, + 592.0, + 1097.0, + 607.0, + 1081.0, + 607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 603.0, + 377.0, + 603.0, + 377.0, + 612.0, + 367.0, + 612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 515.0, + 603.0, + 525.0, + 603.0, + 525.0, + 613.0, + 515.0, + 613.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 654.0, + 604.0, + 662.0, + 604.0, + 662.0, + 614.0, + 654.0, + 614.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 948.0, + 605.0, + 954.0, + 605.0, + 954.0, + 612.0, + 948.0, + 612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 618.0, + 331.0, + 618.0, + 331.0, + 629.0, + 320.0, + 629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 740.0, + 624.0, + 756.0, + 624.0, + 756.0, + 632.0, + 740.0, + 632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1047.0, + 610.0, + 1061.0, + 610.0, + 1061.0, + 625.0, + 1047.0, + 625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 624.0, + 629.0, + 634.0, + 629.0, + 634.0, + 640.0, + 624.0, + 640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 784.0, + 631.0, + 795.0, + 631.0, + 795.0, + 642.0, + 784.0, + 642.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 606.0, + 638.0, + 620.0, + 638.0, + 620.0, + 667.0, + 606.0, + 667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 763.0, + 641.0, + 772.0, + 641.0, + 772.0, + 651.0, + 763.0, + 651.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 680.0, + 650.0, + 691.0, + 650.0, + 691.0, + 660.0, + 680.0, + 660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 990.0, + 652.0, + 1000.0, + 652.0, + 1000.0, + 662.0, + 990.0, + 662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1242.0, + 657.0, + 1253.0, + 657.0, + 1253.0, + 667.0, + 1242.0, + 667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1276.0, + 655.0, + 1286.0, + 655.0, + 1286.0, + 663.0, + 1276.0, + 663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 632.0, + 666.0, + 640.0, + 666.0, + 640.0, + 675.0, + 632.0, + 675.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 473.0, + 684.0, + 483.0, + 684.0, + 483.0, + 695.0, + 473.0, + 695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 990.0, + 685.0, + 1000.0, + 685.0, + 1000.0, + 695.0, + 990.0, + 695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 655.0, + 725.0, + 1047.0, + 725.0, + 1047.0, + 759.0, + 655.0, + 759.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 390.0, + 761.0, + 458.0, + 761.0, + 458.0, + 793.0, + 390.0, + 793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 675.0, + 763.0, + 742.0, + 763.0, + 742.0, + 791.0, + 675.0, + 791.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 959.0, + 760.0, + 1026.0, + 760.0, + 1026.0, + 793.0, + 959.0, + 793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1245.0, + 762.0, + 1309.0, + 762.0, + 1309.0, + 791.0, + 1245.0, + 791.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 716.0, + 793.0, + 732.0, + 793.0, + 732.0, + 809.0, + 716.0, + 809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 890.0, + 795.0, + 901.0, + 795.0, + 901.0, + 805.0, + 890.0, + 805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1369.0, + 795.0, + 1379.0, + 795.0, + 1379.0, + 806.0, + 1369.0, + 806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 750.0, + 818.0, + 781.0, + 818.0, + 781.0, + 832.0, + 750.0, + 832.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 912.0, + 817.0, + 922.0, + 817.0, + 922.0, + 827.0, + 912.0, + 827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 980.0, + 818.0, + 990.0, + 818.0, + 990.0, + 827.0, + 980.0, + 827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1321.0, + 827.0, + 1345.0, + 827.0, + 1345.0, + 848.0, + 1321.0, + 848.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 340.0, + 859.0, + 346.0, + 859.0, + 346.0, + 865.0, + 340.0, + 865.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 681.0, + 849.0, + 690.0, + 849.0, + 690.0, + 859.0, + 681.0, + 859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 789.0, + 850.0, + 812.0, + 850.0, + 812.0, + 894.0, + 789.0, + 894.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 906.0, + 849.0, + 916.0, + 849.0, + 916.0, + 859.0, + 906.0, + 859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 955.0, + 848.0, + 969.0, + 848.0, + 969.0, + 857.0, + 955.0, + 857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 973.0, + 850.0, + 985.0, + 850.0, + 985.0, + 861.0, + 973.0, + 861.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 745.0, + 865.0, + 755.0, + 865.0, + 755.0, + 875.0, + 745.0, + 875.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 515.0, + 872.0, + 525.0, + 872.0, + 525.0, + 882.0, + 515.0, + 882.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 765.0, + 883.0, + 786.0, + 883.0, + 786.0, + 898.0, + 765.0, + 898.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1065.0, + 883.0, + 1074.0, + 883.0, + 1074.0, + 893.0, + 1065.0, + 893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1076.0, + 876.0, + 1091.0, + 876.0, + 1091.0, + 893.0, + 1076.0, + 893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 891.0, + 333.0, + 891.0, + 333.0, + 899.0, + 323.0, + 899.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1052.0, + 894.0, + 1064.0, + 894.0, + 1064.0, + 905.0, + 1052.0, + 905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1212.0, + 904.0, + 1222.0, + 904.0, + 1222.0, + 914.0, + 1212.0, + 914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1207.0, + 914.0, + 1218.0, + 914.0, + 1218.0, + 925.0, + 1207.0, + 925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1225.0, + 915.0, + 1231.0, + 915.0, + 1231.0, + 921.0, + 1225.0, + 921.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 431.0, + 952.0, + 441.0, + 952.0, + 441.0, + 962.0, + 431.0, + 962.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1039.0, + 951.0, + 1050.0, + 951.0, + 1050.0, + 962.0, + 1039.0, + 962.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1173.0, + 948.0, + 1191.0, + 948.0, + 1191.0, + 963.0, + 1173.0, + 963.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 692.0, + 993.0, + 1007.0, + 993.0, + 1007.0, + 1024.0, + 692.0, + 1024.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1028.0, + 457.0, + 1028.0, + 457.0, + 1058.0, + 392.0, + 1058.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 676.0, + 1028.0, + 741.0, + 1028.0, + 741.0, + 1059.0, + 676.0, + 1059.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 959.0, + 1029.0, + 1026.0, + 1029.0, + 1026.0, + 1058.0, + 959.0, + 1058.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1244.0, + 1029.0, + 1309.0, + 1029.0, + 1309.0, + 1058.0, + 1244.0, + 1058.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 386.0, + 1064.0, + 396.0, + 1064.0, + 396.0, + 1075.0, + 386.0, + 1075.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 798.0, + 1059.0, + 812.0, + 1059.0, + 812.0, + 1075.0, + 798.0, + 1075.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 891.0, + 1061.0, + 901.0, + 1061.0, + 901.0, + 1072.0, + 891.0, + 1072.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1368.0, + 1061.0, + 1379.0, + 1061.0, + 1379.0, + 1074.0, + 1368.0, + 1074.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 641.0, + 1100.0, + 650.0, + 1100.0, + 650.0, + 1109.0, + 641.0, + 1109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 953.0, + 1129.0, + 963.0, + 1129.0, + 963.0, + 1139.0, + 953.0, + 1139.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1084.0, + 1125.0, + 1095.0, + 1125.0, + 1095.0, + 1136.0, + 1084.0, + 1136.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 758.0, + 1141.0, + 766.0, + 1141.0, + 766.0, + 1154.0, + 758.0, + 1154.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1048.0, + 1145.0, + 1061.0, + 1145.0, + 1061.0, + 1155.0, + 1048.0, + 1155.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1300.0, + 1149.0, + 1311.0, + 1149.0, + 1311.0, + 1159.0, + 1300.0, + 1159.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1024.0, + 1156.0, + 1034.0, + 1156.0, + 1034.0, + 1166.0, + 1024.0, + 1166.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1274.0, + 1162.0, + 1285.0, + 1162.0, + 1285.0, + 1172.0, + 1274.0, + 1172.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1226.0, + 1179.0, + 1237.0, + 1179.0, + 1237.0, + 1190.0, + 1226.0, + 1190.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 485.0, + 1220.0, + 491.0, + 1220.0, + 491.0, + 1226.0, + 485.0, + 1226.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 722.0, + 1210.0, + 734.0, + 1210.0, + 734.0, + 1228.0, + 722.0, + 1228.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 667.0, + 1258.0, + 1033.0, + 1258.0, + 1033.0, + 1293.0, + 667.0, + 1293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 965.0, + 262.5, + 978.0, + 262.5, + 978.0, + 284.5, + 965.0, + 284.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1270.25, + 272.5, + 1397.25, + 272.5, + 1397.25, + 320.0, + 1270.25, + 320.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1009.25, + 359.5, + 1025.25, + 359.5, + 1025.25, + 372.5, + 1009.25, + 372.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1201.0, + 342.0, + 1317.0, + 342.0, + 1317.0, + 367.0, + 1201.0, + 367.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 893.0, + 535.0, + 904.0, + 535.0, + 904.0, + 552.0, + 893.0, + 552.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1011.25, + 620.0, + 1030.25, + 620.0, + 1030.25, + 637.0, + 1011.25, + 637.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1236.0, + 567.0, + 1406.0, + 567.0, + 1406.0, + 603.5, + 1236.0, + 603.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 972.75, + 648.5, + 996.75, + 648.5, + 996.75, + 658.5, + 972.75, + 658.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1156.0, + 656.0, + 1242.0, + 656.0, + 1242.0, + 687.0, + 1156.0, + 687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 693.0, + 667.5, + 755.0, + 667.5, + 755.0, + 686.5, + 693.0, + 686.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 728.0, + 833.0, + 750.0, + 833.0, + 750.0, + 842.5, + 728.0, + 842.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 728.0, + 936.5, + 757.0, + 936.5, + 757.0, + 962.0, + 728.0, + 962.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1181.25, + 940.5, + 1217.25, + 940.5, + 1217.25, + 951.0, + 1181.25, + 951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 762.75, + 1125.0, + 789.75, + 1125.0, + 789.75, + 1133.5, + 762.75, + 1133.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1260.0, + 1140.0, + 1283.0, + 1140.0, + 1283.0, + 1154.0, + 1260.0, + 1154.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1265.75, + 1100.5, + 1384.75, + 1100.5, + 1384.75, + 1129.5, + 1265.75, + 1129.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1243.0, + 1159.5, + 1264.0, + 1159.5, + 1264.0, + 1169.0, + 1243.0, + 1169.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1158.0, + 1193.0, + 1239.0, + 1193.0, + 1239.0, + 1219.0, + 1158.0, + 1219.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 856.0, + 73.0, + 856.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 567.0, + 1630.0, + 1130.0, + 1630.0, + 1130.0, + 1671.0, + 567.0, + 1671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 871.0, + 2085.0, + 871.0, + 2123.0, + 832.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 1314.0, + 937.0, + 1314.0, + 937.0, + 1353.0, + 348.0, + 1353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1006.0, + 1314.0, + 1348.0, + 1314.0, + 1348.0, + 1353.0, + 1006.0, + 1353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 668.0, + 1260.0, + 1031.0, + 1260.0, + 1031.0, + 1295.0, + 668.0, + 1295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 368.0, + 1807.0, + 719.0, + 1807.0, + 719.0, + 1844.0, + 368.0, + 1844.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 846.0, + 1807.0, + 855.0, + 1807.0, + 855.0, + 1844.0, + 846.0, + 1844.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 368.0, + 1849.0, + 566.0, + 1849.0, + 566.0, + 1884.0, + 368.0, + 1884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 741.0, + 1849.0, + 753.0, + 1849.0, + 753.0, + 1884.0, + 741.0, + 1884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 366.0, + 1886.0, + 593.0, + 1886.0, + 593.0, + 1924.0, + 366.0, + 1924.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 847.0, + 1886.0, + 859.0, + 1886.0, + 859.0, + 1924.0, + 847.0, + 1924.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 364.0, + 1924.0, + 528.0, + 1924.0, + 528.0, + 1966.0, + 364.0, + 1966.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 845.0, + 1957.0, + 858.0, + 1957.0, + 858.0, + 1997.0, + 845.0, + 1997.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 366.0, + 1999.0, + 536.0, + 1999.0, + 536.0, + 2037.0, + 366.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 574.0, + 1999.0, + 587.0, + 1999.0, + 587.0, + 2037.0, + 574.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 830.0, + 1999.0, + 843.0, + 1999.0, + 843.0, + 2037.0, + 830.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1720.0, + 1403.0, + 1720.0, + 1403.0, + 1756.0, + 295.0, + 1756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1752.0, + 1033.0, + 1752.0, + 1033.0, + 1786.0, + 295.0, + 1786.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 15, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 368, + 228, + 916, + 228, + 916, + 306, + 368, + 306 + ], + "score": 0.933 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 864, + 2088, + 864, + 2112, + 836, + 2112 + ], + "score": 0.827 + }, + { + "category_id": 2, + "poly": [ + 297, + 75, + 855, + 75, + 855, + 105, + 297, + 105 + ], + "score": 0.608 + }, + { + "category_id": 2, + "poly": [ + 297, + 75, + 855, + 75, + 855, + 106, + 297, + 106 + ], + "score": 0.254 + }, + { + "category_id": 13, + "poly": [ + 555, + 229, + 837, + 229, + 837, + 264, + 555, + 264 + ], + "score": 0.86, + "latex": "\\{ 0 , 0 . 1 , 0 . 2 , 0 . 3 , 0 . 4 , 0 . 5 \\}" + }, + { + "category_id": 13, + "poly": [ + 563, + 272, + 908, + 272, + 908, + 306, + 563, + 306 + ], + "score": 0.8, + "latex": "\\{ 0 . 0 1 , 0 . 0 2 , 0 . 0 5 , 0 . 1 , 0 . 2 , 0 . 5 \\}" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 869.0, + 2085.0, + 869.0, + 2124.0, + 832.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 73.0, + 856.0, + 73.0, + 856.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 72.0, + 856.0, + 72.0, + 856.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 369.0, + 228.0, + 554.0, + 228.0, + 554.0, + 266.0, + 369.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 228.0, + 850.0, + 228.0, + 850.0, + 266.0, + 838.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 368.0, + 269.0, + 562.0, + 269.0, + 562.0, + 309.0, + 368.0, + 309.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 909.0, + 269.0, + 918.0, + 269.0, + 918.0, + 309.0, + 909.0, + 309.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 16, + "width": 1700, + "height": 2200 + } + } +] \ No newline at end of file diff --git a/parse/train/rkZB1XbRZ/rkZB1XbRZ.md b/parse/train/rkZB1XbRZ/rkZB1XbRZ.md new file mode 100644 index 0000000000000000000000000000000000000000..1626e65981193605bfe75a4138f0bf5680f776e0 --- /dev/null +++ b/parse/train/rkZB1XbRZ/rkZB1XbRZ.md @@ -0,0 +1,1088 @@ +# SCALABLE PRIVATE LEARNING WITH PATE + +Nicolas Papernot∗ Pennsylvania State University ngp5056@cse.psu.edu + +Shuang Song∗ University of California San Diego shs037@eng.ucsd.edu + +# Ilya Mironov, Ananth Raghunathan, Kunal Talwar & Úlfar Erlingsson + +Google Brain {mironov,pseudorandom,kunal,ulfar}@google.com + +# ABSTRACT + +The rapid adoption of machine learning has increased concerns about the privacy implications of machine learning models trained on sensitive data, such as medical records or other personal information. To address those concerns, one promising approach is Private Aggregation of Teacher Ensembles, or PATE, which transfers to a “student” model the knowledge of an ensemble of “teacher” models, with intuitive privacy provided by training teachers on disjoint data and strong privacy guaranteed by noisy aggregation of teachers’ answers. However, PATE has so far been evaluated only on simple classification tasks like MNIST, leaving unclear its utility when applied to larger-scale learning tasks and real-world datasets. + +In this work, we show how PATE can scale to learning tasks with large numbers of output classes and uncurated, imbalanced training data with errors. For this, we introduce new noisy aggregation mechanisms for teacher ensembles that are more selective and add less noise, and prove their tighter differential-privacy guarantees. Our new mechanisms build on two insights: the chance of teacher consensus is increased by using more concentrated noise and, lacking consensus, no answer need be given to a student. The consensus answers used are more likely to be correct, offer better intuitive privacy, and incur lower-differential privacy cost. Our evaluation shows our mechanisms improve on the original PATE on all measures, and scale to larger tasks with both high utility and very strong privacy $( \varepsilon < 1 . 0 )$ . + +# 1 INTRODUCTION + +Many attractive applications of modern machine-learning techniques involve training models using highly sensitive data. For example, models trained on people’s personal messages or detailed medical information can offer invaluable insights into real-world language usage or the diagnoses and treatment of human diseases (McMahan et al., 2017; Liu et al., 2017). A key challenge in such applications is to prevent models from revealing inappropriate details of the sensitive data—a nontrivial task, since models are known to implicitly memorize such details during training and also to inadvertently reveal them during inference (Zhang et al., 2017; Shokri et al., 2017). + +Recently, two promising, new model-training approaches have offered the hope that practical, highutility machine learning may be compatible with strong privacy-protection guarantees for sensitive training data (Abadi et al., 2017). This paper revisits one of these approaches, Private Aggregation of Teacher Ensembles, or PATE (Papernot et al., 2017), and develops techniques that improve its scalability and practical applicability. PATE has the advantage of being able to learn from the aggregated consensus of separate “teacher” models trained on disjoint data, in a manner that both provides intuitive privacy guarantees and is agnostic to the underlying machine-learning techniques (cf. the approach of differentially-private stochastic gradient descent (Abadi et al., 2016)). In the PATE approach multiple teachers are trained on disjoint sensitive data (e.g., different users’ data), and uses the teachers’ aggregate consensus answers in a black-box fashion to supervise the training of a “student” model. By publishing only the student model (keeping the teachers private) and by adding carefully-calibrated Laplacian noise to the aggregate answers used to train the student, the original PATE work showed how to establish rigorous $( \varepsilon , \delta )$ differential-privacy guarantees (Papernot et al., 2017)—a gold standard of privacy (Dwork et al., 2006). However, to date, PATE has been applied to only simple tasks, like MNIST, without any realistic, larger-scale evaluation. + +![](images/c3594f071434de4b1002553d1654f0039070cda1d9541b55bc7bf757cdf4295c.jpg) +Figure 1: Our contributions are techniques (Confident-GNMax) that improve on the original PATE (LNMax) on all measures. Left: Accuracy is higher throughout training, despite greatly improved privacy (more in Table 1). Middle: The $\varepsilon$ differential-privacy bound on privacy cost is quartered, at least (more in Figure 5). Right: Intuitive privacy is also improved, since students are trained on answers with a much stronger consensus among the teachers (more in Figure 5). These are results for a character-recognition task, using the most favorable LNMax parameters for a fair comparison. + +The techniques presented in this paper allow PATE to be applied on a larger scale to build more accurate models, in a manner that improves both on PATE’s intuitive privacy-protection due to the teachers’ independent consensus as well as its differential-privacy guarantees. As shown in our experiments, the result is a gain in privacy, utility, and practicality—an uncommon joint improvement. + +The primary technical contributions of this paper are new mechanisms for aggregating teachers’ answers that are more selective and add less noise. On all measures, our techniques improve on the original PATE mechanism when evaluated on the same tasks using the same datasets, as described in Section 5. Furthermore, we evaluate both variants of PATE on a new, large-scale character recognition task with 150 output classes, inspired by MNIST. The results show that PATE can be successfully utilized even to uncurated datasets—with significant class imbalance as well as erroneous class labels—and that our new aggregation mechanisms improve both privacy and model accuracy. + +To be more selective, our new mechanisms leverage some pleasant synergies between privacy and utility in PATE aggregation. For example, when teachers disagree, and there is no real consensus, the privacy cost is much higher; however, since such disagreement also suggest that the teachers may not give a correct answer, the answer may simply be omitted. Similarly, teachers may avoid giving an answer where the student already is confidently predicting the right answer. Additionally, we ensure that these selection steps are themselves done in a private manner. + +To add less noise, our new PATE aggregation mechanisms sample Gaussian noise, since the tails of that distribution diminish far more rapidly than those of the Laplacian noise used in the original PATE work. This reduction greatly increases the chance that the noisy aggregation of teachers’ votes results in the correct consensus answer, which is especially important when PATE is scaled to learning tasks with large numbers of output classes. However, changing the sampled noise requires redoing the entire PATE privacy analysis from scratch (see Section 4 and details in Appendix A). + +Finally, of independent interest are the details of our evaluation extending that of the original PATE work. In particular, we find that the virtual adversarial training (VAT) technique of Miyato et al. (2017) is a good basis for semi-supervised learning on tasks with many classes, outperforming the improved GANs by Salimans et al. (2016) used in the original PATE work. Furthermore, we explain how to tune the PATE approach to achieve very strong privacy $\langle \varepsilon \approx 1 . 0 $ ) along with high utility, for our real-world character recognition learning task. + +This paper is structured as follows: Section 2 is the related work section; Section 3 gives a background on PATE and an overview of our work; Section 4 describes our improved aggregation mechanisms; Section 5 details our experimental evaluation; Section 6 offers conclusions; and proofs are deferred to the Appendices. + +# 2 RELATED WORK + +Differential privacy is by now the gold standard of privacy. It offers a rigorous framework whose threat model makes few assumptions about the adversary’s capabilities, allowing differentially private algorithms to effectively cope against strong adversaries. This is not the case of all privacy definitions, as demonstrated by successful attacks against anonymization techniques (Aggarwal, 2005; Narayanan & Shmatikov, 2008; Bindschaedler et al., 2017). + +The first learning algorithms adapted to provide differential privacy with respect to their training data were often linear and convex (Pathak et al., 2010; Chaudhuri et al., 2011; Song et al., 2013; Bassily et al., 2014; Hamm et al., 2016). More recently, successful developments in deep learning called for differentially private stochastic gradient descent algorithms (Abadi et al., 2016), some of which have been tailored to learn in federated (McMahan et al., 2017) settings. + +Differentially private selection mechanisms like GNMax (Section 4.1) are commonly used in hypothesis testing, frequent itemset mining, and as building blocks of more complicated private mechanisms. The most commonly used differentially private selection mechanisms are exponential mechanism (McSherry & Talwar, 2007) and LNMax (Bhaskar et al., 2010). Recent works offer lower bounds on sample complexity of such problem (Steinke & Ullman, 2017; Bafna & Ullman, 2017). + +The Confident and Interactive Aggregator proposed in our work (Section 4.2 and Section 4.3 resp.) use the intuition that selecting samples under certain constraints could result in better training than using samples uniformly at random. In Machine Learning Theory, active learning (Cohn et al., 1994) has been shown to allow learning from fewer labeled examples than the passive case (see e.g. Hanneke (2014)). Similarly, in model stealing (Tramèr et al., 2016), a goal is to learn a model from limited access to a teacher network. There is previous work in differential privacy literature (Hardt & Rothblum, 2010; Roth & Roughgarden, 2010) where the mechanism first decides whether or not to answer a query, and then privately answers the queries it chooses to answer using a traditional noiseaddition mechanism. In these cases, the sparse vector technique (Dwork & Roth, 2014, Chapter 3.6) helps bound the privacy cost in terms of the number of answered queries. This is in contrast to our work where a constant fraction of queries get answered and the sparse vector technique does not seem to help reduce the privacy cost. Closer to our work, Bun et al. (2017) consider a setting where the answer to a query of interest is often either very large or very small. They show that a sparse vector-like analysis applies in this case, where one pays only for queries that are in the middle. + +# 3 BACKGROUND AND OVERVIEW + +We introduce essential components of our approach towards a generic and flexible framework for machine learning with provable privacy guarantees for training data. + +# 3.1 THE PATE FRAMEWORK + +Here, we provide an overview of the PATE framework. To protect the privacy of training data during learning, PATE transfers knowledge from an ensemble of teacher models trained on partitions of the data to a student model. Privacy guarantees may be understood intuitively and expressed rigorously in terms of differential privacy. + +Illustrated in Figure 2, the PATE framework consists of three key parts: (1) an ensemble of $n$ teacher models, (2) an aggregation mechanism and (3) a student model. + +Teacher models: Each teacher is a model trained independently on a subset of the data whose privacy one wishes to protect. The data is partitioned to ensure no pair of teachers will have trained on overlapping data. Any learning technique suitable for the data can be used for any teacher. Training each teacher on a partition of the sensitive data produces $n$ different models solving the same task. At inference, teachers independently predict labels. + +Aggregation mechanism: When there is a strong consensus among teachers, the label they almost all agree on does not depend on the model learned by any given teacher. Hence, this collective decision is intuitively private with respect to any given training point—because such a point could have been included only in one of the teachers’ training set. To provide rigorous guarantees of differential privacy, the aggregation mechanism of the original PATE framework counts votes assigned to each class, adds carefully calibrated Laplacian noise to the resulting vote histogram, and outputs the class with the most noisy votes as the ensemble’s prediction. This mechanism is referred to as the max-of-Laplacian mechanism, or LNMax, going forward. + +![](images/cf30449e1809aaac1394f2000d5e2e0328dac51fa491f501a52adfbb7f7f5f83.jpg) +Figure 2: Overview of the approach: (1) an ensemble of teachers is trained on disjoint subsets of the sensitive data, (2) a student model is trained on public data labeled using the ensemble. + +For samples $x$ and classes $1 , \ldots , m$ , let $f _ { j } ( x ) \in [ m ]$ denote the $j$ -th teacher model’s prediction and $n _ { i }$ denote the vote count for the $i$ -th class (i.e., $n _ { i } \triangleq | f _ { j } ( x ) = i | )$ . The output of the mechanism is $A ( x ) \triangleq \mathrm { a r g m a x } _ { i } \left( n _ { i } ( x ) + \mathrm { L a p } \left( 1 / \gamma \right) \right)$ . Through a rigorous analysis of this mechanism, the PATE framework provides a differentially private API: the privacy cost of each aggregated prediction made by the teacher ensemble is known. + +Student model: PATE’s final step involves the training of a student model by knowledge transfer from the teacher ensemble using access to public—but unlabeled—data. To limit the privacy cost of labeling them, queries are only made to the aggregation mechanism for a subset of public data to train the student in a semi-supervised way using a fixed number of queries. The authors note that every additional ensemble prediction increases the privacy cost spent and thus cannot work with unbounded queries. Fixed queries fixes privacy costs as well as diminishes the value of attacks analyzing model parameters to recover training data (Zhang et al., 2017). The student only sees public data and privacy-preserving labels. + +# 3.2 DIFFERENTIAL PRIVACY + +Differential privacy (Dwork et al., 2006) requires that the sensitivity of the distribution of an algorithm’s output to small perturbations of its input be limited. The following variant of the definition captures this intuition formally: + +Definition 1. A randomized mechanism $\mathcal { M }$ with domain $\mathcal { D }$ and range $\mathcal { R }$ satisfies $( \varepsilon , \delta )$ -differential privacy if for any two adjacent inputs $D , D ^ { \prime } \in \mathcal { D }$ and for any subset of outputs $S \subseteq \mathcal { R }$ it holds that: + +$$ +\mathbf { P r } [ \mathcal { M } ( D ) \in S ] \leq e ^ { \varepsilon } \cdot \mathbf { P r } [ \mathcal { M } ( D ^ { \prime } ) \in S ] + \delta . +$$ + +For our application of differential privacy to $\mathbf { M L }$ , adjacent inputs are defined as two datasets that only differ by one training example and the randomized mechanism $\mathcal { M }$ would be the model training algorithm. The privacy parameters have the following natural interpretation: $\varepsilon$ is an upper bound on the loss of privacy, and $\delta$ is the probability with which this guarantee may not hold. Composition theorems (Dwork & Roth, 2014) allow us to keep track of the privacy cost when we run a sequence of mechanisms. + +# 3.3 RÉNYI DIFFERENTIAL PRIVACY + +Papernot et al. (2017) note that the natural approach to bounding PATE’s privacy loss—by bounding the privacy cost of each label queried and using strong composition (Dwork et al., 2010) to derive the total cost—yields loose privacy guarantees. Instead, their approach uses data-dependent privacy analysis. This takes advantage of the fact that when the consensus among the teachers is very strong, the plurality outcome has overwhelming likelihood leading to a very small privacy cost whenever the consensus occurs. To capture this effect quantitatively, Papernot et al. (2017) rely on the moments + +accountant, introduced by Abadi et al. (2016) and building on previous work (Bun & Steinke, 2016; +Dwork & Rothblum, 2016). + +In this section, we recall the language of Rényi Differential Privacy or RDP (Mironov, 2017). RDP generalizes pure differential privacy $( \delta = 0$ ) and is closely related to the moments accountant. We choose to use RDP as a more natural analysis framework when dealing with our mechanisms that use Gaussian noise. Defined below, the RDP of a mechanism is stated in terms of the Rényi divergence. + +Definition 2 (Rényi Divergence). The Rényi divergence of order $\lambda$ between two distributions $P$ and $Q$ is defined as: + +$$ +D _ { \lambda } ( P \| Q ) \triangleq \frac { 1 } { \lambda - 1 } \log \mathbb { E } _ { x \sim Q } \left[ \left( P ( x ) / Q ( x ) \right) ^ { \lambda } \right] = \frac { 1 } { \lambda - 1 } \log \mathbb { E } _ { x \sim P } \left[ \left( P ( x ) / Q ( x ) \right) ^ { \lambda - 1 } \right] . +$$ + +Definition 3 (Rényi Differential Privacy (RDP)). A randomized mechanism $\mathcal { M }$ is said to guarantee $( \lambda , \varepsilon )$ -RDP with $\lambda \geq 1$ if for any neighboring datasets $D$ and $D ^ { \prime }$ , + +$$ +D _ { \lambda } ( { \mathcal M } ( D ) \| { \mathcal M } ( D ^ { \prime } ) ) = \frac { 1 } { \lambda - 1 } \log \mathbb { E } _ { x \sim { \mathcal M } ( D ) } \left[ \left( \frac { { \mathbf { P r } } \left[ { \mathcal M } ( D ) = x \right] } { { \mathbf { P r } } \left[ { \mathcal M } ( D ^ { \prime } ) = x \right] } \right) ^ { \lambda - 1 } \right] \le \varepsilon . +$$ + +RDP generalizes pure differential privacy in the sense that $\varepsilon$ -differential privacy is equivalent to $( \infty , \varepsilon )$ -RDP. Mironov (2017) proves the following key facts that allow easy composition of RDP guarantees and their conversion to $( \varepsilon , \delta )$ -differential privacy bounds. + +Theorem 4 (Composition). If a mechanism $\mathcal { M }$ consists of a sequence of adaptive mechanisms $\mathcal { M } _ { 1 } , \ldots , \mathcal { M } _ { k }$ such that for any $\textit { i } \in \ [ k ]$ , $\mathcal { M } _ { i }$ guarantees $( \lambda , \varepsilon _ { i } ) – R D P ,$ then $\mathcal { M }$ guarantees $( \lambda , \sum _ { i = 1 } ^ { k } \varepsilon _ { i } ) – R D P$ . + +Theorem 5 (From RDP to DP). If a mechanism $\mathcal { M }$ guarantees $( \lambda , \varepsilon )$ -RDP, then $\mathcal { M }$ guarantees $\begin{array} { r } { ( \varepsilon + \frac { \log { 1 / \delta } } { \lambda - 1 } , \delta ) } \end{array}$ -differential privacy for any $\delta \in ( 0 , 1 )$ . + +While both $( \varepsilon , \delta )$ -differential privacy and RDP are relaxations of pure $\varepsilon$ -differential privacy, the two main advantages of RDP are as follows. First, it composes nicely; second, it captures the privacy guarantee of Gaussian noise in a much cleaner manner compared to $( \varepsilon , \delta )$ -differential privacy. This lets us do a careful privacy analysis of the GNMax mechanism as stated in Theorem 6. While the analysis of Papernot et al. (2017) leverages the first aspect of such frameworks with the Laplace noise (LNMax mechanism), our analysis of the GNMax mechanism relies on both. + +# 3.4 PATE AGGREGATION MECHANISMS + +The aggregation step is a crucial component of PATE. It enables knowledge transfer from the teachers to the student while enforcing privacy. We improve the LNMax mechanism used by Papernot et al. (2017) which adds Laplace noise to teacher votes and outputs the class with the highest votes. + +First, we add Gaussian noise with an accompanying privacy analysis in the RDP framework. This modification effectively reduces the noise needed to achieve the same privacy cost per student query. + +Second, the aggregation mechanism is now selective: teacher votes are analyzed to decide which student queries are worth answering. This takes into account both the privacy cost of each query and its payout in improving the student’s utility. Surprisingly, our analysis shows that these two metrics are not at odds and in fact align with each other: the privacy cost is the smallest when teachers agree, and when teachers agree, the label is more likely to be correct thus being more useful to the student. + +Third, we propose and study an interactive mechanism that takes into account not only teacher votes on a queried example but possible student predictions on that query. Now, queries worth answering are those where the teachers agree on a class but the student is not confident in its prediction on that class. This third modification aligns the two metrics discussed above even further: queries where the student already agrees with the consensus of teachers are not worth expending our privacy budget on, but queries where the student is less confident are useful and answered at a small privacy cost. + +# 3.5 DATA-DEPENDENT PRIVACY IN PATE + +A direct privacy analysis of the aggregation mechanism, for reasonable values of the noise parameter, allows answering only few queries before the privacy cost becomes prohibitive. The original PATE proposal used a data-dependent analysis, exploiting the fact that when the teachers have large agreement, the privacy cost is usually much smaller than the data-independent bound would suggest. + +In our work, we perform a data-dependent privacy analysis of the aggregation mechanism with Gaussian noise. This change of noise distribution turns out be technically much more challenging than the Laplace noise case and we defer the details to Appendix A. This increased complexity of the analysis however does not make the algorithm any more complicated and thus allows us to improve the privacy-utility tradeoff. + +Sanitizing the privacy cost via smooth sensitivity analysis. An additional challenge with datadependent privacy analyses arises from the fact that the privacy cost itself is now a function of the private data. Further, the data-dependent bound on the privacy cost has large global sensitivity (a metric used in differential privacy to calibrate the noise injected) and is therefore difficult to sanitize. To remedy this, we use the smooth sensitivity framework proposed by Nissim et al. (2007). + +Appendix B describes how we add noise to the computed privacy cost using this framework to publish a sanitized version of the privacy cost. Section B.1 defines smooth sensitivity and outlines algorithms 3–5 that compute it. The rest of Appendix B argues the correctness of these algorithms. The final analysis shows that the incremental cost of sanitizing our privacy estimates is modest— less than $50 \%$ of the raw estimates—thus enabling us to use precise data-dependent privacy analysis while taking into account its privacy implications. + +# 4 IMPROVED AGGREGATION MECHANISMS FOR PATE + +The privacy guarantees provided by PATE stem from the design and analysis of the aggregation step. Here, we detail our improvements to the mechanism used by Papernot et al. (2017). As outlined in Section 3.4, we first replace the Laplace noise added to teacher votes with Gaussian noise, adapting the data-dependent privacy analysis. Next, we describe the Confident and Interactive Aggregators that select queries worth answering in a privacy-preserving way: the privacy budget is shared between the query selection and answer computation. The aggregators use different heuristics to select queries: the former does not take into account student predictions, while the latter does. + +# 4.1 THE GNMAX AGGREGATOR AND ITS PRIVACY GUARANTEE + +This section uses the following notation. For a sample $x$ and classes 1 to $m$ , let $f _ { j } ( x ) \in [ m ]$ denote the $j$ -th teacher model’s prediction on $x$ and $n _ { i } ( x )$ denote the vote count for the $i$ -th class (i.e., $n _ { i } ( \dot { x } ) = | \{ j \colon f _ { j } ( x ) = i \} | ,$ ). We define a Gaussian NoisyMax (GNMax) aggregation mechanism as: + +$$ +\mathcal { M } _ { \sigma } ( \boldsymbol { x } ) \stackrel { \triangle } { = } \operatorname * { a r g m a x } _ { i } \left\{ n _ { i } ( \boldsymbol { x } ) + \mathcal { N } ( 0 , \sigma ^ { 2 } ) \right\} , +$$ + +where ${ \mathcal { N } } ( 0 , \sigma ^ { 2 } )$ is the Gaussian distribution with mean 0 and variance $\sigma ^ { 2 }$ . The aggregator outputs the class with noisy plurality after adding Gaussian noise to each vote count. In what follow, plurality more generally refers to the highest number of teacher votes assigned among the classes. + +The Gaussian distribution is more concentrated than the Laplace distribution used by Papernot et al. (2017). This concentration directly improves the aggregation’s utility when the number of classes $m$ is large. The GNMax mechanism satisfies $( \lambda , \lambda / \bar { \sigma ^ { 2 } } )$ -RDP, which holds for all inputs and all $\lambda \geq 1$ (precise statements and proofs of claims in this section are deferred to Appendix A). A straightforward application of composition theorems leads to loose privacy bounds. As an example, the standard advanced composition theorem applied to experiments in the last two rows of Table 1 would give us $\varepsilon = 8 . 4 2$ and $\varepsilon = 1 0 . 1 4$ resp. at $\delta = 1 0 ^ { - 8 }$ for the Glyph dataset. + +To refine these, we work out a careful data-dependent analysis that yields values of $\varepsilon$ smaller than 1 for the same $\delta$ . The following theorem translates data-independent RDP guarantees for higher orders into a data-dependent RDP guarantee for a smaller order $\lambda$ . We use it in conjunction with Proposition 7 to bound the privacy cost of each query to the GNMax algorithm as a function of $\tilde { q }$ , the probability that the most common answer will not be output by the mechanism. + +Theorem 6 (informal). Let $\mathcal { M }$ be a randomized algorithm with $( \mu _ { 1 } , \varepsilon _ { 1 } ) – R D P$ and $\left( \mu _ { 2 } , \varepsilon _ { 2 } \right)$ - $R D P$ guarantees and suppose that given a dataset $D$ , there exists a likely outcome $i ^ { * }$ such that $\mathbf { P r } \left[ \mathcal { M } ( D ) \neq i ^ { * } \right] \leq \tilde { q }$ . Then the data-dependent Rényi differential privacy for $\mathcal { M }$ of order $\lambda \leq \mu _ { 1 } , \mu _ { 2 }$ at $D$ is bounded by a function of $\tilde { q } , \mu _ { 1 } , \varepsilon _ { 1 } , \mu _ { 2 } , \varepsilon _ { 2 }$ , which approaches $O$ as $\tilde { q } 0$ . + +The new bound improves on the data-independent privacy for $\lambda$ as long as the distribution of the algorithm’s output on that input has a strong peak (i.e., $\tilde { q } \ll 1 .$ ). Values of $\tilde { q }$ close to 1 could result in a looser bound. Therefore, in practice we take the minimum between this bound and $\lambda / \sigma ^ { 2 }$ (the data-independent one). The theorem generalizes Theorem 3 from Papernot et al. (2017), where it was shown for a mechanism satisfying $\varepsilon$ -differential privacy (i.e., $\mu _ { 1 } = \mu _ { 2 } = \infty$ and $\varepsilon _ { 1 } = \varepsilon _ { 2 }$ ). + +The final step in our analysis uses the following lemma to bound the probability $\tilde { q }$ when $i ^ { * }$ corresponds to the class with the true plurality of teacher votes. + +Proposition 7. For any erfc is the complementar $i ^ { * } \in [ m ]$ , we have nction. $\begin{array} { r } { \mathbf { P r } \left[ \mathcal { M } _ { \sigma } ( D ) \neq i ^ { * } \right] \ \leq \ \frac { 1 } { 2 } \sum _ { i \neq i ^ { * } } } \end{array}$ erfc $\left( { \frac { n _ { i ^ { * } } - n _ { i } } { 2 \sigma } } \right)$ , where + +In Appendix A, we detail how these results translate to privacy bounds. In short, for each query to the GNMax aggregator, given teacher votes $n _ { i }$ and the class $i ^ { * }$ with maximal support, Proposition 7 gives us the value of $\tilde { q }$ to use in Theorem 6. We optimize over $\mu _ { 1 }$ and $\mu _ { 2 }$ to get a data-dependent RDP guarantee for any order $\lambda$ . Finally, we use composition properties of RDP to analyze a sequence of queries, and translate the RDP bound back to an $( \varepsilon , \delta )$ -DP bound. + +Expensive queries. This data-dependent privacy analysis leads us to the concept of an expensive query in terms of its privacy cost. When teacher votes largely disagree, some $n _ { i ^ { * } } - n _ { i }$ values may be small leading to a large value for $\tilde { q }$ : i.e., the lack of consensus amongst teachers indicates that the aggregator is likely to output a wrong label. Thus expensive queries from a privacy perspective are often bad for training too. Conversely, queries with strong consensus enable tight privacy bounds. This synergy motivates the aggregation mechanisms discussed in the following sections: they evaluate the strength of the consensus before answering a query. + +# 4.2 THE CONFIDENT-GNMAX AGGREGATOR + +In this section, we propose a refinement of the GNMax aggregator that enables us to filter out queries for which teachers do not have a sufficiently strong consensus. This filtering enables the teachers to avoid answering expensive queries. We also take note to do this selection step itself in a private manner. + +The proposed Confident Aggregator is described in Algorithm 1. To select queries with overwhelming consensus, the algorithm checks if the plurality vote crosses a threshold $T$ . To enforce privacy in this step, the comparison is done after adding Gaussian noise with variance $\sigma _ { 1 } ^ { 2 }$ . Then, for queries that pass this noisy threshold check, the aggregator proceeds with the usual GNMax mechanism with a smaller variance $\sigma _ { 2 } ^ { 2 }$ . For queries that do not pass the noisy threshold check, the aggregator simply returns $\perp$ and the student discards this example in its training. + +In practice, we often choose significantly higher values for $\sigma _ { 1 }$ compared to $\sigma _ { 2 }$ . This is because we pay the cost of the noisy threshold check always, and without the benefit of knowing that the consensus is strong. We pick $T$ so that queries where the plurality gets less than half the votes (often very expensive) are unlikely to pass the threshold after adding noise, but we still have a high enough yield amongst the queries with a strong consensus. This tradeoff leads us to look for $T$ ’s between $0 . 6 \times$ to $0 . 8 \times$ the number of teachers. + +The privacy cost of this aggregator is intuitive: we pay for the threshold check for every query, and for the GNMax step only for queries that pass the check. In the work of Papernot et al. (2017), the mechanism paid a privacy cost for every query, expensive or otherwise. In comparison, the Confident Aggregator expends a much smaller privacy cost to check against the threshold, and by answering a significantly smaller fraction of expensive queries, it expends a lower privacy cost overall. + +# 4.3 THE INTERACTIVE-GNMAX AGGREGATOR + +While the Confident Aggregator excludes expensive queries, it ignores the possibility that the student might receive labels that contribute little to learning, and in turn to its utility. By incorporating the + +Algorithm 1 – Confident-GNMax Aggregator: given a query, consensus among teachers is first estimated in a privacy-preserving way to then only reveal confident teacher predictions. + +Input: input $x$ , threshold $T$ , noise parameters $\sigma _ { 1 }$ and $\sigma _ { 2 }$ +1: if $\begin{array} { r } { \operatorname* { m a x } _ { i } \{ n _ { j } ( x ) \} + \mathcal { N } ( 0 , \sigma _ { 1 } ^ { 2 } ) \geq T } \end{array}$ then +2: return argmaxj $\{ n _ { j } ( x ) + \mathcal { N } ( 0 , \sigma _ { 2 } ^ { 2 } ) \}$ +3: else +4: return ⊥ +5: end if + +$\triangleright$ Privately check for consensus . Run the usual max-of-Gaussian + +Algorithm 2 – Interactive-GNMax Aggregator: the protocol first compares student predictions to the teacher votes in a privacy-preserving way to then either (a) reinforce the student prediction for the given query or (b) provide the student with a new label predicted by the teachers. + +
Input: input x,confidence γ,threshold T,noise parameters O1 ando2,total number of teachers M
1:Ask the student to provide prediction scores p(x) 2:if maxj{nj(x)-Mpj(x)}+N(0,o²)≥Tthen >Student does not agree with teachers
3: return argmaxj{nj(x) +N(0,0²)}
4: else if max{pi(x)}> γ then > Student agrees with teachers and is confident
5: return arg maxj Pj(x)
Reinforce student's prediction 6: else return⊥ No output given for this label
+ +student’s current predictions for its public training data, we design an Interactive Aggregator that discards queries where the student already confidently predicts the same label as the teachers. + +Given a set of queries, the Interactive Aggregator (Algorithm 2) selects those answered by comparing student predictions to teacher votes for each class. Similar to Step 1 in the Confident Aggregator, queries where the plurality of these noised differences crosses a threshold are answered with GNMax. This noisy threshold suffices to enforce privacy of the first step because student predictions can be considered public information (the student is trained in a differentially private manner). + +For queries that fail this check, the mechanism reinforces the predicted student label if the student is confident enough and does this without looking at teacher votes again. This limited form of supervision comes at a small privacy cost. Moreover, the order of the checks ensures that a student falsely confident in its predictions on a query is not accidentally reinforced if it disagrees with the teacher consensus. The privacy accounting is identical to the Confident Aggregator except in considering the difference between teachers and the student instead of only the teachers votes. + +In practice, the Confident Aggregator can be used to start training a student when it can make no meaningful predictions and training can be finished off with the Interactive Aggregator after the student gains some proficiency. + +# 5 EXPERIMENTAL EVALUATION + +Our goal is first to show that the improved aggregators introduced in Section 4 enable the application of PATE to uncurated data, thus departing from previous results on tasks with balanced and wellseparated classes. We experiment with the Glyph dataset described below to address two aspects left open by Papernot et al. (2017): (a) the performance of PATE on a task with a larger number of classes (the framework was only evaluated on datasets with at most 10 classes) and (b) the privacy-utility tradeoffs offered by PATE on data that is class imbalanced and partly mislabeled. In Section 5.2, we evaluate the improvements given by the GNMax aggregator over its Laplace counterpart (LNMax) and demonstrate the necessity of the Gaussian mechanism for uncurated tasks. + +In Section 5.3, we then evaluate the performance of PATE with both the Confident and Interactive Aggregators on all datasets used to benchmark the original PATE framework, in addition to Glyph. With the right teacher and student training, the two mechanisms from Section 4 achieve high accuracy with very tight privacy bounds. Not answering queries for which teacher consensus is too low (Confident-GNMax) or the student’s predictions already agree with teacher votes (InteractiveGNMax) better aligns utility and privacy: queries are answered at a significantly reduced cost. + +# 5.1 EXPERIMENTAL SETUP + +MNIST, SVHN, and the UCI Adult databases. We evaluate with two computer vision tasks (MNIST and Street View House Numbers (Netzer et al., 2011)) and census data from the UCI Adult dataset (Kohavi, 1996). This enables a comparative analysis of the utility-privacy tradeoff achieved with our Confident-GNMax aggregator and the LNMax originally used in PATE. We replicate the experimental setup and results found in Papernot et al. (2017) with code and teacher votes made available online. The source code for the privacy analysis in this paper as well as supporting data required to run this analysis is available on Github.1 + +A detailed description of the experimental setup can be found in Papernot et al. (2017); we provide here only a brief overview. For MNIST and SVHN, teachers are convolutional networks trained on partitions of the training set. For UCI Adult, each teacher is a random forest. The test set is split in two halves: the first is used as unlabeled inputs to simulate the student’s public data and the second is used as a hold out to evaluate test performance. The MNIST and SVHN students are convolutional networks trained using semi-supervised learning with GANs à la Salimans et al. (2016). The student for the Adult dataset are fully supervised random forests. + +Glyph. This optical character recognition task has an order of magnitude more classes than all previous applications of PATE. The Glyph dataset also possesses many characteristics shared by real-world tasks: e.g., it is imbalanced and some inputs are mislabeled. Each input is a $2 8 \times 2 8$ grayscale image containing a single glyph generated synthetically from a collection of over 500K computer fonts.2 Samples representative of the difficulties raised by the data are depicted in Figure 3. The task is to classify inputs as one of the 150 Unicode symbols used to generate them. + +This set of 150 classes results from pre-processing efforts. We discarded additional classes that had few samples; some classes had at least 50 times fewer inputs than the most popular classes, and these were almost exclusively incorrectly labeled inputs. We also merged classes that were too ambiguous for even a human to differentiate them. Nevertheless, a manual inspection of samples grouped by classes—favorably to the human observer—led to the conservative estimate that some classes remain 5 times more frequent, and mislabeled inputs represent at least $1 0 \%$ of the data. + +To simulate the availability of private and public data (see Section 3.1), we split data originally marked as the training set (about 65M points) into partitions given to the teachers. Each teacher is a ResNet (He et al., 2016) made of 32 leaky ReLU layers. We train on batches of 100 inputs for 40K steps using SGD with momentum. The learning rate, initially set to 0.1, is decayed after 10K steps to 0.01 and again after 20K steps to 0.001. These parameters were found with a grid search. + +We split holdout data in two subsets of 100K and 400K samples: the first acts as public data to train the student and the second as its testing data. The student architecture is a convolutional network learnt in a semi-supervised fashion with virtual adversarial training (VAT) from Miyato et al. (2017). Using unlabeled data, we show how VAT can regularize the student by making predictions constant in adversarial3 directions. Indeed, we found that GANs did not yield as much utility for Glyph as for MNIST or SVHN. We train with Adam for 400 epochs and a learning rate of $6 \cdot \mathrm { i 0 ^ { - 5 } }$ . + +# 5.2 COMPARING THE LNMAX AND GNMAX MECHANISMS + +Section 4.1 introduces the GNMax mechanism and the accompanying privacy analysis. With a Gaussian distribution, whose tail diminishes more rapidly than the Laplace distribution, we expect better utility when using the new mechanism (albeit with a more involved privacy analysis). + +To study the tradeoff between privacy and accuracy with the two mechanisms, we run experiments training several ensembles of $M$ teachers for $M \in \{ 1 0 0 , 5 0 0 , 1 0 0 0 , 5 0 0 0 \}$ on the Glyph data. Recall that 65 million training inputs are partitioned and distributed among the $M$ teachers with each teacher receiving between 650K and 13K inputs for the values of $M$ above. The test data is used to query the teacher ensemble and the resulting labels (after the LNMax and GNMax mechanisms) are compared with the ground truth labels provided in the dataset. This predictive performance of the teachers is essential to good student training with accurate labels and is a useful proxy for utility. + +For each mechanism, we compute $( \varepsilon , \delta )$ -differential privacy guarantees. As is common in literature, for a dataset on the order of $\bar { 1 0 } ^ { 8 }$ samples, we choose $\delta = \bar { 1 0 } ^ { - 8 }$ and denote the corresponding $\varepsilon$ as the privacy cost. The total $\varepsilon$ is calculated on a subset of 4,000 queries, which is representative of the number of labels needed by a student for accurate training (see Section 5.3). We visualize in Figure 4 the effect of the noise distribution (left) and the number of teachers (right) on the tradeoff between privacy costs and label accuracy. + +Observations. On the left of Figure 1, we compare our GNMax aggregator to the LNMax aggregator used by the original PATE proposal, on an ensemble of 1000 teachers and for varying noise scales $\sigma$ . At fixed test accuracy, the GNMax algorithm consistently outperforms the LNMax mechanism in terms of privacy cost. To explain this improved performance, recall notation from Section 4.1. For both mechanisms, the data dependent privacy cost scales linearly with $\tilde { q }$ —the likelihood of an answer other than the true plurality. The value of $\tilde { q }$ falls of as $\exp ( - x ^ { 2 } )$ for GNMax and $\exp ( - x )$ for LNMax, where $x$ is the ratio $( \dot { n _ { i ^ { * } } } - n _ { i } ) / \sigma$ . Thus, when $n _ { i ^ { * } } - n _ { i }$ is (say) $4 \sigma$ , LNMax would have $\tilde { q } \approx e ^ { - 4 } = 0 . 0 1 8 . . .$ , whereas GNMax would have $\tilde { q } \approx e ^ { - 1 6 } \approx 1 0 ^ { - 7 }$ , thereby leading to a much higher likelihood of returning the true plurality. Moreover, this reduced $\tilde { q }$ translates to a smaller privacy cost for a given $\sigma$ leading to a better utility-privacy tradeoff. + +As long as each teacher has sufficient data to learn a good-enough model, increasing the number $M$ of teachers improves the tradeoff—as illustrated on the right of Figure 4 with GNMax. The larger ensembles lower the privacy cost of answering queries by tolerating larger $\sigma$ ’s. Combining the two observations made in this Figure, for a fixed label accuracy, we lower privacy costs by switching to the GNMax aggregator and training a larger number $M$ of teachers. + +# 5.3 STUDENT TRAINING WITH THE GNMAX AGGREGATION MECHANISMS + +As outlined in Section 3, we train a student on public data labeled by the aggregation mechanisms. We take advantage of PATE’s flexibility and apply the technique that performs best on each dataset: semi-supervised learning with Generative Adversarial Networks (Salimans et al., 2016) for MNIST and SVHN, Virtual Adversarial Training (Miyato et al., 2017) for Glyph, and fully-supervised random forests for UCI Adult. In addition to evaluating the total privacy cost associated with training the student model, we compare its utility to a non-private baseline obtained by training on the sensitive data (used to train teachers in PATE): we use the baselines of $9 9 . 2 \%$ , $9 2 . 8 \%$ , and $8 \bar { 5 } . 0 \%$ reported by Papernot et al. (2017) respectively for MNIST, SVHN, and UCI Adult, and we measure a baseline of $8 2 . 2 \%$ for Glyph. We compute $( \varepsilon , \delta )$ -privacy bounds and denote the privacy cost as the $\varepsilon$ value at a value of $\delta$ set accordingly to number of training samples. + +Confident-GNMax Aggregator. Given a pool of 500 to 12,000 samples to learn from (depending on the dataset), the student submits queries to the teacher ensemble running the Confident-GNMax aggregator from Section 4.2. A grid search over a range of plausible values for parameters $T$ , $\sigma _ { 1 }$ and $\sigma _ { 2 }$ yielded the values reported in Table 1, illustrating the tradeoff between utility and privacy achieved. We additionally measure the number of queries selected by the teachers to be answered and compare student utility to a non-private baseline. + +The Confident-GNMax aggregator outperforms LNMax for the four datasets considered in the original PATE proposal: it reduces the privacy cost $\varepsilon$ , increases student accuracy, or both simultaneously. On the uncurated Glyph data, despite the imbalance of classes and mislabeled data (as evidenced by the $8 2 . 2 \%$ baseline), the Confident Aggregator achieves $7 3 . 5 \%$ accuracy with a privacy cost of just $\varepsilon = 1 . 0 2$ . Roughly 1,300 out of 12,000 queries made are not answered, indicating that several expensive queries were successfully avoided. This selectivity is analyzed in more details in Section 5.4. + +Interactive-GNMax Aggregator. On Glyph, we evaluate the utility and privacy of an interactive training routine that proceeds in two rounds. Round one runs student training with a Confident + +![](images/d270152f7c17f085f2cee4456268e4219f503a77e8dcdf8de8b64c5993292fbd.jpg) +Figure 3: Some example inputs from the Glyph dataset along with the class they are labeled as. Note the ambiguity (between the comma and apostrophe) and the mislabeled input. + +![](images/f4997f073b1076ba805de8a9ddcd3d2383564828e765f3fc31b4702724545c1a.jpg) +Figure 4: Tradeoff between utility and privacy for the LNMax and GNMax aggregators on Glyph: effect of the noise distribution (left) and size of the teacher ensemble (right). The LNMax aggregator uses a Laplace distribution and GNMax a Gaussian. Smaller values of the privacy cost $\varepsilon$ (often obtained by increasing the noise scale $\sigma$ —see Section 4) and higher accuracy are better. + +Table 1: Utility and privacy of the students. The Confident- and Interactive-GNMax aggregators introduced in Section 4 offer better tradeoffs between privacy (characterized by the value of the bound $\varepsilon$ ) and utility (the accuracy of the student compared to a non-private baseline) than the LNMax aggregator used by the original PATE proposal on all datasets we evaluated with. For MNIST, Adult, and SVHN, we use the labels of ensembles of 250 teachers published by Papernot et al. (2017) and set $\delta = 1 0 ^ { - 5 }$ to compute values of $\varepsilon$ (to the exception of SVHN where $\dot { \delta _ { \mathrm { } } } = 1 \dot { 0 } ^ { - 6 }$ ). All Glyph results use an ensemble of 5000 teachers and $\varepsilon$ is computed for $\delta = 1 0 ^ { - 8 }$ . + +
DatasetAggregatorQueriesansweredPrivacybound ε Accuracy Student Baseline
MNISTLNMax (Papernot et al., 2017)1002.0498.0%99.2%
LNMax (Papernot et al., 2017)1,0008.0398.1%
Confident-GNMax (T=200,σ1=150,σ2=40)2861.9798.5%
SVHNLNMax (Papernot et al., 2017)5005.0482.7%92.8%
LNMax (Papernot et al., 2017)1,0008.1990.7%
Confident-GNMax (T=300,σ1=200,σ2=40)3,0984.9691.6%
AdultLNMax (Papernot et al., 2017)5002.6683.0%85.0%
Confident-GNMax (T=300,σ1=200,σ2=40)5241.9083.7%
GlyphLNMax4,0004.372.4%82.2%
Confident-GNMax (T=1000,σ1=500,σ2=100)10,7622.0375.5%
Interactive-GNMax, two rounds4,3410.83773.2%
+ +![](images/f72de51ac7ee4d0828ee09d5df565ae82b67c263c68a756a789f784dcfd9507d.jpg) +Figure 5: Effects of the noisy threshold checking: Left: The number of queries answered by LNMax, Confident-GNMax moderate $\scriptstyle { T = 3 5 0 0 }$ , $\sigma _ { 1 } { = } 1 5 0 0$ ), and Confident-GNMax aggressive ( ${ T } \mathrm { { = } } 5 0 0 0$ , $\sigma _ { 1 } { = } 1 5 0 0$ ). The black dots and the right axis (in log scale) show the expected cost of answering a single query in each bin (via GNMax, $\sigma _ { 2 } { = } 1 0 0$ ). Right: Privacy cost of answering all (LNMax) vs only inexpensive queries (GNMax) for a given number of answered queries. The very dark area under the curve is the cost of selecting queries; the rest is the cost of answering them. + +Aggregator. A grid search targeting the best privacy for roughly 3,400 answered queries (out of 6,000)—sufficient to bootstrap a student—led us to setting ( $\scriptstyle { T = 3 5 0 0 }$ , $\sigma _ { 1 } { = } 1 5 0 0$ , $\sigma _ { 2 } { = } 1 0 0 $ ) and a privacy cost of $\varepsilon \approx 0 . 5 9$ . + +In round two, this student was then trained with 10,000 more queries made with the InteractiveGNMax Aggregator $\scriptstyle { T = 3 5 0 0 }$ , $\sigma _ { 1 } { = } 2 0 0 0$ , $\sigma _ { 2 } { = } 2 0 0$ ). We computed the resulting (total) privacy cost and utility at an exemplar data point through another grid search of plausible parameter values. The result appears in the last row of Table 1. With just over 10,422 answered queries in total at a privacy cost of $\varepsilon = 0 . 8 4$ , the trained student was able to achieve $7 3 . 2 \%$ accuracy. Note that this students required fewer answered queries compared to the Confident Aggregator. The best overall cost of student training occurred when the privacy costs for the first and second rounds of training were roughly the same. (The total $\varepsilon$ is less than $0 . 5 9 \times 2 = 1 . 1 8$ due to better composition—via Theorems 4 and 5.) + +Comparison with Baseline. Note that the Glyph student’s accuracy remains seven percentage points below the non-private model’s accuracy achieved by training on the 65M sensitive inputs. We hypothesize that this is due to the uncurated nature of the data considered. Indeed, the class imbalance naturally requires more queries to return labels from the less represented classes. For instance, a model trained on 200K queries is only $7 7 \%$ accurate on test data. In addition, the large fraction of mislabeled inputs are likely to have a large privacy cost: these inputs are sensitive because they are outliers of the distribution, which is reflected by the weak consensus among teachers on these inputs. + +# 5.4 NOISY THRESHOLD CHECKS AND PRIVACY COSTS + +Sections 4.1 and 4.2 motivated the need for a noisy threshold checking step before having the teachers answer queries: it prevents most of the privacy budget being consumed by few queries that are expensive and also likely to be incorrectly answered. In Figure 5, we compare the privacy cost $\varepsilon$ of answering all queries to only answering confident queries for a fixed number of queries. + +We run additional experiments to support the evaluation from Section 5.3. With the votes of 5,000 teachers on the Glyph dataset, we plot in Figure 5 the histogram of the plurality vote counts $( n _ { i ^ { * } }$ in the notation of Section 4.1) across 25,000 student queries. We compare these values to the vote counts of queries that passed the noisy threshold check for two sets of parameters $T$ and $\sigma _ { 1 }$ in Algorithm 1. Smaller values imply weaker teacher agreements and consequently more expensive queries. + +When $\scriptstyle { T = 3 5 0 0 }$ , $\sigma _ { 1 } { = } 1 5 0 0$ ) we capture a significant fraction of queries where teachers have a strong consensus (roughly $> 4 0 0 0$ votes) while managing to filter out many queries with poor consensus. This moderate check ensures that although many queries with plurality votes between 2,500 and 3,500 are answered (i.e., only $5 0 \mathrm { - } 7 0 \%$ of teachers agree on a label) the expensive ones are most likely discarded. For ( $\scriptstyle { T = 5 0 0 0 }$ , $\sigma _ { 1 } { = } 1 5 0 0$ ), queries with poor consensus are completely culled out. This selectivity comes at the expense of a noticeable drop for queries that might have had a strong consensus and little-to-no privacy cost. Thus, this aggressive check answer fewer queries with very strong privacy guarantees. We reiterate that this threshold checking step itself is done in a private manner. Empirically, in our Interactive Aggregator experiments, we expend about a third to a half of our privacy budget on this step, which still yields a very small cost per query across 6,000 queries. + +# 6 CONCLUSIONS + +The key insight motivating the addition of a noisy thresholding step to the two aggregation mechanisms proposed in our work is that there is a form of synergy between the privacy and accuracy of labels output by the aggregation: labels that come at a small privacy cost also happen to be more likely to be correct. As a consequence, we are able to provide more quality supervision to the student by choosing not to output labels when the consensus among teachers is too low to provide an aggregated prediction at a small cost in privacy. This observation was further confirmed in some of our experiments where we observed that if we trained the student on either private or non-private labels, the former almost always gave better performance than the latter—for a fixed number of labels. + +Complementary with these aggregation mechanisms is the use of a Gaussian (rather than Laplace) distribution to perturb teacher votes. In our experiments with Glyph data, these changes proved essential to preserve the accuracy of the aggregated labels—because of the large number of classes. The analysis presented in Section 4 details the delicate but necessary adaptation of analogous results for the Laplace NoisyMax. + +As was the case for the original PATE proposal, semi-supervised learning was instrumental to ensure the student achieves strong utility given a limited set of labels from the aggregation mechanism. However, we found that virtual adversarial training outperforms the approach from Salimans et al. (2016) in our experiments with Glyph data. These results establish lower bounds on the performance that a student can achieve when supervised with our aggregation mechanisms; future work may continue to investigate virtual adversarial training, semi-supervised generative adversarial networks and other techniques for learning the student in these particular settings with restricted supervision. + +# ACKNOWLEDGMENTS + +We are grateful to Martín Abadi, Vincent Vanhoucke, and Daniel Levy for their useful inputs and discussions towards this paper. + +# REFERENCES + +Martín Abadi, Andy Chu, Ian Goodfellow, H Brendan McMahan, Ilya Mironov, Kunal Talwar, and Li Zhang. Deep learning with differential privacy. In Proceedings of the 2016 ACM SIGSAC Conference on Computer and Communications Security, pp. 308–318. ACM, 2016. + +Martín Abadi, Úlfar Erlingsson, Ian Goodfellow, H. Brendan McMahan, Nicolas Papernot, Ilya Mironov, Kunal Talwar, and Li Zhang. On the protection of private information in machine learning systems: Two recent approaches. In 2017 IEEE 30th Computer Security Foundations Symposium (CSF), pp. 1–6, 2017. + +Charu C Aggarwal. On $k$ -anonymity and the curse of dimensionality. In Proceedings of the 31st International Conference on Very large Data Bases, pp. 901–909. VLDB Endowment, 2005. + +Mitali Bafna and Jonathan Ullman. The price of selection in differential privacy. In Proceedings of the 2017 Conference on Learning Theory (COLT), volume 65 of Proceedings of Machine Learning Research, pp. 151–168, July 2017. + +Raef Bassily, Adam Smith, and Abhradeep Thakurta. Private empirical risk minimization: Efficient algorithms and tight error bounds. In Proceedings of the 2014 IEEE 55th Annual Symposium on Foundations of Computer Science (FOCS), pp. 464–473, 2014. ISBN 978-1-4799-6517-5. + +Raghav Bhaskar, Srivatsan Laxman, Adam Smith, and Abhradeep Thakurta. Discovering frequent patterns in sensitive data. In Proceedings of the 16th ACM SIGKDD international conference on Knowledge discovery and data mining, pp. 503–512. ACM, 2010. + +Battista Biggio, Igino Corona, Davide Maiorca, Blaine Nelson, Nedim Šrndic, Pavel Laskov, Gior- ´ gio Giacinto, and Fabio Roli. Evasion attacks against machine learning at test time. In Joint European Conference on Machine Learning and Knowledge Discovery in Databases, pp. 387– 402, 2013. + +Vincent Bindschaedler, Reza Shokri, and Carl A Gunter. Plausible deniability for privacy-preserving data synthesis. Proceedings of the VLDB Endowment, 10(5), 2017. + +Mark Bun and Thomas Steinke. Concentrated differential privacy: Simplifications, extensions, and lower bounds. In Theory of Cryptography Conference (TCC), pp. 635–658, 2016. + +Mark Bun, Thomas Steinke, and Jonathan Ullman. Make up your mind: The price of online queries in differential privacy. In Proceedings of the Twenty-Eighth Annual ACM-SIAM Symposium on Discrete Algorithms, pp. 1306–1325. SIAM, 2017. + +Kamalika Chaudhuri, Claire Monteleoni, and Anand D Sarwate. Differentially private empirical risk minimization. Journal of Machine Learning Research, 12(Mar):1069–1109, 2011. + +David Cohn, Les Atlas, and Richard Ladner. Improving generalization with active learning. Machine learning, 15(2):201–221, 1994. + +Cynthia Dwork and Aaron Roth. The algorithmic foundations of differential privacy. Foundations and Trends in Theoretical Computer Science, 9(3–4):211–407, 2014. + +Cynthia Dwork and Guy N Rothblum. Concentrated differential privacy. arXiv preprint arXiv:1603.01887, 2016. + +Cynthia Dwork, Frank McSherry, Kobbi Nissim, and Adam Smith. Calibrating noise to sensitivity in private data analysis. In Proceedings of the Third Conference on Theory of Cryptography (TCC), volume 3876, pp. 265–284, 2006. + +Cynthia Dwork, Guy N Rothblum, and Salil Vadhan. Boosting and differential privacy. In Proceedings of the 51st Annual IEEE Symposium on Foundations of Computer Science (FOCS), pp. 51–60, 2010. + +Jihun Hamm, Yingjun Cao, and Mikhail Belkin. Learning privately from multiparty data. In International Conference on Machine Learning (ICML), pp. 555–563, 2016. + +Steve Hanneke. Theory of disagreement-based active learning. Foundations and Trends in Machine Learning, 7(2-3):131–309, 2014. + +Moritz Hardt and Guy N Rothblum. A multiplicative weights mechanism for privacy-preserving data analysis. In 51st Annual IEEE Symposium on Foundations of Computer Science (FOCS), pp. 61–70, 2010. + +Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. In 2016 IEEE Conference on Computer Vision and Pattern Recognition (CVPR), pp. 770–778, 2016. + +Ron Kohavi. Scaling up the accuracy of Naive-Bayes classifiers: A decision-tree hybrid. In KDD, volume 96, pp. 202–207, 1996. + +Yun Liu, Krishna Gadepalli, Mohammad Norouzi, George E Dahl, Timo Kohlberger, Aleksey Boyko, Subhashini Venugopalan, Aleksei Timofeev, Philip Q Nelson, Greg S Corrado, et al. Detecting cancer metastases on gigapixel pathology images. arXiv preprint arXiv:1703.02442, 2017. + +H Brendan McMahan, Daniel Ramage, Kunal Talwar, and Li Zhang. Learning differentially private language models without losing accuracy. arXiv preprint arXiv:1710.06963, 2017. + +Frank McSherry and Kunal Talwar. Mechanism design via differential privacy. In Proceedings of the 48th Annual IEEE Symposium on Foundations of Computer Science (FOCS), pp. 94–103, 2007. + +Ilya Mironov. Rényi differential privacy. In 2017 IEEE 30th Computer Security Foundations Symposium (CSF), pp. 263–275, 2017. + +Takeru Miyato, Shin-ichi Maeda, Masanori Koyama, and Shin Ishii. Virtual adversarial training: a regularization method for supervised and semi-supervised learning. arXiv preprint arXiv:1704.03976, 2017. + +Arvind Narayanan and Vitaly Shmatikov. Robust de-anonymization of large sparse datasets. In Proceedings of the 2008 IEEE Symposium on Security and Privacy, pp. 111–125. IEEE, 2008. + +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 Workshop on Deep Learning and Unsupervised Feature Learning, pp. 5, 2011. + +Kobbi Nissim, Sofya Raskhodnikova, and Adam Smith. Smooth sensitivity and sampling in private data analysis. In Proceedings of the Thirty-ninth Annual ACM Symposium on Theory of Computing (STOC), pp. 75–84, 2007. + +Nicolas Papernot, Martín Abadi, Úlfar Erlingsson, Ian Goodfellow, and Kunal Talwar. Semisupervised knowledge transfer for deep learning from private training data. In Proceedings of the 5th International Conference on Learning Representations (ICLR), 2017. + +Manas Pathak, Shantanu Rane, and Bhiksha Raj. Multiparty differential privacy via aggregation of locally trained classifiers. In Advances in Neural Information Processing Systems, pp. 1876–1884, 2010. + +Aaron Roth and Tim Roughgarden. Interactive privacy via the median mechanism. In Proceedings of the Forty-second ACM Symposium on Theory of Computing (STOC), pp. 765–774, 2010. + +Tim Salimans, Ian Goodfellow, Wojciech Zaremba, Vicki Cheung, Alec Radford, and Xi Chen. Improved techniques for training GANs. In Advances in Neural Information Processing Systems, pp. 2234–2242, 2016. + +Reza Shokri, Marco Stronati, Congzheng Song, and Vitaly Shmatikov. Membership inference attacks against machine learning models. In Proceedings of the 2017 IEEE Symposium on Security and Privacy, pp. 3–18. IEEE, 2017. + +Shuang Song, Kamalika Chaudhuri, and Anand D Sarwate. Stochastic gradient descent with differentially private updates. In 2013 IEEE Global Conference on Signal and Information Processing, pp. 245–248, 2013. + +Thomas Steinke and Jonathan Ullman. Tight lower bounds for differentially private selection. In 58th IEEE Annual Symposium on Foundations of Computer Science (FOCS), pp. 552–563, 2017. + +Christian Szegedy, Wojciech Zaremba, Ilya Sutskever, Joan Bruna, Dumitru Erhan, Ian Goodfellow, and Rob Fergus. Intriguing properties of neural networks. In Proceedings of the 2nd International Conference on Learning Representations (ICLR), 2014. + +Florian Tramèr, Fan Zhang, Ari Juels, Michael K Reiter, and Thomas Ristenpart. Stealing machine learning models via prediction APIs. In USENIX Security Symposium, pp. 601–618, 2016. + +Tim van Erven and Peter Harremoës. Rényi divergence and Kullback-Leibler divergence. IEEE Transactions on Information Theory, 60(7):3797–3820, July 2014. + +Chiyuan Zhang, Samy Bengio, Moritz Hardt, Benjamin Recht, and Oriol Vinyals. Understanding deep learning requires rethinking generalization. In Proceedings of the 5th International Conference on Learning Representations (ICLR), 2017. + +# A APPENDIX: PRIVACY ANALYSIS + +In this appendix, we provide the proofs of Theorem 6 and Proposition 7. Moreover, we present Proposition 10, which provides optimal values of $\mu _ { 1 }$ and $\mu _ { 2 }$ to apply towards Theorem 6 for the GNMax mechanism. We start off with a statement about the Rényi differential privacy guarantee of the GNMax. + +Proposition 8. The GNMax aggregator $\mathcal { M } _ { \sigma }$ guarantees $\left( \lambda , \lambda / \sigma ^ { 2 } \right)$ -RDP for all $\lambda \geq 1$ + +Proof. The result follows from observing that $\mathcal { M } _ { \sigma }$ can be decomposed into applying the argmax operator to a noisy histogram resulted from adding Gaussian noise to each dimension of the original histogram. The Gaussian mechanism satisfies $( { \bar { \lambda } } , \lambda / 2 \sigma ^ { 2 } )$ -RDP (Mironov, 2017), and since each teacher may change two counts (incrementing one and decrementing the other), the overall RDP guarantee is as claimed. ■ + +Proposition 7. For a GNMax aggregator $\mathcal { M } _ { \sigma }$ , the teachers’ votes histogram $\bar { n } = ( n _ { 1 } , \ldots , n _ { m } ) $ , and for any $i ^ { * } \in [ m ]$ , we have + +where + +$$ +\begin{array} { c l c r } { { \displaystyle { \bf P r } \left[ \mathcal { M } _ { \sigma } ( D ) \neq i ^ { * } \right] \le q ( \bar { n } ) , } } \\ { { \displaystyle } } \\ { { q ( \bar { n } ) \triangleq \frac { 1 } { 2 } \sum _ { i \neq i ^ { * } } \mathrm { e r f c } \left( \frac { n _ { i ^ { * } } - n _ { i } } { 2 \sigma } \right) . } } \end{array} +$$ + +Proof. Recall that $\mathcal { M } _ { \sigma } ( D ) = \operatorname { a r g m a x } ( n _ { i } + Z _ { i } )$ , where $Z _ { i }$ are distributed as ${ \mathcal { N } } ( 0 , \sigma ^ { 2 } )$ . Then for any $i ^ { * } \in [ m ]$ , we have + +$$ +\begin{array} { r } { \mathbf { P r } [ \mathcal { M } _ { \sigma } ( D ) \neq i ^ { * } ] = \mathbf { P r } \left[ \exists i , n _ { i } + Z _ { i } > n _ { i ^ { * } } + Z _ { i ^ { * } } \right] \leq \displaystyle \sum _ { i \neq i ^ { * } } \mathbf { P r } \left[ n _ { i } + Z _ { i } > n _ { i ^ { * } } + Z _ { i ^ { * } } \right] } \\ { = \displaystyle \sum _ { i \neq i ^ { * } } \mathbf { P r } \left[ Z _ { i } - Z _ { i ^ { * } } > n _ { i ^ { * } } - n _ { i } \right] } \\ { = \displaystyle \sum _ { i \neq i ^ { * } } \frac { 1 } { 2 } \left( 1 - \mathrm { e r f } \left( \frac { n _ { i ^ { * } } - n _ { i } } { 2 \sigma } \right) \right) . } \end{array} +$$ + +where the last equality follows from the fact that $Z _ { i } - Z _ { j }$ is a Gaussian random variable with mean zero and variance $2 \sigma ^ { 2 }$ . + +We now present a precise statement of Theorem 6. + +Theorem 6. Let $\mathcal { M }$ be a randomized algorithm with $( \mu _ { 1 } , \varepsilon _ { 1 } )$ -RDP and $\left( \mu _ { 2 } , \varepsilon _ { 2 } \right)$ -RDP guarantees and suppose that there exists a likely outcome $i ^ { * }$ given a dataset $D$ and a bound $\tilde { q } \leq 1$ such that $\tilde { q } \geq \mathbf { P r } \left[ \mathcal { M } ( D ) \neq i ^ { * } \right]$ . Additionally suppose that $\lambda \le \mu _ { 1 }$ and $\begin{array} { r } { \tilde { q } \le e ^ { ( \mu _ { 2 } - 1 ) \varepsilon _ { 2 } } / \biggl ( \frac { \mu _ { 1 } } { \mu _ { 1 } - 1 } \cdot \frac { \mu _ { 2 } } { \mu _ { 2 } - 1 } \biggr ) ^ { \mu _ { 2 } } } \end{array}$ Then, for any neighboring dataset $D ^ { \prime }$ of $D$ , we have: + +$$ +D _ { \lambda } ( \mathcal { M } ( D ) \| \mathcal { M } ( D ^ { \prime } ) ) \le \frac { 1 } { \lambda - 1 } \log \left( ( 1 - \tilde { q } ) \cdot A ( \tilde { q } , \mu _ { 2 } , \varepsilon _ { 2 } ) ^ { \lambda - 1 } + \tilde { q } \cdot B ( \tilde { q } , \mu _ { 1 } , \varepsilon _ { 1 } ) ^ { \lambda - 1 } \right) +$$ + +$$ +\begin{array} { r } { \pmb { A } ( \tilde { q } , \mu _ { 2 } , \varepsilon _ { 2 } ) \triangleq ( 1 - \tilde { q } ) / \bigg ( 1 - \big ( \tilde { q } e ^ { \varepsilon _ { 2 } } \big ) ^ { \frac { \mu _ { 2 } - 1 } { \mu _ { 2 } } } \bigg ) a n d \pmb { B } ( \tilde { q } , \mu _ { 1 } , \varepsilon _ { 1 } ) \triangleq e ^ { \varepsilon _ { 1 } } / \tilde { q } ^ { \frac { 1 } { \mu _ { 1 } - 1 } } . } \end{array} +$$ + +Proof. Before we proceed to the proof, we introduce some simplifying notation. For a randomized mechanism $\mathcal { M }$ and neighboring datasets $D$ and $D ^ { \prime }$ , we define + +$$ +\begin{array} { l } { \displaystyle \beta _ { \mathcal { M } } ( \lambda ; D , D ^ { \prime } ) \triangleq D _ { \lambda } ( \mathcal { M } ( D ) \| \mathcal { M } ( D ^ { \prime } ) ) } \\ { \displaystyle = \frac { 1 } { \lambda - 1 } \log \mathbb { E } _ { x \sim \mathcal { M } ( D ) } \left[ \left( \frac { \mathbf { P r } \left[ \mathcal { M } ( D ) = x \right] } { \mathbf { P r } \left[ \mathcal { M } ( D ^ { \prime } ) = x \right] } \right) ^ { \lambda - 1 } \right] . } \end{array} +$$ + +As the proof involves working with the RDP bounds in the exponent, we set $\zeta _ { 1 } \triangleq e ^ { \varepsilon _ { 1 } ( \mu _ { 1 } - 1 ) }$ and ζ2 , eε2(µ2−1). + +Finally, we define the following shortcuts: + +$$ +\begin{array} { l } { q _ { i } \triangleq \mathbf { P r } \left[ \mathcal { M } ( D ) = i \right] \mathrm { ~ a n d ~ } q \triangleq \displaystyle \sum _ { i \neq i ^ { * } } q _ { i } = \mathbf { P r } \left[ \mathcal { M } ( D ) \neq i ^ { * } \right] , } \\ { p _ { i } \triangleq \mathbf { P r } \left[ \mathcal { M } ( D ^ { \prime } ) = i \right] \mathrm { ~ a n d ~ } p \triangleq \displaystyle \sum _ { i \neq i ^ { * } } p _ { i } = \mathbf { P r } \left[ \mathcal { M } ( D ^ { \prime } ) \neq i ^ { * } \right] , } \end{array} +$$ + +and note that $q \leq \tilde { q }$ + +From the definition of Rényi differential privacy, $( \mu _ { 1 } , \varepsilon _ { 1 } )$ -RDP implies: + +$$ +\begin{array} { r l } & { \exp \left( \beta _ { \mathcal M } ( \mu _ { 1 } ; D , D ^ { \prime } ) \right) = \displaystyle \left( \frac { ( 1 - q ) ^ { \mu _ { 1 } } } { ( 1 - p ) ^ { \mu _ { 1 } - 1 } } + \sum _ { i \neq i * } \frac { q _ { i } ^ { \mu _ { 1 } } } { p _ { i } ^ { \mu _ { 1 } - 1 } } \right) ^ { 1 / ( \mu _ { 1 } - 1 ) } \leq \exp ( \varepsilon _ { 1 } ) } \\ & { \qquad \implies \displaystyle \sum _ { i > 1 } \frac { q _ { i } ^ { \mu _ { 1 } } } { p _ { i } ^ { \mu _ { 1 } - 1 } } = \sum _ { i > 1 } q _ { i } \left( \frac { q _ { i } } { p _ { i } } \right) ^ { \mu _ { 1 } - 1 } \leq \zeta _ { 1 } . } \end{array} +$$ + +Since $\mu _ { 1 } \geq \lambda , f ( x ) \triangleq x ^ { \frac { \mu _ { 1 } - 1 } { \lambda - 1 } }$ is convex. Applying Jensen’s Inequality we have the following: + +$$ +\begin{array} { r l } & { \left( \frac { \sum _ { i \neq j : i } \cdot q _ { i } \left( \frac { q _ { i } } { p _ { i } } \right) ^ { \lambda - 1 } } { q } \right) ^ { \frac { n _ { 1 } - 1 } { \lambda - 1 } } \leq \frac { \sum _ { i \neq i } \cdot q _ { i } \left( \frac { q _ { i } } { p _ { i } } \right) ^ { \mu _ { 1 } - 1 } } { q } } \\ & { \qquad \implies \sum _ { i \neq i ^ { * } } q _ { i } \left( \frac { q _ { i } } { p _ { i } } \right) ^ { \lambda - 1 } \leq q \left( \frac { \sum _ { i \neq i } \cdot q _ { i } \left( \frac { q _ { i } } { p _ { i } } \right) ^ { \mu _ { 1 } - 1 } } { q } \right) ^ { \frac { \lambda - 1 } { \mu _ { 1 } - 1 } } } \\ & { \qquad \overset { ( 3 ) } { \Longrightarrow } \sum _ { i \neq i ^ { * } } q _ { i } \left( \frac { q _ { i } } { p _ { i } } \right) ^ { \lambda - 1 } \leq \zeta _ { 1 } ^ { \frac { \lambda - 1 } { \mu _ { 1 } - 1 } } \cdot q ^ { 1 - \frac { \lambda - 1 } { \mu _ { 1 } - 1 } } . } \end{array} +$$ + +Next, by the bound at order $\mu _ { 2 }$ , we have: + +$$ +\begin{array} { c } { { \displaystyle \exp \left( \beta _ { { \mathcal M } } ( \mu _ { 2 } ; D ^ { \prime } , D ) \right) = \left( \frac { ( 1 - p ) ^ { \mu _ { 2 } } } { ( 1 - q ) ^ { \mu _ { 2 } - 1 } } + \sum _ { i \neq i ^ { * } } \frac { p _ { i } ^ { \mu _ { 2 } } } { q _ { i } ^ { \mu _ { 2 } - 1 } } \right) ^ { 1 / ( \mu _ { 2 } - 1 ) } \leq \exp ( \varepsilon _ { 2 } ) } } \\ { { \displaystyle \implies \frac { ( 1 - p ) ^ { \mu _ { 2 } } } { ( 1 - q ) ^ { \mu _ { 2 } - 1 } } + \sum _ { i \neq i ^ { * } } \frac { p _ { i } ^ { \mu _ { 2 } } } { q _ { i } ^ { \mu _ { 2 } - 1 } } \leq \zeta _ { 2 } . } } \end{array} +$$ + +By the data processing inequality of Rényi divergence, we have + +$$ +\frac { ( 1 - p ) ^ { \mu _ { 2 } } } { ( 1 - q ) ^ { \mu _ { 2 } - 1 } } + \frac { p ^ { \mu _ { 2 } } } { q ^ { \mu _ { 2 } - 1 } } \leq \zeta _ { 2 } , +$$ + +which implies pµ2qµ2−1 ≤ ζ2 and thus + +$$ +p \leq \left( q ^ { \mu _ { 2 } - 1 } \zeta _ { 2 } \right) ^ { \frac { 1 } { \mu _ { 2 } } } . +$$ + +Combining (4) and (5), we can derive a bound at $\lambda$ . + +$$ +\begin{array} { r l } & { \exp \left( \beta _ { \mathcal M } ( \lambda , D , D ^ { \prime } ) \right) = \left( \frac { ( 1 - q ) ^ { \lambda } } { ( 1 - p ) ^ { \lambda - 1 } } + \displaystyle \sum _ { i \neq i ^ { * } } \frac { q _ { i } ^ { \lambda } } { p _ { i } ^ { \lambda - 1 } } \right) ^ { 1 / ( \lambda - 1 ) } } \\ & { \quad \le \left( \frac { ( 1 - q ) ^ { \lambda } } { \left( 1 - ( q ^ { \mu _ { 2 } - 1 } \zeta _ { 2 } ) ^ { \frac { 1 } { \mu _ { 2 } } } \right) ^ { \lambda - 1 } } + \zeta _ { 1 } ^ { \frac { \lambda - 1 } { \mu _ { 1 } - 1 } } \cdot q ^ { 1 - \frac { \lambda - 1 } { \mu _ { 1 } - 1 } } \right) ^ { 1 / ( \lambda - 1 ) } . } \end{array} +$$ + +Although Equation (6) is very close to the corresponding statement in the theorem’s claim, one subtlety remains. The bound (6) applies to the exact probability $q = \mathbf { P r } \left[ \mathcal { M } ( D ) \neq i ^ { * } \right]$ . In the theorem statement, and in practice, we can only derive an upper bound $\tilde { q }$ on $\mathbf { P r } \left[ \mathcal { M } ( D ) \neq i ^ { * } \right]$ . The last step of the proof requires showing that the expression in Equation (6) is monotone in the range of values of $q$ that we care about. + +Lemma 9 (Monotonicity of the bound). Let the functions $f _ { 1 } ( \cdot )$ and $f _ { 2 } ( \cdot )$ be + +$$ +\begin{array} { l } { { f _ { 1 } ( x ) \triangleq \displaystyle \frac { ( 1 - x ) ^ { \lambda } } { \Big ( 1 - ( x ^ { \mu _ { 2 } - 1 } \zeta _ { 2 } ) ^ { \frac { 1 } { \mu _ { 2 } } } \Big ) ^ { \lambda - 1 } } \qquad \ a n d \qquad f _ { 2 } ( x ) \triangleq \zeta _ { 1 } ^ { \frac { \lambda - 1 } { \mu _ { 1 } - 1 } } \cdot x ^ { 1 - \frac { \lambda - 1 } { \mu _ { 1 } - 1 } } , } } \\ { { \mathrm { } } } \\ { { \mathrm { } } } \\ { { \mathrm { } } { \mathrm { } } { } \\ { \mathrm { } { } \mathrm { } + f _ { 2 } ( x ) \ i s \ i n c r e a s i n g \ i n \Big [ 0 , \operatorname* { m i n } \Big ( 1 , \zeta _ { 2 } \Big / \Big ( \frac { \mu _ { 1 } } { \mu _ { 1 } - 1 } \cdot \frac { \mu _ { 2 } } { \mu _ { 2 } - 1 } \Big ) ^ { \mu _ { 2 } } \Big ) \Big ] . } } \end{array} +$$ + +Proof. Taking the derivative of $f _ { 1 } ( x )$ , we have: + +$$ +f _ { 1 } ^ { \prime } ( x ) = \frac { - \lambda ( 1 - x ) ^ { \lambda - 1 } ( 1 - ( x ^ { \mu _ { 2 } - 1 } \zeta _ { 2 } ) ^ { \frac { 1 } { \mu _ { 2 } } } ) ^ { \lambda - 1 } } { ( 1 - ( x ^ { \mu _ { 2 } - 1 } \zeta _ { 2 } ) ^ { \frac { 1 } { \mu _ { 2 } } } ) ^ { 2 \lambda - 2 } } \\ & { \qquad + \frac { ( 1 - x ) ^ { \lambda } ( \lambda - 1 ) ( 1 - ( x ^ { \mu _ { 2 } - 1 } \zeta _ { 2 } ) ^ { \frac { 1 } { \mu _ { 2 } } } ) ^ { \lambda - 2 } \zeta _ { 2 } ^ { \frac { 1 } { \mu _ { 2 } } } \cdot \frac { \mu _ { 2 } - 1 } { \mu _ { 2 } } \cdot x ^ { - \frac { 1 } { \mu _ { 2 } } } } { ( 1 - ( x ^ { \mu _ { 2 } - 1 } \zeta _ { 2 } ) ^ { \frac { 1 } { \mu _ { 2 } } } ) ^ { 2 \lambda - 2 } } } \\ & = \frac { ( 1 - x ) ^ { \lambda - 1 } } { ( 1 - ( x ^ { \mu _ { 2 } - 1 } \zeta _ { 2 } ) ^ { \frac { 1 } { \mu _ { 2 } } } ) ^ { \lambda - 1 } } \left( - \lambda + ( \lambda - 1 ) \left( 1 - \frac { 1 } { \mu _ { 2 } } \right) \frac { 1 - x } { 1 - ( x ^ { \mu _ { 2 } - 1 } \zeta _ { 2 } ) ^ { \frac { 1 } { \mu _ { 2 } } } } \left( \frac { \zeta _ { 2 } } { x } \right) ^ { \frac { 1 } { \mu _ { 2 } } } \right) . +$$ + +We intend to show that: + +$$ +f _ { 1 } ^ { \prime } ( x ) \geq - \lambda + ( \lambda - 1 ) \left( 1 - \frac { 1 } { \mu _ { 2 } } \right) \left( \frac { \zeta _ { 2 } } { x } \right) ^ { \frac { 1 } { \mu _ { 2 } } } . +$$ + +For $\begin{array} { r } { x \in \left[ 0 , \zeta _ { 2 } / \left( \frac { \mu _ { 1 } } { \mu _ { 1 } - 1 } \cdot \frac { \mu _ { 2 } } { \mu _ { 2 } - 1 } \right) ^ { \mu _ { 2 } } \right] } \end{array}$ and $y \in [ 1 , \infty )$ , define $g ( x , y )$ as: + +$$ +g ( x , y ) \triangleq - \lambda \cdot y ^ { \lambda - 1 } + ( \lambda - 1 ) \left( 1 - { \frac { 1 } { \mu _ { 2 } } } \right) \left( { \frac { \zeta _ { 2 } } { x } } \right) ^ { \frac { 1 } { \mu _ { 2 } } } y ^ { \lambda } . +$$ + +We claim that $g ( x , y )$ is increasing in $y$ and therefore $g ( x , y ) \geq g ( x , 1 )$ , and prove it by showing the partial derivative of $g ( x , y )$ with respect to $y$ is non-negative. Take a derivative with respect to $y$ as: + +$$ +\begin{array} { l } { { g _ { y } ^ { \prime } ( x , y ) = - \lambda ( \lambda - 1 ) y ^ { \lambda - 2 } + \lambda ( \lambda - 1 ) \left( 1 - { \frac { 1 } { \mu _ { 2 } } } \right) \left( { \frac { \zeta _ { 2 } } { x } } \right) ^ { \frac { 1 } { \mu _ { 2 } } } y ^ { \lambda - 1 } } } \\ { { \ = \lambda ( \lambda - 1 ) y ^ { \lambda - 2 } \left( - 1 + \left( 1 - { \frac { 1 } { \mu _ { 2 } } } \right) \left( { \frac { \zeta _ { 2 } } { x } } \right) ^ { \frac { 1 } { \mu _ { 2 } } } y \right) . } } \end{array} +$$ + +To see why $g _ { y } ^ { \prime } ( x , y )$ is non-negative in the respective ranges of $x$ and $y$ , note that: + +$$ +\begin{array} { r l } { x \leq \zeta _ { 2 } \Big / \Big ( \frac { \mu _ { 1 } } { \mu _ { 1 } - 1 } \cdot \frac { \mu _ { 2 } } { \mu _ { 2 } - 1 } \Big ) ^ { \mu _ { 2 } } \implies x \leq \zeta _ { 2 } \Big / \Big ( \frac { \mu _ { 2 } } { \mu _ { 2 } - 1 } \Big ) ^ { \mu _ { 2 } } } \\ & { \implies 1 \leq \frac { \zeta _ { 2 } } { x } \cdot \Big ( \frac { \mu _ { 2 } - 1 } { \mu _ { 2 } } \Big ) ^ { \mu _ { 2 } } } \\ & { \implies 1 \leq \frac { \mu _ { 2 } - 1 } { \mu _ { 2 } } \Big ( \frac { \zeta _ { 2 } } { x } \Big ) ^ { \frac { 1 } { \mu _ { 2 } } } } \\ & { \implies 1 \leq \frac { \mu _ { 2 } - 1 } { \mu _ { 2 } } \Big ( \frac { \zeta _ { 2 } } { x } \Big ) ^ { \frac { 1 } { \mu _ { 2 } } } g } \\ & { \implies 0 \leq - 1 + \frac { \mu _ { 2 } - 1 } { \mu _ { 2 } } \Big ( \frac { \zeta _ { 2 } } { x } \Big ) ^ { \frac { 1 } { \mu _ { 2 } } } g } \\ & { \implies 0 \leq - 1 + \frac { \mu _ { 2 } - 1 } { \mu _ { 2 } } \Big ( \frac { \zeta _ { 2 } } { x } \Big ) ^ { \frac { 1 } { \mu _ { 2 } } } g } \\ & { \implies 0 \leq g _ { g } ^ { \prime } ( x , y ) . } \end{array} +$$ + +Consider $\frac { 1 - x } { 1 - ( x ^ { \mu _ { 2 } - 1 } \zeta _ { 2 } ) ^ { 1 / \mu _ { 2 } } }$ . Since $\zeta _ { 2 } \geq 1$ and $x \leq 1$ , we have $x \leq \zeta _ { 2 }$ and hence + +$$ +{ \frac { 1 - x } { 1 - ( x ^ { \mu _ { 2 } - 1 } \zeta _ { 2 } ) ^ { \frac { 1 } { \mu _ { 2 } } } } } \geq { \frac { 1 - x } { 1 - ( x ^ { \mu _ { 2 } - 1 } x ) ^ { \frac { 1 } { \mu _ { 2 } } } } } = 1 . +$$ + +Therefore we can set $\begin{array} { r } { y = \frac { 1 - x } { 1 - ( x ^ { \mu _ { 2 } - 1 } \zeta _ { 2 } ) ^ { 1 / \mu _ { 2 } } } } \end{array}$ and apply the fact that $g ( x , y ) \geq g ( x , 1 )$ for all $y \geq 1$ to get + +$$ +f _ { 1 } ^ { \prime } ( x ) \geq - \lambda + ( \lambda - 1 ) \left( 1 - \frac { 1 } { \mu _ { 2 } } \right) \left( \frac { \zeta _ { 2 } } { x } \right) ^ { \frac { 1 } { \mu _ { 2 } } } , +$$ + +as required by (7). + +Taking the derivative of $f _ { 2 } ( x )$ , we have: + +$$ +f _ { 2 } ^ { \prime } ( x ) = \zeta _ { 1 } ^ { \frac { \lambda - 1 } { \mu _ { 1 } - 1 } } \cdot \left( 1 - { \frac { \lambda - 1 } { \mu _ { 1 } - 1 } } \right) x ^ { - { \frac { \lambda - 1 } { \mu _ { 1 } - 1 } } } = \left( { \frac { \zeta _ { 1 } } { x } } \right) ^ { { \frac { \lambda - 1 } { \mu _ { 1 } - 1 } } } \left( 1 - { \frac { \lambda - 1 } { \mu _ { 1 } - 1 } } \right) \geq 1 - { \frac { \lambda - 1 } { \mu _ { 1 } - 1 } } . +$$ + +Combining the two terms together, we have: + +$$ +\begin{array} { c } { { f ^ { \prime } ( x ) \geq - \lambda + ( \lambda - 1 ) \left( 1 - { \frac { 1 } { \mu _ { 2 } } } \right) \left( { \frac { \zeta _ { 2 } } { x } } \right) ^ { \frac { 1 } { \mu _ { 2 } } } + 1 - { \frac { \lambda - 1 } { \mu _ { 1 } - 1 } } } } \\ { { = ( \lambda - 1 ) \left( - { \frac { \mu _ { 1 } } { \mu _ { 1 } - 1 } } + { \frac { \mu _ { 2 } - 1 } { \mu _ { 2 } } } \left( { \frac { \zeta _ { 2 } } { x } } \right) ^ { \frac { 1 } { \mu _ { 2 } } } \right) . } } \end{array} +$$ + +For $f ^ { \prime } ( x )$ to be non-negative we need: + +$$ +\begin{array} { r l } & { - \frac { \mu _ { 1 } } { \mu _ { 1 } - 1 } + \frac { \mu _ { 2 } - 1 } { \mu _ { 2 } } \left( \frac { \zeta _ { 2 } } { x } \right) ^ { \frac { 1 } { \mu _ { 2 } } } \geq 0 } \\ & { \iff \left( \frac { \mu _ { 1 } } { \mu _ { 1 } - 1 } \cdot \frac { \mu _ { 2 } } { \mu _ { 2 } - 1 } \right) ^ { \mu _ { 2 } } \leq \frac { \zeta _ { 2 } } { x } . } \end{array} +$$ + +So $f ( x )$ is increasing for $\begin{array} { r c l } { x } & { \in } & { \left[ 0 , \zeta _ { 2 } / \left( { \frac { \mu _ { 1 } } { \mu _ { 1 } - 1 } } \cdot { \frac { \mu _ { 2 } } { \mu _ { 2 } - 1 } } \right) ^ { \mu _ { 2 } } \right] } \end{array}$ . This means for $q \leq \tilde { q } \leq$ $\zeta _ { 2 } / { \left( \frac { \mu _ { 1 } } { \mu _ { 1 } - 1 } \cdot \frac { \mu _ { 2 } } { \mu _ { 2 } - 1 } \right) } ^ { \mu _ { 2 } }$ , we have $f ( q ) \leq f ( \tilde { q } )$ . This completes the proof of the lemma and that of the theorem. ■ + +Theorem 6 yields data-dependent Rényi differential privacy bounds for any value of $\mu _ { 1 }$ and $\mu _ { 2 }$ larger than $\lambda$ . The following proposition simplifies this search by calculating optimal higher moments $\mu _ { 1 }$ and $\mu _ { 2 }$ for the GNMax mechanism with variance $\sigma ^ { 2 }$ . + +Proposition 10. When applying Theorem 6 and Proposition 8 for GNMax with Gaussian of variance $\sigma ^ { 2 }$ , the right-hand side of (2) is minimized at + +$$ +\mu _ { 2 } = \sigma \cdot \sqrt { \log ( 1 / \tilde { q } ) } , a n d \mu _ { 1 } = \mu _ { 2 } + 1 . +$$ + +Proof. We can minimize both terms in (2) independently. To minimize the first term in (6), we minimize $\left( \tilde { q } e ^ { \varepsilon _ { 2 } } \right) ^ { 1 - 1 / \mu _ { 2 } }$ by considering logarithms: + +$$ +\begin{array} { r l } { \log \left\{ \big ( \tilde { q } e ^ { \varepsilon _ { 2 } } \big ) ^ { 1 - 1 / \mu _ { 2 } } \right\} = \log \Bigg \{ \tilde { q } ^ { 1 - \frac { 1 } { \mu _ { 2 } } } \exp \left( \frac { \mu _ { 2 } - 1 } { \sigma ^ { 2 } } \right) \Bigg \} } & { } \\ { \quad \quad \quad \quad \quad = \left( 1 - \frac { 1 } { \mu _ { 2 } } \right) \cdot \log \tilde { q } + \frac { \mu _ { 2 } - 1 } { \sigma ^ { 2 } } } & { } \\ { \quad \quad \quad \quad = \frac { 1 } { \mu _ { 2 } } \log \frac { 1 } { \tilde { q } } + \frac { \mu _ { 2 } } { \sigma ^ { 2 } } - \frac { 1 } { \sigma ^ { 2 } } - \log \frac { 1 } { \tilde { q } } , } \end{array} +$$ + +which is minimized at $\mu _ { 2 } = \sigma \cdot \sqrt { \log ( 1 / \tilde { q } ) }$ . + +To minimize the second term in (6), we minimize $e ^ { \varepsilon _ { 1 } } / \tilde { q } ^ { 1 / ( \mu _ { 1 } - 1 ) }$ as follows: + +$$ +\begin{array} { r l } { \log \left\{ \displaystyle \frac { e ^ { \varepsilon _ { 1 } } } { \tilde { q } ^ { 1 / ( \mu _ { 1 } - 1 ) } } \right\} = \log \left\{ \tilde { q } ^ { - 1 / ( \mu _ { 1 } - 1 ) } \exp \left( \frac { \mu _ { 1 } } { \sigma ^ { 2 } } \right) \right\} } & { { } } \\ { = \displaystyle \frac { \mu _ { 1 } } { \sigma ^ { 2 } } + \frac { 1 } { \mu _ { 1 } - 1 } \log \frac { 1 } { \tilde { q } } } & { { } } \\ { = \displaystyle \frac { 1 } { \sigma ^ { 2 } } + \frac { \mu _ { 1 } - 1 } { \sigma ^ { 2 } } + \frac { 1 } { \mu _ { 1 } - 1 } \log \frac { 1 } { \tilde { q } } , } \end{array} +$$ + +which is minimized at $\mu _ { 1 } = 1 + \sigma \cdot \sqrt { \log ( 1 / \tilde { q } ) }$ completing the proof. + +Putting this together, we apply the following steps to calculate RDP of order $\lambda$ for GNMax with variance $\sigma ^ { 2 }$ on a given dataset $D$ . First, we compute a bound $q$ according to Proposition 7. Then we use the smaller of two bounds: a data-dependent (Theorem 6) and a data-independent one (Proposition 8) : + +$$ +\beta _ { \sigma } ( q ) \triangleq \operatorname* { m i n } \left\{ \frac { 1 } { \lambda - 1 } \log \left\{ ( 1 - q ) \cdot A ( q , \mu _ { 2 } , \varepsilon _ { 2 } ) ^ { \lambda - 1 } + q \cdot B ( q , \mu _ { 1 } , \varepsilon _ { 1 } ) ^ { \lambda - 1 } \right\} , \lambda / \sigma ^ { 2 } \right\} , +$$ + +where $\pmb { A }$ and $\textbf { { B } }$ are defined as in the statement of Theorem 6, the parameters $\mu _ { 1 }$ and $\mu _ { 2 }$ are selected according to Proposition 10, and $\varepsilon _ { 1 } \triangleq \mu _ { 1 } / \sigma ^ { 2 }$ and $\varepsilon _ { 2 } \triangleq \mu _ { 2 } / \sigma ^ { 2 }$ (Proposition 8). Importantly, the first expression is evaluated only when $q < 1 , \mu _ { 1 } \geq \lambda , \mu _ { 2 } > 1$ , and $q \leq e ^ { ( \mu _ { 2 } - 1 ) \varepsilon _ { 2 } } / \left( \frac { \mu _ { 1 } } { \mu _ { 1 } - 1 } \cdot \frac { \mu _ { 2 } } { \mu _ { 2 } - 1 } \right) ^ { \mu _ { 2 } }$ . These conditions can either be checked for each application of the aggregation mechanism, or a critical value of $q _ { 0 }$ that separates the range of applicability of the data-dependent and data-independent bounds can be computed for given $\sigma$ and $\lambda$ . In our implementation we pursue the second approach. + +The following corollary offers a simple asymptotic expression of the privacy of GNMax for the case when there are large (relative to $\sigma$ ) gaps between the highest three vote counts. + +Corollary 11. If the top three vote counts are $n _ { 1 } ~ > ~ n _ { 2 } ~ > ~ n _ { 3 }$ and $n _ { 1 } \mathrm { ~ - ~ } n _ { 2 }$ , $n _ { 2 } \mathrm { ~ - ~ } n _ { 3 } \mathrm { ~ } \gg \sigma$ , then the mechanism GNMax with Gaussian of variance $\sigma ^ { 2 }$ satisfies $( \lambda , \exp ( - 2 \lambda / \sigma ^ { 2 } ) / \lambda )$ -RDP for $\lambda = ( n _ { 1 } - n _ { 2 } ) / 4$ . + +Proof. Denote the noisy counts as $\tilde { n } _ { i } = n _ { i } + \mathcal { N } ( 0 , \sigma ^ { 2 } )$ . Ignoring outputs other than those with the highest and the second highest counts, we bound $q = \mathbf { \bar { P r } } \left[ \mathcal { \bar { M } } ( D ) \right] \neq 1 ]$ as $\mathbf { P r } [ \tilde { n } _ { 1 } ~ < ~ \tilde { n } _ { 2 } ] ~ =$ ${ \bf P r } [ N ( 0 , 2 \sigma ^ { 2 } ) > n _ { 1 } - n _ { 2 } ] < \exp { \left( - ( n _ { 1 } - n _ { 2 } ) ^ { 2 } / 4 \sigma ^ { 2 } \right) }$ , which we use as $\tilde { q }$ . Plugging $\tilde { q }$ in Proposition 10, we have $\mu _ { 1 } - 1 = \mu _ { 2 } = ( n _ { 1 } - n _ { 2 } ) / 2$ , limiting the range of applicability of Theorem 6 to $\lambda < ( n _ { 1 } - n _ { 2 } ) / 2$ . + +Choosing $\lambda = ( n _ { 1 } - n _ { 2 } ) / 4$ ensures $A ( \tilde { q } , \mu _ { 2 } , \varepsilon _ { 2 } ) \approx 1$ , which allows approximating the bound (2) as $\tilde { q } \cdot B ( \tilde { q } , \mu _ { 1 } , \varepsilon _ { 1 } ) ^ { \lambda - 1 } / ( \lambda - 1 )$ . The proof follows by straightforward calculation. + +# B SMOOTH SENSITIVITY AND PUBLISHING THE PRIVACY PARAMETER + +The privacy guarantees obtained for the mechanisms in this paper via Theorem 6 take as input $\tilde { q }$ , an upper bound on the probability that the aggregate mechanism returns the true plurality. This means that the resulting privacy parameters computed depend on teacher votes and hence the underlying data. To avoid potential privacy breaches from simply publishing the data-dependent parameter, we need to publish a sanitized version of the privacy loss. This is done by adding noise to the computed privacy loss estimates using the smooth sensitivity algorithm proposed by Nissim et al. (2007). + +This section has the following structure. First we recall the notion of smooth sensitivity and introduce an algorithm for computing the smooth sensitivity of the privacy loss function of the GNMax mechanism. In the rest of the section we prove correctness of these algorithms by stating several conditions on the mechanism, proving that these conditions are sufficient for correctness of the algorithm, and finally demonstrating that GNMax satisfies these conditions. + +# B.1 COMPUTING SMOOTH SENSITIVITY + +Any dataset $D$ defines a histogram $\bar { n } = ( n _ { 1 } , \ldots , n _ { m } ) \in \mathbb { N } ^ { m }$ of the teachers’ votes. We have a natural notion of the distance between two histograms $\operatorname { d i s t } ( \bar { n } , \bar { n } ^ { \prime } )$ and a function $q \colon \mathbb { N } ^ { m } [ 0 , 1 ]$ on these histograms computing the bound according to Proposition 7. The value $q ( { \bar { n } } )$ can be used as $\tilde { q }$ in the application of Theorem 6. Additionally we have $\boldsymbol { n } ^ { ( i ) }$ denote the $i$ -th highest bar in the histogram. + +We aim at calculating a smooth sensitivity of $\beta \left( q ( \bar { n } ) \right)$ whose definition we recall now. + +Definition 12 (Smooth Sensitivity). Given the smoothness parameter $\beta$ , a $\beta$ -smooth sensitivity of $f ( n )$ is defined as + +$$ +\mathrm { S S } _ { \beta } ( \bar { n } ) \triangleq \operatorname* { m a x } _ { d \geq 0 } e ^ { - \beta d } \cdot \operatorname* { m a x } _ { \bar { n } ^ { \prime } : \mathrm { d i s t } ( \bar { n } , \bar { n } ^ { \prime } ) \leq d } \tilde { \mathrm { L S } } ( \bar { n } ^ { \prime } ) , +$$ + +where + +$$ +\tilde { \mathrm { L S } } ( \bar { n } ) \geq \operatorname* { m a x } _ { \bar { n } ^ { \prime } : \mathrm { d i s t } ( \bar { n } , \bar { n } ^ { \prime } ) = 1 } | f ( n ) - f ( n ^ { \prime } ) | +$$ + +is an upper bound on the local sensitivity. + +We now describe Algorithms 3–5 computing a smooth sensitivity of $\beta \left( q ( \cdot ) \right)$ . The algorithms assume the existence of efficiently computable functions $q \colon \mathbb { N } ^ { m } [ 0 , 1 ]$ , $\mathrm { B _ { L } } , \mathrm { B _ { U } } \colon [ 0 , 1 ] \to [ 0 , 1 ]$ , and a constant $q _ { 0 }$ . + +Informally, the functions $\mathrm { B _ { U } }$ and $\mathrm { B _ { L } }$ respectively upper and lower bound the value of $q$ evaluated at any neighbor of $\bar { n }$ given $q ( { \bar { n } } )$ , and $[ 0 , q _ { 0 } )$ limits the range of applicability of data-dependent analysis. + +The functions $\mathrm { B _ { L } }$ and $\mathrm { B _ { U } }$ are defined as follows. Their derivation appears in Section B.4. + +$$ +\begin{array} { l } { { \displaystyle { \mathrm { B } } _ { \mathrm { U } } ( q ) \triangleq \operatorname* { m i n } \left\{ \frac { m - 1 } { 2 } \mathrm { e r f c } \left( \mathrm { e r f c } ^ { - 1 } \left( \frac { 2 q } { m - 1 } \right) - \frac { 1 } { \sigma } \right) , 1 \right\} , } } \\ { { \displaystyle { \mathrm { B } } _ { \mathrm { L } } ( q ) \triangleq \frac { m - 1 } { 2 } \mathrm { e r f c } \left( \mathrm { e r f c } ^ { - 1 } \left( \frac { 2 q } { m - 1 } \right) + \frac { 1 } { \sigma } \right) , } } \end{array} +$$ + +Algorithm 3 – Local Sensitivity: use the functions $\mathrm { B _ { U } }$ and $\mathrm { B _ { L } }$ to compute (an upper bound) of the local sensitivity at a given $q$ value by looking at the difference of $\beta \left( \cdot \right)$ evaluated on the bounds. + +
procedure LS(q)
2: if q1≤q≤ qo then q1 = BL(qo). Interpolate the middle part.
3: q↑q1 end if
4: 5:return max{β(Bu(q))-β(q),β(q)-β(BL(q))}
6: end procedure
+ +# B.2 NOTATION AND CONDITIONS + +Notation. We find that the algorithm and the proof of its correctness are more naturally expressed if we relax the notions of a histogram and its neighbors to allow non-integer values. + +• We generalize histograms to be any vector with non-negative real values. This relaxation is used only in the analysis of algorithms; the actual computations are performed exclusively over integer-valued inputs. +• Let $\bar { n } = [ n _ { 1 } , \dots , n _ { m } ] \in \mathbb { R } ^ { m }$ , $n _ { i } \geq 0$ denote a histogram. Let $\boldsymbol { n } ^ { ( i ) }$ denote the $i$ -th bar in the descending order. +• Define a “move” as increasing one bar by some value in $[ 0 , 1 ]$ and decreasing one bar by a (possibly different) value in $[ 0 , 1 ]$ subject to the resulting value be non-negative. Notice the difference between the original problem and our relaxation. In the original formulation, the histogram takes only integer values and we can only increase/decrease them by exactly 1. In contrast, we allow real values and a teacher can contribute an arbitrary amount in $[ 0 , 1 ]$ to any one class. + +Algorithm 4 – Sensitivity at a distance: given a histogram $\bar { n }$ , compute the sensitivity of $\beta \left( \cdot \right)$ at distance at most $d$ using the procedure LS˜ , function $q ( \cdot )$ , constants $q _ { 0 }$ and $q _ { 1 } = \mathrm { B _ { L } } ( q _ { 0 } )$ , and careful + +
case analysis that finds the neighbor at distance d with the maximum sensitivity.
1: procedure ATDISTANCED(n, d)
2: q←q(n)> q is in the flat region.
3: 4:if q1 ≤q≤ go then
return LS(q), STOP
5: end if
6:if q<qithen Need to increase q.
7:if n(1)-n(2)< 2d then n(i) is the ith largest element.
8:return LS(qi), STOP
9:else
10:n'← SORT(n)+[-d,d,O,...,0]
11:q'←q(n')
12:if q' >qi then
13:return LS(qo), STOP
14:else
15:return LS(q'),CONTINUE
16:end if
17:end if
18:else Need to decrease q.
19:
20:n↑[n,0,...,0]
21:q'←q(n')
22:return LS(q'), STOP
23:else
24:n' ← SORT(n)+[d,0,...,0]
25:for d' =1,...,d do
26:n'(2) ←n(2)-1 The index of n'(2) may change.
27:end for
28:q'←q(n')
29:if q'<qo then
30:return LS(qo), STOP
31:else
32:return LS(q'), CONTINUE
33:end if
34:end if
35: end if 36: end procedure
+ +# Algorithm 5 – Smooth Sensitivity: Compute the $\beta$ smooth sensitivity of $\beta \left( \cdot \right)$ via Definition 12 by looking at sensitivities at various distances and returning the maximum weighted by $e ^ { - \beta d }$ . + +1: procedure SMOOTHSENSITIVITY $( \bar { n } , \beta )$ +2: S ← 0 +3: d ← 0 +4: repeat +5: $c$ , StoppingCondition ATDISTANCED $( \bar { n } , d )$ +6: S ← max{S, c · e−βd} +7: d ← d + 1 +8: until StoppingCondition $=$ STOP +9: end procedure + +• Define the distance between two histograms $\bar { n } = ( n _ { 1 } , \dots , n _ { m } )$ and $\hat { n } ^ { \prime } = ( n _ { 1 } ^ { \prime } , \dots , n _ { m } ^ { \prime } )$ as + +$$ +d ( \bar { n } , \bar { n } ^ { \prime } ) \triangleq \operatorname* { m a x } \left\{ \sum _ { \substack { i : n _ { i } > n _ { i } ^ { \prime } } } \lceil n _ { i } - n _ { i } ^ { \prime } \rceil , \quad \sum _ { \substack { i : n _ { i } < n _ { i } ^ { \prime } } } \lceil n _ { i } ^ { \prime } - n _ { i } \rceil \right\} , +$$ + +which is equal to the smallest number of “moves” needed to make the two histograms identical. We use the ceiling function since a single step can increase/decrease one bar by at most 1. + +We say that two histograms are neighbors if their distance $d$ is 1. + +Notice that analyses of Rényi differential privacy for LNMax, GNMax and the exponential mechanism are still applicable when the neighboring datasets are defined in this manner. + +• Given a randomized aggregator $\mathcal { M } : \mathbb { R } _ { \ge 0 } ^ { m } [ m ]$ , let $q \colon \mathbb { R } _ { \geq 0 } ^ { m } [ 0 , 1 ]$ be so that + +$$ +q ( \bar { n } ) \geq \mathbf { P r } [ \mathcal { M } ( \bar { n } ) \neq \operatorname { a r g m a x } ( \bar { n } ) ] . +$$ + +When the context is clear, we use $q$ to denote a specific value of the function, which, in particular, can be used as $\tilde { q }$ in applications of Theorem 6. + +• Let $\beta \colon [ 0 , 1 ] \mathbb { R }$ be the function that maps a $q$ value to the value of the Rényi accountant. + +Conditions. Throughout this section we will be referring to the list of conditions on $q ( \cdot )$ and $\beta \left( \cdot \right)$ + +C1. The function $q ( \cdot )$ is continuous in each argument $n _ { i }$ . +C2. There exist functions $\mathrm { B _ { U } , B _ { L } \colon [ 0 , 1 ] \to [ 0 , 1 ] }$ such that for any neighbor $\bar { n } ^ { \prime }$ of $\bar { n }$ , we have $\mathrm { B } _ { \mathrm { L } } ( q ( \bar { n } ) ) \leq q ( \bar { n } ^ { \prime } ) \leq \mathrm { B } _ { \mathrm { U } } ( q ( \bar { n } ) )$ , i.e., $\mathrm { B _ { U } }$ and $\mathrm { B _ { L } }$ provide upper and lower bounds on the $q$ value of any neighbor of $\bar { n }$ . +C3. $\operatorname { B _ { L } } ( q )$ is increasing in $q$ . +C4. $\mathrm { B _ { U } }$ and $\mathrm { B _ { L } }$ are functional inverses of each other in part of the range, i.e., $q = \mathrm { B _ { L } } ( \mathrm { B _ { U } } ( q ) )$ for all $q \in [ 0 , q _ { 0 } ]$ , where $q _ { 0 }$ is defined below. Additionally $\mathrm { B } _ { \mathrm { L } } ( \bar { q } ) \leq q \bar { \leq } \mathrm { B } _ { \mathrm { U } } ( q )$ for all $q \in [ 0 , 1 ]$ . +C5. $\beta \left( \cdot \right)$ has the following shape: there exist constants $\beta ^ { * }$ and $q _ { 0 } \leq 0 . 5$ , such that $\beta \left( q \right)$ nondecreasing in $[ 0 , q _ { 0 } ]$ and $\bar { \beta ( q ) } = \beta ^ { * } \ge \beta ( q _ { 0 } )$ for $q > q _ { 0 }$ . The constant $\beta ^ { * }$ corresponds to a data-independent bound. +C6. $\Delta \beta ( q ) \triangleq \beta ( \mathrm { B } _ { \mathrm { U } } ( q ) ) - \beta ( q )$ is non-decreasing in $[ 0 , \mathrm { B _ { L } } ( q _ { 0 } ) ]$ , i.e., when $\mathrm { B _ { U } } ( q ) \le q _ { 0 }$ . +C7. Recall that $\boldsymbol { n } ^ { ( i ) }$ is the $i$ -th largest coordinate of a histogram $\bar { n }$ . Then, if $q ( \bar { n } ) \leq \mathrm { B _ { U } } ( q _ { 0 } )$ , then $q ( { \bar { n } } )$ is differentiable in all coordinates and + +$$ +\forall i > j \ge 2 \quad \frac { \partial q } { \partial n ^ { ( j ) } } ( \bar { n } ) \ge \frac { \partial q } { \partial n ^ { ( i ) } } ( \bar { n } ) \ge 0 . +$$ + +C8. The function $q ( { \bar { n } } )$ is invariant under addition of a constant, i.e., and $q ( { \bar { n } } )$ is invariant under permutation of $\bar { n }$ , i.e., + +Finally, we require that if $n ^ { ( 1 ) } = n ^ { ( 2 ) }$ , then $q ( { \bar { n } } ) \geq q _ { 0 }$ + +We may additionally assume that $q _ { 0 } \ \ge \ q ( [ n , 0 , \ldots , 0 ] )$ . Indeed, if this condition is not satisfied, then the data-dependent analysis is not going to be used anywhere. The most extreme histogram— $[ n , 0 , \ldots , 0 ]$ —is the most advantageous setting for applying data-dependent bounds. If we cannot use the data-dependent bound even in that case, we would be using the data-independent bound everywhere and do not need to compute smooth sensitivity anyway. Yet this condition is not automatically satisfied. For example, if $m$ (the number of classes) is large compared to $n$ (the number of teachers), we might have large $q ( [ n , 0 , \ldots , 0 ] )$ . So we need to check this condition in the code before doing smooth sensitivity calculation. + +# B.3 CORRECTNESS OF ALGORITHMS 3–5 + +Recall that local sensitivity of a deterministic function $f$ is defined as max $f ( D ) - f ( D ^ { \prime } )$ , where $D$ and $D ^ { \prime }$ are neighbors. + +Proposition 13. Under conditions C2–C6, Algorithm $^ 3$ computes an upper bound on local sensitivity of $\beta ( q ( \bar { n } ) )$ . + +Proof. Since $\beta \left( \cdot \right)$ is non-decreasing everywhere (by C5), and for any neighbors $\bar { n }$ and $\bar { n } ^ { \prime }$ it holds that $\mathrm { B } _ { \mathrm { L } } ( q ( \bar { n } ) ) \leq q ( \bar { n } ^ { \prime } ) \leq \mathrm { B } _ { \mathrm { U } } ( q ( \bar { n } ) )$ (by C2), we have the following + +$$ +\begin{array} { r l } & { | \beta \left( q ( \bar { n } ) \right) - \beta \left( q ( \bar { n } ^ { \prime } ) \right) | \leq \operatorname* { m a x } \bigg \{ \beta \Big ( \mathrm { B } _ { \mathrm { U } } { \left( q ( \bar { n } ) \right) } \Big ) - \beta \Big ( q ( \bar { n } ) \Big ) , \beta \Big ( q ( \bar { n } ) \Big ) - \beta \Big ( \mathrm { B } _ { \mathrm { L } } { \left( q ( \bar { n } ) \right) } \Big ) \bigg \} } \\ & { \quad \quad \quad \quad = \operatorname* { m a x } \bigg \{ \Delta \beta \Big ( q ( \bar { n } ) \Big ) , \Delta \beta \Big ( \mathrm { B } _ { \mathrm { L } } { \left( q ( \bar { n } ) \right) } \Big ) \bigg \} } \end{array} +$$ + +as an upper bound on the local sensitivity of $\beta \left( q ( \cdot ) \right)$ at input $\bar { n }$ . + +The function computed by Algorithm 3 differs from above when $q ( \bar { n } ) \in ( \mathrm { B _ { L } } ( q _ { 0 } ) , q _ { 0 } )$ . To complete the proof we need to argue that the local sensitivity is upper bounded by $\Delta \beta \left( \mathrm { B _ { L } } ( q _ { 0 } ) \right)$ for $q ( { \bar { n } } )$ in this interval. The bound follows from the following three observations. + +First, $\Delta \beta \left( q \right)$ is non-increasing in the range $( \mathrm { B _ { L } } ( q _ { 0 } ) , 1 ]$ , since $\beta \left( \mathrm { B } _ { \mathrm { U } } ( q ) \right)$ is constant (by $\operatorname { B _ { U } } ( q ) \geq$ $\mathrm { B _ { U } } ( \mathrm { B _ { L } } ( q _ { 0 } ) ) = q _ { 0 }$ and C5) and $\beta \left( q \right)$ is non-decreasing in the range (by C5). In particular, + +$$ +\Delta \beta ( q ) \leq \Delta \beta ( \mathrm { B } _ { \mathrm { L } } ( q _ { 0 } ) ) { \mathrm { ~ i f ~ } } q \geq \mathrm { B } _ { \mathrm { L } } ( q _ { 0 } ) . +$$ + +Second, $\Delta \beta \left( \mathrm { B } _ { \mathrm { L } } ( q ) \right)$ is non-decreasing in the range $[ 0 , q _ { 0 } ]$ since $\operatorname { B _ { L } } ( q )$ is increasing (by C3 and C6). This implies that + +$$ +\Delta \beta ( \mathrm { B _ { L } } ( q ) ) \leq \Delta \beta ( \mathrm { B _ { L } } ( q _ { 0 } ) ) { \mathrm { ~ i f ~ } } q \leq q _ { 0 } . +$$ + +By (8) and (9) applied to the intersection of the two ranges, it holds that + +$$ +\begin{array} { r } { \operatorname* { m a x } \bigg \{ \Delta \beta \Big ( q ( \bar { n } ) \Big ) , ~ \Delta \beta \Big ( \mathrm { B } _ { \mathrm { L } } ( q ( \bar { n } ) ) \Big ) \bigg \} \leq \Delta \beta \left( \mathrm { B } _ { \mathrm { L } } ( q _ { 0 } ) \right) \mathrm { i f } ~ \mathrm { B } _ { \mathrm { L } } ( q _ { 0 } ) \leq q \leq q _ { 0 } , } \end{array} +$$ + +as needed. + +We thus established that the function computed by Algorithm 3, which we call $\tilde { \mathrm { L S } } ( q )$ from now on, is an upper bound on the local sensitivity. Formally, + +$$ +\begin{array} { r } { \tilde { \mathrm { L S } } ( q ) \triangleq \left\{ \begin{array} { l l } { \Delta \beta \left( \mathrm { B } _ { \mathrm { L } } ( q _ { 0 } ) \right) } & { \mathrm { i f ~ } q \in ( \mathrm { B } _ { \mathrm { L } } ( q _ { 0 } ) , q _ { 0 } ) , } \\ { \operatorname* { m a x } \left\{ \Delta \beta \left( q \right) , \Delta \beta \left( \mathrm { B } _ { \mathrm { L } } ( q ) \right) \right\} } & { \mathrm { o t h e r w i s e } . } \end{array} \right. } \end{array} +$$ + +The following proposition characterizes the growth of $\tilde { \mathrm { L S } } ( q )$ . + +Proposition 14. Assuming conditions $C 2 { - } C 6 ,$ , the function $\tilde { \mathrm { L S } } ( q )$ is non-decreasing in $[ 0 , \mathrm { B _ { L } } ( q _ { 0 } ) ]$ , constant in $[ \mathrm { B _ { L } } ( q _ { 0 } ) , q _ { 0 } ]$ , and non-increasing in $[ q _ { 0 } , 1 ]$ . + +Proof. Consider separately three intervals. + +• By construction, $\tilde { \mathrm { L S } }$ is constant in $[ \mathrm { B _ { L } } ( q _ { 0 } ) , q _ { 0 } ]$ . +• Since both functions $\Delta \beta \left( \cdot \right)$ and $\Delta \beta \left( \mathrm { B _ { L } } ( \cdot ) \right)$ are each non-decreasing in $[ 0 , \mathrm { B _ { L } } ( q _ { 0 } ) )$ , so is their max. +• In the interval $( q _ { 0 } , 1 ] , \beta ( q )$ is constant. Hence $\Delta \beta ( q ) = 0$ and $\Delta \beta ( \mathrm { B } _ { \mathrm { L } } ( q ) ) = \beta ( q ) -$ $\beta \left( \mathrm { B _ { L } } ( q ) \right)$ is non-decreasing. Their maximum value $\Delta \beta \left( \mathrm { B _ { L } } ( q ) \right)$ is non-decreasing. + +The claim follows. + +We next prove correctness of Algorithm 4, which computes the maximal sensitivity of $\beta$ at a fixed distance. + +The proof relies on the following notion of a partial order between histograms. + +Definition 15. Prefix sums $S _ { i } ( \bar { n } )$ are defined as follows: + +$$ +S _ { i } ( \bar { n } ) \triangleq \sum _ { j = 1 } ^ { i } ( n ^ { ( 1 ) } - n ^ { ( j ) } ) . +$$ + +We say that a histogram $\bar { n }$ dominates $\bar { n } ^ { \prime }$ , denoted as $\bar { n } \succeq \bar { n } ^ { \prime }$ , iff: + +The function $q ( \cdot )$ is monotone under this notion of dominance (assuming certain conditions hold): Proposition 16. If $q ( \cdot )$ satisfies C1, C2, C7, and $C 8 _ { \mathrm { : } }$ , and $q ( \bar { n } ) < \mathrm { B _ { U } } ( q _ { 0 } )$ , then + +$$ +\bar { n } \succeq \bar { n } ^ { \prime } \Rightarrow q ( \bar { n } ) \leq q ( \bar { n } ^ { \prime } ) . +$$ + +Proof. We may assume that $n ^ { ( 1 ) } = n ^ { \prime ( 1 ) }$ . Indeed, if this does not hold, add $| n ^ { ( 1 ) } - n ^ { \prime ( 1 ) } |$ to all coordinates of the histogram with the smaller of the two values. This transform does not change the $q$ value (by C8) and it preserves the $\succeq$ relationship as all prefix sums $S _ { i } ( \cdot )$ remain unchanged. + +We make a simple observation that will be helpful later: + +$$ +\forall i \in [ m ] \mathrm { i t } \mathrm { h o l d s ~ t h a t } \sum _ { j = 1 } ^ { i } ( n ^ { ( 1 ) } - n _ { j } ) \geq S _ { i } ( \bar { n } ) . +$$ + +The inequality holds because the prefix sum accumulates the gaps between the largest value of $\bar { n }$ and all other values in the non-decreasing order. Any deviation from this order may only increase the prefix sums. + +The following lemma constructs a monotone chain (in the partial order of dominance) of histograms connecting $\bar { n }$ and $\bar { n } ^ { \prime }$ via a sequence of intermediate steps that either do not change the value of $q$ or touch at most two coordinates at a time. + +Lemma 17. There exists a chain ${ \bar { n } } = { \bar { n } } _ { 0 } \succeq { \bar { n } } _ { 1 } \succeq \cdot \cdot \cdot \succeq { \bar { n } } _ { d } = { \bar { n } } ^ { \prime }$ , such that for all $i \in [ d ]$ either $d ( \bar { n } _ { i - 1 } , \bar { n } _ { i } ) = 1$ or $\bar { n } _ { i - 1 } = \pi ( \bar { n } _ { i } )$ for some permutation $\pi$ on $[ m ]$ . Additionally, = · · · = n(1)d . + +Proof (Lemma). Wlog we assume that $\bar { n }$ and $\bar { n } ^ { \prime }$ are each sorted in the descending order. The proof is by induction on $\begin{array} { r } { \ell ( \bar { n } , \bar { n } ^ { \prime } ) \stackrel { \Delta } { = } \sum _ { i } \lceil n _ { i } - n _ { i } ^ { \prime } \rceil \leq 2 d ( \bar { n } , \bar { n } ^ { \prime } ) } \end{array}$ , which, by construction, only assumes non-negative integer values. + +If the distance is 0, the statement is immediate. Otherwise, find the smallest $i$ so that $S _ { i } ( \bar { n } ) > S _ { i } ( \bar { n } ^ { \prime } )$ (if all prefix sums are equal and $n ^ { ( 1 ) } = n ^ { \prime ( 1 ) }$ , it would imply that $\bar { n } = \bar { n } ^ { \prime }$ ). In particular, it means that $n _ { j } = n _ { j } ^ { \prime }$ for $j < i$ and $n _ { i } < n _ { i } ^ { \prime } \le n _ { i - 1 } = n _ { i - 1 } ^ { \prime }$ . Let $x \triangleq \operatorname* { m i n } ( n _ { i } ^ { \prime } - n _ { i } , 1 )$ . Define $\bar { n } ^ { \prime \prime }$ as identical to $\bar { n } ^ { \prime }$ except that $n _ { i } ^ { \prime \prime } = n _ { i } ^ { \prime } - x$ . The new value is guaranteed to be non-negative, since $x \leq n _ { i } ^ { \prime } - n _ { i }$ and $n _ { i } \geq 0$ . Note that $\bar { n } ^ { \prime \prime }$ is not necessarily sorted anymore. Consider two possibilities. + +Case I: $\bar { n } \succeq \bar { n } ^ { \prime \prime }$ . Since $\bar { n } ^ { \prime \prime } \succeq \bar { n } ^ { \prime }$ , $\ell ( \bar { n } , \bar { n } ^ { \prime \prime } ) < \ell ( \bar { n } , \bar { n } ^ { \prime } )$ , and $d ( \bar { n } ^ { \prime \prime } , \bar { n } ^ { \prime } ) = 1$ , we may apply the induction hypothesis to the pair $\bar { n } , \bar { n } ^ { \prime \prime }$ . + +Case II: $\bar { n } \not \subset \bar { n } ^ { \prime \prime }$ . This may happen because the prefix sums of $\bar { n } ^ { \prime \prime }$ increase compared to $S _ { j } ( \bar { n } ^ { \prime } )$ for $j \geq i$ . Find the smallest such $i ^ { \prime }$ so that $\textstyle \sum _ { j = 1 } ^ { i ^ { \prime } } ( n _ { 1 } ^ { \prime \prime } - n _ { j } ^ { \prime \prime } ) > S _ { i ^ { \prime } } ( \bar { n } )$ . (Since $\bar { n } ^ { \prime \prime }$ is not sorted, we fix the order in which prefix sums are accumulated to be the same as in $\bar { n }$ ; by (10) $i ^ { \prime }$ is well defined). Next we let $\bar { n } ^ { \prime \prime \prime }$ be identical to $\bar { n } ^ { \prime \prime }$ except that $n _ { i ^ { \prime } } ^ { \prime \prime \prime } = n _ { i ^ { \prime } } ^ { \prime \prime } + x$ . In other words, $\bar { n } ^ { \prime \prime \prime }$ differs from $\bar { n } ^ { \prime }$ by shifting $x$ from coordinate $i$ to coordinate $i ^ { \prime }$ . + +We argue that incrementing $n _ { i ^ { \prime } } ^ { \prime \prime }$ by $x$ does not change the maximal value of $\bar { n } ^ { \prime \prime }$ , i.e., $n _ { 1 } ^ { \prime \prime \prime } > n _ { i \prime } ^ { \prime \prime \prime }$ . Our choice of $i ^ { \prime }$ , which is the smallest index so that the prefix sum over $\bar { n } ^ { \prime \prime }$ overtakes that over $\bar { n }$ , implies that $n _ { 1 } ^ { \prime \prime } - n _ { i ^ { \prime } } ^ { \prime \prime } > n _ { 1 } - n _ { i ^ { \prime } }$ . Since $n _ { 1 } ^ { \prime \prime } = n _ { 1 }$ , it means that $n _ { i ^ { \prime } } > n _ { i ^ { \prime } } ^ { \prime \prime }$ (and by adding $x$ we move $n _ { i ^ { \prime } } ^ { \prime \prime }$ towards $n _ { i ^ { \prime } }$ ). Furthermore, + +$$ +n _ { i ^ { \prime } } ^ { \prime \prime \prime } = n _ { i ^ { \prime } } ^ { \prime \prime } + x \leq n _ { i ^ { \prime } } + ( n _ { i } ^ { \prime } - n _ { i } ) = n _ { i } ^ { \prime } + ( n _ { i ^ { \prime } } - n _ { i } ) \leq n _ { i } ^ { \prime } \leq n _ { 1 } ^ { \prime } = n _ { 1 } ^ { \prime \prime \prime } , +$$ + +(We use $n _ { i ^ { \prime } } \leq n _ { i }$ , which is implied by $i ^ { \prime } > i$ .) + +We claim that $\begin{array} { r } { \sum _ { j = 1 } ^ { t } ( n _ { 1 } ^ { \prime \prime \prime } - n _ { j } ^ { \prime \prime \prime } ) \le S _ { t } ( \bar { n } ) } \end{array}$ for all $t$ , and thus, via (10), $\bar { n } \succeq \bar { n } ^ { \prime \prime \prime }$ . The choice of $i ^ { \prime }$ makes the statement trivial for $t < i ^ { \prime }$ . For $t \geq i ^ { \prime }$ the following holds: + +$$ +\sum _ { j = 1 } ^ { t } ( n _ { 1 } ^ { \prime \prime \prime } - n _ { j } ^ { \prime \prime \prime } ) = \sum _ { j = 1 } ^ { t } ( n _ { 1 } ^ { \prime \prime } - n _ { j } ^ { \prime \prime } ) - x \leq \left( \sum _ { j = 1 } ^ { t } ( n _ { 1 } ^ { \prime } - n _ { j } ^ { \prime } ) + x \right) - x = S _ { t } ( n ^ { \prime } ) \leq S _ { t } ( \bar { n } ) . +$$ + +By construction $d ( \bar { n } ^ { \prime } , \bar { n } ^ { \prime \prime \prime } ) = 1$ (the two histograms differ in two locations, in positive and negative directions, by $x \leq 1$ in each). For the same reasons $\bar { n } ^ { \prime \prime \prime } \succeq \bar { n } ^ { \prime }$ . To show that $\bar { \ell } ( \bar { n } , \bar { n } ^ { \prime } ) > \ell ( \bar { n } , \bar { n } ^ { \prime \prime \prime } )$ , + +compare $\lceil n _ { j } - n _ { j } ^ { \prime } \rceil$ and $\lceil n _ { j } - n _ { j } ^ { \prime \prime \prime } \rceil$ for $j = i , i ^ { \prime }$ . At $j = i$ the first term is strictly larger than the second. At $j = i ^ { \prime }$ , the inequality holds too but it may be not strict. + +We may again apply the induction hypothesis to the pair $\bar { n }$ and $\bar { n } ^ { \prime \prime \prime }$ , thus completing the proof of the lemma. + +To complete the proof of the proposition, we need to argue that the values of $q$ are also monotone in the chain constructed by the previous lemma. Concretely, we put forth + +Proof. The fact that $d ( \bar { n } , \bar { n } ^ { \prime } ) = 1$ and $\bar { n } \succeq \bar { n } ^ { \prime }$ means that there is either a single index $i$ so that $n _ { i } ^ { \prime } < n _ { i }$ , or there exist two indices $i$ and $j$ so that $n _ { i } ^ { \prime } < n _ { i }$ and $n _ { j } ^ { \prime } > n _ { j }$ . The first case is immediate, since $q$ is non-decreasing in all inputs except for the largest (by C7). + +Let $n _ { i } ^ { \prime } = n _ { i } - x$ and $n _ { j } ^ { \prime } = n _ { j } + y$ , where $x , y > 0$ . Since $\bar { n } \succeq \bar { n } ^ { \prime }$ , it follows that $n _ { i } \geq n _ { j }$ and $x > y$ Consider two cases. + +Case I: $n _ { i } ^ { \prime } \geq n _ { j } ^ { \prime }$ , i.e., removing $x$ from $n _ { i }$ and adding $y$ to $n _ { j }$ does not change their ordering. Let + +$$ +\bar { n } ( t ) \triangleq ( 1 - t ) \bar { n } + t \cdot \bar { n } ^ { \prime } = [ n _ { 1 } , \ldots , n _ { i } - t \cdot x , \ldots , n _ { j } + t \cdot y , \ldots , n _ { m } ] . +$$ + +Then, + +$$ +\begin{array} { l l } { \displaystyle q ( \bar { n } ^ { \prime } ) - q ( \bar { n } ) = q ( \bar { n } ( 1 ) ) - q ( \bar { n } ( 0 ) ) = \int _ { t = 0 } ^ { 1 } ( q \circ \bar { n } ) ^ { \prime } ( t ) \mathrm { d } t } \\ { \displaystyle \qquad = \int _ { t = 0 } ^ { 1 } \left\{ - x \frac { \partial q } { \partial n _ { i } } \bar { n } ( t ) + y \frac { \partial q } { \partial n _ { j } } \bar { n } ( t ) \right\} \mathrm { d } t } \\ { \displaystyle \qquad \leq 0 . } \end{array} +$$ + +The last inequality follows from C7 and the facts that $x > y > 0$ and $n _ { i } ( t ) > n _ { j } ( t )$ . (The condition that $q ( \bar { n } ( t ) ) \overset { \cdot } { \leq } \dot { \mathrm { B } _ { \mathrm { U } } } ( q _ { 0 } )$ follows from C2 and the fact that $d ( \bar { n } ^ { \prime } , \bar { n } ( t ) ) \leq 1 .$ ) + +Case II: $n _ { i } ^ { \prime } \leq n _ { j } ^ { \prime }$ . In this case we swap the $i$ th and $j$ th indices in $\bar { n } ^ { \prime }$ by defining $\bar { n } ^ { \prime \prime }$ which differs from it in $\bar { n } _ { i } ^ { \prime \prime } = \bar { n } _ { j } ^ { \prime }$ and $\bar { n } _ { j \_ } ^ { \prime \prime } = \bar { n } _ { i } ^ { \prime }$ . By C8, $q ( \bar { n } ^ { \prime \prime } ) = q ( \bar { n } ^ { \prime } )$ and, of course, $\bar { n } ^ { \prime \prime } \succeq \bar { n }$ since the prefix sums remain unchanged. The benefit of doing this transformation is that we are back in Case I, where the relative order of coordinates that change between $\bar { n }$ and $\bar { n } ^ { \prime \prime }$ remains the same. + +This concludes the proof of the lemma. + +Applying Lemma 17 we construct a chain of histograms between $\bar { n }$ and $\bar { n } ^ { \prime }$ , which, by Lemma 18, is non-increasing in $q ( \cdot )$ . Together this implies that $q ( \bar { n } ) \leq q ( \bar { n } ^ { \prime } )$ , as claimed. + +We apply the notion of dominance in proving the following proposition, which is used later in arguing correctness of Algorithm 4. + +Proposition 19. Let n¯ be an integer-valued histogram and d be a positive integer. And $q ( \cdot )$ satisfies C1, C7, and C8. The following holds: + +1. Assuming $n ^ { ( 1 ) } - n ^ { ( 2 ) } \geq 2 d ,$ , let $\bar { n } ^ { * }$ be obtained from $\bar { n }$ by decrementing ${ \boldsymbol n } ^ { ( 1 ) }$ by $d$ and incrementing $n ^ { ( 2 ) }$ by $d .$ . Then + +2. Assuming repeatedly $\begin{array} { r } { \sum _ { i = 2 } ^ { m } n ^ { ( i ) } \geq d } \end{array}$ , let e hi $\bar { n } ^ { * * }$ be obtained from am’s current secon $\bar { n }$ by incrementing highest value by o $n _ { 1 }$ y ti $d$ , and byes. Then $d$ + +Proof. Towards proving the claims, we argue that $\bar { n } ^ { * }$ and $\bar { n } ^ { * * }$ are, respectively, the minimal and the maximal elements in the histogram dominance order (Definition 15) in the set of histograms at distance $d$ from $\bar { n }$ . By Proposition 16 the claims follow. + +1. Take any histogram $\bar { n } ^ { \prime }$ at distance $d$ from $\bar { n }$ . Our goal is to prove that $\bar { n } ^ { \prime } \succeq$ $\bar { n } ^ { * }$ . Recall the definition of the distance $d ( \cdot , \cdot )$ between two histograms $d ( \bar { n } , \bar { n } ^ { \prime } ) ~ =$ max $\begin{array} { r l } { \bigg \{ \sum _ { i : n _ { i } > n _ { i } ^ { \prime } } \lceil n _ { i } - n _ { i } ^ { \prime } \rceil , \sum _ { i : n _ { i } < n _ { i } ^ { \prime } } \lceil n _ { i } ^ { \prime } - n _ { i } \rceil \bigg \} } & { { } } \end{array}$ . If the distance is bounded by $d$ , it means, in particular, that + +$$ +\sum _ { j = 2 } ^ { i } n ^ { \prime ( j ) } \leq \sum _ { j = 2 } ^ { i } n ^ { ( j ) } + d \quad { \mathrm { ~ f o r ~ a l l ~ } } i > 2 . +$$ + +That lets us bound the prefix sums of $\bar { n } ^ { \prime }$ as follows: + +$$ +\begin{array} { l } { S _ { i } ( \bar { n } ^ { \prime } ) = \displaystyle \sum _ { j = 2 } ^ { i } ( n ^ { \prime ( 1 ) } - n ^ { \prime ( j ) } ) = ( i - 1 ) \cdot n ^ { \prime ( 1 ) } - \displaystyle \sum _ { j = 2 } ^ { i } n ^ { \prime ( j ) } } \\ { \geq ( i - 1 ) \cdot ( n ^ { ( 1 ) } - d ) - \displaystyle \left( \sum _ { j = 2 } ^ { i } n ^ { ( j ) } + d \right) = S _ { i } ( \bar { n } ^ { * } ) . } \end{array} +$$ + +We demonstrated that $\bar { n } ^ { \prime } \succeq \bar { n } ^ { * }$ , which, by Proposition 16, implies that $q ( \bar { n } ^ { \prime } ) \leq q ( \bar { n } ^ { * } )$ Together with the immediate $d ( \bar { n } , \bar { n } ^ { * } ) = d$ we prove the claim. + +2. Assume wlog that $\bar { n }$ is sorted in the descending order. Define the following value that depends on $\bar { n }$ and $d$ : + +$$ +u \triangleq \operatorname* { m i n } \left\{ x \in { \mathbb { N } } \colon \sum _ { i : i > 1 , n _ { i } \geq x } n _ { i } - x \leq d \right\} . +$$ + +The constant $u$ is the smallest such $x$ so that the total mass that can be shaved from elements of $\bar { n }$ above $x$ (excluding $n _ { 1 }$ ) is at most $d$ . + +We give the following equivalent definition of $\bar { n } ^ { * * }$ : + +$$ +n _ { i } ^ { * * } = \left\{ { \begin{array} { l l } { n _ { 1 } + d } & { { \mathrm { i f ~ } } i = 1 , } \\ { u } & { { \mathrm { i f ~ } } i > 1 { \mathrm { ~ a n d ~ } } n _ { i } \geq u , } \\ { n _ { i } } & { { \mathrm { o t h e r w i s e } } . } \end{array} } \right. +$$ + +Fix any $i \in [ m ]$ and any histogram $\bar { n } ^ { \prime }$ at distance $d$ from $\bar { n }$ . Our goal is to prove that $S _ { i } ( \bar { n } ^ { * * } ) \geq S _ { i } ^ { \bar { ( n ^ { \prime } ) } }$ and thus $\bar { n } ^ { * * } \succeq \bar { n } ^ { \prime }$ . Assume the opposite and take largest $i$ such that $S _ { i } ( { \bar { n } } ^ { * * } ) < S _ { i } ( { \bar { n } } ^ { \prime } )$ . + +We may assume that $n ^ { \prime ( 1 ) } = n _ { 1 } ^ { * * } = n _ { 1 } + d$ . Consider the following cases. + +Case I. If $n ^ { * * ( i ) } < u$ , the contradiction follows from + +$$ +\begin{array} { r } { S _ { i } ( \bar { n } ^ { \prime } ) = \displaystyle \sum _ { j = 2 } ^ { i } ( n ^ { \prime ( 1 ) } - n ^ { \prime ( j ) } ) = \displaystyle \sum _ { j = 2 } ^ { i } \Big ( ( n ^ { \prime ( 1 ) } - n ^ { ( 1 ) } ) + ( n ^ { ( 1 ) } - n ^ { ( j ) } ) + ( n ^ { ( j ) } - n ^ { \prime ( j ) } ) \Big ) } \\ { \le ( i - 1 ) d + S _ { i } ( \bar { n } ) + d = S _ { i } ( \bar { n } ^ { * * } ) . } \end{array} +$$ + +The last equality is due to the fact that all differences between $\bar { n }$ and $\bar { n } ^ { * * }$ are confined to the indices that are less than $i$ . + +Case $\mathbf { I I }$ . If $n ^ { * * ( i ) } = u$ and $n ^ { \prime { ( i ) } } \geq u$ , the contradiction with $S _ { i } ( \bar { n } ^ { * * } ) < S _ { i } ( \bar { n } ^ { \prime } )$ follows immediately from + +$$ +S _ { i } ( \bar { n } ^ { \prime } ) = \sum _ { j = 2 } ^ { i } ( n ^ { \prime ( 1 ) } - n ^ { \prime ( j ) } ) \le ( i - 1 ) ( n ^ { \prime ( 1 ) } - u ) = S _ { i } ( \bar { n } ^ { * * } ) . +$$ + +Case III. Finally, consider the case when $n ^ { * * ( i ) } = u$ and $v \ \triangleq n ^ { \prime ( i ) } < u$ . Since $i$ is the largest such that $S _ { i } ( { \bar { n } } ^ { * * } ) < S _ { i } ( { \bar { n } } ^ { \prime } )$ , it means that $n ^ { * * ( i + 1 ) } < n ^ { \prime ( i + 1 ) } \leq v < u = n ^ { * * ( i ) }$ + +and thus $n ^ { * * ( i ) } - n ^ { * * ( i + 1 ) } \geq 2$ (we rely on the fact that the histograms are integer-valued). It implies that all differences between $\bar { n }$ and $\bar { n } ^ { * * }$ are confined to the indices in $[ 1 , i ]$ . Then, + +$$ +\begin{array} { l } { { S _ { i } ( \bar { n } ^ { * * } ) - S _ { i } ( \bar { n } ^ { \prime } ) \geq \displaystyle \sum _ { j = 2 } ^ { i } ( n _ { 1 } ^ { * * } - n _ { j } ^ { * * } ) - \displaystyle \sum _ { j = 2 } ^ { i } ( n _ { 1 } ^ { \prime } - n _ { j } ^ { \prime } ) } } \\ { { \mathrm { ~ } = \displaystyle \sum _ { j = 2 } ^ { i } ( ( n _ { j } - n _ { j } ^ { * * } ) + ( n _ { j } ^ { \prime } - n _ { j } ) ) } } \\ { { \mathrm { ~ } \geq d - d ( \bar { n } , \bar { n } ^ { \prime } ) } } \\ { { \mathrm { ~ } \geq 0 , } } \end{array} +$$ + +which contradicts the assumption that $S _ { i } ( { \bar { n } } ^ { * * } ) < S _ { i } ( { \bar { n } } ^ { \prime } )$ . + +We may now state and prove the main result of this section. + +Theorem 20. Assume that $q ( \cdot )$ satisfies conditions $C l { - } C 8$ and $\bar { n }$ is an integer-valued histogram. Then the following two claims are true: + +1. Algorithm 4 computes $\begin{array} { r } { \operatorname* { m a x } _ { \bar { n } ^ { \prime } : \mathrm { d i s t } ( \bar { n } , \bar { n } ^ { \prime } ) \leq d } \tilde { \mathrm { L S } } ( \bar { n } ^ { \prime } ) . } \end{array}$ + +2. Algorithm 5 computes $\mathrm { S S } _ { \beta } ( \bar { n } )$ , which is a $\beta$ -smooth upper bound on smooth sensitivity of $\beta \left( q ( \cdot ) \right)$ . + +Proof. Claim 1. Recall that $q _ { 1 } = \mathrm { B _ { L } } ( q _ { 0 } )$ , and therefore, by Proposition 14 the function $\tilde { \mathrm { L S } } ( q )$ is non-decreasing in $[ 0 , q _ { 1 } ]$ , constant in $[ q _ { 1 } , q _ { 0 } ]$ , and non-increasing in $[ q _ { 0 } , 1 ]$ . It means, in particular, that to maximize $\tilde { \mathrm { L S } } ( q ( \bar { n } ^ { \prime } ) )$ over histograms satisfying $d ( \bar { n } , \bar { n } ^ { \prime } ) = d$ , it suffices to consider the following cases. + +If $\tilde { \mathrm { L S } } ( q ( \bar { n } ) ) < q _ { 1 }$ , then higher values of $\mathrm { \tilde { L S } ( \cdot ) }$ may be attained only by histograms with higher values of $q$ . Proposition 19 enables us to efficiently find a histogram $\bar { n } ^ { * }$ with the highest $q$ at distance $d$ , or conclude that we may reach the plateau by making the two highest histogram entries be equal. + +$q _ { 1 } \leq \tilde { \mathrm { L S } } ( q ( \bar { n } ) ) \leq q _ { 0 }$ , it means that $\tilde { \mathrm { L S } } ( q ( n ) )$ is already as high as it can be. + +If $q _ { 0 } < \tilde { \mathrm { L S } } ( q ( \bar { n } ) )$ , then, according to Proposition 14, higher values of $\mathrm { \tilde { L S } ( \cdot ) }$ can be achieved by histograms with smaller values of $q$ , which we explore using the procedure outlined by Proposition 19. The stopping condition—when the plateau is reached—happens when $q$ becomes smaller than $q _ { 0 }$ . + +Claim 2. The second claim follows from the specification of Algorithm 5 and the first claim. + +# B.4 GNMAX SATISFIES CONDITIONS C1–C8 + +The previous sections laid down a framework for computing smooth sensitivity of a randomized aggregator mechanism: defining functions $q ( \cdot ) , \mathrm { B _ { U } ( \cdot ) , B _ { L } ( \cdot ) }$ , verifying that they satisfy conditions C1–C8, and applying Theorem 20, which asserts correctness of Algorithm 5. In this section we instantiate this framework for the GNMax mechanism. + +# B.4.1 CONDITIONS C1–C4, C7 AND C8 + +Defining $q$ and conditions C1, C7, and C8. Following Proposition 7, we define $q \colon \mathbb { R } _ { \geq 0 } ^ { m } [ 0 , 1 ]$ for a GNMax mechanism parameterized with $\sigma$ as: + +$$ +\begin{array} { r l } & { q ( \bar { n } ) \triangleq \operatorname* { m i n } \left\{ \underset { i \neq i ^ { * } } { \sum } \mathbf { P r } ( Z _ { i } - Z _ { i ^ { * } } \geq n _ { i ^ { * } } - n _ { i } ) , 1 \right\} } \\ & { \quad = \operatorname* { m i n } \left\{ \underset { i \neq i ^ { * } } { \sum } \frac { 1 } { 2 } \left( 1 - \mathrm { e r f } \left( \frac { n _ { i ^ { * } } - n _ { i } } { 2 \sigma } \right) \right) , 1 \right\} } \\ & { \quad = \operatorname* { m i n } \left\{ \underset { i \neq i ^ { * } } { \sum } \frac { 1 } { 2 } \mathrm { e r f c } \left( \frac { n _ { i ^ { * } } - n _ { i } } { 2 \sigma } \right) , 1 \right\} , } \end{array} +$$ + +where $i ^ { * }$ is the histogram $\bar { n }$ ’s highest coordinate, i.e., $n _ { i ^ { * } } \geq n _ { i }$ for all $i$ (if there are multiple highest, let $i ^ { * }$ be any of them). Recall that erf is the error function, and erfc is the complement error function. + +Proposition 7 demonstrates that $q ( { \bar { n } } )$ bounds from above the probability that GNMax outputs anything but the highest coordinate of the histogram. + +Conditions C1, C7, and C8 follow by simple calculus $( q _ { 0 }$ , defined below, is at most 0.5). + +Functions $\mathrm { B } _ { \mathrm { L } } , \mathrm { B } _ { \mathrm { U } }$ , and conditions C2–C4. Recall that the functions $\mathrm { B _ { L } }$ and $\mathrm { B _ { U } }$ are defined in Appendix $\mathbf { B }$ as follows: + +$$ +\begin{array} { l } { { \displaystyle { \mathrm { B } } _ { \mathrm { U } } ( q ) \triangleq \operatorname* { m i n } \left\{ \frac { m - 1 } { 2 } \mathrm { e r f c } \left( \mathrm { e r f c } ^ { - 1 } \left( \frac { 2 q } { m - 1 } \right) - \frac { 1 } { \sigma } \right) , 1 \right\} , } } \\ { { \displaystyle { \mathrm { B } } _ { \mathrm { L } } ( q ) \triangleq \frac { m - 1 } { 2 } \mathrm { e r f c } \left( \mathrm { e r f c } ^ { - 1 } \left( \frac { 2 q } { m - 1 } \right) + \frac { 1 } { \sigma } \right) , } } \end{array} +$$ + +Proposition 21 (Condition C2). For any neighbor $\bar { n } ^ { \prime }$ of $\bar { n }$ , i.e., $d ( \bar { n } ^ { \prime } , \bar { n } ) = 1$ , the following bounds hold: + +$$ +\mathrm { B } _ { \mathrm { L } } ( q ( \bar { n } ) ) \leq q ( \bar { n } ^ { \prime } ) \leq \mathrm { B } _ { \mathrm { U } } ( q ( \bar { n } ) ) . +$$ + +Proof. Assume wlog that $i ^ { * } = 1$ . Let $x _ { i } \triangleq n _ { 1 } - n _ { i }$ and $q _ { i } \triangleq \mathrm { e r f c } ( x _ { i } / 2 \sigma ) / 2$ , and similarly define $\boldsymbol { x } _ { i } ^ { \prime }$ for $\bar { n } ^ { \prime }$ . Observe that $| x _ { i } - x _ { i } ^ { \prime } | \leq 2$ , which, by monotonicity of erfc, implies that + +$$ +{ \frac { 1 } { 2 } } \operatorname { e r f c } \left( { \frac { x _ { i } + 2 } { 2 \sigma } } \right) \leq q _ { i } ( { \bar { n } } ^ { \prime } ) \leq { \frac { 1 } { 2 } } \operatorname { e r f c } \left( { \frac { x _ { i } - 2 } { 2 \sigma } } \right) . +$$ + +Thus + +$$ +\frac { 1 } { 2 } \sum _ { i > 1 } \mathrm { e r f c } \left( \frac { x _ { i } + 2 } { 2 \sigma } \right) \leq q ( \bar { n } ^ { \prime } ) \leq \frac { 1 } { 2 } \sum _ { i > 1 } \mathrm { e r f c } \left( \frac { x _ { i } - 2 } { 2 \sigma } \right) . +$$ + +(Although $i ^ { * }$ may change between $\bar { n }$ and $\bar { n } ^ { \prime }$ , the bounds still hold.) + +Our first goal is to upper bound $q ( \bar { n } ^ { \prime } )$ for a given value of $q ( { \bar { n } } )$ . To this end we set up the following maximization problem + +$$ +\operatorname* { m a x } _ { \{ x _ { i } \} } { \frac { 1 } { 2 } } \sum _ { i > 1 } { \mathrm { e r f c } } \left( { \frac { x _ { i } - 2 } { 2 \sigma } } \right) { \mathrm { ~ s u c h ~ t h a t ~ } } { \frac { 1 } { 2 } } \sum _ { i > 1 } { \mathrm { e r f c } } \left( { \frac { x _ { i } } { 2 \sigma } } \right) = q { \mathrm { ~ a n d ~ } } x _ { i } \geq 0 . +$$ + +We may temporarily ignore the non-negative constraints, which end up being satisfied by our solution. Consider using the method of Lagrange multipliers and take a derivative in $x _ { i } { } ^ { \ ' }$ : + +$$ +\begin{array} { c } { \displaystyle - \exp \left( - \left( \frac { x _ { i } - 2 } { 2 \sigma } \right) ^ { 2 } \right) + \lambda \exp \left( - \left( \frac { x _ { i } } { 2 \sigma } \right) ^ { 2 } \right) = 0 } \\ { \displaystyle \Leftrightarrow \lambda = \exp \left( \frac { x _ { i } - 1 } { \sigma ^ { 2 } } \right) . } \end{array} +$$ + +Since the expression is symmetric in $i > 1$ , it means that the local optima are attained at $x _ { 2 } =$ $\cdots = x _ { m }$ (the second derivative confirms that these are local maxima). After solving for $( m -$ $1 ) \operatorname { e r f c } ( x / 2 \sigma ) = 2 q$ we have + +$$ +q ( \bar { n } ^ { \prime } ) \leq \frac { m - 1 } { 2 } \mathrm { e r f c } \left( \mathrm { e r f c ^ { - 1 } } \left( \frac { 2 q } { m - 1 } \right) - \frac { 1 } { \sigma } \right) . +$$ + +where $m$ is the number of classes. Similarly, + +$$ +q ( \bar { n } ^ { \prime } ) \geq \frac { m - 1 } { 2 } \mathrm { e r f c } \left( \mathrm { e r f c ^ { - 1 } } \left( \frac { 2 q } { m - 1 } \right) + \frac { 1 } { \sigma } \right) . +$$ + +Conditions C3, i.e., $\operatorname { B _ { L } } ( q )$ is monotonically increasing in $q$ , and $\mathrm { C 4 }$ , i.e., $\mathrm { B _ { L } }$ and $\mathrm { B _ { U } }$ are functional inverses of each other in $[ 0 , q _ { 0 } ]$ and $\mathrm { B } _ { \mathrm { L } } ( { \dot { q } } ) \leq q \leq \mathbf { \bar { B } } _ { \mathrm { U } } ( { \dot { q } } )$ for all $q \in [ 0 , 1 ]$ , follow from basic properties of erfc. The restriction that $q \in [ 0 , q _ { 0 } ]$ ensures that $\operatorname { B _ { U } } ( q )$ is strictly less than one, and the minimum in the definition of $\operatorname { B _ { U } } ( \cdot )$ simplifies to its first argument in this range. + +# B.4.2 CONDITIONS C5 AND C6 + +Conditions C5 and C6 stipulate that the function $\beta ( q ) \triangleq \beta _ { \sigma } ( q )$ (defined in Appendix A) exhibits a specific growth pattern. Concretely, C5 states that $\beta \left( q \right)$ is monotonically increasing for $0 \leq q \leq q _ { 0 }$ , and constant for $q _ { 0 } < q \leq 1$ . (Additionally, we require that $\mathrm { B _ { U } } ( q _ { 0 } ) < 1 )$ . Condition C6 requires that $\Delta \beta ( q ) = \beta ( \mathrm { B } _ { \mathrm { U } } ( q ) ) - \beta ( q )$ is non-decreasing in $[ 0 , \mathrm { B _ { L } } ( q _ { 0 } ) ]$ . + +Rather than proving these statements analytically, we check these assumptions for any fixed $\sigma$ and $\lambda$ via a combination of symbolic and numeric analyses. + +More concretely, we construct symbolic expressions for $\beta \left( \cdot \right)$ and $\Delta \beta \left( \cdot \right)$ and (symbolically) differentiate them. We then minimize (numerically) the resulting expressions over $[ 0 , q _ { 0 } ]$ and $[ 0 , \mathrm { B _ { L } } ( q _ { 0 } ) ]$ , and verify that their minimal values are indeed non-negative. + +# B.5 RÉNYI DIFFERENTIAL PRIVACY AND SMOOTH SENSITIVITY + +Although the procedure for computing a smooth sensitivity bound may be quite involved (such as Algorithms 3–5), its use in a differentially private data release is straightforward. Following Nissim et al. (2007), we define an additive Gaussian mechanism where the noise distribution is scaled by $\sigma$ and a smooth sensitivity bound: + +Definition 22. Given a real-valued function $f \colon { \mathcal { D } } \mathbb { R }$ and a $\beta$ -smooth sensitivity bound $\operatorname { S S } ( \cdot )$ , let $( \beta , \sigma )$ -GNSS mechanism be + +$$ +{ \mathcal { F } } _ { \sigma } ( D ) \triangleq f ( D ) + \operatorname { S S } _ { \beta } ( D ) \cdot { \mathcal { N } } ( 0 , \sigma ^ { 2 } ) . +$$ + +We claim that this mechanism satisfies Rényi differential privacy for finite orders from a certain range. + +Theorem 23. The $( \beta , \sigma )$ -GNSS mechanism ${ \mathcal { F } } _ { \sigma }$ is $( \lambda , \varepsilon )$ -RDP, where + +$$ +\varepsilon \triangleq { \frac { \lambda \cdot e ^ { 2 \beta } } { \sigma ^ { 2 } } } + { \frac { \beta \lambda - 0 . 5 \ln ( 1 - 2 \lambda \beta ) } { \lambda - 1 } } +$$ + +for all $1 < \lambda < 1 / ( 2 \beta )$ . + +Proof. Consider two neighboring datasets $D$ and $D ^ { \prime }$ . The output distributions of the $( \beta , \sigma )$ -GNSS mechanism on $D$ and $D ^ { \prime }$ are, respectively, + +$$ +P \triangleq f ( D ) + \mathrm { S S } _ { \beta } ( D ) \cdot { \mathcal { N } } ( 0 , \sigma ^ { 2 } ) = { \mathcal { N } } ( f ( D ) , ( \mathrm { S S } _ { \beta } ( D ) \sigma ) ^ { 2 } ) { \mathrm { ~ a n d ~ } } Q \triangleq { \mathcal { N } } ( f ( D ^ { \prime } ) , ( \mathrm { S S } _ { \beta } ( D ^ { \prime } ) \sigma ) ^ { 2 } ) . +$$ + +The Rényi divergence between two normal distributions can be computed in closed form (van Erven & Harremoës, 2014): + +$$ +D _ { \lambda } ( P \| Q ) = \lambda { \frac { ( f ( D ) - f ( D ^ { \prime } ) ) ^ { 2 } } { 2 \sigma ^ { 2 } s ^ { 2 } } } + { \frac { 1 } { 1 - \lambda } } \ln { \frac { s } { { \mathrm { S S } } _ { \beta } ( D ) ^ { 1 - \lambda } \cdot { \mathrm { S S } } _ { \beta } ( D ^ { \prime } ) ^ { \lambda } } } , +$$ + +provided $s ^ { 2 } \triangleq ( 1 - \lambda ) \cdot \mathrm { S S } _ { \beta } ( D ) ^ { 2 } + \lambda \cdot \mathrm { S S } _ { \beta } ( D ^ { \prime } ) ^ { 2 } > 0 .$ + +According to the definition of smooth sensitivity (Definition 12) + +$$ +e ^ { - \beta } \cdot \mathrm { S S } _ { \beta } ( D ) \leq \mathrm { S S } _ { \beta } ( D ^ { \prime } ) \leq e ^ { \beta } \cdot \mathrm { S S } _ { \beta } ( D ) , +$$ + +and + +$$ +| f ( D ) - f ( D ^ { \prime } ) | \leq e ^ { \beta } \cdot \operatorname * { m i n } ( \mathrm { S S } _ { \beta } ( D ) , \mathrm { S S } _ { \beta } ( D ^ { \prime } ) ) . +$$ + +Bound (12) together with the condition that $\lambda \le 1 / ( 2 \beta )$ implies that + +$$ +\begin{array} { r l } & { s ^ { 2 } = ( 1 - \lambda ) \cdot \operatorname { S S } _ { \beta } ( D ) ^ { 2 } + \lambda \cdot \operatorname { S S } _ { \beta } ( D ^ { \prime } ) ^ { 2 } = \operatorname { S S } _ { \beta } ( D ) ^ { 2 } + \lambda ( \operatorname { S S } _ { \beta } ( D ^ { \prime } ) ^ { 2 } - \operatorname { S S } _ { \beta } ( D ) ^ { 2 } ) } \\ & { \qquad \geq \operatorname { S S } _ { \beta } ( D ) ^ { 2 } ( 1 + \lambda ( e ^ { - 2 \beta } - 1 ) ) \geq \operatorname { S S } _ { \beta } ( D ) ^ { 2 } ( 1 - 2 \lambda \beta ) > 0 . } \end{array} +$$ + +The above lower bound ensures that $s ^ { 2 }$ is well-defined, i.e., non-negative, as required for application of (11). + +Combining bounds (12)– (14), we have that + +$$ +D _ { \lambda } ( P \| Q ) \le \frac { \lambda \cdot e ^ { 2 \beta } } { \sigma ^ { 2 } } + \frac { 1 } { 1 - \lambda } \ln \left\{ \frac { s } { \mathrm { S S } _ { \beta } ( D ) } e ^ { - \lambda \beta } \right\} \le \frac { \lambda \cdot e ^ { 2 \beta } } { \sigma ^ { 2 } } + \frac { \beta \lambda - 0 . 5 \ln ( 1 - 2 \lambda \beta ) } { \lambda - 1 } +$$ + +as claimed. + +Note that if $\lambda \gg 1$ , $\sigma \ll \lambda$ , and $\beta \ll 1 / ( 2 \lambda )$ , then $( \beta , \sigma )$ -GNSS satisfies $( \lambda , ( \lambda { + } 1 ) / \sigma ^ { 2 } )$ -RDP. Compare this with RDP analysis of the standard additive Gaussian mechanism, which satisfies $( \lambda , \lambda / \sigma ^ { 2 } )$ - RDP. The difference is that GNSS scales noise in proportion to smooth sensitivity, which is no larger and can be much smaller than global sensitivity. + +# B.6 PUTTING IT ALL TOGETHER: APPLYING SMOOTH SENSITIVITY + +Recall our initial motivation for the smooth sensitivity analysis: enabling privacy-preserving release of data-dependent privacy guarantees. Indeed, these guarantees vary greatly between queries (see Figure 5) and are typically much smaller than data-independent privacy bounds. Since datadependent bounds may leak information about underlying data, publishing the bounds themselves requires a differentially private mechanism. As we explain shortly, smooth sensitivity analysis is a natural fit for this task. + +We first consider the standard additive noise mechanism where the noise (such as Laplace or Gaussian) is calibrated to the global sensitivity of the function we would like to make differentially private. We know that Rényi differential privacy is additive for any fixed order $\lambda$ , and thus the cumulative RDP cost is the sum of RDP costs of individual queries each upper bounded by a dataindependent bound. Thus, it might be tempting to use the standard additive noise mechanism for sanitizing the total, but that would be a mistake. + +To see why, consider a sequence of queries $\bar { n } _ { 1 } , \ldots , \bar { n } _ { \ell }$ answered by the aggregator. Their total (unsanitized) RDP cost of order $\lambda$ is $\begin{array} { r } { B _ { \sigma } = \sum _ { i = 1 } ^ { \ell } \beta _ { \sigma } ( q ( \bar { n } _ { i } ) ) } \end{array}$ . Even though $\beta _ { \sigma } ( q ( \bar { n } _ { i } ) ) \leq \lambda / \sigma ^ { 2 }$ (the data-independent bound, Proposition 8), the sensitivity of their sum is not $\lambda / \sigma ^ { 2 }$ . The reason is that the (global) sensitivity is defined as the maximal difference in the function’s output between two neighboring datasets $D$ and $D ^ { \prime }$ . Transitioning from $D$ to $D ^ { \prime }$ may change one teacher’s output on all student queries. + +In contrast with the global sensitivity of $B _ { \sigma }$ that may be quite high—particularly for the second step of the Confident GNMax aggregator—its smooth sensitivity can be extremely small. Towards computing a smooth sensitivity bound on $B _ { \sigma }$ , we prove the following theorem which defines a smooth sensitivity of the sum in terms of local sensitivities of its parts. + +Theorem 24. Let $f _ { i } { : } \mathcal { D } \mathbb { R }$ for $1 \leq i \leq \ell _ { \mathrm { { i } } }$ , $\begin{array} { r } { F ( D ) \triangleq \sum _ { i = 1 } ^ { \ell } f _ { i } ( D ) } \end{array}$ and $\beta > 0$ . Then + +$$ +\mathrm { S S } ( D ) \triangleq \operatorname* { m a x } _ { d \geq 0 } e ^ { - \beta d } \cdot \sum _ { i = 1 } ^ { \ell } \operatorname* { m a x } _ { D ^ { \prime } : \mathrm { d i s t } ( D , D ^ { \prime } ) \leq d } \tilde { \mathrm { L S } } _ { f _ { i } } ( D ^ { \prime } ) , +$$ + +is a $\beta$ -smooth bound on $F ( \cdot ) i f \tilde { \mathrm { L S } } _ { f _ { i } } ( D ^ { \prime } )$ are upper bounds on the local sensitivity of $f _ { i } ( D ^ { \prime } )$ . + +Proof. We need to argue that $\operatorname { S S } ( { \mathord { \cdot } } )$ is $\beta$ -smooth, i.e., $\mathrm { S S } ( D _ { 1 } ) \le e ^ { \beta } \cdot \mathrm { S S } ( D _ { 2 } )$ for any neighboring $D _ { 1 } , D _ { 2 } \ \in \ { \mathcal { D } }$ , and it is an upper bound on the local sensitivity of $F ( D _ { 1 } )$ , i.e., $\mathrm { S S } ( D _ { 1 } ) \ \geq$ $| F ( D _ { 1 } ) - F ( D _ { 2 } ) |$ . + +Smoothness follows from the observation that + +$$ +\operatorname* { m a x } _ { D : \mathrm { d i s t } ( D _ { 1 } , D ) \leq d } \tilde { \mathrm { L S } } _ { f _ { i } } ( D ) \leq \operatorname* { m a x } _ { D : \mathrm { d i s t } ( D _ { 2 } , D ) \leq d + 1 } \tilde { \mathrm { L S } } _ { f _ { i } } ( D ) +$$ + +for all neighboring datasets $D _ { 1 }$ and $D _ { 2 }$ (by the triangle inequality over distances). Then + +$$ +\begin{array} { r l } & { \displaystyle \mathrm { S S } ( D _ { 1 } ) = \operatorname* { m a x } _ { d \geq 0 } e ^ { - \beta d } \cdot \sum _ { i = 1 } ^ { \ell } \operatorname* { m a x } _ { D : \mathrm { d i s t } ( D _ { 1 } , D ) \leq d } \mathrm { I } \tilde { \mathrm { S } S } _ { f _ { i } } ( D ) , } \\ & { \qquad \leq \displaystyle \operatorname* { m a x } _ { d \geq 0 } e ^ { - \beta d } \cdot \sum _ { i = 1 } ^ { \ell } \operatorname* { m a x } _ { D : \mathrm { d i s t } ( D _ { 2 } , D ) \leq d + 1 } \mathrm { I } \tilde { \mathrm { S } S } _ { f _ { i } } ( D ) } \\ & { \qquad = \displaystyle \operatorname* { m a x } _ { d \geq 1 } e ^ { - \beta ( d ^ { \prime } - 1 ) } \cdot \sum _ { i = 1 } ^ { \ell } \operatorname* { m a x } _ { D : \mathrm { d i s t } ( D _ { 2 } , D ) \leq d ^ { \prime } } \mathrm { I } \tilde { \mathrm { S } S } _ { f _ { i } } ( D ) } \\ & { \qquad \leq e ^ { \beta } \cdot \mathrm { S S } ( D _ { 2 } ) } \end{array} +$$ + +as needed for $\beta$ -smoothness. + +The fact that $\operatorname { S S } ( { \mathord { \cdot } } )$ is an upper bound on the local sensitivity of $F ( \cdot )$ is implied by the following: + +$$ +\begin{array} { r l } { \displaystyle | F ( D _ { 1 } ) - F ( D _ { 2 } ) | = \left| \displaystyle \sum _ { i = 1 } ^ { \ell } f _ { i } ( D _ { 1 } ) - \displaystyle \sum _ { i = 1 } ^ { \ell } f _ { i } ( D _ { 2 } ) \right| } & { } \\ { \displaystyle } & { \le \displaystyle \sum _ { i = 1 } ^ { \ell } | f _ { i } ( D _ { 1 } ) - f _ { i } ( D _ { 2 } ) | } \\ { \displaystyle } & { \le \displaystyle \sum _ { i = 1 } ^ { \ell } \mathrm { I } \tilde { \mathrm { S } } f _ { i } ( D _ { 1 } ) } \\ { \displaystyle } & { \le \mathrm { S S } ( D _ { 1 } ) , } \end{array} +$$ + +which concludes the proof. + +Applying Theorem 24 allows us to compute a smooth sensitivity of the sum more efficiently than summing up smooth sensitivities of its parts. Results below rely on this strategy. + +Empirical results. Table 2 revisits the privacy bounds in Table 1. For all data-dependent privacy claims of the Confident GNMax aggregator we report parameters for their smooth sensitivity analysis and results of applying the GNSS mechanism for their release. + +Consider the first row of the table. The MNIST dataset was partitioned among 250 teachers, each getting 200 training examples. After the teachers were individually trained, the student selected at random 640 unlabeled examples, and submitted them to the Confident GNMax aggregator with the threshold of 200, and noise parameters $\sigma _ { 1 } = 1 5 0$ and $\sigma _ { 2 } = 4 0 $ . The expected number of answered examples (those that passed the first step of Algorithm 1) is 283, and the expected Rényi differential privacy is $\varepsilon = 1 . 1 8$ at order $\lambda = 1 4$ . This translates (via Theorem 5) to $( 2 . 0 0 , 1 0 ^ { - 5 } )$ -differential privacy, where 2.00 is the expectation of the privacy parameter $\varepsilon$ . + +These costs are data-dependent and they cannot be released without further sanitization, which we handle by adding Gaussian noise scaled by the smooth sensitivity of $\varepsilon$ (the GNSS mechanism, Definition 22). At $\beta = 0 . 0 3 2 9$ the expected value of smooth sensitivity is 0.0618. We choose $\sigma _ { \mathrm { S S } } = 6 . 2 3$ , which incurs, according to Theorem 23, an additional (data-independent) (14, 0.52)- RDP cost. Applying $( \beta , \sigma _ { \mathrm { S S } } )$ -GNSS where $\sigma _ { \mathrm { S S } } ~ = ~ 6 . 2 3$ , we may publish differentially private estimate of the total privacy cost that consists of a fixed part—the cost of applying Confident GNMax and GNSS—and random noise. The fixed part is $2 . { \bar { 5 } } 2 = 1 . 1 8 + 0 . 5 2 { \stackrel { - } { - } } \mathrm { l n } ( 1 { \bar { 0 } } ^ { - 5 } ) / 1 4$ , and the noise is normally distributed with mean 0 and standard deviation $\sigma _ { \mathrm { S S } } \cdot 0 . 0 6 1 8 = 0 . 3 8 5$ . We note that, in contrast with the standard additive noise, one cannot publish its standard deviation without going through additional privacy analysis. + +Table 2: Privacy-preserving reporting of privacy costs. The table augments Table 1 by including smooth sensitivity analysis of the total privacy cost. The expectations are taken over the student’s queries and outcomes of the first step of the Confident GNMax aggregator. Order $\lambda$ , smooth sensitivity parameter $\beta$ , $\sigma _ { \mathrm { S S } }$ are parameters of the GNSS mechanism (Section B.5). The final column sums up the data-dependent cost $\varepsilon$ , the cost of applying GNSS (Theorem 23), and the standard deviation of Gaussian noise calibrated to smooth sensitivity (the product of $\mathbb { E }$ $[ \mathrm { S S } _ { \beta } ]$ and $\sigma _ { \mathrm { S S } }$ ). + +
DatasetConfident GNMax parametersDPE[e] 8Smooth Sensitivity入 B E[SSB] UssSanitized DPE[e]±noise
E[e]BE[SSB]
MNISTT=200,01=150,σ2=402.0010-514.0329.06186.232.52±0.385
SVHNT=300,01=200,02=404.9610-67.5.0533.07174.885.45± 0.350
AdultT=300,σ1=200,02=401.6810-515.5.03100.03327.922.09±0.263
GlyphT=1000,σ1=500,02=1002.0710-820.5.0205.012811.92.29±0.152
Two-round interactive0.83710-850.009.0027826.41.00± .081
.008.0008838.7
+ +Some of these constants were optimally chosen (via grid search or analytically) given full view of data, and thus provide a somewhat optimistic view of how this pipeline might perform in practice. For example, $\sigma _ { \mathrm { S S } }$ in Table 2 were selected to minimize the total privacy cost plus two standard deviation of the noise. + +The following rules of thumb may replace these laborious and privacy-revealing tuning procedures in typical use cases. The privacy parameter $\delta$ must be less than the inverse of the number of training examples. Giving a target $\varepsilon$ , the order $\lambda$ can be chosen so that $\log ( 1 / \delta ) \approx ( \lambda - 1 ) \varepsilon / 2$ , i.e., the cost of the $\delta$ contribution in Theorem 5 be roughly half of the total. The $\beta$ -smoothness parameter can be set to $0 . 4 / \lambda$ , from which smooth sensitivity ${ \mathrm { S S } } _ { \beta }$ can be estimated. The final parameter $\sigma _ { \mathrm { S S } }$ can be reasonably chosen between $2 \cdot \sqrt { ( \lambda + 1 ) / \varepsilon }$ and $4 \cdot \sqrt { ( \lambda + 1 ) / \varepsilon }$ (ensuring that the first, dominant component, of the cost of the GNSS mechanism given by Theorem 23 is between $\varepsilon / 1 6$ and $\varepsilon / 4$ ). \ No newline at end of file diff --git a/parse/train/rkZB1XbRZ/rkZB1XbRZ_content_list.json b/parse/train/rkZB1XbRZ/rkZB1XbRZ_content_list.json new file mode 100644 index 0000000000000000000000000000000000000000..6ed82d94887e00948f882bea58a7e3603eda03df --- /dev/null +++ b/parse/train/rkZB1XbRZ/rkZB1XbRZ_content_list.json @@ -0,0 +1,5256 @@ +[ + { + "type": "text", + "text": "SCALABLE PRIVATE LEARNING WITH PATE ", + "text_level": 1, + "bbox": [ + 176, + 99, + 700, + 121 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Nicolas Papernot∗ Pennsylvania State University ngp5056@cse.psu.edu ", + "bbox": [ + 183, + 145, + 382, + 186 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Shuang Song∗ University of California San Diego shs037@eng.ucsd.edu ", + "bbox": [ + 583, + 145, + 813, + 186 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Ilya Mironov, Ananth Raghunathan, Kunal Talwar & Úlfar Erlingsson ", + "text_level": 1, + "bbox": [ + 184, + 207, + 676, + 223 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Google Brain {mironov,pseudorandom,kunal,ulfar}@google.com ", + "bbox": [ + 184, + 224, + 553, + 250 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "ABSTRACT ", + "text_level": 1, + "bbox": [ + 454, + 277, + 544, + 292 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "The rapid adoption of machine learning has increased concerns about the privacy implications of machine learning models trained on sensitive data, such as medical records or other personal information. To address those concerns, one promising approach is Private Aggregation of Teacher Ensembles, or PATE, which transfers to a “student” model the knowledge of an ensemble of “teacher” models, with intuitive privacy provided by training teachers on disjoint data and strong privacy guaranteed by noisy aggregation of teachers’ answers. However, PATE has so far been evaluated only on simple classification tasks like MNIST, leaving unclear its utility when applied to larger-scale learning tasks and real-world datasets. ", + "bbox": [ + 233, + 309, + 764, + 434 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "In this work, we show how PATE can scale to learning tasks with large numbers of output classes and uncurated, imbalanced training data with errors. For this, we introduce new noisy aggregation mechanisms for teacher ensembles that are more selective and add less noise, and prove their tighter differential-privacy guarantees. Our new mechanisms build on two insights: the chance of teacher consensus is increased by using more concentrated noise and, lacking consensus, no answer need be given to a student. The consensus answers used are more likely to be correct, offer better intuitive privacy, and incur lower-differential privacy cost. Our evaluation shows our mechanisms improve on the original PATE on all measures, and scale to larger tasks with both high utility and very strong privacy $( \\varepsilon < 1 . 0 )$ . ", + "bbox": [ + 233, + 435, + 764, + 574 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1 INTRODUCTION ", + "text_level": 1, + "bbox": [ + 176, + 599, + 336, + 616 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Many attractive applications of modern machine-learning techniques involve training models using highly sensitive data. For example, models trained on people’s personal messages or detailed medical information can offer invaluable insights into real-world language usage or the diagnoses and treatment of human diseases (McMahan et al., 2017; Liu et al., 2017). A key challenge in such applications is to prevent models from revealing inappropriate details of the sensitive data—a nontrivial task, since models are known to implicitly memorize such details during training and also to inadvertently reveal them during inference (Zhang et al., 2017; Shokri et al., 2017). ", + "bbox": [ + 174, + 631, + 825, + 728 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Recently, two promising, new model-training approaches have offered the hope that practical, highutility machine learning may be compatible with strong privacy-protection guarantees for sensitive training data (Abadi et al., 2017). This paper revisits one of these approaches, Private Aggregation of Teacher Ensembles, or PATE (Papernot et al., 2017), and develops techniques that improve its scalability and practical applicability. PATE has the advantage of being able to learn from the aggregated consensus of separate “teacher” models trained on disjoint data, in a manner that both provides intuitive privacy guarantees and is agnostic to the underlying machine-learning techniques (cf. the approach of differentially-private stochastic gradient descent (Abadi et al., 2016)). In the PATE approach multiple teachers are trained on disjoint sensitive data (e.g., different users’ data), and uses the teachers’ aggregate consensus answers in a black-box fashion to supervise the training of a “student” model. By publishing only the student model (keeping the teachers private) and by adding carefully-calibrated Laplacian noise to the aggregate answers used to train the student, the original PATE work showed how to establish rigorous $( \\varepsilon , \\delta )$ differential-privacy guarantees (Papernot et al., 2017)—a gold standard of privacy (Dwork et al., 2006). However, to date, PATE has been applied to only simple tasks, like MNIST, without any realistic, larger-scale evaluation. ", + "bbox": [ + 174, + 736, + 825, + 902 + ], + "page_idx": 0 + }, + { + "type": "image", + "img_path": "images/c3594f071434de4b1002553d1654f0039070cda1d9541b55bc7bf757cdf4295c.jpg", + "image_caption": [ + "Figure 1: Our contributions are techniques (Confident-GNMax) that improve on the original PATE (LNMax) on all measures. Left: Accuracy is higher throughout training, despite greatly improved privacy (more in Table 1). Middle: The $\\varepsilon$ differential-privacy bound on privacy cost is quartered, at least (more in Figure 5). Right: Intuitive privacy is also improved, since students are trained on answers with a much stronger consensus among the teachers (more in Figure 5). These are results for a character-recognition task, using the most favorable LNMax parameters for a fair comparison. " + ], + "image_footnote": [], + "bbox": [ + 176, + 104, + 820, + 255 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 378, + 823, + 421 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "The techniques presented in this paper allow PATE to be applied on a larger scale to build more accurate models, in a manner that improves both on PATE’s intuitive privacy-protection due to the teachers’ independent consensus as well as its differential-privacy guarantees. As shown in our experiments, the result is a gain in privacy, utility, and practicality—an uncommon joint improvement. ", + "bbox": [ + 174, + 428, + 825, + 484 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "The primary technical contributions of this paper are new mechanisms for aggregating teachers’ answers that are more selective and add less noise. On all measures, our techniques improve on the original PATE mechanism when evaluated on the same tasks using the same datasets, as described in Section 5. Furthermore, we evaluate both variants of PATE on a new, large-scale character recognition task with 150 output classes, inspired by MNIST. The results show that PATE can be successfully utilized even to uncurated datasets—with significant class imbalance as well as erroneous class labels—and that our new aggregation mechanisms improve both privacy and model accuracy. ", + "bbox": [ + 173, + 492, + 825, + 589 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "To be more selective, our new mechanisms leverage some pleasant synergies between privacy and utility in PATE aggregation. For example, when teachers disagree, and there is no real consensus, the privacy cost is much higher; however, since such disagreement also suggest that the teachers may not give a correct answer, the answer may simply be omitted. Similarly, teachers may avoid giving an answer where the student already is confidently predicting the right answer. Additionally, we ensure that these selection steps are themselves done in a private manner. ", + "bbox": [ + 174, + 595, + 825, + 679 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "To add less noise, our new PATE aggregation mechanisms sample Gaussian noise, since the tails of that distribution diminish far more rapidly than those of the Laplacian noise used in the original PATE work. This reduction greatly increases the chance that the noisy aggregation of teachers’ votes results in the correct consensus answer, which is especially important when PATE is scaled to learning tasks with large numbers of output classes. However, changing the sampled noise requires redoing the entire PATE privacy analysis from scratch (see Section 4 and details in Appendix A). ", + "bbox": [ + 174, + 686, + 825, + 770 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Finally, of independent interest are the details of our evaluation extending that of the original PATE work. In particular, we find that the virtual adversarial training (VAT) technique of Miyato et al. (2017) is a good basis for semi-supervised learning on tasks with many classes, outperforming the improved GANs by Salimans et al. (2016) used in the original PATE work. Furthermore, we explain how to tune the PATE approach to achieve very strong privacy $\\langle \\varepsilon \\approx 1 . 0 $ ) along with high utility, for our real-world character recognition learning task. ", + "bbox": [ + 174, + 776, + 825, + 861 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "This paper is structured as follows: Section 2 is the related work section; Section 3 gives a background on PATE and an overview of our work; Section 4 describes our improved aggregation mechanisms; Section 5 details our experimental evaluation; Section 6 offers conclusions; and proofs are deferred to the Appendices. ", + "bbox": [ + 174, + 867, + 823, + 924 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2 RELATED WORK ", + "text_level": 1, + "bbox": [ + 176, + 102, + 344, + 117 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Differential privacy is by now the gold standard of privacy. It offers a rigorous framework whose threat model makes few assumptions about the adversary’s capabilities, allowing differentially private algorithms to effectively cope against strong adversaries. This is not the case of all privacy definitions, as demonstrated by successful attacks against anonymization techniques (Aggarwal, 2005; Narayanan & Shmatikov, 2008; Bindschaedler et al., 2017). ", + "bbox": [ + 174, + 132, + 823, + 202 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "The first learning algorithms adapted to provide differential privacy with respect to their training data were often linear and convex (Pathak et al., 2010; Chaudhuri et al., 2011; Song et al., 2013; Bassily et al., 2014; Hamm et al., 2016). More recently, successful developments in deep learning called for differentially private stochastic gradient descent algorithms (Abadi et al., 2016), some of which have been tailored to learn in federated (McMahan et al., 2017) settings. ", + "bbox": [ + 174, + 209, + 825, + 279 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Differentially private selection mechanisms like GNMax (Section 4.1) are commonly used in hypothesis testing, frequent itemset mining, and as building blocks of more complicated private mechanisms. The most commonly used differentially private selection mechanisms are exponential mechanism (McSherry & Talwar, 2007) and LNMax (Bhaskar et al., 2010). Recent works offer lower bounds on sample complexity of such problem (Steinke & Ullman, 2017; Bafna & Ullman, 2017). ", + "bbox": [ + 174, + 286, + 825, + 356 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "The Confident and Interactive Aggregator proposed in our work (Section 4.2 and Section 4.3 resp.) use the intuition that selecting samples under certain constraints could result in better training than using samples uniformly at random. In Machine Learning Theory, active learning (Cohn et al., 1994) has been shown to allow learning from fewer labeled examples than the passive case (see e.g. Hanneke (2014)). Similarly, in model stealing (Tramèr et al., 2016), a goal is to learn a model from limited access to a teacher network. There is previous work in differential privacy literature (Hardt & Rothblum, 2010; Roth & Roughgarden, 2010) where the mechanism first decides whether or not to answer a query, and then privately answers the queries it chooses to answer using a traditional noiseaddition mechanism. In these cases, the sparse vector technique (Dwork & Roth, 2014, Chapter 3.6) helps bound the privacy cost in terms of the number of answered queries. This is in contrast to our work where a constant fraction of queries get answered and the sparse vector technique does not seem to help reduce the privacy cost. Closer to our work, Bun et al. (2017) consider a setting where the answer to a query of interest is often either very large or very small. They show that a sparse vector-like analysis applies in this case, where one pays only for queries that are in the middle. ", + "bbox": [ + 174, + 363, + 825, + 558 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "3 BACKGROUND AND OVERVIEW", + "text_level": 1, + "bbox": [ + 176, + 577, + 464, + 593 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "We introduce essential components of our approach towards a generic and flexible framework for machine learning with provable privacy guarantees for training data. ", + "bbox": [ + 174, + 608, + 821, + 637 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "3.1 THE PATE FRAMEWORK ", + "text_level": 1, + "bbox": [ + 174, + 652, + 387, + 667 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Here, we provide an overview of the PATE framework. To protect the privacy of training data during learning, PATE transfers knowledge from an ensemble of teacher models trained on partitions of the data to a student model. Privacy guarantees may be understood intuitively and expressed rigorously in terms of differential privacy. ", + "bbox": [ + 174, + 679, + 823, + 734 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Illustrated in Figure 2, the PATE framework consists of three key parts: (1) an ensemble of $n$ teacher models, (2) an aggregation mechanism and (3) a student model. ", + "bbox": [ + 173, + 742, + 821, + 770 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Teacher models: Each teacher is a model trained independently on a subset of the data whose privacy one wishes to protect. The data is partitioned to ensure no pair of teachers will have trained on overlapping data. Any learning technique suitable for the data can be used for any teacher. Training each teacher on a partition of the sensitive data produces $n$ different models solving the same task. At inference, teachers independently predict labels. ", + "bbox": [ + 174, + 776, + 823, + 847 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Aggregation mechanism: When there is a strong consensus among teachers, the label they almost all agree on does not depend on the model learned by any given teacher. Hence, this collective decision is intuitively private with respect to any given training point—because such a point could have been included only in one of the teachers’ training set. To provide rigorous guarantees of differential privacy, the aggregation mechanism of the original PATE framework counts votes assigned to each class, adds carefully calibrated Laplacian noise to the resulting vote histogram, and outputs the class with the most noisy votes as the ensemble’s prediction. This mechanism is referred to as the max-of-Laplacian mechanism, or LNMax, going forward. ", + "bbox": [ + 174, + 854, + 823, + 924 + ], + "page_idx": 2 + }, + { + "type": "image", + "img_path": "images/cf30449e1809aaac1394f2000d5e2e0328dac51fa491f501a52adfbb7f7f5f83.jpg", + "image_caption": [ + "Figure 2: Overview of the approach: (1) an ensemble of teachers is trained on disjoint subsets of the sensitive data, (2) a student model is trained on public data labeled using the ensemble. " + ], + "image_footnote": [], + "bbox": [ + 173, + 99, + 823, + 231 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "", + "bbox": [ + 173, + 299, + 825, + 342 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "For samples $x$ and classes $1 , \\ldots , m$ , let $f _ { j } ( x ) \\in [ m ]$ denote the $j$ -th teacher model’s prediction and $n _ { i }$ denote the vote count for the $i$ -th class (i.e., $n _ { i } \\triangleq | f _ { j } ( x ) = i | )$ . The output of the mechanism is $A ( x ) \\triangleq \\mathrm { a r g m a x } _ { i } \\left( n _ { i } ( x ) + \\mathrm { L a p } \\left( 1 / \\gamma \\right) \\right)$ . Through a rigorous analysis of this mechanism, the PATE framework provides a differentially private API: the privacy cost of each aggregated prediction made by the teacher ensemble is known. ", + "bbox": [ + 173, + 347, + 825, + 422 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Student model: PATE’s final step involves the training of a student model by knowledge transfer from the teacher ensemble using access to public—but unlabeled—data. To limit the privacy cost of labeling them, queries are only made to the aggregation mechanism for a subset of public data to train the student in a semi-supervised way using a fixed number of queries. The authors note that every additional ensemble prediction increases the privacy cost spent and thus cannot work with unbounded queries. Fixed queries fixes privacy costs as well as diminishes the value of attacks analyzing model parameters to recover training data (Zhang et al., 2017). The student only sees public data and privacy-preserving labels. ", + "bbox": [ + 173, + 429, + 825, + 541 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "3.2 DIFFERENTIAL PRIVACY ", + "text_level": 1, + "bbox": [ + 176, + 560, + 383, + 575 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Differential privacy (Dwork et al., 2006) requires that the sensitivity of the distribution of an algorithm’s output to small perturbations of its input be limited. The following variant of the definition captures this intuition formally: ", + "bbox": [ + 173, + 587, + 825, + 630 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Definition 1. A randomized mechanism $\\mathcal { M }$ with domain $\\mathcal { D }$ and range $\\mathcal { R }$ satisfies $( \\varepsilon , \\delta )$ -differential privacy if for any two adjacent inputs $D , D ^ { \\prime } \\in \\mathcal { D }$ and for any subset of outputs $S \\subseteq \\mathcal { R }$ it holds that: ", + "bbox": [ + 173, + 635, + 825, + 665 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/12979c49c250a2723edad1ae58606c8f87d2f3d130dffd2cbb50985c8126f2ba.jpg", + "text": "$$\n\\mathbf { P r } [ \\mathcal { M } ( D ) \\in S ] \\leq e ^ { \\varepsilon } \\cdot \\mathbf { P r } [ \\mathcal { M } ( D ^ { \\prime } ) \\in S ] + \\delta .\n$$", + "text_format": "latex", + "bbox": [ + 348, + 679, + 650, + 696 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "For our application of differential privacy to $\\mathbf { M L }$ , adjacent inputs are defined as two datasets that only differ by one training example and the randomized mechanism $\\mathcal { M }$ would be the model training algorithm. The privacy parameters have the following natural interpretation: $\\varepsilon$ is an upper bound on the loss of privacy, and $\\delta$ is the probability with which this guarantee may not hold. Composition theorems (Dwork & Roth, 2014) allow us to keep track of the privacy cost when we run a sequence of mechanisms. ", + "bbox": [ + 173, + 709, + 825, + 794 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "3.3 RÉNYI DIFFERENTIAL PRIVACY ", + "text_level": 1, + "bbox": [ + 176, + 813, + 433, + 828 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Papernot et al. (2017) note that the natural approach to bounding PATE’s privacy loss—by bounding the privacy cost of each label queried and using strong composition (Dwork et al., 2010) to derive the total cost—yields loose privacy guarantees. Instead, their approach uses data-dependent privacy analysis. This takes advantage of the fact that when the consensus among the teachers is very strong, the plurality outcome has overwhelming likelihood leading to a very small privacy cost whenever the consensus occurs. To capture this effect quantitatively, Papernot et al. (2017) rely on the moments ", + "bbox": [ + 173, + 839, + 825, + 924 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "accountant, introduced by Abadi et al. (2016) and building on previous work (Bun & Steinke, 2016; \nDwork & Rothblum, 2016). ", + "bbox": [ + 173, + 103, + 823, + 132 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "In this section, we recall the language of Rényi Differential Privacy or RDP (Mironov, 2017). RDP generalizes pure differential privacy $( \\delta = 0$ ) and is closely related to the moments accountant. We choose to use RDP as a more natural analysis framework when dealing with our mechanisms that use Gaussian noise. Defined below, the RDP of a mechanism is stated in terms of the Rényi divergence. ", + "bbox": [ + 173, + 138, + 825, + 195 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Definition 2 (Rényi Divergence). The Rényi divergence of order $\\lambda$ between two distributions $P$ and $Q$ is defined as: ", + "bbox": [ + 171, + 220, + 823, + 250 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/2833cd11ea8904210efe029dea7861485a696b6e7ec3ca58de8c17d7a2a3ca0f.jpg", + "text": "$$\nD _ { \\lambda } ( P \\| Q ) \\triangleq \\frac { 1 } { \\lambda - 1 } \\log \\mathbb { E } _ { x \\sim Q } \\left[ \\left( P ( x ) / Q ( x ) \\right) ^ { \\lambda } \\right] = \\frac { 1 } { \\lambda - 1 } \\log \\mathbb { E } _ { x \\sim P } \\left[ \\left( P ( x ) / Q ( x ) \\right) ^ { \\lambda - 1 } \\right] .\n$$", + "text_format": "latex", + "bbox": [ + 202, + 256, + 792, + 287 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Definition 3 (Rényi Differential Privacy (RDP)). A randomized mechanism $\\mathcal { M }$ is said to guarantee $( \\lambda , \\varepsilon )$ -RDP with $\\lambda \\geq 1$ if for any neighboring datasets $D$ and $D ^ { \\prime }$ , ", + "bbox": [ + 171, + 306, + 825, + 337 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/59ce3452b2e6918b11844f0e00eac3acf9ac2839f7c608efca7c9fe35c61566e.jpg", + "text": "$$\nD _ { \\lambda } ( { \\mathcal M } ( D ) \\| { \\mathcal M } ( D ^ { \\prime } ) ) = \\frac { 1 } { \\lambda - 1 } \\log \\mathbb { E } _ { x \\sim { \\mathcal M } ( D ) } \\left[ \\left( \\frac { { \\mathbf { P r } } \\left[ { \\mathcal M } ( D ) = x \\right] } { { \\mathbf { P r } } \\left[ { \\mathcal M } ( D ^ { \\prime } ) = x \\right] } \\right) ^ { \\lambda - 1 } \\right] \\le \\varepsilon .\n$$", + "text_format": "latex", + "bbox": [ + 236, + 343, + 761, + 386 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "RDP generalizes pure differential privacy in the sense that $\\varepsilon$ -differential privacy is equivalent to $( \\infty , \\varepsilon )$ -RDP. Mironov (2017) proves the following key facts that allow easy composition of RDP guarantees and their conversion to $( \\varepsilon , \\delta )$ -differential privacy bounds. ", + "bbox": [ + 174, + 398, + 823, + 443 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Theorem 4 (Composition). If a mechanism $\\mathcal { M }$ consists of a sequence of adaptive mechanisms $\\mathcal { M } _ { 1 } , \\ldots , \\mathcal { M } _ { k }$ such that for any $\\textit { i } \\in \\ [ k ]$ , $\\mathcal { M } _ { i }$ guarantees $( \\lambda , \\varepsilon _ { i } ) – R D P ,$ then $\\mathcal { M }$ guarantees $( \\lambda , \\sum _ { i = 1 } ^ { k } \\varepsilon _ { i } ) – R D P$ . ", + "bbox": [ + 174, + 445, + 825, + 492 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Theorem 5 (From RDP to DP). If a mechanism $\\mathcal { M }$ guarantees $( \\lambda , \\varepsilon )$ -RDP, then $\\mathcal { M }$ guarantees $\\begin{array} { r } { ( \\varepsilon + \\frac { \\log { 1 / \\delta } } { \\lambda - 1 } , \\delta ) } \\end{array}$ -differential privacy for any $\\delta \\in ( 0 , 1 )$ . ", + "bbox": [ + 173, + 505, + 821, + 537 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "While both $( \\varepsilon , \\delta )$ -differential privacy and RDP are relaxations of pure $\\varepsilon$ -differential privacy, the two main advantages of RDP are as follows. First, it composes nicely; second, it captures the privacy guarantee of Gaussian noise in a much cleaner manner compared to $( \\varepsilon , \\delta )$ -differential privacy. This lets us do a careful privacy analysis of the GNMax mechanism as stated in Theorem 6. While the analysis of Papernot et al. (2017) leverages the first aspect of such frameworks with the Laplace noise (LNMax mechanism), our analysis of the GNMax mechanism relies on both. ", + "bbox": [ + 174, + 550, + 825, + 636 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "3.4 PATE AGGREGATION MECHANISMS ", + "text_level": 1, + "bbox": [ + 176, + 652, + 464, + 666 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "The aggregation step is a crucial component of PATE. It enables knowledge transfer from the teachers to the student while enforcing privacy. We improve the LNMax mechanism used by Papernot et al. (2017) which adds Laplace noise to teacher votes and outputs the class with the highest votes. ", + "bbox": [ + 174, + 679, + 823, + 722 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "First, we add Gaussian noise with an accompanying privacy analysis in the RDP framework. This modification effectively reduces the noise needed to achieve the same privacy cost per student query. ", + "bbox": [ + 171, + 728, + 823, + 756 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Second, the aggregation mechanism is now selective: teacher votes are analyzed to decide which student queries are worth answering. This takes into account both the privacy cost of each query and its payout in improving the student’s utility. Surprisingly, our analysis shows that these two metrics are not at odds and in fact align with each other: the privacy cost is the smallest when teachers agree, and when teachers agree, the label is more likely to be correct thus being more useful to the student. ", + "bbox": [ + 174, + 762, + 825, + 833 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Third, we propose and study an interactive mechanism that takes into account not only teacher votes on a queried example but possible student predictions on that query. Now, queries worth answering are those where the teachers agree on a class but the student is not confident in its prediction on that class. This third modification aligns the two metrics discussed above even further: queries where the student already agrees with the consensus of teachers are not worth expending our privacy budget on, but queries where the student is less confident are useful and answered at a small privacy cost. ", + "bbox": [ + 173, + 840, + 825, + 924 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "3.5 DATA-DEPENDENT PRIVACY IN PATE ", + "text_level": 1, + "bbox": [ + 176, + 103, + 473, + 117 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "A direct privacy analysis of the aggregation mechanism, for reasonable values of the noise parameter, allows answering only few queries before the privacy cost becomes prohibitive. The original PATE proposal used a data-dependent analysis, exploiting the fact that when the teachers have large agreement, the privacy cost is usually much smaller than the data-independent bound would suggest. ", + "bbox": [ + 174, + 130, + 823, + 185 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "In our work, we perform a data-dependent privacy analysis of the aggregation mechanism with Gaussian noise. This change of noise distribution turns out be technically much more challenging than the Laplace noise case and we defer the details to Appendix A. This increased complexity of the analysis however does not make the algorithm any more complicated and thus allows us to improve the privacy-utility tradeoff. ", + "bbox": [ + 174, + 193, + 825, + 262 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Sanitizing the privacy cost via smooth sensitivity analysis. An additional challenge with datadependent privacy analyses arises from the fact that the privacy cost itself is now a function of the private data. Further, the data-dependent bound on the privacy cost has large global sensitivity (a metric used in differential privacy to calibrate the noise injected) and is therefore difficult to sanitize. To remedy this, we use the smooth sensitivity framework proposed by Nissim et al. (2007). ", + "bbox": [ + 174, + 276, + 823, + 347 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Appendix B describes how we add noise to the computed privacy cost using this framework to publish a sanitized version of the privacy cost. Section B.1 defines smooth sensitivity and outlines algorithms 3–5 that compute it. The rest of Appendix B argues the correctness of these algorithms. The final analysis shows that the incremental cost of sanitizing our privacy estimates is modest— less than $50 \\%$ of the raw estimates—thus enabling us to use precise data-dependent privacy analysis while taking into account its privacy implications. ", + "bbox": [ + 174, + 353, + 825, + 438 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "4 IMPROVED AGGREGATION MECHANISMS FOR PATE ", + "text_level": 1, + "bbox": [ + 176, + 457, + 638, + 473 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "The privacy guarantees provided by PATE stem from the design and analysis of the aggregation step. Here, we detail our improvements to the mechanism used by Papernot et al. (2017). As outlined in Section 3.4, we first replace the Laplace noise added to teacher votes with Gaussian noise, adapting the data-dependent privacy analysis. Next, we describe the Confident and Interactive Aggregators that select queries worth answering in a privacy-preserving way: the privacy budget is shared between the query selection and answer computation. The aggregators use different heuristics to select queries: the former does not take into account student predictions, while the latter does. ", + "bbox": [ + 174, + 486, + 825, + 584 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "4.1 THE GNMAX AGGREGATOR AND ITS PRIVACY GUARANTEE ", + "text_level": 1, + "bbox": [ + 174, + 599, + 633, + 614 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "This section uses the following notation. For a sample $x$ and classes 1 to $m$ , let $f _ { j } ( x ) \\in [ m ]$ denote the $j$ -th teacher model’s prediction on $x$ and $n _ { i } ( x )$ denote the vote count for the $i$ -th class (i.e., $n _ { i } ( \\dot { x } ) = | \\{ j \\colon f _ { j } ( x ) = i \\} | ,$ ). We define a Gaussian NoisyMax (GNMax) aggregation mechanism as: ", + "bbox": [ + 173, + 626, + 825, + 669 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/4a4c91a2cc69835b4d1b2e632c0c3d1ded1433478a169dcc26724b5737b7fdda.jpg", + "text": "$$\n\\mathcal { M } _ { \\sigma } ( \\boldsymbol { x } ) \\stackrel { \\triangle } { = } \\operatorname * { a r g m a x } _ { i } \\left\\{ n _ { i } ( \\boldsymbol { x } ) + \\mathcal { N } ( 0 , \\sigma ^ { 2 } ) \\right\\} ,\n$$", + "text_format": "latex", + "bbox": [ + 361, + 671, + 635, + 698 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "where ${ \\mathcal { N } } ( 0 , \\sigma ^ { 2 } )$ is the Gaussian distribution with mean 0 and variance $\\sigma ^ { 2 }$ . The aggregator outputs the class with noisy plurality after adding Gaussian noise to each vote count. In what follow, plurality more generally refers to the highest number of teacher votes assigned among the classes. ", + "bbox": [ + 174, + 700, + 825, + 742 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "The Gaussian distribution is more concentrated than the Laplace distribution used by Papernot et al. (2017). This concentration directly improves the aggregation’s utility when the number of classes $m$ is large. The GNMax mechanism satisfies $( \\lambda , \\lambda / \\bar { \\sigma ^ { 2 } } )$ -RDP, which holds for all inputs and all $\\lambda \\geq 1$ (precise statements and proofs of claims in this section are deferred to Appendix A). A straightforward application of composition theorems leads to loose privacy bounds. As an example, the standard advanced composition theorem applied to experiments in the last two rows of Table 1 would give us $\\varepsilon = 8 . 4 2$ and $\\varepsilon = 1 0 . 1 4$ resp. at $\\delta = 1 0 ^ { - 8 }$ for the Glyph dataset. ", + "bbox": [ + 173, + 750, + 825, + 848 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "To refine these, we work out a careful data-dependent analysis that yields values of $\\varepsilon$ smaller than 1 for the same $\\delta$ . The following theorem translates data-independent RDP guarantees for higher orders into a data-dependent RDP guarantee for a smaller order $\\lambda$ . We use it in conjunction with Proposition 7 to bound the privacy cost of each query to the GNMax algorithm as a function of $\\tilde { q }$ , the probability that the most common answer will not be output by the mechanism. ", + "bbox": [ + 174, + 853, + 823, + 924 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Theorem 6 (informal). Let $\\mathcal { M }$ be a randomized algorithm with $( \\mu _ { 1 } , \\varepsilon _ { 1 } ) – R D P$ and $\\left( \\mu _ { 2 } , \\varepsilon _ { 2 } \\right)$ - $R D P$ guarantees and suppose that given a dataset $D$ , there exists a likely outcome $i ^ { * }$ such that $\\mathbf { P r } \\left[ \\mathcal { M } ( D ) \\neq i ^ { * } \\right] \\leq \\tilde { q }$ . Then the data-dependent Rényi differential privacy for $\\mathcal { M }$ of order $\\lambda \\leq \\mu _ { 1 } , \\mu _ { 2 }$ at $D$ is bounded by a function of $\\tilde { q } , \\mu _ { 1 } , \\varepsilon _ { 1 } , \\mu _ { 2 } , \\varepsilon _ { 2 }$ , which approaches $O$ as $\\tilde { q } 0$ . ", + "bbox": [ + 174, + 103, + 823, + 160 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "The new bound improves on the data-independent privacy for $\\lambda$ as long as the distribution of the algorithm’s output on that input has a strong peak (i.e., $\\tilde { q } \\ll 1 .$ ). Values of $\\tilde { q }$ close to 1 could result in a looser bound. Therefore, in practice we take the minimum between this bound and $\\lambda / \\sigma ^ { 2 }$ (the data-independent one). The theorem generalizes Theorem 3 from Papernot et al. (2017), where it was shown for a mechanism satisfying $\\varepsilon$ -differential privacy (i.e., $\\mu _ { 1 } = \\mu _ { 2 } = \\infty$ and $\\varepsilon _ { 1 } = \\varepsilon _ { 2 }$ ). ", + "bbox": [ + 174, + 169, + 825, + 239 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "The final step in our analysis uses the following lemma to bound the probability $\\tilde { q }$ when $i ^ { * }$ corresponds to the class with the true plurality of teacher votes. ", + "bbox": [ + 174, + 246, + 821, + 273 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Proposition 7. For any erfc is the complementar $i ^ { * } \\in [ m ]$ , we have nction. $\\begin{array} { r } { \\mathbf { P r } \\left[ \\mathcal { M } _ { \\sigma } ( D ) \\neq i ^ { * } \\right] \\ \\leq \\ \\frac { 1 } { 2 } \\sum _ { i \\neq i ^ { * } } } \\end{array}$ erfc $\\left( { \\frac { n _ { i ^ { * } } - n _ { i } } { 2 \\sigma } } \\right)$ , where ", + "bbox": [ + 174, + 275, + 821, + 306 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "In Appendix A, we detail how these results translate to privacy bounds. In short, for each query to the GNMax aggregator, given teacher votes $n _ { i }$ and the class $i ^ { * }$ with maximal support, Proposition 7 gives us the value of $\\tilde { q }$ to use in Theorem 6. We optimize over $\\mu _ { 1 }$ and $\\mu _ { 2 }$ to get a data-dependent RDP guarantee for any order $\\lambda$ . Finally, we use composition properties of RDP to analyze a sequence of queries, and translate the RDP bound back to an $( \\varepsilon , \\delta )$ -DP bound. ", + "bbox": [ + 174, + 315, + 825, + 386 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Expensive queries. This data-dependent privacy analysis leads us to the concept of an expensive query in terms of its privacy cost. When teacher votes largely disagree, some $n _ { i ^ { * } } - n _ { i }$ values may be small leading to a large value for $\\tilde { q }$ : i.e., the lack of consensus amongst teachers indicates that the aggregator is likely to output a wrong label. Thus expensive queries from a privacy perspective are often bad for training too. Conversely, queries with strong consensus enable tight privacy bounds. This synergy motivates the aggregation mechanisms discussed in the following sections: they evaluate the strength of the consensus before answering a query. ", + "bbox": [ + 174, + 400, + 825, + 497 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "4.2 THE CONFIDENT-GNMAX AGGREGATOR ", + "text_level": 1, + "bbox": [ + 176, + 513, + 498, + 527 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "In this section, we propose a refinement of the GNMax aggregator that enables us to filter out queries for which teachers do not have a sufficiently strong consensus. This filtering enables the teachers to avoid answering expensive queries. We also take note to do this selection step itself in a private manner. ", + "bbox": [ + 174, + 539, + 825, + 594 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "The proposed Confident Aggregator is described in Algorithm 1. To select queries with overwhelming consensus, the algorithm checks if the plurality vote crosses a threshold $T$ . To enforce privacy in this step, the comparison is done after adding Gaussian noise with variance $\\sigma _ { 1 } ^ { 2 }$ . Then, for queries that pass this noisy threshold check, the aggregator proceeds with the usual GNMax mechanism with a smaller variance $\\sigma _ { 2 } ^ { 2 }$ . For queries that do not pass the noisy threshold check, the aggregator simply returns $\\perp$ and the student discards this example in its training. ", + "bbox": [ + 174, + 602, + 823, + 686 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "In practice, we often choose significantly higher values for $\\sigma _ { 1 }$ compared to $\\sigma _ { 2 }$ . This is because we pay the cost of the noisy threshold check always, and without the benefit of knowing that the consensus is strong. We pick $T$ so that queries where the plurality gets less than half the votes (often very expensive) are unlikely to pass the threshold after adding noise, but we still have a high enough yield amongst the queries with a strong consensus. This tradeoff leads us to look for $T$ ’s between $0 . 6 \\times$ to $0 . 8 \\times$ the number of teachers. ", + "bbox": [ + 174, + 693, + 825, + 776 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "The privacy cost of this aggregator is intuitive: we pay for the threshold check for every query, and for the GNMax step only for queries that pass the check. In the work of Papernot et al. (2017), the mechanism paid a privacy cost for every query, expensive or otherwise. In comparison, the Confident Aggregator expends a much smaller privacy cost to check against the threshold, and by answering a significantly smaller fraction of expensive queries, it expends a lower privacy cost overall. ", + "bbox": [ + 174, + 784, + 825, + 853 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "4.3 THE INTERACTIVE-GNMAX AGGREGATOR ", + "text_level": 1, + "bbox": [ + 174, + 869, + 514, + 883 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "While the Confident Aggregator excludes expensive queries, it ignores the possibility that the student might receive labels that contribute little to learning, and in turn to its utility. By incorporating the ", + "bbox": [ + 176, + 895, + 823, + 924 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Algorithm 1 – Confident-GNMax Aggregator: given a query, consensus among teachers is first estimated in a privacy-preserving way to then only reveal confident teacher predictions. ", + "bbox": [ + 169, + 103, + 825, + 133 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Input: input $x$ , threshold $T$ , noise parameters $\\sigma _ { 1 }$ and $\\sigma _ { 2 }$ \n1: if $\\begin{array} { r } { \\operatorname* { m a x } _ { i } \\{ n _ { j } ( x ) \\} + \\mathcal { N } ( 0 , \\sigma _ { 1 } ^ { 2 } ) \\geq T } \\end{array}$ then \n2: return argmaxj $\\{ n _ { j } ( x ) + \\mathcal { N } ( 0 , \\sigma _ { 2 } ^ { 2 } ) \\}$ \n3: else \n4: return ⊥ \n5: end if ", + "bbox": [ + 174, + 137, + 547, + 222 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "$\\triangleright$ Privately check for consensus . Run the usual max-of-Gaussian ", + "bbox": [ + 601, + 151, + 823, + 180 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Algorithm 2 – Interactive-GNMax Aggregator: the protocol first compares student predictions to the teacher votes in a privacy-preserving way to then either (a) reinforce the student prediction for the given query or (b) provide the student with a new label predicted by the teachers. ", + "bbox": [ + 174, + 243, + 821, + 285 + ], + "page_idx": 7 + }, + { + "type": "table", + "img_path": "images/83ff1bf00c04742bdda765bdc63164649d546b4cb06e3b13fa1550a0567c9a63.jpg", + "table_caption": [], + "table_footnote": [], + "table_body": "
Input: input x,confidence γ,threshold T,noise parameters O1 ando2,total number of teachers M
1:Ask the student to provide prediction scores p(x) 2:if maxj{nj(x)-Mpj(x)}+N(0,o²)≥Tthen >Student does not agree with teachers
3: return argmaxj{nj(x) +N(0,0²)}
4: else if max{pi(x)}> γ then > Student agrees with teachers and is confident
5: return arg maxj Pj(x)
Reinforce student's prediction 6: else return⊥ No output given for this label
", + "bbox": [ + 178, + 290, + 825, + 421 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "student’s current predictions for its public training data, we design an Interactive Aggregator that discards queries where the student already confidently predicts the same label as the teachers. ", + "bbox": [ + 176, + 449, + 821, + 477 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Given a set of queries, the Interactive Aggregator (Algorithm 2) selects those answered by comparing student predictions to teacher votes for each class. Similar to Step 1 in the Confident Aggregator, queries where the plurality of these noised differences crosses a threshold are answered with GNMax. This noisy threshold suffices to enforce privacy of the first step because student predictions can be considered public information (the student is trained in a differentially private manner). ", + "bbox": [ + 174, + 484, + 825, + 554 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "For queries that fail this check, the mechanism reinforces the predicted student label if the student is confident enough and does this without looking at teacher votes again. This limited form of supervision comes at a small privacy cost. Moreover, the order of the checks ensures that a student falsely confident in its predictions on a query is not accidentally reinforced if it disagrees with the teacher consensus. The privacy accounting is identical to the Confident Aggregator except in considering the difference between teachers and the student instead of only the teachers votes. ", + "bbox": [ + 174, + 560, + 825, + 645 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "In practice, the Confident Aggregator can be used to start training a student when it can make no meaningful predictions and training can be finished off with the Interactive Aggregator after the student gains some proficiency. ", + "bbox": [ + 176, + 651, + 821, + 694 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "5 EXPERIMENTAL EVALUATION ", + "text_level": 1, + "bbox": [ + 176, + 717, + 450, + 732 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Our goal is first to show that the improved aggregators introduced in Section 4 enable the application of PATE to uncurated data, thus departing from previous results on tasks with balanced and wellseparated classes. We experiment with the Glyph dataset described below to address two aspects left open by Papernot et al. (2017): (a) the performance of PATE on a task with a larger number of classes (the framework was only evaluated on datasets with at most 10 classes) and (b) the privacy-utility tradeoffs offered by PATE on data that is class imbalanced and partly mislabeled. In Section 5.2, we evaluate the improvements given by the GNMax aggregator over its Laplace counterpart (LNMax) and demonstrate the necessity of the Gaussian mechanism for uncurated tasks. ", + "bbox": [ + 174, + 750, + 825, + 861 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "In Section 5.3, we then evaluate the performance of PATE with both the Confident and Interactive Aggregators on all datasets used to benchmark the original PATE framework, in addition to Glyph. With the right teacher and student training, the two mechanisms from Section 4 achieve high accuracy with very tight privacy bounds. Not answering queries for which teacher consensus is too low (Confident-GNMax) or the student’s predictions already agree with teacher votes (InteractiveGNMax) better aligns utility and privacy: queries are answered at a significantly reduced cost. ", + "bbox": [ + 176, + 867, + 823, + 924 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "", + "bbox": [ + 173, + 103, + 821, + 132 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "5.1 EXPERIMENTAL SETUP ", + "text_level": 1, + "bbox": [ + 176, + 150, + 375, + 164 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "MNIST, SVHN, and the UCI Adult databases. We evaluate with two computer vision tasks (MNIST and Street View House Numbers (Netzer et al., 2011)) and census data from the UCI Adult dataset (Kohavi, 1996). This enables a comparative analysis of the utility-privacy tradeoff achieved with our Confident-GNMax aggregator and the LNMax originally used in PATE. We replicate the experimental setup and results found in Papernot et al. (2017) with code and teacher votes made available online. The source code for the privacy analysis in this paper as well as supporting data required to run this analysis is available on Github.1 ", + "bbox": [ + 174, + 176, + 825, + 273 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "A detailed description of the experimental setup can be found in Papernot et al. (2017); we provide here only a brief overview. For MNIST and SVHN, teachers are convolutional networks trained on partitions of the training set. For UCI Adult, each teacher is a random forest. The test set is split in two halves: the first is used as unlabeled inputs to simulate the student’s public data and the second is used as a hold out to evaluate test performance. The MNIST and SVHN students are convolutional networks trained using semi-supervised learning with GANs à la Salimans et al. (2016). The student for the Adult dataset are fully supervised random forests. ", + "bbox": [ + 174, + 281, + 825, + 377 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Glyph. This optical character recognition task has an order of magnitude more classes than all previous applications of PATE. The Glyph dataset also possesses many characteristics shared by real-world tasks: e.g., it is imbalanced and some inputs are mislabeled. Each input is a $2 8 \\times 2 8$ grayscale image containing a single glyph generated synthetically from a collection of over 500K computer fonts.2 Samples representative of the difficulties raised by the data are depicted in Figure 3. The task is to classify inputs as one of the 150 Unicode symbols used to generate them. ", + "bbox": [ + 174, + 395, + 825, + 478 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "This set of 150 classes results from pre-processing efforts. We discarded additional classes that had few samples; some classes had at least 50 times fewer inputs than the most popular classes, and these were almost exclusively incorrectly labeled inputs. We also merged classes that were too ambiguous for even a human to differentiate them. Nevertheless, a manual inspection of samples grouped by classes—favorably to the human observer—led to the conservative estimate that some classes remain 5 times more frequent, and mislabeled inputs represent at least $1 0 \\%$ of the data. ", + "bbox": [ + 174, + 484, + 823, + 569 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "To simulate the availability of private and public data (see Section 3.1), we split data originally marked as the training set (about 65M points) into partitions given to the teachers. Each teacher is a ResNet (He et al., 2016) made of 32 leaky ReLU layers. We train on batches of 100 inputs for 40K steps using SGD with momentum. The learning rate, initially set to 0.1, is decayed after 10K steps to 0.01 and again after 20K steps to 0.001. These parameters were found with a grid search. ", + "bbox": [ + 174, + 575, + 825, + 645 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "We split holdout data in two subsets of 100K and 400K samples: the first acts as public data to train the student and the second as its testing data. The student architecture is a convolutional network learnt in a semi-supervised fashion with virtual adversarial training (VAT) from Miyato et al. (2017). Using unlabeled data, we show how VAT can regularize the student by making predictions constant in adversarial3 directions. Indeed, we found that GANs did not yield as much utility for Glyph as for MNIST or SVHN. We train with Adam for 400 epochs and a learning rate of $6 \\cdot \\mathrm { i 0 ^ { - 5 } }$ . ", + "bbox": [ + 174, + 651, + 825, + 736 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "5.2 COMPARING THE LNMAX AND GNMAX MECHANISMS ", + "text_level": 1, + "bbox": [ + 173, + 753, + 598, + 768 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Section 4.1 introduces the GNMax mechanism and the accompanying privacy analysis. With a Gaussian distribution, whose tail diminishes more rapidly than the Laplace distribution, we expect better utility when using the new mechanism (albeit with a more involved privacy analysis). ", + "bbox": [ + 176, + 780, + 823, + 821 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "To study the tradeoff between privacy and accuracy with the two mechanisms, we run experiments training several ensembles of $M$ teachers for $M \\in \\{ 1 0 0 , 5 0 0 , 1 0 0 0 , 5 0 0 0 \\}$ on the Glyph data. Recall that 65 million training inputs are partitioned and distributed among the $M$ teachers with each teacher receiving between 650K and 13K inputs for the values of $M$ above. The test data is used to query the teacher ensemble and the resulting labels (after the LNMax and GNMax mechanisms) are compared with the ground truth labels provided in the dataset. This predictive performance of the teachers is essential to good student training with accurate labels and is a useful proxy for utility. ", + "bbox": [ + 173, + 829, + 821, + 858 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 103, + 823, + 174 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "For each mechanism, we compute $( \\varepsilon , \\delta )$ -differential privacy guarantees. As is common in literature, for a dataset on the order of $\\bar { 1 0 } ^ { 8 }$ samples, we choose $\\delta = \\bar { 1 0 } ^ { - 8 }$ and denote the corresponding $\\varepsilon$ as the privacy cost. The total $\\varepsilon$ is calculated on a subset of 4,000 queries, which is representative of the number of labels needed by a student for accurate training (see Section 5.3). We visualize in Figure 4 the effect of the noise distribution (left) and the number of teachers (right) on the tradeoff between privacy costs and label accuracy. ", + "bbox": [ + 174, + 180, + 825, + 263 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Observations. On the left of Figure 1, we compare our GNMax aggregator to the LNMax aggregator used by the original PATE proposal, on an ensemble of 1000 teachers and for varying noise scales $\\sigma$ . At fixed test accuracy, the GNMax algorithm consistently outperforms the LNMax mechanism in terms of privacy cost. To explain this improved performance, recall notation from Section 4.1. For both mechanisms, the data dependent privacy cost scales linearly with $\\tilde { q }$ —the likelihood of an answer other than the true plurality. The value of $\\tilde { q }$ falls of as $\\exp ( - x ^ { 2 } )$ for GNMax and $\\exp ( - x )$ for LNMax, where $x$ is the ratio $( \\dot { n _ { i ^ { * } } } - n _ { i } ) / \\sigma$ . Thus, when $n _ { i ^ { * } } - n _ { i }$ is (say) $4 \\sigma$ , LNMax would have $\\tilde { q } \\approx e ^ { - 4 } = 0 . 0 1 8 . . .$ , whereas GNMax would have $\\tilde { q } \\approx e ^ { - 1 6 } \\approx 1 0 ^ { - 7 }$ , thereby leading to a much higher likelihood of returning the true plurality. Moreover, this reduced $\\tilde { q }$ translates to a smaller privacy cost for a given $\\sigma$ leading to a better utility-privacy tradeoff. ", + "bbox": [ + 173, + 279, + 825, + 417 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "As long as each teacher has sufficient data to learn a good-enough model, increasing the number $M$ of teachers improves the tradeoff—as illustrated on the right of Figure 4 with GNMax. The larger ensembles lower the privacy cost of answering queries by tolerating larger $\\sigma$ ’s. Combining the two observations made in this Figure, for a fixed label accuracy, we lower privacy costs by switching to the GNMax aggregator and training a larger number $M$ of teachers. ", + "bbox": [ + 174, + 425, + 825, + 494 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "5.3 STUDENT TRAINING WITH THE GNMAX AGGREGATION MECHANISMS ", + "text_level": 1, + "bbox": [ + 176, + 511, + 704, + 526 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "As outlined in Section 3, we train a student on public data labeled by the aggregation mechanisms. We take advantage of PATE’s flexibility and apply the technique that performs best on each dataset: semi-supervised learning with Generative Adversarial Networks (Salimans et al., 2016) for MNIST and SVHN, Virtual Adversarial Training (Miyato et al., 2017) for Glyph, and fully-supervised random forests for UCI Adult. In addition to evaluating the total privacy cost associated with training the student model, we compare its utility to a non-private baseline obtained by training on the sensitive data (used to train teachers in PATE): we use the baselines of $9 9 . 2 \\%$ , $9 2 . 8 \\%$ , and $8 \\bar { 5 } . 0 \\%$ reported by Papernot et al. (2017) respectively for MNIST, SVHN, and UCI Adult, and we measure a baseline of $8 2 . 2 \\%$ for Glyph. We compute $( \\varepsilon , \\delta )$ -privacy bounds and denote the privacy cost as the $\\varepsilon$ value at a value of $\\delta$ set accordingly to number of training samples. ", + "bbox": [ + 174, + 537, + 825, + 676 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Confident-GNMax Aggregator. Given a pool of 500 to 12,000 samples to learn from (depending on the dataset), the student submits queries to the teacher ensemble running the Confident-GNMax aggregator from Section 4.2. A grid search over a range of plausible values for parameters $T$ , $\\sigma _ { 1 }$ and $\\sigma _ { 2 }$ yielded the values reported in Table 1, illustrating the tradeoff between utility and privacy achieved. We additionally measure the number of queries selected by the teachers to be answered and compare student utility to a non-private baseline. ", + "bbox": [ + 174, + 693, + 823, + 775 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "The Confident-GNMax aggregator outperforms LNMax for the four datasets considered in the original PATE proposal: it reduces the privacy cost $\\varepsilon$ , increases student accuracy, or both simultaneously. On the uncurated Glyph data, despite the imbalance of classes and mislabeled data (as evidenced by the $8 2 . 2 \\%$ baseline), the Confident Aggregator achieves $7 3 . 5 \\%$ accuracy with a privacy cost of just $\\varepsilon = 1 . 0 2$ . Roughly 1,300 out of 12,000 queries made are not answered, indicating that several expensive queries were successfully avoided. This selectivity is analyzed in more details in Section 5.4. ", + "bbox": [ + 174, + 782, + 825, + 880 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Interactive-GNMax Aggregator. On Glyph, we evaluate the utility and privacy of an interactive training routine that proceeds in two rounds. Round one runs student training with a Confident ", + "bbox": [ + 173, + 895, + 823, + 922 + ], + "page_idx": 9 + }, + { + "type": "image", + "img_path": "images/d270152f7c17f085f2cee4456268e4219f503a77e8dcdf8de8b64c5993292fbd.jpg", + "image_caption": [ + "Figure 3: Some example inputs from the Glyph dataset along with the class they are labeled as. Note the ambiguity (between the comma and apostrophe) and the mislabeled input. " + ], + "image_footnote": [], + "bbox": [ + 184, + 125, + 815, + 179 + ], + "page_idx": 10 + }, + { + "type": "image", + "img_path": "images/f4997f073b1076ba805de8a9ddcd3d2383564828e765f3fc31b4702724545c1a.jpg", + "image_caption": [ + "Figure 4: Tradeoff between utility and privacy for the LNMax and GNMax aggregators on Glyph: effect of the noise distribution (left) and size of the teacher ensemble (right). The LNMax aggregator uses a Laplace distribution and GNMax a Gaussian. Smaller values of the privacy cost $\\varepsilon$ (often obtained by increasing the noise scale $\\sigma$ —see Section 4) and higher accuracy are better. " + ], + "image_footnote": [], + "bbox": [ + 179, + 292, + 795, + 460 + ], + "page_idx": 10 + }, + { + "type": "table", + "img_path": "images/8e92244f3fdd03fa403a3649965f3ceb1cee716bc56e27716bdce5b29bca1956.jpg", + "table_caption": [ + "Table 1: Utility and privacy of the students. The Confident- and Interactive-GNMax aggregators introduced in Section 4 offer better tradeoffs between privacy (characterized by the value of the bound $\\varepsilon$ ) and utility (the accuracy of the student compared to a non-private baseline) than the LNMax aggregator used by the original PATE proposal on all datasets we evaluated with. For MNIST, Adult, and SVHN, we use the labels of ensembles of 250 teachers published by Papernot et al. (2017) and set $\\delta = 1 0 ^ { - 5 }$ to compute values of $\\varepsilon$ (to the exception of SVHN where $\\dot { \\delta _ { \\mathrm { } } } = 1 \\dot { 0 } ^ { - 6 }$ ). All Glyph results use an ensemble of 5000 teachers and $\\varepsilon$ is computed for $\\delta = 1 0 ^ { - 8 }$ . " + ], + "table_footnote": [], + "table_body": "
DatasetAggregatorQueriesansweredPrivacybound ε Accuracy Student Baseline
MNISTLNMax (Papernot et al., 2017)1002.0498.0%99.2%
LNMax (Papernot et al., 2017)1,0008.0398.1%
Confident-GNMax (T=200,σ1=150,σ2=40)2861.9798.5%
SVHNLNMax (Papernot et al., 2017)5005.0482.7%92.8%
LNMax (Papernot et al., 2017)1,0008.1990.7%
Confident-GNMax (T=300,σ1=200,σ2=40)3,0984.9691.6%
AdultLNMax (Papernot et al., 2017)5002.6683.0%85.0%
Confident-GNMax (T=300,σ1=200,σ2=40)5241.9083.7%
GlyphLNMax4,0004.372.4%82.2%
Confident-GNMax (T=1000,σ1=500,σ2=100)10,7622.0375.5%
Interactive-GNMax, two rounds4,3410.83773.2%
", + "bbox": [ + 179, + 579, + 813, + 790 + ], + "page_idx": 10 + }, + { + "type": "image", + "img_path": "images/f72de51ac7ee4d0828ee09d5df565ae82b67c263c68a756a789f784dcfd9507d.jpg", + "image_caption": [ + "Figure 5: Effects of the noisy threshold checking: Left: The number of queries answered by LNMax, Confident-GNMax moderate $\\scriptstyle { T = 3 5 0 0 }$ , $\\sigma _ { 1 } { = } 1 5 0 0$ ), and Confident-GNMax aggressive ( ${ T } \\mathrm { { = } } 5 0 0 0$ , $\\sigma _ { 1 } { = } 1 5 0 0$ ). The black dots and the right axis (in log scale) show the expected cost of answering a single query in each bin (via GNMax, $\\sigma _ { 2 } { = } 1 0 0$ ). Right: Privacy cost of answering all (LNMax) vs only inexpensive queries (GNMax) for a given number of answered queries. The very dark area under the curve is the cost of selecting queries; the rest is the cost of answering them. " + ], + "image_footnote": [], + "bbox": [ + 176, + 101, + 813, + 286 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Aggregator. A grid search targeting the best privacy for roughly 3,400 answered queries (out of 6,000)—sufficient to bootstrap a student—led us to setting ( $\\scriptstyle { T = 3 5 0 0 }$ , $\\sigma _ { 1 } { = } 1 5 0 0$ , $\\sigma _ { 2 } { = } 1 0 0 $ ) and a privacy cost of $\\varepsilon \\approx 0 . 5 9$ . ", + "bbox": [ + 174, + 416, + 823, + 458 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "In round two, this student was then trained with 10,000 more queries made with the InteractiveGNMax Aggregator $\\scriptstyle { T = 3 5 0 0 }$ , $\\sigma _ { 1 } { = } 2 0 0 0$ , $\\sigma _ { 2 } { = } 2 0 0$ ). We computed the resulting (total) privacy cost and utility at an exemplar data point through another grid search of plausible parameter values. The result appears in the last row of Table 1. With just over 10,422 answered queries in total at a privacy cost of $\\varepsilon = 0 . 8 4$ , the trained student was able to achieve $7 3 . 2 \\%$ accuracy. Note that this students required fewer answered queries compared to the Confident Aggregator. The best overall cost of student training occurred when the privacy costs for the first and second rounds of training were roughly the same. (The total $\\varepsilon$ is less than $0 . 5 9 \\times 2 = 1 . 1 8$ due to better composition—via Theorems 4 and 5.) ", + "bbox": [ + 174, + 465, + 825, + 590 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Comparison with Baseline. Note that the Glyph student’s accuracy remains seven percentage points below the non-private model’s accuracy achieved by training on the 65M sensitive inputs. We hypothesize that this is due to the uncurated nature of the data considered. Indeed, the class imbalance naturally requires more queries to return labels from the less represented classes. For instance, a model trained on 200K queries is only $7 7 \\%$ accurate on test data. In addition, the large fraction of mislabeled inputs are likely to have a large privacy cost: these inputs are sensitive because they are outliers of the distribution, which is reflected by the weak consensus among teachers on these inputs. ", + "bbox": [ + 174, + 613, + 825, + 724 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "5.4 NOISY THRESHOLD CHECKS AND PRIVACY COSTS ", + "text_level": 1, + "bbox": [ + 174, + 748, + 566, + 762 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Sections 4.1 and 4.2 motivated the need for a noisy threshold checking step before having the teachers answer queries: it prevents most of the privacy budget being consumed by few queries that are expensive and also likely to be incorrectly answered. In Figure 5, we compare the privacy cost $\\varepsilon$ of answering all queries to only answering confident queries for a fixed number of queries. ", + "bbox": [ + 174, + 776, + 823, + 833 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "We run additional experiments to support the evaluation from Section 5.3. With the votes of 5,000 teachers on the Glyph dataset, we plot in Figure 5 the histogram of the plurality vote counts $( n _ { i ^ { * } }$ in the notation of Section 4.1) across 25,000 student queries. We compare these values to the vote counts of queries that passed the noisy threshold check for two sets of parameters $T$ and $\\sigma _ { 1 }$ in Algorithm 1. Smaller values imply weaker teacher agreements and consequently more expensive queries. ", + "bbox": [ + 174, + 840, + 823, + 924 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "When $\\scriptstyle { T = 3 5 0 0 }$ , $\\sigma _ { 1 } { = } 1 5 0 0$ ) we capture a significant fraction of queries where teachers have a strong consensus (roughly $> 4 0 0 0$ votes) while managing to filter out many queries with poor consensus. This moderate check ensures that although many queries with plurality votes between 2,500 and 3,500 are answered (i.e., only $5 0 \\mathrm { - } 7 0 \\%$ of teachers agree on a label) the expensive ones are most likely discarded. For ( $\\scriptstyle { T = 5 0 0 0 }$ , $\\sigma _ { 1 } { = } 1 5 0 0$ ), queries with poor consensus are completely culled out. This selectivity comes at the expense of a noticeable drop for queries that might have had a strong consensus and little-to-no privacy cost. Thus, this aggressive check answer fewer queries with very strong privacy guarantees. We reiterate that this threshold checking step itself is done in a private manner. Empirically, in our Interactive Aggregator experiments, we expend about a third to a half of our privacy budget on this step, which still yields a very small cost per query across 6,000 queries. ", + "bbox": [ + 174, + 103, + 825, + 242 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "6 CONCLUSIONS ", + "text_level": 1, + "bbox": [ + 176, + 262, + 328, + 279 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "The key insight motivating the addition of a noisy thresholding step to the two aggregation mechanisms proposed in our work is that there is a form of synergy between the privacy and accuracy of labels output by the aggregation: labels that come at a small privacy cost also happen to be more likely to be correct. As a consequence, we are able to provide more quality supervision to the student by choosing not to output labels when the consensus among teachers is too low to provide an aggregated prediction at a small cost in privacy. This observation was further confirmed in some of our experiments where we observed that if we trained the student on either private or non-private labels, the former almost always gave better performance than the latter—for a fixed number of labels. ", + "bbox": [ + 174, + 294, + 825, + 406 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Complementary with these aggregation mechanisms is the use of a Gaussian (rather than Laplace) distribution to perturb teacher votes. In our experiments with Glyph data, these changes proved essential to preserve the accuracy of the aggregated labels—because of the large number of classes. The analysis presented in Section 4 details the delicate but necessary adaptation of analogous results for the Laplace NoisyMax. ", + "bbox": [ + 174, + 412, + 825, + 482 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "As was the case for the original PATE proposal, semi-supervised learning was instrumental to ensure the student achieves strong utility given a limited set of labels from the aggregation mechanism. However, we found that virtual adversarial training outperforms the approach from Salimans et al. (2016) in our experiments with Glyph data. These results establish lower bounds on the performance that a student can achieve when supervised with our aggregation mechanisms; future work may continue to investigate virtual adversarial training, semi-supervised generative adversarial networks and other techniques for learning the student in these particular settings with restricted supervision. ", + "bbox": [ + 174, + 489, + 825, + 587 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "ACKNOWLEDGMENTS ", + "text_level": 1, + "bbox": [ + 176, + 608, + 356, + 622 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "We are grateful to Martín Abadi, Vincent Vanhoucke, and Daniel Levy for their useful inputs and discussions towards this paper. ", + "bbox": [ + 173, + 638, + 823, + 667 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "REFERENCES ", + "text_level": 1, + "bbox": [ + 176, + 102, + 285, + 117 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Martín Abadi, Andy Chu, Ian Goodfellow, H Brendan McMahan, Ilya Mironov, Kunal Talwar, and Li Zhang. Deep learning with differential privacy. In Proceedings of the 2016 ACM SIGSAC Conference on Computer and Communications Security, pp. 308–318. ACM, 2016. ", + "bbox": [ + 178, + 126, + 823, + 169 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Martín Abadi, Úlfar Erlingsson, Ian Goodfellow, H. Brendan McMahan, Nicolas Papernot, Ilya Mironov, Kunal Talwar, and Li Zhang. On the protection of private information in machine learning systems: Two recent approaches. In 2017 IEEE 30th Computer Security Foundations Symposium (CSF), pp. 1–6, 2017. ", + "bbox": [ + 174, + 179, + 826, + 236 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Charu C Aggarwal. On $k$ -anonymity and the curse of dimensionality. In Proceedings of the 31st International Conference on Very large Data Bases, pp. 901–909. VLDB Endowment, 2005. ", + "bbox": [ + 171, + 244, + 823, + 275 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Mitali Bafna and Jonathan Ullman. The price of selection in differential privacy. In Proceedings of the 2017 Conference on Learning Theory (COLT), volume 65 of Proceedings of Machine Learning Research, pp. 151–168, July 2017. ", + "bbox": [ + 173, + 284, + 826, + 327 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Raef Bassily, Adam Smith, and Abhradeep Thakurta. Private empirical risk minimization: Efficient algorithms and tight error bounds. In Proceedings of the 2014 IEEE 55th Annual Symposium on Foundations of Computer Science (FOCS), pp. 464–473, 2014. ISBN 978-1-4799-6517-5. ", + "bbox": [ + 174, + 335, + 826, + 378 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Raghav Bhaskar, Srivatsan Laxman, Adam Smith, and Abhradeep Thakurta. Discovering frequent patterns in sensitive data. In Proceedings of the 16th ACM SIGKDD international conference on Knowledge discovery and data mining, pp. 503–512. ACM, 2010. ", + "bbox": [ + 176, + 388, + 823, + 431 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Battista Biggio, Igino Corona, Davide Maiorca, Blaine Nelson, Nedim Šrndic, Pavel Laskov, Gior- ´ gio Giacinto, and Fabio Roli. Evasion attacks against machine learning at test time. In Joint European Conference on Machine Learning and Knowledge Discovery in Databases, pp. 387– 402, 2013. ", + "bbox": [ + 173, + 440, + 825, + 498 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Vincent Bindschaedler, Reza Shokri, and Carl A Gunter. Plausible deniability for privacy-preserving data synthesis. Proceedings of the VLDB Endowment, 10(5), 2017. ", + "bbox": [ + 173, + 507, + 821, + 537 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Mark Bun and Thomas Steinke. Concentrated differential privacy: Simplifications, extensions, and lower bounds. In Theory of Cryptography Conference (TCC), pp. 635–658, 2016. ", + "bbox": [ + 173, + 546, + 821, + 577 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Mark Bun, Thomas Steinke, and Jonathan Ullman. Make up your mind: The price of online queries in differential privacy. In Proceedings of the Twenty-Eighth Annual ACM-SIAM Symposium on Discrete Algorithms, pp. 1306–1325. SIAM, 2017. ", + "bbox": [ + 174, + 584, + 825, + 627 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Kamalika Chaudhuri, Claire Monteleoni, and Anand D Sarwate. Differentially private empirical risk minimization. Journal of Machine Learning Research, 12(Mar):1069–1109, 2011. ", + "bbox": [ + 173, + 636, + 825, + 666 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "David Cohn, Les Atlas, and Richard Ladner. Improving generalization with active learning. Machine learning, 15(2):201–221, 1994. ", + "bbox": [ + 174, + 675, + 825, + 704 + ], + "page_idx": 13 + }, + { + "type": "text", + "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. ", + "bbox": [ + 171, + 713, + 823, + 743 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Cynthia Dwork and Guy N Rothblum. Concentrated differential privacy. arXiv preprint arXiv:1603.01887, 2016. ", + "bbox": [ + 171, + 752, + 825, + 781 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Cynthia Dwork, Frank McSherry, Kobbi Nissim, and Adam Smith. Calibrating noise to sensitivity in private data analysis. In Proceedings of the Third Conference on Theory of Cryptography (TCC), volume 3876, pp. 265–284, 2006. ", + "bbox": [ + 173, + 790, + 825, + 833 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Cynthia Dwork, Guy N Rothblum, and Salil Vadhan. Boosting and differential privacy. In Proceedings of the 51st Annual IEEE Symposium on Foundations of Computer Science (FOCS), pp. 51–60, 2010. ", + "bbox": [ + 173, + 843, + 823, + 886 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Jihun Hamm, Yingjun Cao, and Mikhail Belkin. Learning privately from multiparty data. In International Conference on Machine Learning (ICML), pp. 555–563, 2016. ", + "bbox": [ + 173, + 895, + 821, + 924 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Steve Hanneke. Theory of disagreement-based active learning. Foundations and Trends in Machine Learning, 7(2-3):131–309, 2014. ", + "bbox": [ + 173, + 103, + 823, + 132 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Moritz Hardt and Guy N Rothblum. A multiplicative weights mechanism for privacy-preserving data analysis. In 51st Annual IEEE Symposium on Foundations of Computer Science (FOCS), pp. 61–70, 2010. ", + "bbox": [ + 173, + 140, + 823, + 183 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. In 2016 IEEE Conference on Computer Vision and Pattern Recognition (CVPR), pp. 770–778, 2016. ", + "bbox": [ + 173, + 190, + 823, + 233 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Ron Kohavi. Scaling up the accuracy of Naive-Bayes classifiers: A decision-tree hybrid. In KDD, volume 96, pp. 202–207, 1996. ", + "bbox": [ + 171, + 241, + 823, + 270 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Yun Liu, Krishna Gadepalli, Mohammad Norouzi, George E Dahl, Timo Kohlberger, Aleksey Boyko, Subhashini Venugopalan, Aleksei Timofeev, Philip Q Nelson, Greg S Corrado, et al. Detecting cancer metastases on gigapixel pathology images. arXiv preprint arXiv:1703.02442, 2017. ", + "bbox": [ + 174, + 277, + 825, + 334 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "H Brendan McMahan, Daniel Ramage, Kunal Talwar, and Li Zhang. Learning differentially private language models without losing accuracy. arXiv preprint arXiv:1710.06963, 2017. ", + "bbox": [ + 171, + 342, + 823, + 372 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Frank McSherry and Kunal Talwar. Mechanism design via differential privacy. In Proceedings of the 48th Annual IEEE Symposium on Foundations of Computer Science (FOCS), pp. 94–103, 2007. ", + "bbox": [ + 171, + 378, + 823, + 409 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Ilya Mironov. Rényi differential privacy. In 2017 IEEE 30th Computer Security Foundations Symposium (CSF), pp. 263–275, 2017. ", + "bbox": [ + 171, + 415, + 823, + 445 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Takeru Miyato, Shin-ichi Maeda, Masanori Koyama, and Shin Ishii. Virtual adversarial training: a regularization method for supervised and semi-supervised learning. arXiv preprint arXiv:1704.03976, 2017. ", + "bbox": [ + 173, + 452, + 823, + 494 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Arvind Narayanan and Vitaly Shmatikov. Robust de-anonymization of large sparse datasets. In Proceedings of the 2008 IEEE Symposium on Security and Privacy, pp. 111–125. IEEE, 2008. ", + "bbox": [ + 168, + 502, + 825, + 532 + ], + "page_idx": 14 + }, + { + "type": "text", + "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 Workshop on Deep Learning and Unsupervised Feature Learning, pp. 5, 2011. ", + "bbox": [ + 174, + 539, + 825, + 583 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Kobbi Nissim, Sofya Raskhodnikova, and Adam Smith. Smooth sensitivity and sampling in private data analysis. In Proceedings of the Thirty-ninth Annual ACM Symposium on Theory of Computing (STOC), pp. 75–84, 2007. ", + "bbox": [ + 174, + 589, + 825, + 633 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Nicolas Papernot, Martín Abadi, Úlfar Erlingsson, Ian Goodfellow, and Kunal Talwar. Semisupervised knowledge transfer for deep learning from private training data. In Proceedings of the 5th International Conference on Learning Representations (ICLR), 2017. ", + "bbox": [ + 174, + 641, + 823, + 685 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Manas Pathak, Shantanu Rane, and Bhiksha Raj. Multiparty differential privacy via aggregation of locally trained classifiers. In Advances in Neural Information Processing Systems, pp. 1876–1884, 2010. ", + "bbox": [ + 174, + 693, + 823, + 734 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Aaron Roth and Tim Roughgarden. Interactive privacy via the median mechanism. In Proceedings of the Forty-second ACM Symposium on Theory of Computing (STOC), pp. 765–774, 2010. ", + "bbox": [ + 169, + 742, + 825, + 773 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Tim Salimans, Ian Goodfellow, Wojciech Zaremba, Vicki Cheung, Alec Radford, and Xi Chen. Improved techniques for training GANs. In Advances in Neural Information Processing Systems, pp. 2234–2242, 2016. ", + "bbox": [ + 173, + 780, + 825, + 823 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Reza Shokri, Marco Stronati, Congzheng Song, and Vitaly Shmatikov. Membership inference attacks against machine learning models. In Proceedings of the 2017 IEEE Symposium on Security and Privacy, pp. 3–18. IEEE, 2017. ", + "bbox": [ + 174, + 830, + 823, + 873 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Shuang Song, Kamalika Chaudhuri, and Anand D Sarwate. Stochastic gradient descent with differentially private updates. In 2013 IEEE Global Conference on Signal and Information Processing, pp. 245–248, 2013. ", + "bbox": [ + 174, + 881, + 823, + 924 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Thomas Steinke and Jonathan Ullman. Tight lower bounds for differentially private selection. In 58th IEEE Annual Symposium on Foundations of Computer Science (FOCS), pp. 552–563, 2017. ", + "bbox": [ + 171, + 103, + 825, + 132 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Christian Szegedy, Wojciech Zaremba, Ilya Sutskever, Joan Bruna, Dumitru Erhan, Ian Goodfellow, and Rob Fergus. Intriguing properties of neural networks. In Proceedings of the 2nd International Conference on Learning Representations (ICLR), 2014. ", + "bbox": [ + 176, + 140, + 823, + 184 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Florian Tramèr, Fan Zhang, Ari Juels, Michael K Reiter, and Thomas Ristenpart. Stealing machine learning models via prediction APIs. In USENIX Security Symposium, pp. 601–618, 2016. ", + "bbox": [ + 171, + 193, + 825, + 222 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Tim van Erven and Peter Harremoës. Rényi divergence and Kullback-Leibler divergence. IEEE Transactions on Information Theory, 60(7):3797–3820, July 2014. ", + "bbox": [ + 171, + 229, + 823, + 260 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Chiyuan Zhang, Samy Bengio, Moritz Hardt, Benjamin Recht, and Oriol Vinyals. Understanding deep learning requires rethinking generalization. In Proceedings of the 5th International Conference on Learning Representations (ICLR), 2017. ", + "bbox": [ + 176, + 268, + 823, + 310 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "A APPENDIX: PRIVACY ANALYSIS ", + "text_level": 1, + "bbox": [ + 176, + 102, + 475, + 118 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "In this appendix, we provide the proofs of Theorem 6 and Proposition 7. Moreover, we present Proposition 10, which provides optimal values of $\\mu _ { 1 }$ and $\\mu _ { 2 }$ to apply towards Theorem 6 for the GNMax mechanism. We start off with a statement about the Rényi differential privacy guarantee of the GNMax. ", + "bbox": [ + 173, + 132, + 825, + 189 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Proposition 8. The GNMax aggregator $\\mathcal { M } _ { \\sigma }$ guarantees $\\left( \\lambda , \\lambda / \\sigma ^ { 2 } \\right)$ -RDP for all $\\lambda \\geq 1$ ", + "bbox": [ + 173, + 193, + 743, + 210 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Proof. The result follows from observing that $\\mathcal { M } _ { \\sigma }$ can be decomposed into applying the argmax operator to a noisy histogram resulted from adding Gaussian noise to each dimension of the original histogram. The Gaussian mechanism satisfies $( { \\bar { \\lambda } } , \\lambda / 2 \\sigma ^ { 2 } )$ -RDP (Mironov, 2017), and since each teacher may change two counts (incrementing one and decrementing the other), the overall RDP guarantee is as claimed. ■ ", + "bbox": [ + 173, + 215, + 825, + 286 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Proposition 7. For a GNMax aggregator $\\mathcal { M } _ { \\sigma }$ , the teachers’ votes histogram $\\bar { n } = ( n _ { 1 } , \\ldots , n _ { m } ) $ , and for any $i ^ { * } \\in [ m ]$ , we have ", + "bbox": [ + 171, + 294, + 823, + 321 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "where ", + "bbox": [ + 173, + 342, + 217, + 356 + ], + "page_idx": 16 + }, + { + "type": "equation", + "img_path": "images/1c3c919e9ada1269e499b7a19c3c10b68c843e51f2e814f986ff624779ec1f1b.jpg", + "text": "$$\n\\begin{array} { c l c r } { { \\displaystyle { \\bf P r } \\left[ \\mathcal { M } _ { \\sigma } ( D ) \\neq i ^ { * } \\right] \\le q ( \\bar { n } ) , } } \\\\ { { \\displaystyle } } \\\\ { { q ( \\bar { n } ) \\triangleq \\frac { 1 } { 2 } \\sum _ { i \\neq i ^ { * } } \\mathrm { e r f c } \\left( \\frac { n _ { i ^ { * } } - n _ { i } } { 2 \\sigma } \\right) . } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 388, + 318, + 611, + 392 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Proof. Recall that $\\mathcal { M } _ { \\sigma } ( D ) = \\operatorname { a r g m a x } ( n _ { i } + Z _ { i } )$ , where $Z _ { i }$ are distributed as ${ \\mathcal { N } } ( 0 , \\sigma ^ { 2 } )$ . Then for any $i ^ { * } \\in [ m ]$ , we have ", + "bbox": [ + 173, + 406, + 825, + 438 + ], + "page_idx": 16 + }, + { + "type": "equation", + "img_path": "images/ee155f4d624a5fba3b4a2ca84d4518af207c20765435b50cf2e74aeab36294e5.jpg", + "text": "$$\n\\begin{array} { r } { \\mathbf { P r } [ \\mathcal { M } _ { \\sigma } ( D ) \\neq i ^ { * } ] = \\mathbf { P r } \\left[ \\exists i , n _ { i } + Z _ { i } > n _ { i ^ { * } } + Z _ { i ^ { * } } \\right] \\leq \\displaystyle \\sum _ { i \\neq i ^ { * } } \\mathbf { P r } \\left[ n _ { i } + Z _ { i } > n _ { i ^ { * } } + Z _ { i ^ { * } } \\right] } \\\\ { = \\displaystyle \\sum _ { i \\neq i ^ { * } } \\mathbf { P r } \\left[ Z _ { i } - Z _ { i ^ { * } } > n _ { i ^ { * } } - n _ { i } \\right] } \\\\ { = \\displaystyle \\sum _ { i \\neq i ^ { * } } \\frac { 1 } { 2 } \\left( 1 - \\mathrm { e r f } \\left( \\frac { n _ { i ^ { * } } - n _ { i } } { 2 \\sigma } \\right) \\right) . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 209, + 443, + 784, + 558 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "where the last equality follows from the fact that $Z _ { i } - Z _ { j }$ is a Gaussian random variable with mean zero and variance $2 \\sigma ^ { 2 }$ . ", + "bbox": [ + 176, + 563, + 823, + 593 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "We now present a precise statement of Theorem 6. ", + "bbox": [ + 173, + 608, + 506, + 625 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Theorem 6. Let $\\mathcal { M }$ be a randomized algorithm with $( \\mu _ { 1 } , \\varepsilon _ { 1 } )$ -RDP and $\\left( \\mu _ { 2 } , \\varepsilon _ { 2 } \\right)$ -RDP guarantees and suppose that there exists a likely outcome $i ^ { * }$ given a dataset $D$ and a bound $\\tilde { q } \\leq 1$ such that $\\tilde { q } \\geq \\mathbf { P r } \\left[ \\mathcal { M } ( D ) \\neq i ^ { * } \\right]$ . Additionally suppose that $\\lambda \\le \\mu _ { 1 }$ and $\\begin{array} { r } { \\tilde { q } \\le e ^ { ( \\mu _ { 2 } - 1 ) \\varepsilon _ { 2 } } / \\biggl ( \\frac { \\mu _ { 1 } } { \\mu _ { 1 } - 1 } \\cdot \\frac { \\mu _ { 2 } } { \\mu _ { 2 } - 1 } \\biggr ) ^ { \\mu _ { 2 } } } \\end{array}$ Then, for any neighboring dataset $D ^ { \\prime }$ of $D$ , we have: ", + "bbox": [ + 173, + 627, + 825, + 695 + ], + "page_idx": 16 + }, + { + "type": "equation", + "img_path": "images/2cfe6826ca433929ddcaaa86ed5317161487a749198ab6784470924c289e6375.jpg", + "text": "$$\nD _ { \\lambda } ( \\mathcal { M } ( D ) \\| \\mathcal { M } ( D ^ { \\prime } ) ) \\le \\frac { 1 } { \\lambda - 1 } \\log \\left( ( 1 - \\tilde { q } ) \\cdot A ( \\tilde { q } , \\mu _ { 2 } , \\varepsilon _ { 2 } ) ^ { \\lambda - 1 } + \\tilde { q } \\cdot B ( \\tilde { q } , \\mu _ { 1 } , \\varepsilon _ { 1 } ) ^ { \\lambda - 1 } \\right)\n$$", + "text_format": "latex", + "bbox": [ + 214, + 700, + 782, + 732 + ], + "page_idx": 16 + }, + { + "type": "equation", + "img_path": "images/991081fd038e139ccf105c9cd1c06e19fbca27adbe3faddd70696b59044ec1be.jpg", + "text": "$$\n\\begin{array} { r } { \\pmb { A } ( \\tilde { q } , \\mu _ { 2 } , \\varepsilon _ { 2 } ) \\triangleq ( 1 - \\tilde { q } ) / \\bigg ( 1 - \\big ( \\tilde { q } e ^ { \\varepsilon _ { 2 } } \\big ) ^ { \\frac { \\mu _ { 2 } - 1 } { \\mu _ { 2 } } } \\bigg ) a n d \\pmb { B } ( \\tilde { q } , \\mu _ { 1 } , \\varepsilon _ { 1 } ) \\triangleq e ^ { \\varepsilon _ { 1 } } / \\tilde { q } ^ { \\frac { 1 } { \\mu _ { 1 } - 1 } } . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 217, + 738, + 709, + 766 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Proof. Before we proceed to the proof, we introduce some simplifying notation. For a randomized mechanism $\\mathcal { M }$ and neighboring datasets $D$ and $D ^ { \\prime }$ , we define ", + "bbox": [ + 169, + 779, + 825, + 809 + ], + "page_idx": 16 + }, + { + "type": "equation", + "img_path": "images/9010c1e03a91497835f0833ac793ed0943e13cdcb39a08e58087746837876c47.jpg", + "text": "$$\n\\begin{array} { l } { \\displaystyle \\beta _ { \\mathcal { M } } ( \\lambda ; D , D ^ { \\prime } ) \\triangleq D _ { \\lambda } ( \\mathcal { M } ( D ) \\| \\mathcal { M } ( D ^ { \\prime } ) ) } \\\\ { \\displaystyle = \\frac { 1 } { \\lambda - 1 } \\log \\mathbb { E } _ { x \\sim \\mathcal { M } ( D ) } \\left[ \\left( \\frac { \\mathbf { P r } \\left[ \\mathcal { M } ( D ) = x \\right] } { \\mathbf { P r } \\left[ \\mathcal { M } ( D ^ { \\prime } ) = x \\right] } \\right) ^ { \\lambda - 1 } \\right] . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 271, + 814, + 725, + 878 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "As the proof involves working with the RDP bounds in the exponent, we set $\\zeta _ { 1 } \\triangleq e ^ { \\varepsilon _ { 1 } ( \\mu _ { 1 } - 1 ) }$ and ζ2 , eε2(µ2−1). ", + "bbox": [ + 173, + 892, + 823, + 922 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Finally, we define the following shortcuts: ", + "bbox": [ + 174, + 103, + 450, + 118 + ], + "page_idx": 17 + }, + { + "type": "equation", + "img_path": "images/17b8657bad918393c4884aa39ff03bb82e08df30f2f9150755913075c13bbe1f.jpg", + "text": "$$\n\\begin{array} { l } { q _ { i } \\triangleq \\mathbf { P r } \\left[ \\mathcal { M } ( D ) = i \\right] \\mathrm { ~ a n d ~ } q \\triangleq \\displaystyle \\sum _ { i \\neq i ^ { * } } q _ { i } = \\mathbf { P r } \\left[ \\mathcal { M } ( D ) \\neq i ^ { * } \\right] , } \\\\ { p _ { i } \\triangleq \\mathbf { P r } \\left[ \\mathcal { M } ( D ^ { \\prime } ) = i \\right] \\mathrm { ~ a n d ~ } p \\triangleq \\displaystyle \\sum _ { i \\neq i ^ { * } } p _ { i } = \\mathbf { P r } \\left[ \\mathcal { M } ( D ^ { \\prime } ) \\neq i ^ { * } \\right] , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 294, + 122, + 697, + 194 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "and note that $q \\leq \\tilde { q }$ ", + "bbox": [ + 173, + 198, + 305, + 213 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "From the definition of Rényi differential privacy, $( \\mu _ { 1 } , \\varepsilon _ { 1 } )$ -RDP implies: ", + "bbox": [ + 174, + 218, + 643, + 236 + ], + "page_idx": 17 + }, + { + "type": "equation", + "img_path": "images/52a7ba2a7619a5928d6cb42aa47aeb1280cd5c3d764b6a645e4043f9301878c8.jpg", + "text": "$$\n\\begin{array} { r l } & { \\exp \\left( \\beta _ { \\mathcal M } ( \\mu _ { 1 } ; D , D ^ { \\prime } ) \\right) = \\displaystyle \\left( \\frac { ( 1 - q ) ^ { \\mu _ { 1 } } } { ( 1 - p ) ^ { \\mu _ { 1 } - 1 } } + \\sum _ { i \\neq i * } \\frac { q _ { i } ^ { \\mu _ { 1 } } } { p _ { i } ^ { \\mu _ { 1 } - 1 } } \\right) ^ { 1 / ( \\mu _ { 1 } - 1 ) } \\leq \\exp ( \\varepsilon _ { 1 } ) } \\\\ & { \\qquad \\implies \\displaystyle \\sum _ { i > 1 } \\frac { q _ { i } ^ { \\mu _ { 1 } } } { p _ { i } ^ { \\mu _ { 1 } - 1 } } = \\sum _ { i > 1 } q _ { i } \\left( \\frac { q _ { i } } { p _ { i } } \\right) ^ { \\mu _ { 1 } - 1 } \\leq \\zeta _ { 1 } . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 245, + 238, + 753, + 337 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "Since $\\mu _ { 1 } \\geq \\lambda , f ( x ) \\triangleq x ^ { \\frac { \\mu _ { 1 } - 1 } { \\lambda - 1 } }$ is convex. Applying Jensen’s Inequality we have the following: ", + "bbox": [ + 173, + 340, + 785, + 359 + ], + "page_idx": 17 + }, + { + "type": "equation", + "img_path": "images/ee95560a496090abec0a3e8a07eaaa1337df337b19f38e1f05f32c9200831389.jpg", + "text": "$$\n\\begin{array} { r l } & { \\left( \\frac { \\sum _ { i \\neq j : i } \\cdot q _ { i } \\left( \\frac { q _ { i } } { p _ { i } } \\right) ^ { \\lambda - 1 } } { q } \\right) ^ { \\frac { n _ { 1 } - 1 } { \\lambda - 1 } } \\leq \\frac { \\sum _ { i \\neq i } \\cdot q _ { i } \\left( \\frac { q _ { i } } { p _ { i } } \\right) ^ { \\mu _ { 1 } - 1 } } { q } } \\\\ & { \\qquad \\implies \\sum _ { i \\neq i ^ { * } } q _ { i } \\left( \\frac { q _ { i } } { p _ { i } } \\right) ^ { \\lambda - 1 } \\leq q \\left( \\frac { \\sum _ { i \\neq i } \\cdot q _ { i } \\left( \\frac { q _ { i } } { p _ { i } } \\right) ^ { \\mu _ { 1 } - 1 } } { q } \\right) ^ { \\frac { \\lambda - 1 } { \\mu _ { 1 } - 1 } } } \\\\ & { \\qquad \\overset { ( 3 ) } { \\Longrightarrow } \\sum _ { i \\neq i ^ { * } } q _ { i } \\left( \\frac { q _ { i } } { p _ { i } } \\right) ^ { \\lambda - 1 } \\leq \\zeta _ { 1 } ^ { \\frac { \\lambda - 1 } { \\mu _ { 1 } - 1 } } \\cdot q ^ { 1 - \\frac { \\lambda - 1 } { \\mu _ { 1 } - 1 } } . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 287, + 363, + 707, + 536 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "Next, by the bound at order $\\mu _ { 2 }$ , we have: ", + "bbox": [ + 173, + 546, + 442, + 561 + ], + "page_idx": 17 + }, + { + "type": "equation", + "img_path": "images/13ed527b73a3e9abc833e22c70cc45121f7db00bc6226f257b3bb446face8902.jpg", + "text": "$$\n\\begin{array} { c } { { \\displaystyle \\exp \\left( \\beta _ { { \\mathcal M } } ( \\mu _ { 2 } ; D ^ { \\prime } , D ) \\right) = \\left( \\frac { ( 1 - p ) ^ { \\mu _ { 2 } } } { ( 1 - q ) ^ { \\mu _ { 2 } - 1 } } + \\sum _ { i \\neq i ^ { * } } \\frac { p _ { i } ^ { \\mu _ { 2 } } } { q _ { i } ^ { \\mu _ { 2 } - 1 } } \\right) ^ { 1 / ( \\mu _ { 2 } - 1 ) } \\leq \\exp ( \\varepsilon _ { 2 } ) } } \\\\ { { \\displaystyle \\implies \\frac { ( 1 - p ) ^ { \\mu _ { 2 } } } { ( 1 - q ) ^ { \\mu _ { 2 } - 1 } } + \\sum _ { i \\neq i ^ { * } } \\frac { p _ { i } ^ { \\mu _ { 2 } } } { q _ { i } ^ { \\mu _ { 2 } - 1 } } \\leq \\zeta _ { 2 } . } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 245, + 565, + 751, + 660 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "By the data processing inequality of Rényi divergence, we have ", + "bbox": [ + 173, + 662, + 591, + 679 + ], + "page_idx": 17 + }, + { + "type": "equation", + "img_path": "images/e6b2fc5dffabde612584d3f9feb2aac087a0b0cb4e7aca4fbdb090f6fa564fe2.jpg", + "text": "$$\n\\frac { ( 1 - p ) ^ { \\mu _ { 2 } } } { ( 1 - q ) ^ { \\mu _ { 2 } - 1 } } + \\frac { p ^ { \\mu _ { 2 } } } { q ^ { \\mu _ { 2 } - 1 } } \\leq \\zeta _ { 2 } ,\n$$", + "text_format": "latex", + "bbox": [ + 401, + 683, + 593, + 717 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "which implies pµ2qµ2−1 ≤ ζ2 and thus ", + "bbox": [ + 174, + 722, + 406, + 742 + ], + "page_idx": 17 + }, + { + "type": "equation", + "img_path": "images/3f562dbbf1ca27002624f91f3397e84af94df77e7cd4be56bfdf095460f53a1e.jpg", + "text": "$$\np \\leq \\left( q ^ { \\mu _ { 2 } - 1 } \\zeta _ { 2 } \\right) ^ { \\frac { 1 } { \\mu _ { 2 } } } .\n$$", + "text_format": "latex", + "bbox": [ + 434, + 746, + 563, + 771 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "Combining (4) and (5), we can derive a bound at $\\lambda$ . ", + "bbox": [ + 173, + 786, + 511, + 803 + ], + "page_idx": 17 + }, + { + "type": "equation", + "img_path": "images/5a661797c3e6870246223e3f8843aceb0b11ca4a20b196bf4170f12278028295.jpg", + "text": "$$\n\\begin{array} { r l } & { \\exp \\left( \\beta _ { \\mathcal M } ( \\lambda , D , D ^ { \\prime } ) \\right) = \\left( \\frac { ( 1 - q ) ^ { \\lambda } } { ( 1 - p ) ^ { \\lambda - 1 } } + \\displaystyle \\sum _ { i \\neq i ^ { * } } \\frac { q _ { i } ^ { \\lambda } } { p _ { i } ^ { \\lambda - 1 } } \\right) ^ { 1 / ( \\lambda - 1 ) } } \\\\ & { \\quad \\le \\left( \\frac { ( 1 - q ) ^ { \\lambda } } { \\left( 1 - ( q ^ { \\mu _ { 2 } - 1 } \\zeta _ { 2 } ) ^ { \\frac { 1 } { \\mu _ { 2 } } } \\right) ^ { \\lambda - 1 } } + \\zeta _ { 1 } ^ { \\frac { \\lambda - 1 } { \\mu _ { 1 } - 1 } } \\cdot q ^ { 1 - \\frac { \\lambda - 1 } { \\mu _ { 1 } - 1 } } \\right) ^ { 1 / ( \\lambda - 1 ) } . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 225, + 806, + 772, + 922 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "Although Equation (6) is very close to the corresponding statement in the theorem’s claim, one subtlety remains. The bound (6) applies to the exact probability $q = \\mathbf { P r } \\left[ \\mathcal { M } ( D ) \\neq i ^ { * } \\right]$ . In the theorem statement, and in practice, we can only derive an upper bound $\\tilde { q }$ on $\\mathbf { P r } \\left[ \\mathcal { M } ( D ) \\neq i ^ { * } \\right]$ . The last step of the proof requires showing that the expression in Equation (6) is monotone in the range of values of $q$ that we care about. ", + "bbox": [ + 173, + 103, + 825, + 174 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "Lemma 9 (Monotonicity of the bound). Let the functions $f _ { 1 } ( \\cdot )$ and $f _ { 2 } ( \\cdot )$ be ", + "bbox": [ + 173, + 179, + 676, + 195 + ], + "page_idx": 18 + }, + { + "type": "equation", + "img_path": "images/6c12f64042b39c6c2111babda04809a2511a69055071bc9aff6539d2e92de17c.jpg", + "text": "$$\n\\begin{array} { l } { { f _ { 1 } ( x ) \\triangleq \\displaystyle \\frac { ( 1 - x ) ^ { \\lambda } } { \\Big ( 1 - ( x ^ { \\mu _ { 2 } - 1 } \\zeta _ { 2 } ) ^ { \\frac { 1 } { \\mu _ { 2 } } } \\Big ) ^ { \\lambda - 1 } } \\qquad \\ a n d \\qquad f _ { 2 } ( x ) \\triangleq \\zeta _ { 1 } ^ { \\frac { \\lambda - 1 } { \\mu _ { 1 } - 1 } } \\cdot x ^ { 1 - \\frac { \\lambda - 1 } { \\mu _ { 1 } - 1 } } , } } \\\\ { { \\mathrm { } } } \\\\ { { \\mathrm { } } } \\\\ { { \\mathrm { } } { \\mathrm { } } { } \\\\ { \\mathrm { } { } \\mathrm { } + f _ { 2 } ( x ) \\ i s \\ i n c r e a s i n g \\ i n \\Big [ 0 , \\operatorname* { m i n } \\Big ( 1 , \\zeta _ { 2 } \\Big / \\Big ( \\frac { \\mu _ { 1 } } { \\mu _ { 1 } - 1 } \\cdot \\frac { \\mu _ { 2 } } { \\mu _ { 2 } - 1 } \\Big ) ^ { \\mu _ { 2 } } \\Big ) \\Big ] . } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 176, + 195, + 745, + 273 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "Proof. Taking the derivative of $f _ { 1 } ( x )$ , we have: ", + "bbox": [ + 173, + 285, + 486, + 300 + ], + "page_idx": 18 + }, + { + "type": "equation", + "img_path": "images/35b15c7ab1a2c4747cdca5fd542001f35c54d98e924dca0579f61a5a6e374196.jpg", + "text": "$$\nf _ { 1 } ^ { \\prime } ( x ) = \\frac { - \\lambda ( 1 - x ) ^ { \\lambda - 1 } ( 1 - ( x ^ { \\mu _ { 2 } - 1 } \\zeta _ { 2 } ) ^ { \\frac { 1 } { \\mu _ { 2 } } } ) ^ { \\lambda - 1 } } { ( 1 - ( x ^ { \\mu _ { 2 } - 1 } \\zeta _ { 2 } ) ^ { \\frac { 1 } { \\mu _ { 2 } } } ) ^ { 2 \\lambda - 2 } } \\\\ & { \\qquad + \\frac { ( 1 - x ) ^ { \\lambda } ( \\lambda - 1 ) ( 1 - ( x ^ { \\mu _ { 2 } - 1 } \\zeta _ { 2 } ) ^ { \\frac { 1 } { \\mu _ { 2 } } } ) ^ { \\lambda - 2 } \\zeta _ { 2 } ^ { \\frac { 1 } { \\mu _ { 2 } } } \\cdot \\frac { \\mu _ { 2 } - 1 } { \\mu _ { 2 } } \\cdot x ^ { - \\frac { 1 } { \\mu _ { 2 } } } } { ( 1 - ( x ^ { \\mu _ { 2 } - 1 } \\zeta _ { 2 } ) ^ { \\frac { 1 } { \\mu _ { 2 } } } ) ^ { 2 \\lambda - 2 } } } \\\\ & = \\frac { ( 1 - x ) ^ { \\lambda - 1 } } { ( 1 - ( x ^ { \\mu _ { 2 } - 1 } \\zeta _ { 2 } ) ^ { \\frac { 1 } { \\mu _ { 2 } } } ) ^ { \\lambda - 1 } } \\left( - \\lambda + ( \\lambda - 1 ) \\left( 1 - \\frac { 1 } { \\mu _ { 2 } } \\right) \\frac { 1 - x } { 1 - ( x ^ { \\mu _ { 2 } - 1 } \\zeta _ { 2 } ) ^ { \\frac { 1 } { \\mu _ { 2 } } } } \\left( \\frac { \\zeta _ { 2 } } { x } \\right) ^ { \\frac { 1 } { \\mu _ { 2 } } } \\right) .\n$$", + "text_format": "latex", + "bbox": [ + 192, + 303, + 805, + 434 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "We intend to show that: ", + "bbox": [ + 174, + 439, + 330, + 454 + ], + "page_idx": 18 + }, + { + "type": "equation", + "img_path": "images/abdb8282a3db51a7cc054defe7828ed591cca4398e3208552a154df771675f60.jpg", + "text": "$$\nf _ { 1 } ^ { \\prime } ( x ) \\geq - \\lambda + ( \\lambda - 1 ) \\left( 1 - \\frac { 1 } { \\mu _ { 2 } } \\right) \\left( \\frac { \\zeta _ { 2 } } { x } \\right) ^ { \\frac { 1 } { \\mu _ { 2 } } } .\n$$", + "text_format": "latex", + "bbox": [ + 348, + 452, + 650, + 492 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "For $\\begin{array} { r } { x \\in \\left[ 0 , \\zeta _ { 2 } / \\left( \\frac { \\mu _ { 1 } } { \\mu _ { 1 } - 1 } \\cdot \\frac { \\mu _ { 2 } } { \\mu _ { 2 } - 1 } \\right) ^ { \\mu _ { 2 } } \\right] } \\end{array}$ and $y \\in [ 1 , \\infty )$ , define $g ( x , y )$ as: ", + "bbox": [ + 173, + 500, + 625, + 526 + ], + "page_idx": 18 + }, + { + "type": "equation", + "img_path": "images/2c7b796ca481daff12481695463e1d671fbf4c557174ac45a6fc23f691a8ad93.jpg", + "text": "$$\ng ( x , y ) \\triangleq - \\lambda \\cdot y ^ { \\lambda - 1 } + ( \\lambda - 1 ) \\left( 1 - { \\frac { 1 } { \\mu _ { 2 } } } \\right) \\left( { \\frac { \\zeta _ { 2 } } { x } } \\right) ^ { \\frac { 1 } { \\mu _ { 2 } } } y ^ { \\lambda } .\n$$", + "text_format": "latex", + "bbox": [ + 312, + 526, + 686, + 566 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "We claim that $g ( x , y )$ is increasing in $y$ and therefore $g ( x , y ) \\geq g ( x , 1 )$ , and prove it by showing the partial derivative of $g ( x , y )$ with respect to $y$ is non-negative. Take a derivative with respect to $y$ as: ", + "bbox": [ + 173, + 574, + 826, + 603 + ], + "page_idx": 18 + }, + { + "type": "equation", + "img_path": "images/38cdd5bb8155351f31061a3e2560a277a40179a17fad0039ec5ebe6035253653.jpg", + "text": "$$\n\\begin{array} { l } { { g _ { y } ^ { \\prime } ( x , y ) = - \\lambda ( \\lambda - 1 ) y ^ { \\lambda - 2 } + \\lambda ( \\lambda - 1 ) \\left( 1 - { \\frac { 1 } { \\mu _ { 2 } } } \\right) \\left( { \\frac { \\zeta _ { 2 } } { x } } \\right) ^ { \\frac { 1 } { \\mu _ { 2 } } } y ^ { \\lambda - 1 } } } \\\\ { { \\ = \\lambda ( \\lambda - 1 ) y ^ { \\lambda - 2 } \\left( - 1 + \\left( 1 - { \\frac { 1 } { \\mu _ { 2 } } } \\right) \\left( { \\frac { \\zeta _ { 2 } } { x } } \\right) ^ { \\frac { 1 } { \\mu _ { 2 } } } y \\right) . } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 276, + 604, + 718, + 688 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "To see why $g _ { y } ^ { \\prime } ( x , y )$ is non-negative in the respective ranges of $x$ and $y$ , note that: ", + "bbox": [ + 171, + 694, + 707, + 710 + ], + "page_idx": 18 + }, + { + "type": "equation", + "img_path": "images/d4bebd870642ce5ae5e53e436cfcf9373b4aff326f24e4b9cf297f1a2e793b07.jpg", + "text": "$$\n\\begin{array} { r l } { x \\leq \\zeta _ { 2 } \\Big / \\Big ( \\frac { \\mu _ { 1 } } { \\mu _ { 1 } - 1 } \\cdot \\frac { \\mu _ { 2 } } { \\mu _ { 2 } - 1 } \\Big ) ^ { \\mu _ { 2 } } \\implies x \\leq \\zeta _ { 2 } \\Big / \\Big ( \\frac { \\mu _ { 2 } } { \\mu _ { 2 } - 1 } \\Big ) ^ { \\mu _ { 2 } } } \\\\ & { \\implies 1 \\leq \\frac { \\zeta _ { 2 } } { x } \\cdot \\Big ( \\frac { \\mu _ { 2 } - 1 } { \\mu _ { 2 } } \\Big ) ^ { \\mu _ { 2 } } } \\\\ & { \\implies 1 \\leq \\frac { \\mu _ { 2 } - 1 } { \\mu _ { 2 } } \\Big ( \\frac { \\zeta _ { 2 } } { x } \\Big ) ^ { \\frac { 1 } { \\mu _ { 2 } } } } \\\\ & { \\implies 1 \\leq \\frac { \\mu _ { 2 } - 1 } { \\mu _ { 2 } } \\Big ( \\frac { \\zeta _ { 2 } } { x } \\Big ) ^ { \\frac { 1 } { \\mu _ { 2 } } } g } \\\\ & { \\implies 0 \\leq - 1 + \\frac { \\mu _ { 2 } - 1 } { \\mu _ { 2 } } \\Big ( \\frac { \\zeta _ { 2 } } { x } \\Big ) ^ { \\frac { 1 } { \\mu _ { 2 } } } g } \\\\ & { \\implies 0 \\leq - 1 + \\frac { \\mu _ { 2 } - 1 } { \\mu _ { 2 } } \\Big ( \\frac { \\zeta _ { 2 } } { x } \\Big ) ^ { \\frac { 1 } { \\mu _ { 2 } } } g } \\\\ & { \\implies 0 \\leq g _ { g } ^ { \\prime } ( x , y ) . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 232, + 713, + 679, + 924 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "Consider $\\frac { 1 - x } { 1 - ( x ^ { \\mu _ { 2 } - 1 } \\zeta _ { 2 } ) ^ { 1 / \\mu _ { 2 } } }$ . Since $\\zeta _ { 2 } \\geq 1$ and $x \\leq 1$ , we have $x \\leq \\zeta _ { 2 }$ and hence ", + "bbox": [ + 171, + 102, + 691, + 122 + ], + "page_idx": 19 + }, + { + "type": "equation", + "img_path": "images/e724b1d3dd791934b55c0a088cf927ac10524a6c57a269b37c82ec3763a694c2.jpg", + "text": "$$\n{ \\frac { 1 - x } { 1 - ( x ^ { \\mu _ { 2 } - 1 } \\zeta _ { 2 } ) ^ { \\frac { 1 } { \\mu _ { 2 } } } } } \\geq { \\frac { 1 - x } { 1 - ( x ^ { \\mu _ { 2 } - 1 } x ) ^ { \\frac { 1 } { \\mu _ { 2 } } } } } = 1 .\n$$", + "text_format": "latex", + "bbox": [ + 352, + 128, + 643, + 165 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "Therefore we can set $\\begin{array} { r } { y = \\frac { 1 - x } { 1 - ( x ^ { \\mu _ { 2 } - 1 } \\zeta _ { 2 } ) ^ { 1 / \\mu _ { 2 } } } } \\end{array}$ and apply the fact that $g ( x , y ) \\geq g ( x , 1 )$ for all $y \\geq 1$ to get ", + "bbox": [ + 173, + 178, + 825, + 210 + ], + "page_idx": 19 + }, + { + "type": "equation", + "img_path": "images/1beabd9acdabf6088d3fbe178aa8aebe94c6683d554c410e4e8ace6a00d13fbf.jpg", + "text": "$$\nf _ { 1 } ^ { \\prime } ( x ) \\geq - \\lambda + ( \\lambda - 1 ) \\left( 1 - \\frac { 1 } { \\mu _ { 2 } } \\right) \\left( \\frac { \\zeta _ { 2 } } { x } \\right) ^ { \\frac { 1 } { \\mu _ { 2 } } } ,\n$$", + "text_format": "latex", + "bbox": [ + 348, + 215, + 647, + 256 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "as required by (7). ", + "bbox": [ + 173, + 260, + 295, + 275 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "Taking the derivative of $f _ { 2 } ( x )$ , we have: ", + "bbox": [ + 174, + 280, + 437, + 296 + ], + "page_idx": 19 + }, + { + "type": "equation", + "img_path": "images/f94fde8eb40eb496e74481f048a47191098e0e671b1757a079026f2cc4b295c0.jpg", + "text": "$$\nf _ { 2 } ^ { \\prime } ( x ) = \\zeta _ { 1 } ^ { \\frac { \\lambda - 1 } { \\mu _ { 1 } - 1 } } \\cdot \\left( 1 - { \\frac { \\lambda - 1 } { \\mu _ { 1 } - 1 } } \\right) x ^ { - { \\frac { \\lambda - 1 } { \\mu _ { 1 } - 1 } } } = \\left( { \\frac { \\zeta _ { 1 } } { x } } \\right) ^ { { \\frac { \\lambda - 1 } { \\mu _ { 1 } - 1 } } } \\left( 1 - { \\frac { \\lambda - 1 } { \\mu _ { 1 } - 1 } } \\right) \\geq 1 - { \\frac { \\lambda - 1 } { \\mu _ { 1 } - 1 } } .\n$$", + "text_format": "latex", + "bbox": [ + 207, + 301, + 789, + 343 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "Combining the two terms together, we have: ", + "bbox": [ + 173, + 347, + 465, + 362 + ], + "page_idx": 19 + }, + { + "type": "equation", + "img_path": "images/8887c72367b365abe5de736be80daaf9b57ebe1a496c6fb4f009565260ebbfa2.jpg", + "text": "$$\n\\begin{array} { c } { { f ^ { \\prime } ( x ) \\geq - \\lambda + ( \\lambda - 1 ) \\left( 1 - { \\frac { 1 } { \\mu _ { 2 } } } \\right) \\left( { \\frac { \\zeta _ { 2 } } { x } } \\right) ^ { \\frac { 1 } { \\mu _ { 2 } } } + 1 - { \\frac { \\lambda - 1 } { \\mu _ { 1 } - 1 } } } } \\\\ { { = ( \\lambda - 1 ) \\left( - { \\frac { \\mu _ { 1 } } { \\mu _ { 1 } - 1 } } + { \\frac { \\mu _ { 2 } - 1 } { \\mu _ { 2 } } } \\left( { \\frac { \\zeta _ { 2 } } { x } } \\right) ^ { \\frac { 1 } { \\mu _ { 2 } } } \\right) . } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 302, + 367, + 692, + 450 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "For $f ^ { \\prime } ( x )$ to be non-negative we need: ", + "bbox": [ + 173, + 455, + 428, + 470 + ], + "page_idx": 19 + }, + { + "type": "equation", + "img_path": "images/83b10b31b9cc7c088535979d7ffe5dbd44307a5a0c3b19ed6c5a8e091752b2b4.jpg", + "text": "$$\n\\begin{array} { r l } & { - \\frac { \\mu _ { 1 } } { \\mu _ { 1 } - 1 } + \\frac { \\mu _ { 2 } - 1 } { \\mu _ { 2 } } \\left( \\frac { \\zeta _ { 2 } } { x } \\right) ^ { \\frac { 1 } { \\mu _ { 2 } } } \\geq 0 } \\\\ & { \\iff \\left( \\frac { \\mu _ { 1 } } { \\mu _ { 1 } - 1 } \\cdot \\frac { \\mu _ { 2 } } { \\mu _ { 2 } - 1 } \\right) ^ { \\mu _ { 2 } } \\leq \\frac { \\zeta _ { 2 } } { x } . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 372, + 477, + 619, + 553 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "So $f ( x )$ is increasing for $\\begin{array} { r c l } { x } & { \\in } & { \\left[ 0 , \\zeta _ { 2 } / \\left( { \\frac { \\mu _ { 1 } } { \\mu _ { 1 } - 1 } } \\cdot { \\frac { \\mu _ { 2 } } { \\mu _ { 2 } - 1 } } \\right) ^ { \\mu _ { 2 } } \\right] } \\end{array}$ . This means for $q \\leq \\tilde { q } \\leq$ $\\zeta _ { 2 } / { \\left( \\frac { \\mu _ { 1 } } { \\mu _ { 1 } - 1 } \\cdot \\frac { \\mu _ { 2 } } { \\mu _ { 2 } - 1 } \\right) } ^ { \\mu _ { 2 } }$ , we have $f ( q ) \\leq f ( \\tilde { q } )$ . This completes the proof of the lemma and that of the theorem. ■ ", + "bbox": [ + 173, + 558, + 826, + 622 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "Theorem 6 yields data-dependent Rényi differential privacy bounds for any value of $\\mu _ { 1 }$ and $\\mu _ { 2 }$ larger than $\\lambda$ . The following proposition simplifies this search by calculating optimal higher moments $\\mu _ { 1 }$ and $\\mu _ { 2 }$ for the GNMax mechanism with variance $\\sigma ^ { 2 }$ . ", + "bbox": [ + 173, + 666, + 826, + 709 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "Proposition 10. When applying Theorem 6 and Proposition 8 for GNMax with Gaussian of variance $\\sigma ^ { 2 }$ , the right-hand side of (2) is minimized at ", + "bbox": [ + 169, + 713, + 825, + 742 + ], + "page_idx": 19 + }, + { + "type": "equation", + "img_path": "images/8cc3b103018d2dbba69a8b80529ea9894e403eff24d56bf3fa2928cd95b06942.jpg", + "text": "$$\n\\mu _ { 2 } = \\sigma \\cdot \\sqrt { \\log ( 1 / \\tilde { q } ) } , a n d \\mu _ { 1 } = \\mu _ { 2 } + 1 .\n$$", + "text_format": "latex", + "bbox": [ + 364, + 747, + 632, + 768 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "Proof. We can minimize both terms in (2) independently. To minimize the first term in (6), we minimize $\\left( \\tilde { q } e ^ { \\varepsilon _ { 2 } } \\right) ^ { 1 - 1 / \\mu _ { 2 } }$ by considering logarithms: ", + "bbox": [ + 173, + 781, + 823, + 814 + ], + "page_idx": 19 + }, + { + "type": "equation", + "img_path": "images/277fc897ffc6e63e8c029f3da9f8dd8d58bd2c63eabbd99b403373cc0b7803eb.jpg", + "text": "$$\n\\begin{array} { r l } { \\log \\left\\{ \\big ( \\tilde { q } e ^ { \\varepsilon _ { 2 } } \\big ) ^ { 1 - 1 / \\mu _ { 2 } } \\right\\} = \\log \\Bigg \\{ \\tilde { q } ^ { 1 - \\frac { 1 } { \\mu _ { 2 } } } \\exp \\left( \\frac { \\mu _ { 2 } - 1 } { \\sigma ^ { 2 } } \\right) \\Bigg \\} } & { } \\\\ { \\quad \\quad \\quad \\quad \\quad = \\left( 1 - \\frac { 1 } { \\mu _ { 2 } } \\right) \\cdot \\log \\tilde { q } + \\frac { \\mu _ { 2 } - 1 } { \\sigma ^ { 2 } } } & { } \\\\ { \\quad \\quad \\quad \\quad = \\frac { 1 } { \\mu _ { 2 } } \\log \\frac { 1 } { \\tilde { q } } + \\frac { \\mu _ { 2 } } { \\sigma ^ { 2 } } - \\frac { 1 } { \\sigma ^ { 2 } } - \\log \\frac { 1 } { \\tilde { q } } , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 316, + 819, + 676, + 926 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "which is minimized at $\\mu _ { 2 } = \\sigma \\cdot \\sqrt { \\log ( 1 / \\tilde { q } ) }$ . ", + "bbox": [ + 176, + 102, + 464, + 119 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "To minimize the second term in (6), we minimize $e ^ { \\varepsilon _ { 1 } } / \\tilde { q } ^ { 1 / ( \\mu _ { 1 } - 1 ) }$ as follows: ", + "bbox": [ + 173, + 133, + 669, + 151 + ], + "page_idx": 20 + }, + { + "type": "equation", + "img_path": "images/38e19204f31f82b3059a7bfa76b10c820534e7c884e13439d88660e2a9e6df7a.jpg", + "text": "$$\n\\begin{array} { r l } { \\log \\left\\{ \\displaystyle \\frac { e ^ { \\varepsilon _ { 1 } } } { \\tilde { q } ^ { 1 / ( \\mu _ { 1 } - 1 ) } } \\right\\} = \\log \\left\\{ \\tilde { q } ^ { - 1 / ( \\mu _ { 1 } - 1 ) } \\exp \\left( \\frac { \\mu _ { 1 } } { \\sigma ^ { 2 } } \\right) \\right\\} } & { { } } \\\\ { = \\displaystyle \\frac { \\mu _ { 1 } } { \\sigma ^ { 2 } } + \\frac { 1 } { \\mu _ { 1 } - 1 } \\log \\frac { 1 } { \\tilde { q } } } & { { } } \\\\ { = \\displaystyle \\frac { 1 } { \\sigma ^ { 2 } } + \\frac { \\mu _ { 1 } - 1 } { \\sigma ^ { 2 } } + \\frac { 1 } { \\mu _ { 1 } - 1 } \\log \\frac { 1 } { \\tilde { q } } , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 326, + 157, + 668, + 261 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "which is minimized at $\\mu _ { 1 } = 1 + \\sigma \\cdot \\sqrt { \\log ( 1 / \\tilde { q } ) }$ completing the proof. ", + "bbox": [ + 174, + 267, + 632, + 285 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "Putting this together, we apply the following steps to calculate RDP of order $\\lambda$ for GNMax with variance $\\sigma ^ { 2 }$ on a given dataset $D$ . First, we compute a bound $q$ according to Proposition 7. Then we use the smaller of two bounds: a data-dependent (Theorem 6) and a data-independent one (Proposition 8) : ", + "bbox": [ + 173, + 301, + 825, + 358 + ], + "page_idx": 20 + }, + { + "type": "equation", + "img_path": "images/04d686ff17cfae6c9922a5f17b6ff06bf118005e236aa392f928384de05eca01.jpg", + "text": "$$\n\\beta _ { \\sigma } ( q ) \\triangleq \\operatorname* { m i n } \\left\\{ \\frac { 1 } { \\lambda - 1 } \\log \\left\\{ ( 1 - q ) \\cdot A ( q , \\mu _ { 2 } , \\varepsilon _ { 2 } ) ^ { \\lambda - 1 } + q \\cdot B ( q , \\mu _ { 1 } , \\varepsilon _ { 1 } ) ^ { \\lambda - 1 } \\right\\} , \\lambda / \\sigma ^ { 2 } \\right\\} ,\n$$", + "text_format": "latex", + "bbox": [ + 210, + 364, + 784, + 400 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "where $\\pmb { A }$ and $\\textbf { { B } }$ are defined as in the statement of Theorem 6, the parameters $\\mu _ { 1 }$ and $\\mu _ { 2 }$ are selected according to Proposition 10, and $\\varepsilon _ { 1 } \\triangleq \\mu _ { 1 } / \\sigma ^ { 2 }$ and $\\varepsilon _ { 2 } \\triangleq \\mu _ { 2 } / \\sigma ^ { 2 }$ (Proposition 8). Importantly, the first expression is evaluated only when $q < 1 , \\mu _ { 1 } \\geq \\lambda , \\mu _ { 2 } > 1$ , and $q \\leq e ^ { ( \\mu _ { 2 } - 1 ) \\varepsilon _ { 2 } } / \\left( \\frac { \\mu _ { 1 } } { \\mu _ { 1 } - 1 } \\cdot \\frac { \\mu _ { 2 } } { \\mu _ { 2 } - 1 } \\right) ^ { \\mu _ { 2 } }$ . These conditions can either be checked for each application of the aggregation mechanism, or a critical value of $q _ { 0 }$ that separates the range of applicability of the data-dependent and data-independent bounds can be computed for given $\\sigma$ and $\\lambda$ . In our implementation we pursue the second approach. ", + "bbox": [ + 173, + 405, + 826, + 502 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "The following corollary offers a simple asymptotic expression of the privacy of GNMax for the case when there are large (relative to $\\sigma$ ) gaps between the highest three vote counts. ", + "bbox": [ + 176, + 507, + 820, + 537 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "Corollary 11. If the top three vote counts are $n _ { 1 } ~ > ~ n _ { 2 } ~ > ~ n _ { 3 }$ and $n _ { 1 } \\mathrm { ~ - ~ } n _ { 2 }$ , $n _ { 2 } \\mathrm { ~ - ~ } n _ { 3 } \\mathrm { ~ } \\gg \\sigma$ , then the mechanism GNMax with Gaussian of variance $\\sigma ^ { 2 }$ satisfies $( \\lambda , \\exp ( - 2 \\lambda / \\sigma ^ { 2 } ) / \\lambda )$ -RDP for $\\lambda = ( n _ { 1 } - n _ { 2 } ) / 4$ . ", + "bbox": [ + 174, + 541, + 825, + 584 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "Proof. Denote the noisy counts as $\\tilde { n } _ { i } = n _ { i } + \\mathcal { N } ( 0 , \\sigma ^ { 2 } )$ . Ignoring outputs other than those with the highest and the second highest counts, we bound $q = \\mathbf { \\bar { P r } } \\left[ \\mathcal { \\bar { M } } ( D ) \\right] \\neq 1 ]$ as $\\mathbf { P r } [ \\tilde { n } _ { 1 } ~ < ~ \\tilde { n } _ { 2 } ] ~ =$ ${ \\bf P r } [ N ( 0 , 2 \\sigma ^ { 2 } ) > n _ { 1 } - n _ { 2 } ] < \\exp { \\left( - ( n _ { 1 } - n _ { 2 } ) ^ { 2 } / 4 \\sigma ^ { 2 } \\right) }$ , which we use as $\\tilde { q }$ . Plugging $\\tilde { q }$ in Proposition 10, we have $\\mu _ { 1 } - 1 = \\mu _ { 2 } = ( n _ { 1 } - n _ { 2 } ) / 2$ , limiting the range of applicability of Theorem 6 to $\\lambda < ( n _ { 1 } - n _ { 2 } ) / 2$ . ", + "bbox": [ + 173, + 601, + 825, + 676 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "Choosing $\\lambda = ( n _ { 1 } - n _ { 2 } ) / 4$ ensures $A ( \\tilde { q } , \\mu _ { 2 } , \\varepsilon _ { 2 } ) \\approx 1$ , which allows approximating the bound (2) as $\\tilde { q } \\cdot B ( \\tilde { q } , \\mu _ { 1 } , \\varepsilon _ { 1 } ) ^ { \\lambda - 1 } / ( \\lambda - 1 )$ . The proof follows by straightforward calculation. ", + "bbox": [ + 174, + 681, + 825, + 710 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "B SMOOTH SENSITIVITY AND PUBLISHING THE PRIVACY PARAMETER ", + "text_level": 1, + "bbox": [ + 171, + 731, + 772, + 747 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "The privacy guarantees obtained for the mechanisms in this paper via Theorem 6 take as input $\\tilde { q }$ , an upper bound on the probability that the aggregate mechanism returns the true plurality. This means that the resulting privacy parameters computed depend on teacher votes and hence the underlying data. To avoid potential privacy breaches from simply publishing the data-dependent parameter, we need to publish a sanitized version of the privacy loss. This is done by adding noise to the computed privacy loss estimates using the smooth sensitivity algorithm proposed by Nissim et al. (2007). ", + "bbox": [ + 173, + 762, + 825, + 848 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "This section has the following structure. First we recall the notion of smooth sensitivity and introduce an algorithm for computing the smooth sensitivity of the privacy loss function of the GNMax mechanism. In the rest of the section we prove correctness of these algorithms by stating several conditions on the mechanism, proving that these conditions are sufficient for correctness of the algorithm, and finally demonstrating that GNMax satisfies these conditions. ", + "bbox": [ + 174, + 853, + 823, + 924 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "B.1 COMPUTING SMOOTH SENSITIVITY ", + "text_level": 1, + "bbox": [ + 176, + 103, + 464, + 118 + ], + "page_idx": 21 + }, + { + "type": "text", + "text": "Any dataset $D$ defines a histogram $\\bar { n } = ( n _ { 1 } , \\ldots , n _ { m } ) \\in \\mathbb { N } ^ { m }$ of the teachers’ votes. We have a natural notion of the distance between two histograms $\\operatorname { d i s t } ( \\bar { n } , \\bar { n } ^ { \\prime } )$ and a function $q \\colon \\mathbb { N } ^ { m } [ 0 , 1 ]$ on these histograms computing the bound according to Proposition 7. The value $q ( { \\bar { n } } )$ can be used as $\\tilde { q }$ in the application of Theorem 6. Additionally we have $\\boldsymbol { n } ^ { ( i ) }$ denote the $i$ -th highest bar in the histogram. ", + "bbox": [ + 173, + 128, + 826, + 202 + ], + "page_idx": 21 + }, + { + "type": "text", + "text": "We aim at calculating a smooth sensitivity of $\\beta \\left( q ( \\bar { n } ) \\right)$ whose definition we recall now. ", + "bbox": [ + 173, + 207, + 743, + 223 + ], + "page_idx": 21 + }, + { + "type": "text", + "text": "Definition 12 (Smooth Sensitivity). Given the smoothness parameter $\\beta$ , a $\\beta$ -smooth sensitivity of $f ( n )$ is defined as ", + "bbox": [ + 174, + 226, + 825, + 253 + ], + "page_idx": 21 + }, + { + "type": "equation", + "img_path": "images/0e0f2fa2554b39340a31602d93847c48ad1d028bf20f0694b831ba5bf92dc15f.jpg", + "text": "$$\n\\mathrm { S S } _ { \\beta } ( \\bar { n } ) \\triangleq \\operatorname* { m a x } _ { d \\geq 0 } e ^ { - \\beta d } \\cdot \\operatorname* { m a x } _ { \\bar { n } ^ { \\prime } : \\mathrm { d i s t } ( \\bar { n } , \\bar { n } ^ { \\prime } ) \\leq d } \\tilde { \\mathrm { L S } } ( \\bar { n } ^ { \\prime } ) ,\n$$", + "text_format": "latex", + "bbox": [ + 351, + 256, + 645, + 284 + ], + "page_idx": 21 + }, + { + "type": "text", + "text": "where ", + "bbox": [ + 174, + 287, + 215, + 301 + ], + "page_idx": 21 + }, + { + "type": "equation", + "img_path": "images/e801863ac7d8815bf8d9a8c052f211fb10b2460049e33cfc00e6caddff5ab968.jpg", + "text": "$$\n\\tilde { \\mathrm { L S } } ( \\bar { n } ) \\geq \\operatorname* { m a x } _ { \\bar { n } ^ { \\prime } : \\mathrm { d i s t } ( \\bar { n } , \\bar { n } ^ { \\prime } ) = 1 } | f ( n ) - f ( n ^ { \\prime } ) |\n$$", + "text_format": "latex", + "bbox": [ + 370, + 304, + 627, + 330 + ], + "page_idx": 21 + }, + { + "type": "text", + "text": "is an upper bound on the local sensitivity. ", + "bbox": [ + 176, + 334, + 446, + 349 + ], + "page_idx": 21 + }, + { + "type": "text", + "text": "We now describe Algorithms 3–5 computing a smooth sensitivity of $\\beta \\left( q ( \\cdot ) \\right)$ . The algorithms assume the existence of efficiently computable functions $q \\colon \\mathbb { N } ^ { m } [ 0 , 1 ]$ , $\\mathrm { B _ { L } } , \\mathrm { B _ { U } } \\colon [ 0 , 1 ] \\to [ 0 , 1 ]$ , and a constant $q _ { 0 }$ . ", + "bbox": [ + 174, + 358, + 826, + 401 + ], + "page_idx": 21 + }, + { + "type": "text", + "text": "Informally, the functions $\\mathrm { B _ { U } }$ and $\\mathrm { B _ { L } }$ respectively upper and lower bound the value of $q$ evaluated at any neighbor of $\\bar { n }$ given $q ( { \\bar { n } } )$ , and $[ 0 , q _ { 0 } )$ limits the range of applicability of data-dependent analysis. ", + "bbox": [ + 173, + 407, + 823, + 438 + ], + "page_idx": 21 + }, + { + "type": "text", + "text": "The functions $\\mathrm { B _ { L } }$ and $\\mathrm { B _ { U } }$ are defined as follows. Their derivation appears in Section B.4. ", + "bbox": [ + 171, + 443, + 759, + 458 + ], + "page_idx": 21 + }, + { + "type": "equation", + "img_path": "images/4d98ba6b423631d450213ea11cc140d6b38b9f2a647cfb7427d6ff9b4724b3d0.jpg", + "text": "$$\n\\begin{array} { l } { { \\displaystyle { \\mathrm { B } } _ { \\mathrm { U } } ( q ) \\triangleq \\operatorname* { m i n } \\left\\{ \\frac { m - 1 } { 2 } \\mathrm { e r f c } \\left( \\mathrm { e r f c } ^ { - 1 } \\left( \\frac { 2 q } { m - 1 } \\right) - \\frac { 1 } { \\sigma } \\right) , 1 \\right\\} , } } \\\\ { { \\displaystyle { \\mathrm { B } } _ { \\mathrm { L } } ( q ) \\triangleq \\frac { m - 1 } { 2 } \\mathrm { e r f c } \\left( \\mathrm { e r f c } ^ { - 1 } \\left( \\frac { 2 q } { m - 1 } \\right) + \\frac { 1 } { \\sigma } \\right) , } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 302, + 460, + 694, + 534 + ], + "page_idx": 21 + }, + { + "type": "text", + "text": "Algorithm 3 – Local Sensitivity: use the functions $\\mathrm { B _ { U } }$ and $\\mathrm { B _ { L } }$ to compute (an upper bound) of the local sensitivity at a given $q$ value by looking at the difference of $\\beta \\left( \\cdot \\right)$ evaluated on the bounds. ", + "bbox": [ + 173, + 549, + 823, + 579 + ], + "page_idx": 21 + }, + { + "type": "table", + "img_path": "images/6a31d795155be45c1cb5e956266a989f2c78f2afa0fa20bb3ff6c48c0ba271f5.jpg", + "table_caption": [], + "table_footnote": [], + "table_body": "
procedure LS(q)
2: if q1≤q≤ qo then q1 = BL(qo). Interpolate the middle part.
3: q↑q1 end if
4: 5:return max{β(Bu(q))-β(q),β(q)-β(BL(q))}
6: end procedure
", + "bbox": [ + 179, + 582, + 825, + 672 + ], + "page_idx": 21 + }, + { + "type": "text", + "text": "B.2 NOTATION AND CONDITIONS ", + "text_level": 1, + "bbox": [ + 176, + 695, + 419, + 710 + ], + "page_idx": 21 + }, + { + "type": "text", + "text": "Notation. We find that the algorithm and the proof of its correctness are more naturally expressed if we relax the notions of a histogram and its neighbors to allow non-integer values. ", + "bbox": [ + 173, + 722, + 823, + 751 + ], + "page_idx": 21 + }, + { + "type": "text", + "text": "• We generalize histograms to be any vector with non-negative real values. This relaxation is used only in the analysis of algorithms; the actual computations are performed exclusively over integer-valued inputs. \n• Let $\\bar { n } = [ n _ { 1 } , \\dots , n _ { m } ] \\in \\mathbb { R } ^ { m }$ , $n _ { i } \\geq 0$ denote a histogram. Let $\\boldsymbol { n } ^ { ( i ) }$ denote the $i$ -th bar in the descending order. \n• Define a “move” as increasing one bar by some value in $[ 0 , 1 ]$ and decreasing one bar by a (possibly different) value in $[ 0 , 1 ]$ subject to the resulting value be non-negative. Notice the difference between the original problem and our relaxation. In the original formulation, the histogram takes only integer values and we can only increase/decrease them by exactly 1. In contrast, we allow real values and a teacher can contribute an arbitrary amount in $[ 0 , 1 ]$ to any one class. ", + "bbox": [ + 217, + 761, + 825, + 924 + ], + "page_idx": 21 + }, + { + "type": "text", + "text": "Algorithm 4 – Sensitivity at a distance: given a histogram $\\bar { n }$ , compute the sensitivity of $\\beta \\left( \\cdot \\right)$ at distance at most $d$ using the procedure LS˜ , function $q ( \\cdot )$ , constants $q _ { 0 }$ and $q _ { 1 } = \\mathrm { B _ { L } } ( q _ { 0 } )$ , and careful ", + "bbox": [ + 173, + 103, + 826, + 148 + ], + "page_idx": 22 + }, + { + "type": "table", + "img_path": "images/a34773ddf53c93b1801fa950ead0a5c7667654d52deb65c13dd3d09310faa7cf.jpg", + "table_caption": [], + "table_footnote": [], + "table_body": "
case analysis that finds the neighbor at distance d with the maximum sensitivity.
1: procedure ATDISTANCED(n, d)
2: q←q(n)> q is in the flat region.
3: 4:if q1 ≤q≤ go then
return LS(q), STOP
5: end if
6:if q<qithen Need to increase q.
7:if n(1)-n(2)< 2d then n(i) is the ith largest element.
8:return LS(qi), STOP
9:else
10:n'← SORT(n)+[-d,d,O,...,0]
11:q'←q(n')
12:if q' >qi then
13:return LS(qo), STOP
14:else
15:return LS(q'),CONTINUE
16:end if
17:end if
18:else Need to decrease q.
19:
20:n↑[n,0,...,0]
21:q'←q(n')
22:return LS(q'), STOP
23:else
24:n' ← SORT(n)+[d,0,...,0]
25:for d' =1,...,d do
26:n'(2) ←n(2)-1 The index of n'(2) may change.
27:end for
28:q'←q(n')
29:if q'<qo then
30:return LS(qo), STOP
31:else
32:return LS(q'), CONTINUE
33:end if
34:end if
35: end if 36: end procedure
", + "bbox": [ + 171, + 137, + 825, + 664 + ], + "page_idx": 22 + }, + { + "type": "text", + "text": "Algorithm 5 – Smooth Sensitivity: Compute the $\\beta$ smooth sensitivity of $\\beta \\left( \\cdot \\right)$ via Definition 12 by looking at sensitivities at various distances and returning the maximum weighted by $e ^ { - \\beta d }$ . ", + "text_level": 1, + "bbox": [ + 174, + 681, + 821, + 712 + ], + "page_idx": 22 + }, + { + "type": "text", + "text": "1: procedure SMOOTHSENSITIVITY $( \\bar { n } , \\beta )$ \n2: S ← 0 \n3: d ← 0 \n4: repeat \n5: $c$ , StoppingCondition ATDISTANCED $( \\bar { n } , d )$ \n6: S ← max{S, c · e−βd} \n7: d ← d + 1 \n8: until StoppingCondition $=$ STOP \n9: end procedure ", + "bbox": [ + 179, + 715, + 560, + 842 + ], + "page_idx": 22 + }, + { + "type": "text", + "text": "• Define the distance between two histograms $\\bar { n } = ( n _ { 1 } , \\dots , n _ { m } )$ and $\\hat { n } ^ { \\prime } = ( n _ { 1 } ^ { \\prime } , \\dots , n _ { m } ^ { \\prime } )$ as ", + "bbox": [ + 217, + 866, + 820, + 882 + ], + "page_idx": 22 + }, + { + "type": "equation", + "img_path": "images/d62dd9e9d87ca604e4a74552a88afbd4a6db6bcb558c27bd67e92c99f0b4692c.jpg", + "text": "$$\nd ( \\bar { n } , \\bar { n } ^ { \\prime } ) \\triangleq \\operatorname* { m a x } \\left\\{ \\sum _ { \\substack { i : n _ { i } > n _ { i } ^ { \\prime } } } \\lceil n _ { i } - n _ { i } ^ { \\prime } \\rceil , \\quad \\sum _ { \\substack { i : n _ { i } < n _ { i } ^ { \\prime } } } \\lceil n _ { i } ^ { \\prime } - n _ { i } \\rceil \\right\\} ,\n$$", + "text_format": "latex", + "bbox": [ + 331, + 882, + 720, + 933 + ], + "page_idx": 22 + }, + { + "type": "text", + "text": "which is equal to the smallest number of “moves” needed to make the two histograms identical. We use the ceiling function since a single step can increase/decrease one bar by at most 1. ", + "bbox": [ + 232, + 103, + 825, + 146 + ], + "page_idx": 23 + }, + { + "type": "text", + "text": "We say that two histograms are neighbors if their distance $d$ is 1. ", + "bbox": [ + 232, + 147, + 656, + 162 + ], + "page_idx": 23 + }, + { + "type": "text", + "text": "Notice that analyses of Rényi differential privacy for LNMax, GNMax and the exponential mechanism are still applicable when the neighboring datasets are defined in this manner. ", + "bbox": [ + 227, + 164, + 821, + 193 + ], + "page_idx": 23 + }, + { + "type": "text", + "text": "• Given a randomized aggregator $\\mathcal { M } : \\mathbb { R } _ { \\ge 0 } ^ { m } [ m ]$ , let $q \\colon \\mathbb { R } _ { \\geq 0 } ^ { m } [ 0 , 1 ]$ be so that ", + "bbox": [ + 218, + 195, + 748, + 213 + ], + "page_idx": 23 + }, + { + "type": "equation", + "img_path": "images/8471e0e213718b3fe46ab230dfbfff17f68134b7f1e57f67aa3edc8cca914986.jpg", + "text": "$$\nq ( \\bar { n } ) \\geq \\mathbf { P r } [ \\mathcal { M } ( \\bar { n } ) \\neq \\operatorname { a r g m a x } ( \\bar { n } ) ] .\n$$", + "text_format": "latex", + "bbox": [ + 413, + 218, + 642, + 234 + ], + "page_idx": 23 + }, + { + "type": "text", + "text": "When the context is clear, we use $q$ to denote a specific value of the function, which, in particular, can be used as $\\tilde { q }$ in applications of Theorem 6. ", + "bbox": [ + 228, + 239, + 823, + 268 + ], + "page_idx": 23 + }, + { + "type": "text", + "text": "• Let $\\beta \\colon [ 0 , 1 ] \\mathbb { R }$ be the function that maps a $q$ value to the value of the Rényi accountant. ", + "bbox": [ + 218, + 272, + 821, + 287 + ], + "page_idx": 23 + }, + { + "type": "text", + "text": "Conditions. Throughout this section we will be referring to the list of conditions on $q ( \\cdot )$ and $\\beta \\left( \\cdot \\right)$ ", + "bbox": [ + 181, + 301, + 821, + 318 + ], + "page_idx": 23 + }, + { + "type": "text", + "text": "C1. The function $q ( \\cdot )$ is continuous in each argument $n _ { i }$ . \nC2. There exist functions $\\mathrm { B _ { U } , B _ { L } \\colon [ 0 , 1 ] \\to [ 0 , 1 ] }$ such that for any neighbor $\\bar { n } ^ { \\prime }$ of $\\bar { n }$ , we have $\\mathrm { B } _ { \\mathrm { L } } ( q ( \\bar { n } ) ) \\leq q ( \\bar { n } ^ { \\prime } ) \\leq \\mathrm { B } _ { \\mathrm { U } } ( q ( \\bar { n } ) )$ , i.e., $\\mathrm { B _ { U } }$ and $\\mathrm { B _ { L } }$ provide upper and lower bounds on the $q$ value of any neighbor of $\\bar { n }$ . \nC3. $\\operatorname { B _ { L } } ( q )$ is increasing in $q$ . \nC4. $\\mathrm { B _ { U } }$ and $\\mathrm { B _ { L } }$ are functional inverses of each other in part of the range, i.e., $q = \\mathrm { B _ { L } } ( \\mathrm { B _ { U } } ( q ) )$ for all $q \\in [ 0 , q _ { 0 } ]$ , where $q _ { 0 }$ is defined below. Additionally $\\mathrm { B } _ { \\mathrm { L } } ( \\bar { q } ) \\leq q \\bar { \\leq } \\mathrm { B } _ { \\mathrm { U } } ( q )$ for all $q \\in [ 0 , 1 ]$ . \nC5. $\\beta \\left( \\cdot \\right)$ has the following shape: there exist constants $\\beta ^ { * }$ and $q _ { 0 } \\leq 0 . 5$ , such that $\\beta \\left( q \\right)$ nondecreasing in $[ 0 , q _ { 0 } ]$ and $\\bar { \\beta ( q ) } = \\beta ^ { * } \\ge \\beta ( q _ { 0 } )$ for $q > q _ { 0 }$ . The constant $\\beta ^ { * }$ corresponds to a data-independent bound. \nC6. $\\Delta \\beta ( q ) \\triangleq \\beta ( \\mathrm { B } _ { \\mathrm { U } } ( q ) ) - \\beta ( q )$ is non-decreasing in $[ 0 , \\mathrm { B _ { L } } ( q _ { 0 } ) ]$ , i.e., when $\\mathrm { B _ { U } } ( q ) \\le q _ { 0 }$ . \nC7. Recall that $\\boldsymbol { n } ^ { ( i ) }$ is the $i$ -th largest coordinate of a histogram $\\bar { n }$ . Then, if $q ( \\bar { n } ) \\leq \\mathrm { B _ { U } } ( q _ { 0 } )$ , then $q ( { \\bar { n } } )$ is differentiable in all coordinates and ", + "bbox": [ + 199, + 328, + 826, + 554 + ], + "page_idx": 23 + }, + { + "type": "equation", + "img_path": "images/0e5fbcd8bdd27e5d00a653ed39197c383ea484e313945c5681977cf3be7862fe.jpg", + "text": "$$\n\\forall i > j \\ge 2 \\quad \\frac { \\partial q } { \\partial n ^ { ( j ) } } ( \\bar { n } ) \\ge \\frac { \\partial q } { \\partial n ^ { ( i ) } } ( \\bar { n } ) \\ge 0 .\n$$", + "text_format": "latex", + "bbox": [ + 390, + 559, + 665, + 590 + ], + "page_idx": 23 + }, + { + "type": "text", + "text": "C8. The function $q ( { \\bar { n } } )$ is invariant under addition of a constant, i.e., and $q ( { \\bar { n } } )$ is invariant under permutation of $\\bar { n }$ , i.e., ", + "bbox": [ + 200, + 597, + 647, + 612 + ], + "page_idx": 23 + }, + { + "type": "text", + "text": "", + "bbox": [ + 230, + 638, + 557, + 655 + ], + "page_idx": 23 + }, + { + "type": "text", + "text": "Finally, we require that if $n ^ { ( 1 ) } = n ^ { ( 2 ) }$ , then $q ( { \\bar { n } } ) \\geq q _ { 0 }$ ", + "bbox": [ + 232, + 681, + 591, + 699 + ], + "page_idx": 23 + }, + { + "type": "text", + "text": "We may additionally assume that $q _ { 0 } \\ \\ge \\ q ( [ n , 0 , \\ldots , 0 ] )$ . Indeed, if this condition is not satisfied, then the data-dependent analysis is not going to be used anywhere. The most extreme histogram— $[ n , 0 , \\ldots , 0 ]$ —is the most advantageous setting for applying data-dependent bounds. If we cannot use the data-dependent bound even in that case, we would be using the data-independent bound everywhere and do not need to compute smooth sensitivity anyway. Yet this condition is not automatically satisfied. For example, if $m$ (the number of classes) is large compared to $n$ (the number of teachers), we might have large $q ( [ n , 0 , \\ldots , 0 ] )$ . So we need to check this condition in the code before doing smooth sensitivity calculation. ", + "bbox": [ + 173, + 708, + 825, + 821 + ], + "page_idx": 23 + }, + { + "type": "text", + "text": "B.3 CORRECTNESS OF ALGORITHMS 3–5 ", + "text_level": 1, + "bbox": [ + 176, + 837, + 473, + 852 + ], + "page_idx": 23 + }, + { + "type": "text", + "text": "Recall that local sensitivity of a deterministic function $f$ is defined as max $f ( D ) - f ( D ^ { \\prime } )$ , where $D$ and $D ^ { \\prime }$ are neighbors. ", + "bbox": [ + 173, + 862, + 821, + 892 + ], + "page_idx": 23 + }, + { + "type": "text", + "text": "Proposition 13. Under conditions C2–C6, Algorithm $^ 3$ computes an upper bound on local sensitivity of $\\beta ( q ( \\bar { n } ) )$ . ", + "bbox": [ + 174, + 895, + 820, + 925 + ], + "page_idx": 23 + }, + { + "type": "text", + "text": "Proof. Since $\\beta \\left( \\cdot \\right)$ is non-decreasing everywhere (by C5), and for any neighbors $\\bar { n }$ and $\\bar { n } ^ { \\prime }$ it holds that $\\mathrm { B } _ { \\mathrm { L } } ( q ( \\bar { n } ) ) \\leq q ( \\bar { n } ^ { \\prime } ) \\leq \\mathrm { B } _ { \\mathrm { U } } ( q ( \\bar { n } ) )$ (by C2), we have the following ", + "bbox": [ + 169, + 103, + 823, + 133 + ], + "page_idx": 24 + }, + { + "type": "equation", + "img_path": "images/5e37804c04f0b61b766c1c18b59af0847d6859b2e52026105130c8ec00cc52bc.jpg", + "text": "$$\n\\begin{array} { r l } & { | \\beta \\left( q ( \\bar { n } ) \\right) - \\beta \\left( q ( \\bar { n } ^ { \\prime } ) \\right) | \\leq \\operatorname* { m a x } \\bigg \\{ \\beta \\Big ( \\mathrm { B } _ { \\mathrm { U } } { \\left( q ( \\bar { n } ) \\right) } \\Big ) - \\beta \\Big ( q ( \\bar { n } ) \\Big ) , \\beta \\Big ( q ( \\bar { n } ) \\Big ) - \\beta \\Big ( \\mathrm { B } _ { \\mathrm { L } } { \\left( q ( \\bar { n } ) \\right) } \\Big ) \\bigg \\} } \\\\ & { \\quad \\quad \\quad \\quad = \\operatorname* { m a x } \\bigg \\{ \\Delta \\beta \\Big ( q ( \\bar { n } ) \\Big ) , \\Delta \\beta \\Big ( \\mathrm { B } _ { \\mathrm { L } } { \\left( q ( \\bar { n } ) \\right) } \\Big ) \\bigg \\} } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 199, + 135, + 797, + 205 + ], + "page_idx": 24 + }, + { + "type": "text", + "text": "as an upper bound on the local sensitivity of $\\beta \\left( q ( \\cdot ) \\right)$ at input $\\bar { n }$ . ", + "bbox": [ + 173, + 207, + 591, + 223 + ], + "page_idx": 24 + }, + { + "type": "text", + "text": "The function computed by Algorithm 3 differs from above when $q ( \\bar { n } ) \\in ( \\mathrm { B _ { L } } ( q _ { 0 } ) , q _ { 0 } )$ . To complete the proof we need to argue that the local sensitivity is upper bounded by $\\Delta \\beta \\left( \\mathrm { B _ { L } } ( q _ { 0 } ) \\right)$ for $q ( { \\bar { n } } )$ in this interval. The bound follows from the following three observations. ", + "bbox": [ + 174, + 228, + 823, + 271 + ], + "page_idx": 24 + }, + { + "type": "text", + "text": "First, $\\Delta \\beta \\left( q \\right)$ is non-increasing in the range $( \\mathrm { B _ { L } } ( q _ { 0 } ) , 1 ]$ , since $\\beta \\left( \\mathrm { B } _ { \\mathrm { U } } ( q ) \\right)$ is constant (by $\\operatorname { B _ { U } } ( q ) \\geq$ $\\mathrm { B _ { U } } ( \\mathrm { B _ { L } } ( q _ { 0 } ) ) = q _ { 0 }$ and C5) and $\\beta \\left( q \\right)$ is non-decreasing in the range (by C5). In particular, ", + "bbox": [ + 171, + 276, + 821, + 306 + ], + "page_idx": 24 + }, + { + "type": "equation", + "img_path": "images/e768b40261e07a278ed78af1d8eaacd26eb8efa83b039462e27d4aa6dbd3e341.jpg", + "text": "$$\n\\Delta \\beta ( q ) \\leq \\Delta \\beta ( \\mathrm { B } _ { \\mathrm { L } } ( q _ { 0 } ) ) { \\mathrm { ~ i f ~ } } q \\geq \\mathrm { B } _ { \\mathrm { L } } ( q _ { 0 } ) .\n$$", + "text_format": "latex", + "bbox": [ + 367, + 309, + 630, + 327 + ], + "page_idx": 24 + }, + { + "type": "text", + "text": "Second, $\\Delta \\beta \\left( \\mathrm { B } _ { \\mathrm { L } } ( q ) \\right)$ is non-decreasing in the range $[ 0 , q _ { 0 } ]$ since $\\operatorname { B _ { L } } ( q )$ is increasing (by C3 and C6). This implies that ", + "bbox": [ + 169, + 328, + 823, + 356 + ], + "page_idx": 24 + }, + { + "type": "equation", + "img_path": "images/87c019bbfca5244fdfab97ca5325e8b310a2a30fdd80c9a5c4621b63ac321022.jpg", + "text": "$$\n\\Delta \\beta ( \\mathrm { B _ { L } } ( q ) ) \\leq \\Delta \\beta ( \\mathrm { B _ { L } } ( q _ { 0 } ) ) { \\mathrm { ~ i f ~ } } q \\leq q _ { 0 } .\n$$", + "text_format": "latex", + "bbox": [ + 366, + 354, + 632, + 372 + ], + "page_idx": 24 + }, + { + "type": "text", + "text": "By (8) and (9) applied to the intersection of the two ranges, it holds that ", + "bbox": [ + 173, + 380, + 645, + 395 + ], + "page_idx": 24 + }, + { + "type": "equation", + "img_path": "images/a7c2a46609dee524b7163b3e6a3ecf2386ca376b44363b84544140aa39622b24.jpg", + "text": "$$\n\\begin{array} { r } { \\operatorname* { m a x } \\bigg \\{ \\Delta \\beta \\Big ( q ( \\bar { n } ) \\Big ) , ~ \\Delta \\beta \\Big ( \\mathrm { B } _ { \\mathrm { L } } ( q ( \\bar { n } ) ) \\Big ) \\bigg \\} \\leq \\Delta \\beta \\left( \\mathrm { B } _ { \\mathrm { L } } ( q _ { 0 } ) \\right) \\mathrm { i f } ~ \\mathrm { B } _ { \\mathrm { L } } ( q _ { 0 } ) \\leq q \\leq q _ { 0 } , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 245, + 397, + 750, + 433 + ], + "page_idx": 24 + }, + { + "type": "text", + "text": "as needed. ", + "bbox": [ + 173, + 435, + 243, + 450 + ], + "page_idx": 24 + }, + { + "type": "text", + "text": "We thus established that the function computed by Algorithm 3, which we call $\\tilde { \\mathrm { L S } } ( q )$ from now on, is an upper bound on the local sensitivity. Formally, ", + "bbox": [ + 173, + 464, + 823, + 494 + ], + "page_idx": 24 + }, + { + "type": "equation", + "img_path": "images/bf84673a8a9cc41fcf5b2ef17c4a9a8a0439b4835fdcdf431c81993a82464af2.jpg", + "text": "$$\n\\begin{array} { r } { \\tilde { \\mathrm { L S } } ( q ) \\triangleq \\left\\{ \\begin{array} { l l } { \\Delta \\beta \\left( \\mathrm { B } _ { \\mathrm { L } } ( q _ { 0 } ) \\right) } & { \\mathrm { i f ~ } q \\in ( \\mathrm { B } _ { \\mathrm { L } } ( q _ { 0 } ) , q _ { 0 } ) , } \\\\ { \\operatorname* { m a x } \\left\\{ \\Delta \\beta \\left( q \\right) , \\Delta \\beta \\left( \\mathrm { B } _ { \\mathrm { L } } ( q ) \\right) \\right\\} } & { \\mathrm { o t h e r w i s e } . } \\end{array} \\right. } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 289, + 497, + 704, + 532 + ], + "page_idx": 24 + }, + { + "type": "text", + "text": "The following proposition characterizes the growth of $\\tilde { \\mathrm { L S } } ( q )$ . ", + "bbox": [ + 173, + 545, + 575, + 560 + ], + "page_idx": 24 + }, + { + "type": "text", + "text": "Proposition 14. Assuming conditions $C 2 { - } C 6 ,$ , the function $\\tilde { \\mathrm { L S } } ( q )$ is non-decreasing in $[ 0 , \\mathrm { B _ { L } } ( q _ { 0 } ) ]$ , constant in $[ \\mathrm { B _ { L } } ( q _ { 0 } ) , q _ { 0 } ]$ , and non-increasing in $[ q _ { 0 } , 1 ]$ . ", + "bbox": [ + 173, + 564, + 823, + 595 + ], + "page_idx": 24 + }, + { + "type": "text", + "text": "Proof. Consider separately three intervals. ", + "bbox": [ + 174, + 608, + 454, + 625 + ], + "page_idx": 24 + }, + { + "type": "text", + "text": "• By construction, $\\tilde { \\mathrm { L S } }$ is constant in $[ \\mathrm { B _ { L } } ( q _ { 0 } ) , q _ { 0 } ]$ . \n• Since both functions $\\Delta \\beta \\left( \\cdot \\right)$ and $\\Delta \\beta \\left( \\mathrm { B _ { L } } ( \\cdot ) \\right)$ are each non-decreasing in $[ 0 , \\mathrm { B _ { L } } ( q _ { 0 } ) )$ , so is their max. \n• In the interval $( q _ { 0 } , 1 ] , \\beta ( q )$ is constant. Hence $\\Delta \\beta ( q ) = 0$ and $\\Delta \\beta ( \\mathrm { B } _ { \\mathrm { L } } ( q ) ) = \\beta ( q ) -$ $\\beta \\left( \\mathrm { B _ { L } } ( q ) \\right)$ is non-decreasing. Their maximum value $\\Delta \\beta \\left( \\mathrm { B _ { L } } ( q ) \\right)$ is non-decreasing. ", + "bbox": [ + 215, + 637, + 825, + 731 + ], + "page_idx": 24 + }, + { + "type": "text", + "text": "The claim follows. ", + "bbox": [ + 174, + 742, + 299, + 757 + ], + "page_idx": 24 + }, + { + "type": "text", + "text": "We next prove correctness of Algorithm 4, which computes the maximal sensitivity of $\\beta$ at a fixed distance. ", + "bbox": [ + 176, + 772, + 826, + 801 + ], + "page_idx": 24 + }, + { + "type": "text", + "text": "The proof relies on the following notion of a partial order between histograms. ", + "bbox": [ + 178, + 808, + 687, + 824 + ], + "page_idx": 24 + }, + { + "type": "text", + "text": "Definition 15. Prefix sums $S _ { i } ( \\bar { n } )$ are defined as follows: ", + "bbox": [ + 173, + 825, + 549, + 840 + ], + "page_idx": 24 + }, + { + "type": "equation", + "img_path": "images/61e36132164f56cbb5eac510ee6c00562799aab463400659a78d5be1f75c552e.jpg", + "text": "$$\nS _ { i } ( \\bar { n } ) \\triangleq \\sum _ { j = 1 } ^ { i } ( n ^ { ( 1 ) } - n ^ { ( j ) } ) .\n$$", + "text_format": "latex", + "bbox": [ + 410, + 843, + 588, + 887 + ], + "page_idx": 24 + }, + { + "type": "text", + "text": "We say that a histogram $\\bar { n }$ dominates $\\bar { n } ^ { \\prime }$ , denoted as $\\bar { n } \\succeq \\bar { n } ^ { \\prime }$ , iff: ", + "bbox": [ + 173, + 890, + 593, + 906 + ], + "page_idx": 24 + }, + { + "type": "text", + "text": "The function $q ( \\cdot )$ is monotone under this notion of dominance (assuming certain conditions hold): Proposition 16. If $q ( \\cdot )$ satisfies C1, C2, C7, and $C 8 _ { \\mathrm { : } }$ , and $q ( \\bar { n } ) < \\mathrm { B _ { U } } ( q _ { 0 } )$ , then ", + "bbox": [ + 173, + 103, + 816, + 137 + ], + "page_idx": 25 + }, + { + "type": "equation", + "img_path": "images/932364722b16b32734ed5f03e55e82f13f3610d021ef610e08875c1043083e30.jpg", + "text": "$$\n\\bar { n } \\succeq \\bar { n } ^ { \\prime } \\Rightarrow q ( \\bar { n } ) \\leq q ( \\bar { n } ^ { \\prime } ) .\n$$", + "text_format": "latex", + "bbox": [ + 415, + 141, + 581, + 160 + ], + "page_idx": 25 + }, + { + "type": "text", + "text": "Proof. We may assume that $n ^ { ( 1 ) } = n ^ { \\prime ( 1 ) }$ . Indeed, if this does not hold, add $| n ^ { ( 1 ) } - n ^ { \\prime ( 1 ) } |$ to all coordinates of the histogram with the smaller of the two values. This transform does not change the $q$ value (by C8) and it preserves the $\\succeq$ relationship as all prefix sums $S _ { i } ( \\cdot )$ remain unchanged. ", + "bbox": [ + 173, + 172, + 825, + 218 + ], + "page_idx": 25 + }, + { + "type": "text", + "text": "We make a simple observation that will be helpful later: ", + "bbox": [ + 174, + 223, + 540, + 238 + ], + "page_idx": 25 + }, + { + "type": "equation", + "img_path": "images/87a290a91360b0afa6a80fe03af03f377df02790898ac4640ed1989f63ae2d4d.jpg", + "text": "$$\n\\forall i \\in [ m ] \\mathrm { i t } \\mathrm { h o l d s ~ t h a t } \\sum _ { j = 1 } ^ { i } ( n ^ { ( 1 ) } - n _ { j } ) \\geq S _ { i } ( \\bar { n } ) .\n$$", + "text_format": "latex", + "bbox": [ + 341, + 243, + 656, + 289 + ], + "page_idx": 25 + }, + { + "type": "text", + "text": "The inequality holds because the prefix sum accumulates the gaps between the largest value of $\\bar { n }$ and all other values in the non-decreasing order. Any deviation from this order may only increase the prefix sums. ", + "bbox": [ + 174, + 292, + 826, + 335 + ], + "page_idx": 25 + }, + { + "type": "text", + "text": "The following lemma constructs a monotone chain (in the partial order of dominance) of histograms connecting $\\bar { n }$ and $\\bar { n } ^ { \\prime }$ via a sequence of intermediate steps that either do not change the value of $q$ or touch at most two coordinates at a time. ", + "bbox": [ + 174, + 342, + 823, + 385 + ], + "page_idx": 25 + }, + { + "type": "text", + "text": "Lemma 17. There exists a chain ${ \\bar { n } } = { \\bar { n } } _ { 0 } \\succeq { \\bar { n } } _ { 1 } \\succeq \\cdot \\cdot \\cdot \\succeq { \\bar { n } } _ { d } = { \\bar { n } } ^ { \\prime }$ , such that for all $i \\in [ d ]$ either $d ( \\bar { n } _ { i - 1 } , \\bar { n } _ { i } ) = 1$ or $\\bar { n } _ { i - 1 } = \\pi ( \\bar { n } _ { i } )$ for some permutation $\\pi$ on $[ m ]$ . Additionally, = · · · = n(1)d . ", + "bbox": [ + 174, + 390, + 821, + 424 + ], + "page_idx": 25 + }, + { + "type": "text", + "text": "Proof (Lemma). Wlog we assume that $\\bar { n }$ and $\\bar { n } ^ { \\prime }$ are each sorted in the descending order. The proof is by induction on $\\begin{array} { r } { \\ell ( \\bar { n } , \\bar { n } ^ { \\prime } ) \\stackrel { \\Delta } { = } \\sum _ { i } \\lceil n _ { i } - n _ { i } ^ { \\prime } \\rceil \\leq 2 d ( \\bar { n } , \\bar { n } ^ { \\prime } ) } \\end{array}$ , which, by construction, only assumes non-negative integer values. ", + "bbox": [ + 173, + 438, + 825, + 483 + ], + "page_idx": 25 + }, + { + "type": "text", + "text": "If the distance is 0, the statement is immediate. Otherwise, find the smallest $i$ so that $S _ { i } ( \\bar { n } ) > S _ { i } ( \\bar { n } ^ { \\prime } )$ (if all prefix sums are equal and $n ^ { ( 1 ) } = n ^ { \\prime ( 1 ) }$ , it would imply that $\\bar { n } = \\bar { n } ^ { \\prime }$ ). In particular, it means that $n _ { j } = n _ { j } ^ { \\prime }$ for $j < i$ and $n _ { i } < n _ { i } ^ { \\prime } \\le n _ { i - 1 } = n _ { i - 1 } ^ { \\prime }$ . Let $x \\triangleq \\operatorname* { m i n } ( n _ { i } ^ { \\prime } - n _ { i } , 1 )$ . Define $\\bar { n } ^ { \\prime \\prime }$ as identical to $\\bar { n } ^ { \\prime }$ except that $n _ { i } ^ { \\prime \\prime } = n _ { i } ^ { \\prime } - x$ . The new value is guaranteed to be non-negative, since $x \\leq n _ { i } ^ { \\prime } - n _ { i }$ and $n _ { i } \\geq 0$ . Note that $\\bar { n } ^ { \\prime \\prime }$ is not necessarily sorted anymore. Consider two possibilities. ", + "bbox": [ + 173, + 488, + 825, + 565 + ], + "page_idx": 25 + }, + { + "type": "text", + "text": "Case I: $\\bar { n } \\succeq \\bar { n } ^ { \\prime \\prime }$ . Since $\\bar { n } ^ { \\prime \\prime } \\succeq \\bar { n } ^ { \\prime }$ , $\\ell ( \\bar { n } , \\bar { n } ^ { \\prime \\prime } ) < \\ell ( \\bar { n } , \\bar { n } ^ { \\prime } )$ , and $d ( \\bar { n } ^ { \\prime \\prime } , \\bar { n } ^ { \\prime } ) = 1$ , we may apply the induction hypothesis to the pair $\\bar { n } , \\bar { n } ^ { \\prime \\prime }$ . ", + "bbox": [ + 174, + 569, + 821, + 599 + ], + "page_idx": 25 + }, + { + "type": "text", + "text": "Case II: $\\bar { n } \\not \\subset \\bar { n } ^ { \\prime \\prime }$ . This may happen because the prefix sums of $\\bar { n } ^ { \\prime \\prime }$ increase compared to $S _ { j } ( \\bar { n } ^ { \\prime } )$ for $j \\geq i$ . Find the smallest such $i ^ { \\prime }$ so that $\\textstyle \\sum _ { j = 1 } ^ { i ^ { \\prime } } ( n _ { 1 } ^ { \\prime \\prime } - n _ { j } ^ { \\prime \\prime } ) > S _ { i ^ { \\prime } } ( \\bar { n } )$ . (Since $\\bar { n } ^ { \\prime \\prime }$ is not sorted, we fix the order in which prefix sums are accumulated to be the same as in $\\bar { n }$ ; by (10) $i ^ { \\prime }$ is well defined). Next we let $\\bar { n } ^ { \\prime \\prime \\prime }$ be identical to $\\bar { n } ^ { \\prime \\prime }$ except that $n _ { i ^ { \\prime } } ^ { \\prime \\prime \\prime } = n _ { i ^ { \\prime } } ^ { \\prime \\prime } + x$ . In other words, $\\bar { n } ^ { \\prime \\prime \\prime }$ differs from $\\bar { n } ^ { \\prime }$ by shifting $x$ from coordinate $i$ to coordinate $i ^ { \\prime }$ . ", + "bbox": [ + 173, + 604, + 825, + 684 + ], + "page_idx": 25 + }, + { + "type": "text", + "text": "We argue that incrementing $n _ { i ^ { \\prime } } ^ { \\prime \\prime }$ by $x$ does not change the maximal value of $\\bar { n } ^ { \\prime \\prime }$ , i.e., $n _ { 1 } ^ { \\prime \\prime \\prime } > n _ { i \\prime } ^ { \\prime \\prime \\prime }$ . Our choice of $i ^ { \\prime }$ , which is the smallest index so that the prefix sum over $\\bar { n } ^ { \\prime \\prime }$ overtakes that over $\\bar { n }$ , implies that $n _ { 1 } ^ { \\prime \\prime } - n _ { i ^ { \\prime } } ^ { \\prime \\prime } > n _ { 1 } - n _ { i ^ { \\prime } }$ . Since $n _ { 1 } ^ { \\prime \\prime } = n _ { 1 }$ , it means that $n _ { i ^ { \\prime } } > n _ { i ^ { \\prime } } ^ { \\prime \\prime }$ (and by adding $x$ we move $n _ { i ^ { \\prime } } ^ { \\prime \\prime }$ towards $n _ { i ^ { \\prime } }$ ). Furthermore, ", + "bbox": [ + 173, + 689, + 825, + 747 + ], + "page_idx": 25 + }, + { + "type": "equation", + "img_path": "images/de324607f5fe5bb5f2dc8482a81c533c6fbe3878cdc34a473edd73e26e83e3e3.jpg", + "text": "$$\nn _ { i ^ { \\prime } } ^ { \\prime \\prime \\prime } = n _ { i ^ { \\prime } } ^ { \\prime \\prime } + x \\leq n _ { i ^ { \\prime } } + ( n _ { i } ^ { \\prime } - n _ { i } ) = n _ { i } ^ { \\prime } + ( n _ { i ^ { \\prime } } - n _ { i } ) \\leq n _ { i } ^ { \\prime } \\leq n _ { 1 } ^ { \\prime } = n _ { 1 } ^ { \\prime \\prime \\prime } ,\n$$", + "text_format": "latex", + "bbox": [ + 264, + 751, + 732, + 768 + ], + "page_idx": 25 + }, + { + "type": "text", + "text": "(We use $n _ { i ^ { \\prime } } \\leq n _ { i }$ , which is implied by $i ^ { \\prime } > i$ .) ", + "bbox": [ + 173, + 773, + 478, + 789 + ], + "page_idx": 25 + }, + { + "type": "text", + "text": "We claim that $\\begin{array} { r } { \\sum _ { j = 1 } ^ { t } ( n _ { 1 } ^ { \\prime \\prime \\prime } - n _ { j } ^ { \\prime \\prime \\prime } ) \\le S _ { t } ( \\bar { n } ) } \\end{array}$ for all $t$ , and thus, via (10), $\\bar { n } \\succeq \\bar { n } ^ { \\prime \\prime \\prime }$ . The choice of $i ^ { \\prime }$ makes the statement trivial for $t < i ^ { \\prime }$ . For $t \\geq i ^ { \\prime }$ the following holds: ", + "bbox": [ + 174, + 796, + 823, + 829 + ], + "page_idx": 25 + }, + { + "type": "equation", + "img_path": "images/e0110dc6f86f54fca9b4c48b25ed0f43f2cfddfddc301ce75088d5f8b2bda130.jpg", + "text": "$$\n\\sum _ { j = 1 } ^ { t } ( n _ { 1 } ^ { \\prime \\prime \\prime } - n _ { j } ^ { \\prime \\prime \\prime } ) = \\sum _ { j = 1 } ^ { t } ( n _ { 1 } ^ { \\prime \\prime } - n _ { j } ^ { \\prime \\prime } ) - x \\leq \\left( \\sum _ { j = 1 } ^ { t } ( n _ { 1 } ^ { \\prime } - n _ { j } ^ { \\prime } ) + x \\right) - x = S _ { t } ( n ^ { \\prime } ) \\leq S _ { t } ( \\bar { n } ) .\n$$", + "text_format": "latex", + "bbox": [ + 209, + 832, + 785, + 883 + ], + "page_idx": 25 + }, + { + "type": "text", + "text": "By construction $d ( \\bar { n } ^ { \\prime } , \\bar { n } ^ { \\prime \\prime \\prime } ) = 1$ (the two histograms differ in two locations, in positive and negative directions, by $x \\leq 1$ in each). For the same reasons $\\bar { n } ^ { \\prime \\prime \\prime } \\succeq \\bar { n } ^ { \\prime }$ . To show that $\\bar { \\ell } ( \\bar { n } , \\bar { n } ^ { \\prime } ) > \\ell ( \\bar { n } , \\bar { n } ^ { \\prime \\prime \\prime } )$ , ", + "bbox": [ + 173, + 895, + 825, + 925 + ], + "page_idx": 25 + }, + { + "type": "text", + "text": "compare $\\lceil n _ { j } - n _ { j } ^ { \\prime } \\rceil$ and $\\lceil n _ { j } - n _ { j } ^ { \\prime \\prime \\prime } \\rceil$ for $j = i , i ^ { \\prime }$ . At $j = i$ the first term is strictly larger than the second. At $j = i ^ { \\prime }$ , the inequality holds too but it may be not strict. ", + "bbox": [ + 173, + 102, + 823, + 135 + ], + "page_idx": 26 + }, + { + "type": "text", + "text": "We may again apply the induction hypothesis to the pair $\\bar { n }$ and $\\bar { n } ^ { \\prime \\prime \\prime }$ , thus completing the proof of the lemma. ", + "bbox": [ + 171, + 140, + 823, + 170 + ], + "page_idx": 26 + }, + { + "type": "text", + "text": "To complete the proof of the proposition, we need to argue that the values of $q$ are also monotone in the chain constructed by the previous lemma. Concretely, we put forth ", + "bbox": [ + 173, + 184, + 826, + 213 + ], + "page_idx": 26 + }, + { + "type": "text", + "text": "Proof. The fact that $d ( \\bar { n } , \\bar { n } ^ { \\prime } ) = 1$ and $\\bar { n } \\succeq \\bar { n } ^ { \\prime }$ means that there is either a single index $i$ so that $n _ { i } ^ { \\prime } < n _ { i }$ , or there exist two indices $i$ and $j$ so that $n _ { i } ^ { \\prime } < n _ { i }$ and $n _ { j } ^ { \\prime } > n _ { j }$ . The first case is immediate, since $q$ is non-decreasing in all inputs except for the largest (by C7). ", + "bbox": [ + 173, + 251, + 826, + 294 + ], + "page_idx": 26 + }, + { + "type": "text", + "text": "Let $n _ { i } ^ { \\prime } = n _ { i } - x$ and $n _ { j } ^ { \\prime } = n _ { j } + y$ , where $x , y > 0$ . Since $\\bar { n } \\succeq \\bar { n } ^ { \\prime }$ , it follows that $n _ { i } \\geq n _ { j }$ and $x > y$ Consider two cases. ", + "bbox": [ + 174, + 299, + 820, + 329 + ], + "page_idx": 26 + }, + { + "type": "text", + "text": "Case I: $n _ { i } ^ { \\prime } \\geq n _ { j } ^ { \\prime }$ , i.e., removing $x$ from $n _ { i }$ and adding $y$ to $n _ { j }$ does not change their ordering. Let ", + "bbox": [ + 168, + 335, + 810, + 352 + ], + "page_idx": 26 + }, + { + "type": "equation", + "img_path": "images/6494bd35497a509b8f7d73f77113409c8cd2b52a95a50f290b487553202cec9b.jpg", + "text": "$$\n\\bar { n } ( t ) \\triangleq ( 1 - t ) \\bar { n } + t \\cdot \\bar { n } ^ { \\prime } = [ n _ { 1 } , \\ldots , n _ { i } - t \\cdot x , \\ldots , n _ { j } + t \\cdot y , \\ldots , n _ { m } ] .\n$$", + "text_format": "latex", + "bbox": [ + 263, + 359, + 733, + 378 + ], + "page_idx": 26 + }, + { + "type": "text", + "text": "Then, ", + "bbox": [ + 174, + 383, + 214, + 398 + ], + "page_idx": 26 + }, + { + "type": "equation", + "img_path": "images/c3a7f188b7530edd23bdad41a77caecb8a059c7e5594abe8daa0b950f7b39059.jpg", + "text": "$$\n\\begin{array} { l l } { \\displaystyle q ( \\bar { n } ^ { \\prime } ) - q ( \\bar { n } ) = q ( \\bar { n } ( 1 ) ) - q ( \\bar { n } ( 0 ) ) = \\int _ { t = 0 } ^ { 1 } ( q \\circ \\bar { n } ) ^ { \\prime } ( t ) \\mathrm { d } t } \\\\ { \\displaystyle \\qquad = \\int _ { t = 0 } ^ { 1 } \\left\\{ - x \\frac { \\partial q } { \\partial n _ { i } } \\bar { n } ( t ) + y \\frac { \\partial q } { \\partial n _ { j } } \\bar { n } ( t ) \\right\\} \\mathrm { d } t } \\\\ { \\displaystyle \\qquad \\leq 0 . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 248, + 404, + 750, + 496 + ], + "page_idx": 26 + }, + { + "type": "text", + "text": "The last inequality follows from C7 and the facts that $x > y > 0$ and $n _ { i } ( t ) > n _ { j } ( t )$ . (The condition that $q ( \\bar { n } ( t ) ) \\overset { \\cdot } { \\leq } \\dot { \\mathrm { B } _ { \\mathrm { U } } } ( q _ { 0 } )$ follows from C2 and the fact that $d ( \\bar { n } ^ { \\prime } , \\bar { n } ( t ) ) \\leq 1 .$ ) ", + "bbox": [ + 174, + 501, + 823, + 530 + ], + "page_idx": 26 + }, + { + "type": "text", + "text": "Case II: $n _ { i } ^ { \\prime } \\leq n _ { j } ^ { \\prime }$ . In this case we swap the $i$ th and $j$ th indices in $\\bar { n } ^ { \\prime }$ by defining $\\bar { n } ^ { \\prime \\prime }$ which differs from it in $\\bar { n } _ { i } ^ { \\prime \\prime } = \\bar { n } _ { j } ^ { \\prime }$ and $\\bar { n } _ { j \\_ } ^ { \\prime \\prime } = \\bar { n } _ { i } ^ { \\prime }$ . By C8, $q ( \\bar { n } ^ { \\prime \\prime } ) = q ( \\bar { n } ^ { \\prime } )$ and, of course, $\\bar { n } ^ { \\prime \\prime } \\succeq \\bar { n }$ since the prefix sums remain unchanged. The benefit of doing this transformation is that we are back in Case I, where the relative order of coordinates that change between $\\bar { n }$ and $\\bar { n } ^ { \\prime \\prime }$ remains the same. ", + "bbox": [ + 173, + 535, + 825, + 594 + ], + "page_idx": 26 + }, + { + "type": "text", + "text": "This concludes the proof of the lemma. ", + "bbox": [ + 176, + 601, + 431, + 616 + ], + "page_idx": 26 + }, + { + "type": "text", + "text": "Applying Lemma 17 we construct a chain of histograms between $\\bar { n }$ and $\\bar { n } ^ { \\prime }$ , which, by Lemma 18, is non-increasing in $q ( \\cdot )$ . Together this implies that $q ( \\bar { n } ) \\leq q ( \\bar { n } ^ { \\prime } )$ , as claimed. ", + "bbox": [ + 174, + 631, + 825, + 661 + ], + "page_idx": 26 + }, + { + "type": "text", + "text": "We apply the notion of dominance in proving the following proposition, which is used later in arguing correctness of Algorithm 4. ", + "bbox": [ + 174, + 674, + 825, + 703 + ], + "page_idx": 26 + }, + { + "type": "text", + "text": "Proposition 19. Let n¯ be an integer-valued histogram and d be a positive integer. And $q ( \\cdot )$ satisfies C1, C7, and C8. The following holds: ", + "bbox": [ + 173, + 707, + 823, + 736 + ], + "page_idx": 26 + }, + { + "type": "text", + "text": "1. Assuming $n ^ { ( 1 ) } - n ^ { ( 2 ) } \\geq 2 d ,$ , let $\\bar { n } ^ { * }$ be obtained from $\\bar { n }$ by decrementing ${ \\boldsymbol n } ^ { ( 1 ) }$ by $d$ and incrementing $n ^ { ( 2 ) }$ by $d .$ . Then ", + "bbox": [ + 207, + 746, + 825, + 776 + ], + "page_idx": 26 + }, + { + "type": "text", + "text": "2. Assuming repeatedly $\\begin{array} { r } { \\sum _ { i = 2 } ^ { m } n ^ { ( i ) } \\geq d } \\end{array}$ , let e hi $\\bar { n } ^ { * * }$ be obtained from am’s current secon $\\bar { n }$ by incrementing highest value by o $n _ { 1 }$ y ti $d$ , and byes. Then $d$ ", + "bbox": [ + 205, + 814, + 825, + 844 + ], + "page_idx": 26 + }, + { + "type": "text", + "text": "Proof. Towards proving the claims, we argue that $\\bar { n } ^ { * }$ and $\\bar { n } ^ { * * }$ are, respectively, the minimal and the maximal elements in the histogram dominance order (Definition 15) in the set of histograms at distance $d$ from $\\bar { n }$ . By Proposition 16 the claims follow. ", + "bbox": [ + 174, + 881, + 823, + 924 + ], + "page_idx": 26 + }, + { + "type": "text", + "text": "1. Take any histogram $\\bar { n } ^ { \\prime }$ at distance $d$ from $\\bar { n }$ . Our goal is to prove that $\\bar { n } ^ { \\prime } \\succeq$ $\\bar { n } ^ { * }$ . Recall the definition of the distance $d ( \\cdot , \\cdot )$ between two histograms $d ( \\bar { n } , \\bar { n } ^ { \\prime } ) ~ =$ max $\\begin{array} { r l } { \\bigg \\{ \\sum _ { i : n _ { i } > n _ { i } ^ { \\prime } } \\lceil n _ { i } - n _ { i } ^ { \\prime } \\rceil , \\sum _ { i : n _ { i } < n _ { i } ^ { \\prime } } \\lceil n _ { i } ^ { \\prime } - n _ { i } \\rceil \\bigg \\} } & { { } } \\end{array}$ . If the distance is bounded by $d$ , it means, in particular, that ", + "bbox": [ + 214, + 102, + 825, + 170 + ], + "page_idx": 27 + }, + { + "type": "equation", + "img_path": "images/e51cdc6036b3cf6ba1921706a666ce5da624dffafd279e30cb6d46ffbeb7ad42.jpg", + "text": "$$\n\\sum _ { j = 2 } ^ { i } n ^ { \\prime ( j ) } \\leq \\sum _ { j = 2 } ^ { i } n ^ { ( j ) } + d \\quad { \\mathrm { ~ f o r ~ a l l ~ } } i > 2 .\n$$", + "text_format": "latex", + "bbox": [ + 392, + 194, + 661, + 239 + ], + "page_idx": 27 + }, + { + "type": "text", + "text": "That lets us bound the prefix sums of $\\bar { n } ^ { \\prime }$ as follows: ", + "bbox": [ + 230, + 243, + 570, + 258 + ], + "page_idx": 27 + }, + { + "type": "equation", + "img_path": "images/bf48420f4900c7f8d7ff8206d29a0facecae5d732ed9e66b42c0d87828f6b09a.jpg", + "text": "$$\n\\begin{array} { l } { S _ { i } ( \\bar { n } ^ { \\prime } ) = \\displaystyle \\sum _ { j = 2 } ^ { i } ( n ^ { \\prime ( 1 ) } - n ^ { \\prime ( j ) } ) = ( i - 1 ) \\cdot n ^ { \\prime ( 1 ) } - \\displaystyle \\sum _ { j = 2 } ^ { i } n ^ { \\prime ( j ) } } \\\\ { \\geq ( i - 1 ) \\cdot ( n ^ { ( 1 ) } - d ) - \\displaystyle \\left( \\sum _ { j = 2 } ^ { i } n ^ { ( j ) } + d \\right) = S _ { i } ( \\bar { n } ^ { * } ) . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 248, + 266, + 808, + 363 + ], + "page_idx": 27 + }, + { + "type": "text", + "text": "We demonstrated that $\\bar { n } ^ { \\prime } \\succeq \\bar { n } ^ { * }$ , which, by Proposition 16, implies that $q ( \\bar { n } ^ { \\prime } ) \\leq q ( \\bar { n } ^ { * } )$ Together with the immediate $d ( \\bar { n } , \\bar { n } ^ { * } ) = d$ we prove the claim. ", + "bbox": [ + 232, + 366, + 821, + 396 + ], + "page_idx": 27 + }, + { + "type": "text", + "text": "2. Assume wlog that $\\bar { n }$ is sorted in the descending order. Define the following value that depends on $\\bar { n }$ and $d$ : ", + "bbox": [ + 214, + 404, + 823, + 433 + ], + "page_idx": 27 + }, + { + "type": "equation", + "img_path": "images/2ae07e381ae3d22531b806739fd5ae3cf8a217c375f0f495fca76da961fa2406.jpg", + "text": "$$\nu \\triangleq \\operatorname* { m i n } \\left\\{ x \\in { \\mathbb { N } } \\colon \\sum _ { i : i > 1 , n _ { i } \\geq x } n _ { i } - x \\leq d \\right\\} .\n$$", + "text_format": "latex", + "bbox": [ + 382, + 436, + 673, + 487 + ], + "page_idx": 27 + }, + { + "type": "text", + "text": "The constant $u$ is the smallest such $x$ so that the total mass that can be shaved from elements of $\\bar { n }$ above $x$ (excluding $n _ { 1 }$ ) is at most $d$ . ", + "bbox": [ + 232, + 491, + 821, + 518 + ], + "page_idx": 27 + }, + { + "type": "text", + "text": "We give the following equivalent definition of $\\bar { n } ^ { * * }$ : ", + "bbox": [ + 232, + 525, + 568, + 540 + ], + "page_idx": 27 + }, + { + "type": "equation", + "img_path": "images/813c8558474a39af939a72cbc535ee9c7e7b03c4a40cebcab34830ae3e0cc6f3.jpg", + "text": "$$\nn _ { i } ^ { * * } = \\left\\{ { \\begin{array} { l l } { n _ { 1 } + d } & { { \\mathrm { i f ~ } } i = 1 , } \\\\ { u } & { { \\mathrm { i f ~ } } i > 1 { \\mathrm { ~ a n d ~ } } n _ { i } \\geq u , } \\\\ { n _ { i } } & { { \\mathrm { o t h e r w i s e } } . } \\end{array} } \\right.\n$$", + "text_format": "latex", + "bbox": [ + 397, + 546, + 656, + 598 + ], + "page_idx": 27 + }, + { + "type": "text", + "text": "Fix any $i \\in [ m ]$ and any histogram $\\bar { n } ^ { \\prime }$ at distance $d$ from $\\bar { n }$ . Our goal is to prove that $S _ { i } ( \\bar { n } ^ { * * } ) \\geq S _ { i } ^ { \\bar { ( n ^ { \\prime } ) } }$ and thus $\\bar { n } ^ { * * } \\succeq \\bar { n } ^ { \\prime }$ . Assume the opposite and take largest $i$ such that $S _ { i } ( { \\bar { n } } ^ { * * } ) < S _ { i } ( { \\bar { n } } ^ { \\prime } )$ . ", + "bbox": [ + 232, + 603, + 825, + 647 + ], + "page_idx": 27 + }, + { + "type": "text", + "text": "We may assume that $n ^ { \\prime ( 1 ) } = n _ { 1 } ^ { * * } = n _ { 1 } + d$ . Consider the following cases. ", + "bbox": [ + 235, + 652, + 718, + 670 + ], + "page_idx": 27 + }, + { + "type": "text", + "text": "Case I. If $n ^ { * * ( i ) } < u$ , the contradiction follows from ", + "bbox": [ + 232, + 676, + 580, + 693 + ], + "page_idx": 27 + }, + { + "type": "equation", + "img_path": "images/20c6752be4a43e4789082067e1276bddffdc8903272c1a05f275d7d232fed5bf.jpg", + "text": "$$\n\\begin{array} { r } { S _ { i } ( \\bar { n } ^ { \\prime } ) = \\displaystyle \\sum _ { j = 2 } ^ { i } ( n ^ { \\prime ( 1 ) } - n ^ { \\prime ( j ) } ) = \\displaystyle \\sum _ { j = 2 } ^ { i } \\Big ( ( n ^ { \\prime ( 1 ) } - n ^ { ( 1 ) } ) + ( n ^ { ( 1 ) } - n ^ { ( j ) } ) + ( n ^ { ( j ) } - n ^ { \\prime ( j ) } ) \\Big ) } \\\\ { \\le ( i - 1 ) d + S _ { i } ( \\bar { n } ) + d = S _ { i } ( \\bar { n } ^ { * * } ) . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 246, + 699, + 810, + 765 + ], + "page_idx": 27 + }, + { + "type": "text", + "text": "The last equality is due to the fact that all differences between $\\bar { n }$ and $\\bar { n } ^ { * * }$ are confined to the indices that are less than $i$ . ", + "bbox": [ + 232, + 766, + 823, + 795 + ], + "page_idx": 27 + }, + { + "type": "text", + "text": "Case $\\mathbf { I I }$ . If $n ^ { * * ( i ) } = u$ and $n ^ { \\prime { ( i ) } } \\geq u$ , the contradiction with $S _ { i } ( \\bar { n } ^ { * * } ) < S _ { i } ( \\bar { n } ^ { \\prime } )$ follows immediately from ", + "bbox": [ + 233, + 800, + 821, + 830 + ], + "page_idx": 27 + }, + { + "type": "equation", + "img_path": "images/d3122cb1b2334f94cde4f121fa76017d00abcd3307d0b0cbd2dab06d6ad68235.jpg", + "text": "$$\nS _ { i } ( \\bar { n } ^ { \\prime } ) = \\sum _ { j = 2 } ^ { i } ( n ^ { \\prime ( 1 ) } - n ^ { \\prime ( j ) } ) \\le ( i - 1 ) ( n ^ { \\prime ( 1 ) } - u ) = S _ { i } ( \\bar { n } ^ { * * } ) .\n$$", + "text_format": "latex", + "bbox": [ + 325, + 835, + 732, + 880 + ], + "page_idx": 27 + }, + { + "type": "text", + "text": "Case III. Finally, consider the case when $n ^ { * * ( i ) } = u$ and $v \\ \\triangleq n ^ { \\prime ( i ) } < u$ . Since $i$ is the largest such that $S _ { i } ( { \\bar { n } } ^ { * * } ) < S _ { i } ( { \\bar { n } } ^ { \\prime } )$ , it means that $n ^ { * * ( i + 1 ) } < n ^ { \\prime ( i + 1 ) } \\leq v < u = n ^ { * * ( i ) }$ ", + "bbox": [ + 232, + 892, + 823, + 925 + ], + "page_idx": 27 + }, + { + "type": "text", + "text": "and thus $n ^ { * * ( i ) } - n ^ { * * ( i + 1 ) } \\geq 2$ (we rely on the fact that the histograms are integer-valued). It implies that all differences between $\\bar { n }$ and $\\bar { n } ^ { * * }$ are confined to the indices in $[ 1 , i ]$ . Then, ", + "bbox": [ + 228, + 102, + 823, + 133 + ], + "page_idx": 28 + }, + { + "type": "equation", + "img_path": "images/51cece594c08cf45d10bc705e505966c2fa15114aef86cf417ee48aa95118457.jpg", + "text": "$$\n\\begin{array} { l } { { S _ { i } ( \\bar { n } ^ { * * } ) - S _ { i } ( \\bar { n } ^ { \\prime } ) \\geq \\displaystyle \\sum _ { j = 2 } ^ { i } ( n _ { 1 } ^ { * * } - n _ { j } ^ { * * } ) - \\displaystyle \\sum _ { j = 2 } ^ { i } ( n _ { 1 } ^ { \\prime } - n _ { j } ^ { \\prime } ) } } \\\\ { { \\mathrm { ~ } = \\displaystyle \\sum _ { j = 2 } ^ { i } ( ( n _ { j } - n _ { j } ^ { * * } ) + ( n _ { j } ^ { \\prime } - n _ { j } ) ) } } \\\\ { { \\mathrm { ~ } \\geq d - d ( \\bar { n } , \\bar { n } ^ { \\prime } ) } } \\\\ { { \\mathrm { ~ } \\geq 0 , } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 303, + 150, + 658, + 279 + ], + "page_idx": 28 + }, + { + "type": "text", + "text": "which contradicts the assumption that $S _ { i } ( { \\bar { n } } ^ { * * } ) < S _ { i } ( { \\bar { n } } ^ { \\prime } )$ . ", + "bbox": [ + 232, + 291, + 606, + 308 + ], + "page_idx": 28 + }, + { + "type": "text", + "text": "We may now state and prove the main result of this section. ", + "bbox": [ + 174, + 412, + 563, + 428 + ], + "page_idx": 28 + }, + { + "type": "text", + "text": "Theorem 20. Assume that $q ( \\cdot )$ satisfies conditions $C l { - } C 8$ and $\\bar { n }$ is an integer-valued histogram. Then the following two claims are true: ", + "bbox": [ + 173, + 435, + 825, + 465 + ], + "page_idx": 28 + }, + { + "type": "text", + "text": "1. Algorithm 4 computes $\\begin{array} { r } { \\operatorname* { m a x } _ { \\bar { n } ^ { \\prime } : \\mathrm { d i s t } ( \\bar { n } , \\bar { n } ^ { \\prime } ) \\leq d } \\tilde { \\mathrm { L S } } ( \\bar { n } ^ { \\prime } ) . } \\end{array}$ ", + "bbox": [ + 212, + 482, + 558, + 501 + ], + "page_idx": 28 + }, + { + "type": "text", + "text": "2. Algorithm 5 computes $\\mathrm { S S } _ { \\beta } ( \\bar { n } )$ , which is a $\\beta$ -smooth upper bound on smooth sensitivity of $\\beta \\left( q ( \\cdot ) \\right)$ . ", + "bbox": [ + 212, + 525, + 825, + 556 + ], + "page_idx": 28 + }, + { + "type": "text", + "text": "Proof. Claim 1. Recall that $q _ { 1 } = \\mathrm { B _ { L } } ( q _ { 0 } )$ , and therefore, by Proposition 14 the function $\\tilde { \\mathrm { L S } } ( q )$ is non-decreasing in $[ 0 , q _ { 1 } ]$ , constant in $[ q _ { 1 } , q _ { 0 } ]$ , and non-increasing in $[ q _ { 0 } , 1 ]$ . It means, in particular, that to maximize $\\tilde { \\mathrm { L S } } ( q ( \\bar { n } ^ { \\prime } ) )$ over histograms satisfying $d ( \\bar { n } , \\bar { n } ^ { \\prime } ) = d$ , it suffices to consider the following cases. ", + "bbox": [ + 174, + 603, + 825, + 662 + ], + "page_idx": 28 + }, + { + "type": "text", + "text": "If $\\tilde { \\mathrm { L S } } ( q ( \\bar { n } ) ) < q _ { 1 }$ , then higher values of $\\mathrm { \\tilde { L S } ( \\cdot ) }$ may be attained only by histograms with higher values of $q$ . Proposition 19 enables us to efficiently find a histogram $\\bar { n } ^ { * }$ with the highest $q$ at distance $d$ , or conclude that we may reach the plateau by making the two highest histogram entries be equal. ", + "bbox": [ + 173, + 670, + 826, + 714 + ], + "page_idx": 28 + }, + { + "type": "text", + "text": "$q _ { 1 } \\leq \\tilde { \\mathrm { L S } } ( q ( \\bar { n } ) ) \\leq q _ { 0 }$ , it means that $\\tilde { \\mathrm { L S } } ( q ( n ) )$ is already as high as it can be. ", + "bbox": [ + 176, + 720, + 684, + 738 + ], + "page_idx": 28 + }, + { + "type": "text", + "text": "If $q _ { 0 } < \\tilde { \\mathrm { L S } } ( q ( \\bar { n } ) )$ , then, according to Proposition 14, higher values of $\\mathrm { \\tilde { L S } ( \\cdot ) }$ can be achieved by histograms with smaller values of $q$ , which we explore using the procedure outlined by Proposition 19. The stopping condition—when the plateau is reached—happens when $q$ becomes smaller than $q _ { 0 }$ . ", + "bbox": [ + 174, + 744, + 826, + 789 + ], + "page_idx": 28 + }, + { + "type": "text", + "text": "Claim 2. The second claim follows from the specification of Algorithm 5 and the first claim. ", + "bbox": [ + 169, + 794, + 781, + 809 + ], + "page_idx": 28 + }, + { + "type": "text", + "text": "B.4 GNMAX SATISFIES CONDITIONS C1–C8 ", + "text_level": 1, + "bbox": [ + 173, + 835, + 501, + 852 + ], + "page_idx": 28 + }, + { + "type": "text", + "text": "The previous sections laid down a framework for computing smooth sensitivity of a randomized aggregator mechanism: defining functions $q ( \\cdot ) , \\mathrm { B _ { U } ( \\cdot ) , B _ { L } ( \\cdot ) }$ , verifying that they satisfy conditions C1–C8, and applying Theorem 20, which asserts correctness of Algorithm 5. In this section we instantiate this framework for the GNMax mechanism. ", + "bbox": [ + 173, + 867, + 825, + 924 + ], + "page_idx": 28 + }, + { + "type": "text", + "text": "B.4.1 CONDITIONS C1–C4, C7 AND C8 ", + "text_level": 1, + "bbox": [ + 174, + 103, + 465, + 118 + ], + "page_idx": 29 + }, + { + "type": "text", + "text": "Defining $q$ and conditions C1, C7, and C8. Following Proposition 7, we define $q \\colon \\mathbb { R } _ { \\geq 0 } ^ { m } [ 0 , 1 ]$ for a GNMax mechanism parameterized with $\\sigma$ as: ", + "bbox": [ + 171, + 126, + 825, + 156 + ], + "page_idx": 29 + }, + { + "type": "equation", + "img_path": "images/b555ced3f1c79d37e679ec7a63759430adc04569f17e6b1a46ee55adbca4dbc6.jpg", + "text": "$$\n\\begin{array} { r l } & { q ( \\bar { n } ) \\triangleq \\operatorname* { m i n } \\left\\{ \\underset { i \\neq i ^ { * } } { \\sum } \\mathbf { P r } ( Z _ { i } - Z _ { i ^ { * } } \\geq n _ { i ^ { * } } - n _ { i } ) , 1 \\right\\} } \\\\ & { \\quad = \\operatorname* { m i n } \\left\\{ \\underset { i \\neq i ^ { * } } { \\sum } \\frac { 1 } { 2 } \\left( 1 - \\mathrm { e r f } \\left( \\frac { n _ { i ^ { * } } - n _ { i } } { 2 \\sigma } \\right) \\right) , 1 \\right\\} } \\\\ & { \\quad = \\operatorname* { m i n } \\left\\{ \\underset { i \\neq i ^ { * } } { \\sum } \\frac { 1 } { 2 } \\mathrm { e r f c } \\left( \\frac { n _ { i ^ { * } } - n _ { i } } { 2 \\sigma } \\right) , 1 \\right\\} , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 328, + 161, + 666, + 314 + ], + "page_idx": 29 + }, + { + "type": "text", + "text": "where $i ^ { * }$ is the histogram $\\bar { n }$ ’s highest coordinate, i.e., $n _ { i ^ { * } } \\geq n _ { i }$ for all $i$ (if there are multiple highest, let $i ^ { * }$ be any of them). Recall that erf is the error function, and erfc is the complement error function. ", + "bbox": [ + 171, + 316, + 825, + 345 + ], + "page_idx": 29 + }, + { + "type": "text", + "text": "Proposition 7 demonstrates that $q ( { \\bar { n } } )$ bounds from above the probability that GNMax outputs anything but the highest coordinate of the histogram. ", + "bbox": [ + 171, + 352, + 823, + 381 + ], + "page_idx": 29 + }, + { + "type": "text", + "text": "Conditions C1, C7, and C8 follow by simple calculus $( q _ { 0 }$ , defined below, is at most 0.5). ", + "bbox": [ + 171, + 387, + 751, + 402 + ], + "page_idx": 29 + }, + { + "type": "text", + "text": "Functions $\\mathrm { B } _ { \\mathrm { L } } , \\mathrm { B } _ { \\mathrm { U } }$ , and conditions C2–C4. Recall that the functions $\\mathrm { B _ { L } }$ and $\\mathrm { B _ { U } }$ are defined in Appendix $\\mathbf { B }$ as follows: ", + "bbox": [ + 173, + 415, + 825, + 445 + ], + "page_idx": 29 + }, + { + "type": "equation", + "img_path": "images/2a46ffe3a3d74b3ca3f2abc703aaea0051f2a3bc248d7c5ef591287b7ffb861f.jpg", + "text": "$$\n\\begin{array} { l } { { \\displaystyle { \\mathrm { B } } _ { \\mathrm { U } } ( q ) \\triangleq \\operatorname* { m i n } \\left\\{ \\frac { m - 1 } { 2 } \\mathrm { e r f c } \\left( \\mathrm { e r f c } ^ { - 1 } \\left( \\frac { 2 q } { m - 1 } \\right) - \\frac { 1 } { \\sigma } \\right) , 1 \\right\\} , } } \\\\ { { \\displaystyle { \\mathrm { B } } _ { \\mathrm { L } } ( q ) \\triangleq \\frac { m - 1 } { 2 } \\mathrm { e r f c } \\left( \\mathrm { e r f c } ^ { - 1 } \\left( \\frac { 2 q } { m - 1 } \\right) + \\frac { 1 } { \\sigma } \\right) , } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 302, + 450, + 696, + 522 + ], + "page_idx": 29 + }, + { + "type": "text", + "text": "Proposition 21 (Condition C2). For any neighbor $\\bar { n } ^ { \\prime }$ of $\\bar { n }$ , i.e., $d ( \\bar { n } ^ { \\prime } , \\bar { n } ) = 1$ , the following bounds hold: ", + "bbox": [ + 173, + 525, + 821, + 553 + ], + "page_idx": 29 + }, + { + "type": "equation", + "img_path": "images/3b3ca4537077ca14e32edae19eacc4db1a5b70ad1ad23fa159d24fac9a950114.jpg", + "text": "$$\n\\mathrm { B } _ { \\mathrm { L } } ( q ( \\bar { n } ) ) \\leq q ( \\bar { n } ^ { \\prime } ) \\leq \\mathrm { B } _ { \\mathrm { U } } ( q ( \\bar { n } ) ) .\n$$", + "text_format": "latex", + "bbox": [ + 390, + 551, + 606, + 570 + ], + "page_idx": 29 + }, + { + "type": "text", + "text": "Proof. Assume wlog that $i ^ { * } = 1$ . Let $x _ { i } \\triangleq n _ { 1 } - n _ { i }$ and $q _ { i } \\triangleq \\mathrm { e r f c } ( x _ { i } / 2 \\sigma ) / 2$ , and similarly define $\\boldsymbol { x } _ { i } ^ { \\prime }$ for $\\bar { n } ^ { \\prime }$ . Observe that $| x _ { i } - x _ { i } ^ { \\prime } | \\leq 2$ , which, by monotonicity of erfc, implies that ", + "bbox": [ + 173, + 585, + 823, + 616 + ], + "page_idx": 29 + }, + { + "type": "equation", + "img_path": "images/157fa8dfc2bd519ef8e7fe58aa7d2bf8c5cb507852a07d0280eb15058ef212a0.jpg", + "text": "$$\n{ \\frac { 1 } { 2 } } \\operatorname { e r f c } \\left( { \\frac { x _ { i } + 2 } { 2 \\sigma } } \\right) \\leq q _ { i } ( { \\bar { n } } ^ { \\prime } ) \\leq { \\frac { 1 } { 2 } } \\operatorname { e r f c } \\left( { \\frac { x _ { i } - 2 } { 2 \\sigma } } \\right) .\n$$", + "text_format": "latex", + "bbox": [ + 336, + 619, + 658, + 655 + ], + "page_idx": 29 + }, + { + "type": "text", + "text": "Thus ", + "bbox": [ + 173, + 660, + 209, + 674 + ], + "page_idx": 29 + }, + { + "type": "equation", + "img_path": "images/8c90bdf88a16d5b9f2509ac9502a6cf98038c74118dd8f10283a298d6e8140cd.jpg", + "text": "$$\n\\frac { 1 } { 2 } \\sum _ { i > 1 } \\mathrm { e r f c } \\left( \\frac { x _ { i } + 2 } { 2 \\sigma } \\right) \\leq q ( \\bar { n } ^ { \\prime } ) \\leq \\frac { 1 } { 2 } \\sum _ { i > 1 } \\mathrm { e r f c } \\left( \\frac { x _ { i } - 2 } { 2 \\sigma } \\right) .\n$$", + "text_format": "latex", + "bbox": [ + 313, + 670, + 684, + 709 + ], + "page_idx": 29 + }, + { + "type": "text", + "text": "(Although $i ^ { * }$ may change between $\\bar { n }$ and $\\bar { n } ^ { \\prime }$ , the bounds still hold.) ", + "bbox": [ + 173, + 710, + 612, + 727 + ], + "page_idx": 29 + }, + { + "type": "text", + "text": "Our first goal is to upper bound $q ( \\bar { n } ^ { \\prime } )$ for a given value of $q ( { \\bar { n } } )$ . To this end we set up the following maximization problem ", + "bbox": [ + 173, + 732, + 823, + 761 + ], + "page_idx": 29 + }, + { + "type": "equation", + "img_path": "images/17bcdbb17a43550590c08be1e22c9d0c8696fc196a10de7c2e09ead1aa536605.jpg", + "text": "$$\n\\operatorname* { m a x } _ { \\{ x _ { i } \\} } { \\frac { 1 } { 2 } } \\sum _ { i > 1 } { \\mathrm { e r f c } } \\left( { \\frac { x _ { i } - 2 } { 2 \\sigma } } \\right) { \\mathrm { ~ s u c h ~ t h a t ~ } } { \\frac { 1 } { 2 } } \\sum _ { i > 1 } { \\mathrm { e r f c } } \\left( { \\frac { x _ { i } } { 2 \\sigma } } \\right) = q { \\mathrm { ~ a n d ~ } } x _ { i } \\geq 0 .\n$$", + "text_format": "latex", + "bbox": [ + 263, + 766, + 733, + 806 + ], + "page_idx": 29 + }, + { + "type": "text", + "text": "We may temporarily ignore the non-negative constraints, which end up being satisfied by our solution. Consider using the method of Lagrange multipliers and take a derivative in $x _ { i } { } ^ { \\ ' }$ : ", + "bbox": [ + 173, + 810, + 823, + 840 + ], + "page_idx": 29 + }, + { + "type": "equation", + "img_path": "images/dfaa73f9d59389f801c72fec89860f0573218fd8733edba749cbaf91f7476414.jpg", + "text": "$$\n\\begin{array} { c } { \\displaystyle - \\exp \\left( - \\left( \\frac { x _ { i } - 2 } { 2 \\sigma } \\right) ^ { 2 } \\right) + \\lambda \\exp \\left( - \\left( \\frac { x _ { i } } { 2 \\sigma } \\right) ^ { 2 } \\right) = 0 } \\\\ { \\displaystyle \\Leftrightarrow \\lambda = \\exp \\left( \\frac { x _ { i } - 1 } { \\sigma ^ { 2 } } \\right) . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 274, + 844, + 720, + 924 + ], + "page_idx": 29 + }, + { + "type": "text", + "text": "Since the expression is symmetric in $i > 1$ , it means that the local optima are attained at $x _ { 2 } =$ $\\cdots = x _ { m }$ (the second derivative confirms that these are local maxima). After solving for $( m -$ $1 ) \\operatorname { e r f c } ( x / 2 \\sigma ) = 2 q$ we have ", + "bbox": [ + 173, + 103, + 823, + 146 + ], + "page_idx": 30 + }, + { + "type": "equation", + "img_path": "images/954a47d8f0473556818f5c73b15af652c16d18e39bd05fa295ee938074704cb1.jpg", + "text": "$$\nq ( \\bar { n } ^ { \\prime } ) \\leq \\frac { m - 1 } { 2 } \\mathrm { e r f c } \\left( \\mathrm { e r f c ^ { - 1 } } \\left( \\frac { 2 q } { m - 1 } \\right) - \\frac { 1 } { \\sigma } \\right) .\n$$", + "text_format": "latex", + "bbox": [ + 341, + 150, + 656, + 185 + ], + "page_idx": 30 + }, + { + "type": "text", + "text": "where $m$ is the number of classes. Similarly, ", + "bbox": [ + 176, + 190, + 467, + 204 + ], + "page_idx": 30 + }, + { + "type": "equation", + "img_path": "images/ed3718159ea1135242ea8c1435901f1ca18e0f871acb2bf82df56fb6363f23dc.jpg", + "text": "$$\nq ( \\bar { n } ^ { \\prime } ) \\geq \\frac { m - 1 } { 2 } \\mathrm { e r f c } \\left( \\mathrm { e r f c ^ { - 1 } } \\left( \\frac { 2 q } { m - 1 } \\right) + \\frac { 1 } { \\sigma } \\right) .\n$$", + "text_format": "latex", + "bbox": [ + 341, + 208, + 656, + 244 + ], + "page_idx": 30 + }, + { + "type": "text", + "text": "Conditions C3, i.e., $\\operatorname { B _ { L } } ( q )$ is monotonically increasing in $q$ , and $\\mathrm { C 4 }$ , i.e., $\\mathrm { B _ { L } }$ and $\\mathrm { B _ { U } }$ are functional inverses of each other in $[ 0 , q _ { 0 } ]$ and $\\mathrm { B } _ { \\mathrm { L } } ( { \\dot { q } } ) \\leq q \\leq \\mathbf { \\bar { B } } _ { \\mathrm { U } } ( { \\dot { q } } )$ for all $q \\in [ 0 , 1 ]$ , follow from basic properties of erfc. The restriction that $q \\in [ 0 , q _ { 0 } ]$ ensures that $\\operatorname { B _ { U } } ( q )$ is strictly less than one, and the minimum in the definition of $\\operatorname { B _ { U } } ( \\cdot )$ simplifies to its first argument in this range. ", + "bbox": [ + 173, + 279, + 825, + 337 + ], + "page_idx": 30 + }, + { + "type": "text", + "text": "B.4.2 CONDITIONS C5 AND C6 ", + "text_level": 1, + "bbox": [ + 176, + 349, + 405, + 364 + ], + "page_idx": 30 + }, + { + "type": "text", + "text": "Conditions C5 and C6 stipulate that the function $\\beta ( q ) \\triangleq \\beta _ { \\sigma } ( q )$ (defined in Appendix A) exhibits a specific growth pattern. Concretely, C5 states that $\\beta \\left( q \\right)$ is monotonically increasing for $0 \\leq q \\leq q _ { 0 }$ , and constant for $q _ { 0 } < q \\leq 1$ . (Additionally, we require that $\\mathrm { B _ { U } } ( q _ { 0 } ) < 1 )$ . Condition C6 requires that $\\Delta \\beta ( q ) = \\beta ( \\mathrm { B } _ { \\mathrm { U } } ( q ) ) - \\beta ( q )$ is non-decreasing in $[ 0 , \\mathrm { B _ { L } } ( q _ { 0 } ) ]$ . ", + "bbox": [ + 173, + 373, + 825, + 433 + ], + "page_idx": 30 + }, + { + "type": "text", + "text": "Rather than proving these statements analytically, we check these assumptions for any fixed $\\sigma$ and $\\lambda$ via a combination of symbolic and numeric analyses. ", + "bbox": [ + 173, + 438, + 823, + 467 + ], + "page_idx": 30 + }, + { + "type": "text", + "text": "More concretely, we construct symbolic expressions for $\\beta \\left( \\cdot \\right)$ and $\\Delta \\beta \\left( \\cdot \\right)$ and (symbolically) differentiate them. We then minimize (numerically) the resulting expressions over $[ 0 , q _ { 0 } ]$ and $[ 0 , \\mathrm { B _ { L } } ( q _ { 0 } ) ]$ , and verify that their minimal values are indeed non-negative. ", + "bbox": [ + 174, + 472, + 825, + 515 + ], + "page_idx": 30 + }, + { + "type": "text", + "text": "B.5 RÉNYI DIFFERENTIAL PRIVACY AND SMOOTH SENSITIVITY ", + "text_level": 1, + "bbox": [ + 174, + 531, + 632, + 546 + ], + "page_idx": 30 + }, + { + "type": "text", + "text": "Although the procedure for computing a smooth sensitivity bound may be quite involved (such as Algorithms 3–5), its use in a differentially private data release is straightforward. Following Nissim et al. (2007), we define an additive Gaussian mechanism where the noise distribution is scaled by $\\sigma$ and a smooth sensitivity bound: ", + "bbox": [ + 173, + 556, + 825, + 613 + ], + "page_idx": 30 + }, + { + "type": "text", + "text": "Definition 22. Given a real-valued function $f \\colon { \\mathcal { D } } \\mathbb { R }$ and a $\\beta$ -smooth sensitivity bound $\\operatorname { S S } ( \\cdot )$ , let $( \\beta , \\sigma )$ -GNSS mechanism be ", + "bbox": [ + 171, + 616, + 825, + 645 + ], + "page_idx": 30 + }, + { + "type": "equation", + "img_path": "images/3e487bd6badf792115f3a5bc6a4ef192a039e9492014e1de8d341f550f516c69.jpg", + "text": "$$\n{ \\mathcal { F } } _ { \\sigma } ( D ) \\triangleq f ( D ) + \\operatorname { S S } _ { \\beta } ( D ) \\cdot { \\mathcal { N } } ( 0 , \\sigma ^ { 2 } ) .\n$$", + "text_format": "latex", + "bbox": [ + 369, + 651, + 629, + 671 + ], + "page_idx": 30 + }, + { + "type": "text", + "text": "We claim that this mechanism satisfies Rényi differential privacy for finite orders from a certain range. ", + "bbox": [ + 173, + 681, + 825, + 712 + ], + "page_idx": 30 + }, + { + "type": "text", + "text": "Theorem 23. The $( \\beta , \\sigma )$ -GNSS mechanism ${ \\mathcal { F } } _ { \\sigma }$ is $( \\lambda , \\varepsilon )$ -RDP, where ", + "bbox": [ + 173, + 713, + 629, + 729 + ], + "page_idx": 30 + }, + { + "type": "equation", + "img_path": "images/e07df1ad04294ea2f19d0d403bc4bd2b2b7927f5a0ca379ecd42e2badb7c31a6.jpg", + "text": "$$\n\\varepsilon \\triangleq { \\frac { \\lambda \\cdot e ^ { 2 \\beta } } { \\sigma ^ { 2 } } } + { \\frac { \\beta \\lambda - 0 . 5 \\ln ( 1 - 2 \\lambda \\beta ) } { \\lambda - 1 } }\n$$", + "text_format": "latex", + "bbox": [ + 372, + 734, + 624, + 768 + ], + "page_idx": 30 + }, + { + "type": "text", + "text": "for all $1 < \\lambda < 1 / ( 2 \\beta )$ . ", + "bbox": [ + 173, + 772, + 331, + 787 + ], + "page_idx": 30 + }, + { + "type": "text", + "text": "Proof. Consider two neighboring datasets $D$ and $D ^ { \\prime }$ . The output distributions of the $( \\beta , \\sigma )$ -GNSS mechanism on $D$ and $D ^ { \\prime }$ are, respectively, ", + "bbox": [ + 174, + 801, + 823, + 832 + ], + "page_idx": 30 + }, + { + "type": "equation", + "img_path": "images/14eb515b6e73df43657653069dccefb52bff376888351b95d0656aea26ac1b45.jpg", + "text": "$$\nP \\triangleq f ( D ) + \\mathrm { S S } _ { \\beta } ( D ) \\cdot { \\mathcal { N } } ( 0 , \\sigma ^ { 2 } ) = { \\mathcal { N } } ( f ( D ) , ( \\mathrm { S S } _ { \\beta } ( D ) \\sigma ) ^ { 2 } ) { \\mathrm { ~ a n d ~ } } Q \\triangleq { \\mathcal { N } } ( f ( D ^ { \\prime } ) , ( \\mathrm { S S } _ { \\beta } ( D ^ { \\prime } ) \\sigma ) ^ { 2 } ) .\n$$", + "text_format": "latex", + "bbox": [ + 181, + 837, + 812, + 856 + ], + "page_idx": 30 + }, + { + "type": "text", + "text": "The Rényi divergence between two normal distributions can be computed in closed form (van Erven & Harremoës, 2014): ", + "bbox": [ + 176, + 859, + 823, + 888 + ], + "page_idx": 30 + }, + { + "type": "equation", + "img_path": "images/a54d7047c95a8e290ebe167790f64e87b3411e55860a96234b4ff609d0930e49.jpg", + "text": "$$\nD _ { \\lambda } ( P \\| Q ) = \\lambda { \\frac { ( f ( D ) - f ( D ^ { \\prime } ) ) ^ { 2 } } { 2 \\sigma ^ { 2 } s ^ { 2 } } } + { \\frac { 1 } { 1 - \\lambda } } \\ln { \\frac { s } { { \\mathrm { S S } } _ { \\beta } ( D ) ^ { 1 - \\lambda } \\cdot { \\mathrm { S S } } _ { \\beta } ( D ^ { \\prime } ) ^ { \\lambda } } } ,\n$$", + "text_format": "latex", + "bbox": [ + 263, + 892, + 733, + 928 + ], + "page_idx": 30 + }, + { + "type": "text", + "text": "provided $s ^ { 2 } \\triangleq ( 1 - \\lambda ) \\cdot \\mathrm { S S } _ { \\beta } ( D ) ^ { 2 } + \\lambda \\cdot \\mathrm { S S } _ { \\beta } ( D ^ { \\prime } ) ^ { 2 } > 0 .$ ", + "bbox": [ + 173, + 102, + 539, + 119 + ], + "page_idx": 31 + }, + { + "type": "text", + "text": "According to the definition of smooth sensitivity (Definition 12) ", + "bbox": [ + 173, + 125, + 596, + 140 + ], + "page_idx": 31 + }, + { + "type": "equation", + "img_path": "images/e5c78a41023b079d2c30eba19f297b40bb24767ed1b6d5da45139fcc1b7491c3.jpg", + "text": "$$\ne ^ { - \\beta } \\cdot \\mathrm { S S } _ { \\beta } ( D ) \\leq \\mathrm { S S } _ { \\beta } ( D ^ { \\prime } ) \\leq e ^ { \\beta } \\cdot \\mathrm { S S } _ { \\beta } ( D ) ,\n$$", + "text_format": "latex", + "bbox": [ + 356, + 142, + 640, + 162 + ], + "page_idx": 31 + }, + { + "type": "text", + "text": "and ", + "bbox": [ + 173, + 166, + 200, + 180 + ], + "page_idx": 31 + }, + { + "type": "equation", + "img_path": "images/b4d0e3d37c589724658cf5c188624eb6e2dda1cad7bf46096f8b8db6fd45a0f8.jpg", + "text": "$$\n| f ( D ) - f ( D ^ { \\prime } ) | \\leq e ^ { \\beta } \\cdot \\operatorname * { m i n } ( \\mathrm { S S } _ { \\beta } ( D ) , \\mathrm { S S } _ { \\beta } ( D ^ { \\prime } ) ) .\n$$", + "text_format": "latex", + "bbox": [ + 339, + 183, + 658, + 202 + ], + "page_idx": 31 + }, + { + "type": "text", + "text": "Bound (12) together with the condition that $\\lambda \\le 1 / ( 2 \\beta )$ implies that ", + "bbox": [ + 174, + 212, + 624, + 228 + ], + "page_idx": 31 + }, + { + "type": "equation", + "img_path": "images/cf629b8468c5c23b06e8d1786b1e118922396effaadac83c760c6857a9a77a8c.jpg", + "text": "$$\n\\begin{array} { r l } & { s ^ { 2 } = ( 1 - \\lambda ) \\cdot \\operatorname { S S } _ { \\beta } ( D ) ^ { 2 } + \\lambda \\cdot \\operatorname { S S } _ { \\beta } ( D ^ { \\prime } ) ^ { 2 } = \\operatorname { S S } _ { \\beta } ( D ) ^ { 2 } + \\lambda ( \\operatorname { S S } _ { \\beta } ( D ^ { \\prime } ) ^ { 2 } - \\operatorname { S S } _ { \\beta } ( D ) ^ { 2 } ) } \\\\ & { \\qquad \\geq \\operatorname { S S } _ { \\beta } ( D ) ^ { 2 } ( 1 + \\lambda ( e ^ { - 2 \\beta } - 1 ) ) \\geq \\operatorname { S S } _ { \\beta } ( D ) ^ { 2 } ( 1 - 2 \\lambda \\beta ) > 0 . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 189, + 234, + 781, + 277 + ], + "page_idx": 31 + }, + { + "type": "text", + "text": "The above lower bound ensures that $s ^ { 2 }$ is well-defined, i.e., non-negative, as required for application of (11). ", + "bbox": [ + 173, + 280, + 825, + 309 + ], + "page_idx": 31 + }, + { + "type": "text", + "text": "Combining bounds (12)– (14), we have that ", + "bbox": [ + 176, + 315, + 464, + 330 + ], + "page_idx": 31 + }, + { + "type": "equation", + "img_path": "images/fad5b31055042de57c3e12099a9f7705061fb28160c93dd285e078026cbda7e3.jpg", + "text": "$$\nD _ { \\lambda } ( P \\| Q ) \\le \\frac { \\lambda \\cdot e ^ { 2 \\beta } } { \\sigma ^ { 2 } } + \\frac { 1 } { 1 - \\lambda } \\ln \\left\\{ \\frac { s } { \\mathrm { S S } _ { \\beta } ( D ) } e ^ { - \\lambda \\beta } \\right\\} \\le \\frac { \\lambda \\cdot e ^ { 2 \\beta } } { \\sigma ^ { 2 } } + \\frac { \\beta \\lambda - 0 . 5 \\ln ( 1 - 2 \\lambda \\beta ) } { \\lambda - 1 }\n$$", + "text_format": "latex", + "bbox": [ + 210, + 333, + 787, + 371 + ], + "page_idx": 31 + }, + { + "type": "text", + "text": "as claimed. ", + "bbox": [ + 173, + 375, + 250, + 388 + ], + "page_idx": 31 + }, + { + "type": "text", + "text": "Note that if $\\lambda \\gg 1$ , $\\sigma \\ll \\lambda$ , and $\\beta \\ll 1 / ( 2 \\lambda )$ , then $( \\beta , \\sigma )$ -GNSS satisfies $( \\lambda , ( \\lambda { + } 1 ) / \\sigma ^ { 2 } )$ -RDP. Compare this with RDP analysis of the standard additive Gaussian mechanism, which satisfies $( \\lambda , \\lambda / \\sigma ^ { 2 } )$ - RDP. The difference is that GNSS scales noise in proportion to smooth sensitivity, which is no larger and can be much smaller than global sensitivity. ", + "bbox": [ + 173, + 402, + 825, + 460 + ], + "page_idx": 31 + }, + { + "type": "text", + "text": "B.6 PUTTING IT ALL TOGETHER: APPLYING SMOOTH SENSITIVITY ", + "text_level": 1, + "bbox": [ + 176, + 476, + 656, + 491 + ], + "page_idx": 31 + }, + { + "type": "text", + "text": "Recall our initial motivation for the smooth sensitivity analysis: enabling privacy-preserving release of data-dependent privacy guarantees. Indeed, these guarantees vary greatly between queries (see Figure 5) and are typically much smaller than data-independent privacy bounds. Since datadependent bounds may leak information about underlying data, publishing the bounds themselves requires a differentially private mechanism. As we explain shortly, smooth sensitivity analysis is a natural fit for this task. ", + "bbox": [ + 173, + 502, + 825, + 587 + ], + "page_idx": 31 + }, + { + "type": "text", + "text": "We first consider the standard additive noise mechanism where the noise (such as Laplace or Gaussian) is calibrated to the global sensitivity of the function we would like to make differentially private. We know that Rényi differential privacy is additive for any fixed order $\\lambda$ , and thus the cumulative RDP cost is the sum of RDP costs of individual queries each upper bounded by a dataindependent bound. Thus, it might be tempting to use the standard additive noise mechanism for sanitizing the total, but that would be a mistake. ", + "bbox": [ + 173, + 593, + 825, + 676 + ], + "page_idx": 31 + }, + { + "type": "text", + "text": "To see why, consider a sequence of queries $\\bar { n } _ { 1 } , \\ldots , \\bar { n } _ { \\ell }$ answered by the aggregator. Their total (unsanitized) RDP cost of order $\\lambda$ is $\\begin{array} { r } { B _ { \\sigma } = \\sum _ { i = 1 } ^ { \\ell } \\beta _ { \\sigma } ( q ( \\bar { n } _ { i } ) ) } \\end{array}$ . Even though $\\beta _ { \\sigma } ( q ( \\bar { n } _ { i } ) ) \\leq \\lambda / \\sigma ^ { 2 }$ (the data-independent bound, Proposition 8), the sensitivity of their sum is not $\\lambda / \\sigma ^ { 2 }$ . The reason is that the (global) sensitivity is defined as the maximal difference in the function’s output between two neighboring datasets $D$ and $D ^ { \\prime }$ . Transitioning from $D$ to $D ^ { \\prime }$ may change one teacher’s output on all student queries. ", + "bbox": [ + 173, + 683, + 825, + 772 + ], + "page_idx": 31 + }, + { + "type": "text", + "text": "In contrast with the global sensitivity of $B _ { \\sigma }$ that may be quite high—particularly for the second step of the Confident GNMax aggregator—its smooth sensitivity can be extremely small. Towards computing a smooth sensitivity bound on $B _ { \\sigma }$ , we prove the following theorem which defines a smooth sensitivity of the sum in terms of local sensitivities of its parts. ", + "bbox": [ + 173, + 777, + 825, + 835 + ], + "page_idx": 31 + }, + { + "type": "text", + "text": "Theorem 24. Let $f _ { i } { : } \\mathcal { D } \\mathbb { R }$ for $1 \\leq i \\leq \\ell _ { \\mathrm { { i } } }$ , $\\begin{array} { r } { F ( D ) \\triangleq \\sum _ { i = 1 } ^ { \\ell } f _ { i } ( D ) } \\end{array}$ and $\\beta > 0$ . Then ", + "bbox": [ + 174, + 838, + 725, + 857 + ], + "page_idx": 31 + }, + { + "type": "equation", + "img_path": "images/6adf2ce40915fee595d5ec0a917755f403d52b74f6ec4d906840b94260f77bc4.jpg", + "text": "$$\n\\mathrm { S S } ( D ) \\triangleq \\operatorname* { m a x } _ { d \\geq 0 } e ^ { - \\beta d } \\cdot \\sum _ { i = 1 } ^ { \\ell } \\operatorname* { m a x } _ { D ^ { \\prime } : \\mathrm { d i s t } ( D , D ^ { \\prime } ) \\leq d } \\tilde { \\mathrm { L S } } _ { f _ { i } } ( D ^ { \\prime } ) ,\n$$", + "text_format": "latex", + "bbox": [ + 326, + 861, + 669, + 902 + ], + "page_idx": 31 + }, + { + "type": "text", + "text": "is a $\\beta$ -smooth bound on $F ( \\cdot ) i f \\tilde { \\mathrm { L S } } _ { f _ { i } } ( D ^ { \\prime } )$ are upper bounds on the local sensitivity of $f _ { i } ( D ^ { \\prime } )$ . ", + "bbox": [ + 171, + 909, + 781, + 925 + ], + "page_idx": 31 + }, + { + "type": "text", + "text": "Proof. We need to argue that $\\operatorname { S S } ( { \\mathord { \\cdot } } )$ is $\\beta$ -smooth, i.e., $\\mathrm { S S } ( D _ { 1 } ) \\le e ^ { \\beta } \\cdot \\mathrm { S S } ( D _ { 2 } )$ for any neighboring $D _ { 1 } , D _ { 2 } \\ \\in \\ { \\mathcal { D } }$ , and it is an upper bound on the local sensitivity of $F ( D _ { 1 } )$ , i.e., $\\mathrm { S S } ( D _ { 1 } ) \\ \\geq$ $| F ( D _ { 1 } ) - F ( D _ { 2 } ) |$ . ", + "bbox": [ + 174, + 102, + 825, + 147 + ], + "page_idx": 32 + }, + { + "type": "text", + "text": "Smoothness follows from the observation that ", + "bbox": [ + 174, + 152, + 475, + 166 + ], + "page_idx": 32 + }, + { + "type": "equation", + "img_path": "images/3c9f44cd2edcfae6aa1c4eeebc7e68b11dd1eb66e2ee9d3d416c1da73bbcaa4d.jpg", + "text": "$$\n\\operatorname* { m a x } _ { D : \\mathrm { d i s t } ( D _ { 1 } , D ) \\leq d } \\tilde { \\mathrm { L S } } _ { f _ { i } } ( D ) \\leq \\operatorname* { m a x } _ { D : \\mathrm { d i s t } ( D _ { 2 } , D ) \\leq d + 1 } \\tilde { \\mathrm { L S } } _ { f _ { i } } ( D )\n$$", + "text_format": "latex", + "bbox": [ + 321, + 171, + 676, + 199 + ], + "page_idx": 32 + }, + { + "type": "text", + "text": "for all neighboring datasets $D _ { 1 }$ and $D _ { 2 }$ (by the triangle inequality over distances). Then ", + "bbox": [ + 169, + 205, + 750, + 220 + ], + "page_idx": 32 + }, + { + "type": "equation", + "img_path": "images/319538b557fb62b145f9d04b0cb874d054e40d10359848ecc095936a018e209f.jpg", + "text": "$$\n\\begin{array} { r l } & { \\displaystyle \\mathrm { S S } ( D _ { 1 } ) = \\operatorname* { m a x } _ { d \\geq 0 } e ^ { - \\beta d } \\cdot \\sum _ { i = 1 } ^ { \\ell } \\operatorname* { m a x } _ { D : \\mathrm { d i s t } ( D _ { 1 } , D ) \\leq d } \\mathrm { I } \\tilde { \\mathrm { S } S } _ { f _ { i } } ( D ) , } \\\\ & { \\qquad \\leq \\displaystyle \\operatorname* { m a x } _ { d \\geq 0 } e ^ { - \\beta d } \\cdot \\sum _ { i = 1 } ^ { \\ell } \\operatorname* { m a x } _ { D : \\mathrm { d i s t } ( D _ { 2 } , D ) \\leq d + 1 } \\mathrm { I } \\tilde { \\mathrm { S } S } _ { f _ { i } } ( D ) } \\\\ & { \\qquad = \\displaystyle \\operatorname* { m a x } _ { d \\geq 1 } e ^ { - \\beta ( d ^ { \\prime } - 1 ) } \\cdot \\sum _ { i = 1 } ^ { \\ell } \\operatorname* { m a x } _ { D : \\mathrm { d i s t } ( D _ { 2 } , D ) \\leq d ^ { \\prime } } \\mathrm { I } \\tilde { \\mathrm { S } S } _ { f _ { i } } ( D ) } \\\\ & { \\qquad \\leq e ^ { \\beta } \\cdot \\mathrm { S S } ( D _ { 2 } ) } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 312, + 227, + 686, + 380 + ], + "page_idx": 32 + }, + { + "type": "text", + "text": "as needed for $\\beta$ -smoothness. ", + "bbox": [ + 173, + 385, + 362, + 398 + ], + "page_idx": 32 + }, + { + "type": "text", + "text": "The fact that $\\operatorname { S S } ( { \\mathord { \\cdot } } )$ is an upper bound on the local sensitivity of $F ( \\cdot )$ is implied by the following: ", + "bbox": [ + 168, + 405, + 803, + 421 + ], + "page_idx": 32 + }, + { + "type": "equation", + "img_path": "images/250ccbb22ab711876faadad3a4e39c1200563e5474827d8ffeba2904e677e46e.jpg", + "text": "$$\n\\begin{array} { r l } { \\displaystyle | F ( D _ { 1 } ) - F ( D _ { 2 } ) | = \\left| \\displaystyle \\sum _ { i = 1 } ^ { \\ell } f _ { i } ( D _ { 1 } ) - \\displaystyle \\sum _ { i = 1 } ^ { \\ell } f _ { i } ( D _ { 2 } ) \\right| } & { } \\\\ { \\displaystyle } & { \\le \\displaystyle \\sum _ { i = 1 } ^ { \\ell } | f _ { i } ( D _ { 1 } ) - f _ { i } ( D _ { 2 } ) | } \\\\ { \\displaystyle } & { \\le \\displaystyle \\sum _ { i = 1 } ^ { \\ell } \\mathrm { I } \\tilde { \\mathrm { S } } f _ { i } ( D _ { 1 } ) } \\\\ { \\displaystyle } & { \\le \\mathrm { S S } ( D _ { 1 } ) , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 336, + 428, + 661, + 578 + ], + "page_idx": 32 + }, + { + "type": "text", + "text": "which concludes the proof. ", + "bbox": [ + 174, + 585, + 352, + 599 + ], + "page_idx": 32 + }, + { + "type": "text", + "text": "Applying Theorem 24 allows us to compute a smooth sensitivity of the sum more efficiently than summing up smooth sensitivities of its parts. Results below rely on this strategy. ", + "bbox": [ + 173, + 614, + 823, + 643 + ], + "page_idx": 32 + }, + { + "type": "text", + "text": "Empirical results. Table 2 revisits the privacy bounds in Table 1. For all data-dependent privacy claims of the Confident GNMax aggregator we report parameters for their smooth sensitivity analysis and results of applying the GNSS mechanism for their release. ", + "bbox": [ + 174, + 659, + 823, + 702 + ], + "page_idx": 32 + }, + { + "type": "text", + "text": "Consider the first row of the table. The MNIST dataset was partitioned among 250 teachers, each getting 200 training examples. After the teachers were individually trained, the student selected at random 640 unlabeled examples, and submitted them to the Confident GNMax aggregator with the threshold of 200, and noise parameters $\\sigma _ { 1 } = 1 5 0$ and $\\sigma _ { 2 } = 4 0 $ . The expected number of answered examples (those that passed the first step of Algorithm 1) is 283, and the expected Rényi differential privacy is $\\varepsilon = 1 . 1 8$ at order $\\lambda = 1 4$ . This translates (via Theorem 5) to $( 2 . 0 0 , 1 0 ^ { - 5 } )$ -differential privacy, where 2.00 is the expectation of the privacy parameter $\\varepsilon$ . ", + "bbox": [ + 173, + 707, + 825, + 806 + ], + "page_idx": 32 + }, + { + "type": "text", + "text": "These costs are data-dependent and they cannot be released without further sanitization, which we handle by adding Gaussian noise scaled by the smooth sensitivity of $\\varepsilon$ (the GNSS mechanism, Definition 22). At $\\beta = 0 . 0 3 2 9$ the expected value of smooth sensitivity is 0.0618. We choose $\\sigma _ { \\mathrm { S S } } = 6 . 2 3$ , which incurs, according to Theorem 23, an additional (data-independent) (14, 0.52)- RDP cost. Applying $( \\beta , \\sigma _ { \\mathrm { S S } } )$ -GNSS where $\\sigma _ { \\mathrm { S S } } ~ = ~ 6 . 2 3$ , we may publish differentially private estimate of the total privacy cost that consists of a fixed part—the cost of applying Confident GNMax and GNSS—and random noise. The fixed part is $2 . { \\bar { 5 } } 2 = 1 . 1 8 + 0 . 5 2 { \\stackrel { - } { - } } \\mathrm { l n } ( 1 { \\bar { 0 } } ^ { - 5 } ) / 1 4$ , and the noise is normally distributed with mean 0 and standard deviation $\\sigma _ { \\mathrm { S S } } \\cdot 0 . 0 6 1 8 = 0 . 3 8 5$ . We note that, in contrast with the standard additive noise, one cannot publish its standard deviation without going through additional privacy analysis. ", + "bbox": [ + 174, + 811, + 825, + 924 + ], + "page_idx": 32 + }, + { + "type": "table", + "img_path": "images/5c0e574eca6760490c5785bb6c27226b625409823ed26c081eb7390ca991b508.jpg", + "table_caption": [ + "Table 2: Privacy-preserving reporting of privacy costs. The table augments Table 1 by including smooth sensitivity analysis of the total privacy cost. The expectations are taken over the student’s queries and outcomes of the first step of the Confident GNMax aggregator. Order $\\lambda$ , smooth sensitivity parameter $\\beta$ , $\\sigma _ { \\mathrm { S S } }$ are parameters of the GNSS mechanism (Section B.5). The final column sums up the data-dependent cost $\\varepsilon$ , the cost of applying GNSS (Theorem 23), and the standard deviation of Gaussian noise calibrated to smooth sensitivity (the product of $\\mathbb { E }$ $[ \\mathrm { S S } _ { \\beta } ]$ and $\\sigma _ { \\mathrm { S S } }$ ). " + ], + "table_footnote": [], + "table_body": "
DatasetConfident GNMax parametersDPE[e] 8Smooth Sensitivity入 B E[SSB] UssSanitized DPE[e]±noise
E[e]BE[SSB]
MNISTT=200,01=150,σ2=402.0010-514.0329.06186.232.52±0.385
SVHNT=300,01=200,02=404.9610-67.5.0533.07174.885.45± 0.350
AdultT=300,σ1=200,02=401.6810-515.5.03100.03327.922.09±0.263
GlyphT=1000,σ1=500,02=1002.0710-820.5.0205.012811.92.29±0.152
Two-round interactive0.83710-850.009.0027826.41.00± .081
.008.0008838.7
", + "bbox": [ + 173, + 101, + 828, + 229 + ], + "page_idx": 33 + }, + { + "type": "text", + "text": "", + "bbox": [ + 173, + 351, + 823, + 378 + ], + "page_idx": 33 + }, + { + "type": "text", + "text": "Some of these constants were optimally chosen (via grid search or analytically) given full view of data, and thus provide a somewhat optimistic view of how this pipeline might perform in practice. For example, $\\sigma _ { \\mathrm { S S } }$ in Table 2 were selected to minimize the total privacy cost plus two standard deviation of the noise. ", + "bbox": [ + 174, + 386, + 825, + 441 + ], + "page_idx": 33 + }, + { + "type": "text", + "text": "The following rules of thumb may replace these laborious and privacy-revealing tuning procedures in typical use cases. The privacy parameter $\\delta$ must be less than the inverse of the number of training examples. Giving a target $\\varepsilon$ , the order $\\lambda$ can be chosen so that $\\log ( 1 / \\delta ) \\approx ( \\lambda - 1 ) \\varepsilon / 2$ , i.e., the cost of the $\\delta$ contribution in Theorem 5 be roughly half of the total. The $\\beta$ -smoothness parameter can be set to $0 . 4 / \\lambda$ , from which smooth sensitivity ${ \\mathrm { S S } } _ { \\beta }$ can be estimated. The final parameter $\\sigma _ { \\mathrm { S S } }$ can be reasonably chosen between $2 \\cdot \\sqrt { ( \\lambda + 1 ) / \\varepsilon }$ and $4 \\cdot \\sqrt { ( \\lambda + 1 ) / \\varepsilon }$ (ensuring that the first, dominant component, of the cost of the GNSS mechanism given by Theorem 23 is between $\\varepsilon / 1 6$ and $\\varepsilon / 4$ ). ", + "bbox": [ + 173, + 448, + 825, + 549 + ], + "page_idx": 33 + } +] \ No newline at end of file diff --git a/parse/train/rkZB1XbRZ/rkZB1XbRZ_middle.json b/parse/train/rkZB1XbRZ/rkZB1XbRZ_middle.json new file mode 100644 index 0000000000000000000000000000000000000000..24e99fddc904d13d98ba43a886ebe0dbf0c1168b --- /dev/null +++ b/parse/train/rkZB1XbRZ/rkZB1XbRZ_middle.json @@ -0,0 +1,109606 @@ +{ + "pdf_info": [ + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 79, + 429, + 96 + ], + "lines": [ + { + "bbox": [ + 105, + 78, + 430, + 98 + ], + "spans": [ + { + "bbox": [ + 105, + 78, + 430, + 98 + ], + "score": 1.0, + "content": "SCALABLE PRIVATE LEARNING WITH PATE", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 112, + 115, + 234, + 148 + ], + "lines": [ + { + "bbox": [ + 112, + 115, + 191, + 127 + ], + "spans": [ + { + "bbox": [ + 112, + 115, + 191, + 127 + ], + "score": 1.0, + "content": "Nicolas Papernot∗", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 111, + 125, + 234, + 138 + ], + "spans": [ + { + "bbox": [ + 111, + 125, + 234, + 138 + ], + "score": 1.0, + "content": "Pennsylvania State University", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 112, + 138, + 210, + 149 + ], + "spans": [ + { + "bbox": [ + 112, + 138, + 210, + 149 + ], + "score": 1.0, + "content": "ngp5056@cse.psu.edu", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 357, + 115, + 498, + 148 + ], + "lines": [ + { + "bbox": [ + 356, + 114, + 419, + 128 + ], + "spans": [ + { + "bbox": [ + 356, + 114, + 419, + 128 + ], + "score": 1.0, + "content": "Shuang Song∗", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 356, + 124, + 499, + 139 + ], + "spans": [ + { + "bbox": [ + 356, + 124, + 499, + 139 + ], + "score": 1.0, + "content": "University of California San Diego", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 357, + 137, + 455, + 149 + ], + "spans": [ + { + "bbox": [ + 357, + 137, + 455, + 149 + ], + "score": 1.0, + "content": "shs037@eng.ucsd.edu", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4 + }, + { + "type": "title", + "bbox": [ + 113, + 164, + 414, + 177 + ], + "lines": [ + { + "bbox": [ + 111, + 163, + 417, + 181 + ], + "spans": [ + { + "bbox": [ + 111, + 163, + 417, + 181 + ], + "score": 1.0, + "content": "Ilya Mironov, Ananth Raghunathan, Kunal Talwar & Úlfar Erlingsson", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 113, + 178, + 339, + 198 + ], + "lines": [ + { + "bbox": [ + 112, + 176, + 169, + 188 + ], + "spans": [ + { + "bbox": [ + 112, + 176, + 169, + 188 + ], + "score": 1.0, + "content": "Google Brain", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 112, + 187, + 339, + 200 + ], + "spans": [ + { + "bbox": [ + 112, + 187, + 339, + 200 + ], + "score": 1.0, + "content": "{mironov,pseudorandom,kunal,ulfar}@google.com", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5 + }, + { + "type": "title", + "bbox": [ + 278, + 220, + 333, + 232 + ], + "lines": [ + { + "bbox": [ + 276, + 219, + 335, + 233 + ], + "spans": [ + { + "bbox": [ + 276, + 219, + 335, + 233 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 143, + 245, + 468, + 344 + ], + "lines": [ + { + "bbox": [ + 141, + 244, + 469, + 258 + ], + "spans": [ + { + "bbox": [ + 141, + 244, + 469, + 258 + ], + "score": 1.0, + "content": "The rapid adoption of machine learning has increased concerns about the privacy", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 255, + 470, + 268 + ], + "spans": [ + { + "bbox": [ + 141, + 255, + 470, + 268 + ], + "score": 1.0, + "content": "implications of machine learning models trained on sensitive data, such as medical", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 266, + 470, + 280 + ], + "spans": [ + { + "bbox": [ + 141, + 266, + 470, + 280 + ], + "score": 1.0, + "content": "records or other personal information. To address those concerns, one promising", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 278, + 469, + 289 + ], + "spans": [ + { + "bbox": [ + 141, + 278, + 469, + 289 + ], + "score": 1.0, + "content": "approach is Private Aggregation of Teacher Ensembles, or PATE, which transfers", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 142, + 289, + 469, + 300 + ], + "spans": [ + { + "bbox": [ + 142, + 289, + 469, + 300 + ], + "score": 1.0, + "content": "to a “student” model the knowledge of an ensemble of “teacher” models, with", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 299, + 470, + 313 + ], + "spans": [ + { + "bbox": [ + 141, + 299, + 470, + 313 + ], + "score": 1.0, + "content": "intuitive privacy provided by training teachers on disjoint data and strong privacy", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 311, + 470, + 322 + ], + "spans": [ + { + "bbox": [ + 141, + 311, + 470, + 322 + ], + "score": 1.0, + "content": "guaranteed by noisy aggregation of teachers’ answers. However, PATE has so far", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 142, + 321, + 469, + 333 + ], + "spans": [ + { + "bbox": [ + 142, + 321, + 469, + 333 + ], + "score": 1.0, + "content": "been evaluated only on simple classification tasks like MNIST, leaving unclear its", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 333, + 438, + 344 + ], + "spans": [ + { + "bbox": [ + 141, + 333, + 438, + 344 + ], + "score": 1.0, + "content": "utility when applied to larger-scale learning tasks and real-world datasets.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 143, + 345, + 468, + 455 + ], + "lines": [ + { + "bbox": [ + 141, + 345, + 469, + 357 + ], + "spans": [ + { + "bbox": [ + 141, + 345, + 469, + 357 + ], + "score": 1.0, + "content": "In this work, we show how PATE can scale to learning tasks with large numbers", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 142, + 356, + 469, + 368 + ], + "spans": [ + { + "bbox": [ + 142, + 356, + 469, + 368 + ], + "score": 1.0, + "content": "of output classes and uncurated, imbalanced training data with errors. For this, we", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 141, + 367, + 469, + 380 + ], + "spans": [ + { + "bbox": [ + 141, + 367, + 469, + 380 + ], + "score": 1.0, + "content": "introduce new noisy aggregation mechanisms for teacher ensembles that are more", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 141, + 378, + 469, + 391 + ], + "spans": [ + { + "bbox": [ + 141, + 378, + 469, + 391 + ], + "score": 1.0, + "content": "selective and add less noise, and prove their tighter differential-privacy guarantees.", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 142, + 389, + 469, + 401 + ], + "spans": [ + { + "bbox": [ + 142, + 389, + 469, + 401 + ], + "score": 1.0, + "content": "Our new mechanisms build on two insights: the chance of teacher consensus is", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 141, + 401, + 470, + 412 + ], + "spans": [ + { + "bbox": [ + 141, + 401, + 470, + 412 + ], + "score": 1.0, + "content": "increased by using more concentrated noise and, lacking consensus, no answer", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 141, + 411, + 470, + 423 + ], + "spans": [ + { + "bbox": [ + 141, + 411, + 470, + 423 + ], + "score": 1.0, + "content": "need be given to a student. The consensus answers used are more likely to be", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 141, + 423, + 469, + 434 + ], + "spans": [ + { + "bbox": [ + 141, + 423, + 469, + 434 + ], + "score": 1.0, + "content": "correct, offer better intuitive privacy, and incur lower-differential privacy cost. Our", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 142, + 433, + 470, + 445 + ], + "spans": [ + { + "bbox": [ + 142, + 433, + 470, + 445 + ], + "score": 1.0, + "content": "evaluation shows our mechanisms improve on the original PATE on all measures,", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 141, + 444, + 465, + 457 + ], + "spans": [ + { + "bbox": [ + 141, + 444, + 424, + 457 + ], + "score": 1.0, + "content": "and scale to larger tasks with both high utility and very strong privacy", + "type": "text" + }, + { + "bbox": [ + 425, + 444, + 460, + 455 + ], + "score": 0.82, + "content": "( \\varepsilon < 1 . 0 )", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 444, + 465, + 457 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 24.5 + }, + { + "type": "title", + "bbox": [ + 108, + 475, + 206, + 488 + ], + "lines": [ + { + "bbox": [ + 105, + 474, + 208, + 491 + ], + "spans": [ + { + "bbox": [ + 105, + 474, + 208, + 491 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 107, + 500, + 505, + 577 + ], + "lines": [ + { + "bbox": [ + 105, + 498, + 505, + 514 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 505, + 514 + ], + "score": 1.0, + "content": "Many attractive applications of modern machine-learning techniques involve training models using", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 511, + 505, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 505, + 524 + ], + "score": 1.0, + "content": "highly sensitive data. For example, models trained on people’s personal messages or detailed med-", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 521, + 505, + 534 + ], + "spans": [ + { + "bbox": [ + 105, + 521, + 505, + 534 + ], + "score": 1.0, + "content": "ical information can offer invaluable insights into real-world language usage or the diagnoses and", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 533, + 505, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 533, + 505, + 545 + ], + "score": 1.0, + "content": "treatment of human diseases (McMahan et al., 2017; Liu et al., 2017). A key challenge in such", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 543, + 506, + 557 + ], + "spans": [ + { + "bbox": [ + 105, + 543, + 506, + 557 + ], + "score": 1.0, + "content": "applications is to prevent models from revealing inappropriate details of the sensitive data—a non-", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 555, + 505, + 567 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 505, + 567 + ], + "score": 1.0, + "content": "trivial task, since models are known to implicitly memorize such details during training and also to", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 566, + 440, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 566, + 440, + 578 + ], + "score": 1.0, + "content": "inadvertently reveal them during inference (Zhang et al., 2017; Shokri et al., 2017).", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 107, + 583, + 505, + 715 + ], + "lines": [ + { + "bbox": [ + 105, + 583, + 505, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 505, + 596 + ], + "score": 1.0, + "content": "Recently, two promising, new model-training approaches have offered the hope that practical, high-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 593, + 506, + 607 + ], + "spans": [ + { + "bbox": [ + 105, + 593, + 506, + 607 + ], + "score": 1.0, + "content": "utility machine learning may be compatible with strong privacy-protection guarantees for sensitive", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 604, + 505, + 619 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 505, + 619 + ], + "score": 1.0, + "content": "training data (Abadi et al., 2017). This paper revisits one of these approaches, Private Aggrega-", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 616, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 616, + 505, + 628 + ], + "score": 1.0, + "content": "tion of Teacher Ensembles, or PATE (Papernot et al., 2017), and develops techniques that improve", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 627, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 505, + 639 + ], + "score": 1.0, + "content": "its scalability and practical applicability. PATE has the advantage of being able to learn from the", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 638, + 506, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 638, + 506, + 650 + ], + "score": 1.0, + "content": "aggregated consensus of separate “teacher” models trained on disjoint data, in a manner that both", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 648, + 506, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 506, + 662 + ], + "score": 1.0, + "content": "provides intuitive privacy guarantees and is agnostic to the underlying machine-learning techniques", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 660, + 505, + 672 + ], + "spans": [ + { + "bbox": [ + 105, + 660, + 505, + 672 + ], + "score": 1.0, + "content": "(cf. the approach of differentially-private stochastic gradient descent (Abadi et al., 2016)). In the", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 669, + 505, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 669, + 505, + 684 + ], + "score": 1.0, + "content": "PATE approach multiple teachers are trained on disjoint sensitive data (e.g., different users’ data),", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 680, + 506, + 695 + ], + "spans": [ + { + "bbox": [ + 105, + 680, + 506, + 695 + ], + "score": 1.0, + "content": "and uses the teachers’ aggregate consensus answers in a black-box fashion to supervise the training", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 692, + 505, + 705 + ], + "spans": [ + { + "bbox": [ + 105, + 692, + 505, + 705 + ], + "score": 1.0, + "content": "of a “student” model. By publishing only the student model (keeping the teachers private) and by", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 703, + 505, + 716 + ], + "spans": [ + { + "bbox": [ + 105, + 703, + 505, + 716 + ], + "score": 1.0, + "content": "adding carefully-calibrated Laplacian noise to the aggregate answers used to train the student, the", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 43.5 + } + ], + "page_idx": 0, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 114, + 721, + 497, + 731 + ], + "lines": [ + { + "bbox": [ + 119, + 720, + 497, + 734 + ], + "spans": [ + { + "bbox": [ + 119, + 720, + 497, + 734 + ], + "score": 1.0, + "content": "∗Equal contributions, authors ordered alphabetically. Work done while the authors were at Google Brain.", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "score": 1.0, + "content": "1", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 79, + 429, + 96 + ], + "lines": [ + { + "bbox": [ + 105, + 78, + 430, + 98 + ], + "spans": [ + { + "bbox": [ + 105, + 78, + 430, + 98 + ], + "score": 1.0, + "content": "SCALABLE PRIVATE LEARNING WITH PATE", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 112, + 115, + 234, + 148 + ], + "lines": [ + { + "bbox": [ + 112, + 115, + 191, + 127 + ], + "spans": [ + { + "bbox": [ + 112, + 115, + 191, + 127 + ], + "score": 1.0, + "content": "Nicolas Papernot∗", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 111, + 125, + 234, + 138 + ], + "spans": [ + { + "bbox": [ + 111, + 125, + 234, + 138 + ], + "score": 1.0, + "content": "Pennsylvania State University", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 112, + 138, + 210, + 149 + ], + "spans": [ + { + "bbox": [ + 112, + 138, + 210, + 149 + ], + "score": 1.0, + "content": "ngp5056@cse.psu.edu", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 3, + "bbox_fs": [ + 111, + 115, + 234, + 149 + ] + }, + { + "type": "text", + "bbox": [ + 357, + 115, + 498, + 148 + ], + "lines": [ + { + "bbox": [ + 356, + 114, + 419, + 128 + ], + "spans": [ + { + "bbox": [ + 356, + 114, + 419, + 128 + ], + "score": 1.0, + "content": "Shuang Song∗", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 356, + 124, + 499, + 139 + ], + "spans": [ + { + "bbox": [ + 356, + 124, + 499, + 139 + ], + "score": 1.0, + "content": "University of California San Diego", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 357, + 137, + 455, + 149 + ], + "spans": [ + { + "bbox": [ + 357, + 137, + 455, + 149 + ], + "score": 1.0, + "content": "shs037@eng.ucsd.edu", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4, + "bbox_fs": [ + 356, + 114, + 499, + 149 + ] + }, + { + "type": "title", + "bbox": [ + 113, + 164, + 414, + 177 + ], + "lines": [ + { + "bbox": [ + 111, + 163, + 417, + 181 + ], + "spans": [ + { + "bbox": [ + 111, + 163, + 417, + 181 + ], + "score": 1.0, + "content": "Ilya Mironov, Ananth Raghunathan, Kunal Talwar & Úlfar Erlingsson", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 113, + 178, + 339, + 198 + ], + "lines": [ + { + "bbox": [ + 112, + 176, + 169, + 188 + ], + "spans": [ + { + "bbox": [ + 112, + 176, + 169, + 188 + ], + "score": 1.0, + "content": "Google Brain", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 112, + 187, + 339, + 200 + ], + "spans": [ + { + "bbox": [ + 112, + 187, + 339, + 200 + ], + "score": 1.0, + "content": "{mironov,pseudorandom,kunal,ulfar}@google.com", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5, + "bbox_fs": [ + 112, + 176, + 339, + 200 + ] + }, + { + "type": "title", + "bbox": [ + 278, + 220, + 333, + 232 + ], + "lines": [ + { + "bbox": [ + 276, + 219, + 335, + 233 + ], + "spans": [ + { + "bbox": [ + 276, + 219, + 335, + 233 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 143, + 245, + 468, + 344 + ], + "lines": [ + { + "bbox": [ + 141, + 244, + 469, + 258 + ], + "spans": [ + { + "bbox": [ + 141, + 244, + 469, + 258 + ], + "score": 1.0, + "content": "The rapid adoption of machine learning has increased concerns about the privacy", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 255, + 470, + 268 + ], + "spans": [ + { + "bbox": [ + 141, + 255, + 470, + 268 + ], + "score": 1.0, + "content": "implications of machine learning models trained on sensitive data, such as medical", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 266, + 470, + 280 + ], + "spans": [ + { + "bbox": [ + 141, + 266, + 470, + 280 + ], + "score": 1.0, + "content": "records or other personal information. To address those concerns, one promising", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 278, + 469, + 289 + ], + "spans": [ + { + "bbox": [ + 141, + 278, + 469, + 289 + ], + "score": 1.0, + "content": "approach is Private Aggregation of Teacher Ensembles, or PATE, which transfers", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 142, + 289, + 469, + 300 + ], + "spans": [ + { + "bbox": [ + 142, + 289, + 469, + 300 + ], + "score": 1.0, + "content": "to a “student” model the knowledge of an ensemble of “teacher” models, with", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 299, + 470, + 313 + ], + "spans": [ + { + "bbox": [ + 141, + 299, + 470, + 313 + ], + "score": 1.0, + "content": "intuitive privacy provided by training teachers on disjoint data and strong privacy", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 311, + 470, + 322 + ], + "spans": [ + { + "bbox": [ + 141, + 311, + 470, + 322 + ], + "score": 1.0, + "content": "guaranteed by noisy aggregation of teachers’ answers. However, PATE has so far", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 142, + 321, + 469, + 333 + ], + "spans": [ + { + "bbox": [ + 142, + 321, + 469, + 333 + ], + "score": 1.0, + "content": "been evaluated only on simple classification tasks like MNIST, leaving unclear its", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 333, + 438, + 344 + ], + "spans": [ + { + "bbox": [ + 141, + 333, + 438, + 344 + ], + "score": 1.0, + "content": "utility when applied to larger-scale learning tasks and real-world datasets.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 15, + "bbox_fs": [ + 141, + 244, + 470, + 344 + ] + }, + { + "type": "text", + "bbox": [ + 143, + 345, + 468, + 455 + ], + "lines": [ + { + "bbox": [ + 141, + 345, + 469, + 357 + ], + "spans": [ + { + "bbox": [ + 141, + 345, + 469, + 357 + ], + "score": 1.0, + "content": "In this work, we show how PATE can scale to learning tasks with large numbers", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 142, + 356, + 469, + 368 + ], + "spans": [ + { + "bbox": [ + 142, + 356, + 469, + 368 + ], + "score": 1.0, + "content": "of output classes and uncurated, imbalanced training data with errors. For this, we", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 141, + 367, + 469, + 380 + ], + "spans": [ + { + "bbox": [ + 141, + 367, + 469, + 380 + ], + "score": 1.0, + "content": "introduce new noisy aggregation mechanisms for teacher ensembles that are more", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 141, + 378, + 469, + 391 + ], + "spans": [ + { + "bbox": [ + 141, + 378, + 469, + 391 + ], + "score": 1.0, + "content": "selective and add less noise, and prove their tighter differential-privacy guarantees.", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 142, + 389, + 469, + 401 + ], + "spans": [ + { + "bbox": [ + 142, + 389, + 469, + 401 + ], + "score": 1.0, + "content": "Our new mechanisms build on two insights: the chance of teacher consensus is", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 141, + 401, + 470, + 412 + ], + "spans": [ + { + "bbox": [ + 141, + 401, + 470, + 412 + ], + "score": 1.0, + "content": "increased by using more concentrated noise and, lacking consensus, no answer", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 141, + 411, + 470, + 423 + ], + "spans": [ + { + "bbox": [ + 141, + 411, + 470, + 423 + ], + "score": 1.0, + "content": "need be given to a student. The consensus answers used are more likely to be", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 141, + 423, + 469, + 434 + ], + "spans": [ + { + "bbox": [ + 141, + 423, + 469, + 434 + ], + "score": 1.0, + "content": "correct, offer better intuitive privacy, and incur lower-differential privacy cost. Our", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 142, + 433, + 470, + 445 + ], + "spans": [ + { + "bbox": [ + 142, + 433, + 470, + 445 + ], + "score": 1.0, + "content": "evaluation shows our mechanisms improve on the original PATE on all measures,", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 141, + 444, + 465, + 457 + ], + "spans": [ + { + "bbox": [ + 141, + 444, + 424, + 457 + ], + "score": 1.0, + "content": "and scale to larger tasks with both high utility and very strong privacy", + "type": "text" + }, + { + "bbox": [ + 425, + 444, + 460, + 455 + ], + "score": 0.82, + "content": "( \\varepsilon < 1 . 0 )", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 444, + 465, + 457 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 24.5, + "bbox_fs": [ + 141, + 345, + 470, + 457 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 475, + 206, + 488 + ], + "lines": [ + { + "bbox": [ + 105, + 474, + 208, + 491 + ], + "spans": [ + { + "bbox": [ + 105, + 474, + 208, + 491 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 107, + 500, + 505, + 577 + ], + "lines": [ + { + "bbox": [ + 105, + 498, + 505, + 514 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 505, + 514 + ], + "score": 1.0, + "content": "Many attractive applications of modern machine-learning techniques involve training models using", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 511, + 505, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 505, + 524 + ], + "score": 1.0, + "content": "highly sensitive data. For example, models trained on people’s personal messages or detailed med-", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 521, + 505, + 534 + ], + "spans": [ + { + "bbox": [ + 105, + 521, + 505, + 534 + ], + "score": 1.0, + "content": "ical information can offer invaluable insights into real-world language usage or the diagnoses and", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 533, + 505, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 533, + 505, + 545 + ], + "score": 1.0, + "content": "treatment of human diseases (McMahan et al., 2017; Liu et al., 2017). A key challenge in such", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 543, + 506, + 557 + ], + "spans": [ + { + "bbox": [ + 105, + 543, + 506, + 557 + ], + "score": 1.0, + "content": "applications is to prevent models from revealing inappropriate details of the sensitive data—a non-", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 555, + 505, + 567 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 505, + 567 + ], + "score": 1.0, + "content": "trivial task, since models are known to implicitly memorize such details during training and also to", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 566, + 440, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 566, + 440, + 578 + ], + "score": 1.0, + "content": "inadvertently reveal them during inference (Zhang et al., 2017; Shokri et al., 2017).", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 34, + "bbox_fs": [ + 105, + 498, + 506, + 578 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 583, + 505, + 715 + ], + "lines": [ + { + "bbox": [ + 105, + 583, + 505, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 505, + 596 + ], + "score": 1.0, + "content": "Recently, two promising, new model-training approaches have offered the hope that practical, high-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 593, + 506, + 607 + ], + "spans": [ + { + "bbox": [ + 105, + 593, + 506, + 607 + ], + "score": 1.0, + "content": "utility machine learning may be compatible with strong privacy-protection guarantees for sensitive", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 604, + 505, + 619 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 505, + 619 + ], + "score": 1.0, + "content": "training data (Abadi et al., 2017). This paper revisits one of these approaches, Private Aggrega-", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 616, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 616, + 505, + 628 + ], + "score": 1.0, + "content": "tion of Teacher Ensembles, or PATE (Papernot et al., 2017), and develops techniques that improve", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 627, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 505, + 639 + ], + "score": 1.0, + "content": "its scalability and practical applicability. PATE has the advantage of being able to learn from the", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 638, + 506, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 638, + 506, + 650 + ], + "score": 1.0, + "content": "aggregated consensus of separate “teacher” models trained on disjoint data, in a manner that both", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 648, + 506, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 506, + 662 + ], + "score": 1.0, + "content": "provides intuitive privacy guarantees and is agnostic to the underlying machine-learning techniques", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 660, + 505, + 672 + ], + "spans": [ + { + "bbox": [ + 105, + 660, + 505, + 672 + ], + "score": 1.0, + "content": "(cf. the approach of differentially-private stochastic gradient descent (Abadi et al., 2016)). In the", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 669, + 505, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 669, + 505, + 684 + ], + "score": 1.0, + "content": "PATE approach multiple teachers are trained on disjoint sensitive data (e.g., different users’ data),", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 680, + 506, + 695 + ], + "spans": [ + { + "bbox": [ + 105, + 680, + 506, + 695 + ], + "score": 1.0, + "content": "and uses the teachers’ aggregate consensus answers in a black-box fashion to supervise the training", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 692, + 505, + 705 + ], + "spans": [ + { + "bbox": [ + 105, + 692, + 505, + 705 + ], + "score": 1.0, + "content": "of a “student” model. By publishing only the student model (keeping the teachers private) and by", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 703, + 505, + 716 + ], + "spans": [ + { + "bbox": [ + 105, + 703, + 505, + 716 + ], + "score": 1.0, + "content": "adding carefully-calibrated Laplacian noise to the aggregate answers used to train the student, the", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 300, + 505, + 315 + ], + "spans": [ + { + "bbox": [ + 105, + 300, + 325, + 315 + ], + "score": 1.0, + "content": "original PATE work showed how to establish rigorous", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 325, + 301, + 347, + 313 + ], + "score": 0.91, + "content": "( \\varepsilon , \\delta )", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 348, + 300, + 505, + 315 + ], + "score": 1.0, + "content": "differential-privacy guarantees (Paper-", + "type": "text", + "cross_page": true + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 312, + 505, + 324 + ], + "spans": [ + { + "bbox": [ + 105, + 312, + 505, + 324 + ], + "score": 1.0, + "content": "not et al., 2017)—a gold standard of privacy (Dwork et al., 2006). However, to date, PATE has been", + "type": "text", + "cross_page": true + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 323, + 457, + 336 + ], + "spans": [ + { + "bbox": [ + 105, + 323, + 457, + 336 + ], + "score": 1.0, + "content": "applied to only simple tasks, like MNIST, without any realistic, larger-scale evaluation.", + "type": "text", + "cross_page": true + } + ], + "index": 11 + } + ], + "index": 43.5, + "bbox_fs": [ + 105, + 583, + 506, + 716 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 108, + 83, + 502, + 202 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 108, + 83, + 502, + 202 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 83, + 502, + 202 + ], + "spans": [ + { + "bbox": [ + 108, + 83, + 502, + 202 + ], + "score": 0.964, + "type": "image", + "image_path": "c3594f071434de4b1002553d1654f0039070cda1d9541b55bc7bf757cdf4295c.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 108, + 83, + 502, + 122.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 108, + 122.66666666666666, + 502, + 162.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 108, + 162.33333333333331, + 502, + 201.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 212, + 505, + 279 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 212, + 505, + 225 + ], + "spans": [ + { + "bbox": [ + 106, + 212, + 505, + 225 + ], + "score": 1.0, + "content": "Figure 1: Our contributions are techniques (Confident-GNMax) that improve on the original PATE", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 222, + 506, + 236 + ], + "spans": [ + { + "bbox": [ + 105, + 222, + 506, + 236 + ], + "score": 1.0, + "content": "(LNMax) on all measures. Left: Accuracy is higher throughout training, despite greatly improved", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 104, + 233, + 505, + 247 + ], + "spans": [ + { + "bbox": [ + 104, + 233, + 271, + 247 + ], + "score": 1.0, + "content": "privacy (more in Table 1). Middle: The", + "type": "text" + }, + { + "bbox": [ + 272, + 236, + 279, + 244 + ], + "score": 0.7, + "content": "\\varepsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 233, + 505, + 247 + ], + "score": 1.0, + "content": "differential-privacy bound on privacy cost is quartered,", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 245, + 505, + 257 + ], + "spans": [ + { + "bbox": [ + 105, + 245, + 505, + 257 + ], + "score": 1.0, + "content": "at least (more in Figure 5). Right: Intuitive privacy is also improved, since students are trained on", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 255, + 504, + 268 + ], + "spans": [ + { + "bbox": [ + 105, + 255, + 504, + 268 + ], + "score": 1.0, + "content": "answers with a much stronger consensus among the teachers (more in Figure 5). These are results", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 267, + 505, + 280 + ], + "spans": [ + { + "bbox": [ + 106, + 267, + 505, + 280 + ], + "score": 1.0, + "content": "for a character-recognition task, using the most favorable LNMax parameters for a fair comparison.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 5.5 + } + ], + "index": 3.25 + }, + { + "type": "text", + "bbox": [ + 107, + 300, + 504, + 334 + ], + "lines": [ + { + "bbox": [ + 105, + 300, + 505, + 315 + ], + "spans": [ + { + "bbox": [ + 105, + 300, + 325, + 315 + ], + "score": 1.0, + "content": "original PATE work showed how to establish rigorous", + "type": "text" + }, + { + "bbox": [ + 325, + 301, + 347, + 313 + ], + "score": 0.91, + "content": "( \\varepsilon , \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 300, + 505, + 315 + ], + "score": 1.0, + "content": "differential-privacy guarantees (Paper-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 312, + 505, + 324 + ], + "spans": [ + { + "bbox": [ + 105, + 312, + 505, + 324 + ], + "score": 1.0, + "content": "not et al., 2017)—a gold standard of privacy (Dwork et al., 2006). However, to date, PATE has been", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 323, + 457, + 336 + ], + "spans": [ + { + "bbox": [ + 105, + 323, + 457, + 336 + ], + "score": 1.0, + "content": "applied to only simple tasks, like MNIST, without any realistic, larger-scale evaluation.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 107, + 339, + 505, + 384 + ], + "lines": [ + { + "bbox": [ + 105, + 339, + 506, + 353 + ], + "spans": [ + { + "bbox": [ + 105, + 339, + 506, + 353 + ], + "score": 1.0, + "content": "The techniques presented in this paper allow PATE to be applied on a larger scale to build more", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 351, + 505, + 364 + ], + "spans": [ + { + "bbox": [ + 105, + 351, + 505, + 364 + ], + "score": 1.0, + "content": "accurate models, in a manner that improves both on PATE’s intuitive privacy-protection due to the", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 362, + 505, + 375 + ], + "spans": [ + { + "bbox": [ + 105, + 362, + 505, + 375 + ], + "score": 1.0, + "content": "teachers’ independent consensus as well as its differential-privacy guarantees. As shown in our ex-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 373, + 504, + 385 + ], + "spans": [ + { + "bbox": [ + 106, + 373, + 504, + 385 + ], + "score": 1.0, + "content": "periments, the result is a gain in privacy, utility, and practicality—an uncommon joint improvement.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13.5 + }, + { + "type": "text", + "bbox": [ + 106, + 390, + 505, + 467 + ], + "lines": [ + { + "bbox": [ + 106, + 390, + 504, + 402 + ], + "spans": [ + { + "bbox": [ + 106, + 390, + 504, + 402 + ], + "score": 1.0, + "content": "The primary technical contributions of this paper are new mechanisms for aggregating teachers’ an-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 401, + 505, + 414 + ], + "spans": [ + { + "bbox": [ + 105, + 401, + 505, + 414 + ], + "score": 1.0, + "content": "swers that are more selective and add less noise. On all measures, our techniques improve on the", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 412, + 505, + 424 + ], + "spans": [ + { + "bbox": [ + 106, + 412, + 505, + 424 + ], + "score": 1.0, + "content": "original PATE mechanism when evaluated on the same tasks using the same datasets, as described", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 422, + 505, + 435 + ], + "spans": [ + { + "bbox": [ + 105, + 422, + 505, + 435 + ], + "score": 1.0, + "content": "in Section 5. Furthermore, we evaluate both variants of PATE on a new, large-scale character recog-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 433, + 505, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 433, + 505, + 446 + ], + "score": 1.0, + "content": "nition task with 150 output classes, inspired by MNIST. The results show that PATE can be success-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 444, + 505, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 505, + 457 + ], + "score": 1.0, + "content": "fully utilized even to uncurated datasets—with significant class imbalance as well as erroneous class", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 454, + 480, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 454, + 480, + 469 + ], + "score": 1.0, + "content": "labels—and that our new aggregation mechanisms improve both privacy and model accuracy.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 107, + 472, + 505, + 538 + ], + "lines": [ + { + "bbox": [ + 106, + 471, + 505, + 485 + ], + "spans": [ + { + "bbox": [ + 106, + 471, + 505, + 485 + ], + "score": 1.0, + "content": "To be more selective, our new mechanisms leverage some pleasant synergies between privacy and", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 483, + 506, + 496 + ], + "spans": [ + { + "bbox": [ + 106, + 483, + 506, + 496 + ], + "score": 1.0, + "content": "utility in PATE aggregation. For example, when teachers disagree, and there is no real consensus,", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 495, + 506, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 506, + 507 + ], + "score": 1.0, + "content": "the privacy cost is much higher; however, since such disagreement also suggest that the teachers", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 506, + 505, + 518 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 505, + 518 + ], + "score": 1.0, + "content": "may not give a correct answer, the answer may simply be omitted. Similarly, teachers may avoid", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 516, + 505, + 529 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 505, + 529 + ], + "score": 1.0, + "content": "giving an answer where the student already is confidently predicting the right answer. Additionally,", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 527, + 414, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 414, + 541 + ], + "score": 1.0, + "content": "we ensure that these selection steps are themselves done in a private manner.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 25.5 + }, + { + "type": "text", + "bbox": [ + 107, + 544, + 505, + 610 + ], + "lines": [ + { + "bbox": [ + 105, + 544, + 505, + 557 + ], + "spans": [ + { + "bbox": [ + 105, + 544, + 505, + 557 + ], + "score": 1.0, + "content": "To add less noise, our new PATE aggregation mechanisms sample Gaussian noise, since the tails", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 554, + 505, + 567 + ], + "spans": [ + { + "bbox": [ + 105, + 554, + 505, + 567 + ], + "score": 1.0, + "content": "of that distribution diminish far more rapidly than those of the Laplacian noise used in the original", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 565, + 505, + 579 + ], + "spans": [ + { + "bbox": [ + 105, + 565, + 505, + 579 + ], + "score": 1.0, + "content": "PATE work. This reduction greatly increases the chance that the noisy aggregation of teachers’", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 577, + 505, + 589 + ], + "spans": [ + { + "bbox": [ + 105, + 577, + 505, + 589 + ], + "score": 1.0, + "content": "votes results in the correct consensus answer, which is especially important when PATE is scaled to", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 588, + 505, + 600 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 505, + 600 + ], + "score": 1.0, + "content": "learning tasks with large numbers of output classes. However, changing the sampled noise requires", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 600, + 495, + 611 + ], + "spans": [ + { + "bbox": [ + 106, + 600, + 495, + 611 + ], + "score": 1.0, + "content": "redoing the entire PATE privacy analysis from scratch (see Section 4 and details in Appendix A).", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 31.5 + }, + { + "type": "text", + "bbox": [ + 107, + 615, + 505, + 682 + ], + "lines": [ + { + "bbox": [ + 106, + 616, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 106, + 616, + 505, + 628 + ], + "score": 1.0, + "content": "Finally, of independent interest are the details of our evaluation extending that of the original PATE", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 627, + 505, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 505, + 640 + ], + "score": 1.0, + "content": "work. In particular, we find that the virtual adversarial training (VAT) technique of Miyato et al.", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 638, + 505, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 638, + 505, + 651 + ], + "score": 1.0, + "content": "(2017) is a good basis for semi-supervised learning on tasks with many classes, outperforming the", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 648, + 505, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 505, + 662 + ], + "score": 1.0, + "content": "improved GANs by Salimans et al. (2016) used in the original PATE work. Furthermore, we explain", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 659, + 506, + 673 + ], + "spans": [ + { + "bbox": [ + 105, + 659, + 360, + 673 + ], + "score": 1.0, + "content": "how to tune the PATE approach to achieve very strong privacy", + "type": "text" + }, + { + "bbox": [ + 360, + 660, + 393, + 671 + ], + "score": 0.83, + "content": "\\langle \\varepsilon \\approx 1 . 0 ", + "type": "inline_equation" + }, + { + "bbox": [ + 394, + 659, + 506, + 673 + ], + "score": 1.0, + "content": ") along with high utility, for", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 671, + 309, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 671, + 309, + 684 + ], + "score": 1.0, + "content": "our real-world character recognition learning task.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 37.5 + }, + { + "type": "text", + "bbox": [ + 107, + 687, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "This paper is structured as follows: Section 2 is the related work section; Section 3 gives a back-", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "ground on PATE and an overview of our work; Section 4 describes our improved aggregation mech-", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "anisms; Section 5 details our experimental evaluation; Section 6 offers conclusions; and proofs are", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 720, + 219, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 219, + 733 + ], + "score": 1.0, + "content": "deferred to the Appendices.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 42.5 + } + ], + "page_idx": 1, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 763 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 763 + ], + "score": 1.0, + "content": "2", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 108, + 83, + 502, + 202 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 108, + 83, + 502, + 202 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 83, + 502, + 202 + ], + "spans": [ + { + "bbox": [ + 108, + 83, + 502, + 202 + ], + "score": 0.964, + "type": "image", + "image_path": "c3594f071434de4b1002553d1654f0039070cda1d9541b55bc7bf757cdf4295c.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 108, + 83, + 502, + 122.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 108, + 122.66666666666666, + 502, + 162.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 108, + 162.33333333333331, + 502, + 201.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 212, + 505, + 279 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 212, + 505, + 225 + ], + "spans": [ + { + "bbox": [ + 106, + 212, + 505, + 225 + ], + "score": 1.0, + "content": "Figure 1: Our contributions are techniques (Confident-GNMax) that improve on the original PATE", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 222, + 506, + 236 + ], + "spans": [ + { + "bbox": [ + 105, + 222, + 506, + 236 + ], + "score": 1.0, + "content": "(LNMax) on all measures. Left: Accuracy is higher throughout training, despite greatly improved", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 104, + 233, + 505, + 247 + ], + "spans": [ + { + "bbox": [ + 104, + 233, + 271, + 247 + ], + "score": 1.0, + "content": "privacy (more in Table 1). Middle: The", + "type": "text" + }, + { + "bbox": [ + 272, + 236, + 279, + 244 + ], + "score": 0.7, + "content": "\\varepsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 233, + 505, + 247 + ], + "score": 1.0, + "content": "differential-privacy bound on privacy cost is quartered,", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 245, + 505, + 257 + ], + "spans": [ + { + "bbox": [ + 105, + 245, + 505, + 257 + ], + "score": 1.0, + "content": "at least (more in Figure 5). Right: Intuitive privacy is also improved, since students are trained on", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 255, + 504, + 268 + ], + "spans": [ + { + "bbox": [ + 105, + 255, + 504, + 268 + ], + "score": 1.0, + "content": "answers with a much stronger consensus among the teachers (more in Figure 5). These are results", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 267, + 505, + 280 + ], + "spans": [ + { + "bbox": [ + 106, + 267, + 505, + 280 + ], + "score": 1.0, + "content": "for a character-recognition task, using the most favorable LNMax parameters for a fair comparison.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 5.5 + } + ], + "index": 3.25 + }, + { + "type": "text", + "bbox": [ + 107, + 300, + 504, + 334 + ], + "lines": [], + "index": 10, + "bbox_fs": [ + 105, + 300, + 505, + 336 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 339, + 505, + 384 + ], + "lines": [ + { + "bbox": [ + 105, + 339, + 506, + 353 + ], + "spans": [ + { + "bbox": [ + 105, + 339, + 506, + 353 + ], + "score": 1.0, + "content": "The techniques presented in this paper allow PATE to be applied on a larger scale to build more", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 351, + 505, + 364 + ], + "spans": [ + { + "bbox": [ + 105, + 351, + 505, + 364 + ], + "score": 1.0, + "content": "accurate models, in a manner that improves both on PATE’s intuitive privacy-protection due to the", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 362, + 505, + 375 + ], + "spans": [ + { + "bbox": [ + 105, + 362, + 505, + 375 + ], + "score": 1.0, + "content": "teachers’ independent consensus as well as its differential-privacy guarantees. As shown in our ex-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 373, + 504, + 385 + ], + "spans": [ + { + "bbox": [ + 106, + 373, + 504, + 385 + ], + "score": 1.0, + "content": "periments, the result is a gain in privacy, utility, and practicality—an uncommon joint improvement.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13.5, + "bbox_fs": [ + 105, + 339, + 506, + 385 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 390, + 505, + 467 + ], + "lines": [ + { + "bbox": [ + 106, + 390, + 504, + 402 + ], + "spans": [ + { + "bbox": [ + 106, + 390, + 504, + 402 + ], + "score": 1.0, + "content": "The primary technical contributions of this paper are new mechanisms for aggregating teachers’ an-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 401, + 505, + 414 + ], + "spans": [ + { + "bbox": [ + 105, + 401, + 505, + 414 + ], + "score": 1.0, + "content": "swers that are more selective and add less noise. On all measures, our techniques improve on the", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 412, + 505, + 424 + ], + "spans": [ + { + "bbox": [ + 106, + 412, + 505, + 424 + ], + "score": 1.0, + "content": "original PATE mechanism when evaluated on the same tasks using the same datasets, as described", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 422, + 505, + 435 + ], + "spans": [ + { + "bbox": [ + 105, + 422, + 505, + 435 + ], + "score": 1.0, + "content": "in Section 5. Furthermore, we evaluate both variants of PATE on a new, large-scale character recog-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 433, + 505, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 433, + 505, + 446 + ], + "score": 1.0, + "content": "nition task with 150 output classes, inspired by MNIST. The results show that PATE can be success-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 444, + 505, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 505, + 457 + ], + "score": 1.0, + "content": "fully utilized even to uncurated datasets—with significant class imbalance as well as erroneous class", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 454, + 480, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 454, + 480, + 469 + ], + "score": 1.0, + "content": "labels—and that our new aggregation mechanisms improve both privacy and model accuracy.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 19, + "bbox_fs": [ + 105, + 390, + 505, + 469 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 472, + 505, + 538 + ], + "lines": [ + { + "bbox": [ + 106, + 471, + 505, + 485 + ], + "spans": [ + { + "bbox": [ + 106, + 471, + 505, + 485 + ], + "score": 1.0, + "content": "To be more selective, our new mechanisms leverage some pleasant synergies between privacy and", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 483, + 506, + 496 + ], + "spans": [ + { + "bbox": [ + 106, + 483, + 506, + 496 + ], + "score": 1.0, + "content": "utility in PATE aggregation. For example, when teachers disagree, and there is no real consensus,", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 495, + 506, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 506, + 507 + ], + "score": 1.0, + "content": "the privacy cost is much higher; however, since such disagreement also suggest that the teachers", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 506, + 505, + 518 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 505, + 518 + ], + "score": 1.0, + "content": "may not give a correct answer, the answer may simply be omitted. Similarly, teachers may avoid", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 516, + 505, + 529 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 505, + 529 + ], + "score": 1.0, + "content": "giving an answer where the student already is confidently predicting the right answer. Additionally,", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 527, + 414, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 414, + 541 + ], + "score": 1.0, + "content": "we ensure that these selection steps are themselves done in a private manner.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 25.5, + "bbox_fs": [ + 105, + 471, + 506, + 541 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 544, + 505, + 610 + ], + "lines": [ + { + "bbox": [ + 105, + 544, + 505, + 557 + ], + "spans": [ + { + "bbox": [ + 105, + 544, + 505, + 557 + ], + "score": 1.0, + "content": "To add less noise, our new PATE aggregation mechanisms sample Gaussian noise, since the tails", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 554, + 505, + 567 + ], + "spans": [ + { + "bbox": [ + 105, + 554, + 505, + 567 + ], + "score": 1.0, + "content": "of that distribution diminish far more rapidly than those of the Laplacian noise used in the original", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 565, + 505, + 579 + ], + "spans": [ + { + "bbox": [ + 105, + 565, + 505, + 579 + ], + "score": 1.0, + "content": "PATE work. This reduction greatly increases the chance that the noisy aggregation of teachers’", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 577, + 505, + 589 + ], + "spans": [ + { + "bbox": [ + 105, + 577, + 505, + 589 + ], + "score": 1.0, + "content": "votes results in the correct consensus answer, which is especially important when PATE is scaled to", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 588, + 505, + 600 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 505, + 600 + ], + "score": 1.0, + "content": "learning tasks with large numbers of output classes. However, changing the sampled noise requires", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 600, + 495, + 611 + ], + "spans": [ + { + "bbox": [ + 106, + 600, + 495, + 611 + ], + "score": 1.0, + "content": "redoing the entire PATE privacy analysis from scratch (see Section 4 and details in Appendix A).", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 31.5, + "bbox_fs": [ + 105, + 544, + 505, + 611 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 615, + 505, + 682 + ], + "lines": [ + { + "bbox": [ + 106, + 616, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 106, + 616, + 505, + 628 + ], + "score": 1.0, + "content": "Finally, of independent interest are the details of our evaluation extending that of the original PATE", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 627, + 505, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 505, + 640 + ], + "score": 1.0, + "content": "work. In particular, we find that the virtual adversarial training (VAT) technique of Miyato et al.", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 638, + 505, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 638, + 505, + 651 + ], + "score": 1.0, + "content": "(2017) is a good basis for semi-supervised learning on tasks with many classes, outperforming the", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 648, + 505, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 505, + 662 + ], + "score": 1.0, + "content": "improved GANs by Salimans et al. (2016) used in the original PATE work. Furthermore, we explain", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 659, + 506, + 673 + ], + "spans": [ + { + "bbox": [ + 105, + 659, + 360, + 673 + ], + "score": 1.0, + "content": "how to tune the PATE approach to achieve very strong privacy", + "type": "text" + }, + { + "bbox": [ + 360, + 660, + 393, + 671 + ], + "score": 0.83, + "content": "\\langle \\varepsilon \\approx 1 . 0 ", + "type": "inline_equation" + }, + { + "bbox": [ + 394, + 659, + 506, + 673 + ], + "score": 1.0, + "content": ") along with high utility, for", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 671, + 309, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 671, + 309, + 684 + ], + "score": 1.0, + "content": "our real-world character recognition learning task.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 37.5, + "bbox_fs": [ + 105, + 616, + 506, + 684 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 687, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "This paper is structured as follows: Section 2 is the related work section; Section 3 gives a back-", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "ground on PATE and an overview of our work; Section 4 describes our improved aggregation mech-", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "anisms; Section 5 details our experimental evaluation; Section 6 offers conclusions; and proofs are", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 720, + 219, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 219, + 733 + ], + "score": 1.0, + "content": "deferred to the Appendices.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 42.5, + "bbox_fs": [ + 105, + 687, + 505, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 81, + 211, + 93 + ], + "lines": [ + { + "bbox": [ + 104, + 79, + 213, + 96 + ], + "spans": [ + { + "bbox": [ + 104, + 79, + 213, + 96 + ], + "score": 1.0, + "content": "2 RELATED WORK", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 105, + 504, + 160 + ], + "lines": [ + { + "bbox": [ + 105, + 105, + 506, + 119 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 506, + 119 + ], + "score": 1.0, + "content": "Differential privacy is by now the gold standard of privacy. It offers a rigorous framework whose", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 116, + 505, + 129 + ], + "spans": [ + { + "bbox": [ + 106, + 116, + 505, + 129 + ], + "score": 1.0, + "content": "threat model makes few assumptions about the adversary’s capabilities, allowing differentially pri-", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 127, + 505, + 141 + ], + "spans": [ + { + "bbox": [ + 105, + 127, + 505, + 141 + ], + "score": 1.0, + "content": "vate algorithms to effectively cope against strong adversaries. This is not the case of all privacy", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 138, + 505, + 152 + ], + "spans": [ + { + "bbox": [ + 105, + 138, + 505, + 152 + ], + "score": 1.0, + "content": "definitions, as demonstrated by successful attacks against anonymization techniques (Aggarwal,", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 149, + 372, + 162 + ], + "spans": [ + { + "bbox": [ + 105, + 149, + 372, + 162 + ], + "score": 1.0, + "content": "2005; Narayanan & Shmatikov, 2008; Bindschaedler et al., 2017).", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 107, + 166, + 505, + 221 + ], + "lines": [ + { + "bbox": [ + 105, + 164, + 506, + 181 + ], + "spans": [ + { + "bbox": [ + 105, + 164, + 506, + 181 + ], + "score": 1.0, + "content": "The first learning algorithms adapted to provide differential privacy with respect to their training", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 176, + 505, + 190 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 505, + 190 + ], + "score": 1.0, + "content": "data were often linear and convex (Pathak et al., 2010; Chaudhuri et al., 2011; Song et al., 2013;", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 187, + 505, + 202 + ], + "spans": [ + { + "bbox": [ + 105, + 187, + 505, + 202 + ], + "score": 1.0, + "content": "Bassily et al., 2014; Hamm et al., 2016). More recently, successful developments in deep learning", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 199, + 506, + 212 + ], + "spans": [ + { + "bbox": [ + 106, + 199, + 506, + 212 + ], + "score": 1.0, + "content": "called for differentially private stochastic gradient descent algorithms (Abadi et al., 2016), some of", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 209, + 423, + 224 + ], + "spans": [ + { + "bbox": [ + 105, + 209, + 423, + 224 + ], + "score": 1.0, + "content": "which have been tailored to learn in federated (McMahan et al., 2017) settings.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 107, + 227, + 505, + 282 + ], + "lines": [ + { + "bbox": [ + 105, + 226, + 505, + 240 + ], + "spans": [ + { + "bbox": [ + 105, + 226, + 505, + 240 + ], + "score": 1.0, + "content": "Differentially private selection mechanisms like GNMax (Section 4.1) are commonly used in hy-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 238, + 505, + 251 + ], + "spans": [ + { + "bbox": [ + 105, + 238, + 505, + 251 + ], + "score": 1.0, + "content": "pothesis testing, frequent itemset mining, and as building blocks of more complicated private mech-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 250, + 505, + 262 + ], + "spans": [ + { + "bbox": [ + 106, + 250, + 505, + 262 + ], + "score": 1.0, + "content": "anisms. The most commonly used differentially private selection mechanisms are exponential mech-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 259, + 506, + 273 + ], + "spans": [ + { + "bbox": [ + 105, + 259, + 506, + 273 + ], + "score": 1.0, + "content": "anism (McSherry & Talwar, 2007) and LNMax (Bhaskar et al., 2010). Recent works offer lower", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 271, + 500, + 283 + ], + "spans": [ + { + "bbox": [ + 106, + 271, + 500, + 283 + ], + "score": 1.0, + "content": "bounds on sample complexity of such problem (Steinke & Ullman, 2017; Bafna & Ullman, 2017).", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 107, + 288, + 505, + 442 + ], + "lines": [ + { + "bbox": [ + 106, + 286, + 505, + 301 + ], + "spans": [ + { + "bbox": [ + 106, + 286, + 505, + 301 + ], + "score": 1.0, + "content": "The Confident and Interactive Aggregator proposed in our work (Section 4.2 and Section 4.3 resp.)", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 299, + 505, + 311 + ], + "spans": [ + { + "bbox": [ + 106, + 299, + 505, + 311 + ], + "score": 1.0, + "content": "use the intuition that selecting samples under certain constraints could result in better training than", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 310, + 505, + 323 + ], + "spans": [ + { + "bbox": [ + 105, + 310, + 505, + 323 + ], + "score": 1.0, + "content": "using samples uniformly at random. In Machine Learning Theory, active learning (Cohn et al.,", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 318, + 506, + 336 + ], + "spans": [ + { + "bbox": [ + 105, + 318, + 506, + 336 + ], + "score": 1.0, + "content": "1994) has been shown to allow learning from fewer labeled examples than the passive case (see e.g.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 331, + 505, + 345 + ], + "spans": [ + { + "bbox": [ + 105, + 331, + 505, + 345 + ], + "score": 1.0, + "content": "Hanneke (2014)). Similarly, in model stealing (Tramèr et al., 2016), a goal is to learn a model from", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 342, + 506, + 355 + ], + "spans": [ + { + "bbox": [ + 105, + 342, + 506, + 355 + ], + "score": 1.0, + "content": "limited access to a teacher network. There is previous work in differential privacy literature (Hardt &", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 353, + 506, + 367 + ], + "spans": [ + { + "bbox": [ + 105, + 353, + 506, + 367 + ], + "score": 1.0, + "content": "Rothblum, 2010; Roth & Roughgarden, 2010) where the mechanism first decides whether or not to", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 365, + 506, + 378 + ], + "spans": [ + { + "bbox": [ + 105, + 365, + 506, + 378 + ], + "score": 1.0, + "content": "answer a query, and then privately answers the queries it chooses to answer using a traditional noise-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 376, + 505, + 388 + ], + "spans": [ + { + "bbox": [ + 105, + 376, + 505, + 388 + ], + "score": 1.0, + "content": "addition mechanism. In these cases, the sparse vector technique (Dwork & Roth, 2014, Chapter 3.6)", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 387, + 506, + 399 + ], + "spans": [ + { + "bbox": [ + 105, + 387, + 506, + 399 + ], + "score": 1.0, + "content": "helps bound the privacy cost in terms of the number of answered queries. This is in contrast to our", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 398, + 506, + 410 + ], + "spans": [ + { + "bbox": [ + 105, + 398, + 506, + 410 + ], + "score": 1.0, + "content": "work where a constant fraction of queries get answered and the sparse vector technique does not", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 408, + 505, + 421 + ], + "spans": [ + { + "bbox": [ + 105, + 408, + 505, + 421 + ], + "score": 1.0, + "content": "seem to help reduce the privacy cost. Closer to our work, Bun et al. (2017) consider a setting where", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 420, + 506, + 432 + ], + "spans": [ + { + "bbox": [ + 105, + 420, + 506, + 432 + ], + "score": 1.0, + "content": "the answer to a query of interest is often either very large or very small. They show that a sparse", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 431, + 486, + 443 + ], + "spans": [ + { + "bbox": [ + 106, + 431, + 486, + 443 + ], + "score": 1.0, + "content": "vector-like analysis applies in this case, where one pays only for queries that are in the middle.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 22.5 + }, + { + "type": "title", + "bbox": [ + 108, + 457, + 284, + 470 + ], + "lines": [ + { + "bbox": [ + 105, + 456, + 286, + 472 + ], + "spans": [ + { + "bbox": [ + 105, + 456, + 286, + 472 + ], + "score": 1.0, + "content": "3 BACKGROUND AND OVERVIEW", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 107, + 482, + 503, + 505 + ], + "lines": [ + { + "bbox": [ + 106, + 481, + 505, + 494 + ], + "spans": [ + { + "bbox": [ + 106, + 481, + 505, + 494 + ], + "score": 1.0, + "content": "We introduce essential components of our approach towards a generic and flexible framework for", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 493, + 381, + 506 + ], + "spans": [ + { + "bbox": [ + 105, + 493, + 381, + 506 + ], + "score": 1.0, + "content": "machine learning with provable privacy guarantees for training data.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5 + }, + { + "type": "title", + "bbox": [ + 107, + 517, + 237, + 529 + ], + "lines": [ + { + "bbox": [ + 105, + 516, + 239, + 530 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 239, + 530 + ], + "score": 1.0, + "content": "3.1 THE PATE FRAMEWORK", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 107, + 538, + 504, + 582 + ], + "lines": [ + { + "bbox": [ + 105, + 537, + 506, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 537, + 506, + 551 + ], + "score": 1.0, + "content": "Here, we provide an overview of the PATE framework. To protect the privacy of training data during", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 549, + 506, + 561 + ], + "spans": [ + { + "bbox": [ + 105, + 549, + 506, + 561 + ], + "score": 1.0, + "content": "learning, PATE transfers knowledge from an ensemble of teacher models trained on partitions of the", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 560, + 505, + 573 + ], + "spans": [ + { + "bbox": [ + 105, + 560, + 505, + 573 + ], + "score": 1.0, + "content": "data to a student model. Privacy guarantees may be understood intuitively and expressed rigorously", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 570, + 232, + 584 + ], + "spans": [ + { + "bbox": [ + 105, + 570, + 232, + 584 + ], + "score": 1.0, + "content": "in terms of differential privacy.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 35.5 + }, + { + "type": "text", + "bbox": [ + 106, + 588, + 503, + 610 + ], + "lines": [ + { + "bbox": [ + 106, + 587, + 505, + 600 + ], + "spans": [ + { + "bbox": [ + 106, + 587, + 465, + 600 + ], + "score": 1.0, + "content": "Illustrated in Figure 2, the PATE framework consists of three key parts: (1) an ensemble of", + "type": "text" + }, + { + "bbox": [ + 466, + 590, + 473, + 598 + ], + "score": 0.75, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 473, + 587, + 505, + 600 + ], + "score": 1.0, + "content": "teacher", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 599, + 362, + 611 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 362, + 611 + ], + "score": 1.0, + "content": "models, (2) an aggregation mechanism and (3) a student model.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38.5 + }, + { + "type": "text", + "bbox": [ + 107, + 615, + 504, + 671 + ], + "lines": [ + { + "bbox": [ + 107, + 616, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 107, + 616, + 505, + 628 + ], + "score": 1.0, + "content": "Teacher models: Each teacher is a model trained independently on a subset of the data whose", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 627, + 506, + 640 + ], + "spans": [ + { + "bbox": [ + 106, + 627, + 506, + 640 + ], + "score": 1.0, + "content": "privacy one wishes to protect. The data is partitioned to ensure no pair of teachers will have trained", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 638, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 638, + 505, + 650 + ], + "score": 1.0, + "content": "on overlapping data. Any learning technique suitable for the data can be used for any teacher.", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 648, + 506, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 379, + 662 + ], + "score": 1.0, + "content": "Training each teacher on a partition of the sensitive data produces", + "type": "text" + }, + { + "bbox": [ + 379, + 650, + 387, + 659 + ], + "score": 0.71, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 648, + 506, + 662 + ], + "score": 1.0, + "content": "different models solving the", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 659, + 358, + 672 + ], + "spans": [ + { + "bbox": [ + 105, + 659, + 358, + 672 + ], + "score": 1.0, + "content": "same task. At inference, teachers independently predict labels.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 42 + }, + { + "type": "text", + "bbox": [ + 107, + 677, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 677, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 506, + 690 + ], + "score": 1.0, + "content": "Aggregation mechanism: When there is a strong consensus among teachers, the label they almost", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 687, + 506, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 701 + ], + "score": 1.0, + "content": "all agree on does not depend on the model learned by any given teacher. Hence, this collective", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "score": 1.0, + "content": "decision is intuitively private with respect to any given training point—because such a point could", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "score": 1.0, + "content": "have been included only in one of the teachers’ training set. To provide rigorous guarantees of dif-", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "score": 1.0, + "content": "ferential privacy, the aggregation mechanism of the original PATE framework counts votes assigned", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 47 + } + ], + "page_idx": 2, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 761 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 761 + ], + "score": 1.0, + "content": "3", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 81, + 211, + 93 + ], + "lines": [ + { + "bbox": [ + 104, + 79, + 213, + 96 + ], + "spans": [ + { + "bbox": [ + 104, + 79, + 213, + 96 + ], + "score": 1.0, + "content": "2 RELATED WORK", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 105, + 504, + 160 + ], + "lines": [ + { + "bbox": [ + 105, + 105, + 506, + 119 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 506, + 119 + ], + "score": 1.0, + "content": "Differential privacy is by now the gold standard of privacy. It offers a rigorous framework whose", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 116, + 505, + 129 + ], + "spans": [ + { + "bbox": [ + 106, + 116, + 505, + 129 + ], + "score": 1.0, + "content": "threat model makes few assumptions about the adversary’s capabilities, allowing differentially pri-", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 127, + 505, + 141 + ], + "spans": [ + { + "bbox": [ + 105, + 127, + 505, + 141 + ], + "score": 1.0, + "content": "vate algorithms to effectively cope against strong adversaries. This is not the case of all privacy", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 138, + 505, + 152 + ], + "spans": [ + { + "bbox": [ + 105, + 138, + 505, + 152 + ], + "score": 1.0, + "content": "definitions, as demonstrated by successful attacks against anonymization techniques (Aggarwal,", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 149, + 372, + 162 + ], + "spans": [ + { + "bbox": [ + 105, + 149, + 372, + 162 + ], + "score": 1.0, + "content": "2005; Narayanan & Shmatikov, 2008; Bindschaedler et al., 2017).", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 3, + "bbox_fs": [ + 105, + 105, + 506, + 162 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 166, + 505, + 221 + ], + "lines": [ + { + "bbox": [ + 105, + 164, + 506, + 181 + ], + "spans": [ + { + "bbox": [ + 105, + 164, + 506, + 181 + ], + "score": 1.0, + "content": "The first learning algorithms adapted to provide differential privacy with respect to their training", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 176, + 505, + 190 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 505, + 190 + ], + "score": 1.0, + "content": "data were often linear and convex (Pathak et al., 2010; Chaudhuri et al., 2011; Song et al., 2013;", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 187, + 505, + 202 + ], + "spans": [ + { + "bbox": [ + 105, + 187, + 505, + 202 + ], + "score": 1.0, + "content": "Bassily et al., 2014; Hamm et al., 2016). More recently, successful developments in deep learning", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 199, + 506, + 212 + ], + "spans": [ + { + "bbox": [ + 106, + 199, + 506, + 212 + ], + "score": 1.0, + "content": "called for differentially private stochastic gradient descent algorithms (Abadi et al., 2016), some of", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 209, + 423, + 224 + ], + "spans": [ + { + "bbox": [ + 105, + 209, + 423, + 224 + ], + "score": 1.0, + "content": "which have been tailored to learn in federated (McMahan et al., 2017) settings.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 8, + "bbox_fs": [ + 105, + 164, + 506, + 224 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 227, + 505, + 282 + ], + "lines": [ + { + "bbox": [ + 105, + 226, + 505, + 240 + ], + "spans": [ + { + "bbox": [ + 105, + 226, + 505, + 240 + ], + "score": 1.0, + "content": "Differentially private selection mechanisms like GNMax (Section 4.1) are commonly used in hy-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 238, + 505, + 251 + ], + "spans": [ + { + "bbox": [ + 105, + 238, + 505, + 251 + ], + "score": 1.0, + "content": "pothesis testing, frequent itemset mining, and as building blocks of more complicated private mech-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 250, + 505, + 262 + ], + "spans": [ + { + "bbox": [ + 106, + 250, + 505, + 262 + ], + "score": 1.0, + "content": "anisms. The most commonly used differentially private selection mechanisms are exponential mech-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 259, + 506, + 273 + ], + "spans": [ + { + "bbox": [ + 105, + 259, + 506, + 273 + ], + "score": 1.0, + "content": "anism (McSherry & Talwar, 2007) and LNMax (Bhaskar et al., 2010). Recent works offer lower", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 271, + 500, + 283 + ], + "spans": [ + { + "bbox": [ + 106, + 271, + 500, + 283 + ], + "score": 1.0, + "content": "bounds on sample complexity of such problem (Steinke & Ullman, 2017; Bafna & Ullman, 2017).", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13, + "bbox_fs": [ + 105, + 226, + 506, + 283 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 288, + 505, + 442 + ], + "lines": [ + { + "bbox": [ + 106, + 286, + 505, + 301 + ], + "spans": [ + { + "bbox": [ + 106, + 286, + 505, + 301 + ], + "score": 1.0, + "content": "The Confident and Interactive Aggregator proposed in our work (Section 4.2 and Section 4.3 resp.)", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 299, + 505, + 311 + ], + "spans": [ + { + "bbox": [ + 106, + 299, + 505, + 311 + ], + "score": 1.0, + "content": "use the intuition that selecting samples under certain constraints could result in better training than", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 310, + 505, + 323 + ], + "spans": [ + { + "bbox": [ + 105, + 310, + 505, + 323 + ], + "score": 1.0, + "content": "using samples uniformly at random. In Machine Learning Theory, active learning (Cohn et al.,", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 318, + 506, + 336 + ], + "spans": [ + { + "bbox": [ + 105, + 318, + 506, + 336 + ], + "score": 1.0, + "content": "1994) has been shown to allow learning from fewer labeled examples than the passive case (see e.g.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 331, + 505, + 345 + ], + "spans": [ + { + "bbox": [ + 105, + 331, + 505, + 345 + ], + "score": 1.0, + "content": "Hanneke (2014)). Similarly, in model stealing (Tramèr et al., 2016), a goal is to learn a model from", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 342, + 506, + 355 + ], + "spans": [ + { + "bbox": [ + 105, + 342, + 506, + 355 + ], + "score": 1.0, + "content": "limited access to a teacher network. There is previous work in differential privacy literature (Hardt &", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 353, + 506, + 367 + ], + "spans": [ + { + "bbox": [ + 105, + 353, + 506, + 367 + ], + "score": 1.0, + "content": "Rothblum, 2010; Roth & Roughgarden, 2010) where the mechanism first decides whether or not to", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 365, + 506, + 378 + ], + "spans": [ + { + "bbox": [ + 105, + 365, + 506, + 378 + ], + "score": 1.0, + "content": "answer a query, and then privately answers the queries it chooses to answer using a traditional noise-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 376, + 505, + 388 + ], + "spans": [ + { + "bbox": [ + 105, + 376, + 505, + 388 + ], + "score": 1.0, + "content": "addition mechanism. In these cases, the sparse vector technique (Dwork & Roth, 2014, Chapter 3.6)", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 387, + 506, + 399 + ], + "spans": [ + { + "bbox": [ + 105, + 387, + 506, + 399 + ], + "score": 1.0, + "content": "helps bound the privacy cost in terms of the number of answered queries. This is in contrast to our", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 398, + 506, + 410 + ], + "spans": [ + { + "bbox": [ + 105, + 398, + 506, + 410 + ], + "score": 1.0, + "content": "work where a constant fraction of queries get answered and the sparse vector technique does not", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 408, + 505, + 421 + ], + "spans": [ + { + "bbox": [ + 105, + 408, + 505, + 421 + ], + "score": 1.0, + "content": "seem to help reduce the privacy cost. Closer to our work, Bun et al. (2017) consider a setting where", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 420, + 506, + 432 + ], + "spans": [ + { + "bbox": [ + 105, + 420, + 506, + 432 + ], + "score": 1.0, + "content": "the answer to a query of interest is often either very large or very small. They show that a sparse", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 431, + 486, + 443 + ], + "spans": [ + { + "bbox": [ + 106, + 431, + 486, + 443 + ], + "score": 1.0, + "content": "vector-like analysis applies in this case, where one pays only for queries that are in the middle.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 22.5, + "bbox_fs": [ + 105, + 286, + 506, + 443 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 457, + 284, + 470 + ], + "lines": [ + { + "bbox": [ + 105, + 456, + 286, + 472 + ], + "spans": [ + { + "bbox": [ + 105, + 456, + 286, + 472 + ], + "score": 1.0, + "content": "3 BACKGROUND AND OVERVIEW", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 107, + 482, + 503, + 505 + ], + "lines": [ + { + "bbox": [ + 106, + 481, + 505, + 494 + ], + "spans": [ + { + "bbox": [ + 106, + 481, + 505, + 494 + ], + "score": 1.0, + "content": "We introduce essential components of our approach towards a generic and flexible framework for", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 493, + 381, + 506 + ], + "spans": [ + { + "bbox": [ + 105, + 493, + 381, + 506 + ], + "score": 1.0, + "content": "machine learning with provable privacy guarantees for training data.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5, + "bbox_fs": [ + 105, + 481, + 505, + 506 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 517, + 237, + 529 + ], + "lines": [ + { + "bbox": [ + 105, + 516, + 239, + 530 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 239, + 530 + ], + "score": 1.0, + "content": "3.1 THE PATE FRAMEWORK", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 107, + 538, + 504, + 582 + ], + "lines": [ + { + "bbox": [ + 105, + 537, + 506, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 537, + 506, + 551 + ], + "score": 1.0, + "content": "Here, we provide an overview of the PATE framework. To protect the privacy of training data during", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 549, + 506, + 561 + ], + "spans": [ + { + "bbox": [ + 105, + 549, + 506, + 561 + ], + "score": 1.0, + "content": "learning, PATE transfers knowledge from an ensemble of teacher models trained on partitions of the", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 560, + 505, + 573 + ], + "spans": [ + { + "bbox": [ + 105, + 560, + 505, + 573 + ], + "score": 1.0, + "content": "data to a student model. Privacy guarantees may be understood intuitively and expressed rigorously", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 570, + 232, + 584 + ], + "spans": [ + { + "bbox": [ + 105, + 570, + 232, + 584 + ], + "score": 1.0, + "content": "in terms of differential privacy.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 35.5, + "bbox_fs": [ + 105, + 537, + 506, + 584 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 588, + 503, + 610 + ], + "lines": [ + { + "bbox": [ + 106, + 587, + 505, + 600 + ], + "spans": [ + { + "bbox": [ + 106, + 587, + 465, + 600 + ], + "score": 1.0, + "content": "Illustrated in Figure 2, the PATE framework consists of three key parts: (1) an ensemble of", + "type": "text" + }, + { + "bbox": [ + 466, + 590, + 473, + 598 + ], + "score": 0.75, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 473, + 587, + 505, + 600 + ], + "score": 1.0, + "content": "teacher", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 599, + 362, + 611 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 362, + 611 + ], + "score": 1.0, + "content": "models, (2) an aggregation mechanism and (3) a student model.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38.5, + "bbox_fs": [ + 105, + 587, + 505, + 611 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 615, + 504, + 671 + ], + "lines": [ + { + "bbox": [ + 107, + 616, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 107, + 616, + 505, + 628 + ], + "score": 1.0, + "content": "Teacher models: Each teacher is a model trained independently on a subset of the data whose", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 627, + 506, + 640 + ], + "spans": [ + { + "bbox": [ + 106, + 627, + 506, + 640 + ], + "score": 1.0, + "content": "privacy one wishes to protect. The data is partitioned to ensure no pair of teachers will have trained", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 638, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 638, + 505, + 650 + ], + "score": 1.0, + "content": "on overlapping data. Any learning technique suitable for the data can be used for any teacher.", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 648, + 506, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 379, + 662 + ], + "score": 1.0, + "content": "Training each teacher on a partition of the sensitive data produces", + "type": "text" + }, + { + "bbox": [ + 379, + 650, + 387, + 659 + ], + "score": 0.71, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 648, + 506, + 662 + ], + "score": 1.0, + "content": "different models solving the", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 659, + 358, + 672 + ], + "spans": [ + { + "bbox": [ + 105, + 659, + 358, + 672 + ], + "score": 1.0, + "content": "same task. At inference, teachers independently predict labels.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 42, + "bbox_fs": [ + 105, + 616, + 506, + 672 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 677, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 677, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 506, + 690 + ], + "score": 1.0, + "content": "Aggregation mechanism: When there is a strong consensus among teachers, the label they almost", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 687, + 506, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 701 + ], + "score": 1.0, + "content": "all agree on does not depend on the model learned by any given teacher. Hence, this collective", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "score": 1.0, + "content": "decision is intuitively private with respect to any given training point—because such a point could", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "score": 1.0, + "content": "have been included only in one of the teachers’ training set. To provide rigorous guarantees of dif-", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "score": 1.0, + "content": "ferential privacy, the aggregation mechanism of the original PATE framework counts votes assigned", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 236, + 505, + 251 + ], + "spans": [ + { + "bbox": [ + 105, + 236, + 505, + 251 + ], + "score": 1.0, + "content": "to each class, adds carefully calibrated Laplacian noise to the resulting vote histogram, and outputs", + "type": "text", + "cross_page": true + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 248, + 505, + 261 + ], + "spans": [ + { + "bbox": [ + 106, + 248, + 505, + 261 + ], + "score": 1.0, + "content": "the class with the most noisy votes as the ensemble’s prediction. This mechanism is referred to as", + "type": "text", + "cross_page": true + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 259, + 354, + 272 + ], + "spans": [ + { + "bbox": [ + 106, + 259, + 354, + 272 + ], + "score": 1.0, + "content": "the max-of-Laplacian mechanism, or LNMax, going forward.", + "type": "text", + "cross_page": true + } + ], + "index": 7 + } + ], + "index": 47, + "bbox_fs": [ + 105, + 677, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 106, + 79, + 504, + 183 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 106, + 79, + 504, + 183 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 79, + 504, + 183 + ], + "spans": [ + { + "bbox": [ + 106, + 79, + 504, + 183 + ], + "score": 0.965, + "type": "image", + "image_path": "cf30449e1809aaac1394f2000d5e2e0328dac51fa491f501a52adfbb7f7f5f83.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 106, + 79, + 504, + 113.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 106, + 113.66666666666666, + 504, + 148.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 106, + 148.33333333333331, + 504, + 182.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 104, + 191, + 505, + 214 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 192, + 505, + 203 + ], + "spans": [ + { + "bbox": [ + 106, + 192, + 505, + 203 + ], + "score": 1.0, + "content": "Figure 2: Overview of the approach: (1) an ensemble of teachers is trained on disjoint subsets of the", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 203, + 455, + 214 + ], + "spans": [ + { + "bbox": [ + 106, + 203, + 455, + 214 + ], + "score": 1.0, + "content": "sensitive data, (2) a student model is trained on public data labeled using the ensemble.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "text", + "bbox": [ + 106, + 237, + 505, + 271 + ], + "lines": [ + { + "bbox": [ + 105, + 236, + 505, + 251 + ], + "spans": [ + { + "bbox": [ + 105, + 236, + 505, + 251 + ], + "score": 1.0, + "content": "to each class, adds carefully calibrated Laplacian noise to the resulting vote histogram, and outputs", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 248, + 505, + 261 + ], + "spans": [ + { + "bbox": [ + 106, + 248, + 505, + 261 + ], + "score": 1.0, + "content": "the class with the most noisy votes as the ensemble’s prediction. This mechanism is referred to as", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 259, + 354, + 272 + ], + "spans": [ + { + "bbox": [ + 106, + 259, + 354, + 272 + ], + "score": 1.0, + "content": "the max-of-Laplacian mechanism, or LNMax, going forward.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 106, + 275, + 505, + 335 + ], + "lines": [ + { + "bbox": [ + 105, + 275, + 505, + 289 + ], + "spans": [ + { + "bbox": [ + 105, + 275, + 157, + 289 + ], + "score": 1.0, + "content": "For samples", + "type": "text" + }, + { + "bbox": [ + 157, + 278, + 164, + 286 + ], + "score": 0.75, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 165, + 275, + 213, + 289 + ], + "score": 1.0, + "content": "and classes", + "type": "text" + }, + { + "bbox": [ + 213, + 277, + 250, + 288 + ], + "score": 0.89, + "content": "1 , \\ldots , m", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 275, + 266, + 289 + ], + "score": 1.0, + "content": ", let", + "type": "text" + }, + { + "bbox": [ + 266, + 276, + 316, + 289 + ], + "score": 0.93, + "content": "f _ { j } ( x ) \\in [ m ]", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 275, + 361, + 289 + ], + "score": 1.0, + "content": "denote the", + "type": "text" + }, + { + "bbox": [ + 362, + 277, + 367, + 288 + ], + "score": 0.82, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 368, + 275, + 505, + 289 + ], + "score": 1.0, + "content": "-th teacher model’s prediction and", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 288, + 505, + 302 + ], + "spans": [ + { + "bbox": [ + 106, + 290, + 117, + 300 + ], + "score": 0.8, + "content": "n _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 117, + 288, + 236, + 302 + ], + "score": 1.0, + "content": "denote the vote count for the", + "type": "text" + }, + { + "bbox": [ + 236, + 290, + 241, + 299 + ], + "score": 0.71, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 242, + 288, + 297, + 302 + ], + "score": 1.0, + "content": "-th class (i.e.,", + "type": "text" + }, + { + "bbox": [ + 297, + 288, + 369, + 302 + ], + "score": 0.93, + "content": "n _ { i } \\triangleq | f _ { j } ( x ) = i | )", + "type": "inline_equation" + }, + { + "bbox": [ + 370, + 288, + 505, + 302 + ], + "score": 1.0, + "content": ". The output of the mechanism is", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 107, + 300, + 506, + 316 + ], + "spans": [ + { + "bbox": [ + 107, + 301, + 264, + 314 + ], + "score": 0.75, + "content": "A ( x ) \\triangleq \\mathrm { a r g m a x } _ { i } \\left( n _ { i } ( x ) + \\mathrm { L a p } \\left( 1 / \\gamma \\right) \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 264, + 300, + 506, + 316 + ], + "score": 1.0, + "content": ". Through a rigorous analysis of this mechanism, the PATE", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 312, + 505, + 326 + ], + "spans": [ + { + "bbox": [ + 105, + 312, + 505, + 326 + ], + "score": 1.0, + "content": "framework provides a differentially private API: the privacy cost of each aggregated prediction made", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 324, + 245, + 336 + ], + "spans": [ + { + "bbox": [ + 106, + 324, + 245, + 336 + ], + "score": 1.0, + "content": "by the teacher ensemble is known.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 106, + 340, + 505, + 429 + ], + "lines": [ + { + "bbox": [ + 105, + 340, + 505, + 353 + ], + "spans": [ + { + "bbox": [ + 105, + 340, + 505, + 353 + ], + "score": 1.0, + "content": "Student model: PATE’s final step involves the training of a student model by knowledge transfer", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 352, + 506, + 365 + ], + "spans": [ + { + "bbox": [ + 105, + 352, + 506, + 365 + ], + "score": 1.0, + "content": "from the teacher ensemble using access to public—but unlabeled—data. To limit the privacy cost", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 363, + 506, + 376 + ], + "spans": [ + { + "bbox": [ + 105, + 363, + 506, + 376 + ], + "score": 1.0, + "content": "of labeling them, queries are only made to the aggregation mechanism for a subset of public data to", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 375, + 506, + 387 + ], + "spans": [ + { + "bbox": [ + 105, + 375, + 506, + 387 + ], + "score": 1.0, + "content": "train the student in a semi-supervised way using a fixed number of queries. The authors note that", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 384, + 505, + 397 + ], + "spans": [ + { + "bbox": [ + 105, + 384, + 505, + 397 + ], + "score": 1.0, + "content": "every additional ensemble prediction increases the privacy cost spent and thus cannot work with", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 395, + 506, + 409 + ], + "spans": [ + { + "bbox": [ + 105, + 395, + 506, + 409 + ], + "score": 1.0, + "content": "unbounded queries. Fixed queries fixes privacy costs as well as diminishes the value of attacks", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 407, + 505, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 505, + 419 + ], + "score": 1.0, + "content": "analyzing model parameters to recover training data (Zhang et al., 2017). The student only sees", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 418, + 275, + 430 + ], + "spans": [ + { + "bbox": [ + 106, + 418, + 275, + 430 + ], + "score": 1.0, + "content": "public data and privacy-preserving labels.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 16.5 + }, + { + "type": "title", + "bbox": [ + 108, + 444, + 235, + 456 + ], + "lines": [ + { + "bbox": [ + 106, + 444, + 236, + 456 + ], + "spans": [ + { + "bbox": [ + 106, + 444, + 236, + 456 + ], + "score": 1.0, + "content": "3.2 DIFFERENTIAL PRIVACY", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 106, + 465, + 505, + 499 + ], + "lines": [ + { + "bbox": [ + 105, + 464, + 505, + 479 + ], + "spans": [ + { + "bbox": [ + 105, + 464, + 505, + 479 + ], + "score": 1.0, + "content": "Differential privacy (Dwork et al., 2006) requires that the sensitivity of the distribution of an algo-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 477, + 505, + 489 + ], + "spans": [ + { + "bbox": [ + 106, + 477, + 505, + 489 + ], + "score": 1.0, + "content": "rithm’s output to small perturbations of its input be limited. The following variant of the definition", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 488, + 235, + 500 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 235, + 500 + ], + "score": 1.0, + "content": "captures this intuition formally:", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 106, + 503, + 505, + 527 + ], + "lines": [ + { + "bbox": [ + 105, + 502, + 505, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 502, + 269, + 516 + ], + "score": 1.0, + "content": "Definition 1. A randomized mechanism", + "type": "text" + }, + { + "bbox": [ + 269, + 504, + 282, + 514 + ], + "score": 0.8, + "content": "\\mathcal { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 502, + 335, + 516 + ], + "score": 1.0, + "content": "with domain", + "type": "text" + }, + { + "bbox": [ + 335, + 504, + 345, + 514 + ], + "score": 0.79, + "content": "\\mathcal { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 502, + 389, + 516 + ], + "score": 1.0, + "content": "and range", + "type": "text" + }, + { + "bbox": [ + 389, + 504, + 398, + 514 + ], + "score": 0.81, + "content": "\\mathcal { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 502, + 434, + 516 + ], + "score": 1.0, + "content": "satisfies", + "type": "text" + }, + { + "bbox": [ + 434, + 504, + 456, + 515 + ], + "score": 0.9, + "content": "( \\varepsilon , \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 457, + 502, + 505, + 516 + ], + "score": 1.0, + "content": "-differential", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 104, + 515, + 505, + 527 + ], + "spans": [ + { + "bbox": [ + 104, + 515, + 258, + 527 + ], + "score": 1.0, + "content": "privacy if for any two adjacent inputs", + "type": "text" + }, + { + "bbox": [ + 258, + 515, + 303, + 526 + ], + "score": 0.92, + "content": "D , D ^ { \\prime } \\in \\mathcal { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 303, + 515, + 421, + 527 + ], + "score": 1.0, + "content": "and for any subset of outputs", + "type": "text" + }, + { + "bbox": [ + 421, + 515, + 451, + 526 + ], + "score": 0.9, + "content": "S \\subseteq \\mathcal { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 515, + 505, + 527 + ], + "score": 1.0, + "content": "it holds that:", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5 + }, + { + "type": "interline_equation", + "bbox": [ + 213, + 538, + 398, + 552 + ], + "lines": [ + { + "bbox": [ + 213, + 538, + 398, + 552 + ], + "spans": [ + { + "bbox": [ + 213, + 538, + 398, + 552 + ], + "score": 0.9, + "content": "\\mathbf { P r } [ \\mathcal { M } ( D ) \\in S ] \\leq e ^ { \\varepsilon } \\cdot \\mathbf { P r } [ \\mathcal { M } ( D ^ { \\prime } ) \\in S ] + \\delta .", + "type": "interline_equation", + "image_path": "12979c49c250a2723edad1ae58606c8f87d2f3d130dffd2cbb50985c8126f2ba.jpg" + } + ] + } + ], + "index": 27, + "virtual_lines": [ + { + "bbox": [ + 213, + 538, + 398, + 552 + ], + "spans": [], + "index": 27 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 562, + 505, + 629 + ], + "lines": [ + { + "bbox": [ + 105, + 562, + 506, + 575 + ], + "spans": [ + { + "bbox": [ + 105, + 562, + 289, + 575 + ], + "score": 1.0, + "content": "For our application of differential privacy to", + "type": "text" + }, + { + "bbox": [ + 290, + 563, + 306, + 573 + ], + "score": 0.29, + "content": "\\mathbf { M L }", + "type": "inline_equation" + }, + { + "bbox": [ + 307, + 562, + 506, + 575 + ], + "score": 1.0, + "content": ", adjacent inputs are defined as two datasets that", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 573, + 505, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 573, + 377, + 587 + ], + "score": 1.0, + "content": "only differ by one training example and the randomized mechanism", + "type": "text" + }, + { + "bbox": [ + 377, + 574, + 390, + 584 + ], + "score": 0.82, + "content": "\\mathcal { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 573, + 505, + 587 + ], + "score": 1.0, + "content": "would be the model training", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 585, + 505, + 597 + ], + "spans": [ + { + "bbox": [ + 106, + 585, + 412, + 597 + ], + "score": 1.0, + "content": "algorithm. The privacy parameters have the following natural interpretation:", + "type": "text" + }, + { + "bbox": [ + 412, + 587, + 418, + 595 + ], + "score": 0.77, + "content": "\\varepsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 419, + 585, + 505, + 597 + ], + "score": 1.0, + "content": "is an upper bound on", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 595, + 505, + 608 + ], + "spans": [ + { + "bbox": [ + 105, + 595, + 203, + 608 + ], + "score": 1.0, + "content": "the loss of privacy, and", + "type": "text" + }, + { + "bbox": [ + 203, + 596, + 209, + 605 + ], + "score": 0.77, + "content": "\\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 595, + 505, + 608 + ], + "score": 1.0, + "content": "is the probability with which this guarantee may not hold. Composition", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 606, + 506, + 620 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 506, + 620 + ], + "score": 1.0, + "content": "theorems (Dwork & Roth, 2014) allow us to keep track of the privacy cost when we run a sequence", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 618, + 171, + 629 + ], + "spans": [ + { + "bbox": [ + 106, + 618, + 171, + 629 + ], + "score": 1.0, + "content": "of mechanisms.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 30.5 + }, + { + "type": "title", + "bbox": [ + 108, + 644, + 265, + 656 + ], + "lines": [ + { + "bbox": [ + 105, + 644, + 267, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 267, + 657 + ], + "score": 1.0, + "content": "3.3 RÉNYI DIFFERENTIAL PRIVACY", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 106, + 665, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 664, + 506, + 679 + ], + "spans": [ + { + "bbox": [ + 105, + 664, + 506, + 679 + ], + "score": 1.0, + "content": "Papernot et al. (2017) note that the natural approach to bounding PATE’s privacy loss—by bounding", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 677, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 506, + 690 + ], + "score": 1.0, + "content": "the privacy cost of each label queried and using strong composition (Dwork et al., 2010) to derive", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 686, + 505, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 686, + 505, + 702 + ], + "score": 1.0, + "content": "the total cost—yields loose privacy guarantees. Instead, their approach uses data-dependent privacy", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 698, + 505, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 713 + ], + "score": 1.0, + "content": "analysis. This takes advantage of the fact that when the consensus among the teachers is very strong,", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "the plurality outcome has overwhelming likelihood leading to a very small privacy cost whenever the", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 721, + 505, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 505, + 734 + ], + "score": 1.0, + "content": "consensus occurs. To capture this effect quantitatively, Papernot et al. (2017) rely on the moments", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 37.5 + } + ], + "page_idx": 3, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 752, + 308, + 759 + ], + "lines": [] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 106, + 79, + 504, + 183 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 106, + 79, + 504, + 183 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 79, + 504, + 183 + ], + "spans": [ + { + "bbox": [ + 106, + 79, + 504, + 183 + ], + "score": 0.965, + "type": "image", + "image_path": "cf30449e1809aaac1394f2000d5e2e0328dac51fa491f501a52adfbb7f7f5f83.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 106, + 79, + 504, + 113.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 106, + 113.66666666666666, + 504, + 148.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 106, + 148.33333333333331, + 504, + 182.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 104, + 191, + 505, + 214 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 192, + 505, + 203 + ], + "spans": [ + { + "bbox": [ + 106, + 192, + 505, + 203 + ], + "score": 1.0, + "content": "Figure 2: Overview of the approach: (1) an ensemble of teachers is trained on disjoint subsets of the", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 203, + 455, + 214 + ], + "spans": [ + { + "bbox": [ + 106, + 203, + 455, + 214 + ], + "score": 1.0, + "content": "sensitive data, (2) a student model is trained on public data labeled using the ensemble.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "text", + "bbox": [ + 106, + 237, + 505, + 271 + ], + "lines": [], + "index": 6, + "bbox_fs": [ + 105, + 236, + 505, + 272 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 106, + 275, + 505, + 335 + ], + "lines": [ + { + "bbox": [ + 105, + 275, + 505, + 289 + ], + "spans": [ + { + "bbox": [ + 105, + 275, + 157, + 289 + ], + "score": 1.0, + "content": "For samples", + "type": "text" + }, + { + "bbox": [ + 157, + 278, + 164, + 286 + ], + "score": 0.75, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 165, + 275, + 213, + 289 + ], + "score": 1.0, + "content": "and classes", + "type": "text" + }, + { + "bbox": [ + 213, + 277, + 250, + 288 + ], + "score": 0.89, + "content": "1 , \\ldots , m", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 275, + 266, + 289 + ], + "score": 1.0, + "content": ", let", + "type": "text" + }, + { + "bbox": [ + 266, + 276, + 316, + 289 + ], + "score": 0.93, + "content": "f _ { j } ( x ) \\in [ m ]", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 275, + 361, + 289 + ], + "score": 1.0, + "content": "denote the", + "type": "text" + }, + { + "bbox": [ + 362, + 277, + 367, + 288 + ], + "score": 0.82, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 368, + 275, + 505, + 289 + ], + "score": 1.0, + "content": "-th teacher model’s prediction and", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 288, + 505, + 302 + ], + "spans": [ + { + "bbox": [ + 106, + 290, + 117, + 300 + ], + "score": 0.8, + "content": "n _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 117, + 288, + 236, + 302 + ], + "score": 1.0, + "content": "denote the vote count for the", + "type": "text" + }, + { + "bbox": [ + 236, + 290, + 241, + 299 + ], + "score": 0.71, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 242, + 288, + 297, + 302 + ], + "score": 1.0, + "content": "-th class (i.e.,", + "type": "text" + }, + { + "bbox": [ + 297, + 288, + 369, + 302 + ], + "score": 0.93, + "content": "n _ { i } \\triangleq | f _ { j } ( x ) = i | )", + "type": "inline_equation" + }, + { + "bbox": [ + 370, + 288, + 505, + 302 + ], + "score": 1.0, + "content": ". The output of the mechanism is", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 107, + 300, + 506, + 316 + ], + "spans": [ + { + "bbox": [ + 107, + 301, + 264, + 314 + ], + "score": 0.75, + "content": "A ( x ) \\triangleq \\mathrm { a r g m a x } _ { i } \\left( n _ { i } ( x ) + \\mathrm { L a p } \\left( 1 / \\gamma \\right) \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 264, + 300, + 506, + 316 + ], + "score": 1.0, + "content": ". Through a rigorous analysis of this mechanism, the PATE", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 312, + 505, + 326 + ], + "spans": [ + { + "bbox": [ + 105, + 312, + 505, + 326 + ], + "score": 1.0, + "content": "framework provides a differentially private API: the privacy cost of each aggregated prediction made", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 324, + 245, + 336 + ], + "spans": [ + { + "bbox": [ + 106, + 324, + 245, + 336 + ], + "score": 1.0, + "content": "by the teacher ensemble is known.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 10, + "bbox_fs": [ + 105, + 275, + 506, + 336 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 340, + 505, + 429 + ], + "lines": [ + { + "bbox": [ + 105, + 340, + 505, + 353 + ], + "spans": [ + { + "bbox": [ + 105, + 340, + 505, + 353 + ], + "score": 1.0, + "content": "Student model: PATE’s final step involves the training of a student model by knowledge transfer", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 352, + 506, + 365 + ], + "spans": [ + { + "bbox": [ + 105, + 352, + 506, + 365 + ], + "score": 1.0, + "content": "from the teacher ensemble using access to public—but unlabeled—data. To limit the privacy cost", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 363, + 506, + 376 + ], + "spans": [ + { + "bbox": [ + 105, + 363, + 506, + 376 + ], + "score": 1.0, + "content": "of labeling them, queries are only made to the aggregation mechanism for a subset of public data to", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 375, + 506, + 387 + ], + "spans": [ + { + "bbox": [ + 105, + 375, + 506, + 387 + ], + "score": 1.0, + "content": "train the student in a semi-supervised way using a fixed number of queries. The authors note that", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 384, + 505, + 397 + ], + "spans": [ + { + "bbox": [ + 105, + 384, + 505, + 397 + ], + "score": 1.0, + "content": "every additional ensemble prediction increases the privacy cost spent and thus cannot work with", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 395, + 506, + 409 + ], + "spans": [ + { + "bbox": [ + 105, + 395, + 506, + 409 + ], + "score": 1.0, + "content": "unbounded queries. Fixed queries fixes privacy costs as well as diminishes the value of attacks", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 407, + 505, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 505, + 419 + ], + "score": 1.0, + "content": "analyzing model parameters to recover training data (Zhang et al., 2017). The student only sees", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 418, + 275, + 430 + ], + "spans": [ + { + "bbox": [ + 106, + 418, + 275, + 430 + ], + "score": 1.0, + "content": "public data and privacy-preserving labels.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 16.5, + "bbox_fs": [ + 105, + 340, + 506, + 430 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 444, + 235, + 456 + ], + "lines": [ + { + "bbox": [ + 106, + 444, + 236, + 456 + ], + "spans": [ + { + "bbox": [ + 106, + 444, + 236, + 456 + ], + "score": 1.0, + "content": "3.2 DIFFERENTIAL PRIVACY", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 106, + 465, + 505, + 499 + ], + "lines": [ + { + "bbox": [ + 105, + 464, + 505, + 479 + ], + "spans": [ + { + "bbox": [ + 105, + 464, + 505, + 479 + ], + "score": 1.0, + "content": "Differential privacy (Dwork et al., 2006) requires that the sensitivity of the distribution of an algo-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 477, + 505, + 489 + ], + "spans": [ + { + "bbox": [ + 106, + 477, + 505, + 489 + ], + "score": 1.0, + "content": "rithm’s output to small perturbations of its input be limited. The following variant of the definition", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 488, + 235, + 500 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 235, + 500 + ], + "score": 1.0, + "content": "captures this intuition formally:", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23, + "bbox_fs": [ + 105, + 464, + 505, + 500 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 503, + 505, + 527 + ], + "lines": [ + { + "bbox": [ + 105, + 502, + 505, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 502, + 269, + 516 + ], + "score": 1.0, + "content": "Definition 1. A randomized mechanism", + "type": "text" + }, + { + "bbox": [ + 269, + 504, + 282, + 514 + ], + "score": 0.8, + "content": "\\mathcal { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 502, + 335, + 516 + ], + "score": 1.0, + "content": "with domain", + "type": "text" + }, + { + "bbox": [ + 335, + 504, + 345, + 514 + ], + "score": 0.79, + "content": "\\mathcal { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 502, + 389, + 516 + ], + "score": 1.0, + "content": "and range", + "type": "text" + }, + { + "bbox": [ + 389, + 504, + 398, + 514 + ], + "score": 0.81, + "content": "\\mathcal { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 502, + 434, + 516 + ], + "score": 1.0, + "content": "satisfies", + "type": "text" + }, + { + "bbox": [ + 434, + 504, + 456, + 515 + ], + "score": 0.9, + "content": "( \\varepsilon , \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 457, + 502, + 505, + 516 + ], + "score": 1.0, + "content": "-differential", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 104, + 515, + 505, + 527 + ], + "spans": [ + { + "bbox": [ + 104, + 515, + 258, + 527 + ], + "score": 1.0, + "content": "privacy if for any two adjacent inputs", + "type": "text" + }, + { + "bbox": [ + 258, + 515, + 303, + 526 + ], + "score": 0.92, + "content": "D , D ^ { \\prime } \\in \\mathcal { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 303, + 515, + 421, + 527 + ], + "score": 1.0, + "content": "and for any subset of outputs", + "type": "text" + }, + { + "bbox": [ + 421, + 515, + 451, + 526 + ], + "score": 0.9, + "content": "S \\subseteq \\mathcal { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 515, + 505, + 527 + ], + "score": 1.0, + "content": "it holds that:", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5, + "bbox_fs": [ + 104, + 502, + 505, + 527 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 213, + 538, + 398, + 552 + ], + "lines": [ + { + "bbox": [ + 213, + 538, + 398, + 552 + ], + "spans": [ + { + "bbox": [ + 213, + 538, + 398, + 552 + ], + "score": 0.9, + "content": "\\mathbf { P r } [ \\mathcal { M } ( D ) \\in S ] \\leq e ^ { \\varepsilon } \\cdot \\mathbf { P r } [ \\mathcal { M } ( D ^ { \\prime } ) \\in S ] + \\delta .", + "type": "interline_equation", + "image_path": "12979c49c250a2723edad1ae58606c8f87d2f3d130dffd2cbb50985c8126f2ba.jpg" + } + ] + } + ], + "index": 27, + "virtual_lines": [ + { + "bbox": [ + 213, + 538, + 398, + 552 + ], + "spans": [], + "index": 27 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 562, + 505, + 629 + ], + "lines": [ + { + "bbox": [ + 105, + 562, + 506, + 575 + ], + "spans": [ + { + "bbox": [ + 105, + 562, + 289, + 575 + ], + "score": 1.0, + "content": "For our application of differential privacy to", + "type": "text" + }, + { + "bbox": [ + 290, + 563, + 306, + 573 + ], + "score": 0.29, + "content": "\\mathbf { M L }", + "type": "inline_equation" + }, + { + "bbox": [ + 307, + 562, + 506, + 575 + ], + "score": 1.0, + "content": ", adjacent inputs are defined as two datasets that", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 573, + 505, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 573, + 377, + 587 + ], + "score": 1.0, + "content": "only differ by one training example and the randomized mechanism", + "type": "text" + }, + { + "bbox": [ + 377, + 574, + 390, + 584 + ], + "score": 0.82, + "content": "\\mathcal { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 573, + 505, + 587 + ], + "score": 1.0, + "content": "would be the model training", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 585, + 505, + 597 + ], + "spans": [ + { + "bbox": [ + 106, + 585, + 412, + 597 + ], + "score": 1.0, + "content": "algorithm. The privacy parameters have the following natural interpretation:", + "type": "text" + }, + { + "bbox": [ + 412, + 587, + 418, + 595 + ], + "score": 0.77, + "content": "\\varepsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 419, + 585, + 505, + 597 + ], + "score": 1.0, + "content": "is an upper bound on", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 595, + 505, + 608 + ], + "spans": [ + { + "bbox": [ + 105, + 595, + 203, + 608 + ], + "score": 1.0, + "content": "the loss of privacy, and", + "type": "text" + }, + { + "bbox": [ + 203, + 596, + 209, + 605 + ], + "score": 0.77, + "content": "\\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 595, + 505, + 608 + ], + "score": 1.0, + "content": "is the probability with which this guarantee may not hold. Composition", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 606, + 506, + 620 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 506, + 620 + ], + "score": 1.0, + "content": "theorems (Dwork & Roth, 2014) allow us to keep track of the privacy cost when we run a sequence", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 618, + 171, + 629 + ], + "spans": [ + { + "bbox": [ + 106, + 618, + 171, + 629 + ], + "score": 1.0, + "content": "of mechanisms.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 30.5, + "bbox_fs": [ + 105, + 562, + 506, + 629 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 644, + 265, + 656 + ], + "lines": [ + { + "bbox": [ + 105, + 644, + 267, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 267, + 657 + ], + "score": 1.0, + "content": "3.3 RÉNYI DIFFERENTIAL PRIVACY", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 106, + 665, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 664, + 506, + 679 + ], + "spans": [ + { + "bbox": [ + 105, + 664, + 506, + 679 + ], + "score": 1.0, + "content": "Papernot et al. (2017) note that the natural approach to bounding PATE’s privacy loss—by bounding", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 677, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 506, + 690 + ], + "score": 1.0, + "content": "the privacy cost of each label queried and using strong composition (Dwork et al., 2010) to derive", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 686, + 505, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 686, + 505, + 702 + ], + "score": 1.0, + "content": "the total cost—yields loose privacy guarantees. Instead, their approach uses data-dependent privacy", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 698, + 505, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 713 + ], + "score": 1.0, + "content": "analysis. This takes advantage of the fact that when the consensus among the teachers is very strong,", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "the plurality outcome has overwhelming likelihood leading to a very small privacy cost whenever the", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 721, + 505, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 505, + 734 + ], + "score": 1.0, + "content": "consensus occurs. To capture this effect quantitatively, Papernot et al. (2017) rely on the moments", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 37.5, + "bbox_fs": [ + 105, + 664, + 506, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "accountant, introduced by Abadi et al. (2016) and building on previous work (Bun & Steinke, 2016;", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 220, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 220, + 106 + ], + "score": 1.0, + "content": "Dwork & Rothblum, 2016).", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 106, + 110, + 505, + 155 + ], + "lines": [ + { + "bbox": [ + 106, + 111, + 505, + 123 + ], + "spans": [ + { + "bbox": [ + 106, + 111, + 505, + 123 + ], + "score": 1.0, + "content": "In this section, we recall the language of Rényi Differential Privacy or RDP (Mironov, 2017). RDP", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 121, + 506, + 134 + ], + "spans": [ + { + "bbox": [ + 105, + 121, + 256, + 134 + ], + "score": 1.0, + "content": "generalizes pure differential privacy", + "type": "text" + }, + { + "bbox": [ + 256, + 122, + 283, + 132 + ], + "score": 0.87, + "content": "( \\delta = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 284, + 121, + 506, + 134 + ], + "score": 1.0, + "content": ") and is closely related to the moments accountant. We", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 133, + 505, + 144 + ], + "spans": [ + { + "bbox": [ + 106, + 133, + 505, + 144 + ], + "score": 1.0, + "content": "choose to use RDP as a more natural analysis framework when dealing with our mechanisms that use", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 142, + 505, + 157 + ], + "spans": [ + { + "bbox": [ + 105, + 142, + 505, + 157 + ], + "score": 1.0, + "content": "Gaussian noise. Defined below, the RDP of a mechanism is stated in terms of the Rényi divergence.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 3.5 + }, + { + "type": "text", + "bbox": [ + 105, + 175, + 504, + 198 + ], + "lines": [ + { + "bbox": [ + 105, + 174, + 504, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 174, + 377, + 189 + ], + "score": 1.0, + "content": "Definition 2 (Rényi Divergence). The Rényi divergence of order", + "type": "text" + }, + { + "bbox": [ + 377, + 177, + 384, + 186 + ], + "score": 0.64, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 174, + 495, + 189 + ], + "score": 1.0, + "content": "between two distributions", + "type": "text" + }, + { + "bbox": [ + 495, + 177, + 504, + 186 + ], + "score": 0.74, + "content": "P", + "type": "inline_equation" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 186, + 189, + 199 + ], + "spans": [ + { + "bbox": [ + 106, + 186, + 124, + 199 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 187, + 133, + 198 + ], + "score": 0.8, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 133, + 186, + 189, + 199 + ], + "score": 1.0, + "content": "is defined as:", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5 + }, + { + "type": "interline_equation", + "bbox": [ + 124, + 203, + 485, + 228 + ], + "lines": [ + { + "bbox": [ + 124, + 203, + 485, + 228 + ], + "spans": [ + { + "bbox": [ + 124, + 203, + 485, + 228 + ], + "score": 0.92, + "content": "D _ { \\lambda } ( P \\| Q ) \\triangleq \\frac { 1 } { \\lambda - 1 } \\log \\mathbb { E } _ { x \\sim Q } \\left[ \\left( P ( x ) / Q ( x ) \\right) ^ { \\lambda } \\right] = \\frac { 1 } { \\lambda - 1 } \\log \\mathbb { E } _ { x \\sim P } \\left[ \\left( P ( x ) / Q ( x ) \\right) ^ { \\lambda - 1 } \\right] .", + "type": "interline_equation", + "image_path": "2833cd11ea8904210efe029dea7861485a696b6e7ec3ca58de8c17d7a2a3ca0f.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 124, + 203, + 485, + 228 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 243, + 505, + 267 + ], + "lines": [ + { + "bbox": [ + 105, + 243, + 505, + 257 + ], + "spans": [ + { + "bbox": [ + 105, + 243, + 410, + 257 + ], + "score": 1.0, + "content": "Definition 3 (Rényi Differential Privacy (RDP)). A randomized mechanism", + "type": "text" + }, + { + "bbox": [ + 410, + 244, + 423, + 254 + ], + "score": 0.81, + "content": "\\mathcal { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 423, + 243, + 505, + 257 + ], + "score": 1.0, + "content": "is said to guarantee", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 107, + 254, + 371, + 268 + ], + "spans": [ + { + "bbox": [ + 107, + 255, + 130, + 267 + ], + "score": 0.87, + "content": "( \\lambda , \\varepsilon )", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 254, + 174, + 268 + ], + "score": 1.0, + "content": "-RDP with", + "type": "text" + }, + { + "bbox": [ + 174, + 255, + 200, + 266 + ], + "score": 0.9, + "content": "\\lambda \\geq 1", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 254, + 326, + 268 + ], + "score": 1.0, + "content": "if for any neighboring datasets", + "type": "text" + }, + { + "bbox": [ + 326, + 255, + 336, + 265 + ], + "score": 0.81, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 336, + 254, + 354, + 268 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 355, + 255, + 366, + 265 + ], + "score": 0.86, + "content": "D ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 367, + 254, + 371, + 268 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5 + }, + { + "type": "interline_equation", + "bbox": [ + 145, + 272, + 466, + 306 + ], + "lines": [ + { + "bbox": [ + 145, + 272, + 466, + 306 + ], + "spans": [ + { + "bbox": [ + 145, + 272, + 466, + 306 + ], + "score": 0.93, + "content": "D _ { \\lambda } ( { \\mathcal M } ( D ) \\| { \\mathcal M } ( D ^ { \\prime } ) ) = \\frac { 1 } { \\lambda - 1 } \\log \\mathbb { E } _ { x \\sim { \\mathcal M } ( D ) } \\left[ \\left( \\frac { { \\mathbf { P r } } \\left[ { \\mathcal M } ( D ) = x \\right] } { { \\mathbf { P r } } \\left[ { \\mathcal M } ( D ^ { \\prime } ) = x \\right] } \\right) ^ { \\lambda - 1 } \\right] \\le \\varepsilon .", + "type": "interline_equation", + "image_path": "59ce3452b2e6918b11844f0e00eac3acf9ac2839f7c608efca7c9fe35c61566e.jpg" + } + ] + } + ], + "index": 12, + "virtual_lines": [ + { + "bbox": [ + 145, + 272, + 466, + 283.3333333333333 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 145, + 283.3333333333333, + 466, + 294.66666666666663 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 145, + 294.66666666666663, + 466, + 305.99999999999994 + ], + "spans": [], + "index": 13 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 316, + 504, + 351 + ], + "lines": [ + { + "bbox": [ + 105, + 316, + 505, + 330 + ], + "spans": [ + { + "bbox": [ + 105, + 316, + 351, + 330 + ], + "score": 1.0, + "content": "RDP generalizes pure differential privacy in the sense that", + "type": "text" + }, + { + "bbox": [ + 351, + 319, + 357, + 327 + ], + "score": 0.77, + "content": "\\varepsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 357, + 316, + 505, + 330 + ], + "score": 1.0, + "content": "-differential privacy is equivalent to", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 107, + 327, + 505, + 341 + ], + "spans": [ + { + "bbox": [ + 107, + 328, + 134, + 340 + ], + "score": 0.9, + "content": "( \\infty , \\varepsilon )", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 327, + 505, + 341 + ], + "score": 1.0, + "content": "-RDP. Mironov (2017) proves the following key facts that allow easy composition of RDP", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 339, + 382, + 352 + ], + "spans": [ + { + "bbox": [ + 105, + 339, + 245, + 352 + ], + "score": 1.0, + "content": "guarantees and their conversion to", + "type": "text" + }, + { + "bbox": [ + 246, + 339, + 268, + 351 + ], + "score": 0.92, + "content": "( \\varepsilon , \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 339, + 382, + 352 + ], + "score": 1.0, + "content": "-differential privacy bounds.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 107, + 353, + 505, + 390 + ], + "lines": [ + { + "bbox": [ + 105, + 353, + 505, + 367 + ], + "spans": [ + { + "bbox": [ + 105, + 353, + 292, + 367 + ], + "score": 1.0, + "content": "Theorem 4 (Composition). If a mechanism", + "type": "text" + }, + { + "bbox": [ + 292, + 354, + 305, + 364 + ], + "score": 0.77, + "content": "\\mathcal { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 353, + 505, + 367 + ], + "score": 1.0, + "content": "consists of a sequence of adaptive mechanisms", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 107, + 363, + 505, + 378 + ], + "spans": [ + { + "bbox": [ + 107, + 365, + 163, + 376 + ], + "score": 0.9, + "content": "\\mathcal { M } _ { 1 } , \\ldots , \\mathcal { M } _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 363, + 248, + 378 + ], + "score": 1.0, + "content": "such that for any", + "type": "text" + }, + { + "bbox": [ + 248, + 365, + 286, + 377 + ], + "score": 0.85, + "content": "\\textit { i } \\in \\ [ k ]", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 363, + 293, + 378 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 294, + 365, + 310, + 376 + ], + "score": 0.81, + "content": "\\mathcal { M } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 363, + 364, + 378 + ], + "score": 1.0, + "content": "guarantees", + "type": "text" + }, + { + "bbox": [ + 364, + 365, + 414, + 377 + ], + "score": 0.66, + "content": "( \\lambda , \\varepsilon _ { i } ) – R D P ,", + "type": "inline_equation" + }, + { + "bbox": [ + 414, + 363, + 441, + 378 + ], + "score": 1.0, + "content": "then", + "type": "text" + }, + { + "bbox": [ + 441, + 365, + 455, + 375 + ], + "score": 0.74, + "content": "\\mathcal { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 455, + 363, + 505, + 378 + ], + "score": 1.0, + "content": "guarantees", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 107, + 371, + 187, + 395 + ], + "spans": [ + { + "bbox": [ + 107, + 376, + 182, + 391 + ], + "score": 0.86, + "content": "( \\lambda , \\sum _ { i = 1 } ^ { k } \\varepsilon _ { i } ) – R D P", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 371, + 187, + 395 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 106, + 400, + 503, + 426 + ], + "lines": [ + { + "bbox": [ + 105, + 399, + 505, + 414 + ], + "spans": [ + { + "bbox": [ + 105, + 399, + 309, + 414 + ], + "score": 1.0, + "content": "Theorem 5 (From RDP to DP). If a mechanism", + "type": "text" + }, + { + "bbox": [ + 310, + 401, + 323, + 411 + ], + "score": 0.77, + "content": "\\mathcal { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 323, + 399, + 372, + 414 + ], + "score": 1.0, + "content": "guarantees", + "type": "text" + }, + { + "bbox": [ + 373, + 401, + 396, + 413 + ], + "score": 0.91, + "content": "( \\lambda , \\varepsilon )", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 399, + 443, + 414 + ], + "score": 1.0, + "content": "-RDP, then", + "type": "text" + }, + { + "bbox": [ + 443, + 401, + 456, + 411 + ], + "score": 0.64, + "content": "\\mathcal { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 457, + 399, + 505, + 414 + ], + "score": 1.0, + "content": "guarantees", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 107, + 410, + 324, + 429 + ], + "spans": [ + { + "bbox": [ + 107, + 412, + 167, + 428 + ], + "score": 0.93, + "content": "\\begin{array} { r } { ( \\varepsilon + \\frac { \\log { 1 / \\delta } } { \\lambda - 1 } , \\delta ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 410, + 279, + 429 + ], + "score": 1.0, + "content": "-differential privacy for any", + "type": "text" + }, + { + "bbox": [ + 279, + 414, + 319, + 426 + ], + "score": 0.93, + "content": "\\delta \\in ( 0 , 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 319, + 410, + 324, + 429 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5 + }, + { + "type": "text", + "bbox": [ + 107, + 436, + 505, + 504 + ], + "lines": [ + { + "bbox": [ + 106, + 437, + 505, + 450 + ], + "spans": [ + { + "bbox": [ + 106, + 437, + 153, + 450 + ], + "score": 1.0, + "content": "While both", + "type": "text" + }, + { + "bbox": [ + 154, + 437, + 176, + 449 + ], + "score": 0.92, + "content": "( \\varepsilon , \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 176, + 437, + 385, + 450 + ], + "score": 1.0, + "content": "-differential privacy and RDP are relaxations of pure", + "type": "text" + }, + { + "bbox": [ + 385, + 439, + 391, + 447 + ], + "score": 0.79, + "content": "\\varepsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 437, + 505, + 450 + ], + "score": 1.0, + "content": "-differential privacy, the two", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 446, + 505, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 505, + 462 + ], + "score": 1.0, + "content": "main advantages of RDP are as follows. First, it composes nicely; second, it captures the privacy", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 459, + 505, + 472 + ], + "spans": [ + { + "bbox": [ + 105, + 459, + 379, + 472 + ], + "score": 1.0, + "content": "guarantee of Gaussian noise in a much cleaner manner compared to", + "type": "text" + }, + { + "bbox": [ + 380, + 459, + 402, + 471 + ], + "score": 0.92, + "content": "( \\varepsilon , \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 402, + 459, + 505, + 472 + ], + "score": 1.0, + "content": "-differential privacy. This", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 470, + 505, + 482 + ], + "spans": [ + { + "bbox": [ + 105, + 470, + 505, + 482 + ], + "score": 1.0, + "content": "lets us do a careful privacy analysis of the GNMax mechanism as stated in Theorem 6. While the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 482, + 505, + 493 + ], + "spans": [ + { + "bbox": [ + 106, + 482, + 505, + 493 + ], + "score": 1.0, + "content": "analysis of Papernot et al. (2017) leverages the first aspect of such frameworks with the Laplace", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 492, + 439, + 504 + ], + "spans": [ + { + "bbox": [ + 105, + 492, + 439, + 504 + ], + "score": 1.0, + "content": "noise (LNMax mechanism), our analysis of the GNMax mechanism relies on both.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 24.5 + }, + { + "type": "title", + "bbox": [ + 108, + 517, + 284, + 528 + ], + "lines": [ + { + "bbox": [ + 106, + 516, + 286, + 530 + ], + "spans": [ + { + "bbox": [ + 106, + 516, + 286, + 530 + ], + "score": 1.0, + "content": "3.4 PATE AGGREGATION MECHANISMS", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 107, + 538, + 504, + 572 + ], + "lines": [ + { + "bbox": [ + 106, + 538, + 505, + 550 + ], + "spans": [ + { + "bbox": [ + 106, + 538, + 505, + 550 + ], + "score": 1.0, + "content": "The aggregation step is a crucial component of PATE. It enables knowledge transfer from the teach-", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 549, + 505, + 561 + ], + "spans": [ + { + "bbox": [ + 105, + 549, + 505, + 561 + ], + "score": 1.0, + "content": "ers to the student while enforcing privacy. We improve the LNMax mechanism used by Papernot", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 559, + 505, + 573 + ], + "spans": [ + { + "bbox": [ + 105, + 559, + 505, + 573 + ], + "score": 1.0, + "content": "et al. (2017) which adds Laplace noise to teacher votes and outputs the class with the highest votes.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 105, + 577, + 504, + 599 + ], + "lines": [ + { + "bbox": [ + 106, + 577, + 505, + 590 + ], + "spans": [ + { + "bbox": [ + 106, + 577, + 505, + 590 + ], + "score": 1.0, + "content": "First, we add Gaussian noise with an accompanying privacy analysis in the RDP framework. This", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 587, + 505, + 602 + ], + "spans": [ + { + "bbox": [ + 105, + 587, + 505, + 602 + ], + "score": 1.0, + "content": "modification effectively reduces the noise needed to achieve the same privacy cost per student query.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5 + }, + { + "type": "text", + "bbox": [ + 107, + 604, + 505, + 660 + ], + "lines": [ + { + "bbox": [ + 105, + 604, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 505, + 617 + ], + "score": 1.0, + "content": "Second, the aggregation mechanism is now selective: teacher votes are analyzed to decide which", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 615, + 505, + 629 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 505, + 629 + ], + "score": 1.0, + "content": "student queries are worth answering. This takes into account both the privacy cost of each query and", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 626, + 505, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 505, + 640 + ], + "score": 1.0, + "content": "its payout in improving the student’s utility. Surprisingly, our analysis shows that these two metrics", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 637, + 505, + 652 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 505, + 652 + ], + "score": 1.0, + "content": "are not at odds and in fact align with each other: the privacy cost is the smallest when teachers agree,", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 649, + 505, + 661 + ], + "spans": [ + { + "bbox": [ + 106, + 649, + 505, + 661 + ], + "score": 1.0, + "content": "and when teachers agree, the label is more likely to be correct thus being more useful to the student.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 106, + 666, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 665, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 106, + 665, + 505, + 678 + ], + "score": 1.0, + "content": "Third, we propose and study an interactive mechanism that takes into account not only teacher votes", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 676, + 506, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 506, + 691 + ], + "score": 1.0, + "content": "on a queried example but possible student predictions on that query. Now, queries worth answering", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "are those where the teachers agree on a class but the student is not confident in its prediction on that", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "class. This third modification aligns the two metrics discussed above even further: queries where the", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 709, + 504, + 721 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 504, + 721 + ], + "score": 1.0, + "content": "student already agrees with the consensus of teachers are not worth expending our privacy budget", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 720, + 499, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 499, + 733 + ], + "score": 1.0, + "content": "on, but queries where the student is less confident are useful and answered at a small privacy cost.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 41.5 + } + ], + "page_idx": 4, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 763 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 763 + ], + "score": 1.0, + "content": "5", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "list", + "bbox": [ + 106, + 82, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "accountant, introduced by Abadi et al. (2016) and building on previous work (Bun & Steinke, 2016;", + "type": "text" + } + ], + "index": 0, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 93, + 220, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 220, + 106 + ], + "score": 1.0, + "content": "Dwork & Rothblum, 2016).", + "type": "text" + } + ], + "index": 1, + "is_list_start_line": true, + "is_list_end_line": true + } + ], + "index": 0.5, + "bbox_fs": [ + 105, + 82, + 505, + 106 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 110, + 505, + 155 + ], + "lines": [ + { + "bbox": [ + 106, + 111, + 505, + 123 + ], + "spans": [ + { + "bbox": [ + 106, + 111, + 505, + 123 + ], + "score": 1.0, + "content": "In this section, we recall the language of Rényi Differential Privacy or RDP (Mironov, 2017). RDP", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 121, + 506, + 134 + ], + "spans": [ + { + "bbox": [ + 105, + 121, + 256, + 134 + ], + "score": 1.0, + "content": "generalizes pure differential privacy", + "type": "text" + }, + { + "bbox": [ + 256, + 122, + 283, + 132 + ], + "score": 0.87, + "content": "( \\delta = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 284, + 121, + 506, + 134 + ], + "score": 1.0, + "content": ") and is closely related to the moments accountant. We", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 133, + 505, + 144 + ], + "spans": [ + { + "bbox": [ + 106, + 133, + 505, + 144 + ], + "score": 1.0, + "content": "choose to use RDP as a more natural analysis framework when dealing with our mechanisms that use", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 142, + 505, + 157 + ], + "spans": [ + { + "bbox": [ + 105, + 142, + 505, + 157 + ], + "score": 1.0, + "content": "Gaussian noise. Defined below, the RDP of a mechanism is stated in terms of the Rényi divergence.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 3.5, + "bbox_fs": [ + 105, + 111, + 506, + 157 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 175, + 504, + 198 + ], + "lines": [ + { + "bbox": [ + 105, + 174, + 504, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 174, + 377, + 189 + ], + "score": 1.0, + "content": "Definition 2 (Rényi Divergence). The Rényi divergence of order", + "type": "text" + }, + { + "bbox": [ + 377, + 177, + 384, + 186 + ], + "score": 0.64, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 174, + 495, + 189 + ], + "score": 1.0, + "content": "between two distributions", + "type": "text" + }, + { + "bbox": [ + 495, + 177, + 504, + 186 + ], + "score": 0.74, + "content": "P", + "type": "inline_equation" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 186, + 189, + 199 + ], + "spans": [ + { + "bbox": [ + 106, + 186, + 124, + 199 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 187, + 133, + 198 + ], + "score": 0.8, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 133, + 186, + 189, + 199 + ], + "score": 1.0, + "content": "is defined as:", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5, + "bbox_fs": [ + 105, + 174, + 504, + 199 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 124, + 203, + 485, + 228 + ], + "lines": [ + { + "bbox": [ + 124, + 203, + 485, + 228 + ], + "spans": [ + { + "bbox": [ + 124, + 203, + 485, + 228 + ], + "score": 0.92, + "content": "D _ { \\lambda } ( P \\| Q ) \\triangleq \\frac { 1 } { \\lambda - 1 } \\log \\mathbb { E } _ { x \\sim Q } \\left[ \\left( P ( x ) / Q ( x ) \\right) ^ { \\lambda } \\right] = \\frac { 1 } { \\lambda - 1 } \\log \\mathbb { E } _ { x \\sim P } \\left[ \\left( P ( x ) / Q ( x ) \\right) ^ { \\lambda - 1 } \\right] .", + "type": "interline_equation", + "image_path": "2833cd11ea8904210efe029dea7861485a696b6e7ec3ca58de8c17d7a2a3ca0f.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 124, + 203, + 485, + 228 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 243, + 505, + 267 + ], + "lines": [ + { + "bbox": [ + 105, + 243, + 505, + 257 + ], + "spans": [ + { + "bbox": [ + 105, + 243, + 410, + 257 + ], + "score": 1.0, + "content": "Definition 3 (Rényi Differential Privacy (RDP)). A randomized mechanism", + "type": "text" + }, + { + "bbox": [ + 410, + 244, + 423, + 254 + ], + "score": 0.81, + "content": "\\mathcal { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 423, + 243, + 505, + 257 + ], + "score": 1.0, + "content": "is said to guarantee", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 107, + 254, + 371, + 268 + ], + "spans": [ + { + "bbox": [ + 107, + 255, + 130, + 267 + ], + "score": 0.87, + "content": "( \\lambda , \\varepsilon )", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 254, + 174, + 268 + ], + "score": 1.0, + "content": "-RDP with", + "type": "text" + }, + { + "bbox": [ + 174, + 255, + 200, + 266 + ], + "score": 0.9, + "content": "\\lambda \\geq 1", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 254, + 326, + 268 + ], + "score": 1.0, + "content": "if for any neighboring datasets", + "type": "text" + }, + { + "bbox": [ + 326, + 255, + 336, + 265 + ], + "score": 0.81, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 336, + 254, + 354, + 268 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 355, + 255, + 366, + 265 + ], + "score": 0.86, + "content": "D ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 367, + 254, + 371, + 268 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5, + "bbox_fs": [ + 105, + 243, + 505, + 268 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 145, + 272, + 466, + 306 + ], + "lines": [ + { + "bbox": [ + 145, + 272, + 466, + 306 + ], + "spans": [ + { + "bbox": [ + 145, + 272, + 466, + 306 + ], + "score": 0.93, + "content": "D _ { \\lambda } ( { \\mathcal M } ( D ) \\| { \\mathcal M } ( D ^ { \\prime } ) ) = \\frac { 1 } { \\lambda - 1 } \\log \\mathbb { E } _ { x \\sim { \\mathcal M } ( D ) } \\left[ \\left( \\frac { { \\mathbf { P r } } \\left[ { \\mathcal M } ( D ) = x \\right] } { { \\mathbf { P r } } \\left[ { \\mathcal M } ( D ^ { \\prime } ) = x \\right] } \\right) ^ { \\lambda - 1 } \\right] \\le \\varepsilon .", + "type": "interline_equation", + "image_path": "59ce3452b2e6918b11844f0e00eac3acf9ac2839f7c608efca7c9fe35c61566e.jpg" + } + ] + } + ], + "index": 12, + "virtual_lines": [ + { + "bbox": [ + 145, + 272, + 466, + 283.3333333333333 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 145, + 283.3333333333333, + 466, + 294.66666666666663 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 145, + 294.66666666666663, + 466, + 305.99999999999994 + ], + "spans": [], + "index": 13 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 316, + 504, + 351 + ], + "lines": [ + { + "bbox": [ + 105, + 316, + 505, + 330 + ], + "spans": [ + { + "bbox": [ + 105, + 316, + 351, + 330 + ], + "score": 1.0, + "content": "RDP generalizes pure differential privacy in the sense that", + "type": "text" + }, + { + "bbox": [ + 351, + 319, + 357, + 327 + ], + "score": 0.77, + "content": "\\varepsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 357, + 316, + 505, + 330 + ], + "score": 1.0, + "content": "-differential privacy is equivalent to", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 107, + 327, + 505, + 341 + ], + "spans": [ + { + "bbox": [ + 107, + 328, + 134, + 340 + ], + "score": 0.9, + "content": "( \\infty , \\varepsilon )", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 327, + 505, + 341 + ], + "score": 1.0, + "content": "-RDP. Mironov (2017) proves the following key facts that allow easy composition of RDP", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 339, + 382, + 352 + ], + "spans": [ + { + "bbox": [ + 105, + 339, + 245, + 352 + ], + "score": 1.0, + "content": "guarantees and their conversion to", + "type": "text" + }, + { + "bbox": [ + 246, + 339, + 268, + 351 + ], + "score": 0.92, + "content": "( \\varepsilon , \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 339, + 382, + 352 + ], + "score": 1.0, + "content": "-differential privacy bounds.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15, + "bbox_fs": [ + 105, + 316, + 505, + 352 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 353, + 505, + 390 + ], + "lines": [ + { + "bbox": [ + 105, + 353, + 505, + 367 + ], + "spans": [ + { + "bbox": [ + 105, + 353, + 292, + 367 + ], + "score": 1.0, + "content": "Theorem 4 (Composition). If a mechanism", + "type": "text" + }, + { + "bbox": [ + 292, + 354, + 305, + 364 + ], + "score": 0.77, + "content": "\\mathcal { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 353, + 505, + 367 + ], + "score": 1.0, + "content": "consists of a sequence of adaptive mechanisms", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 107, + 363, + 505, + 378 + ], + "spans": [ + { + "bbox": [ + 107, + 365, + 163, + 376 + ], + "score": 0.9, + "content": "\\mathcal { M } _ { 1 } , \\ldots , \\mathcal { M } _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 363, + 248, + 378 + ], + "score": 1.0, + "content": "such that for any", + "type": "text" + }, + { + "bbox": [ + 248, + 365, + 286, + 377 + ], + "score": 0.85, + "content": "\\textit { i } \\in \\ [ k ]", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 363, + 293, + 378 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 294, + 365, + 310, + 376 + ], + "score": 0.81, + "content": "\\mathcal { M } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 363, + 364, + 378 + ], + "score": 1.0, + "content": "guarantees", + "type": "text" + }, + { + "bbox": [ + 364, + 365, + 414, + 377 + ], + "score": 0.66, + "content": "( \\lambda , \\varepsilon _ { i } ) – R D P ,", + "type": "inline_equation" + }, + { + "bbox": [ + 414, + 363, + 441, + 378 + ], + "score": 1.0, + "content": "then", + "type": "text" + }, + { + "bbox": [ + 441, + 365, + 455, + 375 + ], + "score": 0.74, + "content": "\\mathcal { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 455, + 363, + 505, + 378 + ], + "score": 1.0, + "content": "guarantees", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 107, + 371, + 187, + 395 + ], + "spans": [ + { + "bbox": [ + 107, + 376, + 182, + 391 + ], + "score": 0.86, + "content": "( \\lambda , \\sum _ { i = 1 } ^ { k } \\varepsilon _ { i } ) – R D P", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 371, + 187, + 395 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18, + "bbox_fs": [ + 105, + 353, + 505, + 395 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 400, + 503, + 426 + ], + "lines": [ + { + "bbox": [ + 105, + 399, + 505, + 414 + ], + "spans": [ + { + "bbox": [ + 105, + 399, + 309, + 414 + ], + "score": 1.0, + "content": "Theorem 5 (From RDP to DP). If a mechanism", + "type": "text" + }, + { + "bbox": [ + 310, + 401, + 323, + 411 + ], + "score": 0.77, + "content": "\\mathcal { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 323, + 399, + 372, + 414 + ], + "score": 1.0, + "content": "guarantees", + "type": "text" + }, + { + "bbox": [ + 373, + 401, + 396, + 413 + ], + "score": 0.91, + "content": "( \\lambda , \\varepsilon )", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 399, + 443, + 414 + ], + "score": 1.0, + "content": "-RDP, then", + "type": "text" + }, + { + "bbox": [ + 443, + 401, + 456, + 411 + ], + "score": 0.64, + "content": "\\mathcal { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 457, + 399, + 505, + 414 + ], + "score": 1.0, + "content": "guarantees", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 107, + 410, + 324, + 429 + ], + "spans": [ + { + "bbox": [ + 107, + 412, + 167, + 428 + ], + "score": 0.93, + "content": "\\begin{array} { r } { ( \\varepsilon + \\frac { \\log { 1 / \\delta } } { \\lambda - 1 } , \\delta ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 410, + 279, + 429 + ], + "score": 1.0, + "content": "-differential privacy for any", + "type": "text" + }, + { + "bbox": [ + 279, + 414, + 319, + 426 + ], + "score": 0.93, + "content": "\\delta \\in ( 0 , 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 319, + 410, + 324, + 429 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5, + "bbox_fs": [ + 105, + 399, + 505, + 429 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 436, + 505, + 504 + ], + "lines": [ + { + "bbox": [ + 106, + 437, + 505, + 450 + ], + "spans": [ + { + "bbox": [ + 106, + 437, + 153, + 450 + ], + "score": 1.0, + "content": "While both", + "type": "text" + }, + { + "bbox": [ + 154, + 437, + 176, + 449 + ], + "score": 0.92, + "content": "( \\varepsilon , \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 176, + 437, + 385, + 450 + ], + "score": 1.0, + "content": "-differential privacy and RDP are relaxations of pure", + "type": "text" + }, + { + "bbox": [ + 385, + 439, + 391, + 447 + ], + "score": 0.79, + "content": "\\varepsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 437, + 505, + 450 + ], + "score": 1.0, + "content": "-differential privacy, the two", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 446, + 505, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 505, + 462 + ], + "score": 1.0, + "content": "main advantages of RDP are as follows. First, it composes nicely; second, it captures the privacy", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 459, + 505, + 472 + ], + "spans": [ + { + "bbox": [ + 105, + 459, + 379, + 472 + ], + "score": 1.0, + "content": "guarantee of Gaussian noise in a much cleaner manner compared to", + "type": "text" + }, + { + "bbox": [ + 380, + 459, + 402, + 471 + ], + "score": 0.92, + "content": "( \\varepsilon , \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 402, + 459, + 505, + 472 + ], + "score": 1.0, + "content": "-differential privacy. This", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 470, + 505, + 482 + ], + "spans": [ + { + "bbox": [ + 105, + 470, + 505, + 482 + ], + "score": 1.0, + "content": "lets us do a careful privacy analysis of the GNMax mechanism as stated in Theorem 6. While the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 482, + 505, + 493 + ], + "spans": [ + { + "bbox": [ + 106, + 482, + 505, + 493 + ], + "score": 1.0, + "content": "analysis of Papernot et al. (2017) leverages the first aspect of such frameworks with the Laplace", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 492, + 439, + 504 + ], + "spans": [ + { + "bbox": [ + 105, + 492, + 439, + 504 + ], + "score": 1.0, + "content": "noise (LNMax mechanism), our analysis of the GNMax mechanism relies on both.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 24.5, + "bbox_fs": [ + 105, + 437, + 505, + 504 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 517, + 284, + 528 + ], + "lines": [ + { + "bbox": [ + 106, + 516, + 286, + 530 + ], + "spans": [ + { + "bbox": [ + 106, + 516, + 286, + 530 + ], + "score": 1.0, + "content": "3.4 PATE AGGREGATION MECHANISMS", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 107, + 538, + 504, + 572 + ], + "lines": [ + { + "bbox": [ + 106, + 538, + 505, + 550 + ], + "spans": [ + { + "bbox": [ + 106, + 538, + 505, + 550 + ], + "score": 1.0, + "content": "The aggregation step is a crucial component of PATE. It enables knowledge transfer from the teach-", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 549, + 505, + 561 + ], + "spans": [ + { + "bbox": [ + 105, + 549, + 505, + 561 + ], + "score": 1.0, + "content": "ers to the student while enforcing privacy. We improve the LNMax mechanism used by Papernot", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 559, + 505, + 573 + ], + "spans": [ + { + "bbox": [ + 105, + 559, + 505, + 573 + ], + "score": 1.0, + "content": "et al. (2017) which adds Laplace noise to teacher votes and outputs the class with the highest votes.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30, + "bbox_fs": [ + 105, + 538, + 505, + 573 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 577, + 504, + 599 + ], + "lines": [ + { + "bbox": [ + 106, + 577, + 505, + 590 + ], + "spans": [ + { + "bbox": [ + 106, + 577, + 505, + 590 + ], + "score": 1.0, + "content": "First, we add Gaussian noise with an accompanying privacy analysis in the RDP framework. This", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 587, + 505, + 602 + ], + "spans": [ + { + "bbox": [ + 105, + 587, + 505, + 602 + ], + "score": 1.0, + "content": "modification effectively reduces the noise needed to achieve the same privacy cost per student query.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5, + "bbox_fs": [ + 105, + 577, + 505, + 602 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 604, + 505, + 660 + ], + "lines": [ + { + "bbox": [ + 105, + 604, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 505, + 617 + ], + "score": 1.0, + "content": "Second, the aggregation mechanism is now selective: teacher votes are analyzed to decide which", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 615, + 505, + 629 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 505, + 629 + ], + "score": 1.0, + "content": "student queries are worth answering. This takes into account both the privacy cost of each query and", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 626, + 505, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 505, + 640 + ], + "score": 1.0, + "content": "its payout in improving the student’s utility. Surprisingly, our analysis shows that these two metrics", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 637, + 505, + 652 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 505, + 652 + ], + "score": 1.0, + "content": "are not at odds and in fact align with each other: the privacy cost is the smallest when teachers agree,", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 649, + 505, + 661 + ], + "spans": [ + { + "bbox": [ + 106, + 649, + 505, + 661 + ], + "score": 1.0, + "content": "and when teachers agree, the label is more likely to be correct thus being more useful to the student.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 36, + "bbox_fs": [ + 105, + 604, + 505, + 661 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 666, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 665, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 106, + 665, + 505, + 678 + ], + "score": 1.0, + "content": "Third, we propose and study an interactive mechanism that takes into account not only teacher votes", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 676, + 506, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 506, + 691 + ], + "score": 1.0, + "content": "on a queried example but possible student predictions on that query. Now, queries worth answering", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "are those where the teachers agree on a class but the student is not confident in its prediction on that", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "class. This third modification aligns the two metrics discussed above even further: queries where the", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 709, + 504, + 721 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 504, + 721 + ], + "score": 1.0, + "content": "student already agrees with the consensus of teachers are not worth expending our privacy budget", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 720, + 499, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 499, + 733 + ], + "score": 1.0, + "content": "on, but queries where the student is less confident are useful and answered at a small privacy cost.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 41.5, + "bbox_fs": [ + 105, + 665, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 82, + 290, + 93 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 291, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 291, + 95 + ], + "score": 1.0, + "content": "3.5 DATA-DEPENDENT PRIVACY IN PATE", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 103, + 504, + 147 + ], + "lines": [ + { + "bbox": [ + 105, + 102, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 102, + 506, + 117 + ], + "score": 1.0, + "content": "A direct privacy analysis of the aggregation mechanism, for reasonable values of the noise param-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 114, + 505, + 126 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 505, + 126 + ], + "score": 1.0, + "content": "eter, allows answering only few queries before the privacy cost becomes prohibitive. The original", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 125, + 505, + 137 + ], + "spans": [ + { + "bbox": [ + 105, + 125, + 505, + 137 + ], + "score": 1.0, + "content": "PATE proposal used a data-dependent analysis, exploiting the fact that when the teachers have large", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 136, + 505, + 149 + ], + "spans": [ + { + "bbox": [ + 105, + 136, + 505, + 149 + ], + "score": 1.0, + "content": "agreement, the privacy cost is usually much smaller than the data-independent bound would suggest.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 107, + 153, + 505, + 208 + ], + "lines": [ + { + "bbox": [ + 105, + 152, + 505, + 165 + ], + "spans": [ + { + "bbox": [ + 105, + 152, + 505, + 165 + ], + "score": 1.0, + "content": "In our work, we perform a data-dependent privacy analysis of the aggregation mechanism with", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 162, + 505, + 178 + ], + "spans": [ + { + "bbox": [ + 105, + 162, + 505, + 178 + ], + "score": 1.0, + "content": "Gaussian noise. This change of noise distribution turns out be technically much more challenging", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 173, + 505, + 188 + ], + "spans": [ + { + "bbox": [ + 105, + 173, + 505, + 188 + ], + "score": 1.0, + "content": "than the Laplace noise case and we defer the details to Appendix A. This increased complexity", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 185, + 506, + 199 + ], + "spans": [ + { + "bbox": [ + 105, + 185, + 506, + 199 + ], + "score": 1.0, + "content": "of the analysis however does not make the algorithm any more complicated and thus allows us to", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 197, + 250, + 209 + ], + "spans": [ + { + "bbox": [ + 105, + 197, + 250, + 209 + ], + "score": 1.0, + "content": "improve the privacy-utility tradeoff.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 107, + 219, + 504, + 275 + ], + "lines": [ + { + "bbox": [ + 106, + 219, + 506, + 233 + ], + "spans": [ + { + "bbox": [ + 106, + 219, + 506, + 233 + ], + "score": 1.0, + "content": "Sanitizing the privacy cost via smooth sensitivity analysis. An additional challenge with data-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 231, + 505, + 243 + ], + "spans": [ + { + "bbox": [ + 106, + 231, + 505, + 243 + ], + "score": 1.0, + "content": "dependent privacy analyses arises from the fact that the privacy cost itself is now a function of the", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 241, + 506, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 241, + 506, + 255 + ], + "score": 1.0, + "content": "private data. Further, the data-dependent bound on the privacy cost has large global sensitivity (a", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 253, + 505, + 265 + ], + "spans": [ + { + "bbox": [ + 106, + 253, + 505, + 265 + ], + "score": 1.0, + "content": "metric used in differential privacy to calibrate the noise injected) and is therefore difficult to sanitize.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 263, + 472, + 277 + ], + "spans": [ + { + "bbox": [ + 106, + 263, + 472, + 277 + ], + "score": 1.0, + "content": "To remedy this, we use the smooth sensitivity framework proposed by Nissim et al. (2007).", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 107, + 280, + 505, + 347 + ], + "lines": [ + { + "bbox": [ + 106, + 280, + 506, + 293 + ], + "spans": [ + { + "bbox": [ + 106, + 280, + 506, + 293 + ], + "score": 1.0, + "content": "Appendix B describes how we add noise to the computed privacy cost using this framework to", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 291, + 505, + 304 + ], + "spans": [ + { + "bbox": [ + 105, + 291, + 505, + 304 + ], + "score": 1.0, + "content": "publish a sanitized version of the privacy cost. Section B.1 defines smooth sensitivity and outlines", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 302, + 505, + 315 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 505, + 315 + ], + "score": 1.0, + "content": "algorithms 3–5 that compute it. The rest of Appendix B argues the correctness of these algorithms.", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 312, + 505, + 326 + ], + "spans": [ + { + "bbox": [ + 105, + 312, + 505, + 326 + ], + "score": 1.0, + "content": "The final analysis shows that the incremental cost of sanitizing our privacy estimates is modest—", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 323, + 505, + 336 + ], + "spans": [ + { + "bbox": [ + 105, + 323, + 143, + 336 + ], + "score": 1.0, + "content": "less than", + "type": "text" + }, + { + "bbox": [ + 143, + 324, + 163, + 335 + ], + "score": 0.87, + "content": "50 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 323, + 505, + 336 + ], + "score": 1.0, + "content": "of the raw estimates—thus enabling us to use precise data-dependent privacy analysis", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 334, + 308, + 348 + ], + "spans": [ + { + "bbox": [ + 105, + 334, + 308, + 348 + ], + "score": 1.0, + "content": "while taking into account its privacy implications.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 17.5 + }, + { + "type": "title", + "bbox": [ + 108, + 362, + 391, + 375 + ], + "lines": [ + { + "bbox": [ + 105, + 361, + 392, + 376 + ], + "spans": [ + { + "bbox": [ + 105, + 361, + 392, + 376 + ], + "score": 1.0, + "content": "4 IMPROVED AGGREGATION MECHANISMS FOR PATE", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 107, + 385, + 505, + 463 + ], + "lines": [ + { + "bbox": [ + 105, + 385, + 505, + 399 + ], + "spans": [ + { + "bbox": [ + 105, + 385, + 505, + 399 + ], + "score": 1.0, + "content": "The privacy guarantees provided by PATE stem from the design and analysis of the aggregation", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 397, + 505, + 410 + ], + "spans": [ + { + "bbox": [ + 106, + 397, + 505, + 410 + ], + "score": 1.0, + "content": "step. Here, we detail our improvements to the mechanism used by Papernot et al. (2017). As", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 408, + 505, + 420 + ], + "spans": [ + { + "bbox": [ + 106, + 408, + 505, + 420 + ], + "score": 1.0, + "content": "outlined in Section 3.4, we first replace the Laplace noise added to teacher votes with Gaussian", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 419, + 505, + 432 + ], + "spans": [ + { + "bbox": [ + 105, + 419, + 505, + 432 + ], + "score": 1.0, + "content": "noise, adapting the data-dependent privacy analysis. Next, we describe the Confident and Interactive", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 430, + 506, + 443 + ], + "spans": [ + { + "bbox": [ + 106, + 430, + 506, + 443 + ], + "score": 1.0, + "content": "Aggregators that select queries worth answering in a privacy-preserving way: the privacy budget is", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 440, + 505, + 454 + ], + "spans": [ + { + "bbox": [ + 105, + 440, + 505, + 454 + ], + "score": 1.0, + "content": "shared between the query selection and answer computation. The aggregators use different heuristics", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 453, + 493, + 464 + ], + "spans": [ + { + "bbox": [ + 106, + 453, + 493, + 464 + ], + "score": 1.0, + "content": "to select queries: the former does not take into account student predictions, while the latter does.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 25 + }, + { + "type": "title", + "bbox": [ + 107, + 475, + 388, + 487 + ], + "lines": [ + { + "bbox": [ + 105, + 475, + 389, + 489 + ], + "spans": [ + { + "bbox": [ + 105, + 475, + 389, + 489 + ], + "score": 1.0, + "content": "4.1 THE GNMAX AGGREGATOR AND ITS PRIVACY GUARANTEE", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 106, + 496, + 505, + 530 + ], + "lines": [ + { + "bbox": [ + 105, + 495, + 506, + 510 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 325, + 510 + ], + "score": 1.0, + "content": "This section uses the following notation. For a sample", + "type": "text" + }, + { + "bbox": [ + 325, + 499, + 332, + 506 + ], + "score": 0.78, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 495, + 398, + 510 + ], + "score": 1.0, + "content": "and classes 1 to", + "type": "text" + }, + { + "bbox": [ + 398, + 498, + 408, + 507 + ], + "score": 0.75, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 408, + 495, + 424, + 510 + ], + "score": 1.0, + "content": ", let", + "type": "text" + }, + { + "bbox": [ + 424, + 496, + 475, + 509 + ], + "score": 0.92, + "content": "f _ { j } ( x ) \\in [ m ]", + "type": "inline_equation" + }, + { + "bbox": [ + 475, + 495, + 506, + 510 + ], + "score": 1.0, + "content": "denote", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 507, + 505, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 507, + 122, + 520 + ], + "score": 1.0, + "content": "the", + "type": "text" + }, + { + "bbox": [ + 122, + 508, + 128, + 519 + ], + "score": 0.8, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 128, + 507, + 266, + 520 + ], + "score": 1.0, + "content": "-th teacher model’s prediction on", + "type": "text" + }, + { + "bbox": [ + 267, + 510, + 274, + 518 + ], + "score": 0.77, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 274, + 507, + 294, + 520 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 294, + 507, + 318, + 519 + ], + "score": 0.92, + "content": "n _ { i } ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 507, + 443, + 520 + ], + "score": 1.0, + "content": "denote the vote count for the", + "type": "text" + }, + { + "bbox": [ + 443, + 509, + 448, + 518 + ], + "score": 0.77, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 448, + 507, + 505, + 520 + ], + "score": 1.0, + "content": "-th class (i.e.,", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 518, + 502, + 531 + ], + "spans": [ + { + "bbox": [ + 106, + 518, + 209, + 531 + ], + "score": 0.9, + "content": "n _ { i } ( \\dot { x } ) = | \\{ j \\colon f _ { j } ( x ) = i \\} | ,", + "type": "inline_equation" + }, + { + "bbox": [ + 209, + 519, + 502, + 531 + ], + "score": 1.0, + "content": "). We define a Gaussian NoisyMax (GNMax) aggregation mechanism as:", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31 + }, + { + "type": "interline_equation", + "bbox": [ + 221, + 532, + 389, + 553 + ], + "lines": [ + { + "bbox": [ + 221, + 532, + 389, + 553 + ], + "spans": [ + { + "bbox": [ + 221, + 532, + 389, + 553 + ], + "score": 0.94, + "content": "\\mathcal { M } _ { \\sigma } ( \\boldsymbol { x } ) \\stackrel { \\triangle } { = } \\operatorname * { a r g m a x } _ { i } \\left\\{ n _ { i } ( \\boldsymbol { x } ) + \\mathcal { N } ( 0 , \\sigma ^ { 2 } ) \\right\\} ,", + "type": "interline_equation", + "image_path": "4a4c91a2cc69835b4d1b2e632c0c3d1ded1433478a169dcc26724b5737b7fdda.jpg" + } + ] + } + ], + "index": 33, + "virtual_lines": [ + { + "bbox": [ + 221, + 532, + 389, + 553 + ], + "spans": [], + "index": 33 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 555, + 505, + 588 + ], + "lines": [ + { + "bbox": [ + 105, + 553, + 505, + 568 + ], + "spans": [ + { + "bbox": [ + 105, + 553, + 133, + 568 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 555, + 172, + 567 + ], + "score": 0.93, + "content": "{ \\mathcal { N } } ( 0 , \\sigma ^ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 172, + 553, + 392, + 568 + ], + "score": 1.0, + "content": "is the Gaussian distribution with mean 0 and variance", + "type": "text" + }, + { + "bbox": [ + 393, + 555, + 404, + 565 + ], + "score": 0.87, + "content": "\\sigma ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 404, + 553, + 505, + 568 + ], + "score": 1.0, + "content": ". The aggregator outputs", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 565, + 505, + 578 + ], + "spans": [ + { + "bbox": [ + 106, + 565, + 505, + 578 + ], + "score": 1.0, + "content": "the class with noisy plurality after adding Gaussian noise to each vote count. In what follow, plurality", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 577, + 462, + 590 + ], + "spans": [ + { + "bbox": [ + 106, + 577, + 462, + 590 + ], + "score": 1.0, + "content": "more generally refers to the highest number of teacher votes assigned among the classes.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 106, + 594, + 505, + 672 + ], + "lines": [ + { + "bbox": [ + 105, + 594, + 505, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 505, + 606 + ], + "score": 1.0, + "content": "The Gaussian distribution is more concentrated than the Laplace distribution used by Papernot et al.", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 605, + 504, + 617 + ], + "spans": [ + { + "bbox": [ + 106, + 605, + 494, + 617 + ], + "score": 1.0, + "content": "(2017). This concentration directly improves the aggregation’s utility when the number of classes", + "type": "text" + }, + { + "bbox": [ + 494, + 607, + 504, + 615 + ], + "score": 0.62, + "content": "m", + "type": "inline_equation" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 615, + 504, + 629 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 277, + 629 + ], + "score": 1.0, + "content": "is large. The GNMax mechanism satisfies", + "type": "text" + }, + { + "bbox": [ + 278, + 615, + 317, + 628 + ], + "score": 0.92, + "content": "( \\lambda , \\lambda / \\bar { \\sigma ^ { 2 } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 615, + 478, + 629 + ], + "score": 1.0, + "content": "-RDP, which holds for all inputs and all", + "type": "text" + }, + { + "bbox": [ + 478, + 616, + 504, + 627 + ], + "score": 0.9, + "content": "\\lambda \\geq 1", + "type": "inline_equation" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 627, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 505, + 639 + ], + "score": 1.0, + "content": "(precise statements and proofs of claims in this section are deferred to Appendix A). A straight-", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 638, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 106, + 638, + 505, + 650 + ], + "score": 1.0, + "content": "forward application of composition theorems leads to loose privacy bounds. As an example, the", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 649, + 505, + 660 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 505, + 660 + ], + "score": 1.0, + "content": "standard advanced composition theorem applied to experiments in the last two rows of Table 1", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 659, + 424, + 673 + ], + "spans": [ + { + "bbox": [ + 105, + 659, + 164, + 673 + ], + "score": 1.0, + "content": "would give us", + "type": "text" + }, + { + "bbox": [ + 164, + 660, + 201, + 670 + ], + "score": 0.89, + "content": "\\varepsilon = 8 . 4 2", + "type": "inline_equation" + }, + { + "bbox": [ + 202, + 659, + 219, + 673 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 219, + 660, + 262, + 670 + ], + "score": 0.87, + "content": "\\varepsilon = 1 0 . 1 4", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 659, + 294, + 673 + ], + "score": 1.0, + "content": "resp. at", + "type": "text" + }, + { + "bbox": [ + 294, + 659, + 334, + 670 + ], + "score": 0.92, + "content": "\\delta = 1 0 ^ { - 8 }", + "type": "inline_equation" + }, + { + "bbox": [ + 334, + 659, + 424, + 673 + ], + "score": 1.0, + "content": "for the Glyph dataset.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 40 + }, + { + "type": "text", + "bbox": [ + 107, + 676, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 439, + 689 + ], + "score": 1.0, + "content": "To refine these, we work out a careful data-dependent analysis that yields values of", + "type": "text" + }, + { + "bbox": [ + 439, + 679, + 445, + 687 + ], + "score": 0.71, + "content": "\\varepsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 677, + 505, + 689 + ], + "score": 1.0, + "content": "smaller than 1", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 686, + 505, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 686, + 156, + 701 + ], + "score": 1.0, + "content": "for the same", + "type": "text" + }, + { + "bbox": [ + 157, + 688, + 163, + 698 + ], + "score": 0.65, + "content": "\\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 686, + 505, + 701 + ], + "score": 1.0, + "content": ". The following theorem translates data-independent RDP guarantees for higher orders", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 339, + 712 + ], + "score": 1.0, + "content": "into a data-dependent RDP guarantee for a smaller order", + "type": "text" + }, + { + "bbox": [ + 340, + 699, + 346, + 709 + ], + "score": 0.76, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 698, + 505, + 712 + ], + "score": 1.0, + "content": ". We use it in conjunction with Propo-", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 709, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 479, + 723 + ], + "score": 1.0, + "content": "sition 7 to bound the privacy cost of each query to the GNMax algorithm as a function of", + "type": "text" + }, + { + "bbox": [ + 479, + 710, + 486, + 721 + ], + "score": 0.81, + "content": "\\tilde { q }", + "type": "inline_equation" + }, + { + "bbox": [ + 486, + 709, + 505, + 723 + ], + "score": 1.0, + "content": ", the", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 720, + 425, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 425, + 733 + ], + "score": 1.0, + "content": "probability that the most common answer will not be output by the mechanism.", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 46 + } + ], + "page_idx": 5, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 752, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "score": 1.0, + "content": "6", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 82, + 290, + 93 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 291, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 291, + 95 + ], + "score": 1.0, + "content": "3.5 DATA-DEPENDENT PRIVACY IN PATE", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 103, + 504, + 147 + ], + "lines": [ + { + "bbox": [ + 105, + 102, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 102, + 506, + 117 + ], + "score": 1.0, + "content": "A direct privacy analysis of the aggregation mechanism, for reasonable values of the noise param-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 114, + 505, + 126 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 505, + 126 + ], + "score": 1.0, + "content": "eter, allows answering only few queries before the privacy cost becomes prohibitive. The original", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 125, + 505, + 137 + ], + "spans": [ + { + "bbox": [ + 105, + 125, + 505, + 137 + ], + "score": 1.0, + "content": "PATE proposal used a data-dependent analysis, exploiting the fact that when the teachers have large", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 136, + 505, + 149 + ], + "spans": [ + { + "bbox": [ + 105, + 136, + 505, + 149 + ], + "score": 1.0, + "content": "agreement, the privacy cost is usually much smaller than the data-independent bound would suggest.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2.5, + "bbox_fs": [ + 105, + 102, + 506, + 149 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 153, + 505, + 208 + ], + "lines": [ + { + "bbox": [ + 105, + 152, + 505, + 165 + ], + "spans": [ + { + "bbox": [ + 105, + 152, + 505, + 165 + ], + "score": 1.0, + "content": "In our work, we perform a data-dependent privacy analysis of the aggregation mechanism with", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 162, + 505, + 178 + ], + "spans": [ + { + "bbox": [ + 105, + 162, + 505, + 178 + ], + "score": 1.0, + "content": "Gaussian noise. This change of noise distribution turns out be technically much more challenging", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 173, + 505, + 188 + ], + "spans": [ + { + "bbox": [ + 105, + 173, + 505, + 188 + ], + "score": 1.0, + "content": "than the Laplace noise case and we defer the details to Appendix A. This increased complexity", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 185, + 506, + 199 + ], + "spans": [ + { + "bbox": [ + 105, + 185, + 506, + 199 + ], + "score": 1.0, + "content": "of the analysis however does not make the algorithm any more complicated and thus allows us to", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 197, + 250, + 209 + ], + "spans": [ + { + "bbox": [ + 105, + 197, + 250, + 209 + ], + "score": 1.0, + "content": "improve the privacy-utility tradeoff.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 7, + "bbox_fs": [ + 105, + 152, + 506, + 209 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 219, + 504, + 275 + ], + "lines": [ + { + "bbox": [ + 106, + 219, + 506, + 233 + ], + "spans": [ + { + "bbox": [ + 106, + 219, + 506, + 233 + ], + "score": 1.0, + "content": "Sanitizing the privacy cost via smooth sensitivity analysis. An additional challenge with data-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 231, + 505, + 243 + ], + "spans": [ + { + "bbox": [ + 106, + 231, + 505, + 243 + ], + "score": 1.0, + "content": "dependent privacy analyses arises from the fact that the privacy cost itself is now a function of the", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 241, + 506, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 241, + 506, + 255 + ], + "score": 1.0, + "content": "private data. Further, the data-dependent bound on the privacy cost has large global sensitivity (a", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 253, + 505, + 265 + ], + "spans": [ + { + "bbox": [ + 106, + 253, + 505, + 265 + ], + "score": 1.0, + "content": "metric used in differential privacy to calibrate the noise injected) and is therefore difficult to sanitize.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 263, + 472, + 277 + ], + "spans": [ + { + "bbox": [ + 106, + 263, + 472, + 277 + ], + "score": 1.0, + "content": "To remedy this, we use the smooth sensitivity framework proposed by Nissim et al. (2007).", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12, + "bbox_fs": [ + 105, + 219, + 506, + 277 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 280, + 505, + 347 + ], + "lines": [ + { + "bbox": [ + 106, + 280, + 506, + 293 + ], + "spans": [ + { + "bbox": [ + 106, + 280, + 506, + 293 + ], + "score": 1.0, + "content": "Appendix B describes how we add noise to the computed privacy cost using this framework to", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 291, + 505, + 304 + ], + "spans": [ + { + "bbox": [ + 105, + 291, + 505, + 304 + ], + "score": 1.0, + "content": "publish a sanitized version of the privacy cost. Section B.1 defines smooth sensitivity and outlines", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 302, + 505, + 315 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 505, + 315 + ], + "score": 1.0, + "content": "algorithms 3–5 that compute it. The rest of Appendix B argues the correctness of these algorithms.", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 312, + 505, + 326 + ], + "spans": [ + { + "bbox": [ + 105, + 312, + 505, + 326 + ], + "score": 1.0, + "content": "The final analysis shows that the incremental cost of sanitizing our privacy estimates is modest—", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 323, + 505, + 336 + ], + "spans": [ + { + "bbox": [ + 105, + 323, + 143, + 336 + ], + "score": 1.0, + "content": "less than", + "type": "text" + }, + { + "bbox": [ + 143, + 324, + 163, + 335 + ], + "score": 0.87, + "content": "50 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 323, + 505, + 336 + ], + "score": 1.0, + "content": "of the raw estimates—thus enabling us to use precise data-dependent privacy analysis", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 334, + 308, + 348 + ], + "spans": [ + { + "bbox": [ + 105, + 334, + 308, + 348 + ], + "score": 1.0, + "content": "while taking into account its privacy implications.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 17.5, + "bbox_fs": [ + 105, + 280, + 506, + 348 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 362, + 391, + 375 + ], + "lines": [ + { + "bbox": [ + 105, + 361, + 392, + 376 + ], + "spans": [ + { + "bbox": [ + 105, + 361, + 392, + 376 + ], + "score": 1.0, + "content": "4 IMPROVED AGGREGATION MECHANISMS FOR PATE", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 107, + 385, + 505, + 463 + ], + "lines": [ + { + "bbox": [ + 105, + 385, + 505, + 399 + ], + "spans": [ + { + "bbox": [ + 105, + 385, + 505, + 399 + ], + "score": 1.0, + "content": "The privacy guarantees provided by PATE stem from the design and analysis of the aggregation", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 397, + 505, + 410 + ], + "spans": [ + { + "bbox": [ + 106, + 397, + 505, + 410 + ], + "score": 1.0, + "content": "step. Here, we detail our improvements to the mechanism used by Papernot et al. (2017). As", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 408, + 505, + 420 + ], + "spans": [ + { + "bbox": [ + 106, + 408, + 505, + 420 + ], + "score": 1.0, + "content": "outlined in Section 3.4, we first replace the Laplace noise added to teacher votes with Gaussian", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 419, + 505, + 432 + ], + "spans": [ + { + "bbox": [ + 105, + 419, + 505, + 432 + ], + "score": 1.0, + "content": "noise, adapting the data-dependent privacy analysis. Next, we describe the Confident and Interactive", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 430, + 506, + 443 + ], + "spans": [ + { + "bbox": [ + 106, + 430, + 506, + 443 + ], + "score": 1.0, + "content": "Aggregators that select queries worth answering in a privacy-preserving way: the privacy budget is", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 440, + 505, + 454 + ], + "spans": [ + { + "bbox": [ + 105, + 440, + 505, + 454 + ], + "score": 1.0, + "content": "shared between the query selection and answer computation. The aggregators use different heuristics", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 453, + 493, + 464 + ], + "spans": [ + { + "bbox": [ + 106, + 453, + 493, + 464 + ], + "score": 1.0, + "content": "to select queries: the former does not take into account student predictions, while the latter does.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 25, + "bbox_fs": [ + 105, + 385, + 506, + 464 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 475, + 388, + 487 + ], + "lines": [ + { + "bbox": [ + 105, + 475, + 389, + 489 + ], + "spans": [ + { + "bbox": [ + 105, + 475, + 389, + 489 + ], + "score": 1.0, + "content": "4.1 THE GNMAX AGGREGATOR AND ITS PRIVACY GUARANTEE", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 106, + 496, + 505, + 530 + ], + "lines": [ + { + "bbox": [ + 105, + 495, + 506, + 510 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 325, + 510 + ], + "score": 1.0, + "content": "This section uses the following notation. For a sample", + "type": "text" + }, + { + "bbox": [ + 325, + 499, + 332, + 506 + ], + "score": 0.78, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 495, + 398, + 510 + ], + "score": 1.0, + "content": "and classes 1 to", + "type": "text" + }, + { + "bbox": [ + 398, + 498, + 408, + 507 + ], + "score": 0.75, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 408, + 495, + 424, + 510 + ], + "score": 1.0, + "content": ", let", + "type": "text" + }, + { + "bbox": [ + 424, + 496, + 475, + 509 + ], + "score": 0.92, + "content": "f _ { j } ( x ) \\in [ m ]", + "type": "inline_equation" + }, + { + "bbox": [ + 475, + 495, + 506, + 510 + ], + "score": 1.0, + "content": "denote", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 507, + 505, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 507, + 122, + 520 + ], + "score": 1.0, + "content": "the", + "type": "text" + }, + { + "bbox": [ + 122, + 508, + 128, + 519 + ], + "score": 0.8, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 128, + 507, + 266, + 520 + ], + "score": 1.0, + "content": "-th teacher model’s prediction on", + "type": "text" + }, + { + "bbox": [ + 267, + 510, + 274, + 518 + ], + "score": 0.77, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 274, + 507, + 294, + 520 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 294, + 507, + 318, + 519 + ], + "score": 0.92, + "content": "n _ { i } ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 507, + 443, + 520 + ], + "score": 1.0, + "content": "denote the vote count for the", + "type": "text" + }, + { + "bbox": [ + 443, + 509, + 448, + 518 + ], + "score": 0.77, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 448, + 507, + 505, + 520 + ], + "score": 1.0, + "content": "-th class (i.e.,", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 518, + 502, + 531 + ], + "spans": [ + { + "bbox": [ + 106, + 518, + 209, + 531 + ], + "score": 0.9, + "content": "n _ { i } ( \\dot { x } ) = | \\{ j \\colon f _ { j } ( x ) = i \\} | ,", + "type": "inline_equation" + }, + { + "bbox": [ + 209, + 519, + 502, + 531 + ], + "score": 1.0, + "content": "). We define a Gaussian NoisyMax (GNMax) aggregation mechanism as:", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31, + "bbox_fs": [ + 105, + 495, + 506, + 531 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 221, + 532, + 389, + 553 + ], + "lines": [ + { + "bbox": [ + 221, + 532, + 389, + 553 + ], + "spans": [ + { + "bbox": [ + 221, + 532, + 389, + 553 + ], + "score": 0.94, + "content": "\\mathcal { M } _ { \\sigma } ( \\boldsymbol { x } ) \\stackrel { \\triangle } { = } \\operatorname * { a r g m a x } _ { i } \\left\\{ n _ { i } ( \\boldsymbol { x } ) + \\mathcal { N } ( 0 , \\sigma ^ { 2 } ) \\right\\} ,", + "type": "interline_equation", + "image_path": "4a4c91a2cc69835b4d1b2e632c0c3d1ded1433478a169dcc26724b5737b7fdda.jpg" + } + ] + } + ], + "index": 33, + "virtual_lines": [ + { + "bbox": [ + 221, + 532, + 389, + 553 + ], + "spans": [], + "index": 33 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 555, + 505, + 588 + ], + "lines": [ + { + "bbox": [ + 105, + 553, + 505, + 568 + ], + "spans": [ + { + "bbox": [ + 105, + 553, + 133, + 568 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 555, + 172, + 567 + ], + "score": 0.93, + "content": "{ \\mathcal { N } } ( 0 , \\sigma ^ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 172, + 553, + 392, + 568 + ], + "score": 1.0, + "content": "is the Gaussian distribution with mean 0 and variance", + "type": "text" + }, + { + "bbox": [ + 393, + 555, + 404, + 565 + ], + "score": 0.87, + "content": "\\sigma ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 404, + 553, + 505, + 568 + ], + "score": 1.0, + "content": ". The aggregator outputs", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 565, + 505, + 578 + ], + "spans": [ + { + "bbox": [ + 106, + 565, + 505, + 578 + ], + "score": 1.0, + "content": "the class with noisy plurality after adding Gaussian noise to each vote count. In what follow, plurality", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 577, + 462, + 590 + ], + "spans": [ + { + "bbox": [ + 106, + 577, + 462, + 590 + ], + "score": 1.0, + "content": "more generally refers to the highest number of teacher votes assigned among the classes.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35, + "bbox_fs": [ + 105, + 553, + 505, + 590 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 594, + 505, + 672 + ], + "lines": [ + { + "bbox": [ + 105, + 594, + 505, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 505, + 606 + ], + "score": 1.0, + "content": "The Gaussian distribution is more concentrated than the Laplace distribution used by Papernot et al.", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 605, + 504, + 617 + ], + "spans": [ + { + "bbox": [ + 106, + 605, + 494, + 617 + ], + "score": 1.0, + "content": "(2017). This concentration directly improves the aggregation’s utility when the number of classes", + "type": "text" + }, + { + "bbox": [ + 494, + 607, + 504, + 615 + ], + "score": 0.62, + "content": "m", + "type": "inline_equation" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 615, + 504, + 629 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 277, + 629 + ], + "score": 1.0, + "content": "is large. The GNMax mechanism satisfies", + "type": "text" + }, + { + "bbox": [ + 278, + 615, + 317, + 628 + ], + "score": 0.92, + "content": "( \\lambda , \\lambda / \\bar { \\sigma ^ { 2 } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 615, + 478, + 629 + ], + "score": 1.0, + "content": "-RDP, which holds for all inputs and all", + "type": "text" + }, + { + "bbox": [ + 478, + 616, + 504, + 627 + ], + "score": 0.9, + "content": "\\lambda \\geq 1", + "type": "inline_equation" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 627, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 505, + 639 + ], + "score": 1.0, + "content": "(precise statements and proofs of claims in this section are deferred to Appendix A). A straight-", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 638, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 106, + 638, + 505, + 650 + ], + "score": 1.0, + "content": "forward application of composition theorems leads to loose privacy bounds. As an example, the", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 649, + 505, + 660 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 505, + 660 + ], + "score": 1.0, + "content": "standard advanced composition theorem applied to experiments in the last two rows of Table 1", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 659, + 424, + 673 + ], + "spans": [ + { + "bbox": [ + 105, + 659, + 164, + 673 + ], + "score": 1.0, + "content": "would give us", + "type": "text" + }, + { + "bbox": [ + 164, + 660, + 201, + 670 + ], + "score": 0.89, + "content": "\\varepsilon = 8 . 4 2", + "type": "inline_equation" + }, + { + "bbox": [ + 202, + 659, + 219, + 673 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 219, + 660, + 262, + 670 + ], + "score": 0.87, + "content": "\\varepsilon = 1 0 . 1 4", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 659, + 294, + 673 + ], + "score": 1.0, + "content": "resp. at", + "type": "text" + }, + { + "bbox": [ + 294, + 659, + 334, + 670 + ], + "score": 0.92, + "content": "\\delta = 1 0 ^ { - 8 }", + "type": "inline_equation" + }, + { + "bbox": [ + 334, + 659, + 424, + 673 + ], + "score": 1.0, + "content": "for the Glyph dataset.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 40, + "bbox_fs": [ + 105, + 594, + 505, + 673 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 676, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 439, + 689 + ], + "score": 1.0, + "content": "To refine these, we work out a careful data-dependent analysis that yields values of", + "type": "text" + }, + { + "bbox": [ + 439, + 679, + 445, + 687 + ], + "score": 0.71, + "content": "\\varepsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 677, + 505, + 689 + ], + "score": 1.0, + "content": "smaller than 1", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 686, + 505, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 686, + 156, + 701 + ], + "score": 1.0, + "content": "for the same", + "type": "text" + }, + { + "bbox": [ + 157, + 688, + 163, + 698 + ], + "score": 0.65, + "content": "\\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 686, + 505, + 701 + ], + "score": 1.0, + "content": ". The following theorem translates data-independent RDP guarantees for higher orders", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 339, + 712 + ], + "score": 1.0, + "content": "into a data-dependent RDP guarantee for a smaller order", + "type": "text" + }, + { + "bbox": [ + 340, + 699, + 346, + 709 + ], + "score": 0.76, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 698, + 505, + 712 + ], + "score": 1.0, + "content": ". We use it in conjunction with Propo-", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 709, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 479, + 723 + ], + "score": 1.0, + "content": "sition 7 to bound the privacy cost of each query to the GNMax algorithm as a function of", + "type": "text" + }, + { + "bbox": [ + 479, + 710, + 486, + 721 + ], + "score": 0.81, + "content": "\\tilde { q }", + "type": "inline_equation" + }, + { + "bbox": [ + 486, + 709, + 505, + 723 + ], + "score": 1.0, + "content": ", the", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 720, + 425, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 425, + 733 + ], + "score": 1.0, + "content": "probability that the most common answer will not be output by the mechanism.", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 46, + "bbox_fs": [ + 105, + 677, + 505, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 504, + 127 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 228, + 95 + ], + "score": 1.0, + "content": "Theorem 6 (informal). Let", + "type": "text" + }, + { + "bbox": [ + 228, + 83, + 241, + 93 + ], + "score": 0.69, + "content": "\\mathcal { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 242, + 81, + 388, + 95 + ], + "score": 1.0, + "content": "be a randomized algorithm with", + "type": "text" + }, + { + "bbox": [ + 388, + 82, + 444, + 95 + ], + "score": 0.77, + "content": "( \\mu _ { 1 } , \\varepsilon _ { 1 } ) – R D P", + "type": "inline_equation" + }, + { + "bbox": [ + 445, + 81, + 468, + 95 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 468, + 82, + 500, + 95 + ], + "score": 0.89, + "content": "\\left( \\mu _ { 2 } , \\varepsilon _ { 2 } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 81, + 505, + 95 + ], + "score": 1.0, + "content": "-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 94, + 128, + 104 + ], + "score": 0.45, + "content": "R D P", + "type": "inline_equation" + }, + { + "bbox": [ + 128, + 93, + 327, + 106 + ], + "score": 1.0, + "content": "guarantees and suppose that given a dataset", + "type": "text" + }, + { + "bbox": [ + 327, + 94, + 337, + 104 + ], + "score": 0.74, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 337, + 93, + 471, + 106 + ], + "score": 1.0, + "content": ", there exists a likely outcome", + "type": "text" + }, + { + "bbox": [ + 471, + 95, + 481, + 104 + ], + "score": 0.82, + "content": "i ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 481, + 93, + 506, + 106 + ], + "score": 1.0, + "content": "such", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 126, + 117 + ], + "score": 1.0, + "content": "that", + "type": "text" + }, + { + "bbox": [ + 126, + 104, + 218, + 116 + ], + "score": 0.89, + "content": "\\mathbf { P r } \\left[ \\mathcal { M } ( D ) \\neq i ^ { * } \\right] \\leq \\tilde { q }", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 104, + 453, + 117 + ], + "score": 1.0, + "content": ". Then the data-dependent Rényi differential privacy for", + "type": "text" + }, + { + "bbox": [ + 454, + 105, + 467, + 115 + ], + "score": 0.76, + "content": "\\mathcal { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 468, + 104, + 506, + 117 + ], + "score": 1.0, + "content": "of order", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 114, + 479, + 129 + ], + "spans": [ + { + "bbox": [ + 106, + 116, + 152, + 127 + ], + "score": 0.89, + "content": "\\lambda \\leq \\mu _ { 1 } , \\mu _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 152, + 114, + 164, + 129 + ], + "score": 1.0, + "content": "at", + "type": "text" + }, + { + "bbox": [ + 164, + 117, + 173, + 125 + ], + "score": 0.76, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 174, + 114, + 285, + 129 + ], + "score": 1.0, + "content": "is bounded by a function of", + "type": "text" + }, + { + "bbox": [ + 285, + 117, + 351, + 127 + ], + "score": 0.61, + "content": "\\tilde { q } , \\mu _ { 1 } , \\varepsilon _ { 1 } , \\mu _ { 2 } , \\varepsilon _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 351, + 114, + 428, + 129 + ], + "score": 1.0, + "content": ", which approaches", + "type": "text" + }, + { + "bbox": [ + 429, + 116, + 435, + 125 + ], + "score": 0.36, + "content": "O", + "type": "inline_equation" + }, + { + "bbox": [ + 436, + 114, + 447, + 129 + ], + "score": 1.0, + "content": "as", + "type": "text" + }, + { + "bbox": [ + 448, + 116, + 474, + 127 + ], + "score": 0.9, + "content": "\\tilde { q } 0", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 114, + 479, + 129 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5 + }, + { + "type": "text", + "bbox": [ + 107, + 134, + 505, + 190 + ], + "lines": [ + { + "bbox": [ + 106, + 133, + 505, + 147 + ], + "spans": [ + { + "bbox": [ + 106, + 133, + 361, + 147 + ], + "score": 1.0, + "content": "The new bound improves on the data-independent privacy for", + "type": "text" + }, + { + "bbox": [ + 361, + 135, + 368, + 144 + ], + "score": 0.79, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 133, + 505, + 147 + ], + "score": 1.0, + "content": "as long as the distribution of the", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 145, + 505, + 159 + ], + "spans": [ + { + "bbox": [ + 105, + 145, + 330, + 159 + ], + "score": 1.0, + "content": "algorithm’s output on that input has a strong peak (i.e.,", + "type": "text" + }, + { + "bbox": [ + 330, + 146, + 358, + 157 + ], + "score": 0.89, + "content": "\\tilde { q } \\ll 1 .", + "type": "inline_equation" + }, + { + "bbox": [ + 358, + 145, + 406, + 159 + ], + "score": 1.0, + "content": "). Values of", + "type": "text" + }, + { + "bbox": [ + 407, + 146, + 413, + 157 + ], + "score": 0.83, + "content": "\\tilde { q }", + "type": "inline_equation" + }, + { + "bbox": [ + 414, + 145, + 505, + 159 + ], + "score": 1.0, + "content": "close to 1 could result", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 156, + 505, + 169 + ], + "spans": [ + { + "bbox": [ + 105, + 156, + 462, + 169 + ], + "score": 1.0, + "content": "in a looser bound. Therefore, in practice we take the minimum between this bound and", + "type": "text" + }, + { + "bbox": [ + 463, + 156, + 485, + 168 + ], + "score": 0.92, + "content": "\\lambda / \\sigma ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 486, + 156, + 505, + 169 + ], + "score": 1.0, + "content": "(the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 168, + 505, + 180 + ], + "spans": [ + { + "bbox": [ + 105, + 168, + 505, + 180 + ], + "score": 1.0, + "content": "data-independent one). The theorem generalizes Theorem 3 from Papernot et al. (2017), where it", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 177, + 486, + 192 + ], + "spans": [ + { + "bbox": [ + 105, + 177, + 262, + 192 + ], + "score": 1.0, + "content": "was shown for a mechanism satisfying", + "type": "text" + }, + { + "bbox": [ + 263, + 180, + 269, + 188 + ], + "score": 0.75, + "content": "\\varepsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 269, + 177, + 369, + 192 + ], + "score": 1.0, + "content": "-differential privacy (i.e.,", + "type": "text" + }, + { + "bbox": [ + 370, + 180, + 428, + 190 + ], + "score": 0.89, + "content": "\\mu _ { 1 } = \\mu _ { 2 } = \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 429, + 177, + 446, + 192 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 446, + 180, + 479, + 190 + ], + "score": 0.88, + "content": "\\varepsilon _ { 1 } = \\varepsilon _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 479, + 177, + 486, + 192 + ], + "score": 1.0, + "content": ").", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 107, + 195, + 503, + 217 + ], + "lines": [ + { + "bbox": [ + 105, + 193, + 505, + 209 + ], + "spans": [ + { + "bbox": [ + 105, + 193, + 435, + 209 + ], + "score": 1.0, + "content": "The final step in our analysis uses the following lemma to bound the probability", + "type": "text" + }, + { + "bbox": [ + 435, + 196, + 442, + 207 + ], + "score": 0.83, + "content": "\\tilde { q }", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 193, + 467, + 209 + ], + "score": 1.0, + "content": "when", + "type": "text" + }, + { + "bbox": [ + 468, + 196, + 477, + 205 + ], + "score": 0.85, + "content": "i ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 477, + 193, + 505, + 209 + ], + "score": 1.0, + "content": "corre-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 206, + 340, + 220 + ], + "spans": [ + { + "bbox": [ + 105, + 206, + 340, + 220 + ], + "score": 1.0, + "content": "sponds to the class with the true plurality of teacher votes.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5 + }, + { + "type": "text", + "bbox": [ + 107, + 218, + 503, + 243 + ], + "lines": [ + { + "bbox": [ + 102, + 213, + 508, + 244 + ], + "spans": [ + { + "bbox": [ + 102, + 213, + 207, + 244 + ], + "score": 1.0, + "content": "Proposition 7. For any erfc is the complementar", + "type": "text" + }, + { + "bbox": [ + 207, + 219, + 245, + 231 + ], + "score": 0.9, + "content": "i ^ { * } \\in [ m ]", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 213, + 287, + 244 + ], + "score": 1.0, + "content": ", we have nction.", + "type": "text" + }, + { + "bbox": [ + 287, + 218, + 414, + 233 + ], + "score": 0.9, + "content": "\\begin{array} { r } { \\mathbf { P r } \\left[ \\mathcal { M } _ { \\sigma } ( D ) \\neq i ^ { * } \\right] \\ \\leq \\ \\frac { 1 } { 2 } \\sum _ { i \\neq i ^ { * } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 415, + 213, + 434, + 244 + ], + "score": 1.0, + "content": "erfc", + "type": "text" + }, + { + "bbox": [ + 434, + 218, + 472, + 233 + ], + "score": 0.84, + "content": "\\left( { \\frac { n _ { i ^ { * } } - n _ { i } } { 2 \\sigma } } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 473, + 213, + 508, + 244 + ], + "score": 1.0, + "content": ", where", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 107, + 250, + 505, + 306 + ], + "lines": [ + { + "bbox": [ + 106, + 250, + 505, + 263 + ], + "spans": [ + { + "bbox": [ + 106, + 250, + 505, + 263 + ], + "score": 1.0, + "content": "In Appendix A, we detail how these results translate to privacy bounds. In short, for each query to", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 260, + 506, + 276 + ], + "spans": [ + { + "bbox": [ + 105, + 260, + 281, + 276 + ], + "score": 1.0, + "content": "the GNMax aggregator, given teacher votes", + "type": "text" + }, + { + "bbox": [ + 281, + 263, + 292, + 273 + ], + "score": 0.84, + "content": "n _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 260, + 346, + 276 + ], + "score": 1.0, + "content": "and the class", + "type": "text" + }, + { + "bbox": [ + 347, + 262, + 356, + 272 + ], + "score": 0.85, + "content": "i ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 356, + 260, + 506, + 276 + ], + "score": 1.0, + "content": "with maximal support, Proposition 7", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 272, + 506, + 286 + ], + "spans": [ + { + "bbox": [ + 105, + 272, + 187, + 286 + ], + "score": 1.0, + "content": "gives us the value of", + "type": "text" + }, + { + "bbox": [ + 188, + 273, + 194, + 284 + ], + "score": 0.85, + "content": "\\tilde { q }", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 272, + 348, + 286 + ], + "score": 1.0, + "content": "to use in Theorem 6. We optimize over", + "type": "text" + }, + { + "bbox": [ + 349, + 275, + 360, + 284 + ], + "score": 0.86, + "content": "\\mu _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 272, + 377, + 286 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 378, + 274, + 389, + 284 + ], + "score": 0.85, + "content": "\\mu _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 272, + 506, + 286 + ], + "score": 1.0, + "content": "to get a data-dependent RDP", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 283, + 506, + 297 + ], + "spans": [ + { + "bbox": [ + 105, + 283, + 202, + 297 + ], + "score": 1.0, + "content": "guarantee for any order", + "type": "text" + }, + { + "bbox": [ + 203, + 284, + 210, + 293 + ], + "score": 0.67, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 283, + 506, + 297 + ], + "score": 1.0, + "content": ". Finally, we use composition properties of RDP to analyze a sequence of", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 294, + 371, + 307 + ], + "spans": [ + { + "bbox": [ + 105, + 294, + 301, + 307 + ], + "score": 1.0, + "content": "queries, and translate the RDP bound back to an", + "type": "text" + }, + { + "bbox": [ + 301, + 294, + 323, + 307 + ], + "score": 0.92, + "content": "( \\varepsilon , \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 294, + 371, + 307 + ], + "score": 1.0, + "content": "-DP bound.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 107, + 317, + 505, + 394 + ], + "lines": [ + { + "bbox": [ + 106, + 317, + 505, + 330 + ], + "spans": [ + { + "bbox": [ + 106, + 317, + 505, + 330 + ], + "score": 1.0, + "content": "Expensive queries. This data-dependent privacy analysis leads us to the concept of an expensive", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 329, + 505, + 342 + ], + "spans": [ + { + "bbox": [ + 105, + 329, + 419, + 342 + ], + "score": 1.0, + "content": "query in terms of its privacy cost. When teacher votes largely disagree, some", + "type": "text" + }, + { + "bbox": [ + 419, + 330, + 456, + 339 + ], + "score": 0.9, + "content": "n _ { i ^ { * } } - n _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 456, + 329, + 505, + 342 + ], + "score": 1.0, + "content": "values may", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 340, + 505, + 352 + ], + "spans": [ + { + "bbox": [ + 105, + 340, + 256, + 352 + ], + "score": 1.0, + "content": "be small leading to a large value for", + "type": "text" + }, + { + "bbox": [ + 257, + 340, + 263, + 351 + ], + "score": 0.76, + "content": "\\tilde { q }", + "type": "inline_equation" + }, + { + "bbox": [ + 263, + 340, + 505, + 352 + ], + "score": 1.0, + "content": ": i.e., the lack of consensus amongst teachers indicates that", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 350, + 506, + 364 + ], + "spans": [ + { + "bbox": [ + 105, + 350, + 506, + 364 + ], + "score": 1.0, + "content": "the aggregator is likely to output a wrong label. Thus expensive queries from a privacy perspec-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 361, + 505, + 374 + ], + "spans": [ + { + "bbox": [ + 105, + 361, + 505, + 374 + ], + "score": 1.0, + "content": "tive are often bad for training too. Conversely, queries with strong consensus enable tight privacy", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 371, + 506, + 386 + ], + "spans": [ + { + "bbox": [ + 105, + 371, + 506, + 386 + ], + "score": 1.0, + "content": "bounds. This synergy motivates the aggregation mechanisms discussed in the following sections:", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 383, + 384, + 397 + ], + "spans": [ + { + "bbox": [ + 106, + 383, + 384, + 397 + ], + "score": 1.0, + "content": "they evaluate the strength of the consensus before answering a query.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 20 + }, + { + "type": "title", + "bbox": [ + 108, + 407, + 305, + 418 + ], + "lines": [ + { + "bbox": [ + 105, + 406, + 307, + 420 + ], + "spans": [ + { + "bbox": [ + 105, + 406, + 307, + 420 + ], + "score": 1.0, + "content": "4.2 THE CONFIDENT-GNMAX AGGREGATOR", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 107, + 427, + 505, + 471 + ], + "lines": [ + { + "bbox": [ + 105, + 428, + 505, + 440 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 505, + 440 + ], + "score": 1.0, + "content": "In this section, we propose a refinement of the GNMax aggregator that enables us to filter out queries", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 438, + 505, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 438, + 505, + 451 + ], + "score": 1.0, + "content": "for which teachers do not have a sufficiently strong consensus. This filtering enables the teachers", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 450, + 505, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 450, + 505, + 462 + ], + "score": 1.0, + "content": "to avoid answering expensive queries. We also take note to do this selection step itself in a private", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 462, + 141, + 472 + ], + "spans": [ + { + "bbox": [ + 106, + 462, + 141, + 472 + ], + "score": 1.0, + "content": "manner.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26.5 + }, + { + "type": "text", + "bbox": [ + 107, + 477, + 504, + 544 + ], + "lines": [ + { + "bbox": [ + 106, + 478, + 505, + 491 + ], + "spans": [ + { + "bbox": [ + 106, + 478, + 505, + 491 + ], + "score": 1.0, + "content": "The proposed Confident Aggregator is described in Algorithm 1. To select queries with overwhelm-", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 487, + 506, + 502 + ], + "spans": [ + { + "bbox": [ + 105, + 487, + 413, + 502 + ], + "score": 1.0, + "content": "ing consensus, the algorithm checks if the plurality vote crosses a threshold", + "type": "text" + }, + { + "bbox": [ + 414, + 489, + 422, + 498 + ], + "score": 0.7, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 423, + 487, + 506, + 502 + ], + "score": 1.0, + "content": ". To enforce privacy", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 499, + 506, + 512 + ], + "spans": [ + { + "bbox": [ + 105, + 499, + 418, + 512 + ], + "score": 1.0, + "content": "in this step, the comparison is done after adding Gaussian noise with variance", + "type": "text" + }, + { + "bbox": [ + 418, + 499, + 430, + 511 + ], + "score": 0.89, + "content": "\\sigma _ { 1 } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 430, + 499, + 506, + 512 + ], + "score": 1.0, + "content": ". Then, for queries", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 510, + 506, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 510, + 506, + 523 + ], + "score": 1.0, + "content": "that pass this noisy threshold check, the aggregator proceeds with the usual GNMax mechanism", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 520, + 506, + 535 + ], + "spans": [ + { + "bbox": [ + 105, + 520, + 203, + 535 + ], + "score": 1.0, + "content": "with a smaller variance", + "type": "text" + }, + { + "bbox": [ + 203, + 521, + 215, + 533 + ], + "score": 0.89, + "content": "\\sigma _ { 2 } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 520, + 506, + 535 + ], + "score": 1.0, + "content": ". For queries that do not pass the noisy threshold check, the aggregator", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 532, + 386, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 166, + 546 + ], + "score": 1.0, + "content": "simply returns", + "type": "text" + }, + { + "bbox": [ + 167, + 533, + 176, + 543 + ], + "score": 0.58, + "content": "\\perp", + "type": "inline_equation" + }, + { + "bbox": [ + 176, + 532, + 386, + 546 + ], + "score": 1.0, + "content": "and the student discards this example in its training.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 31.5 + }, + { + "type": "text", + "bbox": [ + 107, + 549, + 505, + 615 + ], + "lines": [ + { + "bbox": [ + 106, + 550, + 505, + 561 + ], + "spans": [ + { + "bbox": [ + 106, + 550, + 352, + 561 + ], + "score": 1.0, + "content": "In practice, we often choose significantly higher values for", + "type": "text" + }, + { + "bbox": [ + 353, + 552, + 364, + 560 + ], + "score": 0.85, + "content": "\\sigma _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 364, + 550, + 420, + 561 + ], + "score": 1.0, + "content": "compared to", + "type": "text" + }, + { + "bbox": [ + 420, + 551, + 432, + 560 + ], + "score": 0.85, + "content": "\\sigma _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 432, + 550, + 505, + 561 + ], + "score": 1.0, + "content": ". This is because", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 560, + 505, + 573 + ], + "spans": [ + { + "bbox": [ + 105, + 560, + 505, + 573 + ], + "score": 1.0, + "content": "we pay the cost of the noisy threshold check always, and without the benefit of knowing that the", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 571, + 505, + 584 + ], + "spans": [ + { + "bbox": [ + 105, + 571, + 223, + 584 + ], + "score": 1.0, + "content": "consensus is strong. We pick", + "type": "text" + }, + { + "bbox": [ + 223, + 572, + 232, + 581 + ], + "score": 0.76, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 571, + 505, + 584 + ], + "score": 1.0, + "content": "so that queries where the plurality gets less than half the votes (often", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 582, + 505, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 505, + 595 + ], + "score": 1.0, + "content": "very expensive) are unlikely to pass the threshold after adding noise, but we still have a high enough", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 594, + 506, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 452, + 606 + ], + "score": 1.0, + "content": "yield amongst the queries with a strong consensus. This tradeoff leads us to look for", + "type": "text" + }, + { + "bbox": [ + 453, + 594, + 461, + 603 + ], + "score": 0.62, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 594, + 506, + 606 + ], + "score": 1.0, + "content": "’s between", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 604, + 258, + 616 + ], + "spans": [ + { + "bbox": [ + 106, + 604, + 128, + 615 + ], + "score": 0.85, + "content": "0 . 6 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 129, + 604, + 140, + 616 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 140, + 605, + 162, + 615 + ], + "score": 0.86, + "content": "0 . 8 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 604, + 258, + 616 + ], + "score": 1.0, + "content": "the number of teachers.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 37.5 + }, + { + "type": "text", + "bbox": [ + 107, + 621, + 505, + 676 + ], + "lines": [ + { + "bbox": [ + 105, + 620, + 505, + 634 + ], + "spans": [ + { + "bbox": [ + 105, + 620, + 505, + 634 + ], + "score": 1.0, + "content": "The privacy cost of this aggregator is intuitive: we pay for the threshold check for every query, and", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 631, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 631, + 505, + 645 + ], + "score": 1.0, + "content": "for the GNMax step only for queries that pass the check. In the work of Papernot et al. (2017), the", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 642, + 505, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 642, + 505, + 656 + ], + "score": 1.0, + "content": "mechanism paid a privacy cost for every query, expensive or otherwise. In comparison, the Confident", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 653, + 507, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 653, + 507, + 668 + ], + "score": 1.0, + "content": "Aggregator expends a much smaller privacy cost to check against the threshold, and by answering a", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 665, + 467, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 467, + 678 + ], + "score": 1.0, + "content": "significantly smaller fraction of expensive queries, it expends a lower privacy cost overall.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 43 + }, + { + "type": "title", + "bbox": [ + 107, + 689, + 315, + 700 + ], + "lines": [ + { + "bbox": [ + 105, + 689, + 316, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 689, + 316, + 702 + ], + "score": 1.0, + "content": "4.3 THE INTERACTIVE-GNMAX AGGREGATOR", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 46 + }, + { + "type": "text", + "bbox": [ + 108, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 708, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 506, + 722 + ], + "score": 1.0, + "content": "While the Confident Aggregator excludes expensive queries, it ignores the possibility that the student", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "might receive labels that contribute little to learning, and in turn to its utility. By incorporating the", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 47.5 + } + ], + "page_idx": 6, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 303, + 751, + 308, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 12, + "width": 7 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 504, + 127 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 228, + 95 + ], + "score": 1.0, + "content": "Theorem 6 (informal). Let", + "type": "text" + }, + { + "bbox": [ + 228, + 83, + 241, + 93 + ], + "score": 0.69, + "content": "\\mathcal { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 242, + 81, + 388, + 95 + ], + "score": 1.0, + "content": "be a randomized algorithm with", + "type": "text" + }, + { + "bbox": [ + 388, + 82, + 444, + 95 + ], + "score": 0.77, + "content": "( \\mu _ { 1 } , \\varepsilon _ { 1 } ) – R D P", + "type": "inline_equation" + }, + { + "bbox": [ + 445, + 81, + 468, + 95 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 468, + 82, + 500, + 95 + ], + "score": 0.89, + "content": "\\left( \\mu _ { 2 } , \\varepsilon _ { 2 } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 81, + 505, + 95 + ], + "score": 1.0, + "content": "-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 94, + 128, + 104 + ], + "score": 0.45, + "content": "R D P", + "type": "inline_equation" + }, + { + "bbox": [ + 128, + 93, + 327, + 106 + ], + "score": 1.0, + "content": "guarantees and suppose that given a dataset", + "type": "text" + }, + { + "bbox": [ + 327, + 94, + 337, + 104 + ], + "score": 0.74, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 337, + 93, + 471, + 106 + ], + "score": 1.0, + "content": ", there exists a likely outcome", + "type": "text" + }, + { + "bbox": [ + 471, + 95, + 481, + 104 + ], + "score": 0.82, + "content": "i ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 481, + 93, + 506, + 106 + ], + "score": 1.0, + "content": "such", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 126, + 117 + ], + "score": 1.0, + "content": "that", + "type": "text" + }, + { + "bbox": [ + 126, + 104, + 218, + 116 + ], + "score": 0.89, + "content": "\\mathbf { P r } \\left[ \\mathcal { M } ( D ) \\neq i ^ { * } \\right] \\leq \\tilde { q }", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 104, + 453, + 117 + ], + "score": 1.0, + "content": ". Then the data-dependent Rényi differential privacy for", + "type": "text" + }, + { + "bbox": [ + 454, + 105, + 467, + 115 + ], + "score": 0.76, + "content": "\\mathcal { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 468, + 104, + 506, + 117 + ], + "score": 1.0, + "content": "of order", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 114, + 479, + 129 + ], + "spans": [ + { + "bbox": [ + 106, + 116, + 152, + 127 + ], + "score": 0.89, + "content": "\\lambda \\leq \\mu _ { 1 } , \\mu _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 152, + 114, + 164, + 129 + ], + "score": 1.0, + "content": "at", + "type": "text" + }, + { + "bbox": [ + 164, + 117, + 173, + 125 + ], + "score": 0.76, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 174, + 114, + 285, + 129 + ], + "score": 1.0, + "content": "is bounded by a function of", + "type": "text" + }, + { + "bbox": [ + 285, + 117, + 351, + 127 + ], + "score": 0.61, + "content": "\\tilde { q } , \\mu _ { 1 } , \\varepsilon _ { 1 } , \\mu _ { 2 } , \\varepsilon _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 351, + 114, + 428, + 129 + ], + "score": 1.0, + "content": ", which approaches", + "type": "text" + }, + { + "bbox": [ + 429, + 116, + 435, + 125 + ], + "score": 0.36, + "content": "O", + "type": "inline_equation" + }, + { + "bbox": [ + 436, + 114, + 447, + 129 + ], + "score": 1.0, + "content": "as", + "type": "text" + }, + { + "bbox": [ + 448, + 116, + 474, + 127 + ], + "score": 0.9, + "content": "\\tilde { q } 0", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 114, + 479, + 129 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5, + "bbox_fs": [ + 105, + 81, + 506, + 129 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 134, + 505, + 190 + ], + "lines": [ + { + "bbox": [ + 106, + 133, + 505, + 147 + ], + "spans": [ + { + "bbox": [ + 106, + 133, + 361, + 147 + ], + "score": 1.0, + "content": "The new bound improves on the data-independent privacy for", + "type": "text" + }, + { + "bbox": [ + 361, + 135, + 368, + 144 + ], + "score": 0.79, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 133, + 505, + 147 + ], + "score": 1.0, + "content": "as long as the distribution of the", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 145, + 505, + 159 + ], + "spans": [ + { + "bbox": [ + 105, + 145, + 330, + 159 + ], + "score": 1.0, + "content": "algorithm’s output on that input has a strong peak (i.e.,", + "type": "text" + }, + { + "bbox": [ + 330, + 146, + 358, + 157 + ], + "score": 0.89, + "content": "\\tilde { q } \\ll 1 .", + "type": "inline_equation" + }, + { + "bbox": [ + 358, + 145, + 406, + 159 + ], + "score": 1.0, + "content": "). Values of", + "type": "text" + }, + { + "bbox": [ + 407, + 146, + 413, + 157 + ], + "score": 0.83, + "content": "\\tilde { q }", + "type": "inline_equation" + }, + { + "bbox": [ + 414, + 145, + 505, + 159 + ], + "score": 1.0, + "content": "close to 1 could result", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 156, + 505, + 169 + ], + "spans": [ + { + "bbox": [ + 105, + 156, + 462, + 169 + ], + "score": 1.0, + "content": "in a looser bound. Therefore, in practice we take the minimum between this bound and", + "type": "text" + }, + { + "bbox": [ + 463, + 156, + 485, + 168 + ], + "score": 0.92, + "content": "\\lambda / \\sigma ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 486, + 156, + 505, + 169 + ], + "score": 1.0, + "content": "(the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 168, + 505, + 180 + ], + "spans": [ + { + "bbox": [ + 105, + 168, + 505, + 180 + ], + "score": 1.0, + "content": "data-independent one). The theorem generalizes Theorem 3 from Papernot et al. (2017), where it", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 177, + 486, + 192 + ], + "spans": [ + { + "bbox": [ + 105, + 177, + 262, + 192 + ], + "score": 1.0, + "content": "was shown for a mechanism satisfying", + "type": "text" + }, + { + "bbox": [ + 263, + 180, + 269, + 188 + ], + "score": 0.75, + "content": "\\varepsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 269, + 177, + 369, + 192 + ], + "score": 1.0, + "content": "-differential privacy (i.e.,", + "type": "text" + }, + { + "bbox": [ + 370, + 180, + 428, + 190 + ], + "score": 0.89, + "content": "\\mu _ { 1 } = \\mu _ { 2 } = \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 429, + 177, + 446, + 192 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 446, + 180, + 479, + 190 + ], + "score": 0.88, + "content": "\\varepsilon _ { 1 } = \\varepsilon _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 479, + 177, + 486, + 192 + ], + "score": 1.0, + "content": ").", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 6, + "bbox_fs": [ + 105, + 133, + 505, + 192 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 195, + 503, + 217 + ], + "lines": [ + { + "bbox": [ + 105, + 193, + 505, + 209 + ], + "spans": [ + { + "bbox": [ + 105, + 193, + 435, + 209 + ], + "score": 1.0, + "content": "The final step in our analysis uses the following lemma to bound the probability", + "type": "text" + }, + { + "bbox": [ + 435, + 196, + 442, + 207 + ], + "score": 0.83, + "content": "\\tilde { q }", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 193, + 467, + 209 + ], + "score": 1.0, + "content": "when", + "type": "text" + }, + { + "bbox": [ + 468, + 196, + 477, + 205 + ], + "score": 0.85, + "content": "i ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 477, + 193, + 505, + 209 + ], + "score": 1.0, + "content": "corre-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 206, + 340, + 220 + ], + "spans": [ + { + "bbox": [ + 105, + 206, + 340, + 220 + ], + "score": 1.0, + "content": "sponds to the class with the true plurality of teacher votes.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5, + "bbox_fs": [ + 105, + 193, + 505, + 220 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 218, + 503, + 243 + ], + "lines": [ + { + "bbox": [ + 102, + 213, + 508, + 244 + ], + "spans": [ + { + "bbox": [ + 102, + 213, + 207, + 244 + ], + "score": 1.0, + "content": "Proposition 7. For any erfc is the complementar", + "type": "text" + }, + { + "bbox": [ + 207, + 219, + 245, + 231 + ], + "score": 0.9, + "content": "i ^ { * } \\in [ m ]", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 213, + 287, + 244 + ], + "score": 1.0, + "content": ", we have nction.", + "type": "text" + }, + { + "bbox": [ + 287, + 218, + 414, + 233 + ], + "score": 0.9, + "content": "\\begin{array} { r } { \\mathbf { P r } \\left[ \\mathcal { M } _ { \\sigma } ( D ) \\neq i ^ { * } \\right] \\ \\leq \\ \\frac { 1 } { 2 } \\sum _ { i \\neq i ^ { * } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 415, + 213, + 434, + 244 + ], + "score": 1.0, + "content": "erfc", + "type": "text" + }, + { + "bbox": [ + 434, + 218, + 472, + 233 + ], + "score": 0.84, + "content": "\\left( { \\frac { n _ { i ^ { * } } - n _ { i } } { 2 \\sigma } } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 473, + 213, + 508, + 244 + ], + "score": 1.0, + "content": ", where", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11, + "bbox_fs": [ + 102, + 213, + 508, + 244 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 250, + 505, + 306 + ], + "lines": [ + { + "bbox": [ + 106, + 250, + 505, + 263 + ], + "spans": [ + { + "bbox": [ + 106, + 250, + 505, + 263 + ], + "score": 1.0, + "content": "In Appendix A, we detail how these results translate to privacy bounds. In short, for each query to", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 260, + 506, + 276 + ], + "spans": [ + { + "bbox": [ + 105, + 260, + 281, + 276 + ], + "score": 1.0, + "content": "the GNMax aggregator, given teacher votes", + "type": "text" + }, + { + "bbox": [ + 281, + 263, + 292, + 273 + ], + "score": 0.84, + "content": "n _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 260, + 346, + 276 + ], + "score": 1.0, + "content": "and the class", + "type": "text" + }, + { + "bbox": [ + 347, + 262, + 356, + 272 + ], + "score": 0.85, + "content": "i ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 356, + 260, + 506, + 276 + ], + "score": 1.0, + "content": "with maximal support, Proposition 7", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 272, + 506, + 286 + ], + "spans": [ + { + "bbox": [ + 105, + 272, + 187, + 286 + ], + "score": 1.0, + "content": "gives us the value of", + "type": "text" + }, + { + "bbox": [ + 188, + 273, + 194, + 284 + ], + "score": 0.85, + "content": "\\tilde { q }", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 272, + 348, + 286 + ], + "score": 1.0, + "content": "to use in Theorem 6. We optimize over", + "type": "text" + }, + { + "bbox": [ + 349, + 275, + 360, + 284 + ], + "score": 0.86, + "content": "\\mu _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 272, + 377, + 286 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 378, + 274, + 389, + 284 + ], + "score": 0.85, + "content": "\\mu _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 272, + 506, + 286 + ], + "score": 1.0, + "content": "to get a data-dependent RDP", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 283, + 506, + 297 + ], + "spans": [ + { + "bbox": [ + 105, + 283, + 202, + 297 + ], + "score": 1.0, + "content": "guarantee for any order", + "type": "text" + }, + { + "bbox": [ + 203, + 284, + 210, + 293 + ], + "score": 0.67, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 283, + 506, + 297 + ], + "score": 1.0, + "content": ". Finally, we use composition properties of RDP to analyze a sequence of", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 294, + 371, + 307 + ], + "spans": [ + { + "bbox": [ + 105, + 294, + 301, + 307 + ], + "score": 1.0, + "content": "queries, and translate the RDP bound back to an", + "type": "text" + }, + { + "bbox": [ + 301, + 294, + 323, + 307 + ], + "score": 0.92, + "content": "( \\varepsilon , \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 294, + 371, + 307 + ], + "score": 1.0, + "content": "-DP bound.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 14, + "bbox_fs": [ + 105, + 250, + 506, + 307 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 317, + 505, + 394 + ], + "lines": [ + { + "bbox": [ + 106, + 317, + 505, + 330 + ], + "spans": [ + { + "bbox": [ + 106, + 317, + 505, + 330 + ], + "score": 1.0, + "content": "Expensive queries. This data-dependent privacy analysis leads us to the concept of an expensive", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 329, + 505, + 342 + ], + "spans": [ + { + "bbox": [ + 105, + 329, + 419, + 342 + ], + "score": 1.0, + "content": "query in terms of its privacy cost. When teacher votes largely disagree, some", + "type": "text" + }, + { + "bbox": [ + 419, + 330, + 456, + 339 + ], + "score": 0.9, + "content": "n _ { i ^ { * } } - n _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 456, + 329, + 505, + 342 + ], + "score": 1.0, + "content": "values may", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 340, + 505, + 352 + ], + "spans": [ + { + "bbox": [ + 105, + 340, + 256, + 352 + ], + "score": 1.0, + "content": "be small leading to a large value for", + "type": "text" + }, + { + "bbox": [ + 257, + 340, + 263, + 351 + ], + "score": 0.76, + "content": "\\tilde { q }", + "type": "inline_equation" + }, + { + "bbox": [ + 263, + 340, + 505, + 352 + ], + "score": 1.0, + "content": ": i.e., the lack of consensus amongst teachers indicates that", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 350, + 506, + 364 + ], + "spans": [ + { + "bbox": [ + 105, + 350, + 506, + 364 + ], + "score": 1.0, + "content": "the aggregator is likely to output a wrong label. Thus expensive queries from a privacy perspec-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 361, + 505, + 374 + ], + "spans": [ + { + "bbox": [ + 105, + 361, + 505, + 374 + ], + "score": 1.0, + "content": "tive are often bad for training too. Conversely, queries with strong consensus enable tight privacy", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 371, + 506, + 386 + ], + "spans": [ + { + "bbox": [ + 105, + 371, + 506, + 386 + ], + "score": 1.0, + "content": "bounds. This synergy motivates the aggregation mechanisms discussed in the following sections:", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 383, + 384, + 397 + ], + "spans": [ + { + "bbox": [ + 106, + 383, + 384, + 397 + ], + "score": 1.0, + "content": "they evaluate the strength of the consensus before answering a query.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 20, + "bbox_fs": [ + 105, + 317, + 506, + 397 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 407, + 305, + 418 + ], + "lines": [ + { + "bbox": [ + 105, + 406, + 307, + 420 + ], + "spans": [ + { + "bbox": [ + 105, + 406, + 307, + 420 + ], + "score": 1.0, + "content": "4.2 THE CONFIDENT-GNMAX AGGREGATOR", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 107, + 427, + 505, + 471 + ], + "lines": [ + { + "bbox": [ + 105, + 428, + 505, + 440 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 505, + 440 + ], + "score": 1.0, + "content": "In this section, we propose a refinement of the GNMax aggregator that enables us to filter out queries", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 438, + 505, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 438, + 505, + 451 + ], + "score": 1.0, + "content": "for which teachers do not have a sufficiently strong consensus. This filtering enables the teachers", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 450, + 505, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 450, + 505, + 462 + ], + "score": 1.0, + "content": "to avoid answering expensive queries. We also take note to do this selection step itself in a private", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 462, + 141, + 472 + ], + "spans": [ + { + "bbox": [ + 106, + 462, + 141, + 472 + ], + "score": 1.0, + "content": "manner.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26.5, + "bbox_fs": [ + 105, + 428, + 505, + 472 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 477, + 504, + 544 + ], + "lines": [ + { + "bbox": [ + 106, + 478, + 505, + 491 + ], + "spans": [ + { + "bbox": [ + 106, + 478, + 505, + 491 + ], + "score": 1.0, + "content": "The proposed Confident Aggregator is described in Algorithm 1. To select queries with overwhelm-", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 487, + 506, + 502 + ], + "spans": [ + { + "bbox": [ + 105, + 487, + 413, + 502 + ], + "score": 1.0, + "content": "ing consensus, the algorithm checks if the plurality vote crosses a threshold", + "type": "text" + }, + { + "bbox": [ + 414, + 489, + 422, + 498 + ], + "score": 0.7, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 423, + 487, + 506, + 502 + ], + "score": 1.0, + "content": ". To enforce privacy", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 499, + 506, + 512 + ], + "spans": [ + { + "bbox": [ + 105, + 499, + 418, + 512 + ], + "score": 1.0, + "content": "in this step, the comparison is done after adding Gaussian noise with variance", + "type": "text" + }, + { + "bbox": [ + 418, + 499, + 430, + 511 + ], + "score": 0.89, + "content": "\\sigma _ { 1 } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 430, + 499, + 506, + 512 + ], + "score": 1.0, + "content": ". Then, for queries", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 510, + 506, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 510, + 506, + 523 + ], + "score": 1.0, + "content": "that pass this noisy threshold check, the aggregator proceeds with the usual GNMax mechanism", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 520, + 506, + 535 + ], + "spans": [ + { + "bbox": [ + 105, + 520, + 203, + 535 + ], + "score": 1.0, + "content": "with a smaller variance", + "type": "text" + }, + { + "bbox": [ + 203, + 521, + 215, + 533 + ], + "score": 0.89, + "content": "\\sigma _ { 2 } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 520, + 506, + 535 + ], + "score": 1.0, + "content": ". For queries that do not pass the noisy threshold check, the aggregator", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 532, + 386, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 166, + 546 + ], + "score": 1.0, + "content": "simply returns", + "type": "text" + }, + { + "bbox": [ + 167, + 533, + 176, + 543 + ], + "score": 0.58, + "content": "\\perp", + "type": "inline_equation" + }, + { + "bbox": [ + 176, + 532, + 386, + 546 + ], + "score": 1.0, + "content": "and the student discards this example in its training.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 31.5, + "bbox_fs": [ + 105, + 478, + 506, + 546 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 549, + 505, + 615 + ], + "lines": [ + { + "bbox": [ + 106, + 550, + 505, + 561 + ], + "spans": [ + { + "bbox": [ + 106, + 550, + 352, + 561 + ], + "score": 1.0, + "content": "In practice, we often choose significantly higher values for", + "type": "text" + }, + { + "bbox": [ + 353, + 552, + 364, + 560 + ], + "score": 0.85, + "content": "\\sigma _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 364, + 550, + 420, + 561 + ], + "score": 1.0, + "content": "compared to", + "type": "text" + }, + { + "bbox": [ + 420, + 551, + 432, + 560 + ], + "score": 0.85, + "content": "\\sigma _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 432, + 550, + 505, + 561 + ], + "score": 1.0, + "content": ". This is because", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 560, + 505, + 573 + ], + "spans": [ + { + "bbox": [ + 105, + 560, + 505, + 573 + ], + "score": 1.0, + "content": "we pay the cost of the noisy threshold check always, and without the benefit of knowing that the", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 571, + 505, + 584 + ], + "spans": [ + { + "bbox": [ + 105, + 571, + 223, + 584 + ], + "score": 1.0, + "content": "consensus is strong. We pick", + "type": "text" + }, + { + "bbox": [ + 223, + 572, + 232, + 581 + ], + "score": 0.76, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 571, + 505, + 584 + ], + "score": 1.0, + "content": "so that queries where the plurality gets less than half the votes (often", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 582, + 505, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 505, + 595 + ], + "score": 1.0, + "content": "very expensive) are unlikely to pass the threshold after adding noise, but we still have a high enough", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 594, + 506, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 452, + 606 + ], + "score": 1.0, + "content": "yield amongst the queries with a strong consensus. This tradeoff leads us to look for", + "type": "text" + }, + { + "bbox": [ + 453, + 594, + 461, + 603 + ], + "score": 0.62, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 594, + 506, + 606 + ], + "score": 1.0, + "content": "’s between", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 604, + 258, + 616 + ], + "spans": [ + { + "bbox": [ + 106, + 604, + 128, + 615 + ], + "score": 0.85, + "content": "0 . 6 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 129, + 604, + 140, + 616 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 140, + 605, + 162, + 615 + ], + "score": 0.86, + "content": "0 . 8 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 604, + 258, + 616 + ], + "score": 1.0, + "content": "the number of teachers.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 37.5, + "bbox_fs": [ + 105, + 550, + 506, + 616 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 621, + 505, + 676 + ], + "lines": [ + { + "bbox": [ + 105, + 620, + 505, + 634 + ], + "spans": [ + { + "bbox": [ + 105, + 620, + 505, + 634 + ], + "score": 1.0, + "content": "The privacy cost of this aggregator is intuitive: we pay for the threshold check for every query, and", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 631, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 631, + 505, + 645 + ], + "score": 1.0, + "content": "for the GNMax step only for queries that pass the check. In the work of Papernot et al. (2017), the", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 642, + 505, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 642, + 505, + 656 + ], + "score": 1.0, + "content": "mechanism paid a privacy cost for every query, expensive or otherwise. In comparison, the Confident", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 653, + 507, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 653, + 507, + 668 + ], + "score": 1.0, + "content": "Aggregator expends a much smaller privacy cost to check against the threshold, and by answering a", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 665, + 467, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 467, + 678 + ], + "score": 1.0, + "content": "significantly smaller fraction of expensive queries, it expends a lower privacy cost overall.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 43, + "bbox_fs": [ + 105, + 620, + 507, + 678 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 689, + 315, + 700 + ], + "lines": [ + { + "bbox": [ + 105, + 689, + 316, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 689, + 316, + 702 + ], + "score": 1.0, + "content": "4.3 THE INTERACTIVE-GNMAX AGGREGATOR", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 46 + }, + { + "type": "text", + "bbox": [ + 108, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 708, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 506, + 722 + ], + "score": 1.0, + "content": "While the Confident Aggregator excludes expensive queries, it ignores the possibility that the student", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "might receive labels that contribute little to learning, and in turn to its utility. By incorporating the", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 47.5, + "bbox_fs": [ + 105, + 708, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 104, + 82, + 505, + 106 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 506, + 96 + ], + "score": 1.0, + "content": "Algorithm 1 – Confident-GNMax Aggregator: given a query, consensus among teachers is first", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 457, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 457, + 106 + ], + "score": 1.0, + "content": "estimated in a privacy-preserving way to then only reveal confident teacher predictions.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 107, + 109, + 335, + 176 + ], + "lines": [ + { + "bbox": [ + 106, + 107, + 335, + 122 + ], + "spans": [ + { + "bbox": [ + 106, + 107, + 162, + 122 + ], + "score": 1.0, + "content": "Input: input", + "type": "text" + }, + { + "bbox": [ + 162, + 111, + 168, + 118 + ], + "score": 0.69, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 169, + 107, + 212, + 122 + ], + "score": 1.0, + "content": ", threshold", + "type": "text" + }, + { + "bbox": [ + 212, + 109, + 220, + 118 + ], + "score": 0.76, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 107, + 293, + 122 + ], + "score": 1.0, + "content": ", noise parameters", + "type": "text" + }, + { + "bbox": [ + 294, + 111, + 305, + 120 + ], + "score": 0.83, + "content": "\\sigma _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 305, + 107, + 323, + 122 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 323, + 111, + 335, + 120 + ], + "score": 0.76, + "content": "\\sigma _ { 2 }", + "type": "inline_equation" + } + ], + "index": 2 + }, + { + "bbox": [ + 110, + 119, + 282, + 132 + ], + "spans": [ + { + "bbox": [ + 110, + 119, + 132, + 131 + ], + "score": 1.0, + "content": "1: if", + "type": "text" + }, + { + "bbox": [ + 132, + 119, + 259, + 132 + ], + "score": 0.85, + "content": "\\begin{array} { r } { \\operatorname* { m a x } _ { i } \\{ n _ { j } ( x ) \\} + \\mathcal { N } ( 0 , \\sigma _ { 1 } ^ { 2 } ) \\geq T } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 119, + 282, + 131 + ], + "score": 1.0, + "content": "then", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 111, + 131, + 293, + 145 + ], + "spans": [ + { + "bbox": [ + 111, + 132, + 122, + 143 + ], + "score": 1.0, + "content": "2:", + "type": "text" + }, + { + "bbox": [ + 137, + 131, + 207, + 145 + ], + "score": 1.0, + "content": "return argmaxj", + "type": "text" + }, + { + "bbox": [ + 207, + 131, + 293, + 145 + ], + "score": 0.8, + "content": "\\{ n _ { j } ( x ) + \\mathcal { N } ( 0 , \\sigma _ { 2 } ^ { 2 } ) \\}", + "type": "inline_equation" + } + ], + "index": 5 + }, + { + "bbox": [ + 109, + 142, + 142, + 155 + ], + "spans": [ + { + "bbox": [ + 109, + 142, + 142, + 155 + ], + "score": 1.0, + "content": "3: else", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 110, + 154, + 178, + 165 + ], + "spans": [ + { + "bbox": [ + 110, + 154, + 122, + 165 + ], + "score": 1.0, + "content": "4:", + "type": "text" + }, + { + "bbox": [ + 137, + 154, + 178, + 165 + ], + "score": 1.0, + "content": "return ⊥", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 109, + 165, + 151, + 175 + ], + "spans": [ + { + "bbox": [ + 109, + 165, + 151, + 175 + ], + "score": 1.0, + "content": "5: end if", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 5.5 + }, + { + "type": "text", + "bbox": [ + 368, + 120, + 504, + 143 + ], + "lines": [ + { + "bbox": [ + 376, + 120, + 504, + 131 + ], + "spans": [ + { + "bbox": [ + 376, + 121, + 384, + 129 + ], + "score": 0.28, + "content": "\\triangleright", + "type": "inline_equation" + }, + { + "bbox": [ + 384, + 120, + 504, + 131 + ], + "score": 1.0, + "content": "Privately check for consensus", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 369, + 132, + 504, + 143 + ], + "spans": [ + { + "bbox": [ + 369, + 132, + 504, + 143 + ], + "score": 1.0, + "content": ". Run the usual max-of-Gaussian", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 6.0 + }, + { + "type": "text", + "bbox": [ + 107, + 193, + 503, + 226 + ], + "lines": [ + { + "bbox": [ + 106, + 192, + 505, + 206 + ], + "spans": [ + { + "bbox": [ + 106, + 192, + 505, + 206 + ], + "score": 1.0, + "content": "Algorithm 2 – Interactive-GNMax Aggregator: the protocol first compares student predictions to", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 204, + 505, + 217 + ], + "spans": [ + { + "bbox": [ + 105, + 204, + 505, + 217 + ], + "score": 1.0, + "content": "the teacher votes in a privacy-preserving way to then either (a) reinforce the student prediction for", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 215, + 446, + 227 + ], + "spans": [ + { + "bbox": [ + 106, + 215, + 446, + 227 + ], + "score": 1.0, + "content": "the given query or (b) provide the student with a new label predicted by the teachers.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11 + }, + { + "type": "table", + "bbox": [ + 109, + 230, + 505, + 334 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 109, + 230, + 505, + 334 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 230, + 505, + 334 + ], + "spans": [ + { + "bbox": [ + 109, + 230, + 505, + 334 + ], + "score": 0.595, + "html": "
Input: input x,confidence γ,threshold T,noise parameters O1 ando2,total number of teachers M
1:Ask the student to provide prediction scores p(x) 2:if maxj{nj(x)-Mpj(x)}+N(0,o²)≥Tthen >Student does not agree with teachers
3: return argmaxj{nj(x) +N(0,0²)}
4: else if max{pi(x)}> γ then > Student agrees with teachers and is confident
5: return arg maxj Pj(x)
Reinforce student's prediction 6: else return⊥ No output given for this label
", + "type": "table", + "image_path": "83ff1bf00c04742bdda765bdc63164649d546b4cb06e3b13fa1550a0567c9a63.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 109, + 230, + 505, + 264.6666666666667 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 109, + 264.6666666666667, + 505, + 299.33333333333337 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 109, + 299.33333333333337, + 505, + 334.00000000000006 + ], + "spans": [], + "index": 15 + } + ] + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 108, + 356, + 503, + 378 + ], + "lines": [ + { + "bbox": [ + 106, + 356, + 505, + 369 + ], + "spans": [ + { + "bbox": [ + 106, + 356, + 505, + 369 + ], + "score": 1.0, + "content": "student’s current predictions for its public training data, we design an Interactive Aggregator that", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 367, + 481, + 379 + ], + "spans": [ + { + "bbox": [ + 106, + 367, + 481, + 379 + ], + "score": 1.0, + "content": "discards queries where the student already confidently predicts the same label as the teachers.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5 + }, + { + "type": "text", + "bbox": [ + 107, + 384, + 505, + 439 + ], + "lines": [ + { + "bbox": [ + 106, + 384, + 504, + 396 + ], + "spans": [ + { + "bbox": [ + 106, + 384, + 504, + 396 + ], + "score": 1.0, + "content": "Given a set of queries, the Interactive Aggregator (Algorithm 2) selects those answered by compar-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 395, + 505, + 408 + ], + "spans": [ + { + "bbox": [ + 105, + 395, + 505, + 408 + ], + "score": 1.0, + "content": "ing student predictions to teacher votes for each class. Similar to Step 1 in the Confident Aggregator,", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 405, + 506, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 405, + 506, + 419 + ], + "score": 1.0, + "content": "queries where the plurality of these noised differences crosses a threshold are answered with GN-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 416, + 505, + 430 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 505, + 430 + ], + "score": 1.0, + "content": "Max. This noisy threshold suffices to enforce privacy of the first step because student predictions", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 428, + 485, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 485, + 441 + ], + "score": 1.0, + "content": "can be considered public information (the student is trained in a differentially private manner).", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 107, + 444, + 505, + 511 + ], + "lines": [ + { + "bbox": [ + 106, + 445, + 505, + 456 + ], + "spans": [ + { + "bbox": [ + 106, + 445, + 505, + 456 + ], + "score": 1.0, + "content": "For queries that fail this check, the mechanism reinforces the predicted student label if the student", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 455, + 506, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 455, + 506, + 468 + ], + "score": 1.0, + "content": "is confident enough and does this without looking at teacher votes again. This limited form of", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 467, + 505, + 479 + ], + "spans": [ + { + "bbox": [ + 105, + 467, + 505, + 479 + ], + "score": 1.0, + "content": "supervision comes at a small privacy cost. Moreover, the order of the checks ensures that a student", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 477, + 505, + 490 + ], + "spans": [ + { + "bbox": [ + 105, + 477, + 505, + 490 + ], + "score": 1.0, + "content": "falsely confident in its predictions on a query is not accidentally reinforced if it disagrees with", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 488, + 505, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 505, + 501 + ], + "score": 1.0, + "content": "the teacher consensus. The privacy accounting is identical to the Confident Aggregator except in", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 499, + 484, + 512 + ], + "spans": [ + { + "bbox": [ + 105, + 499, + 484, + 512 + ], + "score": 1.0, + "content": "considering the difference between teachers and the student instead of only the teachers votes.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 25.5 + }, + { + "type": "text", + "bbox": [ + 108, + 516, + 503, + 550 + ], + "lines": [ + { + "bbox": [ + 106, + 516, + 505, + 528 + ], + "spans": [ + { + "bbox": [ + 106, + 516, + 505, + 528 + ], + "score": 1.0, + "content": "In practice, the Confident Aggregator can be used to start training a student when it can make no", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 528, + 505, + 540 + ], + "spans": [ + { + "bbox": [ + 106, + 528, + 505, + 540 + ], + "score": 1.0, + "content": "meaningful predictions and training can be finished off with the Interactive Aggregator after the", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 538, + 234, + 552 + ], + "spans": [ + { + "bbox": [ + 106, + 538, + 234, + 552 + ], + "score": 1.0, + "content": "student gains some proficiency.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30 + }, + { + "type": "title", + "bbox": [ + 108, + 568, + 276, + 580 + ], + "lines": [ + { + "bbox": [ + 104, + 566, + 279, + 583 + ], + "spans": [ + { + "bbox": [ + 104, + 566, + 279, + 583 + ], + "score": 1.0, + "content": "5 EXPERIMENTAL EVALUATION", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 107, + 594, + 505, + 682 + ], + "lines": [ + { + "bbox": [ + 106, + 594, + 505, + 606 + ], + "spans": [ + { + "bbox": [ + 106, + 594, + 505, + 606 + ], + "score": 1.0, + "content": "Our goal is first to show that the improved aggregators introduced in Section 4 enable the application", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 604, + 505, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 505, + 618 + ], + "score": 1.0, + "content": "of PATE to uncurated data, thus departing from previous results on tasks with balanced and well-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 616, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 616, + 505, + 628 + ], + "score": 1.0, + "content": "separated classes. We experiment with the Glyph dataset described below to address two aspects left", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 627, + 506, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 506, + 640 + ], + "score": 1.0, + "content": "open by Papernot et al. (2017): (a) the performance of PATE on a task with a larger number of classes", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 637, + 505, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 505, + 651 + ], + "score": 1.0, + "content": "(the framework was only evaluated on datasets with at most 10 classes) and (b) the privacy-utility", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 648, + 506, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 506, + 662 + ], + "score": 1.0, + "content": "tradeoffs offered by PATE on data that is class imbalanced and partly mislabeled. In Section 5.2, we", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 660, + 505, + 673 + ], + "spans": [ + { + "bbox": [ + 105, + 660, + 505, + 673 + ], + "score": 1.0, + "content": "evaluate the improvements given by the GNMax aggregator over its Laplace counterpart (LNMax)", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 672, + 421, + 682 + ], + "spans": [ + { + "bbox": [ + 106, + 672, + 421, + 682 + ], + "score": 1.0, + "content": "and demonstrate the necessity of the Gaussian mechanism for uncurated tasks.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 36.5 + }, + { + "type": "text", + "bbox": [ + 108, + 687, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 687, + 505, + 699 + ], + "spans": [ + { + "bbox": [ + 106, + 687, + 505, + 699 + ], + "score": 1.0, + "content": "In Section 5.3, we then evaluate the performance of PATE with both the Confident and Interactive", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "Aggregators on all datasets used to benchmark the original PATE framework, in addition to Glyph.", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "With the right teacher and student training, the two mechanisms from Section 4 achieve high ac-", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 721, + 506, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 506, + 732 + ], + "score": 1.0, + "content": "curacy with very tight privacy bounds. Not answering queries for which teacher consensus is too", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 42.5 + } + ], + "page_idx": 7, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 752, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 12, + "width": 9 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 104, + 82, + 505, + 106 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 506, + 96 + ], + "score": 1.0, + "content": "Algorithm 1 – Confident-GNMax Aggregator: given a query, consensus among teachers is first", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 457, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 457, + 106 + ], + "score": 1.0, + "content": "estimated in a privacy-preserving way to then only reveal confident teacher predictions.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 106, + 81, + 506, + 106 + ] + }, + { + "type": "index", + "bbox": [ + 107, + 109, + 335, + 176 + ], + "lines": [ + { + "bbox": [ + 106, + 107, + 335, + 122 + ], + "spans": [ + { + "bbox": [ + 106, + 107, + 162, + 122 + ], + "score": 1.0, + "content": "Input: input", + "type": "text" + }, + { + "bbox": [ + 162, + 111, + 168, + 118 + ], + "score": 0.69, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 169, + 107, + 212, + 122 + ], + "score": 1.0, + "content": ", threshold", + "type": "text" + }, + { + "bbox": [ + 212, + 109, + 220, + 118 + ], + "score": 0.76, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 107, + 293, + 122 + ], + "score": 1.0, + "content": ", noise parameters", + "type": "text" + }, + { + "bbox": [ + 294, + 111, + 305, + 120 + ], + "score": 0.83, + "content": "\\sigma _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 305, + 107, + 323, + 122 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 323, + 111, + 335, + 120 + ], + "score": 0.76, + "content": "\\sigma _ { 2 }", + "type": "inline_equation" + } + ], + "index": 2, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 119, + 282, + 132 + ], + "spans": [ + { + "bbox": [ + 110, + 119, + 132, + 131 + ], + "score": 1.0, + "content": "1: if", + "type": "text" + }, + { + "bbox": [ + 132, + 119, + 259, + 132 + ], + "score": 0.85, + "content": "\\begin{array} { r } { \\operatorname* { m a x } _ { i } \\{ n _ { j } ( x ) \\} + \\mathcal { N } ( 0 , \\sigma _ { 1 } ^ { 2 } ) \\geq T } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 119, + 282, + 131 + ], + "score": 1.0, + "content": "then", + "type": "text" + } + ], + "index": 3, + "is_list_start_line": true + }, + { + "bbox": [ + 111, + 131, + 293, + 145 + ], + "spans": [ + { + "bbox": [ + 111, + 132, + 122, + 143 + ], + "score": 1.0, + "content": "2:", + "type": "text" + }, + { + "bbox": [ + 137, + 131, + 207, + 145 + ], + "score": 1.0, + "content": "return argmaxj", + "type": "text" + }, + { + "bbox": [ + 207, + 131, + 293, + 145 + ], + "score": 0.8, + "content": "\\{ n _ { j } ( x ) + \\mathcal { N } ( 0 , \\sigma _ { 2 } ^ { 2 } ) \\}", + "type": "inline_equation" + } + ], + "index": 5, + "is_list_start_line": true + }, + { + "bbox": [ + 109, + 142, + 142, + 155 + ], + "spans": [ + { + "bbox": [ + 109, + 142, + 142, + 155 + ], + "score": 1.0, + "content": "3: else", + "type": "text" + } + ], + "index": 6, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 154, + 178, + 165 + ], + "spans": [ + { + "bbox": [ + 110, + 154, + 122, + 165 + ], + "score": 1.0, + "content": "4:", + "type": "text" + }, + { + "bbox": [ + 137, + 154, + 178, + 165 + ], + "score": 1.0, + "content": "return ⊥", + "type": "text" + } + ], + "index": 7, + "is_list_start_line": true + }, + { + "bbox": [ + 109, + 165, + 151, + 175 + ], + "spans": [ + { + "bbox": [ + 109, + 165, + 151, + 175 + ], + "score": 1.0, + "content": "5: end if", + "type": "text" + } + ], + "index": 9, + "is_list_start_line": true + } + ], + "index": 5.5, + "bbox_fs": [ + 106, + 107, + 335, + 175 + ] + }, + { + "type": "text", + "bbox": [ + 368, + 120, + 504, + 143 + ], + "lines": [ + { + "bbox": [ + 376, + 120, + 504, + 131 + ], + "spans": [ + { + "bbox": [ + 376, + 121, + 384, + 129 + ], + "score": 0.28, + "content": "\\triangleright", + "type": "inline_equation" + }, + { + "bbox": [ + 384, + 120, + 504, + 131 + ], + "score": 1.0, + "content": "Privately check for consensus", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 369, + 132, + 504, + 143 + ], + "spans": [ + { + "bbox": [ + 369, + 132, + 504, + 143 + ], + "score": 1.0, + "content": ". Run the usual max-of-Gaussian", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 6.0, + "bbox_fs": [ + 369, + 120, + 504, + 143 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 193, + 503, + 226 + ], + "lines": [ + { + "bbox": [ + 106, + 192, + 505, + 206 + ], + "spans": [ + { + "bbox": [ + 106, + 192, + 505, + 206 + ], + "score": 1.0, + "content": "Algorithm 2 – Interactive-GNMax Aggregator: the protocol first compares student predictions to", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 204, + 505, + 217 + ], + "spans": [ + { + "bbox": [ + 105, + 204, + 505, + 217 + ], + "score": 1.0, + "content": "the teacher votes in a privacy-preserving way to then either (a) reinforce the student prediction for", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 215, + 446, + 227 + ], + "spans": [ + { + "bbox": [ + 106, + 215, + 446, + 227 + ], + "score": 1.0, + "content": "the given query or (b) provide the student with a new label predicted by the teachers.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11, + "bbox_fs": [ + 105, + 192, + 505, + 227 + ] + }, + { + "type": "table", + "bbox": [ + 109, + 230, + 505, + 334 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 109, + 230, + 505, + 334 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 230, + 505, + 334 + ], + "spans": [ + { + "bbox": [ + 109, + 230, + 505, + 334 + ], + "score": 0.595, + "html": "
Input: input x,confidence γ,threshold T,noise parameters O1 ando2,total number of teachers M
1:Ask the student to provide prediction scores p(x) 2:if maxj{nj(x)-Mpj(x)}+N(0,o²)≥Tthen >Student does not agree with teachers
3: return argmaxj{nj(x) +N(0,0²)}
4: else if max{pi(x)}> γ then > Student agrees with teachers and is confident
5: return arg maxj Pj(x)
Reinforce student's prediction 6: else return⊥ No output given for this label
", + "type": "table", + "image_path": "83ff1bf00c04742bdda765bdc63164649d546b4cb06e3b13fa1550a0567c9a63.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 109, + 230, + 505, + 264.6666666666667 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 109, + 264.6666666666667, + 505, + 299.33333333333337 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 109, + 299.33333333333337, + 505, + 334.00000000000006 + ], + "spans": [], + "index": 15 + } + ] + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 108, + 356, + 503, + 378 + ], + "lines": [ + { + "bbox": [ + 106, + 356, + 505, + 369 + ], + "spans": [ + { + "bbox": [ + 106, + 356, + 505, + 369 + ], + "score": 1.0, + "content": "student’s current predictions for its public training data, we design an Interactive Aggregator that", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 367, + 481, + 379 + ], + "spans": [ + { + "bbox": [ + 106, + 367, + 481, + 379 + ], + "score": 1.0, + "content": "discards queries where the student already confidently predicts the same label as the teachers.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5, + "bbox_fs": [ + 106, + 356, + 505, + 379 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 384, + 505, + 439 + ], + "lines": [ + { + "bbox": [ + 106, + 384, + 504, + 396 + ], + "spans": [ + { + "bbox": [ + 106, + 384, + 504, + 396 + ], + "score": 1.0, + "content": "Given a set of queries, the Interactive Aggregator (Algorithm 2) selects those answered by compar-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 395, + 505, + 408 + ], + "spans": [ + { + "bbox": [ + 105, + 395, + 505, + 408 + ], + "score": 1.0, + "content": "ing student predictions to teacher votes for each class. Similar to Step 1 in the Confident Aggregator,", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 405, + 506, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 405, + 506, + 419 + ], + "score": 1.0, + "content": "queries where the plurality of these noised differences crosses a threshold are answered with GN-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 416, + 505, + 430 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 505, + 430 + ], + "score": 1.0, + "content": "Max. This noisy threshold suffices to enforce privacy of the first step because student predictions", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 428, + 485, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 485, + 441 + ], + "score": 1.0, + "content": "can be considered public information (the student is trained in a differentially private manner).", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 20, + "bbox_fs": [ + 105, + 384, + 506, + 441 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 444, + 505, + 511 + ], + "lines": [ + { + "bbox": [ + 106, + 445, + 505, + 456 + ], + "spans": [ + { + "bbox": [ + 106, + 445, + 505, + 456 + ], + "score": 1.0, + "content": "For queries that fail this check, the mechanism reinforces the predicted student label if the student", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 455, + 506, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 455, + 506, + 468 + ], + "score": 1.0, + "content": "is confident enough and does this without looking at teacher votes again. This limited form of", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 467, + 505, + 479 + ], + "spans": [ + { + "bbox": [ + 105, + 467, + 505, + 479 + ], + "score": 1.0, + "content": "supervision comes at a small privacy cost. Moreover, the order of the checks ensures that a student", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 477, + 505, + 490 + ], + "spans": [ + { + "bbox": [ + 105, + 477, + 505, + 490 + ], + "score": 1.0, + "content": "falsely confident in its predictions on a query is not accidentally reinforced if it disagrees with", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 488, + 505, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 505, + 501 + ], + "score": 1.0, + "content": "the teacher consensus. The privacy accounting is identical to the Confident Aggregator except in", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 499, + 484, + 512 + ], + "spans": [ + { + "bbox": [ + 105, + 499, + 484, + 512 + ], + "score": 1.0, + "content": "considering the difference between teachers and the student instead of only the teachers votes.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 25.5, + "bbox_fs": [ + 105, + 445, + 506, + 512 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 516, + 503, + 550 + ], + "lines": [ + { + "bbox": [ + 106, + 516, + 505, + 528 + ], + "spans": [ + { + "bbox": [ + 106, + 516, + 505, + 528 + ], + "score": 1.0, + "content": "In practice, the Confident Aggregator can be used to start training a student when it can make no", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 528, + 505, + 540 + ], + "spans": [ + { + "bbox": [ + 106, + 528, + 505, + 540 + ], + "score": 1.0, + "content": "meaningful predictions and training can be finished off with the Interactive Aggregator after the", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 538, + 234, + 552 + ], + "spans": [ + { + "bbox": [ + 106, + 538, + 234, + 552 + ], + "score": 1.0, + "content": "student gains some proficiency.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30, + "bbox_fs": [ + 106, + 516, + 505, + 552 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 568, + 276, + 580 + ], + "lines": [ + { + "bbox": [ + 104, + 566, + 279, + 583 + ], + "spans": [ + { + "bbox": [ + 104, + 566, + 279, + 583 + ], + "score": 1.0, + "content": "5 EXPERIMENTAL EVALUATION", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 107, + 594, + 505, + 682 + ], + "lines": [ + { + "bbox": [ + 106, + 594, + 505, + 606 + ], + "spans": [ + { + "bbox": [ + 106, + 594, + 505, + 606 + ], + "score": 1.0, + "content": "Our goal is first to show that the improved aggregators introduced in Section 4 enable the application", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 604, + 505, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 505, + 618 + ], + "score": 1.0, + "content": "of PATE to uncurated data, thus departing from previous results on tasks with balanced and well-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 616, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 616, + 505, + 628 + ], + "score": 1.0, + "content": "separated classes. We experiment with the Glyph dataset described below to address two aspects left", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 627, + 506, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 506, + 640 + ], + "score": 1.0, + "content": "open by Papernot et al. (2017): (a) the performance of PATE on a task with a larger number of classes", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 637, + 505, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 505, + 651 + ], + "score": 1.0, + "content": "(the framework was only evaluated on datasets with at most 10 classes) and (b) the privacy-utility", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 648, + 506, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 506, + 662 + ], + "score": 1.0, + "content": "tradeoffs offered by PATE on data that is class imbalanced and partly mislabeled. In Section 5.2, we", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 660, + 505, + 673 + ], + "spans": [ + { + "bbox": [ + 105, + 660, + 505, + 673 + ], + "score": 1.0, + "content": "evaluate the improvements given by the GNMax aggregator over its Laplace counterpart (LNMax)", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 672, + 421, + 682 + ], + "spans": [ + { + "bbox": [ + 106, + 672, + 421, + 682 + ], + "score": 1.0, + "content": "and demonstrate the necessity of the Gaussian mechanism for uncurated tasks.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 36.5, + "bbox_fs": [ + 105, + 594, + 506, + 682 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 687, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 687, + 505, + 699 + ], + "spans": [ + { + "bbox": [ + 106, + 687, + 505, + 699 + ], + "score": 1.0, + "content": "In Section 5.3, we then evaluate the performance of PATE with both the Confident and Interactive", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "Aggregators on all datasets used to benchmark the original PATE framework, in addition to Glyph.", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "With the right teacher and student training, the two mechanisms from Section 4 achieve high ac-", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 721, + 506, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 506, + 732 + ], + "score": 1.0, + "content": "curacy with very tight privacy bounds. Not answering queries for which teacher consensus is too", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "low (Confident-GNMax) or the student’s predictions already agree with teacher votes (Interactive-", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 94, + 484, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 94, + 484, + 106 + ], + "score": 1.0, + "content": "GNMax) better aligns utility and privacy: queries are answered at a significantly reduced cost.", + "type": "text", + "cross_page": true + } + ], + "index": 1 + } + ], + "index": 42.5, + "bbox_fs": [ + 105, + 687, + 506, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 503, + 105 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "low (Confident-GNMax) or the student’s predictions already agree with teacher votes (Interactive-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 94, + 484, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 94, + 484, + 106 + ], + "score": 1.0, + "content": "GNMax) better aligns utility and privacy: queries are answered at a significantly reduced cost.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "title", + "bbox": [ + 108, + 119, + 230, + 130 + ], + "lines": [ + { + "bbox": [ + 106, + 118, + 231, + 131 + ], + "spans": [ + { + "bbox": [ + 106, + 118, + 231, + 131 + ], + "score": 1.0, + "content": "5.1 EXPERIMENTAL SETUP", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 107, + 140, + 505, + 217 + ], + "lines": [ + { + "bbox": [ + 106, + 141, + 505, + 151 + ], + "spans": [ + { + "bbox": [ + 106, + 141, + 505, + 151 + ], + "score": 1.0, + "content": "MNIST, SVHN, and the UCI Adult databases. We evaluate with two computer vision tasks", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 151, + 505, + 163 + ], + "spans": [ + { + "bbox": [ + 105, + 151, + 505, + 163 + ], + "score": 1.0, + "content": "(MNIST and Street View House Numbers (Netzer et al., 2011)) and census data from the UCI Adult", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 162, + 505, + 174 + ], + "spans": [ + { + "bbox": [ + 105, + 162, + 505, + 174 + ], + "score": 1.0, + "content": "dataset (Kohavi, 1996). This enables a comparative analysis of the utility-privacy tradeoff achieved", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 172, + 506, + 186 + ], + "spans": [ + { + "bbox": [ + 105, + 172, + 506, + 186 + ], + "score": 1.0, + "content": "with our Confident-GNMax aggregator and the LNMax originally used in PATE. We replicate the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 184, + 506, + 196 + ], + "spans": [ + { + "bbox": [ + 105, + 184, + 506, + 196 + ], + "score": 1.0, + "content": "experimental setup and results found in Papernot et al. (2017) with code and teacher votes made", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 194, + 506, + 209 + ], + "spans": [ + { + "bbox": [ + 105, + 194, + 506, + 209 + ], + "score": 1.0, + "content": "available online. The source code for the privacy analysis in this paper as well as supporting data", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 206, + 315, + 217 + ], + "spans": [ + { + "bbox": [ + 105, + 206, + 315, + 217 + ], + "score": 1.0, + "content": "required to run this analysis is available on Github.1", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 107, + 223, + 505, + 299 + ], + "lines": [ + { + "bbox": [ + 105, + 223, + 505, + 235 + ], + "spans": [ + { + "bbox": [ + 105, + 223, + 505, + 235 + ], + "score": 1.0, + "content": "A detailed description of the experimental setup can be found in Papernot et al. (2017); we provide", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 234, + 505, + 245 + ], + "spans": [ + { + "bbox": [ + 106, + 234, + 505, + 245 + ], + "score": 1.0, + "content": "here only a brief overview. For MNIST and SVHN, teachers are convolutional networks trained on", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 244, + 505, + 256 + ], + "spans": [ + { + "bbox": [ + 105, + 244, + 505, + 256 + ], + "score": 1.0, + "content": "partitions of the training set. For UCI Adult, each teacher is a random forest. The test set is split in", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 256, + 505, + 267 + ], + "spans": [ + { + "bbox": [ + 106, + 256, + 505, + 267 + ], + "score": 1.0, + "content": "two halves: the first is used as unlabeled inputs to simulate the student’s public data and the second", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 266, + 505, + 278 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 505, + 278 + ], + "score": 1.0, + "content": "is used as a hold out to evaluate test performance. The MNIST and SVHN students are convolutional", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 278, + 505, + 290 + ], + "spans": [ + { + "bbox": [ + 105, + 278, + 505, + 290 + ], + "score": 1.0, + "content": "networks trained using semi-supervised learning with GANs à la Salimans et al. (2016). The student", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 288, + 336, + 301 + ], + "spans": [ + { + "bbox": [ + 105, + 288, + 336, + 301 + ], + "score": 1.0, + "content": "for the Adult dataset are fully supervised random forests.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 107, + 313, + 505, + 379 + ], + "lines": [ + { + "bbox": [ + 106, + 312, + 505, + 325 + ], + "spans": [ + { + "bbox": [ + 106, + 312, + 505, + 325 + ], + "score": 1.0, + "content": "Glyph. This optical character recognition task has an order of magnitude more classes than all", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 324, + 506, + 337 + ], + "spans": [ + { + "bbox": [ + 105, + 324, + 506, + 337 + ], + "score": 1.0, + "content": "previous applications of PATE. The Glyph dataset also possesses many characteristics shared by", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 335, + 504, + 348 + ], + "spans": [ + { + "bbox": [ + 105, + 335, + 469, + 348 + ], + "score": 1.0, + "content": "real-world tasks: e.g., it is imbalanced and some inputs are mislabeled. Each input is a", + "type": "text" + }, + { + "bbox": [ + 469, + 335, + 504, + 345 + ], + "score": 0.88, + "content": "2 8 \\times 2 8", + "type": "inline_equation" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 346, + 506, + 358 + ], + "spans": [ + { + "bbox": [ + 105, + 346, + 506, + 358 + ], + "score": 1.0, + "content": "grayscale image containing a single glyph generated synthetically from a collection of over 500K", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 356, + 505, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 356, + 505, + 369 + ], + "score": 1.0, + "content": "computer fonts.2 Samples representative of the difficulties raised by the data are depicted in Figure 3.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 367, + 456, + 380 + ], + "spans": [ + { + "bbox": [ + 106, + 367, + 456, + 380 + ], + "score": 1.0, + "content": "The task is to classify inputs as one of the 150 Unicode symbols used to generate them.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 19.5 + }, + { + "type": "text", + "bbox": [ + 107, + 384, + 504, + 451 + ], + "lines": [ + { + "bbox": [ + 105, + 384, + 506, + 397 + ], + "spans": [ + { + "bbox": [ + 105, + 384, + 506, + 397 + ], + "score": 1.0, + "content": "This set of 150 classes results from pre-processing efforts. We discarded additional classes that", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 395, + 506, + 409 + ], + "spans": [ + { + "bbox": [ + 105, + 395, + 506, + 409 + ], + "score": 1.0, + "content": "had few samples; some classes had at least 50 times fewer inputs than the most popular classes,", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 407, + 505, + 419 + ], + "spans": [ + { + "bbox": [ + 106, + 407, + 505, + 419 + ], + "score": 1.0, + "content": "and these were almost exclusively incorrectly labeled inputs. We also merged classes that were too", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 417, + 506, + 430 + ], + "spans": [ + { + "bbox": [ + 106, + 417, + 506, + 430 + ], + "score": 1.0, + "content": "ambiguous for even a human to differentiate them. Nevertheless, a manual inspection of samples", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 428, + 506, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 506, + 441 + ], + "score": 1.0, + "content": "grouped by classes—favorably to the human observer—led to the conservative estimate that some", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 439, + 486, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 418, + 451 + ], + "score": 1.0, + "content": "classes remain 5 times more frequent, and mislabeled inputs represent at least", + "type": "text" + }, + { + "bbox": [ + 419, + 439, + 438, + 450 + ], + "score": 0.88, + "content": "1 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 438, + 439, + 486, + 451 + ], + "score": 1.0, + "content": "of the data.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 25.5 + }, + { + "type": "text", + "bbox": [ + 107, + 456, + 505, + 511 + ], + "lines": [ + { + "bbox": [ + 105, + 455, + 505, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 455, + 505, + 469 + ], + "score": 1.0, + "content": "To simulate the availability of private and public data (see Section 3.1), we split data originally", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 467, + 506, + 480 + ], + "spans": [ + { + "bbox": [ + 105, + 467, + 506, + 480 + ], + "score": 1.0, + "content": "marked as the training set (about 65M points) into partitions given to the teachers. Each teacher is a", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 478, + 505, + 490 + ], + "spans": [ + { + "bbox": [ + 106, + 478, + 505, + 490 + ], + "score": 1.0, + "content": "ResNet (He et al., 2016) made of 32 leaky ReLU layers. We train on batches of 100 inputs for 40K", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 488, + 506, + 504 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 506, + 504 + ], + "score": 1.0, + "content": "steps using SGD with momentum. The learning rate, initially set to 0.1, is decayed after 10K steps", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 501, + 474, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 501, + 474, + 513 + ], + "score": 1.0, + "content": "to 0.01 and again after 20K steps to 0.001. These parameters were found with a grid search.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 107, + 516, + 505, + 583 + ], + "lines": [ + { + "bbox": [ + 107, + 517, + 505, + 529 + ], + "spans": [ + { + "bbox": [ + 107, + 517, + 505, + 529 + ], + "score": 1.0, + "content": "We split holdout data in two subsets of 100K and 400K samples: the first acts as public data to train", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 528, + 505, + 540 + ], + "spans": [ + { + "bbox": [ + 106, + 528, + 505, + 540 + ], + "score": 1.0, + "content": "the student and the second as its testing data. The student architecture is a convolutional network", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 538, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 538, + 505, + 552 + ], + "score": 1.0, + "content": "learnt in a semi-supervised fashion with virtual adversarial training (VAT) from Miyato et al. (2017).", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 550, + 506, + 563 + ], + "spans": [ + { + "bbox": [ + 106, + 550, + 506, + 563 + ], + "score": 1.0, + "content": "Using unlabeled data, we show how VAT can regularize the student by making predictions constant", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 561, + 505, + 573 + ], + "spans": [ + { + "bbox": [ + 106, + 561, + 505, + 573 + ], + "score": 1.0, + "content": "in adversarial3 directions. Indeed, we found that GANs did not yield as much utility for Glyph as", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 104, + 570, + 468, + 585 + ], + "spans": [ + { + "bbox": [ + 104, + 570, + 429, + 585 + ], + "score": 1.0, + "content": "for MNIST or SVHN. We train with Adam for 400 epochs and a learning rate of", + "type": "text" + }, + { + "bbox": [ + 429, + 571, + 463, + 582 + ], + "score": 0.9, + "content": "6 \\cdot \\mathrm { i 0 ^ { - 5 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 463, + 570, + 468, + 585 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 36.5 + }, + { + "type": "title", + "bbox": [ + 106, + 597, + 366, + 609 + ], + "lines": [ + { + "bbox": [ + 105, + 596, + 368, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 368, + 610 + ], + "score": 1.0, + "content": "5.2 COMPARING THE LNMAX AND GNMAX MECHANISMS", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 40 + }, + { + "type": "text", + "bbox": [ + 108, + 618, + 504, + 651 + ], + "lines": [ + { + "bbox": [ + 106, + 618, + 506, + 631 + ], + "spans": [ + { + "bbox": [ + 106, + 618, + 506, + 631 + ], + "score": 1.0, + "content": "Section 4.1 introduces the GNMax mechanism and the accompanying privacy analysis. With a", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 629, + 506, + 642 + ], + "spans": [ + { + "bbox": [ + 106, + 629, + 506, + 642 + ], + "score": 1.0, + "content": "Gaussian distribution, whose tail diminishes more rapidly than the Laplace distribution, we expect", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 641, + 474, + 653 + ], + "spans": [ + { + "bbox": [ + 106, + 641, + 474, + 653 + ], + "score": 1.0, + "content": "better utility when using the new mechanism (albeit with a more involved privacy analysis).", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42 + }, + { + "type": "text", + "bbox": [ + 106, + 657, + 503, + 680 + ], + "lines": [ + { + "bbox": [ + 106, + 657, + 505, + 670 + ], + "spans": [ + { + "bbox": [ + 106, + 657, + 505, + 670 + ], + "score": 1.0, + "content": "To study the tradeoff between privacy and accuracy with the two mechanisms, we run experiments", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 667, + 505, + 681 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 226, + 681 + ], + "score": 1.0, + "content": "training several ensembles of", + "type": "text" + }, + { + "bbox": [ + 227, + 669, + 239, + 678 + ], + "score": 0.81, + "content": "M", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 667, + 290, + 681 + ], + "score": 1.0, + "content": "teachers for", + "type": "text" + }, + { + "bbox": [ + 290, + 668, + 408, + 680 + ], + "score": 0.93, + "content": "M \\in \\{ 1 0 0 , 5 0 0 , 1 0 0 0 , 5 0 0 0 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 408, + 667, + 505, + 681 + ], + "score": 1.0, + "content": "on the Glyph data. Re-", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 44.5 + } + ], + "page_idx": 8, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 689, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 119, + 688, + 474, + 702 + ], + "spans": [ + { + "bbox": [ + 119, + 688, + 474, + 702 + ], + "score": 1.0, + "content": "1https://github.com/tensorflow/models/tree/master/research/differential_privacy", + "type": "text" + } + ] + }, + { + "bbox": [ + 118, + 698, + 463, + 713 + ], + "spans": [ + { + "bbox": [ + 118, + 698, + 463, + 713 + ], + "score": 1.0, + "content": "2Glyph data is not public but similar data is available publicly as part of the notMNIST dataset.", + "type": "text" + } + ] + }, + { + "bbox": [ + 118, + 709, + 505, + 724 + ], + "spans": [ + { + "bbox": [ + 118, + 709, + 505, + 724 + ], + "score": 1.0, + "content": "3In this context, the adversarial component refers to the phenomenon commonly referred to as adversarial", + "type": "text" + } + ] + }, + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "score": 1.0, + "content": "examples (Biggio et al., 2013; Szegedy et al., 2014) and not to the adversarial training approach taken in GANs.", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "score": 1.0, + "content": "9", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 503, + 105 + ], + "lines": [], + "index": 0.5, + "bbox_fs": [ + 106, + 82, + 505, + 106 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 108, + 119, + 230, + 130 + ], + "lines": [ + { + "bbox": [ + 106, + 118, + 231, + 131 + ], + "spans": [ + { + "bbox": [ + 106, + 118, + 231, + 131 + ], + "score": 1.0, + "content": "5.1 EXPERIMENTAL SETUP", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 107, + 140, + 505, + 217 + ], + "lines": [ + { + "bbox": [ + 106, + 141, + 505, + 151 + ], + "spans": [ + { + "bbox": [ + 106, + 141, + 505, + 151 + ], + "score": 1.0, + "content": "MNIST, SVHN, and the UCI Adult databases. We evaluate with two computer vision tasks", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 151, + 505, + 163 + ], + "spans": [ + { + "bbox": [ + 105, + 151, + 505, + 163 + ], + "score": 1.0, + "content": "(MNIST and Street View House Numbers (Netzer et al., 2011)) and census data from the UCI Adult", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 162, + 505, + 174 + ], + "spans": [ + { + "bbox": [ + 105, + 162, + 505, + 174 + ], + "score": 1.0, + "content": "dataset (Kohavi, 1996). This enables a comparative analysis of the utility-privacy tradeoff achieved", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 172, + 506, + 186 + ], + "spans": [ + { + "bbox": [ + 105, + 172, + 506, + 186 + ], + "score": 1.0, + "content": "with our Confident-GNMax aggregator and the LNMax originally used in PATE. We replicate the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 184, + 506, + 196 + ], + "spans": [ + { + "bbox": [ + 105, + 184, + 506, + 196 + ], + "score": 1.0, + "content": "experimental setup and results found in Papernot et al. (2017) with code and teacher votes made", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 194, + 506, + 209 + ], + "spans": [ + { + "bbox": [ + 105, + 194, + 506, + 209 + ], + "score": 1.0, + "content": "available online. The source code for the privacy analysis in this paper as well as supporting data", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 206, + 315, + 217 + ], + "spans": [ + { + "bbox": [ + 105, + 206, + 315, + 217 + ], + "score": 1.0, + "content": "required to run this analysis is available on Github.1", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 6, + "bbox_fs": [ + 105, + 141, + 506, + 217 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 223, + 505, + 299 + ], + "lines": [ + { + "bbox": [ + 105, + 223, + 505, + 235 + ], + "spans": [ + { + "bbox": [ + 105, + 223, + 505, + 235 + ], + "score": 1.0, + "content": "A detailed description of the experimental setup can be found in Papernot et al. (2017); we provide", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 234, + 505, + 245 + ], + "spans": [ + { + "bbox": [ + 106, + 234, + 505, + 245 + ], + "score": 1.0, + "content": "here only a brief overview. For MNIST and SVHN, teachers are convolutional networks trained on", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 244, + 505, + 256 + ], + "spans": [ + { + "bbox": [ + 105, + 244, + 505, + 256 + ], + "score": 1.0, + "content": "partitions of the training set. For UCI Adult, each teacher is a random forest. The test set is split in", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 256, + 505, + 267 + ], + "spans": [ + { + "bbox": [ + 106, + 256, + 505, + 267 + ], + "score": 1.0, + "content": "two halves: the first is used as unlabeled inputs to simulate the student’s public data and the second", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 266, + 505, + 278 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 505, + 278 + ], + "score": 1.0, + "content": "is used as a hold out to evaluate test performance. The MNIST and SVHN students are convolutional", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 278, + 505, + 290 + ], + "spans": [ + { + "bbox": [ + 105, + 278, + 505, + 290 + ], + "score": 1.0, + "content": "networks trained using semi-supervised learning with GANs à la Salimans et al. (2016). The student", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 288, + 336, + 301 + ], + "spans": [ + { + "bbox": [ + 105, + 288, + 336, + 301 + ], + "score": 1.0, + "content": "for the Adult dataset are fully supervised random forests.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 13, + "bbox_fs": [ + 105, + 223, + 505, + 301 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 313, + 505, + 379 + ], + "lines": [ + { + "bbox": [ + 106, + 312, + 505, + 325 + ], + "spans": [ + { + "bbox": [ + 106, + 312, + 505, + 325 + ], + "score": 1.0, + "content": "Glyph. This optical character recognition task has an order of magnitude more classes than all", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 324, + 506, + 337 + ], + "spans": [ + { + "bbox": [ + 105, + 324, + 506, + 337 + ], + "score": 1.0, + "content": "previous applications of PATE. The Glyph dataset also possesses many characteristics shared by", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 335, + 504, + 348 + ], + "spans": [ + { + "bbox": [ + 105, + 335, + 469, + 348 + ], + "score": 1.0, + "content": "real-world tasks: e.g., it is imbalanced and some inputs are mislabeled. Each input is a", + "type": "text" + }, + { + "bbox": [ + 469, + 335, + 504, + 345 + ], + "score": 0.88, + "content": "2 8 \\times 2 8", + "type": "inline_equation" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 346, + 506, + 358 + ], + "spans": [ + { + "bbox": [ + 105, + 346, + 506, + 358 + ], + "score": 1.0, + "content": "grayscale image containing a single glyph generated synthetically from a collection of over 500K", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 356, + 505, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 356, + 505, + 369 + ], + "score": 1.0, + "content": "computer fonts.2 Samples representative of the difficulties raised by the data are depicted in Figure 3.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 367, + 456, + 380 + ], + "spans": [ + { + "bbox": [ + 106, + 367, + 456, + 380 + ], + "score": 1.0, + "content": "The task is to classify inputs as one of the 150 Unicode symbols used to generate them.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 19.5, + "bbox_fs": [ + 105, + 312, + 506, + 380 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 384, + 504, + 451 + ], + "lines": [ + { + "bbox": [ + 105, + 384, + 506, + 397 + ], + "spans": [ + { + "bbox": [ + 105, + 384, + 506, + 397 + ], + "score": 1.0, + "content": "This set of 150 classes results from pre-processing efforts. We discarded additional classes that", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 395, + 506, + 409 + ], + "spans": [ + { + "bbox": [ + 105, + 395, + 506, + 409 + ], + "score": 1.0, + "content": "had few samples; some classes had at least 50 times fewer inputs than the most popular classes,", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 407, + 505, + 419 + ], + "spans": [ + { + "bbox": [ + 106, + 407, + 505, + 419 + ], + "score": 1.0, + "content": "and these were almost exclusively incorrectly labeled inputs. We also merged classes that were too", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 417, + 506, + 430 + ], + "spans": [ + { + "bbox": [ + 106, + 417, + 506, + 430 + ], + "score": 1.0, + "content": "ambiguous for even a human to differentiate them. Nevertheless, a manual inspection of samples", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 428, + 506, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 506, + 441 + ], + "score": 1.0, + "content": "grouped by classes—favorably to the human observer—led to the conservative estimate that some", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 439, + 486, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 418, + 451 + ], + "score": 1.0, + "content": "classes remain 5 times more frequent, and mislabeled inputs represent at least", + "type": "text" + }, + { + "bbox": [ + 419, + 439, + 438, + 450 + ], + "score": 0.88, + "content": "1 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 438, + 439, + 486, + 451 + ], + "score": 1.0, + "content": "of the data.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 25.5, + "bbox_fs": [ + 105, + 384, + 506, + 451 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 456, + 505, + 511 + ], + "lines": [ + { + "bbox": [ + 105, + 455, + 505, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 455, + 505, + 469 + ], + "score": 1.0, + "content": "To simulate the availability of private and public data (see Section 3.1), we split data originally", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 467, + 506, + 480 + ], + "spans": [ + { + "bbox": [ + 105, + 467, + 506, + 480 + ], + "score": 1.0, + "content": "marked as the training set (about 65M points) into partitions given to the teachers. Each teacher is a", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 478, + 505, + 490 + ], + "spans": [ + { + "bbox": [ + 106, + 478, + 505, + 490 + ], + "score": 1.0, + "content": "ResNet (He et al., 2016) made of 32 leaky ReLU layers. We train on batches of 100 inputs for 40K", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 488, + 506, + 504 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 506, + 504 + ], + "score": 1.0, + "content": "steps using SGD with momentum. The learning rate, initially set to 0.1, is decayed after 10K steps", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 501, + 474, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 501, + 474, + 513 + ], + "score": 1.0, + "content": "to 0.01 and again after 20K steps to 0.001. These parameters were found with a grid search.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 31, + "bbox_fs": [ + 105, + 455, + 506, + 513 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 516, + 505, + 583 + ], + "lines": [ + { + "bbox": [ + 107, + 517, + 505, + 529 + ], + "spans": [ + { + "bbox": [ + 107, + 517, + 505, + 529 + ], + "score": 1.0, + "content": "We split holdout data in two subsets of 100K and 400K samples: the first acts as public data to train", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 528, + 505, + 540 + ], + "spans": [ + { + "bbox": [ + 106, + 528, + 505, + 540 + ], + "score": 1.0, + "content": "the student and the second as its testing data. The student architecture is a convolutional network", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 538, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 538, + 505, + 552 + ], + "score": 1.0, + "content": "learnt in a semi-supervised fashion with virtual adversarial training (VAT) from Miyato et al. (2017).", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 550, + 506, + 563 + ], + "spans": [ + { + "bbox": [ + 106, + 550, + 506, + 563 + ], + "score": 1.0, + "content": "Using unlabeled data, we show how VAT can regularize the student by making predictions constant", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 561, + 505, + 573 + ], + "spans": [ + { + "bbox": [ + 106, + 561, + 505, + 573 + ], + "score": 1.0, + "content": "in adversarial3 directions. Indeed, we found that GANs did not yield as much utility for Glyph as", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 104, + 570, + 468, + 585 + ], + "spans": [ + { + "bbox": [ + 104, + 570, + 429, + 585 + ], + "score": 1.0, + "content": "for MNIST or SVHN. We train with Adam for 400 epochs and a learning rate of", + "type": "text" + }, + { + "bbox": [ + 429, + 571, + 463, + 582 + ], + "score": 0.9, + "content": "6 \\cdot \\mathrm { i 0 ^ { - 5 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 463, + 570, + 468, + 585 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 36.5, + "bbox_fs": [ + 104, + 517, + 506, + 585 + ] + }, + { + "type": "title", + "bbox": [ + 106, + 597, + 366, + 609 + ], + "lines": [ + { + "bbox": [ + 105, + 596, + 368, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 368, + 610 + ], + "score": 1.0, + "content": "5.2 COMPARING THE LNMAX AND GNMAX MECHANISMS", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 40 + }, + { + "type": "text", + "bbox": [ + 108, + 618, + 504, + 651 + ], + "lines": [ + { + "bbox": [ + 106, + 618, + 506, + 631 + ], + "spans": [ + { + "bbox": [ + 106, + 618, + 506, + 631 + ], + "score": 1.0, + "content": "Section 4.1 introduces the GNMax mechanism and the accompanying privacy analysis. With a", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 629, + 506, + 642 + ], + "spans": [ + { + "bbox": [ + 106, + 629, + 506, + 642 + ], + "score": 1.0, + "content": "Gaussian distribution, whose tail diminishes more rapidly than the Laplace distribution, we expect", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 641, + 474, + 653 + ], + "spans": [ + { + "bbox": [ + 106, + 641, + 474, + 653 + ], + "score": 1.0, + "content": "better utility when using the new mechanism (albeit with a more involved privacy analysis).", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42, + "bbox_fs": [ + 106, + 618, + 506, + 653 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 657, + 503, + 680 + ], + "lines": [ + { + "bbox": [ + 106, + 657, + 505, + 670 + ], + "spans": [ + { + "bbox": [ + 106, + 657, + 505, + 670 + ], + "score": 1.0, + "content": "To study the tradeoff between privacy and accuracy with the two mechanisms, we run experiments", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 667, + 505, + 681 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 226, + 681 + ], + "score": 1.0, + "content": "training several ensembles of", + "type": "text" + }, + { + "bbox": [ + 227, + 669, + 239, + 678 + ], + "score": 0.81, + "content": "M", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 667, + 290, + 681 + ], + "score": 1.0, + "content": "teachers for", + "type": "text" + }, + { + "bbox": [ + 290, + 668, + 408, + 680 + ], + "score": 0.93, + "content": "M \\in \\{ 1 0 0 , 5 0 0 , 1 0 0 0 , 5 0 0 0 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 408, + 667, + 505, + 681 + ], + "score": 1.0, + "content": "on the Glyph data. Re-", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 83, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 415, + 95 + ], + "score": 1.0, + "content": "call that 65 million training inputs are partitioned and distributed among the", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 415, + 83, + 427, + 93 + ], + "score": 0.73, + "content": "M", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 427, + 83, + 505, + 95 + ], + "score": 1.0, + "content": "teachers with each", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 369, + 106 + ], + "score": 1.0, + "content": "teacher receiving between 650K and 13K inputs for the values of", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 369, + 94, + 381, + 104 + ], + "score": 0.63, + "content": "M", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 381, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "above. The test data is used to", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 506, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 506, + 118 + ], + "score": 1.0, + "content": "query the teacher ensemble and the resulting labels (after the LNMax and GNMax mechanisms) are", + "type": "text", + "cross_page": true + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 506, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 506, + 128 + ], + "score": 1.0, + "content": "compared with the ground truth labels provided in the dataset. This predictive performance of the", + "type": "text", + "cross_page": true + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 494, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 494, + 140 + ], + "score": 1.0, + "content": "teachers is essential to good student training with accurate labels and is a useful proxy for utility.", + "type": "text", + "cross_page": true + } + ], + "index": 4 + } + ], + "index": 44.5, + "bbox_fs": [ + 105, + 657, + 505, + 681 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 504, + 138 + ], + "lines": [ + { + "bbox": [ + 106, + 83, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 415, + 95 + ], + "score": 1.0, + "content": "call that 65 million training inputs are partitioned and distributed among the", + "type": "text" + }, + { + "bbox": [ + 415, + 83, + 427, + 93 + ], + "score": 0.73, + "content": "M", + "type": "inline_equation" + }, + { + "bbox": [ + 427, + 83, + 505, + 95 + ], + "score": 1.0, + "content": "teachers with each", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 369, + 106 + ], + "score": 1.0, + "content": "teacher receiving between 650K and 13K inputs for the values of", + "type": "text" + }, + { + "bbox": [ + 369, + 94, + 381, + 104 + ], + "score": 0.63, + "content": "M", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "above. The test data is used to", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 506, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 506, + 118 + ], + "score": 1.0, + "content": "query the teacher ensemble and the resulting labels (after the LNMax and GNMax mechanisms) are", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 506, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 506, + 128 + ], + "score": 1.0, + "content": "compared with the ground truth labels provided in the dataset. This predictive performance of the", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 494, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 494, + 140 + ], + "score": 1.0, + "content": "teachers is essential to good student training with accurate labels and is a useful proxy for utility.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 107, + 143, + 505, + 209 + ], + "lines": [ + { + "bbox": [ + 105, + 142, + 506, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 142, + 244, + 156 + ], + "score": 1.0, + "content": "For each mechanism, we compute", + "type": "text" + }, + { + "bbox": [ + 244, + 143, + 266, + 155 + ], + "score": 0.91, + "content": "( \\varepsilon , \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 267, + 142, + 506, + 156 + ], + "score": 1.0, + "content": "-differential privacy guarantees. As is common in literature,", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 104, + 152, + 506, + 167 + ], + "spans": [ + { + "bbox": [ + 104, + 152, + 222, + 167 + ], + "score": 1.0, + "content": "for a dataset on the order of", + "type": "text" + }, + { + "bbox": [ + 222, + 154, + 238, + 164 + ], + "score": 0.88, + "content": "\\bar { 1 0 } ^ { 8 }", + "type": "inline_equation" + }, + { + "bbox": [ + 238, + 152, + 322, + 167 + ], + "score": 1.0, + "content": "samples, we choose", + "type": "text" + }, + { + "bbox": [ + 322, + 154, + 363, + 164 + ], + "score": 0.92, + "content": "\\delta = \\bar { 1 0 } ^ { - 8 }", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 152, + 486, + 167 + ], + "score": 1.0, + "content": "and denote the corresponding", + "type": "text" + }, + { + "bbox": [ + 487, + 156, + 493, + 164 + ], + "score": 0.69, + "content": "\\varepsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 493, + 152, + 506, + 167 + ], + "score": 1.0, + "content": "as", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 165, + 505, + 177 + ], + "spans": [ + { + "bbox": [ + 106, + 165, + 217, + 177 + ], + "score": 1.0, + "content": "the privacy cost. The total", + "type": "text" + }, + { + "bbox": [ + 217, + 167, + 223, + 175 + ], + "score": 0.77, + "content": "\\varepsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 224, + 165, + 505, + 177 + ], + "score": 1.0, + "content": "is calculated on a subset of 4,000 queries, which is representative of", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 176, + 506, + 188 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 506, + 188 + ], + "score": 1.0, + "content": "the number of labels needed by a student for accurate training (see Section 5.3). We visualize in", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 187, + 505, + 199 + ], + "spans": [ + { + "bbox": [ + 106, + 187, + 505, + 199 + ], + "score": 1.0, + "content": "Figure 4 the effect of the noise distribution (left) and the number of teachers (right) on the tradeoff", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 197, + 275, + 212 + ], + "spans": [ + { + "bbox": [ + 105, + 197, + 275, + 212 + ], + "score": 1.0, + "content": "between privacy costs and label accuracy.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 7.5 + }, + { + "type": "text", + "bbox": [ + 106, + 221, + 505, + 331 + ], + "lines": [ + { + "bbox": [ + 105, + 220, + 506, + 235 + ], + "spans": [ + { + "bbox": [ + 105, + 220, + 506, + 235 + ], + "score": 1.0, + "content": "Observations. On the left of Figure 1, we compare our GNMax aggregator to the LNMax aggrega-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 232, + 505, + 245 + ], + "spans": [ + { + "bbox": [ + 106, + 232, + 505, + 245 + ], + "score": 1.0, + "content": "tor used by the original PATE proposal, on an ensemble of 1000 teachers and for varying noise scales", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 107, + 244, + 506, + 256 + ], + "spans": [ + { + "bbox": [ + 107, + 245, + 114, + 253 + ], + "score": 0.7, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 244, + 506, + 256 + ], + "score": 1.0, + "content": ". At fixed test accuracy, the GNMax algorithm consistently outperforms the LNMax mechanism", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 254, + 505, + 267 + ], + "spans": [ + { + "bbox": [ + 105, + 254, + 505, + 267 + ], + "score": 1.0, + "content": "in terms of privacy cost. To explain this improved performance, recall notation from Section 4.1.", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 264, + 506, + 279 + ], + "spans": [ + { + "bbox": [ + 105, + 264, + 408, + 279 + ], + "score": 1.0, + "content": "For both mechanisms, the data dependent privacy cost scales linearly with", + "type": "text" + }, + { + "bbox": [ + 409, + 266, + 415, + 277 + ], + "score": 0.8, + "content": "\\tilde { q }", + "type": "inline_equation" + }, + { + "bbox": [ + 415, + 264, + 506, + 279 + ], + "score": 1.0, + "content": "—the likelihood of an", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 276, + 504, + 289 + ], + "spans": [ + { + "bbox": [ + 105, + 276, + 306, + 289 + ], + "score": 1.0, + "content": "answer other than the true plurality. The value of", + "type": "text" + }, + { + "bbox": [ + 306, + 277, + 313, + 288 + ], + "score": 0.84, + "content": "\\tilde { q }", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 276, + 355, + 289 + ], + "score": 1.0, + "content": "falls of as", + "type": "text" + }, + { + "bbox": [ + 356, + 276, + 397, + 288 + ], + "score": 0.93, + "content": "\\exp ( - x ^ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 398, + 276, + 466, + 289 + ], + "score": 1.0, + "content": "for GNMax and", + "type": "text" + }, + { + "bbox": [ + 466, + 276, + 504, + 288 + ], + "score": 0.92, + "content": "\\exp ( - x )", + "type": "inline_equation" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 286, + 505, + 300 + ], + "spans": [ + { + "bbox": [ + 105, + 286, + 183, + 300 + ], + "score": 1.0, + "content": "for LNMax, where", + "type": "text" + }, + { + "bbox": [ + 183, + 289, + 190, + 297 + ], + "score": 0.75, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 286, + 235, + 300 + ], + "score": 1.0, + "content": "is the ratio", + "type": "text" + }, + { + "bbox": [ + 236, + 287, + 288, + 299 + ], + "score": 0.93, + "content": "( \\dot { n _ { i ^ { * } } } - n _ { i } ) / \\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 286, + 341, + 300 + ], + "score": 1.0, + "content": ". Thus, when", + "type": "text" + }, + { + "bbox": [ + 341, + 289, + 375, + 298 + ], + "score": 0.89, + "content": "n _ { i ^ { * } } - n _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 375, + 286, + 407, + 300 + ], + "score": 1.0, + "content": "is (say)", + "type": "text" + }, + { + "bbox": [ + 407, + 288, + 420, + 298 + ], + "score": 0.82, + "content": "4 \\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 286, + 505, + 300 + ], + "score": 1.0, + "content": ", LNMax would have", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 295, + 507, + 312 + ], + "spans": [ + { + "bbox": [ + 106, + 298, + 189, + 310 + ], + "score": 0.89, + "content": "\\tilde { q } \\approx e ^ { - 4 } = 0 . 0 1 8 . . .", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 295, + 315, + 312 + ], + "score": 1.0, + "content": ", whereas GNMax would have", + "type": "text" + }, + { + "bbox": [ + 315, + 298, + 392, + 310 + ], + "score": 0.9, + "content": "\\tilde { q } \\approx e ^ { - 1 6 } \\approx 1 0 ^ { - 7 }", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 295, + 507, + 312 + ], + "score": 1.0, + "content": ", thereby leading to a much", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 309, + 506, + 322 + ], + "spans": [ + { + "bbox": [ + 105, + 309, + 404, + 322 + ], + "score": 1.0, + "content": "higher likelihood of returning the true plurality. Moreover, this reduced", + "type": "text" + }, + { + "bbox": [ + 405, + 310, + 411, + 321 + ], + "score": 0.83, + "content": "\\tilde { q }", + "type": "inline_equation" + }, + { + "bbox": [ + 412, + 309, + 506, + 322 + ], + "score": 1.0, + "content": "translates to a smaller", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 320, + 380, + 333 + ], + "spans": [ + { + "bbox": [ + 105, + 320, + 201, + 333 + ], + "score": 1.0, + "content": "privacy cost for a given", + "type": "text" + }, + { + "bbox": [ + 202, + 322, + 209, + 330 + ], + "score": 0.75, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 320, + 380, + 333 + ], + "score": 1.0, + "content": "leading to a better utility-privacy tradeoff.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 15.5 + }, + { + "type": "text", + "bbox": [ + 107, + 337, + 505, + 392 + ], + "lines": [ + { + "bbox": [ + 106, + 337, + 504, + 349 + ], + "spans": [ + { + "bbox": [ + 106, + 337, + 492, + 349 + ], + "score": 1.0, + "content": "As long as each teacher has sufficient data to learn a good-enough model, increasing the number", + "type": "text" + }, + { + "bbox": [ + 492, + 337, + 504, + 347 + ], + "score": 0.72, + "content": "M", + "type": "inline_equation" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 347, + 505, + 361 + ], + "spans": [ + { + "bbox": [ + 105, + 347, + 505, + 361 + ], + "score": 1.0, + "content": "of teachers improves the tradeoff—as illustrated on the right of Figure 4 with GNMax. The larger", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 358, + 505, + 372 + ], + "spans": [ + { + "bbox": [ + 105, + 358, + 406, + 372 + ], + "score": 1.0, + "content": "ensembles lower the privacy cost of answering queries by tolerating larger", + "type": "text" + }, + { + "bbox": [ + 406, + 361, + 414, + 369 + ], + "score": 0.7, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 414, + 358, + 505, + 372 + ], + "score": 1.0, + "content": "’s. Combining the two", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 369, + 505, + 384 + ], + "spans": [ + { + "bbox": [ + 105, + 369, + 505, + 384 + ], + "score": 1.0, + "content": "observations made in this Figure, for a fixed label accuracy, we lower privacy costs by switching to", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 380, + 379, + 394 + ], + "spans": [ + { + "bbox": [ + 105, + 380, + 317, + 394 + ], + "score": 1.0, + "content": "the GNMax aggregator and training a larger number", + "type": "text" + }, + { + "bbox": [ + 317, + 381, + 329, + 391 + ], + "score": 0.76, + "content": "M", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 380, + 379, + 394 + ], + "score": 1.0, + "content": "of teachers.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 23 + }, + { + "type": "title", + "bbox": [ + 108, + 405, + 431, + 417 + ], + "lines": [ + { + "bbox": [ + 105, + 405, + 433, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 405, + 433, + 419 + ], + "score": 1.0, + "content": "5.3 STUDENT TRAINING WITH THE GNMAX AGGREGATION MECHANISMS", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 107, + 426, + 505, + 536 + ], + "lines": [ + { + "bbox": [ + 106, + 426, + 505, + 439 + ], + "spans": [ + { + "bbox": [ + 106, + 426, + 505, + 439 + ], + "score": 1.0, + "content": "As outlined in Section 3, we train a student on public data labeled by the aggregation mechanisms.", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 438, + 505, + 450 + ], + "spans": [ + { + "bbox": [ + 106, + 438, + 505, + 450 + ], + "score": 1.0, + "content": "We take advantage of PATE’s flexibility and apply the technique that performs best on each dataset:", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 448, + 505, + 460 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 505, + 460 + ], + "score": 1.0, + "content": "semi-supervised learning with Generative Adversarial Networks (Salimans et al., 2016) for MNIST", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 459, + 505, + 472 + ], + "spans": [ + { + "bbox": [ + 105, + 459, + 505, + 472 + ], + "score": 1.0, + "content": "and SVHN, Virtual Adversarial Training (Miyato et al., 2017) for Glyph, and fully-supervised ran-", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 468, + 506, + 484 + ], + "spans": [ + { + "bbox": [ + 105, + 468, + 506, + 484 + ], + "score": 1.0, + "content": "dom forests for UCI Adult. In addition to evaluating the total privacy cost associated with training", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 482, + 506, + 494 + ], + "spans": [ + { + "bbox": [ + 105, + 482, + 506, + 494 + ], + "score": 1.0, + "content": "the student model, we compare its utility to a non-private baseline obtained by training on the sensi-", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 492, + 505, + 504 + ], + "spans": [ + { + "bbox": [ + 106, + 492, + 363, + 504 + ], + "score": 1.0, + "content": "tive data (used to train teachers in PATE): we use the baselines of", + "type": "text" + }, + { + "bbox": [ + 364, + 492, + 390, + 503 + ], + "score": 0.83, + "content": "9 9 . 2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 391, + 492, + 394, + 504 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 394, + 492, + 421, + 503 + ], + "score": 0.84, + "content": "9 2 . 8 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 422, + 492, + 441, + 504 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 441, + 492, + 469, + 503 + ], + "score": 0.88, + "content": "8 \\bar { 5 } . 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 469, + 492, + 505, + 504 + ], + "score": 1.0, + "content": "reported", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 503, + 505, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 503, + 505, + 516 + ], + "score": 1.0, + "content": "by Papernot et al. (2017) respectively for MNIST, SVHN, and UCI Adult, and we measure a base-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 514, + 504, + 527 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 136, + 527 + ], + "score": 1.0, + "content": "line of", + "type": "text" + }, + { + "bbox": [ + 136, + 514, + 164, + 525 + ], + "score": 0.89, + "content": "8 2 . 2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 514, + 267, + 527 + ], + "score": 1.0, + "content": "for Glyph. We compute", + "type": "text" + }, + { + "bbox": [ + 267, + 514, + 289, + 526 + ], + "score": 0.91, + "content": "( \\varepsilon , \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 290, + 514, + 497, + 527 + ], + "score": 1.0, + "content": "-privacy bounds and denote the privacy cost as the", + "type": "text" + }, + { + "bbox": [ + 498, + 516, + 504, + 524 + ], + "score": 0.71, + "content": "\\varepsilon", + "type": "inline_equation" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 524, + 376, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 524, + 181, + 538 + ], + "score": 1.0, + "content": "value at a value of", + "type": "text" + }, + { + "bbox": [ + 182, + 525, + 188, + 535 + ], + "score": 0.78, + "content": "\\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 188, + 524, + 376, + 538 + ], + "score": 1.0, + "content": "set accordingly to number of training samples.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 31.5 + }, + { + "type": "text", + "bbox": [ + 107, + 549, + 504, + 614 + ], + "lines": [ + { + "bbox": [ + 105, + 548, + 506, + 561 + ], + "spans": [ + { + "bbox": [ + 105, + 548, + 506, + 561 + ], + "score": 1.0, + "content": "Confident-GNMax Aggregator. Given a pool of 500 to 12,000 samples to learn from (depending", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 560, + 505, + 572 + ], + "spans": [ + { + "bbox": [ + 105, + 560, + 505, + 572 + ], + "score": 1.0, + "content": "on the dataset), the student submits queries to the teacher ensemble running the Confident-GNMax", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 570, + 504, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 570, + 479, + 585 + ], + "score": 1.0, + "content": "aggregator from Section 4.2. A grid search over a range of plausible values for parameters", + "type": "text" + }, + { + "bbox": [ + 479, + 571, + 488, + 581 + ], + "score": 0.64, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 488, + 570, + 492, + 585 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 492, + 572, + 504, + 582 + ], + "score": 0.76, + "content": "\\sigma _ { 1 }", + "type": "inline_equation" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 580, + 506, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 580, + 124, + 595 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 583, + 136, + 592 + ], + "score": 0.85, + "content": "\\sigma _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 136, + 580, + 506, + 595 + ], + "score": 1.0, + "content": "yielded the values reported in Table 1, illustrating the tradeoff between utility and privacy", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 592, + 506, + 605 + ], + "spans": [ + { + "bbox": [ + 105, + 592, + 506, + 605 + ], + "score": 1.0, + "content": "achieved. We additionally measure the number of queries selected by the teachers to be answered", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 604, + 320, + 615 + ], + "spans": [ + { + "bbox": [ + 106, + 604, + 320, + 615 + ], + "score": 1.0, + "content": "and compare student utility to a non-private baseline.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 39.5 + }, + { + "type": "text", + "bbox": [ + 107, + 620, + 505, + 697 + ], + "lines": [ + { + "bbox": [ + 105, + 619, + 505, + 633 + ], + "spans": [ + { + "bbox": [ + 105, + 619, + 505, + 633 + ], + "score": 1.0, + "content": "The Confident-GNMax aggregator outperforms LNMax for the four datasets considered in the origi-", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 631, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 631, + 291, + 645 + ], + "score": 1.0, + "content": "nal PATE proposal: it reduces the privacy cost", + "type": "text" + }, + { + "bbox": [ + 291, + 633, + 297, + 641 + ], + "score": 0.63, + "content": "\\varepsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 631, + 505, + 645 + ], + "score": 1.0, + "content": ", increases student accuracy, or both simultaneously.", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 641, + 505, + 654 + ], + "spans": [ + { + "bbox": [ + 105, + 641, + 505, + 654 + ], + "score": 1.0, + "content": "On the uncurated Glyph data, despite the imbalance of classes and mislabeled data (as evidenced", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 653, + 505, + 666 + ], + "spans": [ + { + "bbox": [ + 105, + 653, + 134, + 666 + ], + "score": 1.0, + "content": "by the", + "type": "text" + }, + { + "bbox": [ + 135, + 653, + 162, + 664 + ], + "score": 0.86, + "content": "8 2 . 2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 653, + 347, + 666 + ], + "score": 1.0, + "content": "baseline), the Confident Aggregator achieves", + "type": "text" + }, + { + "bbox": [ + 348, + 653, + 375, + 664 + ], + "score": 0.9, + "content": "7 3 . 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 375, + 653, + 505, + 666 + ], + "score": 1.0, + "content": "accuracy with a privacy cost of", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 664, + 505, + 677 + ], + "spans": [ + { + "bbox": [ + 105, + 664, + 124, + 677 + ], + "score": 1.0, + "content": "just", + "type": "text" + }, + { + "bbox": [ + 124, + 665, + 164, + 675 + ], + "score": 0.88, + "content": "\\varepsilon = 1 . 0 2", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 664, + 505, + 677 + ], + "score": 1.0, + "content": ". Roughly 1,300 out of 12,000 queries made are not answered, indicating that sev-", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 676, + 505, + 688 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 505, + 688 + ], + "score": 1.0, + "content": "eral expensive queries were successfully avoided. This selectivity is analyzed in more details in", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 686, + 156, + 698 + ], + "spans": [ + { + "bbox": [ + 105, + 686, + 156, + 698 + ], + "score": 1.0, + "content": "Section 5.4.", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 46 + }, + { + "type": "text", + "bbox": [ + 106, + 709, + 504, + 731 + ], + "lines": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "Interactive-GNMax Aggregator. On Glyph, we evaluate the utility and privacy of an interactive", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 106, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "training routine that proceeds in two rounds. Round one runs student training with a Confident", + "type": "text" + } + ], + "index": 51 + } + ], + "index": 50.5 + } + ], + "page_idx": 9, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 301, + 752, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 14 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 504, + 138 + ], + "lines": [], + "index": 2, + "bbox_fs": [ + 105, + 83, + 506, + 140 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 143, + 505, + 209 + ], + "lines": [ + { + "bbox": [ + 105, + 142, + 506, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 142, + 244, + 156 + ], + "score": 1.0, + "content": "For each mechanism, we compute", + "type": "text" + }, + { + "bbox": [ + 244, + 143, + 266, + 155 + ], + "score": 0.91, + "content": "( \\varepsilon , \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 267, + 142, + 506, + 156 + ], + "score": 1.0, + "content": "-differential privacy guarantees. As is common in literature,", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 104, + 152, + 506, + 167 + ], + "spans": [ + { + "bbox": [ + 104, + 152, + 222, + 167 + ], + "score": 1.0, + "content": "for a dataset on the order of", + "type": "text" + }, + { + "bbox": [ + 222, + 154, + 238, + 164 + ], + "score": 0.88, + "content": "\\bar { 1 0 } ^ { 8 }", + "type": "inline_equation" + }, + { + "bbox": [ + 238, + 152, + 322, + 167 + ], + "score": 1.0, + "content": "samples, we choose", + "type": "text" + }, + { + "bbox": [ + 322, + 154, + 363, + 164 + ], + "score": 0.92, + "content": "\\delta = \\bar { 1 0 } ^ { - 8 }", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 152, + 486, + 167 + ], + "score": 1.0, + "content": "and denote the corresponding", + "type": "text" + }, + { + "bbox": [ + 487, + 156, + 493, + 164 + ], + "score": 0.69, + "content": "\\varepsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 493, + 152, + 506, + 167 + ], + "score": 1.0, + "content": "as", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 165, + 505, + 177 + ], + "spans": [ + { + "bbox": [ + 106, + 165, + 217, + 177 + ], + "score": 1.0, + "content": "the privacy cost. The total", + "type": "text" + }, + { + "bbox": [ + 217, + 167, + 223, + 175 + ], + "score": 0.77, + "content": "\\varepsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 224, + 165, + 505, + 177 + ], + "score": 1.0, + "content": "is calculated on a subset of 4,000 queries, which is representative of", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 176, + 506, + 188 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 506, + 188 + ], + "score": 1.0, + "content": "the number of labels needed by a student for accurate training (see Section 5.3). We visualize in", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 187, + 505, + 199 + ], + "spans": [ + { + "bbox": [ + 106, + 187, + 505, + 199 + ], + "score": 1.0, + "content": "Figure 4 the effect of the noise distribution (left) and the number of teachers (right) on the tradeoff", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 197, + 275, + 212 + ], + "spans": [ + { + "bbox": [ + 105, + 197, + 275, + 212 + ], + "score": 1.0, + "content": "between privacy costs and label accuracy.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 7.5, + "bbox_fs": [ + 104, + 142, + 506, + 212 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 221, + 505, + 331 + ], + "lines": [ + { + "bbox": [ + 105, + 220, + 506, + 235 + ], + "spans": [ + { + "bbox": [ + 105, + 220, + 506, + 235 + ], + "score": 1.0, + "content": "Observations. On the left of Figure 1, we compare our GNMax aggregator to the LNMax aggrega-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 232, + 505, + 245 + ], + "spans": [ + { + "bbox": [ + 106, + 232, + 505, + 245 + ], + "score": 1.0, + "content": "tor used by the original PATE proposal, on an ensemble of 1000 teachers and for varying noise scales", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 107, + 244, + 506, + 256 + ], + "spans": [ + { + "bbox": [ + 107, + 245, + 114, + 253 + ], + "score": 0.7, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 244, + 506, + 256 + ], + "score": 1.0, + "content": ". At fixed test accuracy, the GNMax algorithm consistently outperforms the LNMax mechanism", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 254, + 505, + 267 + ], + "spans": [ + { + "bbox": [ + 105, + 254, + 505, + 267 + ], + "score": 1.0, + "content": "in terms of privacy cost. To explain this improved performance, recall notation from Section 4.1.", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 264, + 506, + 279 + ], + "spans": [ + { + "bbox": [ + 105, + 264, + 408, + 279 + ], + "score": 1.0, + "content": "For both mechanisms, the data dependent privacy cost scales linearly with", + "type": "text" + }, + { + "bbox": [ + 409, + 266, + 415, + 277 + ], + "score": 0.8, + "content": "\\tilde { q }", + "type": "inline_equation" + }, + { + "bbox": [ + 415, + 264, + 506, + 279 + ], + "score": 1.0, + "content": "—the likelihood of an", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 276, + 504, + 289 + ], + "spans": [ + { + "bbox": [ + 105, + 276, + 306, + 289 + ], + "score": 1.0, + "content": "answer other than the true plurality. The value of", + "type": "text" + }, + { + "bbox": [ + 306, + 277, + 313, + 288 + ], + "score": 0.84, + "content": "\\tilde { q }", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 276, + 355, + 289 + ], + "score": 1.0, + "content": "falls of as", + "type": "text" + }, + { + "bbox": [ + 356, + 276, + 397, + 288 + ], + "score": 0.93, + "content": "\\exp ( - x ^ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 398, + 276, + 466, + 289 + ], + "score": 1.0, + "content": "for GNMax and", + "type": "text" + }, + { + "bbox": [ + 466, + 276, + 504, + 288 + ], + "score": 0.92, + "content": "\\exp ( - x )", + "type": "inline_equation" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 286, + 505, + 300 + ], + "spans": [ + { + "bbox": [ + 105, + 286, + 183, + 300 + ], + "score": 1.0, + "content": "for LNMax, where", + "type": "text" + }, + { + "bbox": [ + 183, + 289, + 190, + 297 + ], + "score": 0.75, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 286, + 235, + 300 + ], + "score": 1.0, + "content": "is the ratio", + "type": "text" + }, + { + "bbox": [ + 236, + 287, + 288, + 299 + ], + "score": 0.93, + "content": "( \\dot { n _ { i ^ { * } } } - n _ { i } ) / \\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 286, + 341, + 300 + ], + "score": 1.0, + "content": ". Thus, when", + "type": "text" + }, + { + "bbox": [ + 341, + 289, + 375, + 298 + ], + "score": 0.89, + "content": "n _ { i ^ { * } } - n _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 375, + 286, + 407, + 300 + ], + "score": 1.0, + "content": "is (say)", + "type": "text" + }, + { + "bbox": [ + 407, + 288, + 420, + 298 + ], + "score": 0.82, + "content": "4 \\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 286, + 505, + 300 + ], + "score": 1.0, + "content": ", LNMax would have", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 295, + 507, + 312 + ], + "spans": [ + { + "bbox": [ + 106, + 298, + 189, + 310 + ], + "score": 0.89, + "content": "\\tilde { q } \\approx e ^ { - 4 } = 0 . 0 1 8 . . .", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 295, + 315, + 312 + ], + "score": 1.0, + "content": ", whereas GNMax would have", + "type": "text" + }, + { + "bbox": [ + 315, + 298, + 392, + 310 + ], + "score": 0.9, + "content": "\\tilde { q } \\approx e ^ { - 1 6 } \\approx 1 0 ^ { - 7 }", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 295, + 507, + 312 + ], + "score": 1.0, + "content": ", thereby leading to a much", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 309, + 506, + 322 + ], + "spans": [ + { + "bbox": [ + 105, + 309, + 404, + 322 + ], + "score": 1.0, + "content": "higher likelihood of returning the true plurality. Moreover, this reduced", + "type": "text" + }, + { + "bbox": [ + 405, + 310, + 411, + 321 + ], + "score": 0.83, + "content": "\\tilde { q }", + "type": "inline_equation" + }, + { + "bbox": [ + 412, + 309, + 506, + 322 + ], + "score": 1.0, + "content": "translates to a smaller", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 320, + 380, + 333 + ], + "spans": [ + { + "bbox": [ + 105, + 320, + 201, + 333 + ], + "score": 1.0, + "content": "privacy cost for a given", + "type": "text" + }, + { + "bbox": [ + 202, + 322, + 209, + 330 + ], + "score": 0.75, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 320, + 380, + 333 + ], + "score": 1.0, + "content": "leading to a better utility-privacy tradeoff.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 15.5, + "bbox_fs": [ + 105, + 220, + 507, + 333 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 337, + 505, + 392 + ], + "lines": [ + { + "bbox": [ + 106, + 337, + 504, + 349 + ], + "spans": [ + { + "bbox": [ + 106, + 337, + 492, + 349 + ], + "score": 1.0, + "content": "As long as each teacher has sufficient data to learn a good-enough model, increasing the number", + "type": "text" + }, + { + "bbox": [ + 492, + 337, + 504, + 347 + ], + "score": 0.72, + "content": "M", + "type": "inline_equation" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 347, + 505, + 361 + ], + "spans": [ + { + "bbox": [ + 105, + 347, + 505, + 361 + ], + "score": 1.0, + "content": "of teachers improves the tradeoff—as illustrated on the right of Figure 4 with GNMax. The larger", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 358, + 505, + 372 + ], + "spans": [ + { + "bbox": [ + 105, + 358, + 406, + 372 + ], + "score": 1.0, + "content": "ensembles lower the privacy cost of answering queries by tolerating larger", + "type": "text" + }, + { + "bbox": [ + 406, + 361, + 414, + 369 + ], + "score": 0.7, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 414, + 358, + 505, + 372 + ], + "score": 1.0, + "content": "’s. Combining the two", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 369, + 505, + 384 + ], + "spans": [ + { + "bbox": [ + 105, + 369, + 505, + 384 + ], + "score": 1.0, + "content": "observations made in this Figure, for a fixed label accuracy, we lower privacy costs by switching to", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 380, + 379, + 394 + ], + "spans": [ + { + "bbox": [ + 105, + 380, + 317, + 394 + ], + "score": 1.0, + "content": "the GNMax aggregator and training a larger number", + "type": "text" + }, + { + "bbox": [ + 317, + 381, + 329, + 391 + ], + "score": 0.76, + "content": "M", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 380, + 379, + 394 + ], + "score": 1.0, + "content": "of teachers.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 23, + "bbox_fs": [ + 105, + 337, + 505, + 394 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 405, + 431, + 417 + ], + "lines": [ + { + "bbox": [ + 105, + 405, + 433, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 405, + 433, + 419 + ], + "score": 1.0, + "content": "5.3 STUDENT TRAINING WITH THE GNMAX AGGREGATION MECHANISMS", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 107, + 426, + 505, + 536 + ], + "lines": [ + { + "bbox": [ + 106, + 426, + 505, + 439 + ], + "spans": [ + { + "bbox": [ + 106, + 426, + 505, + 439 + ], + "score": 1.0, + "content": "As outlined in Section 3, we train a student on public data labeled by the aggregation mechanisms.", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 438, + 505, + 450 + ], + "spans": [ + { + "bbox": [ + 106, + 438, + 505, + 450 + ], + "score": 1.0, + "content": "We take advantage of PATE’s flexibility and apply the technique that performs best on each dataset:", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 448, + 505, + 460 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 505, + 460 + ], + "score": 1.0, + "content": "semi-supervised learning with Generative Adversarial Networks (Salimans et al., 2016) for MNIST", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 459, + 505, + 472 + ], + "spans": [ + { + "bbox": [ + 105, + 459, + 505, + 472 + ], + "score": 1.0, + "content": "and SVHN, Virtual Adversarial Training (Miyato et al., 2017) for Glyph, and fully-supervised ran-", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 468, + 506, + 484 + ], + "spans": [ + { + "bbox": [ + 105, + 468, + 506, + 484 + ], + "score": 1.0, + "content": "dom forests for UCI Adult. In addition to evaluating the total privacy cost associated with training", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 482, + 506, + 494 + ], + "spans": [ + { + "bbox": [ + 105, + 482, + 506, + 494 + ], + "score": 1.0, + "content": "the student model, we compare its utility to a non-private baseline obtained by training on the sensi-", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 492, + 505, + 504 + ], + "spans": [ + { + "bbox": [ + 106, + 492, + 363, + 504 + ], + "score": 1.0, + "content": "tive data (used to train teachers in PATE): we use the baselines of", + "type": "text" + }, + { + "bbox": [ + 364, + 492, + 390, + 503 + ], + "score": 0.83, + "content": "9 9 . 2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 391, + 492, + 394, + 504 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 394, + 492, + 421, + 503 + ], + "score": 0.84, + "content": "9 2 . 8 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 422, + 492, + 441, + 504 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 441, + 492, + 469, + 503 + ], + "score": 0.88, + "content": "8 \\bar { 5 } . 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 469, + 492, + 505, + 504 + ], + "score": 1.0, + "content": "reported", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 503, + 505, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 503, + 505, + 516 + ], + "score": 1.0, + "content": "by Papernot et al. (2017) respectively for MNIST, SVHN, and UCI Adult, and we measure a base-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 514, + 504, + 527 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 136, + 527 + ], + "score": 1.0, + "content": "line of", + "type": "text" + }, + { + "bbox": [ + 136, + 514, + 164, + 525 + ], + "score": 0.89, + "content": "8 2 . 2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 514, + 267, + 527 + ], + "score": 1.0, + "content": "for Glyph. We compute", + "type": "text" + }, + { + "bbox": [ + 267, + 514, + 289, + 526 + ], + "score": 0.91, + "content": "( \\varepsilon , \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 290, + 514, + 497, + 527 + ], + "score": 1.0, + "content": "-privacy bounds and denote the privacy cost as the", + "type": "text" + }, + { + "bbox": [ + 498, + 516, + 504, + 524 + ], + "score": 0.71, + "content": "\\varepsilon", + "type": "inline_equation" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 524, + 376, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 524, + 181, + 538 + ], + "score": 1.0, + "content": "value at a value of", + "type": "text" + }, + { + "bbox": [ + 182, + 525, + 188, + 535 + ], + "score": 0.78, + "content": "\\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 188, + 524, + 376, + 538 + ], + "score": 1.0, + "content": "set accordingly to number of training samples.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 31.5, + "bbox_fs": [ + 105, + 426, + 506, + 538 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 549, + 504, + 614 + ], + "lines": [ + { + "bbox": [ + 105, + 548, + 506, + 561 + ], + "spans": [ + { + "bbox": [ + 105, + 548, + 506, + 561 + ], + "score": 1.0, + "content": "Confident-GNMax Aggregator. Given a pool of 500 to 12,000 samples to learn from (depending", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 560, + 505, + 572 + ], + "spans": [ + { + "bbox": [ + 105, + 560, + 505, + 572 + ], + "score": 1.0, + "content": "on the dataset), the student submits queries to the teacher ensemble running the Confident-GNMax", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 570, + 504, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 570, + 479, + 585 + ], + "score": 1.0, + "content": "aggregator from Section 4.2. A grid search over a range of plausible values for parameters", + "type": "text" + }, + { + "bbox": [ + 479, + 571, + 488, + 581 + ], + "score": 0.64, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 488, + 570, + 492, + 585 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 492, + 572, + 504, + 582 + ], + "score": 0.76, + "content": "\\sigma _ { 1 }", + "type": "inline_equation" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 580, + 506, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 580, + 124, + 595 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 583, + 136, + 592 + ], + "score": 0.85, + "content": "\\sigma _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 136, + 580, + 506, + 595 + ], + "score": 1.0, + "content": "yielded the values reported in Table 1, illustrating the tradeoff between utility and privacy", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 592, + 506, + 605 + ], + "spans": [ + { + "bbox": [ + 105, + 592, + 506, + 605 + ], + "score": 1.0, + "content": "achieved. We additionally measure the number of queries selected by the teachers to be answered", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 604, + 320, + 615 + ], + "spans": [ + { + "bbox": [ + 106, + 604, + 320, + 615 + ], + "score": 1.0, + "content": "and compare student utility to a non-private baseline.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 39.5, + "bbox_fs": [ + 105, + 548, + 506, + 615 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 620, + 505, + 697 + ], + "lines": [ + { + "bbox": [ + 105, + 619, + 505, + 633 + ], + "spans": [ + { + "bbox": [ + 105, + 619, + 505, + 633 + ], + "score": 1.0, + "content": "The Confident-GNMax aggregator outperforms LNMax for the four datasets considered in the origi-", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 631, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 631, + 291, + 645 + ], + "score": 1.0, + "content": "nal PATE proposal: it reduces the privacy cost", + "type": "text" + }, + { + "bbox": [ + 291, + 633, + 297, + 641 + ], + "score": 0.63, + "content": "\\varepsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 631, + 505, + 645 + ], + "score": 1.0, + "content": ", increases student accuracy, or both simultaneously.", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 641, + 505, + 654 + ], + "spans": [ + { + "bbox": [ + 105, + 641, + 505, + 654 + ], + "score": 1.0, + "content": "On the uncurated Glyph data, despite the imbalance of classes and mislabeled data (as evidenced", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 653, + 505, + 666 + ], + "spans": [ + { + "bbox": [ + 105, + 653, + 134, + 666 + ], + "score": 1.0, + "content": "by the", + "type": "text" + }, + { + "bbox": [ + 135, + 653, + 162, + 664 + ], + "score": 0.86, + "content": "8 2 . 2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 653, + 347, + 666 + ], + "score": 1.0, + "content": "baseline), the Confident Aggregator achieves", + "type": "text" + }, + { + "bbox": [ + 348, + 653, + 375, + 664 + ], + "score": 0.9, + "content": "7 3 . 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 375, + 653, + 505, + 666 + ], + "score": 1.0, + "content": "accuracy with a privacy cost of", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 664, + 505, + 677 + ], + "spans": [ + { + "bbox": [ + 105, + 664, + 124, + 677 + ], + "score": 1.0, + "content": "just", + "type": "text" + }, + { + "bbox": [ + 124, + 665, + 164, + 675 + ], + "score": 0.88, + "content": "\\varepsilon = 1 . 0 2", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 664, + 505, + 677 + ], + "score": 1.0, + "content": ". Roughly 1,300 out of 12,000 queries made are not answered, indicating that sev-", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 676, + 505, + 688 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 505, + 688 + ], + "score": 1.0, + "content": "eral expensive queries were successfully avoided. This selectivity is analyzed in more details in", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 686, + 156, + 698 + ], + "spans": [ + { + "bbox": [ + 105, + 686, + 156, + 698 + ], + "score": 1.0, + "content": "Section 5.4.", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 46, + "bbox_fs": [ + 105, + 619, + 505, + 698 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 709, + 504, + 731 + ], + "lines": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "Interactive-GNMax Aggregator. On Glyph, we evaluate the utility and privacy of an interactive", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 106, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "training routine that proceeds in two rounds. Round one runs student training with a Confident", + "type": "text" + } + ], + "index": 51 + } + ], + "index": 50.5, + "bbox_fs": [ + 105, + 709, + 505, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 113, + 99, + 499, + 142 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 113, + 99, + 499, + 142 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 113, + 99, + 499, + 142 + ], + "spans": [ + { + "bbox": [ + 113, + 99, + 499, + 142 + ], + "score": 0.935, + "type": "image", + "image_path": "d270152f7c17f085f2cee4456268e4219f503a77e8dcdf8de8b64c5993292fbd.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 113, + 99, + 499, + 113.33333333333333 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 113, + 113.33333333333333, + 499, + 127.66666666666666 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 113, + 127.66666666666666, + 499, + 142.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 104, + 153, + 504, + 176 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 152, + 506, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 152, + 506, + 167 + ], + "score": 1.0, + "content": "Figure 3: Some example inputs from the Glyph dataset along with the class they are labeled as.", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 164, + 440, + 177 + ], + "spans": [ + { + "bbox": [ + 105, + 164, + 440, + 177 + ], + "score": 1.0, + "content": "Note the ambiguity (between the comma and apostrophe) and the mislabeled input.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "image", + "bbox": [ + 110, + 232, + 487, + 365 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 110, + 232, + 487, + 365 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 110, + 232, + 487, + 365 + ], + "spans": [ + { + "bbox": [ + 110, + 232, + 487, + 365 + ], + "score": 0.711, + "type": "image", + "image_path": "f4997f073b1076ba805de8a9ddcd3d2383564828e765f3fc31b4702724545c1a.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 110, + 232, + 487, + 276.3333333333333 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 110, + 276.3333333333333, + 487, + 320.66666666666663 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 110, + 320.66666666666663, + 487, + 364.99999999999994 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 372, + 506, + 417 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 372, + 506, + 385 + ], + "spans": [ + { + "bbox": [ + 105, + 372, + 506, + 385 + ], + "score": 1.0, + "content": "Figure 4: Tradeoff between utility and privacy for the LNMax and GNMax aggregators on", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 383, + 505, + 395 + ], + "spans": [ + { + "bbox": [ + 106, + 383, + 505, + 395 + ], + "score": 1.0, + "content": "Glyph: effect of the noise distribution (left) and size of the teacher ensemble (right). The LNMax", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 104, + 395, + 504, + 408 + ], + "spans": [ + { + "bbox": [ + 104, + 395, + 497, + 408 + ], + "score": 1.0, + "content": "aggregator uses a Laplace distribution and GNMax a Gaussian. Smaller values of the privacy cost", + "type": "text" + }, + { + "bbox": [ + 498, + 397, + 504, + 405 + ], + "score": 0.71, + "content": "\\varepsilon", + "type": "inline_equation" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 406, + 484, + 418 + ], + "spans": [ + { + "bbox": [ + 106, + 406, + 286, + 418 + ], + "score": 1.0, + "content": "(often obtained by increasing the noise scale", + "type": "text" + }, + { + "bbox": [ + 286, + 407, + 293, + 415 + ], + "score": 0.7, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 406, + 484, + 418 + ], + "score": 1.0, + "content": "—see Section 4) and higher accuracy are better.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 9.5 + } + ], + "index": 7.75 + }, + { + "type": "table", + "bbox": [ + 110, + 459, + 498, + 626 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 110, + 459, + 498, + 626 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 110, + 459, + 498, + 626 + ], + "spans": [ + { + "bbox": [ + 110, + 459, + 498, + 626 + ], + "score": 0.984, + "html": "
DatasetAggregatorQueriesansweredPrivacybound ε Accuracy Student Baseline
MNISTLNMax (Papernot et al., 2017)1002.0498.0%99.2%
LNMax (Papernot et al., 2017)1,0008.0398.1%
Confident-GNMax (T=200,σ1=150,σ2=40)2861.9798.5%
SVHNLNMax (Papernot et al., 2017)5005.0482.7%92.8%
LNMax (Papernot et al., 2017)1,0008.1990.7%
Confident-GNMax (T=300,σ1=200,σ2=40)3,0984.9691.6%
AdultLNMax (Papernot et al., 2017)5002.6683.0%85.0%
Confident-GNMax (T=300,σ1=200,σ2=40)5241.9083.7%
GlyphLNMax4,0004.372.4%82.2%
Confident-GNMax (T=1000,σ1=500,σ2=100)10,7622.0375.5%
Interactive-GNMax, two rounds4,3410.83773.2%
", + "type": "table", + "image_path": "8e92244f3fdd03fa403a3649965f3ceb1cee716bc56e27716bdce5b29bca1956.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 110, + 459, + 498, + 514.6666666666666 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 110, + 514.6666666666666, + 498, + 570.3333333333333 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 110, + 570.3333333333333, + 498, + 625.9999999999999 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 106, + 634, + 505, + 712 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 633, + 505, + 647 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 505, + 647 + ], + "score": 1.0, + "content": "Table 1: Utility and privacy of the students. The Confident- and Interactive-GNMax aggregators", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 645, + 505, + 658 + ], + "spans": [ + { + "bbox": [ + 105, + 645, + 505, + 658 + ], + "score": 1.0, + "content": "introduced in Section 4 offer better tradeoffs between privacy (characterized by the value of the", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 656, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 656, + 133, + 668 + ], + "score": 1.0, + "content": "bound", + "type": "text" + }, + { + "bbox": [ + 133, + 658, + 140, + 667 + ], + "score": 0.55, + "content": "\\varepsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 656, + 505, + 668 + ], + "score": 1.0, + "content": ") and utility (the accuracy of the student compared to a non-private baseline) than the LNMax", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 667, + 505, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 505, + 680 + ], + "score": 1.0, + "content": "aggregator used by the original PATE proposal on all datasets we evaluated with. For MNIST, Adult,", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 678, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 505, + 690 + ], + "score": 1.0, + "content": "and SVHN, we use the labels of ensembles of 250 teachers published by Papernot et al. (2017) and", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 688, + 506, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 119, + 702 + ], + "score": 1.0, + "content": "set", + "type": "text" + }, + { + "bbox": [ + 120, + 689, + 159, + 699 + ], + "score": 0.91, + "content": "\\delta = 1 0 ^ { - 5 }", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 688, + 245, + 702 + ], + "score": 1.0, + "content": "to compute values of", + "type": "text" + }, + { + "bbox": [ + 245, + 691, + 251, + 699 + ], + "score": 0.73, + "content": "\\varepsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 688, + 387, + 702 + ], + "score": 1.0, + "content": "(to the exception of SVHN where", + "type": "text" + }, + { + "bbox": [ + 387, + 689, + 427, + 700 + ], + "score": 0.89, + "content": "\\dot { \\delta _ { \\mathrm { } } } = 1 \\dot { 0 } ^ { - 6 }", + "type": "inline_equation" + }, + { + "bbox": [ + 427, + 688, + 506, + 702 + ], + "score": 1.0, + "content": "). All Glyph results", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 104, + 700, + 375, + 712 + ], + "spans": [ + { + "bbox": [ + 104, + 700, + 259, + 712 + ], + "score": 1.0, + "content": "use an ensemble of 5000 teachers and", + "type": "text" + }, + { + "bbox": [ + 259, + 702, + 266, + 710 + ], + "score": 0.76, + "content": "\\varepsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 700, + 332, + 712 + ], + "score": 1.0, + "content": "is computed for", + "type": "text" + }, + { + "bbox": [ + 332, + 700, + 371, + 711 + ], + "score": 0.92, + "content": "\\delta = 1 0 ^ { - 8 }", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 700, + 375, + 712 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 18 + } + ], + "index": 15.5 + } + ], + "page_idx": 10, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 765 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 765 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 113, + 99, + 499, + 142 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 113, + 99, + 499, + 142 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 113, + 99, + 499, + 142 + ], + "spans": [ + { + "bbox": [ + 113, + 99, + 499, + 142 + ], + "score": 0.935, + "type": "image", + "image_path": "d270152f7c17f085f2cee4456268e4219f503a77e8dcdf8de8b64c5993292fbd.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 113, + 99, + 499, + 113.33333333333333 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 113, + 113.33333333333333, + 499, + 127.66666666666666 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 113, + 127.66666666666666, + 499, + 142.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 104, + 153, + 504, + 176 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 152, + 506, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 152, + 506, + 167 + ], + "score": 1.0, + "content": "Figure 3: Some example inputs from the Glyph dataset along with the class they are labeled as.", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 164, + 440, + 177 + ], + "spans": [ + { + "bbox": [ + 105, + 164, + 440, + 177 + ], + "score": 1.0, + "content": "Note the ambiguity (between the comma and apostrophe) and the mislabeled input.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "image", + "bbox": [ + 110, + 232, + 487, + 365 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 110, + 232, + 487, + 365 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 110, + 232, + 487, + 365 + ], + "spans": [ + { + "bbox": [ + 110, + 232, + 487, + 365 + ], + "score": 0.711, + "type": "image", + "image_path": "f4997f073b1076ba805de8a9ddcd3d2383564828e765f3fc31b4702724545c1a.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 110, + 232, + 487, + 276.3333333333333 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 110, + 276.3333333333333, + 487, + 320.66666666666663 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 110, + 320.66666666666663, + 487, + 364.99999999999994 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 372, + 506, + 417 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 372, + 506, + 385 + ], + "spans": [ + { + "bbox": [ + 105, + 372, + 506, + 385 + ], + "score": 1.0, + "content": "Figure 4: Tradeoff between utility and privacy for the LNMax and GNMax aggregators on", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 383, + 505, + 395 + ], + "spans": [ + { + "bbox": [ + 106, + 383, + 505, + 395 + ], + "score": 1.0, + "content": "Glyph: effect of the noise distribution (left) and size of the teacher ensemble (right). The LNMax", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 104, + 395, + 504, + 408 + ], + "spans": [ + { + "bbox": [ + 104, + 395, + 497, + 408 + ], + "score": 1.0, + "content": "aggregator uses a Laplace distribution and GNMax a Gaussian. Smaller values of the privacy cost", + "type": "text" + }, + { + "bbox": [ + 498, + 397, + 504, + 405 + ], + "score": 0.71, + "content": "\\varepsilon", + "type": "inline_equation" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 406, + 484, + 418 + ], + "spans": [ + { + "bbox": [ + 106, + 406, + 286, + 418 + ], + "score": 1.0, + "content": "(often obtained by increasing the noise scale", + "type": "text" + }, + { + "bbox": [ + 286, + 407, + 293, + 415 + ], + "score": 0.7, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 406, + 484, + 418 + ], + "score": 1.0, + "content": "—see Section 4) and higher accuracy are better.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 9.5 + } + ], + "index": 7.75 + }, + { + "type": "table", + "bbox": [ + 110, + 459, + 498, + 626 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 110, + 459, + 498, + 626 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 110, + 459, + 498, + 626 + ], + "spans": [ + { + "bbox": [ + 110, + 459, + 498, + 626 + ], + "score": 0.984, + "html": "
DatasetAggregatorQueriesansweredPrivacybound ε Accuracy Student Baseline
MNISTLNMax (Papernot et al., 2017)1002.0498.0%99.2%
LNMax (Papernot et al., 2017)1,0008.0398.1%
Confident-GNMax (T=200,σ1=150,σ2=40)2861.9798.5%
SVHNLNMax (Papernot et al., 2017)5005.0482.7%92.8%
LNMax (Papernot et al., 2017)1,0008.1990.7%
Confident-GNMax (T=300,σ1=200,σ2=40)3,0984.9691.6%
AdultLNMax (Papernot et al., 2017)5002.6683.0%85.0%
Confident-GNMax (T=300,σ1=200,σ2=40)5241.9083.7%
GlyphLNMax4,0004.372.4%82.2%
Confident-GNMax (T=1000,σ1=500,σ2=100)10,7622.0375.5%
Interactive-GNMax, two rounds4,3410.83773.2%
", + "type": "table", + "image_path": "8e92244f3fdd03fa403a3649965f3ceb1cee716bc56e27716bdce5b29bca1956.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 110, + 459, + 498, + 514.6666666666666 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 110, + 514.6666666666666, + 498, + 570.3333333333333 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 110, + 570.3333333333333, + 498, + 625.9999999999999 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 106, + 634, + 505, + 712 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 633, + 505, + 647 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 505, + 647 + ], + "score": 1.0, + "content": "Table 1: Utility and privacy of the students. The Confident- and Interactive-GNMax aggregators", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 645, + 505, + 658 + ], + "spans": [ + { + "bbox": [ + 105, + 645, + 505, + 658 + ], + "score": 1.0, + "content": "introduced in Section 4 offer better tradeoffs between privacy (characterized by the value of the", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 656, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 656, + 133, + 668 + ], + "score": 1.0, + "content": "bound", + "type": "text" + }, + { + "bbox": [ + 133, + 658, + 140, + 667 + ], + "score": 0.55, + "content": "\\varepsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 656, + 505, + 668 + ], + "score": 1.0, + "content": ") and utility (the accuracy of the student compared to a non-private baseline) than the LNMax", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 667, + 505, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 505, + 680 + ], + "score": 1.0, + "content": "aggregator used by the original PATE proposal on all datasets we evaluated with. For MNIST, Adult,", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 678, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 505, + 690 + ], + "score": 1.0, + "content": "and SVHN, we use the labels of ensembles of 250 teachers published by Papernot et al. (2017) and", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 688, + 506, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 119, + 702 + ], + "score": 1.0, + "content": "set", + "type": "text" + }, + { + "bbox": [ + 120, + 689, + 159, + 699 + ], + "score": 0.91, + "content": "\\delta = 1 0 ^ { - 5 }", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 688, + 245, + 702 + ], + "score": 1.0, + "content": "to compute values of", + "type": "text" + }, + { + "bbox": [ + 245, + 691, + 251, + 699 + ], + "score": 0.73, + "content": "\\varepsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 688, + 387, + 702 + ], + "score": 1.0, + "content": "(to the exception of SVHN where", + "type": "text" + }, + { + "bbox": [ + 387, + 689, + 427, + 700 + ], + "score": 0.89, + "content": "\\dot { \\delta _ { \\mathrm { } } } = 1 \\dot { 0 } ^ { - 6 }", + "type": "inline_equation" + }, + { + "bbox": [ + 427, + 688, + 506, + 702 + ], + "score": 1.0, + "content": "). All Glyph results", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 104, + 700, + 375, + 712 + ], + "spans": [ + { + "bbox": [ + 104, + 700, + 259, + 712 + ], + "score": 1.0, + "content": "use an ensemble of 5000 teachers and", + "type": "text" + }, + { + "bbox": [ + 259, + 702, + 266, + 710 + ], + "score": 0.76, + "content": "\\varepsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 700, + 332, + 712 + ], + "score": 1.0, + "content": "is computed for", + "type": "text" + }, + { + "bbox": [ + 332, + 700, + 371, + 711 + ], + "score": 0.92, + "content": "\\delta = 1 0 ^ { - 8 }", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 700, + 375, + 712 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 18 + } + ], + "index": 15.5 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 108, + 80, + 498, + 227 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 108, + 80, + 498, + 227 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 80, + 498, + 227 + ], + "spans": [ + { + "bbox": [ + 108, + 80, + 498, + 227 + ], + "score": 0.967, + "type": "image", + "image_path": "f72de51ac7ee4d0828ee09d5df565ae82b67c263c68a756a789f784dcfd9507d.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 108, + 80, + 498, + 129.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 108, + 129.0, + 498, + 178.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 108, + 178.0, + 498, + 227.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 237, + 505, + 304 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 237, + 506, + 250 + ], + "spans": [ + { + "bbox": [ + 105, + 237, + 506, + 250 + ], + "score": 1.0, + "content": "Figure 5: Effects of the noisy threshold checking: Left: The number of queries answered", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 104, + 247, + 506, + 262 + ], + "spans": [ + { + "bbox": [ + 104, + 247, + 281, + 262 + ], + "score": 1.0, + "content": "by LNMax, Confident-GNMax moderate", + "type": "text" + }, + { + "bbox": [ + 281, + 249, + 315, + 259 + ], + "score": 0.83, + "content": "\\scriptstyle { T = 3 5 0 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 316, + 247, + 318, + 262 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 318, + 249, + 355, + 260 + ], + "score": 0.87, + "content": "\\sigma _ { 1 } { = } 1 5 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 356, + 247, + 506, + 262 + ], + "score": 1.0, + "content": "), and Confident-GNMax aggressive", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 259, + 506, + 272 + ], + "spans": [ + { + "bbox": [ + 106, + 259, + 110, + 272 + ], + "score": 1.0, + "content": "(", + "type": "text" + }, + { + "bbox": [ + 110, + 260, + 144, + 271 + ], + "score": 0.83, + "content": "{ T } \\mathrm { { = } } 5 0 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 259, + 146, + 272 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 147, + 260, + 184, + 271 + ], + "score": 0.87, + "content": "\\sigma _ { 1 } { = } 1 5 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 184, + 259, + 506, + 272 + ], + "score": 1.0, + "content": "). The black dots and the right axis (in log scale) show the expected cost of an-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 271, + 505, + 283 + ], + "spans": [ + { + "bbox": [ + 105, + 271, + 309, + 283 + ], + "score": 1.0, + "content": "swering a single query in each bin (via GNMax,", + "type": "text" + }, + { + "bbox": [ + 309, + 271, + 344, + 281 + ], + "score": 0.9, + "content": "\\sigma _ { 2 } { = } 1 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 271, + 505, + 283 + ], + "score": 1.0, + "content": "). Right: Privacy cost of answering all", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 104, + 280, + 505, + 296 + ], + "spans": [ + { + "bbox": [ + 104, + 280, + 505, + 296 + ], + "score": 1.0, + "content": "(LNMax) vs only inexpensive queries (GNMax) for a given number of answered queries. The very", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 291, + 488, + 305 + ], + "spans": [ + { + "bbox": [ + 105, + 291, + 488, + 305 + ], + "score": 1.0, + "content": "dark area under the curve is the cost of selecting queries; the rest is the cost of answering them.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 5.5 + } + ], + "index": 3.25 + }, + { + "type": "text", + "bbox": [ + 107, + 330, + 504, + 363 + ], + "lines": [ + { + "bbox": [ + 105, + 330, + 506, + 343 + ], + "spans": [ + { + "bbox": [ + 105, + 330, + 506, + 343 + ], + "score": 1.0, + "content": "Aggregator. A grid search targeting the best privacy for roughly 3,400 answered queries (out of", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 340, + 505, + 354 + ], + "spans": [ + { + "bbox": [ + 105, + 340, + 350, + 354 + ], + "score": 1.0, + "content": "6,000)—sufficient to bootstrap a student—led us to setting (", + "type": "text" + }, + { + "bbox": [ + 350, + 342, + 383, + 352 + ], + "score": 0.78, + "content": "\\scriptstyle { T = 3 5 0 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 384, + 340, + 387, + 354 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 387, + 342, + 423, + 353 + ], + "score": 0.78, + "content": "\\sigma _ { 1 } { = } 1 5 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 423, + 340, + 426, + 354 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 426, + 342, + 458, + 353 + ], + "score": 0.75, + "content": "\\sigma _ { 2 } { = } 1 0 0 ", + "type": "inline_equation" + }, + { + "bbox": [ + 459, + 340, + 505, + 354 + ], + "score": 1.0, + "content": ") and a pri-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 353, + 198, + 364 + ], + "spans": [ + { + "bbox": [ + 105, + 353, + 156, + 364 + ], + "score": 1.0, + "content": "vacy cost of", + "type": "text" + }, + { + "bbox": [ + 157, + 353, + 194, + 363 + ], + "score": 0.87, + "content": "\\varepsilon \\approx 0 . 5 9", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 353, + 198, + 364 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 107, + 369, + 505, + 468 + ], + "lines": [ + { + "bbox": [ + 106, + 370, + 504, + 381 + ], + "spans": [ + { + "bbox": [ + 106, + 370, + 504, + 381 + ], + "score": 1.0, + "content": "In round two, this student was then trained with 10,000 more queries made with the Interactive-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 380, + 506, + 393 + ], + "spans": [ + { + "bbox": [ + 105, + 380, + 194, + 393 + ], + "score": 1.0, + "content": "GNMax Aggregator", + "type": "text" + }, + { + "bbox": [ + 195, + 380, + 228, + 391 + ], + "score": 0.76, + "content": "\\scriptstyle { T = 3 5 0 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 380, + 231, + 393 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 231, + 380, + 268, + 392 + ], + "score": 0.85, + "content": "\\sigma _ { 1 } { = } 2 0 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 380, + 271, + 393 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 271, + 380, + 303, + 392 + ], + "score": 0.86, + "content": "\\sigma _ { 2 } { = } 2 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 303, + 380, + 506, + 393 + ], + "score": 1.0, + "content": "). We computed the resulting (total) privacy cost", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 391, + 506, + 405 + ], + "spans": [ + { + "bbox": [ + 105, + 391, + 506, + 405 + ], + "score": 1.0, + "content": "and utility at an exemplar data point through another grid search of plausible parameter values.", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 401, + 506, + 415 + ], + "spans": [ + { + "bbox": [ + 105, + 401, + 506, + 415 + ], + "score": 1.0, + "content": "The result appears in the last row of Table 1. With just over 10,422 answered queries in total at a", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 413, + 506, + 426 + ], + "spans": [ + { + "bbox": [ + 105, + 413, + 169, + 426 + ], + "score": 1.0, + "content": "privacy cost of", + "type": "text" + }, + { + "bbox": [ + 170, + 413, + 210, + 424 + ], + "score": 0.89, + "content": "\\varepsilon = 0 . 8 4", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 413, + 375, + 426 + ], + "score": 1.0, + "content": ", the trained student was able to achieve", + "type": "text" + }, + { + "bbox": [ + 376, + 413, + 403, + 424 + ], + "score": 0.87, + "content": "7 3 . 2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 413, + 506, + 426 + ], + "score": 1.0, + "content": "accuracy. Note that this", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 424, + 505, + 437 + ], + "spans": [ + { + "bbox": [ + 105, + 424, + 505, + 437 + ], + "score": 1.0, + "content": "students required fewer answered queries compared to the Confident Aggregator. The best overall", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 434, + 505, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 434, + 505, + 448 + ], + "score": 1.0, + "content": "cost of student training occurred when the privacy costs for the first and second rounds of training", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 446, + 506, + 459 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 248, + 459 + ], + "score": 1.0, + "content": "were roughly the same. (The total", + "type": "text" + }, + { + "bbox": [ + 249, + 448, + 255, + 456 + ], + "score": 0.74, + "content": "\\varepsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 446, + 304, + 459 + ], + "score": 1.0, + "content": "is less than", + "type": "text" + }, + { + "bbox": [ + 305, + 446, + 376, + 457 + ], + "score": 0.9, + "content": "0 . 5 9 \\times 2 = 1 . 1 8", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 446, + 506, + 459 + ], + "score": 1.0, + "content": "due to better composition—via", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 457, + 186, + 469 + ], + "spans": [ + { + "bbox": [ + 106, + 457, + 186, + 469 + ], + "score": 1.0, + "content": "Theorems 4 and 5.)", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 107, + 486, + 505, + 574 + ], + "lines": [ + { + "bbox": [ + 105, + 484, + 505, + 500 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 505, + 500 + ], + "score": 1.0, + "content": "Comparison with Baseline. Note that the Glyph student’s accuracy remains seven percentage", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 497, + 505, + 510 + ], + "spans": [ + { + "bbox": [ + 105, + 497, + 505, + 510 + ], + "score": 1.0, + "content": "points below the non-private model’s accuracy achieved by training on the 65M sensitive inputs.", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 508, + 505, + 520 + ], + "spans": [ + { + "bbox": [ + 106, + 508, + 505, + 520 + ], + "score": 1.0, + "content": "We hypothesize that this is due to the uncurated nature of the data considered. Indeed, the class", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 518, + 506, + 532 + ], + "spans": [ + { + "bbox": [ + 105, + 518, + 506, + 532 + ], + "score": 1.0, + "content": "imbalance naturally requires more queries to return labels from the less represented classes. For", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 529, + 505, + 543 + ], + "spans": [ + { + "bbox": [ + 105, + 529, + 308, + 543 + ], + "score": 1.0, + "content": "instance, a model trained on 200K queries is only", + "type": "text" + }, + { + "bbox": [ + 309, + 530, + 329, + 541 + ], + "score": 0.86, + "content": "7 7 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 529, + 505, + 543 + ], + "score": 1.0, + "content": "accurate on test data. In addition, the large", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 540, + 506, + 555 + ], + "spans": [ + { + "bbox": [ + 105, + 540, + 506, + 555 + ], + "score": 1.0, + "content": "fraction of mislabeled inputs are likely to have a large privacy cost: these inputs are sensitive because", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 552, + 505, + 564 + ], + "spans": [ + { + "bbox": [ + 105, + 552, + 505, + 564 + ], + "score": 1.0, + "content": "they are outliers of the distribution, which is reflected by the weak consensus among teachers on", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 562, + 159, + 576 + ], + "spans": [ + { + "bbox": [ + 105, + 562, + 159, + 576 + ], + "score": 1.0, + "content": "these inputs.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 24.5 + }, + { + "type": "title", + "bbox": [ + 107, + 593, + 347, + 604 + ], + "lines": [ + { + "bbox": [ + 105, + 592, + 348, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 592, + 348, + 606 + ], + "score": 1.0, + "content": "5.4 NOISY THRESHOLD CHECKS AND PRIVACY COSTS", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 107, + 615, + 504, + 660 + ], + "lines": [ + { + "bbox": [ + 105, + 615, + 504, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 504, + 628 + ], + "score": 1.0, + "content": "Sections 4.1 and 4.2 motivated the need for a noisy threshold checking step before having the teach-", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 626, + 506, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 506, + 640 + ], + "score": 1.0, + "content": "ers answer queries: it prevents most of the privacy budget being consumed by few queries that are", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 638, + 506, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 638, + 487, + 651 + ], + "score": 1.0, + "content": "expensive and also likely to be incorrectly answered. In Figure 5, we compare the privacy cost", + "type": "text" + }, + { + "bbox": [ + 487, + 640, + 493, + 648 + ], + "score": 0.74, + "content": "\\varepsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 493, + 638, + 506, + 651 + ], + "score": 1.0, + "content": "of", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 650, + 459, + 661 + ], + "spans": [ + { + "bbox": [ + 106, + 650, + 459, + 661 + ], + "score": 1.0, + "content": "answering all queries to only answering confident queries for a fixed number of queries.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 31.5 + }, + { + "type": "text", + "bbox": [ + 107, + 666, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 665, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 106, + 665, + 505, + 678 + ], + "score": 1.0, + "content": "We run additional experiments to support the evaluation from Section 5.3. With the votes of 5,000", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 676, + 503, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 486, + 690 + ], + "score": 1.0, + "content": "teachers on the Glyph dataset, we plot in Figure 5 the histogram of the plurality vote counts", + "type": "text" + }, + { + "bbox": [ + 486, + 678, + 503, + 688 + ], + "score": 0.84, + "content": "( n _ { i ^ { * } }", + "type": "inline_equation" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "in the notation of Section 4.1) across 25,000 student queries. We compare these values to the vote", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 699, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 451, + 712 + ], + "score": 1.0, + "content": "counts of queries that passed the noisy threshold check for two sets of parameters", + "type": "text" + }, + { + "bbox": [ + 452, + 699, + 461, + 709 + ], + "score": 0.78, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 699, + 480, + 712 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 481, + 700, + 492, + 710 + ], + "score": 0.85, + "content": "\\sigma _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 493, + 699, + 506, + 712 + ], + "score": 1.0, + "content": "in", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "score": 1.0, + "content": "Algorithm 1. Smaller values imply weaker teacher agreements and consequently more expensive", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 104, + 721, + 141, + 734 + ], + "spans": [ + { + "bbox": [ + 104, + 721, + 141, + 734 + ], + "score": 1.0, + "content": "queries.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 36.5 + } + ], + "page_idx": 11, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "12", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 108, + 80, + 498, + 227 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 108, + 80, + 498, + 227 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 80, + 498, + 227 + ], + "spans": [ + { + "bbox": [ + 108, + 80, + 498, + 227 + ], + "score": 0.967, + "type": "image", + "image_path": "f72de51ac7ee4d0828ee09d5df565ae82b67c263c68a756a789f784dcfd9507d.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 108, + 80, + 498, + 129.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 108, + 129.0, + 498, + 178.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 108, + 178.0, + 498, + 227.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 237, + 505, + 304 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 237, + 506, + 250 + ], + "spans": [ + { + "bbox": [ + 105, + 237, + 506, + 250 + ], + "score": 1.0, + "content": "Figure 5: Effects of the noisy threshold checking: Left: The number of queries answered", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 104, + 247, + 506, + 262 + ], + "spans": [ + { + "bbox": [ + 104, + 247, + 281, + 262 + ], + "score": 1.0, + "content": "by LNMax, Confident-GNMax moderate", + "type": "text" + }, + { + "bbox": [ + 281, + 249, + 315, + 259 + ], + "score": 0.83, + "content": "\\scriptstyle { T = 3 5 0 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 316, + 247, + 318, + 262 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 318, + 249, + 355, + 260 + ], + "score": 0.87, + "content": "\\sigma _ { 1 } { = } 1 5 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 356, + 247, + 506, + 262 + ], + "score": 1.0, + "content": "), and Confident-GNMax aggressive", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 259, + 506, + 272 + ], + "spans": [ + { + "bbox": [ + 106, + 259, + 110, + 272 + ], + "score": 1.0, + "content": "(", + "type": "text" + }, + { + "bbox": [ + 110, + 260, + 144, + 271 + ], + "score": 0.83, + "content": "{ T } \\mathrm { { = } } 5 0 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 259, + 146, + 272 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 147, + 260, + 184, + 271 + ], + "score": 0.87, + "content": "\\sigma _ { 1 } { = } 1 5 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 184, + 259, + 506, + 272 + ], + "score": 1.0, + "content": "). The black dots and the right axis (in log scale) show the expected cost of an-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 271, + 505, + 283 + ], + "spans": [ + { + "bbox": [ + 105, + 271, + 309, + 283 + ], + "score": 1.0, + "content": "swering a single query in each bin (via GNMax,", + "type": "text" + }, + { + "bbox": [ + 309, + 271, + 344, + 281 + ], + "score": 0.9, + "content": "\\sigma _ { 2 } { = } 1 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 271, + 505, + 283 + ], + "score": 1.0, + "content": "). Right: Privacy cost of answering all", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 104, + 280, + 505, + 296 + ], + "spans": [ + { + "bbox": [ + 104, + 280, + 505, + 296 + ], + "score": 1.0, + "content": "(LNMax) vs only inexpensive queries (GNMax) for a given number of answered queries. The very", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 291, + 488, + 305 + ], + "spans": [ + { + "bbox": [ + 105, + 291, + 488, + 305 + ], + "score": 1.0, + "content": "dark area under the curve is the cost of selecting queries; the rest is the cost of answering them.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 5.5 + } + ], + "index": 3.25 + }, + { + "type": "text", + "bbox": [ + 107, + 330, + 504, + 363 + ], + "lines": [ + { + "bbox": [ + 105, + 330, + 506, + 343 + ], + "spans": [ + { + "bbox": [ + 105, + 330, + 506, + 343 + ], + "score": 1.0, + "content": "Aggregator. A grid search targeting the best privacy for roughly 3,400 answered queries (out of", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 340, + 505, + 354 + ], + "spans": [ + { + "bbox": [ + 105, + 340, + 350, + 354 + ], + "score": 1.0, + "content": "6,000)—sufficient to bootstrap a student—led us to setting (", + "type": "text" + }, + { + "bbox": [ + 350, + 342, + 383, + 352 + ], + "score": 0.78, + "content": "\\scriptstyle { T = 3 5 0 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 384, + 340, + 387, + 354 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 387, + 342, + 423, + 353 + ], + "score": 0.78, + "content": "\\sigma _ { 1 } { = } 1 5 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 423, + 340, + 426, + 354 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 426, + 342, + 458, + 353 + ], + "score": 0.75, + "content": "\\sigma _ { 2 } { = } 1 0 0 ", + "type": "inline_equation" + }, + { + "bbox": [ + 459, + 340, + 505, + 354 + ], + "score": 1.0, + "content": ") and a pri-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 353, + 198, + 364 + ], + "spans": [ + { + "bbox": [ + 105, + 353, + 156, + 364 + ], + "score": 1.0, + "content": "vacy cost of", + "type": "text" + }, + { + "bbox": [ + 157, + 353, + 194, + 363 + ], + "score": 0.87, + "content": "\\varepsilon \\approx 0 . 5 9", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 353, + 198, + 364 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10, + "bbox_fs": [ + 105, + 330, + 506, + 364 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 369, + 505, + 468 + ], + "lines": [ + { + "bbox": [ + 106, + 370, + 504, + 381 + ], + "spans": [ + { + "bbox": [ + 106, + 370, + 504, + 381 + ], + "score": 1.0, + "content": "In round two, this student was then trained with 10,000 more queries made with the Interactive-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 380, + 506, + 393 + ], + "spans": [ + { + "bbox": [ + 105, + 380, + 194, + 393 + ], + "score": 1.0, + "content": "GNMax Aggregator", + "type": "text" + }, + { + "bbox": [ + 195, + 380, + 228, + 391 + ], + "score": 0.76, + "content": "\\scriptstyle { T = 3 5 0 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 380, + 231, + 393 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 231, + 380, + 268, + 392 + ], + "score": 0.85, + "content": "\\sigma _ { 1 } { = } 2 0 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 380, + 271, + 393 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 271, + 380, + 303, + 392 + ], + "score": 0.86, + "content": "\\sigma _ { 2 } { = } 2 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 303, + 380, + 506, + 393 + ], + "score": 1.0, + "content": "). We computed the resulting (total) privacy cost", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 391, + 506, + 405 + ], + "spans": [ + { + "bbox": [ + 105, + 391, + 506, + 405 + ], + "score": 1.0, + "content": "and utility at an exemplar data point through another grid search of plausible parameter values.", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 401, + 506, + 415 + ], + "spans": [ + { + "bbox": [ + 105, + 401, + 506, + 415 + ], + "score": 1.0, + "content": "The result appears in the last row of Table 1. With just over 10,422 answered queries in total at a", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 413, + 506, + 426 + ], + "spans": [ + { + "bbox": [ + 105, + 413, + 169, + 426 + ], + "score": 1.0, + "content": "privacy cost of", + "type": "text" + }, + { + "bbox": [ + 170, + 413, + 210, + 424 + ], + "score": 0.89, + "content": "\\varepsilon = 0 . 8 4", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 413, + 375, + 426 + ], + "score": 1.0, + "content": ", the trained student was able to achieve", + "type": "text" + }, + { + "bbox": [ + 376, + 413, + 403, + 424 + ], + "score": 0.87, + "content": "7 3 . 2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 413, + 506, + 426 + ], + "score": 1.0, + "content": "accuracy. Note that this", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 424, + 505, + 437 + ], + "spans": [ + { + "bbox": [ + 105, + 424, + 505, + 437 + ], + "score": 1.0, + "content": "students required fewer answered queries compared to the Confident Aggregator. The best overall", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 434, + 505, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 434, + 505, + 448 + ], + "score": 1.0, + "content": "cost of student training occurred when the privacy costs for the first and second rounds of training", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 446, + 506, + 459 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 248, + 459 + ], + "score": 1.0, + "content": "were roughly the same. (The total", + "type": "text" + }, + { + "bbox": [ + 249, + 448, + 255, + 456 + ], + "score": 0.74, + "content": "\\varepsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 446, + 304, + 459 + ], + "score": 1.0, + "content": "is less than", + "type": "text" + }, + { + "bbox": [ + 305, + 446, + 376, + 457 + ], + "score": 0.9, + "content": "0 . 5 9 \\times 2 = 1 . 1 8", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 446, + 506, + 459 + ], + "score": 1.0, + "content": "due to better composition—via", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 457, + 186, + 469 + ], + "spans": [ + { + "bbox": [ + 106, + 457, + 186, + 469 + ], + "score": 1.0, + "content": "Theorems 4 and 5.)", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 16, + "bbox_fs": [ + 105, + 370, + 506, + 469 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 486, + 505, + 574 + ], + "lines": [ + { + "bbox": [ + 105, + 484, + 505, + 500 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 505, + 500 + ], + "score": 1.0, + "content": "Comparison with Baseline. Note that the Glyph student’s accuracy remains seven percentage", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 497, + 505, + 510 + ], + "spans": [ + { + "bbox": [ + 105, + 497, + 505, + 510 + ], + "score": 1.0, + "content": "points below the non-private model’s accuracy achieved by training on the 65M sensitive inputs.", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 508, + 505, + 520 + ], + "spans": [ + { + "bbox": [ + 106, + 508, + 505, + 520 + ], + "score": 1.0, + "content": "We hypothesize that this is due to the uncurated nature of the data considered. Indeed, the class", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 518, + 506, + 532 + ], + "spans": [ + { + "bbox": [ + 105, + 518, + 506, + 532 + ], + "score": 1.0, + "content": "imbalance naturally requires more queries to return labels from the less represented classes. For", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 529, + 505, + 543 + ], + "spans": [ + { + "bbox": [ + 105, + 529, + 308, + 543 + ], + "score": 1.0, + "content": "instance, a model trained on 200K queries is only", + "type": "text" + }, + { + "bbox": [ + 309, + 530, + 329, + 541 + ], + "score": 0.86, + "content": "7 7 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 529, + 505, + 543 + ], + "score": 1.0, + "content": "accurate on test data. In addition, the large", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 540, + 506, + 555 + ], + "spans": [ + { + "bbox": [ + 105, + 540, + 506, + 555 + ], + "score": 1.0, + "content": "fraction of mislabeled inputs are likely to have a large privacy cost: these inputs are sensitive because", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 552, + 505, + 564 + ], + "spans": [ + { + "bbox": [ + 105, + 552, + 505, + 564 + ], + "score": 1.0, + "content": "they are outliers of the distribution, which is reflected by the weak consensus among teachers on", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 562, + 159, + 576 + ], + "spans": [ + { + "bbox": [ + 105, + 562, + 159, + 576 + ], + "score": 1.0, + "content": "these inputs.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 24.5, + "bbox_fs": [ + 105, + 484, + 506, + 576 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 593, + 347, + 604 + ], + "lines": [ + { + "bbox": [ + 105, + 592, + 348, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 592, + 348, + 606 + ], + "score": 1.0, + "content": "5.4 NOISY THRESHOLD CHECKS AND PRIVACY COSTS", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 107, + 615, + 504, + 660 + ], + "lines": [ + { + "bbox": [ + 105, + 615, + 504, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 504, + 628 + ], + "score": 1.0, + "content": "Sections 4.1 and 4.2 motivated the need for a noisy threshold checking step before having the teach-", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 626, + 506, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 506, + 640 + ], + "score": 1.0, + "content": "ers answer queries: it prevents most of the privacy budget being consumed by few queries that are", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 638, + 506, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 638, + 487, + 651 + ], + "score": 1.0, + "content": "expensive and also likely to be incorrectly answered. In Figure 5, we compare the privacy cost", + "type": "text" + }, + { + "bbox": [ + 487, + 640, + 493, + 648 + ], + "score": 0.74, + "content": "\\varepsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 493, + 638, + 506, + 651 + ], + "score": 1.0, + "content": "of", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 650, + 459, + 661 + ], + "spans": [ + { + "bbox": [ + 106, + 650, + 459, + 661 + ], + "score": 1.0, + "content": "answering all queries to only answering confident queries for a fixed number of queries.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 31.5, + "bbox_fs": [ + 105, + 615, + 506, + 661 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 666, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 665, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 106, + 665, + 505, + 678 + ], + "score": 1.0, + "content": "We run additional experiments to support the evaluation from Section 5.3. With the votes of 5,000", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 676, + 503, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 486, + 690 + ], + "score": 1.0, + "content": "teachers on the Glyph dataset, we plot in Figure 5 the histogram of the plurality vote counts", + "type": "text" + }, + { + "bbox": [ + 486, + 678, + 503, + 688 + ], + "score": 0.84, + "content": "( n _ { i ^ { * } }", + "type": "inline_equation" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "in the notation of Section 4.1) across 25,000 student queries. We compare these values to the vote", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 699, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 451, + 712 + ], + "score": 1.0, + "content": "counts of queries that passed the noisy threshold check for two sets of parameters", + "type": "text" + }, + { + "bbox": [ + 452, + 699, + 461, + 709 + ], + "score": 0.78, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 699, + 480, + 712 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 481, + 700, + 492, + 710 + ], + "score": 0.85, + "content": "\\sigma _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 493, + 699, + 506, + 712 + ], + "score": 1.0, + "content": "in", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "score": 1.0, + "content": "Algorithm 1. Smaller values imply weaker teacher agreements and consequently more expensive", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 104, + 721, + 141, + 734 + ], + "spans": [ + { + "bbox": [ + 104, + 721, + 141, + 734 + ], + "score": 1.0, + "content": "queries.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 36.5, + "bbox_fs": [ + 104, + 665, + 506, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 192 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 506, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 136, + 97 + ], + "score": 1.0, + "content": "When", + "type": "text" + }, + { + "bbox": [ + 136, + 82, + 170, + 93 + ], + "score": 0.83, + "content": "\\scriptstyle { T = 3 5 0 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 171, + 80, + 173, + 97 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 173, + 83, + 210, + 93 + ], + "score": 0.87, + "content": "\\sigma _ { 1 } { = } 1 5 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 80, + 506, + 97 + ], + "score": 1.0, + "content": ") we capture a significant fraction of queries where teachers have a strong", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 506, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 186, + 107 + ], + "score": 1.0, + "content": "consensus (roughly", + "type": "text" + }, + { + "bbox": [ + 186, + 94, + 219, + 104 + ], + "score": 0.76, + "content": "> 4 0 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 93, + 506, + 107 + ], + "score": 1.0, + "content": "votes) while managing to filter out many queries with poor consensus.", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 506, + 117 + ], + "score": 1.0, + "content": "This moderate check ensures that although many queries with plurality votes between 2,500 and", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 506, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 231, + 128 + ], + "score": 1.0, + "content": "3,500 are answered (i.e., only", + "type": "text" + }, + { + "bbox": [ + 231, + 115, + 266, + 126 + ], + "score": 0.89, + "content": "5 0 \\mathrm { - } 7 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 115, + 506, + 128 + ], + "score": 1.0, + "content": "of teachers agree on a label) the expensive ones are most", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 505, + 139 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 198, + 139 + ], + "score": 1.0, + "content": "likely discarded. For (", + "type": "text" + }, + { + "bbox": [ + 198, + 127, + 232, + 137 + ], + "score": 0.79, + "content": "\\scriptstyle { T = 5 0 0 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 126, + 235, + 139 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 235, + 127, + 272, + 138 + ], + "score": 0.8, + "content": "\\sigma _ { 1 } { = } 1 5 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 126, + 505, + 139 + ], + "score": 1.0, + "content": "), queries with poor consensus are completely culled out.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 136, + 505, + 151 + ], + "spans": [ + { + "bbox": [ + 105, + 136, + 505, + 151 + ], + "score": 1.0, + "content": "This selectivity comes at the expense of a noticeable drop for queries that might have had a strong", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 147, + 505, + 162 + ], + "spans": [ + { + "bbox": [ + 105, + 147, + 505, + 162 + ], + "score": 1.0, + "content": "consensus and little-to-no privacy cost. Thus, this aggressive check answer fewer queries with very", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 159, + 506, + 172 + ], + "spans": [ + { + "bbox": [ + 105, + 159, + 506, + 172 + ], + "score": 1.0, + "content": "strong privacy guarantees. We reiterate that this threshold checking step itself is done in a private", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 170, + 506, + 183 + ], + "spans": [ + { + "bbox": [ + 105, + 170, + 506, + 183 + ], + "score": 1.0, + "content": "manner. Empirically, in our Interactive Aggregator experiments, we expend about a third to a half of", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 181, + 502, + 195 + ], + "spans": [ + { + "bbox": [ + 105, + 181, + 502, + 195 + ], + "score": 1.0, + "content": "our privacy budget on this step, which still yields a very small cost per query across 6,000 queries.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 4.5 + }, + { + "type": "title", + "bbox": [ + 108, + 208, + 201, + 221 + ], + "lines": [ + { + "bbox": [ + 104, + 206, + 203, + 224 + ], + "spans": [ + { + "bbox": [ + 104, + 206, + 203, + 224 + ], + "score": 1.0, + "content": "6 CONCLUSIONS", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 107, + 233, + 505, + 322 + ], + "lines": [ + { + "bbox": [ + 106, + 233, + 505, + 247 + ], + "spans": [ + { + "bbox": [ + 106, + 233, + 505, + 247 + ], + "score": 1.0, + "content": "The key insight motivating the addition of a noisy thresholding step to the two aggregation mecha-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 245, + 506, + 257 + ], + "spans": [ + { + "bbox": [ + 105, + 245, + 506, + 257 + ], + "score": 1.0, + "content": "nisms proposed in our work is that there is a form of synergy between the privacy and accuracy of", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 255, + 505, + 268 + ], + "spans": [ + { + "bbox": [ + 105, + 255, + 505, + 268 + ], + "score": 1.0, + "content": "labels output by the aggregation: labels that come at a small privacy cost also happen to be more", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 266, + 506, + 280 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 506, + 280 + ], + "score": 1.0, + "content": "likely to be correct. As a consequence, we are able to provide more quality supervision to the student", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 277, + 505, + 290 + ], + "spans": [ + { + "bbox": [ + 105, + 277, + 505, + 290 + ], + "score": 1.0, + "content": "by choosing not to output labels when the consensus among teachers is too low to provide an aggre-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 288, + 506, + 301 + ], + "spans": [ + { + "bbox": [ + 105, + 288, + 506, + 301 + ], + "score": 1.0, + "content": "gated prediction at a small cost in privacy. This observation was further confirmed in some of our", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 300, + 505, + 312 + ], + "spans": [ + { + "bbox": [ + 105, + 300, + 505, + 312 + ], + "score": 1.0, + "content": "experiments where we observed that if we trained the student on either private or non-private labels,", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 311, + 488, + 323 + ], + "spans": [ + { + "bbox": [ + 105, + 311, + 488, + 323 + ], + "score": 1.0, + "content": "the former almost always gave better performance than the latter—for a fixed number of labels.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 14.5 + }, + { + "type": "text", + "bbox": [ + 107, + 327, + 505, + 382 + ], + "lines": [ + { + "bbox": [ + 106, + 327, + 505, + 340 + ], + "spans": [ + { + "bbox": [ + 106, + 327, + 505, + 340 + ], + "score": 1.0, + "content": "Complementary with these aggregation mechanisms is the use of a Gaussian (rather than Laplace)", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 338, + 505, + 351 + ], + "spans": [ + { + "bbox": [ + 105, + 338, + 505, + 351 + ], + "score": 1.0, + "content": "distribution to perturb teacher votes. In our experiments with Glyph data, these changes proved", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 349, + 505, + 362 + ], + "spans": [ + { + "bbox": [ + 105, + 349, + 505, + 362 + ], + "score": 1.0, + "content": "essential to preserve the accuracy of the aggregated labels—because of the large number of classes.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 359, + 505, + 373 + ], + "spans": [ + { + "bbox": [ + 105, + 359, + 505, + 373 + ], + "score": 1.0, + "content": "The analysis presented in Section 4 details the delicate but necessary adaptation of analogous results", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 371, + 217, + 385 + ], + "spans": [ + { + "bbox": [ + 105, + 371, + 217, + 385 + ], + "score": 1.0, + "content": "for the Laplace NoisyMax.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 107, + 388, + 505, + 465 + ], + "lines": [ + { + "bbox": [ + 105, + 388, + 505, + 401 + ], + "spans": [ + { + "bbox": [ + 105, + 388, + 505, + 401 + ], + "score": 1.0, + "content": "As was the case for the original PATE proposal, semi-supervised learning was instrumental to ensure", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 399, + 504, + 411 + ], + "spans": [ + { + "bbox": [ + 105, + 399, + 504, + 411 + ], + "score": 1.0, + "content": "the student achieves strong utility given a limited set of labels from the aggregation mechanism.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 410, + 505, + 423 + ], + "spans": [ + { + "bbox": [ + 105, + 410, + 505, + 423 + ], + "score": 1.0, + "content": "However, we found that virtual adversarial training outperforms the approach from Salimans et al.", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 421, + 505, + 433 + ], + "spans": [ + { + "bbox": [ + 106, + 421, + 505, + 433 + ], + "score": 1.0, + "content": "(2016) in our experiments with Glyph data. These results establish lower bounds on the performance", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 432, + 505, + 445 + ], + "spans": [ + { + "bbox": [ + 105, + 432, + 505, + 445 + ], + "score": 1.0, + "content": "that a student can achieve when supervised with our aggregation mechanisms; future work may", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 443, + 505, + 455 + ], + "spans": [ + { + "bbox": [ + 105, + 443, + 505, + 455 + ], + "score": 1.0, + "content": "continue to investigate virtual adversarial training, semi-supervised generative adversarial networks", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 455, + 504, + 467 + ], + "spans": [ + { + "bbox": [ + 106, + 455, + 504, + 467 + ], + "score": 1.0, + "content": "and other techniques for learning the student in these particular settings with restricted supervision.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 27 + }, + { + "type": "title", + "bbox": [ + 108, + 482, + 218, + 493 + ], + "lines": [ + { + "bbox": [ + 107, + 482, + 219, + 495 + ], + "spans": [ + { + "bbox": [ + 107, + 482, + 219, + 495 + ], + "score": 1.0, + "content": "ACKNOWLEDGMENTS", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 106, + 506, + 504, + 529 + ], + "lines": [ + { + "bbox": [ + 105, + 505, + 506, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 505, + 506, + 520 + ], + "score": 1.0, + "content": "We are grateful to Martín Abadi, Vincent Vanhoucke, and Daniel Levy for their useful inputs and", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 516, + 232, + 530 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 232, + 530 + ], + "score": 1.0, + "content": "discussions towards this paper.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5 + } + ], + "page_idx": 12, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "13", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 192 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 506, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 136, + 97 + ], + "score": 1.0, + "content": "When", + "type": "text" + }, + { + "bbox": [ + 136, + 82, + 170, + 93 + ], + "score": 0.83, + "content": "\\scriptstyle { T = 3 5 0 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 171, + 80, + 173, + 97 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 173, + 83, + 210, + 93 + ], + "score": 0.87, + "content": "\\sigma _ { 1 } { = } 1 5 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 80, + 506, + 97 + ], + "score": 1.0, + "content": ") we capture a significant fraction of queries where teachers have a strong", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 506, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 186, + 107 + ], + "score": 1.0, + "content": "consensus (roughly", + "type": "text" + }, + { + "bbox": [ + 186, + 94, + 219, + 104 + ], + "score": 0.76, + "content": "> 4 0 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 93, + 506, + 107 + ], + "score": 1.0, + "content": "votes) while managing to filter out many queries with poor consensus.", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 506, + 117 + ], + "score": 1.0, + "content": "This moderate check ensures that although many queries with plurality votes between 2,500 and", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 506, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 231, + 128 + ], + "score": 1.0, + "content": "3,500 are answered (i.e., only", + "type": "text" + }, + { + "bbox": [ + 231, + 115, + 266, + 126 + ], + "score": 0.89, + "content": "5 0 \\mathrm { - } 7 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 115, + 506, + 128 + ], + "score": 1.0, + "content": "of teachers agree on a label) the expensive ones are most", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 505, + 139 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 198, + 139 + ], + "score": 1.0, + "content": "likely discarded. For (", + "type": "text" + }, + { + "bbox": [ + 198, + 127, + 232, + 137 + ], + "score": 0.79, + "content": "\\scriptstyle { T = 5 0 0 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 126, + 235, + 139 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 235, + 127, + 272, + 138 + ], + "score": 0.8, + "content": "\\sigma _ { 1 } { = } 1 5 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 126, + 505, + 139 + ], + "score": 1.0, + "content": "), queries with poor consensus are completely culled out.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 136, + 505, + 151 + ], + "spans": [ + { + "bbox": [ + 105, + 136, + 505, + 151 + ], + "score": 1.0, + "content": "This selectivity comes at the expense of a noticeable drop for queries that might have had a strong", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 147, + 505, + 162 + ], + "spans": [ + { + "bbox": [ + 105, + 147, + 505, + 162 + ], + "score": 1.0, + "content": "consensus and little-to-no privacy cost. Thus, this aggressive check answer fewer queries with very", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 159, + 506, + 172 + ], + "spans": [ + { + "bbox": [ + 105, + 159, + 506, + 172 + ], + "score": 1.0, + "content": "strong privacy guarantees. We reiterate that this threshold checking step itself is done in a private", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 170, + 506, + 183 + ], + "spans": [ + { + "bbox": [ + 105, + 170, + 506, + 183 + ], + "score": 1.0, + "content": "manner. Empirically, in our Interactive Aggregator experiments, we expend about a third to a half of", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 181, + 502, + 195 + ], + "spans": [ + { + "bbox": [ + 105, + 181, + 502, + 195 + ], + "score": 1.0, + "content": "our privacy budget on this step, which still yields a very small cost per query across 6,000 queries.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 4.5, + "bbox_fs": [ + 105, + 80, + 506, + 195 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 208, + 201, + 221 + ], + "lines": [ + { + "bbox": [ + 104, + 206, + 203, + 224 + ], + "spans": [ + { + "bbox": [ + 104, + 206, + 203, + 224 + ], + "score": 1.0, + "content": "6 CONCLUSIONS", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 107, + 233, + 505, + 322 + ], + "lines": [ + { + "bbox": [ + 106, + 233, + 505, + 247 + ], + "spans": [ + { + "bbox": [ + 106, + 233, + 505, + 247 + ], + "score": 1.0, + "content": "The key insight motivating the addition of a noisy thresholding step to the two aggregation mecha-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 245, + 506, + 257 + ], + "spans": [ + { + "bbox": [ + 105, + 245, + 506, + 257 + ], + "score": 1.0, + "content": "nisms proposed in our work is that there is a form of synergy between the privacy and accuracy of", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 255, + 505, + 268 + ], + "spans": [ + { + "bbox": [ + 105, + 255, + 505, + 268 + ], + "score": 1.0, + "content": "labels output by the aggregation: labels that come at a small privacy cost also happen to be more", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 266, + 506, + 280 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 506, + 280 + ], + "score": 1.0, + "content": "likely to be correct. As a consequence, we are able to provide more quality supervision to the student", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 277, + 505, + 290 + ], + "spans": [ + { + "bbox": [ + 105, + 277, + 505, + 290 + ], + "score": 1.0, + "content": "by choosing not to output labels when the consensus among teachers is too low to provide an aggre-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 288, + 506, + 301 + ], + "spans": [ + { + "bbox": [ + 105, + 288, + 506, + 301 + ], + "score": 1.0, + "content": "gated prediction at a small cost in privacy. This observation was further confirmed in some of our", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 300, + 505, + 312 + ], + "spans": [ + { + "bbox": [ + 105, + 300, + 505, + 312 + ], + "score": 1.0, + "content": "experiments where we observed that if we trained the student on either private or non-private labels,", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 311, + 488, + 323 + ], + "spans": [ + { + "bbox": [ + 105, + 311, + 488, + 323 + ], + "score": 1.0, + "content": "the former almost always gave better performance than the latter—for a fixed number of labels.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 14.5, + "bbox_fs": [ + 105, + 233, + 506, + 323 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 327, + 505, + 382 + ], + "lines": [ + { + "bbox": [ + 106, + 327, + 505, + 340 + ], + "spans": [ + { + "bbox": [ + 106, + 327, + 505, + 340 + ], + "score": 1.0, + "content": "Complementary with these aggregation mechanisms is the use of a Gaussian (rather than Laplace)", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 338, + 505, + 351 + ], + "spans": [ + { + "bbox": [ + 105, + 338, + 505, + 351 + ], + "score": 1.0, + "content": "distribution to perturb teacher votes. In our experiments with Glyph data, these changes proved", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 349, + 505, + 362 + ], + "spans": [ + { + "bbox": [ + 105, + 349, + 505, + 362 + ], + "score": 1.0, + "content": "essential to preserve the accuracy of the aggregated labels—because of the large number of classes.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 359, + 505, + 373 + ], + "spans": [ + { + "bbox": [ + 105, + 359, + 505, + 373 + ], + "score": 1.0, + "content": "The analysis presented in Section 4 details the delicate but necessary adaptation of analogous results", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 371, + 217, + 385 + ], + "spans": [ + { + "bbox": [ + 105, + 371, + 217, + 385 + ], + "score": 1.0, + "content": "for the Laplace NoisyMax.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 21, + "bbox_fs": [ + 105, + 327, + 505, + 385 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 388, + 505, + 465 + ], + "lines": [ + { + "bbox": [ + 105, + 388, + 505, + 401 + ], + "spans": [ + { + "bbox": [ + 105, + 388, + 505, + 401 + ], + "score": 1.0, + "content": "As was the case for the original PATE proposal, semi-supervised learning was instrumental to ensure", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 399, + 504, + 411 + ], + "spans": [ + { + "bbox": [ + 105, + 399, + 504, + 411 + ], + "score": 1.0, + "content": "the student achieves strong utility given a limited set of labels from the aggregation mechanism.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 410, + 505, + 423 + ], + "spans": [ + { + "bbox": [ + 105, + 410, + 505, + 423 + ], + "score": 1.0, + "content": "However, we found that virtual adversarial training outperforms the approach from Salimans et al.", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 421, + 505, + 433 + ], + "spans": [ + { + "bbox": [ + 106, + 421, + 505, + 433 + ], + "score": 1.0, + "content": "(2016) in our experiments with Glyph data. These results establish lower bounds on the performance", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 432, + 505, + 445 + ], + "spans": [ + { + "bbox": [ + 105, + 432, + 505, + 445 + ], + "score": 1.0, + "content": "that a student can achieve when supervised with our aggregation mechanisms; future work may", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 443, + 505, + 455 + ], + "spans": [ + { + "bbox": [ + 105, + 443, + 505, + 455 + ], + "score": 1.0, + "content": "continue to investigate virtual adversarial training, semi-supervised generative adversarial networks", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 455, + 504, + 467 + ], + "spans": [ + { + "bbox": [ + 106, + 455, + 504, + 467 + ], + "score": 1.0, + "content": "and other techniques for learning the student in these particular settings with restricted supervision.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 27, + "bbox_fs": [ + 105, + 388, + 505, + 467 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 482, + 218, + 493 + ], + "lines": [ + { + "bbox": [ + 107, + 482, + 219, + 495 + ], + "spans": [ + { + "bbox": [ + 107, + 482, + 219, + 495 + ], + "score": 1.0, + "content": "ACKNOWLEDGMENTS", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 106, + 506, + 504, + 529 + ], + "lines": [ + { + "bbox": [ + 105, + 505, + 506, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 505, + 506, + 520 + ], + "score": 1.0, + "content": "We are grateful to Martín Abadi, Vincent Vanhoucke, and Daniel Levy for their useful inputs and", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 516, + 232, + 530 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 232, + 530 + ], + "score": 1.0, + "content": "discussions towards this paper.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5, + "bbox_fs": [ + 105, + 505, + 506, + 530 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 81, + 175, + 93 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 176, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 176, + 95 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 109, + 100, + 504, + 134 + ], + "lines": [ + { + "bbox": [ + 107, + 100, + 505, + 113 + ], + "spans": [ + { + "bbox": [ + 107, + 100, + 505, + 113 + ], + "score": 1.0, + "content": "Martín Abadi, Andy Chu, Ian Goodfellow, H Brendan McMahan, Ilya Mironov, Kunal Talwar, and", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 111, + 506, + 124 + ], + "spans": [ + { + "bbox": [ + 115, + 111, + 506, + 124 + ], + "score": 1.0, + "content": "Li Zhang. Deep learning with differential privacy. In Proceedings of the 2016 ACM SIGSAC", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 116, + 122, + 452, + 137 + ], + "spans": [ + { + "bbox": [ + 116, + 122, + 452, + 137 + ], + "score": 1.0, + "content": "Conference on Computer and Communications Security, pp. 308–318. ACM, 2016.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 107, + 142, + 506, + 187 + ], + "lines": [ + { + "bbox": [ + 105, + 141, + 506, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 141, + 506, + 156 + ], + "score": 1.0, + "content": "Martín Abadi, Úlfar Erlingsson, Ian Goodfellow, H. Brendan McMahan, Nicolas Papernot, Ilya", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 116, + 154, + 505, + 166 + ], + "spans": [ + { + "bbox": [ + 116, + 154, + 505, + 166 + ], + "score": 1.0, + "content": "Mironov, Kunal Talwar, and Li Zhang. On the protection of private information in machine", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 165, + 506, + 178 + ], + "spans": [ + { + "bbox": [ + 115, + 165, + 506, + 178 + ], + "score": 1.0, + "content": "learning systems: Two recent approaches. In 2017 IEEE 30th Computer Security Foundations", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 115, + 176, + 254, + 188 + ], + "spans": [ + { + "bbox": [ + 115, + 176, + 254, + 188 + ], + "score": 1.0, + "content": "Symposium (CSF), pp. 1–6, 2017.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5.5 + }, + { + "type": "text", + "bbox": [ + 105, + 194, + 504, + 218 + ], + "lines": [ + { + "bbox": [ + 106, + 195, + 506, + 208 + ], + "spans": [ + { + "bbox": [ + 106, + 195, + 206, + 208 + ], + "score": 1.0, + "content": "Charu C Aggarwal. On", + "type": "text" + }, + { + "bbox": [ + 207, + 196, + 213, + 205 + ], + "score": 0.82, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 195, + 506, + 208 + ], + "score": 1.0, + "content": "-anonymity and the curse of dimensionality. In Proceedings of the 31st", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 115, + 206, + 488, + 218 + ], + "spans": [ + { + "bbox": [ + 115, + 206, + 488, + 218 + ], + "score": 1.0, + "content": "International Conference on Very large Data Bases, pp. 901–909. VLDB Endowment, 2005.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5 + }, + { + "type": "text", + "bbox": [ + 106, + 225, + 506, + 259 + ], + "lines": [ + { + "bbox": [ + 105, + 224, + 506, + 239 + ], + "spans": [ + { + "bbox": [ + 105, + 224, + 506, + 239 + ], + "score": 1.0, + "content": "Mitali Bafna and Jonathan Ullman. The price of selection in differential privacy. In Proceedings of", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 116, + 237, + 505, + 249 + ], + "spans": [ + { + "bbox": [ + 116, + 237, + 505, + 249 + ], + "score": 1.0, + "content": "the 2017 Conference on Learning Theory (COLT), volume 65 of Proceedings of Machine Learn-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 116, + 247, + 273, + 259 + ], + "spans": [ + { + "bbox": [ + 116, + 247, + 273, + 259 + ], + "score": 1.0, + "content": "ing Research, pp. 151–168, July 2017.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 107, + 266, + 506, + 300 + ], + "lines": [ + { + "bbox": [ + 106, + 267, + 505, + 279 + ], + "spans": [ + { + "bbox": [ + 106, + 267, + 505, + 279 + ], + "score": 1.0, + "content": "Raef Bassily, Adam Smith, and Abhradeep Thakurta. Private empirical risk minimization: Efficient", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 116, + 278, + 505, + 290 + ], + "spans": [ + { + "bbox": [ + 116, + 278, + 505, + 290 + ], + "score": 1.0, + "content": "algorithms and tight error bounds. In Proceedings of the 2014 IEEE 55th Annual Symposium on", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 116, + 289, + 479, + 301 + ], + "spans": [ + { + "bbox": [ + 116, + 289, + 479, + 301 + ], + "score": 1.0, + "content": "Foundations of Computer Science (FOCS), pp. 464–473, 2014. ISBN 978-1-4799-6517-5.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 108, + 308, + 504, + 342 + ], + "lines": [ + { + "bbox": [ + 105, + 307, + 506, + 321 + ], + "spans": [ + { + "bbox": [ + 105, + 307, + 506, + 321 + ], + "score": 1.0, + "content": "Raghav Bhaskar, Srivatsan Laxman, Adam Smith, and Abhradeep Thakurta. Discovering frequent", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 319, + 506, + 333 + ], + "spans": [ + { + "bbox": [ + 115, + 319, + 506, + 333 + ], + "score": 1.0, + "content": "patterns in sensitive data. In Proceedings of the 16th ACM SIGKDD international conference on", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 115, + 330, + 381, + 343 + ], + "spans": [ + { + "bbox": [ + 115, + 330, + 381, + 343 + ], + "score": 1.0, + "content": "Knowledge discovery and data mining, pp. 503–512. ACM, 2010.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 106, + 349, + 505, + 395 + ], + "lines": [ + { + "bbox": [ + 105, + 349, + 506, + 363 + ], + "spans": [ + { + "bbox": [ + 105, + 349, + 506, + 363 + ], + "score": 1.0, + "content": "Battista Biggio, Igino Corona, Davide Maiorca, Blaine Nelson, Nedim Šrndic, Pavel Laskov, Gior- ´", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 115, + 362, + 506, + 374 + ], + "spans": [ + { + "bbox": [ + 115, + 362, + 506, + 374 + ], + "score": 1.0, + "content": "gio Giacinto, and Fabio Roli. Evasion attacks against machine learning at test time. In Joint", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 372, + 506, + 385 + ], + "spans": [ + { + "bbox": [ + 115, + 372, + 506, + 385 + ], + "score": 1.0, + "content": "European Conference on Machine Learning and Knowledge Discovery in Databases, pp. 387–", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 382, + 162, + 396 + ], + "spans": [ + { + "bbox": [ + 115, + 382, + 162, + 396 + ], + "score": 1.0, + "content": "402, 2013.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 20.5 + }, + { + "type": "text", + "bbox": [ + 106, + 402, + 503, + 426 + ], + "lines": [ + { + "bbox": [ + 105, + 400, + 505, + 418 + ], + "spans": [ + { + "bbox": [ + 105, + 400, + 505, + 418 + ], + "score": 1.0, + "content": "Vincent Bindschaedler, Reza Shokri, and Carl A Gunter. Plausible deniability for privacy-preserving", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 116, + 414, + 385, + 426 + ], + "spans": [ + { + "bbox": [ + 116, + 414, + 385, + 426 + ], + "score": 1.0, + "content": "data synthesis. Proceedings of the VLDB Endowment, 10(5), 2017.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5 + }, + { + "type": "text", + "bbox": [ + 106, + 433, + 503, + 457 + ], + "lines": [ + { + "bbox": [ + 106, + 433, + 505, + 446 + ], + "spans": [ + { + "bbox": [ + 106, + 433, + 505, + 446 + ], + "score": 1.0, + "content": "Mark Bun and Thomas Steinke. Concentrated differential privacy: Simplifications, extensions, and", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 444, + 444, + 457 + ], + "spans": [ + { + "bbox": [ + 115, + 444, + 444, + 457 + ], + "score": 1.0, + "content": "lower bounds. In Theory of Cryptography Conference (TCC), pp. 635–658, 2016.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5 + }, + { + "type": "text", + "bbox": [ + 107, + 463, + 505, + 497 + ], + "lines": [ + { + "bbox": [ + 106, + 463, + 505, + 477 + ], + "spans": [ + { + "bbox": [ + 106, + 463, + 505, + 477 + ], + "score": 1.0, + "content": "Mark Bun, Thomas Steinke, and Jonathan Ullman. Make up your mind: The price of online queries", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 115, + 475, + 505, + 488 + ], + "spans": [ + { + "bbox": [ + 115, + 475, + 505, + 488 + ], + "score": 1.0, + "content": "in differential privacy. In Proceedings of the Twenty-Eighth Annual ACM-SIAM Symposium on", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 117, + 486, + 322, + 498 + ], + "spans": [ + { + "bbox": [ + 117, + 486, + 322, + 498 + ], + "score": 1.0, + "content": "Discrete Algorithms, pp. 1306–1325. SIAM, 2017.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 106, + 504, + 505, + 528 + ], + "lines": [ + { + "bbox": [ + 106, + 505, + 505, + 518 + ], + "spans": [ + { + "bbox": [ + 106, + 505, + 505, + 518 + ], + "score": 1.0, + "content": "Kamalika Chaudhuri, Claire Monteleoni, and Anand D Sarwate. Differentially private empirical", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 115, + 516, + 466, + 528 + ], + "spans": [ + { + "bbox": [ + 115, + 516, + 466, + 528 + ], + "score": 1.0, + "content": "risk minimization. Journal of Machine Learning Research, 12(Mar):1069–1109, 2011.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5 + }, + { + "type": "text", + "bbox": [ + 107, + 535, + 505, + 558 + ], + "lines": [ + { + "bbox": [ + 105, + 534, + 505, + 549 + ], + "spans": [ + { + "bbox": [ + 105, + 534, + 505, + 549 + ], + "score": 1.0, + "content": "David Cohn, Les Atlas, and Richard Ladner. Improving generalization with active learning. Machine", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 116, + 546, + 244, + 559 + ], + "spans": [ + { + "bbox": [ + 116, + 546, + 244, + 559 + ], + "score": 1.0, + "content": "learning, 15(2):201–221, 1994.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5 + }, + { + "type": "text", + "bbox": [ + 105, + 565, + 504, + 589 + ], + "lines": [ + { + "bbox": [ + 105, + 564, + 505, + 580 + ], + "spans": [ + { + "bbox": [ + 105, + 564, + 505, + 580 + ], + "score": 1.0, + "content": "Cynthia Dwork and Aaron Roth. The algorithmic foundations of differential privacy. Foundations", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 115, + 577, + 394, + 589 + ], + "spans": [ + { + "bbox": [ + 115, + 577, + 394, + 589 + ], + "score": 1.0, + "content": "and Trends in Theoretical Computer Science, 9(3–4):211–407, 2014.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5 + }, + { + "type": "text", + "bbox": [ + 105, + 596, + 505, + 619 + ], + "lines": [ + { + "bbox": [ + 105, + 594, + 505, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 505, + 610 + ], + "score": 1.0, + "content": "Cynthia Dwork and Guy N Rothblum. Concentrated differential privacy. arXiv preprint", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 115, + 606, + 219, + 619 + ], + "spans": [ + { + "bbox": [ + 115, + 606, + 219, + 619 + ], + "score": 1.0, + "content": "arXiv:1603.01887, 2016.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5 + }, + { + "type": "text", + "bbox": [ + 106, + 626, + 505, + 660 + ], + "lines": [ + { + "bbox": [ + 106, + 626, + 505, + 640 + ], + "spans": [ + { + "bbox": [ + 106, + 626, + 505, + 640 + ], + "score": 1.0, + "content": "Cynthia Dwork, Frank McSherry, Kobbi Nissim, and Adam Smith. Calibrating noise to sensitivity in", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 115, + 637, + 505, + 651 + ], + "spans": [ + { + "bbox": [ + 115, + 637, + 505, + 651 + ], + "score": 1.0, + "content": "private data analysis. In Proceedings of the Third Conference on Theory of Cryptography (TCC),", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 116, + 649, + 253, + 660 + ], + "spans": [ + { + "bbox": [ + 116, + 649, + 253, + 660 + ], + "score": 1.0, + "content": "volume 3876, pp. 265–284, 2006.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 106, + 668, + 504, + 702 + ], + "lines": [ + { + "bbox": [ + 106, + 668, + 504, + 681 + ], + "spans": [ + { + "bbox": [ + 106, + 668, + 504, + 681 + ], + "score": 1.0, + "content": "Cynthia Dwork, Guy N Rothblum, and Salil Vadhan. Boosting and differential privacy. In Pro-", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 115, + 677, + 505, + 694 + ], + "spans": [ + { + "bbox": [ + 115, + 677, + 505, + 694 + ], + "score": 1.0, + "content": "ceedings of the 51st Annual IEEE Symposium on Foundations of Computer Science (FOCS), pp.", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 115, + 689, + 172, + 702 + ], + "spans": [ + { + "bbox": [ + 115, + 689, + 172, + 702 + ], + "score": 1.0, + "content": "51–60, 2010.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42 + }, + { + "type": "text", + "bbox": [ + 106, + 709, + 503, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 504, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 504, + 722 + ], + "score": 1.0, + "content": "Jihun Hamm, Yingjun Cao, and Mikhail Belkin. Learning privately from multiparty data. In Inter-", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 115, + 721, + 403, + 732 + ], + "spans": [ + { + "bbox": [ + 115, + 721, + 403, + 732 + ], + "score": 1.0, + "content": "national Conference on Machine Learning (ICML), pp. 555–563, 2016.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 44.5 + } + ], + "page_idx": 13, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "14", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 81, + 175, + 93 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 176, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 176, + 95 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 109, + 100, + 504, + 134 + ], + "lines": [ + { + "bbox": [ + 107, + 100, + 505, + 113 + ], + "spans": [ + { + "bbox": [ + 107, + 100, + 505, + 113 + ], + "score": 1.0, + "content": "Martín Abadi, Andy Chu, Ian Goodfellow, H Brendan McMahan, Ilya Mironov, Kunal Talwar, and", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 111, + 506, + 124 + ], + "spans": [ + { + "bbox": [ + 115, + 111, + 506, + 124 + ], + "score": 1.0, + "content": "Li Zhang. Deep learning with differential privacy. In Proceedings of the 2016 ACM SIGSAC", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 116, + 122, + 452, + 137 + ], + "spans": [ + { + "bbox": [ + 116, + 122, + 452, + 137 + ], + "score": 1.0, + "content": "Conference on Computer and Communications Security, pp. 308–318. ACM, 2016.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2, + "bbox_fs": [ + 107, + 100, + 506, + 137 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 142, + 506, + 187 + ], + "lines": [ + { + "bbox": [ + 105, + 141, + 506, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 141, + 506, + 156 + ], + "score": 1.0, + "content": "Martín Abadi, Úlfar Erlingsson, Ian Goodfellow, H. Brendan McMahan, Nicolas Papernot, Ilya", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 116, + 154, + 505, + 166 + ], + "spans": [ + { + "bbox": [ + 116, + 154, + 505, + 166 + ], + "score": 1.0, + "content": "Mironov, Kunal Talwar, and Li Zhang. On the protection of private information in machine", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 165, + 506, + 178 + ], + "spans": [ + { + "bbox": [ + 115, + 165, + 506, + 178 + ], + "score": 1.0, + "content": "learning systems: Two recent approaches. In 2017 IEEE 30th Computer Security Foundations", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 115, + 176, + 254, + 188 + ], + "spans": [ + { + "bbox": [ + 115, + 176, + 254, + 188 + ], + "score": 1.0, + "content": "Symposium (CSF), pp. 1–6, 2017.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5.5, + "bbox_fs": [ + 105, + 141, + 506, + 188 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 194, + 504, + 218 + ], + "lines": [ + { + "bbox": [ + 106, + 195, + 506, + 208 + ], + "spans": [ + { + "bbox": [ + 106, + 195, + 206, + 208 + ], + "score": 1.0, + "content": "Charu C Aggarwal. On", + "type": "text" + }, + { + "bbox": [ + 207, + 196, + 213, + 205 + ], + "score": 0.82, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 195, + 506, + 208 + ], + "score": 1.0, + "content": "-anonymity and the curse of dimensionality. In Proceedings of the 31st", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 115, + 206, + 488, + 218 + ], + "spans": [ + { + "bbox": [ + 115, + 206, + 488, + 218 + ], + "score": 1.0, + "content": "International Conference on Very large Data Bases, pp. 901–909. VLDB Endowment, 2005.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5, + "bbox_fs": [ + 106, + 195, + 506, + 218 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 225, + 506, + 259 + ], + "lines": [ + { + "bbox": [ + 105, + 224, + 506, + 239 + ], + "spans": [ + { + "bbox": [ + 105, + 224, + 506, + 239 + ], + "score": 1.0, + "content": "Mitali Bafna and Jonathan Ullman. The price of selection in differential privacy. In Proceedings of", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 116, + 237, + 505, + 249 + ], + "spans": [ + { + "bbox": [ + 116, + 237, + 505, + 249 + ], + "score": 1.0, + "content": "the 2017 Conference on Learning Theory (COLT), volume 65 of Proceedings of Machine Learn-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 116, + 247, + 273, + 259 + ], + "spans": [ + { + "bbox": [ + 116, + 247, + 273, + 259 + ], + "score": 1.0, + "content": "ing Research, pp. 151–168, July 2017.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11, + "bbox_fs": [ + 105, + 224, + 506, + 259 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 266, + 506, + 300 + ], + "lines": [ + { + "bbox": [ + 106, + 267, + 505, + 279 + ], + "spans": [ + { + "bbox": [ + 106, + 267, + 505, + 279 + ], + "score": 1.0, + "content": "Raef Bassily, Adam Smith, and Abhradeep Thakurta. Private empirical risk minimization: Efficient", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 116, + 278, + 505, + 290 + ], + "spans": [ + { + "bbox": [ + 116, + 278, + 505, + 290 + ], + "score": 1.0, + "content": "algorithms and tight error bounds. In Proceedings of the 2014 IEEE 55th Annual Symposium on", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 116, + 289, + 479, + 301 + ], + "spans": [ + { + "bbox": [ + 116, + 289, + 479, + 301 + ], + "score": 1.0, + "content": "Foundations of Computer Science (FOCS), pp. 464–473, 2014. ISBN 978-1-4799-6517-5.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14, + "bbox_fs": [ + 106, + 267, + 505, + 301 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 308, + 504, + 342 + ], + "lines": [ + { + "bbox": [ + 105, + 307, + 506, + 321 + ], + "spans": [ + { + "bbox": [ + 105, + 307, + 506, + 321 + ], + "score": 1.0, + "content": "Raghav Bhaskar, Srivatsan Laxman, Adam Smith, and Abhradeep Thakurta. Discovering frequent", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 319, + 506, + 333 + ], + "spans": [ + { + "bbox": [ + 115, + 319, + 506, + 333 + ], + "score": 1.0, + "content": "patterns in sensitive data. In Proceedings of the 16th ACM SIGKDD international conference on", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 115, + 330, + 381, + 343 + ], + "spans": [ + { + "bbox": [ + 115, + 330, + 381, + 343 + ], + "score": 1.0, + "content": "Knowledge discovery and data mining, pp. 503–512. ACM, 2010.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17, + "bbox_fs": [ + 105, + 307, + 506, + 343 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 349, + 505, + 395 + ], + "lines": [ + { + "bbox": [ + 105, + 349, + 506, + 363 + ], + "spans": [ + { + "bbox": [ + 105, + 349, + 506, + 363 + ], + "score": 1.0, + "content": "Battista Biggio, Igino Corona, Davide Maiorca, Blaine Nelson, Nedim Šrndic, Pavel Laskov, Gior- ´", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 115, + 362, + 506, + 374 + ], + "spans": [ + { + "bbox": [ + 115, + 362, + 506, + 374 + ], + "score": 1.0, + "content": "gio Giacinto, and Fabio Roli. Evasion attacks against machine learning at test time. In Joint", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 372, + 506, + 385 + ], + "spans": [ + { + "bbox": [ + 115, + 372, + 506, + 385 + ], + "score": 1.0, + "content": "European Conference on Machine Learning and Knowledge Discovery in Databases, pp. 387–", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 382, + 162, + 396 + ], + "spans": [ + { + "bbox": [ + 115, + 382, + 162, + 396 + ], + "score": 1.0, + "content": "402, 2013.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 20.5, + "bbox_fs": [ + 105, + 349, + 506, + 396 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 402, + 503, + 426 + ], + "lines": [ + { + "bbox": [ + 105, + 400, + 505, + 418 + ], + "spans": [ + { + "bbox": [ + 105, + 400, + 505, + 418 + ], + "score": 1.0, + "content": "Vincent Bindschaedler, Reza Shokri, and Carl A Gunter. Plausible deniability for privacy-preserving", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 116, + 414, + 385, + 426 + ], + "spans": [ + { + "bbox": [ + 116, + 414, + 385, + 426 + ], + "score": 1.0, + "content": "data synthesis. Proceedings of the VLDB Endowment, 10(5), 2017.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5, + "bbox_fs": [ + 105, + 400, + 505, + 426 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 433, + 503, + 457 + ], + "lines": [ + { + "bbox": [ + 106, + 433, + 505, + 446 + ], + "spans": [ + { + "bbox": [ + 106, + 433, + 505, + 446 + ], + "score": 1.0, + "content": "Mark Bun and Thomas Steinke. Concentrated differential privacy: Simplifications, extensions, and", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 444, + 444, + 457 + ], + "spans": [ + { + "bbox": [ + 115, + 444, + 444, + 457 + ], + "score": 1.0, + "content": "lower bounds. In Theory of Cryptography Conference (TCC), pp. 635–658, 2016.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5, + "bbox_fs": [ + 106, + 433, + 505, + 457 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 463, + 505, + 497 + ], + "lines": [ + { + "bbox": [ + 106, + 463, + 505, + 477 + ], + "spans": [ + { + "bbox": [ + 106, + 463, + 505, + 477 + ], + "score": 1.0, + "content": "Mark Bun, Thomas Steinke, and Jonathan Ullman. Make up your mind: The price of online queries", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 115, + 475, + 505, + 488 + ], + "spans": [ + { + "bbox": [ + 115, + 475, + 505, + 488 + ], + "score": 1.0, + "content": "in differential privacy. In Proceedings of the Twenty-Eighth Annual ACM-SIAM Symposium on", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 117, + 486, + 322, + 498 + ], + "spans": [ + { + "bbox": [ + 117, + 486, + 322, + 498 + ], + "score": 1.0, + "content": "Discrete Algorithms, pp. 1306–1325. SIAM, 2017.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28, + "bbox_fs": [ + 106, + 463, + 505, + 498 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 504, + 505, + 528 + ], + "lines": [ + { + "bbox": [ + 106, + 505, + 505, + 518 + ], + "spans": [ + { + "bbox": [ + 106, + 505, + 505, + 518 + ], + "score": 1.0, + "content": "Kamalika Chaudhuri, Claire Monteleoni, and Anand D Sarwate. Differentially private empirical", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 115, + 516, + 466, + 528 + ], + "spans": [ + { + "bbox": [ + 115, + 516, + 466, + 528 + ], + "score": 1.0, + "content": "risk minimization. Journal of Machine Learning Research, 12(Mar):1069–1109, 2011.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5, + "bbox_fs": [ + 106, + 505, + 505, + 528 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 535, + 505, + 558 + ], + "lines": [ + { + "bbox": [ + 105, + 534, + 505, + 549 + ], + "spans": [ + { + "bbox": [ + 105, + 534, + 505, + 549 + ], + "score": 1.0, + "content": "David Cohn, Les Atlas, and Richard Ladner. Improving generalization with active learning. Machine", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 116, + 546, + 244, + 559 + ], + "spans": [ + { + "bbox": [ + 116, + 546, + 244, + 559 + ], + "score": 1.0, + "content": "learning, 15(2):201–221, 1994.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5, + "bbox_fs": [ + 105, + 534, + 505, + 559 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 565, + 504, + 589 + ], + "lines": [ + { + "bbox": [ + 105, + 564, + 505, + 580 + ], + "spans": [ + { + "bbox": [ + 105, + 564, + 505, + 580 + ], + "score": 1.0, + "content": "Cynthia Dwork and Aaron Roth. The algorithmic foundations of differential privacy. Foundations", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 115, + 577, + 394, + 589 + ], + "spans": [ + { + "bbox": [ + 115, + 577, + 394, + 589 + ], + "score": 1.0, + "content": "and Trends in Theoretical Computer Science, 9(3–4):211–407, 2014.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5, + "bbox_fs": [ + 105, + 564, + 505, + 589 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 596, + 505, + 619 + ], + "lines": [ + { + "bbox": [ + 105, + 594, + 505, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 505, + 610 + ], + "score": 1.0, + "content": "Cynthia Dwork and Guy N Rothblum. Concentrated differential privacy. arXiv preprint", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 115, + 606, + 219, + 619 + ], + "spans": [ + { + "bbox": [ + 115, + 606, + 219, + 619 + ], + "score": 1.0, + "content": "arXiv:1603.01887, 2016.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5, + "bbox_fs": [ + 105, + 594, + 505, + 619 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 626, + 505, + 660 + ], + "lines": [ + { + "bbox": [ + 106, + 626, + 505, + 640 + ], + "spans": [ + { + "bbox": [ + 106, + 626, + 505, + 640 + ], + "score": 1.0, + "content": "Cynthia Dwork, Frank McSherry, Kobbi Nissim, and Adam Smith. Calibrating noise to sensitivity in", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 115, + 637, + 505, + 651 + ], + "spans": [ + { + "bbox": [ + 115, + 637, + 505, + 651 + ], + "score": 1.0, + "content": "private data analysis. In Proceedings of the Third Conference on Theory of Cryptography (TCC),", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 116, + 649, + 253, + 660 + ], + "spans": [ + { + "bbox": [ + 116, + 649, + 253, + 660 + ], + "score": 1.0, + "content": "volume 3876, pp. 265–284, 2006.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39, + "bbox_fs": [ + 106, + 626, + 505, + 660 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 668, + 504, + 702 + ], + "lines": [ + { + "bbox": [ + 106, + 668, + 504, + 681 + ], + "spans": [ + { + "bbox": [ + 106, + 668, + 504, + 681 + ], + "score": 1.0, + "content": "Cynthia Dwork, Guy N Rothblum, and Salil Vadhan. Boosting and differential privacy. In Pro-", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 115, + 677, + 505, + 694 + ], + "spans": [ + { + "bbox": [ + 115, + 677, + 505, + 694 + ], + "score": 1.0, + "content": "ceedings of the 51st Annual IEEE Symposium on Foundations of Computer Science (FOCS), pp.", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 115, + 689, + 172, + 702 + ], + "spans": [ + { + "bbox": [ + 115, + 689, + 172, + 702 + ], + "score": 1.0, + "content": "51–60, 2010.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42, + "bbox_fs": [ + 106, + 668, + 505, + 702 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 709, + 503, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 504, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 504, + 722 + ], + "score": 1.0, + "content": "Jihun Hamm, Yingjun Cao, and Mikhail Belkin. Learning privately from multiparty data. In Inter-", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 115, + 721, + 403, + 732 + ], + "spans": [ + { + "bbox": [ + 115, + 721, + 403, + 732 + ], + "score": 1.0, + "content": "national Conference on Machine Learning (ICML), pp. 555–563, 2016.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 44.5, + "bbox_fs": [ + 106, + 709, + 504, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Steve Hanneke. Theory of disagreement-based active learning. Foundations and Trends in Machine", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 116, + 93, + 250, + 105 + ], + "spans": [ + { + "bbox": [ + 116, + 93, + 250, + 105 + ], + "score": 1.0, + "content": "Learning, 7(2-3):131–309, 2014.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 106, + 111, + 504, + 145 + ], + "lines": [ + { + "bbox": [ + 105, + 110, + 505, + 126 + ], + "spans": [ + { + "bbox": [ + 105, + 110, + 505, + 126 + ], + "score": 1.0, + "content": "Moritz Hardt and Guy N Rothblum. A multiplicative weights mechanism for privacy-preserving", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 121, + 505, + 136 + ], + "spans": [ + { + "bbox": [ + 115, + 121, + 505, + 136 + ], + "score": 1.0, + "content": "data analysis. In 51st Annual IEEE Symposium on Foundations of Computer Science (FOCS), pp.", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 116, + 133, + 171, + 145 + ], + "spans": [ + { + "bbox": [ + 116, + 133, + 171, + 145 + ], + "score": 1.0, + "content": "61–70, 2010.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 106, + 151, + 504, + 185 + ], + "lines": [ + { + "bbox": [ + 105, + 149, + 504, + 166 + ], + "spans": [ + { + "bbox": [ + 105, + 149, + 504, + 166 + ], + "score": 1.0, + "content": "Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recog-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 161, + 505, + 177 + ], + "spans": [ + { + "bbox": [ + 115, + 161, + 505, + 177 + ], + "score": 1.0, + "content": "nition. In 2016 IEEE Conference on Computer Vision and Pattern Recognition (CVPR), pp.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 117, + 173, + 181, + 185 + ], + "spans": [ + { + "bbox": [ + 117, + 173, + 181, + 185 + ], + "score": 1.0, + "content": "770–778, 2016.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 105, + 191, + 504, + 214 + ], + "lines": [ + { + "bbox": [ + 105, + 190, + 505, + 205 + ], + "spans": [ + { + "bbox": [ + 105, + 190, + 505, + 205 + ], + "score": 1.0, + "content": "Ron Kohavi. Scaling up the accuracy of Naive-Bayes classifiers: A decision-tree hybrid. In KDD,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 117, + 202, + 244, + 215 + ], + "spans": [ + { + "bbox": [ + 117, + 202, + 244, + 215 + ], + "score": 1.0, + "content": "volume 96, pp. 202–207, 1996.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5 + }, + { + "type": "text", + "bbox": [ + 107, + 220, + 505, + 265 + ], + "lines": [ + { + "bbox": [ + 105, + 219, + 505, + 234 + ], + "spans": [ + { + "bbox": [ + 105, + 219, + 505, + 234 + ], + "score": 1.0, + "content": "Yun Liu, Krishna Gadepalli, Mohammad Norouzi, George E Dahl, Timo Kohlberger, Aleksey", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 115, + 231, + 505, + 244 + ], + "spans": [ + { + "bbox": [ + 115, + 231, + 505, + 244 + ], + "score": 1.0, + "content": "Boyko, Subhashini Venugopalan, Aleksei Timofeev, Philip Q Nelson, Greg S Corrado, et al.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 113, + 241, + 506, + 257 + ], + "spans": [ + { + "bbox": [ + 113, + 241, + 506, + 257 + ], + "score": 1.0, + "content": "Detecting cancer metastases on gigapixel pathology images. arXiv preprint arXiv:1703.02442,", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 114, + 253, + 143, + 266 + ], + "spans": [ + { + "bbox": [ + 114, + 253, + 143, + 266 + ], + "score": 1.0, + "content": "2017.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 11.5 + }, + { + "type": "text", + "bbox": [ + 105, + 271, + 504, + 295 + ], + "lines": [ + { + "bbox": [ + 105, + 271, + 505, + 285 + ], + "spans": [ + { + "bbox": [ + 105, + 271, + 505, + 285 + ], + "score": 1.0, + "content": "H Brendan McMahan, Daniel Ramage, Kunal Talwar, and Li Zhang. Learning differentially private", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 282, + 449, + 295 + ], + "spans": [ + { + "bbox": [ + 115, + 282, + 449, + 295 + ], + "score": 1.0, + "content": "language models without losing accuracy. arXiv preprint arXiv:1710.06963, 2017.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5 + }, + { + "type": "text", + "bbox": [ + 105, + 300, + 504, + 324 + ], + "lines": [ + { + "bbox": [ + 106, + 301, + 504, + 313 + ], + "spans": [ + { + "bbox": [ + 106, + 301, + 504, + 313 + ], + "score": 1.0, + "content": "Frank McSherry and Kunal Talwar. Mechanism design via differential privacy. In Proceedings of the", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 116, + 311, + 501, + 324 + ], + "spans": [ + { + "bbox": [ + 116, + 311, + 501, + 324 + ], + "score": 1.0, + "content": "48th Annual IEEE Symposium on Foundations of Computer Science (FOCS), pp. 94–103, 2007.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5 + }, + { + "type": "text", + "bbox": [ + 105, + 329, + 504, + 353 + ], + "lines": [ + { + "bbox": [ + 105, + 329, + 505, + 343 + ], + "spans": [ + { + "bbox": [ + 105, + 329, + 505, + 343 + ], + "score": 1.0, + "content": "Ilya Mironov. Rényi differential privacy. In 2017 IEEE 30th Computer Security Foundations Sym-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 114, + 341, + 257, + 352 + ], + "spans": [ + { + "bbox": [ + 114, + 341, + 257, + 352 + ], + "score": 1.0, + "content": "posium (CSF), pp. 263–275, 2017.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5 + }, + { + "type": "text", + "bbox": [ + 106, + 358, + 504, + 392 + ], + "lines": [ + { + "bbox": [ + 106, + 358, + 504, + 371 + ], + "spans": [ + { + "bbox": [ + 106, + 358, + 504, + 371 + ], + "score": 1.0, + "content": "Takeru Miyato, Shin-ichi Maeda, Masanori Koyama, and Shin Ishii. Virtual adversarial train-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 370, + 505, + 383 + ], + "spans": [ + { + "bbox": [ + 115, + 370, + 505, + 383 + ], + "score": 1.0, + "content": "ing: a regularization method for supervised and semi-supervised learning. arXiv preprint", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 380, + 220, + 392 + ], + "spans": [ + { + "bbox": [ + 115, + 380, + 220, + 392 + ], + "score": 1.0, + "content": "arXiv:1704.03976, 2017.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 103, + 398, + 505, + 422 + ], + "lines": [ + { + "bbox": [ + 106, + 398, + 505, + 411 + ], + "spans": [ + { + "bbox": [ + 106, + 398, + 505, + 411 + ], + "score": 1.0, + "content": "Arvind Narayanan and Vitaly Shmatikov. Robust de-anonymization of large sparse datasets. In", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 116, + 410, + 495, + 422 + ], + "spans": [ + { + "bbox": [ + 116, + 410, + 495, + 422 + ], + "score": 1.0, + "content": "Proceedings of the 2008 IEEE Symposium on Security and Privacy, pp. 111–125. IEEE, 2008.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5 + }, + { + "type": "text", + "bbox": [ + 107, + 427, + 505, + 462 + ], + "lines": [ + { + "bbox": [ + 105, + 426, + 505, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 505, + 442 + ], + "score": 1.0, + "content": "Yuval Netzer, Tao Wang, Adam Coates, Alessandro Bissacco, Bo Wu, and Andrew Y Ng. Reading", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 438, + 505, + 453 + ], + "spans": [ + { + "bbox": [ + 115, + 438, + 505, + 453 + ], + "score": 1.0, + "content": "digits in natural images with unsupervised feature learning. In NIPS Workshop on Deep Learning", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 116, + 450, + 318, + 463 + ], + "spans": [ + { + "bbox": [ + 116, + 450, + 318, + 463 + ], + "score": 1.0, + "content": "and Unsupervised Feature Learning, pp. 5, 2011.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 107, + 467, + 505, + 502 + ], + "lines": [ + { + "bbox": [ + 105, + 466, + 505, + 481 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 505, + 481 + ], + "score": 1.0, + "content": "Kobbi Nissim, Sofya Raskhodnikova, and Adam Smith. Smooth sensitivity and sampling in pri-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 116, + 478, + 506, + 493 + ], + "spans": [ + { + "bbox": [ + 116, + 478, + 506, + 493 + ], + "score": 1.0, + "content": "vate data analysis. In Proceedings of the Thirty-ninth Annual ACM Symposium on Theory of", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 117, + 489, + 270, + 503 + ], + "spans": [ + { + "bbox": [ + 117, + 489, + 270, + 503 + ], + "score": 1.0, + "content": "Computing (STOC), pp. 75–84, 2007.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 107, + 508, + 504, + 543 + ], + "lines": [ + { + "bbox": [ + 105, + 509, + 506, + 522 + ], + "spans": [ + { + "bbox": [ + 105, + 509, + 506, + 522 + ], + "score": 1.0, + "content": "Nicolas Papernot, Martín Abadi, Úlfar Erlingsson, Ian Goodfellow, and Kunal Talwar. Semi-", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 116, + 520, + 505, + 533 + ], + "spans": [ + { + "bbox": [ + 116, + 520, + 505, + 533 + ], + "score": 1.0, + "content": "supervised knowledge transfer for deep learning from private training data. In Proceedings of", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 531, + 426, + 545 + ], + "spans": [ + { + "bbox": [ + 115, + 531, + 426, + 545 + ], + "score": 1.0, + "content": "the 5th International Conference on Learning Representations (ICLR), 2017.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 107, + 549, + 504, + 582 + ], + "lines": [ + { + "bbox": [ + 105, + 548, + 506, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 548, + 506, + 563 + ], + "score": 1.0, + "content": "Manas Pathak, Shantanu Rane, and Bhiksha Raj. Multiparty differential privacy via aggregation of", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 116, + 560, + 505, + 572 + ], + "spans": [ + { + "bbox": [ + 116, + 560, + 505, + 572 + ], + "score": 1.0, + "content": "locally trained classifiers. In Advances in Neural Information Processing Systems, pp. 1876–1884,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 115, + 570, + 144, + 583 + ], + "spans": [ + { + "bbox": [ + 115, + 570, + 144, + 583 + ], + "score": 1.0, + "content": "2010.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 104, + 588, + 505, + 613 + ], + "lines": [ + { + "bbox": [ + 106, + 587, + 505, + 603 + ], + "spans": [ + { + "bbox": [ + 106, + 587, + 505, + 603 + ], + "score": 1.0, + "content": "Aaron Roth and Tim Roughgarden. Interactive privacy via the median mechanism. In Proceedings", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 115, + 600, + 482, + 613 + ], + "spans": [ + { + "bbox": [ + 115, + 600, + 482, + 613 + ], + "score": 1.0, + "content": "of the Forty-second ACM Symposium on Theory of Computing (STOC), pp. 765–774, 2010.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37.5 + }, + { + "type": "text", + "bbox": [ + 106, + 618, + 505, + 652 + ], + "lines": [ + { + "bbox": [ + 106, + 617, + 504, + 631 + ], + "spans": [ + { + "bbox": [ + 106, + 617, + 504, + 631 + ], + "score": 1.0, + "content": "Tim Salimans, Ian Goodfellow, Wojciech Zaremba, Vicki Cheung, Alec Radford, and Xi Chen.", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 115, + 628, + 505, + 642 + ], + "spans": [ + { + "bbox": [ + 115, + 628, + 505, + 642 + ], + "score": 1.0, + "content": "Improved techniques for training GANs. In Advances in Neural Information Processing Systems,", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 115, + 640, + 207, + 652 + ], + "spans": [ + { + "bbox": [ + 115, + 640, + 207, + 652 + ], + "score": 1.0, + "content": "pp. 2234–2242, 2016.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40 + }, + { + "type": "text", + "bbox": [ + 107, + 658, + 504, + 692 + ], + "lines": [ + { + "bbox": [ + 105, + 658, + 505, + 671 + ], + "spans": [ + { + "bbox": [ + 105, + 658, + 505, + 671 + ], + "score": 1.0, + "content": "Reza Shokri, Marco Stronati, Congzheng Song, and Vitaly Shmatikov. Membership inference at-", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 115, + 669, + 506, + 683 + ], + "spans": [ + { + "bbox": [ + 115, + 669, + 506, + 683 + ], + "score": 1.0, + "content": "tacks against machine learning models. In Proceedings of the 2017 IEEE Symposium on Security", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 117, + 681, + 261, + 693 + ], + "spans": [ + { + "bbox": [ + 117, + 681, + 261, + 693 + ], + "score": 1.0, + "content": "and Privacy, pp. 3–18. IEEE, 2017.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43 + }, + { + "type": "text", + "bbox": [ + 107, + 698, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 698, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 506, + 711 + ], + "score": 1.0, + "content": "Shuang Song, Kamalika Chaudhuri, and Anand D Sarwate. Stochastic gradient descent with differ-", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 115, + 708, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 115, + 708, + 506, + 723 + ], + "score": 1.0, + "content": "entially private updates. In 2013 IEEE Global Conference on Signal and Information Processing,", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 115, + 721, + 196, + 732 + ], + "spans": [ + { + "bbox": [ + 115, + 721, + 196, + 732 + ], + "score": 1.0, + "content": "pp. 245–248, 2013.", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 46 + } + ], + "page_idx": 14, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "15", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Steve Hanneke. Theory of disagreement-based active learning. Foundations and Trends in Machine", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 116, + 93, + 250, + 105 + ], + "spans": [ + { + "bbox": [ + 116, + 93, + 250, + 105 + ], + "score": 1.0, + "content": "Learning, 7(2-3):131–309, 2014.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 106, + 82, + 505, + 105 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 111, + 504, + 145 + ], + "lines": [ + { + "bbox": [ + 105, + 110, + 505, + 126 + ], + "spans": [ + { + "bbox": [ + 105, + 110, + 505, + 126 + ], + "score": 1.0, + "content": "Moritz Hardt and Guy N Rothblum. A multiplicative weights mechanism for privacy-preserving", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 121, + 505, + 136 + ], + "spans": [ + { + "bbox": [ + 115, + 121, + 505, + 136 + ], + "score": 1.0, + "content": "data analysis. In 51st Annual IEEE Symposium on Foundations of Computer Science (FOCS), pp.", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 116, + 133, + 171, + 145 + ], + "spans": [ + { + "bbox": [ + 116, + 133, + 171, + 145 + ], + "score": 1.0, + "content": "61–70, 2010.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3, + "bbox_fs": [ + 105, + 110, + 505, + 145 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 151, + 504, + 185 + ], + "lines": [ + { + "bbox": [ + 105, + 149, + 504, + 166 + ], + "spans": [ + { + "bbox": [ + 105, + 149, + 504, + 166 + ], + "score": 1.0, + "content": "Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recog-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 161, + 505, + 177 + ], + "spans": [ + { + "bbox": [ + 115, + 161, + 505, + 177 + ], + "score": 1.0, + "content": "nition. In 2016 IEEE Conference on Computer Vision and Pattern Recognition (CVPR), pp.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 117, + 173, + 181, + 185 + ], + "spans": [ + { + "bbox": [ + 117, + 173, + 181, + 185 + ], + "score": 1.0, + "content": "770–778, 2016.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6, + "bbox_fs": [ + 105, + 149, + 505, + 185 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 191, + 504, + 214 + ], + "lines": [ + { + "bbox": [ + 105, + 190, + 505, + 205 + ], + "spans": [ + { + "bbox": [ + 105, + 190, + 505, + 205 + ], + "score": 1.0, + "content": "Ron Kohavi. Scaling up the accuracy of Naive-Bayes classifiers: A decision-tree hybrid. In KDD,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 117, + 202, + 244, + 215 + ], + "spans": [ + { + "bbox": [ + 117, + 202, + 244, + 215 + ], + "score": 1.0, + "content": "volume 96, pp. 202–207, 1996.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5, + "bbox_fs": [ + 105, + 190, + 505, + 215 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 220, + 505, + 265 + ], + "lines": [ + { + "bbox": [ + 105, + 219, + 505, + 234 + ], + "spans": [ + { + "bbox": [ + 105, + 219, + 505, + 234 + ], + "score": 1.0, + "content": "Yun Liu, Krishna Gadepalli, Mohammad Norouzi, George E Dahl, Timo Kohlberger, Aleksey", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 115, + 231, + 505, + 244 + ], + "spans": [ + { + "bbox": [ + 115, + 231, + 505, + 244 + ], + "score": 1.0, + "content": "Boyko, Subhashini Venugopalan, Aleksei Timofeev, Philip Q Nelson, Greg S Corrado, et al.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 113, + 241, + 506, + 257 + ], + "spans": [ + { + "bbox": [ + 113, + 241, + 506, + 257 + ], + "score": 1.0, + "content": "Detecting cancer metastases on gigapixel pathology images. arXiv preprint arXiv:1703.02442,", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 114, + 253, + 143, + 266 + ], + "spans": [ + { + "bbox": [ + 114, + 253, + 143, + 266 + ], + "score": 1.0, + "content": "2017.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 11.5, + "bbox_fs": [ + 105, + 219, + 506, + 266 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 271, + 504, + 295 + ], + "lines": [ + { + "bbox": [ + 105, + 271, + 505, + 285 + ], + "spans": [ + { + "bbox": [ + 105, + 271, + 505, + 285 + ], + "score": 1.0, + "content": "H Brendan McMahan, Daniel Ramage, Kunal Talwar, and Li Zhang. Learning differentially private", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 282, + 449, + 295 + ], + "spans": [ + { + "bbox": [ + 115, + 282, + 449, + 295 + ], + "score": 1.0, + "content": "language models without losing accuracy. arXiv preprint arXiv:1710.06963, 2017.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5, + "bbox_fs": [ + 105, + 271, + 505, + 295 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 300, + 504, + 324 + ], + "lines": [ + { + "bbox": [ + 106, + 301, + 504, + 313 + ], + "spans": [ + { + "bbox": [ + 106, + 301, + 504, + 313 + ], + "score": 1.0, + "content": "Frank McSherry and Kunal Talwar. Mechanism design via differential privacy. In Proceedings of the", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 116, + 311, + 501, + 324 + ], + "spans": [ + { + "bbox": [ + 116, + 311, + 501, + 324 + ], + "score": 1.0, + "content": "48th Annual IEEE Symposium on Foundations of Computer Science (FOCS), pp. 94–103, 2007.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5, + "bbox_fs": [ + 106, + 301, + 504, + 324 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 329, + 504, + 353 + ], + "lines": [ + { + "bbox": [ + 105, + 329, + 505, + 343 + ], + "spans": [ + { + "bbox": [ + 105, + 329, + 505, + 343 + ], + "score": 1.0, + "content": "Ilya Mironov. Rényi differential privacy. In 2017 IEEE 30th Computer Security Foundations Sym-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 114, + 341, + 257, + 352 + ], + "spans": [ + { + "bbox": [ + 114, + 341, + 257, + 352 + ], + "score": 1.0, + "content": "posium (CSF), pp. 263–275, 2017.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5, + "bbox_fs": [ + 105, + 329, + 505, + 352 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 358, + 504, + 392 + ], + "lines": [ + { + "bbox": [ + 106, + 358, + 504, + 371 + ], + "spans": [ + { + "bbox": [ + 106, + 358, + 504, + 371 + ], + "score": 1.0, + "content": "Takeru Miyato, Shin-ichi Maeda, Masanori Koyama, and Shin Ishii. Virtual adversarial train-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 370, + 505, + 383 + ], + "spans": [ + { + "bbox": [ + 115, + 370, + 505, + 383 + ], + "score": 1.0, + "content": "ing: a regularization method for supervised and semi-supervised learning. arXiv preprint", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 380, + 220, + 392 + ], + "spans": [ + { + "bbox": [ + 115, + 380, + 220, + 392 + ], + "score": 1.0, + "content": "arXiv:1704.03976, 2017.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21, + "bbox_fs": [ + 106, + 358, + 505, + 392 + ] + }, + { + "type": "text", + "bbox": [ + 103, + 398, + 505, + 422 + ], + "lines": [ + { + "bbox": [ + 106, + 398, + 505, + 411 + ], + "spans": [ + { + "bbox": [ + 106, + 398, + 505, + 411 + ], + "score": 1.0, + "content": "Arvind Narayanan and Vitaly Shmatikov. Robust de-anonymization of large sparse datasets. In", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 116, + 410, + 495, + 422 + ], + "spans": [ + { + "bbox": [ + 116, + 410, + 495, + 422 + ], + "score": 1.0, + "content": "Proceedings of the 2008 IEEE Symposium on Security and Privacy, pp. 111–125. IEEE, 2008.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5, + "bbox_fs": [ + 106, + 398, + 505, + 422 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 427, + 505, + 462 + ], + "lines": [ + { + "bbox": [ + 105, + 426, + 505, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 505, + 442 + ], + "score": 1.0, + "content": "Yuval Netzer, Tao Wang, Adam Coates, Alessandro Bissacco, Bo Wu, and Andrew Y Ng. Reading", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 438, + 505, + 453 + ], + "spans": [ + { + "bbox": [ + 115, + 438, + 505, + 453 + ], + "score": 1.0, + "content": "digits in natural images with unsupervised feature learning. In NIPS Workshop on Deep Learning", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 116, + 450, + 318, + 463 + ], + "spans": [ + { + "bbox": [ + 116, + 450, + 318, + 463 + ], + "score": 1.0, + "content": "and Unsupervised Feature Learning, pp. 5, 2011.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26, + "bbox_fs": [ + 105, + 426, + 505, + 463 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 467, + 505, + 502 + ], + "lines": [ + { + "bbox": [ + 105, + 466, + 505, + 481 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 505, + 481 + ], + "score": 1.0, + "content": "Kobbi Nissim, Sofya Raskhodnikova, and Adam Smith. Smooth sensitivity and sampling in pri-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 116, + 478, + 506, + 493 + ], + "spans": [ + { + "bbox": [ + 116, + 478, + 506, + 493 + ], + "score": 1.0, + "content": "vate data analysis. In Proceedings of the Thirty-ninth Annual ACM Symposium on Theory of", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 117, + 489, + 270, + 503 + ], + "spans": [ + { + "bbox": [ + 117, + 489, + 270, + 503 + ], + "score": 1.0, + "content": "Computing (STOC), pp. 75–84, 2007.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29, + "bbox_fs": [ + 105, + 466, + 506, + 503 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 508, + 504, + 543 + ], + "lines": [ + { + "bbox": [ + 105, + 509, + 506, + 522 + ], + "spans": [ + { + "bbox": [ + 105, + 509, + 506, + 522 + ], + "score": 1.0, + "content": "Nicolas Papernot, Martín Abadi, Úlfar Erlingsson, Ian Goodfellow, and Kunal Talwar. Semi-", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 116, + 520, + 505, + 533 + ], + "spans": [ + { + "bbox": [ + 116, + 520, + 505, + 533 + ], + "score": 1.0, + "content": "supervised knowledge transfer for deep learning from private training data. In Proceedings of", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 531, + 426, + 545 + ], + "spans": [ + { + "bbox": [ + 115, + 531, + 426, + 545 + ], + "score": 1.0, + "content": "the 5th International Conference on Learning Representations (ICLR), 2017.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32, + "bbox_fs": [ + 105, + 509, + 506, + 545 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 549, + 504, + 582 + ], + "lines": [ + { + "bbox": [ + 105, + 548, + 506, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 548, + 506, + 563 + ], + "score": 1.0, + "content": "Manas Pathak, Shantanu Rane, and Bhiksha Raj. Multiparty differential privacy via aggregation of", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 116, + 560, + 505, + 572 + ], + "spans": [ + { + "bbox": [ + 116, + 560, + 505, + 572 + ], + "score": 1.0, + "content": "locally trained classifiers. In Advances in Neural Information Processing Systems, pp. 1876–1884,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 115, + 570, + 144, + 583 + ], + "spans": [ + { + "bbox": [ + 115, + 570, + 144, + 583 + ], + "score": 1.0, + "content": "2010.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35, + "bbox_fs": [ + 105, + 548, + 506, + 583 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 588, + 505, + 613 + ], + "lines": [ + { + "bbox": [ + 106, + 587, + 505, + 603 + ], + "spans": [ + { + "bbox": [ + 106, + 587, + 505, + 603 + ], + "score": 1.0, + "content": "Aaron Roth and Tim Roughgarden. Interactive privacy via the median mechanism. In Proceedings", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 115, + 600, + 482, + 613 + ], + "spans": [ + { + "bbox": [ + 115, + 600, + 482, + 613 + ], + "score": 1.0, + "content": "of the Forty-second ACM Symposium on Theory of Computing (STOC), pp. 765–774, 2010.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37.5, + "bbox_fs": [ + 106, + 587, + 505, + 613 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 618, + 505, + 652 + ], + "lines": [ + { + "bbox": [ + 106, + 617, + 504, + 631 + ], + "spans": [ + { + "bbox": [ + 106, + 617, + 504, + 631 + ], + "score": 1.0, + "content": "Tim Salimans, Ian Goodfellow, Wojciech Zaremba, Vicki Cheung, Alec Radford, and Xi Chen.", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 115, + 628, + 505, + 642 + ], + "spans": [ + { + "bbox": [ + 115, + 628, + 505, + 642 + ], + "score": 1.0, + "content": "Improved techniques for training GANs. In Advances in Neural Information Processing Systems,", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 115, + 640, + 207, + 652 + ], + "spans": [ + { + "bbox": [ + 115, + 640, + 207, + 652 + ], + "score": 1.0, + "content": "pp. 2234–2242, 2016.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40, + "bbox_fs": [ + 106, + 617, + 505, + 652 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 658, + 504, + 692 + ], + "lines": [ + { + "bbox": [ + 105, + 658, + 505, + 671 + ], + "spans": [ + { + "bbox": [ + 105, + 658, + 505, + 671 + ], + "score": 1.0, + "content": "Reza Shokri, Marco Stronati, Congzheng Song, and Vitaly Shmatikov. Membership inference at-", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 115, + 669, + 506, + 683 + ], + "spans": [ + { + "bbox": [ + 115, + 669, + 506, + 683 + ], + "score": 1.0, + "content": "tacks against machine learning models. In Proceedings of the 2017 IEEE Symposium on Security", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 117, + 681, + 261, + 693 + ], + "spans": [ + { + "bbox": [ + 117, + 681, + 261, + 693 + ], + "score": 1.0, + "content": "and Privacy, pp. 3–18. IEEE, 2017.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43, + "bbox_fs": [ + 105, + 658, + 506, + 693 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 698, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 698, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 506, + 711 + ], + "score": 1.0, + "content": "Shuang Song, Kamalika Chaudhuri, and Anand D Sarwate. Stochastic gradient descent with differ-", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 115, + 708, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 115, + 708, + 506, + 723 + ], + "score": 1.0, + "content": "entially private updates. In 2013 IEEE Global Conference on Signal and Information Processing,", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 115, + 721, + 196, + 732 + ], + "spans": [ + { + "bbox": [ + 115, + 721, + 196, + 732 + ], + "score": 1.0, + "content": "pp. 245–248, 2013.", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 46, + "bbox_fs": [ + 105, + 698, + 506, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 505, + 105 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 505, + 95 + ], + "score": 1.0, + "content": "Thomas Steinke and Jonathan Ullman. Tight lower bounds for differentially private selection. In", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 117, + 94, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 117, + 94, + 505, + 106 + ], + "score": 1.0, + "content": "58th IEEE Annual Symposium on Foundations of Computer Science (FOCS), pp. 552–563, 2017.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 108, + 111, + 504, + 146 + ], + "lines": [ + { + "bbox": [ + 106, + 111, + 505, + 125 + ], + "spans": [ + { + "bbox": [ + 106, + 111, + 505, + 125 + ], + "score": 1.0, + "content": "Christian Szegedy, Wojciech Zaremba, Ilya Sutskever, Joan Bruna, Dumitru Erhan, Ian Goodfellow,", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 123, + 505, + 136 + ], + "spans": [ + { + "bbox": [ + 115, + 123, + 505, + 136 + ], + "score": 1.0, + "content": "and Rob Fergus. Intriguing properties of neural networks. In Proceedings of the 2nd International", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 116, + 134, + 341, + 146 + ], + "spans": [ + { + "bbox": [ + 116, + 134, + 341, + 146 + ], + "score": 1.0, + "content": "Conference on Learning Representations (ICLR), 2014.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 105, + 153, + 505, + 176 + ], + "lines": [ + { + "bbox": [ + 105, + 153, + 505, + 166 + ], + "spans": [ + { + "bbox": [ + 105, + 153, + 505, + 166 + ], + "score": 1.0, + "content": "Florian Tramèr, Fan Zhang, Ari Juels, Michael K Reiter, and Thomas Ristenpart. Stealing machine", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 164, + 479, + 176 + ], + "spans": [ + { + "bbox": [ + 115, + 164, + 479, + 176 + ], + "score": 1.0, + "content": "learning models via prediction APIs. In USENIX Security Symposium, pp. 601–618, 2016.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5 + }, + { + "type": "text", + "bbox": [ + 105, + 182, + 504, + 206 + ], + "lines": [ + { + "bbox": [ + 106, + 183, + 505, + 196 + ], + "spans": [ + { + "bbox": [ + 106, + 183, + 505, + 196 + ], + "score": 1.0, + "content": "Tim van Erven and Peter Harremoës. Rényi divergence and Kullback-Leibler divergence. IEEE", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 117, + 194, + 384, + 206 + ], + "spans": [ + { + "bbox": [ + 117, + 194, + 384, + 206 + ], + "score": 1.0, + "content": "Transactions on Information Theory, 60(7):3797–3820, July 2014.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5 + }, + { + "type": "text", + "bbox": [ + 108, + 213, + 504, + 246 + ], + "lines": [ + { + "bbox": [ + 106, + 212, + 505, + 226 + ], + "spans": [ + { + "bbox": [ + 106, + 212, + 505, + 226 + ], + "score": 1.0, + "content": "Chiyuan Zhang, Samy Bengio, Moritz Hardt, Benjamin Recht, and Oriol Vinyals. Understanding", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 116, + 224, + 505, + 236 + ], + "spans": [ + { + "bbox": [ + 116, + 224, + 505, + 236 + ], + "score": 1.0, + "content": "deep learning requires rethinking generalization. In Proceedings of the 5th International Confer-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 115, + 235, + 313, + 247 + ], + "spans": [ + { + "bbox": [ + 115, + 235, + 313, + 247 + ], + "score": 1.0, + "content": "ence on Learning Representations (ICLR), 2017.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10 + } + ], + "page_idx": 15, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "16", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 505, + 105 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 505, + 95 + ], + "score": 1.0, + "content": "Thomas Steinke and Jonathan Ullman. Tight lower bounds for differentially private selection. In", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 117, + 94, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 117, + 94, + 505, + 106 + ], + "score": 1.0, + "content": "58th IEEE Annual Symposium on Foundations of Computer Science (FOCS), pp. 552–563, 2017.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 106, + 81, + 505, + 106 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 111, + 504, + 146 + ], + "lines": [ + { + "bbox": [ + 106, + 111, + 505, + 125 + ], + "spans": [ + { + "bbox": [ + 106, + 111, + 505, + 125 + ], + "score": 1.0, + "content": "Christian Szegedy, Wojciech Zaremba, Ilya Sutskever, Joan Bruna, Dumitru Erhan, Ian Goodfellow,", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 123, + 505, + 136 + ], + "spans": [ + { + "bbox": [ + 115, + 123, + 505, + 136 + ], + "score": 1.0, + "content": "and Rob Fergus. Intriguing properties of neural networks. In Proceedings of the 2nd International", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 116, + 134, + 341, + 146 + ], + "spans": [ + { + "bbox": [ + 116, + 134, + 341, + 146 + ], + "score": 1.0, + "content": "Conference on Learning Representations (ICLR), 2014.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3, + "bbox_fs": [ + 106, + 111, + 505, + 146 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 153, + 505, + 176 + ], + "lines": [ + { + "bbox": [ + 105, + 153, + 505, + 166 + ], + "spans": [ + { + "bbox": [ + 105, + 153, + 505, + 166 + ], + "score": 1.0, + "content": "Florian Tramèr, Fan Zhang, Ari Juels, Michael K Reiter, and Thomas Ristenpart. Stealing machine", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 164, + 479, + 176 + ], + "spans": [ + { + "bbox": [ + 115, + 164, + 479, + 176 + ], + "score": 1.0, + "content": "learning models via prediction APIs. In USENIX Security Symposium, pp. 601–618, 2016.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5, + "bbox_fs": [ + 105, + 153, + 505, + 176 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 182, + 504, + 206 + ], + "lines": [ + { + "bbox": [ + 106, + 183, + 505, + 196 + ], + "spans": [ + { + "bbox": [ + 106, + 183, + 505, + 196 + ], + "score": 1.0, + "content": "Tim van Erven and Peter Harremoës. Rényi divergence and Kullback-Leibler divergence. IEEE", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 117, + 194, + 384, + 206 + ], + "spans": [ + { + "bbox": [ + 117, + 194, + 384, + 206 + ], + "score": 1.0, + "content": "Transactions on Information Theory, 60(7):3797–3820, July 2014.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5, + "bbox_fs": [ + 106, + 183, + 505, + 206 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 213, + 504, + 246 + ], + "lines": [ + { + "bbox": [ + 106, + 212, + 505, + 226 + ], + "spans": [ + { + "bbox": [ + 106, + 212, + 505, + 226 + ], + "score": 1.0, + "content": "Chiyuan Zhang, Samy Bengio, Moritz Hardt, Benjamin Recht, and Oriol Vinyals. Understanding", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 116, + 224, + 505, + 236 + ], + "spans": [ + { + "bbox": [ + 116, + 224, + 505, + 236 + ], + "score": 1.0, + "content": "deep learning requires rethinking generalization. In Proceedings of the 5th International Confer-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 115, + 235, + 313, + 247 + ], + "spans": [ + { + "bbox": [ + 115, + 235, + 313, + 247 + ], + "score": 1.0, + "content": "ence on Learning Representations (ICLR), 2017.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10, + "bbox_fs": [ + 106, + 212, + 505, + 247 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 81, + 291, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 79, + 293, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 79, + 293, + 96 + ], + "score": 1.0, + "content": "A APPENDIX: PRIVACY ANALYSIS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 105, + 505, + 150 + ], + "lines": [ + { + "bbox": [ + 105, + 105, + 506, + 119 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 506, + 119 + ], + "score": 1.0, + "content": "In this appendix, we provide the proofs of Theorem 6 and Proposition 7. Moreover, we present", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 117, + 506, + 131 + ], + "spans": [ + { + "bbox": [ + 105, + 117, + 311, + 131 + ], + "score": 1.0, + "content": "Proposition 10, which provides optimal values of", + "type": "text" + }, + { + "bbox": [ + 311, + 119, + 323, + 129 + ], + "score": 0.86, + "content": "\\mu _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 323, + 117, + 342, + 131 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 343, + 119, + 354, + 129 + ], + "score": 0.85, + "content": "\\mu _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 355, + 117, + 506, + 131 + ], + "score": 1.0, + "content": "to apply towards Theorem 6 for the", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 127, + 506, + 141 + ], + "spans": [ + { + "bbox": [ + 105, + 127, + 506, + 141 + ], + "score": 1.0, + "content": "GNMax mechanism. We start off with a statement about the Rényi differential privacy guarantee of", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 138, + 159, + 151 + ], + "spans": [ + { + "bbox": [ + 105, + 138, + 159, + 151 + ], + "score": 1.0, + "content": "the GNMax.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 106, + 153, + 455, + 167 + ], + "lines": [ + { + "bbox": [ + 105, + 153, + 453, + 168 + ], + "spans": [ + { + "bbox": [ + 105, + 153, + 268, + 168 + ], + "score": 1.0, + "content": "Proposition 8. The GNMax aggregator", + "type": "text" + }, + { + "bbox": [ + 268, + 154, + 287, + 165 + ], + "score": 0.88, + "content": "\\mathcal { M } _ { \\sigma }", + "type": "inline_equation" + }, + { + "bbox": [ + 287, + 153, + 336, + 168 + ], + "score": 1.0, + "content": "guarantees", + "type": "text" + }, + { + "bbox": [ + 336, + 153, + 376, + 167 + ], + "score": 0.91, + "content": "\\left( \\lambda , \\lambda / \\sigma ^ { 2 } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 153, + 428, + 168 + ], + "score": 1.0, + "content": "-RDP for all", + "type": "text" + }, + { + "bbox": [ + 428, + 154, + 453, + 165 + ], + "score": 0.83, + "content": "\\lambda \\geq 1", + "type": "inline_equation" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 106, + 171, + 505, + 227 + ], + "lines": [ + { + "bbox": [ + 105, + 170, + 506, + 184 + ], + "spans": [ + { + "bbox": [ + 105, + 170, + 295, + 184 + ], + "score": 1.0, + "content": "Proof. The result follows from observing that", + "type": "text" + }, + { + "bbox": [ + 296, + 172, + 314, + 182 + ], + "score": 0.91, + "content": "\\mathcal { M } _ { \\sigma }", + "type": "inline_equation" + }, + { + "bbox": [ + 314, + 170, + 506, + 184 + ], + "score": 1.0, + "content": "can be decomposed into applying the argmax", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 182, + 505, + 195 + ], + "spans": [ + { + "bbox": [ + 105, + 182, + 505, + 195 + ], + "score": 1.0, + "content": "operator to a noisy histogram resulted from adding Gaussian noise to each dimension of the original", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 193, + 505, + 205 + ], + "spans": [ + { + "bbox": [ + 105, + 193, + 299, + 205 + ], + "score": 1.0, + "content": "histogram. The Gaussian mechanism satisfies", + "type": "text" + }, + { + "bbox": [ + 299, + 193, + 343, + 205 + ], + "score": 0.92, + "content": "( { \\bar { \\lambda } } , \\lambda / 2 \\sigma ^ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 193, + 505, + 205 + ], + "score": 1.0, + "content": "-RDP (Mironov, 2017), and since each", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 203, + 506, + 217 + ], + "spans": [ + { + "bbox": [ + 105, + 203, + 506, + 217 + ], + "score": 1.0, + "content": "teacher may change two counts (incrementing one and decrementing the other), the overall RDP", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 216, + 506, + 227 + ], + "spans": [ + { + "bbox": [ + 105, + 216, + 203, + 227 + ], + "score": 1.0, + "content": "guarantee is as claimed.", + "type": "text" + }, + { + "bbox": [ + 497, + 216, + 506, + 226 + ], + "score": 0.629, + "content": "■", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 105, + 233, + 504, + 255 + ], + "lines": [ + { + "bbox": [ + 105, + 231, + 505, + 248 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 279, + 248 + ], + "score": 1.0, + "content": "Proposition 7. For a GNMax aggregator", + "type": "text" + }, + { + "bbox": [ + 279, + 234, + 297, + 245 + ], + "score": 0.9, + "content": "\\mathcal { M } _ { \\sigma }", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 231, + 424, + 248 + ], + "score": 1.0, + "content": ", the teachers’ votes histogram", + "type": "text" + }, + { + "bbox": [ + 425, + 234, + 501, + 246 + ], + "score": 0.91, + "content": "\\bar { n } = ( n _ { 1 } , \\ldots , n _ { m } ) ", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 231, + 505, + 248 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 244, + 229, + 257 + ], + "spans": [ + { + "bbox": [ + 106, + 244, + 155, + 257 + ], + "score": 1.0, + "content": "and for any", + "type": "text" + }, + { + "bbox": [ + 155, + 245, + 190, + 257 + ], + "score": 0.92, + "content": "i ^ { * } \\in [ m ]", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 244, + 229, + 257 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5 + }, + { + "type": "text", + "bbox": [ + 106, + 271, + 133, + 282 + ], + "lines": [ + { + "bbox": [ + 105, + 270, + 135, + 283 + ], + "spans": [ + { + "bbox": [ + 105, + 270, + 135, + 283 + ], + "score": 1.0, + "content": "where", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "interline_equation", + "bbox": [ + 238, + 252, + 374, + 311 + ], + "lines": [ + { + "bbox": [ + 238, + 252, + 374, + 311 + ], + "spans": [ + { + "bbox": [ + 238, + 252, + 374, + 311 + ], + "score": 0.63, + "content": "\\begin{array} { c l c r } { { \\displaystyle { \\bf P r } \\left[ \\mathcal { M } _ { \\sigma } ( D ) \\neq i ^ { * } \\right] \\le q ( \\bar { n } ) , } } \\\\ { { \\displaystyle } } \\\\ { { q ( \\bar { n } ) \\triangleq \\frac { 1 } { 2 } \\sum _ { i \\neq i ^ { * } } \\mathrm { e r f c } \\left( \\frac { n _ { i ^ { * } } - n _ { i } } { 2 \\sigma } \\right) . } } \\end{array}", + "type": "interline_equation", + "image_path": "1c3c919e9ada1269e499b7a19c3c10b68c843e51f2e814f986ff624779ec1f1b.jpg" + } + ] + } + ], + "index": 14.5, + "virtual_lines": [ + { + "bbox": [ + 238, + 252, + 374, + 281.5 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 238, + 281.5, + 374, + 311.0 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 322, + 505, + 347 + ], + "lines": [ + { + "bbox": [ + 105, + 322, + 506, + 336 + ], + "spans": [ + { + "bbox": [ + 105, + 322, + 183, + 336 + ], + "score": 1.0, + "content": "Proof. Recall that", + "type": "text" + }, + { + "bbox": [ + 183, + 323, + 306, + 335 + ], + "score": 0.91, + "content": "\\mathcal { M } _ { \\sigma } ( D ) = \\operatorname { a r g m a x } ( n _ { i } + Z _ { i } )", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 322, + 337, + 336 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 338, + 324, + 349, + 335 + ], + "score": 0.89, + "content": "Z _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 322, + 423, + 336 + ], + "score": 1.0, + "content": "are distributed as", + "type": "text" + }, + { + "bbox": [ + 423, + 323, + 461, + 335 + ], + "score": 0.95, + "content": "{ \\mathcal { N } } ( 0 , \\sigma ^ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 322, + 506, + 336 + ], + "score": 1.0, + "content": ". Then for", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 334, + 198, + 348 + ], + "spans": [ + { + "bbox": [ + 105, + 334, + 123, + 348 + ], + "score": 1.0, + "content": "any", + "type": "text" + }, + { + "bbox": [ + 124, + 334, + 159, + 347 + ], + "score": 0.94, + "content": "i ^ { * } \\in [ m ]", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 334, + 198, + 348 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5 + }, + { + "type": "interline_equation", + "bbox": [ + 128, + 351, + 480, + 442 + ], + "lines": [ + { + "bbox": [ + 128, + 351, + 480, + 442 + ], + "spans": [ + { + "bbox": [ + 128, + 351, + 480, + 442 + ], + "score": 0.94, + "content": "\\begin{array} { r } { \\mathbf { P r } [ \\mathcal { M } _ { \\sigma } ( D ) \\neq i ^ { * } ] = \\mathbf { P r } \\left[ \\exists i , n _ { i } + Z _ { i } > n _ { i ^ { * } } + Z _ { i ^ { * } } \\right] \\leq \\displaystyle \\sum _ { i \\neq i ^ { * } } \\mathbf { P r } \\left[ n _ { i } + Z _ { i } > n _ { i ^ { * } } + Z _ { i ^ { * } } \\right] } \\\\ { = \\displaystyle \\sum _ { i \\neq i ^ { * } } \\mathbf { P r } \\left[ Z _ { i } - Z _ { i ^ { * } } > n _ { i ^ { * } } - n _ { i } \\right] } \\\\ { = \\displaystyle \\sum _ { i \\neq i ^ { * } } \\frac { 1 } { 2 } \\left( 1 - \\mathrm { e r f } \\left( \\frac { n _ { i ^ { * } } - n _ { i } } { 2 \\sigma } \\right) \\right) . } \\end{array}", + "type": "interline_equation", + "image_path": "ee155f4d624a5fba3b4a2ca84d4518af207c20765435b50cf2e74aeab36294e5.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 128, + 351, + 480, + 381.3333333333333 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 128, + 381.3333333333333, + 480, + 411.66666666666663 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 128, + 411.66666666666663, + 480, + 441.99999999999994 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 446, + 504, + 470 + ], + "lines": [ + { + "bbox": [ + 106, + 446, + 506, + 459 + ], + "spans": [ + { + "bbox": [ + 106, + 446, + 302, + 459 + ], + "score": 1.0, + "content": "where the last equality follows from the fact that", + "type": "text" + }, + { + "bbox": [ + 303, + 447, + 337, + 459 + ], + "score": 0.93, + "content": "Z _ { i } - Z _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 337, + 446, + 506, + 459 + ], + "score": 1.0, + "content": "is a Gaussian random variable with mean", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 457, + 504, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 457, + 179, + 469 + ], + "score": 1.0, + "content": "zero and variance", + "type": "text" + }, + { + "bbox": [ + 179, + 457, + 195, + 469 + ], + "score": 0.9, + "content": "2 \\sigma ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 196, + 457, + 199, + 469 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 498, + 460, + 504, + 469 + ], + "score": 0.0, + "content": "", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5 + }, + { + "type": "text", + "bbox": [ + 106, + 482, + 310, + 495 + ], + "lines": [ + { + "bbox": [ + 106, + 482, + 310, + 496 + ], + "spans": [ + { + "bbox": [ + 106, + 482, + 310, + 496 + ], + "score": 1.0, + "content": "We now present a precise statement of Theorem 6.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 106, + 497, + 505, + 551 + ], + "lines": [ + { + "bbox": [ + 106, + 496, + 506, + 510 + ], + "spans": [ + { + "bbox": [ + 106, + 496, + 177, + 510 + ], + "score": 1.0, + "content": "Theorem 6. Let", + "type": "text" + }, + { + "bbox": [ + 177, + 498, + 190, + 507 + ], + "score": 0.68, + "content": "\\mathcal { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 496, + 326, + 510 + ], + "score": 1.0, + "content": "be a randomized algorithm with", + "type": "text" + }, + { + "bbox": [ + 326, + 497, + 358, + 510 + ], + "score": 0.88, + "content": "( \\mu _ { 1 } , \\varepsilon _ { 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 358, + 496, + 401, + 510 + ], + "score": 1.0, + "content": "-RDP and", + "type": "text" + }, + { + "bbox": [ + 402, + 498, + 434, + 510 + ], + "score": 0.87, + "content": "\\left( \\mu _ { 2 } , \\varepsilon _ { 2 } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 434, + 496, + 506, + 510 + ], + "score": 1.0, + "content": "-RDP guarantees", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 508, + 506, + 521 + ], + "spans": [ + { + "bbox": [ + 105, + 508, + 296, + 521 + ], + "score": 1.0, + "content": "and suppose that there exists a likely outcome", + "type": "text" + }, + { + "bbox": [ + 296, + 510, + 306, + 519 + ], + "score": 0.83, + "content": "i ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 508, + 372, + 521 + ], + "score": 1.0, + "content": "given a dataset", + "type": "text" + }, + { + "bbox": [ + 372, + 509, + 382, + 519 + ], + "score": 0.78, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 382, + 508, + 437, + 521 + ], + "score": 1.0, + "content": "and a bound", + "type": "text" + }, + { + "bbox": [ + 438, + 509, + 464, + 520 + ], + "score": 0.88, + "content": "\\tilde { q } \\leq 1", + "type": "inline_equation" + }, + { + "bbox": [ + 464, + 508, + 506, + 521 + ], + "score": 1.0, + "content": "such that", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 107, + 520, + 501, + 540 + ], + "spans": [ + { + "bbox": [ + 107, + 523, + 197, + 536 + ], + "score": 0.91, + "content": "\\tilde { q } \\geq \\mathbf { P r } \\left[ \\mathcal { M } ( D ) \\neq i ^ { * } \\right]", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 521, + 311, + 537 + ], + "score": 1.0, + "content": ". Additionally suppose that", + "type": "text" + }, + { + "bbox": [ + 311, + 524, + 345, + 536 + ], + "score": 0.91, + "content": "\\lambda \\le \\mu _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 521, + 365, + 537 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 366, + 520, + 501, + 540 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\tilde { q } \\le e ^ { ( \\mu _ { 2 } - 1 ) \\varepsilon _ { 2 } } / \\biggl ( \\frac { \\mu _ { 1 } } { \\mu _ { 1 } - 1 } \\cdot \\frac { \\mu _ { 2 } } { \\mu _ { 2 } - 1 } \\biggr ) ^ { \\mu _ { 2 } } } \\end{array}", + "type": "inline_equation" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 538, + 321, + 551 + ], + "spans": [ + { + "bbox": [ + 106, + 538, + 245, + 551 + ], + "score": 1.0, + "content": "Then, for any neighboring dataset", + "type": "text" + }, + { + "bbox": [ + 245, + 538, + 257, + 549 + ], + "score": 0.85, + "content": "D ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 538, + 269, + 551 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 269, + 539, + 279, + 549 + ], + "score": 0.76, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 538, + 321, + 551 + ], + "score": 1.0, + "content": ", we have:", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 25.5 + }, + { + "type": "interline_equation", + "bbox": [ + 131, + 555, + 479, + 580 + ], + "lines": [ + { + "bbox": [ + 131, + 555, + 479, + 580 + ], + "spans": [ + { + "bbox": [ + 131, + 555, + 479, + 580 + ], + "score": 0.88, + "content": "D _ { \\lambda } ( \\mathcal { M } ( D ) \\| \\mathcal { M } ( D ^ { \\prime } ) ) \\le \\frac { 1 } { \\lambda - 1 } \\log \\left( ( 1 - \\tilde { q } ) \\cdot A ( \\tilde { q } , \\mu _ { 2 } , \\varepsilon _ { 2 } ) ^ { \\lambda - 1 } + \\tilde { q } \\cdot B ( \\tilde { q } , \\mu _ { 1 } , \\varepsilon _ { 1 } ) ^ { \\lambda - 1 } \\right)", + "type": "interline_equation", + "image_path": "2cfe6826ca433929ddcaaa86ed5317161487a749198ab6784470924c289e6375.jpg" + } + ] + } + ], + "index": 28, + "virtual_lines": [ + { + "bbox": [ + 131, + 555, + 479, + 580 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "interline_equation", + "bbox": [ + 133, + 585, + 434, + 607 + ], + "lines": [ + { + "bbox": [ + 133, + 585, + 434, + 607 + ], + "spans": [ + { + "bbox": [ + 133, + 585, + 434, + 607 + ], + "score": 0.39, + "content": "\\begin{array} { r } { \\pmb { A } ( \\tilde { q } , \\mu _ { 2 } , \\varepsilon _ { 2 } ) \\triangleq ( 1 - \\tilde { q } ) / \\bigg ( 1 - \\big ( \\tilde { q } e ^ { \\varepsilon _ { 2 } } \\big ) ^ { \\frac { \\mu _ { 2 } - 1 } { \\mu _ { 2 } } } \\bigg ) a n d \\pmb { B } ( \\tilde { q } , \\mu _ { 1 } , \\varepsilon _ { 1 } ) \\triangleq e ^ { \\varepsilon _ { 1 } } / \\tilde { q } ^ { \\frac { 1 } { \\mu _ { 1 } - 1 } } . } \\end{array}", + "type": "interline_equation", + "image_path": "991081fd038e139ccf105c9cd1c06e19fbca27adbe3faddd70696b59044ec1be.jpg" + } + ] + } + ], + "index": 29, + "virtual_lines": [ + { + "bbox": [ + 133, + 585, + 434, + 607 + ], + "spans": [], + "index": 29 + } + ] + }, + { + "type": "text", + "bbox": [ + 104, + 617, + 505, + 641 + ], + "lines": [ + { + "bbox": [ + 106, + 617, + 505, + 630 + ], + "spans": [ + { + "bbox": [ + 106, + 617, + 505, + 630 + ], + "score": 1.0, + "content": "Proof. Before we proceed to the proof, we introduce some simplifying notation. For a randomized", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 629, + 355, + 640 + ], + "spans": [ + { + "bbox": [ + 106, + 629, + 154, + 640 + ], + "score": 1.0, + "content": "mechanism", + "type": "text" + }, + { + "bbox": [ + 155, + 629, + 168, + 639 + ], + "score": 0.85, + "content": "\\mathcal { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 629, + 270, + 640 + ], + "score": 1.0, + "content": "and neighboring datasets", + "type": "text" + }, + { + "bbox": [ + 271, + 629, + 280, + 639 + ], + "score": 0.85, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 629, + 298, + 640 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 298, + 629, + 311, + 639 + ], + "score": 0.89, + "content": "D ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 629, + 355, + 640 + ], + "score": 1.0, + "content": ", we define", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5 + }, + { + "type": "interline_equation", + "bbox": [ + 166, + 645, + 444, + 696 + ], + "lines": [ + { + "bbox": [ + 166, + 645, + 444, + 696 + ], + "spans": [ + { + "bbox": [ + 166, + 645, + 444, + 696 + ], + "score": 0.93, + "content": "\\begin{array} { l } { \\displaystyle \\beta _ { \\mathcal { M } } ( \\lambda ; D , D ^ { \\prime } ) \\triangleq D _ { \\lambda } ( \\mathcal { M } ( D ) \\| \\mathcal { M } ( D ^ { \\prime } ) ) } \\\\ { \\displaystyle = \\frac { 1 } { \\lambda - 1 } \\log \\mathbb { E } _ { x \\sim \\mathcal { M } ( D ) } \\left[ \\left( \\frac { \\mathbf { P r } \\left[ \\mathcal { M } ( D ) = x \\right] } { \\mathbf { P r } \\left[ \\mathcal { M } ( D ^ { \\prime } ) = x \\right] } \\right) ^ { \\lambda - 1 } \\right] . } \\end{array}", + "type": "interline_equation", + "image_path": "9010c1e03a91497835f0833ac793ed0943e13cdcb39a08e58087746837876c47.jpg" + } + ] + } + ], + "index": 33, + "virtual_lines": [ + { + "bbox": [ + 166, + 645, + 444, + 662.0 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 166, + 662.0, + 444, + 679.0 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 166, + 679.0, + 444, + 696.0 + ], + "spans": [], + "index": 34 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 707, + 504, + 731 + ], + "lines": [ + { + "bbox": [ + 104, + 706, + 506, + 721 + ], + "spans": [ + { + "bbox": [ + 104, + 706, + 422, + 721 + ], + "score": 1.0, + "content": "As the proof involves working with the RDP bounds in the exponent, we set", + "type": "text" + }, + { + "bbox": [ + 423, + 707, + 486, + 720 + ], + "score": 0.89, + "content": "\\zeta _ { 1 } \\triangleq e ^ { \\varepsilon _ { 1 } ( \\mu _ { 1 } - 1 ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 706, + 506, + 721 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 104, + 717, + 172, + 732 + ], + "spans": [ + { + "bbox": [ + 104, + 717, + 172, + 732 + ], + "score": 1.0, + "content": "ζ2 , eε2(µ2−1).", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5 + } + ], + "page_idx": 16, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 26, + 293, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 39 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 39 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 765 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 765 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 14 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 81, + 291, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 79, + 293, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 79, + 293, + 96 + ], + "score": 1.0, + "content": "A APPENDIX: PRIVACY ANALYSIS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 105, + 505, + 150 + ], + "lines": [ + { + "bbox": [ + 105, + 105, + 506, + 119 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 506, + 119 + ], + "score": 1.0, + "content": "In this appendix, we provide the proofs of Theorem 6 and Proposition 7. Moreover, we present", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 117, + 506, + 131 + ], + "spans": [ + { + "bbox": [ + 105, + 117, + 311, + 131 + ], + "score": 1.0, + "content": "Proposition 10, which provides optimal values of", + "type": "text" + }, + { + "bbox": [ + 311, + 119, + 323, + 129 + ], + "score": 0.86, + "content": "\\mu _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 323, + 117, + 342, + 131 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 343, + 119, + 354, + 129 + ], + "score": 0.85, + "content": "\\mu _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 355, + 117, + 506, + 131 + ], + "score": 1.0, + "content": "to apply towards Theorem 6 for the", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 127, + 506, + 141 + ], + "spans": [ + { + "bbox": [ + 105, + 127, + 506, + 141 + ], + "score": 1.0, + "content": "GNMax mechanism. We start off with a statement about the Rényi differential privacy guarantee of", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 138, + 159, + 151 + ], + "spans": [ + { + "bbox": [ + 105, + 138, + 159, + 151 + ], + "score": 1.0, + "content": "the GNMax.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2.5, + "bbox_fs": [ + 105, + 105, + 506, + 151 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 153, + 455, + 167 + ], + "lines": [ + { + "bbox": [ + 105, + 153, + 453, + 168 + ], + "spans": [ + { + "bbox": [ + 105, + 153, + 268, + 168 + ], + "score": 1.0, + "content": "Proposition 8. The GNMax aggregator", + "type": "text" + }, + { + "bbox": [ + 268, + 154, + 287, + 165 + ], + "score": 0.88, + "content": "\\mathcal { M } _ { \\sigma }", + "type": "inline_equation" + }, + { + "bbox": [ + 287, + 153, + 336, + 168 + ], + "score": 1.0, + "content": "guarantees", + "type": "text" + }, + { + "bbox": [ + 336, + 153, + 376, + 167 + ], + "score": 0.91, + "content": "\\left( \\lambda , \\lambda / \\sigma ^ { 2 } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 153, + 428, + 168 + ], + "score": 1.0, + "content": "-RDP for all", + "type": "text" + }, + { + "bbox": [ + 428, + 154, + 453, + 165 + ], + "score": 0.83, + "content": "\\lambda \\geq 1", + "type": "inline_equation" + } + ], + "index": 5 + } + ], + "index": 5, + "bbox_fs": [ + 105, + 153, + 453, + 168 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 171, + 505, + 227 + ], + "lines": [ + { + "bbox": [ + 105, + 170, + 506, + 184 + ], + "spans": [ + { + "bbox": [ + 105, + 170, + 295, + 184 + ], + "score": 1.0, + "content": "Proof. The result follows from observing that", + "type": "text" + }, + { + "bbox": [ + 296, + 172, + 314, + 182 + ], + "score": 0.91, + "content": "\\mathcal { M } _ { \\sigma }", + "type": "inline_equation" + }, + { + "bbox": [ + 314, + 170, + 506, + 184 + ], + "score": 1.0, + "content": "can be decomposed into applying the argmax", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 182, + 505, + 195 + ], + "spans": [ + { + "bbox": [ + 105, + 182, + 505, + 195 + ], + "score": 1.0, + "content": "operator to a noisy histogram resulted from adding Gaussian noise to each dimension of the original", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 193, + 505, + 205 + ], + "spans": [ + { + "bbox": [ + 105, + 193, + 299, + 205 + ], + "score": 1.0, + "content": "histogram. The Gaussian mechanism satisfies", + "type": "text" + }, + { + "bbox": [ + 299, + 193, + 343, + 205 + ], + "score": 0.92, + "content": "( { \\bar { \\lambda } } , \\lambda / 2 \\sigma ^ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 193, + 505, + 205 + ], + "score": 1.0, + "content": "-RDP (Mironov, 2017), and since each", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 203, + 506, + 217 + ], + "spans": [ + { + "bbox": [ + 105, + 203, + 506, + 217 + ], + "score": 1.0, + "content": "teacher may change two counts (incrementing one and decrementing the other), the overall RDP", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 216, + 506, + 227 + ], + "spans": [ + { + "bbox": [ + 105, + 216, + 203, + 227 + ], + "score": 1.0, + "content": "guarantee is as claimed.", + "type": "text" + }, + { + "bbox": [ + 497, + 216, + 506, + 226 + ], + "score": 0.629, + "content": "■", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 8, + "bbox_fs": [ + 105, + 170, + 506, + 227 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 233, + 504, + 255 + ], + "lines": [ + { + "bbox": [ + 105, + 231, + 505, + 248 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 279, + 248 + ], + "score": 1.0, + "content": "Proposition 7. For a GNMax aggregator", + "type": "text" + }, + { + "bbox": [ + 279, + 234, + 297, + 245 + ], + "score": 0.9, + "content": "\\mathcal { M } _ { \\sigma }", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 231, + 424, + 248 + ], + "score": 1.0, + "content": ", the teachers’ votes histogram", + "type": "text" + }, + { + "bbox": [ + 425, + 234, + 501, + 246 + ], + "score": 0.91, + "content": "\\bar { n } = ( n _ { 1 } , \\ldots , n _ { m } ) ", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 231, + 505, + 248 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 244, + 229, + 257 + ], + "spans": [ + { + "bbox": [ + 106, + 244, + 155, + 257 + ], + "score": 1.0, + "content": "and for any", + "type": "text" + }, + { + "bbox": [ + 155, + 245, + 190, + 257 + ], + "score": 0.92, + "content": "i ^ { * } \\in [ m ]", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 244, + 229, + 257 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5, + "bbox_fs": [ + 105, + 231, + 505, + 257 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 271, + 133, + 282 + ], + "lines": [ + { + "bbox": [ + 105, + 270, + 135, + 283 + ], + "spans": [ + { + "bbox": [ + 105, + 270, + 135, + 283 + ], + "score": 1.0, + "content": "where", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13, + "bbox_fs": [ + 105, + 270, + 135, + 283 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 238, + 252, + 374, + 311 + ], + "lines": [ + { + "bbox": [ + 238, + 252, + 374, + 311 + ], + "spans": [ + { + "bbox": [ + 238, + 252, + 374, + 311 + ], + "score": 0.63, + "content": "\\begin{array} { c l c r } { { \\displaystyle { \\bf P r } \\left[ \\mathcal { M } _ { \\sigma } ( D ) \\neq i ^ { * } \\right] \\le q ( \\bar { n } ) , } } \\\\ { { \\displaystyle } } \\\\ { { q ( \\bar { n } ) \\triangleq \\frac { 1 } { 2 } \\sum _ { i \\neq i ^ { * } } \\mathrm { e r f c } \\left( \\frac { n _ { i ^ { * } } - n _ { i } } { 2 \\sigma } \\right) . } } \\end{array}", + "type": "interline_equation", + "image_path": "1c3c919e9ada1269e499b7a19c3c10b68c843e51f2e814f986ff624779ec1f1b.jpg" + } + ] + } + ], + "index": 14.5, + "virtual_lines": [ + { + "bbox": [ + 238, + 252, + 374, + 281.5 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 238, + 281.5, + 374, + 311.0 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 322, + 505, + 347 + ], + "lines": [ + { + "bbox": [ + 105, + 322, + 506, + 336 + ], + "spans": [ + { + "bbox": [ + 105, + 322, + 183, + 336 + ], + "score": 1.0, + "content": "Proof. Recall that", + "type": "text" + }, + { + "bbox": [ + 183, + 323, + 306, + 335 + ], + "score": 0.91, + "content": "\\mathcal { M } _ { \\sigma } ( D ) = \\operatorname { a r g m a x } ( n _ { i } + Z _ { i } )", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 322, + 337, + 336 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 338, + 324, + 349, + 335 + ], + "score": 0.89, + "content": "Z _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 322, + 423, + 336 + ], + "score": 1.0, + "content": "are distributed as", + "type": "text" + }, + { + "bbox": [ + 423, + 323, + 461, + 335 + ], + "score": 0.95, + "content": "{ \\mathcal { N } } ( 0 , \\sigma ^ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 322, + 506, + 336 + ], + "score": 1.0, + "content": ". Then for", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 334, + 198, + 348 + ], + "spans": [ + { + "bbox": [ + 105, + 334, + 123, + 348 + ], + "score": 1.0, + "content": "any", + "type": "text" + }, + { + "bbox": [ + 124, + 334, + 159, + 347 + ], + "score": 0.94, + "content": "i ^ { * } \\in [ m ]", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 334, + 198, + 348 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5, + "bbox_fs": [ + 105, + 322, + 506, + 348 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 128, + 351, + 480, + 442 + ], + "lines": [ + { + "bbox": [ + 128, + 351, + 480, + 442 + ], + "spans": [ + { + "bbox": [ + 128, + 351, + 480, + 442 + ], + "score": 0.94, + "content": "\\begin{array} { r } { \\mathbf { P r } [ \\mathcal { M } _ { \\sigma } ( D ) \\neq i ^ { * } ] = \\mathbf { P r } \\left[ \\exists i , n _ { i } + Z _ { i } > n _ { i ^ { * } } + Z _ { i ^ { * } } \\right] \\leq \\displaystyle \\sum _ { i \\neq i ^ { * } } \\mathbf { P r } \\left[ n _ { i } + Z _ { i } > n _ { i ^ { * } } + Z _ { i ^ { * } } \\right] } \\\\ { = \\displaystyle \\sum _ { i \\neq i ^ { * } } \\mathbf { P r } \\left[ Z _ { i } - Z _ { i ^ { * } } > n _ { i ^ { * } } - n _ { i } \\right] } \\\\ { = \\displaystyle \\sum _ { i \\neq i ^ { * } } \\frac { 1 } { 2 } \\left( 1 - \\mathrm { e r f } \\left( \\frac { n _ { i ^ { * } } - n _ { i } } { 2 \\sigma } \\right) \\right) . } \\end{array}", + "type": "interline_equation", + "image_path": "ee155f4d624a5fba3b4a2ca84d4518af207c20765435b50cf2e74aeab36294e5.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 128, + 351, + 480, + 381.3333333333333 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 128, + 381.3333333333333, + 480, + 411.66666666666663 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 128, + 411.66666666666663, + 480, + 441.99999999999994 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 446, + 504, + 470 + ], + "lines": [ + { + "bbox": [ + 106, + 446, + 506, + 459 + ], + "spans": [ + { + "bbox": [ + 106, + 446, + 302, + 459 + ], + "score": 1.0, + "content": "where the last equality follows from the fact that", + "type": "text" + }, + { + "bbox": [ + 303, + 447, + 337, + 459 + ], + "score": 0.93, + "content": "Z _ { i } - Z _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 337, + 446, + 506, + 459 + ], + "score": 1.0, + "content": "is a Gaussian random variable with mean", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 457, + 504, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 457, + 179, + 469 + ], + "score": 1.0, + "content": "zero and variance", + "type": "text" + }, + { + "bbox": [ + 179, + 457, + 195, + 469 + ], + "score": 0.9, + "content": "2 \\sigma ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 196, + 457, + 199, + 469 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 498, + 460, + 504, + 469 + ], + "score": 0.0, + "content": "", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5, + "bbox_fs": [ + 105, + 446, + 506, + 469 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 482, + 310, + 495 + ], + "lines": [ + { + "bbox": [ + 106, + 482, + 310, + 496 + ], + "spans": [ + { + "bbox": [ + 106, + 482, + 310, + 496 + ], + "score": 1.0, + "content": "We now present a precise statement of Theorem 6.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23, + "bbox_fs": [ + 106, + 482, + 310, + 496 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 497, + 505, + 551 + ], + "lines": [ + { + "bbox": [ + 106, + 496, + 506, + 510 + ], + "spans": [ + { + "bbox": [ + 106, + 496, + 177, + 510 + ], + "score": 1.0, + "content": "Theorem 6. Let", + "type": "text" + }, + { + "bbox": [ + 177, + 498, + 190, + 507 + ], + "score": 0.68, + "content": "\\mathcal { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 496, + 326, + 510 + ], + "score": 1.0, + "content": "be a randomized algorithm with", + "type": "text" + }, + { + "bbox": [ + 326, + 497, + 358, + 510 + ], + "score": 0.88, + "content": "( \\mu _ { 1 } , \\varepsilon _ { 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 358, + 496, + 401, + 510 + ], + "score": 1.0, + "content": "-RDP and", + "type": "text" + }, + { + "bbox": [ + 402, + 498, + 434, + 510 + ], + "score": 0.87, + "content": "\\left( \\mu _ { 2 } , \\varepsilon _ { 2 } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 434, + 496, + 506, + 510 + ], + "score": 1.0, + "content": "-RDP guarantees", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 508, + 506, + 521 + ], + "spans": [ + { + "bbox": [ + 105, + 508, + 296, + 521 + ], + "score": 1.0, + "content": "and suppose that there exists a likely outcome", + "type": "text" + }, + { + "bbox": [ + 296, + 510, + 306, + 519 + ], + "score": 0.83, + "content": "i ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 508, + 372, + 521 + ], + "score": 1.0, + "content": "given a dataset", + "type": "text" + }, + { + "bbox": [ + 372, + 509, + 382, + 519 + ], + "score": 0.78, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 382, + 508, + 437, + 521 + ], + "score": 1.0, + "content": "and a bound", + "type": "text" + }, + { + "bbox": [ + 438, + 509, + 464, + 520 + ], + "score": 0.88, + "content": "\\tilde { q } \\leq 1", + "type": "inline_equation" + }, + { + "bbox": [ + 464, + 508, + 506, + 521 + ], + "score": 1.0, + "content": "such that", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 107, + 520, + 501, + 540 + ], + "spans": [ + { + "bbox": [ + 107, + 523, + 197, + 536 + ], + "score": 0.91, + "content": "\\tilde { q } \\geq \\mathbf { P r } \\left[ \\mathcal { M } ( D ) \\neq i ^ { * } \\right]", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 521, + 311, + 537 + ], + "score": 1.0, + "content": ". Additionally suppose that", + "type": "text" + }, + { + "bbox": [ + 311, + 524, + 345, + 536 + ], + "score": 0.91, + "content": "\\lambda \\le \\mu _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 521, + 365, + 537 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 366, + 520, + 501, + 540 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\tilde { q } \\le e ^ { ( \\mu _ { 2 } - 1 ) \\varepsilon _ { 2 } } / \\biggl ( \\frac { \\mu _ { 1 } } { \\mu _ { 1 } - 1 } \\cdot \\frac { \\mu _ { 2 } } { \\mu _ { 2 } - 1 } \\biggr ) ^ { \\mu _ { 2 } } } \\end{array}", + "type": "inline_equation" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 538, + 321, + 551 + ], + "spans": [ + { + "bbox": [ + 106, + 538, + 245, + 551 + ], + "score": 1.0, + "content": "Then, for any neighboring dataset", + "type": "text" + }, + { + "bbox": [ + 245, + 538, + 257, + 549 + ], + "score": 0.85, + "content": "D ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 538, + 269, + 551 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 269, + 539, + 279, + 549 + ], + "score": 0.76, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 538, + 321, + 551 + ], + "score": 1.0, + "content": ", we have:", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 25.5, + "bbox_fs": [ + 105, + 496, + 506, + 551 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 131, + 555, + 479, + 580 + ], + "lines": [ + { + "bbox": [ + 131, + 555, + 479, + 580 + ], + "spans": [ + { + "bbox": [ + 131, + 555, + 479, + 580 + ], + "score": 0.88, + "content": "D _ { \\lambda } ( \\mathcal { M } ( D ) \\| \\mathcal { M } ( D ^ { \\prime } ) ) \\le \\frac { 1 } { \\lambda - 1 } \\log \\left( ( 1 - \\tilde { q } ) \\cdot A ( \\tilde { q } , \\mu _ { 2 } , \\varepsilon _ { 2 } ) ^ { \\lambda - 1 } + \\tilde { q } \\cdot B ( \\tilde { q } , \\mu _ { 1 } , \\varepsilon _ { 1 } ) ^ { \\lambda - 1 } \\right)", + "type": "interline_equation", + "image_path": "2cfe6826ca433929ddcaaa86ed5317161487a749198ab6784470924c289e6375.jpg" + } + ] + } + ], + "index": 28, + "virtual_lines": [ + { + "bbox": [ + 131, + 555, + 479, + 580 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "interline_equation", + "bbox": [ + 133, + 585, + 434, + 607 + ], + "lines": [ + { + "bbox": [ + 133, + 585, + 434, + 607 + ], + "spans": [ + { + "bbox": [ + 133, + 585, + 434, + 607 + ], + "score": 0.39, + "content": "\\begin{array} { r } { \\pmb { A } ( \\tilde { q } , \\mu _ { 2 } , \\varepsilon _ { 2 } ) \\triangleq ( 1 - \\tilde { q } ) / \\bigg ( 1 - \\big ( \\tilde { q } e ^ { \\varepsilon _ { 2 } } \\big ) ^ { \\frac { \\mu _ { 2 } - 1 } { \\mu _ { 2 } } } \\bigg ) a n d \\pmb { B } ( \\tilde { q } , \\mu _ { 1 } , \\varepsilon _ { 1 } ) \\triangleq e ^ { \\varepsilon _ { 1 } } / \\tilde { q } ^ { \\frac { 1 } { \\mu _ { 1 } - 1 } } . } \\end{array}", + "type": "interline_equation", + "image_path": "991081fd038e139ccf105c9cd1c06e19fbca27adbe3faddd70696b59044ec1be.jpg" + } + ] + } + ], + "index": 29, + "virtual_lines": [ + { + "bbox": [ + 133, + 585, + 434, + 607 + ], + "spans": [], + "index": 29 + } + ] + }, + { + "type": "text", + "bbox": [ + 104, + 617, + 505, + 641 + ], + "lines": [ + { + "bbox": [ + 106, + 617, + 505, + 630 + ], + "spans": [ + { + "bbox": [ + 106, + 617, + 505, + 630 + ], + "score": 1.0, + "content": "Proof. Before we proceed to the proof, we introduce some simplifying notation. For a randomized", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 629, + 355, + 640 + ], + "spans": [ + { + "bbox": [ + 106, + 629, + 154, + 640 + ], + "score": 1.0, + "content": "mechanism", + "type": "text" + }, + { + "bbox": [ + 155, + 629, + 168, + 639 + ], + "score": 0.85, + "content": "\\mathcal { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 629, + 270, + 640 + ], + "score": 1.0, + "content": "and neighboring datasets", + "type": "text" + }, + { + "bbox": [ + 271, + 629, + 280, + 639 + ], + "score": 0.85, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 629, + 298, + 640 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 298, + 629, + 311, + 639 + ], + "score": 0.89, + "content": "D ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 629, + 355, + 640 + ], + "score": 1.0, + "content": ", we define", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5, + "bbox_fs": [ + 106, + 617, + 505, + 640 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 166, + 645, + 444, + 696 + ], + "lines": [ + { + "bbox": [ + 166, + 645, + 444, + 696 + ], + "spans": [ + { + "bbox": [ + 166, + 645, + 444, + 696 + ], + "score": 0.93, + "content": "\\begin{array} { l } { \\displaystyle \\beta _ { \\mathcal { M } } ( \\lambda ; D , D ^ { \\prime } ) \\triangleq D _ { \\lambda } ( \\mathcal { M } ( D ) \\| \\mathcal { M } ( D ^ { \\prime } ) ) } \\\\ { \\displaystyle = \\frac { 1 } { \\lambda - 1 } \\log \\mathbb { E } _ { x \\sim \\mathcal { M } ( D ) } \\left[ \\left( \\frac { \\mathbf { P r } \\left[ \\mathcal { M } ( D ) = x \\right] } { \\mathbf { P r } \\left[ \\mathcal { M } ( D ^ { \\prime } ) = x \\right] } \\right) ^ { \\lambda - 1 } \\right] . } \\end{array}", + "type": "interline_equation", + "image_path": "9010c1e03a91497835f0833ac793ed0943e13cdcb39a08e58087746837876c47.jpg" + } + ] + } + ], + "index": 33, + "virtual_lines": [ + { + "bbox": [ + 166, + 645, + 444, + 662.0 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 166, + 662.0, + 444, + 679.0 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 166, + 679.0, + 444, + 696.0 + ], + "spans": [], + "index": 34 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 707, + 504, + 731 + ], + "lines": [ + { + "bbox": [ + 104, + 706, + 506, + 721 + ], + "spans": [ + { + "bbox": [ + 104, + 706, + 422, + 721 + ], + "score": 1.0, + "content": "As the proof involves working with the RDP bounds in the exponent, we set", + "type": "text" + }, + { + "bbox": [ + 423, + 707, + 486, + 720 + ], + "score": 0.89, + "content": "\\zeta _ { 1 } \\triangleq e ^ { \\varepsilon _ { 1 } ( \\mu _ { 1 } - 1 ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 706, + 506, + 721 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 104, + 717, + 172, + 732 + ], + "spans": [ + { + "bbox": [ + 104, + 717, + 172, + 732 + ], + "score": 1.0, + "content": "ζ2 , eε2(µ2−1).", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5, + "bbox_fs": [ + 104, + 706, + 506, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 276, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 277, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 277, + 96 + ], + "score": 1.0, + "content": "Finally, we define the following shortcuts:", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "interline_equation", + "bbox": [ + 180, + 97, + 427, + 154 + ], + "lines": [ + { + "bbox": [ + 180, + 97, + 427, + 154 + ], + "spans": [ + { + "bbox": [ + 180, + 97, + 427, + 154 + ], + "score": 0.69, + "content": "\\begin{array} { l } { q _ { i } \\triangleq \\mathbf { P r } \\left[ \\mathcal { M } ( D ) = i \\right] \\mathrm { ~ a n d ~ } q \\triangleq \\displaystyle \\sum _ { i \\neq i ^ { * } } q _ { i } = \\mathbf { P r } \\left[ \\mathcal { M } ( D ) \\neq i ^ { * } \\right] , } \\\\ { p _ { i } \\triangleq \\mathbf { P r } \\left[ \\mathcal { M } ( D ^ { \\prime } ) = i \\right] \\mathrm { ~ a n d ~ } p \\triangleq \\displaystyle \\sum _ { i \\neq i ^ { * } } p _ { i } = \\mathbf { P r } \\left[ \\mathcal { M } ( D ^ { \\prime } ) \\neq i ^ { * } \\right] , } \\end{array}", + "type": "interline_equation", + "image_path": "17b8657bad918393c4884aa39ff03bb82e08df30f2f9150755913075c13bbe1f.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 180, + 97, + 427, + 116.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 180, + 116.0, + 427, + 135.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 180, + 135.0, + 427, + 154.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 157, + 187, + 169 + ], + "lines": [ + { + "bbox": [ + 105, + 156, + 185, + 171 + ], + "spans": [ + { + "bbox": [ + 105, + 156, + 160, + 171 + ], + "score": 1.0, + "content": "and note that", + "type": "text" + }, + { + "bbox": [ + 160, + 158, + 185, + 169 + ], + "score": 0.91, + "content": "q \\leq \\tilde { q }", + "type": "inline_equation" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 107, + 173, + 394, + 187 + ], + "lines": [ + { + "bbox": [ + 105, + 173, + 394, + 188 + ], + "spans": [ + { + "bbox": [ + 105, + 173, + 303, + 188 + ], + "score": 1.0, + "content": "From the definition of Rényi differential privacy,", + "type": "text" + }, + { + "bbox": [ + 303, + 174, + 336, + 186 + ], + "score": 0.93, + "content": "( \\mu _ { 1 } , \\varepsilon _ { 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 336, + 173, + 394, + 188 + ], + "score": 1.0, + "content": "-RDP implies:", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "interline_equation", + "bbox": [ + 150, + 189, + 461, + 267 + ], + "lines": [ + { + "bbox": [ + 150, + 189, + 461, + 267 + ], + "spans": [ + { + "bbox": [ + 150, + 189, + 461, + 267 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { \\exp \\left( \\beta _ { \\mathcal M } ( \\mu _ { 1 } ; D , D ^ { \\prime } ) \\right) = \\displaystyle \\left( \\frac { ( 1 - q ) ^ { \\mu _ { 1 } } } { ( 1 - p ) ^ { \\mu _ { 1 } - 1 } } + \\sum _ { i \\neq i * } \\frac { q _ { i } ^ { \\mu _ { 1 } } } { p _ { i } ^ { \\mu _ { 1 } - 1 } } \\right) ^ { 1 / ( \\mu _ { 1 } - 1 ) } \\leq \\exp ( \\varepsilon _ { 1 } ) } \\\\ & { \\qquad \\implies \\displaystyle \\sum _ { i > 1 } \\frac { q _ { i } ^ { \\mu _ { 1 } } } { p _ { i } ^ { \\mu _ { 1 } - 1 } } = \\sum _ { i > 1 } q _ { i } \\left( \\frac { q _ { i } } { p _ { i } } \\right) ^ { \\mu _ { 1 } - 1 } \\leq \\zeta _ { 1 } . } \\end{array}", + "type": "interline_equation", + "image_path": "52a7ba2a7619a5928d6cb42aa47aeb1280cd5c3d764b6a645e4043f9301878c8.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 150, + 189, + 461, + 215.0 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 150, + 215.0, + 461, + 241.0 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 150, + 241.0, + 461, + 267.0 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 270, + 481, + 285 + ], + "lines": [ + { + "bbox": [ + 104, + 270, + 483, + 288 + ], + "spans": [ + { + "bbox": [ + 104, + 270, + 131, + 288 + ], + "score": 1.0, + "content": "Since", + "type": "text" + }, + { + "bbox": [ + 131, + 270, + 224, + 285 + ], + "score": 0.67, + "content": "\\mu _ { 1 } \\geq \\lambda , f ( x ) \\triangleq x ^ { \\frac { \\mu _ { 1 } - 1 } { \\lambda - 1 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 270, + 483, + 288 + ], + "score": 1.0, + "content": "is convex. Applying Jensen’s Inequality we have the following:", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "interline_equation", + "bbox": [ + 176, + 288, + 433, + 425 + ], + "lines": [ + { + "bbox": [ + 176, + 288, + 433, + 425 + ], + "spans": [ + { + "bbox": [ + 176, + 288, + 433, + 425 + ], + "score": 0.95, + "content": "\\begin{array} { r l } & { \\left( \\frac { \\sum _ { i \\neq j : i } \\cdot q _ { i } \\left( \\frac { q _ { i } } { p _ { i } } \\right) ^ { \\lambda - 1 } } { q } \\right) ^ { \\frac { n _ { 1 } - 1 } { \\lambda - 1 } } \\leq \\frac { \\sum _ { i \\neq i } \\cdot q _ { i } \\left( \\frac { q _ { i } } { p _ { i } } \\right) ^ { \\mu _ { 1 } - 1 } } { q } } \\\\ & { \\qquad \\implies \\sum _ { i \\neq i ^ { * } } q _ { i } \\left( \\frac { q _ { i } } { p _ { i } } \\right) ^ { \\lambda - 1 } \\leq q \\left( \\frac { \\sum _ { i \\neq i } \\cdot q _ { i } \\left( \\frac { q _ { i } } { p _ { i } } \\right) ^ { \\mu _ { 1 } - 1 } } { q } \\right) ^ { \\frac { \\lambda - 1 } { \\mu _ { 1 } - 1 } } } \\\\ & { \\qquad \\overset { ( 3 ) } { \\Longrightarrow } \\sum _ { i \\neq i ^ { * } } q _ { i } \\left( \\frac { q _ { i } } { p _ { i } } \\right) ^ { \\lambda - 1 } \\leq \\zeta _ { 1 } ^ { \\frac { \\lambda - 1 } { \\mu _ { 1 } - 1 } } \\cdot q ^ { 1 - \\frac { \\lambda - 1 } { \\mu _ { 1 } - 1 } } . } \\end{array}", + "type": "interline_equation", + "image_path": "ee95560a496090abec0a3e8a07eaaa1337df337b19f38e1f05f32c9200831389.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 176, + 288, + 433, + 333.6666666666667 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 176, + 333.6666666666667, + 433, + 379.33333333333337 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 176, + 379.33333333333337, + 433, + 425.00000000000006 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 433, + 271, + 445 + ], + "lines": [ + { + "bbox": [ + 105, + 432, + 272, + 447 + ], + "spans": [ + { + "bbox": [ + 105, + 432, + 218, + 447 + ], + "score": 1.0, + "content": "Next, by the bound at order", + "type": "text" + }, + { + "bbox": [ + 218, + 435, + 230, + 445 + ], + "score": 0.85, + "content": "\\mu _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 230, + 432, + 272, + 447 + ], + "score": 1.0, + "content": ", we have:", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "interline_equation", + "bbox": [ + 150, + 448, + 460, + 523 + ], + "lines": [ + { + "bbox": [ + 150, + 448, + 460, + 523 + ], + "spans": [ + { + "bbox": [ + 150, + 448, + 460, + 523 + ], + "score": 0.95, + "content": "\\begin{array} { c } { { \\displaystyle \\exp \\left( \\beta _ { { \\mathcal M } } ( \\mu _ { 2 } ; D ^ { \\prime } , D ) \\right) = \\left( \\frac { ( 1 - p ) ^ { \\mu _ { 2 } } } { ( 1 - q ) ^ { \\mu _ { 2 } - 1 } } + \\sum _ { i \\neq i ^ { * } } \\frac { p _ { i } ^ { \\mu _ { 2 } } } { q _ { i } ^ { \\mu _ { 2 } - 1 } } \\right) ^ { 1 / ( \\mu _ { 2 } - 1 ) } \\leq \\exp ( \\varepsilon _ { 2 } ) } } \\\\ { { \\displaystyle \\implies \\frac { ( 1 - p ) ^ { \\mu _ { 2 } } } { ( 1 - q ) ^ { \\mu _ { 2 } - 1 } } + \\sum _ { i \\neq i ^ { * } } \\frac { p _ { i } ^ { \\mu _ { 2 } } } { q _ { i } ^ { \\mu _ { 2 } - 1 } } \\leq \\zeta _ { 2 } . } } \\end{array}", + "type": "interline_equation", + "image_path": "13ed527b73a3e9abc833e22c70cc45121f7db00bc6226f257b3bb446face8902.jpg" + } + ] + } + ], + "index": 15, + "virtual_lines": [ + { + "bbox": [ + 150, + 448, + 460, + 473.0 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 150, + 473.0, + 460, + 498.0 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 150, + 498.0, + 460, + 523.0 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 525, + 362, + 538 + ], + "lines": [ + { + "bbox": [ + 105, + 524, + 363, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 524, + 363, + 541 + ], + "score": 1.0, + "content": "By the data processing inequality of Rényi divergence, we have", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "interline_equation", + "bbox": [ + 246, + 541, + 363, + 568 + ], + "lines": [ + { + "bbox": [ + 246, + 541, + 363, + 568 + ], + "spans": [ + { + "bbox": [ + 246, + 541, + 363, + 568 + ], + "score": 0.94, + "content": "\\frac { ( 1 - p ) ^ { \\mu _ { 2 } } } { ( 1 - q ) ^ { \\mu _ { 2 } - 1 } } + \\frac { p ^ { \\mu _ { 2 } } } { q ^ { \\mu _ { 2 } - 1 } } \\leq \\zeta _ { 2 } ,", + "type": "interline_equation", + "image_path": "e6b2fc5dffabde612584d3f9feb2aac087a0b0cb4e7aca4fbdb090f6fa564fe2.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 246, + 541, + 363, + 568 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 572, + 249, + 588 + ], + "lines": [ + { + "bbox": [ + 106, + 571, + 251, + 590 + ], + "spans": [ + { + "bbox": [ + 106, + 572, + 165, + 586 + ], + "score": 1.0, + "content": "which implies", + "type": "text" + }, + { + "bbox": [ + 163, + 571, + 251, + 590 + ], + "score": 1.0, + "content": "pµ2qµ2−1 ≤ ζ2 and thus", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "interline_equation", + "bbox": [ + 266, + 591, + 345, + 611 + ], + "lines": [ + { + "bbox": [ + 266, + 591, + 345, + 611 + ], + "spans": [ + { + "bbox": [ + 266, + 591, + 345, + 611 + ], + "score": 0.92, + "content": "p \\leq \\left( q ^ { \\mu _ { 2 } - 1 } \\zeta _ { 2 } \\right) ^ { \\frac { 1 } { \\mu _ { 2 } } } .", + "type": "interline_equation", + "image_path": "3f562dbbf1ca27002624f91f3397e84af94df77e7cd4be56bfdf095460f53a1e.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 266, + 591, + 345, + 611 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 623, + 313, + 636 + ], + "lines": [ + { + "bbox": [ + 106, + 624, + 313, + 637 + ], + "spans": [ + { + "bbox": [ + 106, + 624, + 303, + 637 + ], + "score": 1.0, + "content": "Combining (4) and (5), we can derive a bound at", + "type": "text" + }, + { + "bbox": [ + 303, + 625, + 310, + 634 + ], + "score": 0.81, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 310, + 624, + 313, + 637 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "interline_equation", + "bbox": [ + 138, + 639, + 473, + 731 + ], + "lines": [ + { + "bbox": [ + 138, + 639, + 473, + 731 + ], + "spans": [ + { + "bbox": [ + 138, + 639, + 473, + 731 + ], + "score": 0.95, + "content": "\\begin{array} { r l } & { \\exp \\left( \\beta _ { \\mathcal M } ( \\lambda , D , D ^ { \\prime } ) \\right) = \\left( \\frac { ( 1 - q ) ^ { \\lambda } } { ( 1 - p ) ^ { \\lambda - 1 } } + \\displaystyle \\sum _ { i \\neq i ^ { * } } \\frac { q _ { i } ^ { \\lambda } } { p _ { i } ^ { \\lambda - 1 } } \\right) ^ { 1 / ( \\lambda - 1 ) } } \\\\ & { \\quad \\le \\left( \\frac { ( 1 - q ) ^ { \\lambda } } { \\left( 1 - ( q ^ { \\mu _ { 2 } - 1 } \\zeta _ { 2 } ) ^ { \\frac { 1 } { \\mu _ { 2 } } } \\right) ^ { \\lambda - 1 } } + \\zeta _ { 1 } ^ { \\frac { \\lambda - 1 } { \\mu _ { 1 } - 1 } } \\cdot q ^ { 1 - \\frac { \\lambda - 1 } { \\mu _ { 1 } - 1 } } \\right) ^ { 1 / ( \\lambda - 1 ) } . } \\end{array}", + "type": "interline_equation", + "image_path": "5a661797c3e6870246223e3f8843aceb0b11ca4a20b196bf4170f12278028295.jpg" + } + ] + } + ], + "index": 23, + "virtual_lines": [ + { + "bbox": [ + 138, + 639, + 473, + 669.6666666666666 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 138, + 669.6666666666666, + 473, + 700.3333333333333 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 138, + 700.3333333333333, + 473, + 730.9999999999999 + ], + "spans": [], + "index": 24 + } + ] + } + ], + "page_idx": 17, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 26, + 293, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 761 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 763 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 763 + ], + "score": 1.0, + "content": "18", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 276, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 277, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 277, + 96 + ], + "score": 1.0, + "content": "Finally, we define the following shortcuts:", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0, + "bbox_fs": [ + 105, + 81, + 277, + 96 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 180, + 97, + 427, + 154 + ], + "lines": [ + { + "bbox": [ + 180, + 97, + 427, + 154 + ], + "spans": [ + { + "bbox": [ + 180, + 97, + 427, + 154 + ], + "score": 0.69, + "content": "\\begin{array} { l } { q _ { i } \\triangleq \\mathbf { P r } \\left[ \\mathcal { M } ( D ) = i \\right] \\mathrm { ~ a n d ~ } q \\triangleq \\displaystyle \\sum _ { i \\neq i ^ { * } } q _ { i } = \\mathbf { P r } \\left[ \\mathcal { M } ( D ) \\neq i ^ { * } \\right] , } \\\\ { p _ { i } \\triangleq \\mathbf { P r } \\left[ \\mathcal { M } ( D ^ { \\prime } ) = i \\right] \\mathrm { ~ a n d ~ } p \\triangleq \\displaystyle \\sum _ { i \\neq i ^ { * } } p _ { i } = \\mathbf { P r } \\left[ \\mathcal { M } ( D ^ { \\prime } ) \\neq i ^ { * } \\right] , } \\end{array}", + "type": "interline_equation", + "image_path": "17b8657bad918393c4884aa39ff03bb82e08df30f2f9150755913075c13bbe1f.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 180, + 97, + 427, + 116.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 180, + 116.0, + 427, + 135.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 180, + 135.0, + 427, + 154.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 157, + 187, + 169 + ], + "lines": [ + { + "bbox": [ + 105, + 156, + 185, + 171 + ], + "spans": [ + { + "bbox": [ + 105, + 156, + 160, + 171 + ], + "score": 1.0, + "content": "and note that", + "type": "text" + }, + { + "bbox": [ + 160, + 158, + 185, + 169 + ], + "score": 0.91, + "content": "q \\leq \\tilde { q }", + "type": "inline_equation" + } + ], + "index": 4 + } + ], + "index": 4, + "bbox_fs": [ + 105, + 156, + 185, + 171 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 173, + 394, + 187 + ], + "lines": [ + { + "bbox": [ + 105, + 173, + 394, + 188 + ], + "spans": [ + { + "bbox": [ + 105, + 173, + 303, + 188 + ], + "score": 1.0, + "content": "From the definition of Rényi differential privacy,", + "type": "text" + }, + { + "bbox": [ + 303, + 174, + 336, + 186 + ], + "score": 0.93, + "content": "( \\mu _ { 1 } , \\varepsilon _ { 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 336, + 173, + 394, + 188 + ], + "score": 1.0, + "content": "-RDP implies:", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5, + "bbox_fs": [ + 105, + 173, + 394, + 188 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 150, + 189, + 461, + 267 + ], + "lines": [ + { + "bbox": [ + 150, + 189, + 461, + 267 + ], + "spans": [ + { + "bbox": [ + 150, + 189, + 461, + 267 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { \\exp \\left( \\beta _ { \\mathcal M } ( \\mu _ { 1 } ; D , D ^ { \\prime } ) \\right) = \\displaystyle \\left( \\frac { ( 1 - q ) ^ { \\mu _ { 1 } } } { ( 1 - p ) ^ { \\mu _ { 1 } - 1 } } + \\sum _ { i \\neq i * } \\frac { q _ { i } ^ { \\mu _ { 1 } } } { p _ { i } ^ { \\mu _ { 1 } - 1 } } \\right) ^ { 1 / ( \\mu _ { 1 } - 1 ) } \\leq \\exp ( \\varepsilon _ { 1 } ) } \\\\ & { \\qquad \\implies \\displaystyle \\sum _ { i > 1 } \\frac { q _ { i } ^ { \\mu _ { 1 } } } { p _ { i } ^ { \\mu _ { 1 } - 1 } } = \\sum _ { i > 1 } q _ { i } \\left( \\frac { q _ { i } } { p _ { i } } \\right) ^ { \\mu _ { 1 } - 1 } \\leq \\zeta _ { 1 } . } \\end{array}", + "type": "interline_equation", + "image_path": "52a7ba2a7619a5928d6cb42aa47aeb1280cd5c3d764b6a645e4043f9301878c8.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 150, + 189, + 461, + 215.0 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 150, + 215.0, + 461, + 241.0 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 150, + 241.0, + 461, + 267.0 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 270, + 481, + 285 + ], + "lines": [ + { + "bbox": [ + 104, + 270, + 483, + 288 + ], + "spans": [ + { + "bbox": [ + 104, + 270, + 131, + 288 + ], + "score": 1.0, + "content": "Since", + "type": "text" + }, + { + "bbox": [ + 131, + 270, + 224, + 285 + ], + "score": 0.67, + "content": "\\mu _ { 1 } \\geq \\lambda , f ( x ) \\triangleq x ^ { \\frac { \\mu _ { 1 } - 1 } { \\lambda - 1 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 270, + 483, + 288 + ], + "score": 1.0, + "content": "is convex. Applying Jensen’s Inequality we have the following:", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9, + "bbox_fs": [ + 104, + 270, + 483, + 288 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 176, + 288, + 433, + 425 + ], + "lines": [ + { + "bbox": [ + 176, + 288, + 433, + 425 + ], + "spans": [ + { + "bbox": [ + 176, + 288, + 433, + 425 + ], + "score": 0.95, + "content": "\\begin{array} { r l } & { \\left( \\frac { \\sum _ { i \\neq j : i } \\cdot q _ { i } \\left( \\frac { q _ { i } } { p _ { i } } \\right) ^ { \\lambda - 1 } } { q } \\right) ^ { \\frac { n _ { 1 } - 1 } { \\lambda - 1 } } \\leq \\frac { \\sum _ { i \\neq i } \\cdot q _ { i } \\left( \\frac { q _ { i } } { p _ { i } } \\right) ^ { \\mu _ { 1 } - 1 } } { q } } \\\\ & { \\qquad \\implies \\sum _ { i \\neq i ^ { * } } q _ { i } \\left( \\frac { q _ { i } } { p _ { i } } \\right) ^ { \\lambda - 1 } \\leq q \\left( \\frac { \\sum _ { i \\neq i } \\cdot q _ { i } \\left( \\frac { q _ { i } } { p _ { i } } \\right) ^ { \\mu _ { 1 } - 1 } } { q } \\right) ^ { \\frac { \\lambda - 1 } { \\mu _ { 1 } - 1 } } } \\\\ & { \\qquad \\overset { ( 3 ) } { \\Longrightarrow } \\sum _ { i \\neq i ^ { * } } q _ { i } \\left( \\frac { q _ { i } } { p _ { i } } \\right) ^ { \\lambda - 1 } \\leq \\zeta _ { 1 } ^ { \\frac { \\lambda - 1 } { \\mu _ { 1 } - 1 } } \\cdot q ^ { 1 - \\frac { \\lambda - 1 } { \\mu _ { 1 } - 1 } } . } \\end{array}", + "type": "interline_equation", + "image_path": "ee95560a496090abec0a3e8a07eaaa1337df337b19f38e1f05f32c9200831389.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 176, + 288, + 433, + 333.6666666666667 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 176, + 333.6666666666667, + 433, + 379.33333333333337 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 176, + 379.33333333333337, + 433, + 425.00000000000006 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 433, + 271, + 445 + ], + "lines": [ + { + "bbox": [ + 105, + 432, + 272, + 447 + ], + "spans": [ + { + "bbox": [ + 105, + 432, + 218, + 447 + ], + "score": 1.0, + "content": "Next, by the bound at order", + "type": "text" + }, + { + "bbox": [ + 218, + 435, + 230, + 445 + ], + "score": 0.85, + "content": "\\mu _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 230, + 432, + 272, + 447 + ], + "score": 1.0, + "content": ", we have:", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13, + "bbox_fs": [ + 105, + 432, + 272, + 447 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 150, + 448, + 460, + 523 + ], + "lines": [ + { + "bbox": [ + 150, + 448, + 460, + 523 + ], + "spans": [ + { + "bbox": [ + 150, + 448, + 460, + 523 + ], + "score": 0.95, + "content": "\\begin{array} { c } { { \\displaystyle \\exp \\left( \\beta _ { { \\mathcal M } } ( \\mu _ { 2 } ; D ^ { \\prime } , D ) \\right) = \\left( \\frac { ( 1 - p ) ^ { \\mu _ { 2 } } } { ( 1 - q ) ^ { \\mu _ { 2 } - 1 } } + \\sum _ { i \\neq i ^ { * } } \\frac { p _ { i } ^ { \\mu _ { 2 } } } { q _ { i } ^ { \\mu _ { 2 } - 1 } } \\right) ^ { 1 / ( \\mu _ { 2 } - 1 ) } \\leq \\exp ( \\varepsilon _ { 2 } ) } } \\\\ { { \\displaystyle \\implies \\frac { ( 1 - p ) ^ { \\mu _ { 2 } } } { ( 1 - q ) ^ { \\mu _ { 2 } - 1 } } + \\sum _ { i \\neq i ^ { * } } \\frac { p _ { i } ^ { \\mu _ { 2 } } } { q _ { i } ^ { \\mu _ { 2 } - 1 } } \\leq \\zeta _ { 2 } . } } \\end{array}", + "type": "interline_equation", + "image_path": "13ed527b73a3e9abc833e22c70cc45121f7db00bc6226f257b3bb446face8902.jpg" + } + ] + } + ], + "index": 15, + "virtual_lines": [ + { + "bbox": [ + 150, + 448, + 460, + 473.0 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 150, + 473.0, + 460, + 498.0 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 150, + 498.0, + 460, + 523.0 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 525, + 362, + 538 + ], + "lines": [ + { + "bbox": [ + 105, + 524, + 363, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 524, + 363, + 541 + ], + "score": 1.0, + "content": "By the data processing inequality of Rényi divergence, we have", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17, + "bbox_fs": [ + 105, + 524, + 363, + 541 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 246, + 541, + 363, + 568 + ], + "lines": [ + { + "bbox": [ + 246, + 541, + 363, + 568 + ], + "spans": [ + { + "bbox": [ + 246, + 541, + 363, + 568 + ], + "score": 0.94, + "content": "\\frac { ( 1 - p ) ^ { \\mu _ { 2 } } } { ( 1 - q ) ^ { \\mu _ { 2 } - 1 } } + \\frac { p ^ { \\mu _ { 2 } } } { q ^ { \\mu _ { 2 } - 1 } } \\leq \\zeta _ { 2 } ,", + "type": "interline_equation", + "image_path": "e6b2fc5dffabde612584d3f9feb2aac087a0b0cb4e7aca4fbdb090f6fa564fe2.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 246, + 541, + 363, + 568 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 572, + 249, + 588 + ], + "lines": [ + { + "bbox": [ + 106, + 571, + 251, + 590 + ], + "spans": [ + { + "bbox": [ + 106, + 572, + 165, + 586 + ], + "score": 1.0, + "content": "which implies", + "type": "text" + }, + { + "bbox": [ + 163, + 571, + 251, + 590 + ], + "score": 1.0, + "content": "pµ2qµ2−1 ≤ ζ2 and thus", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19, + "bbox_fs": [ + 106, + 571, + 251, + 590 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 266, + 591, + 345, + 611 + ], + "lines": [ + { + "bbox": [ + 266, + 591, + 345, + 611 + ], + "spans": [ + { + "bbox": [ + 266, + 591, + 345, + 611 + ], + "score": 0.92, + "content": "p \\leq \\left( q ^ { \\mu _ { 2 } - 1 } \\zeta _ { 2 } \\right) ^ { \\frac { 1 } { \\mu _ { 2 } } } .", + "type": "interline_equation", + "image_path": "3f562dbbf1ca27002624f91f3397e84af94df77e7cd4be56bfdf095460f53a1e.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 266, + 591, + 345, + 611 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 623, + 313, + 636 + ], + "lines": [ + { + "bbox": [ + 106, + 624, + 313, + 637 + ], + "spans": [ + { + "bbox": [ + 106, + 624, + 303, + 637 + ], + "score": 1.0, + "content": "Combining (4) and (5), we can derive a bound at", + "type": "text" + }, + { + "bbox": [ + 303, + 625, + 310, + 634 + ], + "score": 0.81, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 310, + 624, + 313, + 637 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21, + "bbox_fs": [ + 106, + 624, + 313, + 637 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 138, + 639, + 473, + 731 + ], + "lines": [ + { + "bbox": [ + 138, + 639, + 473, + 731 + ], + "spans": [ + { + "bbox": [ + 138, + 639, + 473, + 731 + ], + "score": 0.95, + "content": "\\begin{array} { r l } & { \\exp \\left( \\beta _ { \\mathcal M } ( \\lambda , D , D ^ { \\prime } ) \\right) = \\left( \\frac { ( 1 - q ) ^ { \\lambda } } { ( 1 - p ) ^ { \\lambda - 1 } } + \\displaystyle \\sum _ { i \\neq i ^ { * } } \\frac { q _ { i } ^ { \\lambda } } { p _ { i } ^ { \\lambda - 1 } } \\right) ^ { 1 / ( \\lambda - 1 ) } } \\\\ & { \\quad \\le \\left( \\frac { ( 1 - q ) ^ { \\lambda } } { \\left( 1 - ( q ^ { \\mu _ { 2 } - 1 } \\zeta _ { 2 } ) ^ { \\frac { 1 } { \\mu _ { 2 } } } \\right) ^ { \\lambda - 1 } } + \\zeta _ { 1 } ^ { \\frac { \\lambda - 1 } { \\mu _ { 1 } - 1 } } \\cdot q ^ { 1 - \\frac { \\lambda - 1 } { \\mu _ { 1 } - 1 } } \\right) ^ { 1 / ( \\lambda - 1 ) } . } \\end{array}", + "type": "interline_equation", + "image_path": "5a661797c3e6870246223e3f8843aceb0b11ca4a20b196bf4170f12278028295.jpg" + } + ] + } + ], + "index": 23, + "virtual_lines": [ + { + "bbox": [ + 138, + 639, + 473, + 669.6666666666666 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 138, + 669.6666666666666, + 473, + 700.3333333333333 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 138, + 700.3333333333333, + 473, + 730.9999999999999 + ], + "spans": [], + "index": 24 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 138 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "score": 1.0, + "content": "Although Equation (6) is very close to the corresponding statement in the theorem’s claim, one", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 92, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 92, + 377, + 106 + ], + "score": 1.0, + "content": "subtlety remains. The bound (6) applies to the exact probability", + "type": "text" + }, + { + "bbox": [ + 378, + 93, + 470, + 105 + ], + "score": 0.9, + "content": "q = \\mathbf { P r } \\left[ \\mathcal { M } ( D ) \\neq i ^ { * } \\right]", + "type": "inline_equation" + }, + { + "bbox": [ + 470, + 92, + 505, + 106 + ], + "score": 1.0, + "content": ". In the", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 392, + 117 + ], + "score": 1.0, + "content": "theorem statement, and in practice, we can only derive an upper bound", + "type": "text" + }, + { + "bbox": [ + 392, + 106, + 398, + 116 + ], + "score": 0.82, + "content": "\\tilde { q }", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 104, + 412, + 117 + ], + "score": 1.0, + "content": "on", + "type": "text" + }, + { + "bbox": [ + 412, + 105, + 482, + 117 + ], + "score": 0.88, + "content": "\\mathbf { P r } \\left[ \\mathcal { M } ( D ) \\neq i ^ { * } \\right]", + "type": "inline_equation" + }, + { + "bbox": [ + 482, + 104, + 505, + 117 + ], + "score": 1.0, + "content": ". The", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 104, + 113, + 506, + 129 + ], + "spans": [ + { + "bbox": [ + 104, + 113, + 506, + 129 + ], + "score": 1.0, + "content": "last step of the proof requires showing that the expression in Equation (6) is monotone in the range", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 126, + 240, + 138 + ], + "spans": [ + { + "bbox": [ + 106, + 126, + 155, + 138 + ], + "score": 1.0, + "content": "of values of", + "type": "text" + }, + { + "bbox": [ + 156, + 128, + 162, + 138 + ], + "score": 0.81, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 126, + 240, + 138 + ], + "score": 1.0, + "content": "that we care about.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 106, + 142, + 414, + 155 + ], + "lines": [ + { + "bbox": [ + 105, + 142, + 414, + 158 + ], + "spans": [ + { + "bbox": [ + 105, + 142, + 339, + 158 + ], + "score": 1.0, + "content": "Lemma 9 (Monotonicity of the bound). Let the functions", + "type": "text" + }, + { + "bbox": [ + 340, + 143, + 360, + 155 + ], + "score": 0.9, + "content": "f _ { 1 } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 142, + 379, + 158 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 379, + 143, + 400, + 155 + ], + "score": 0.83, + "content": "f _ { 2 } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 142, + 414, + 158 + ], + "score": 1.0, + "content": "be", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "interline_equation", + "bbox": [ + 108, + 155, + 456, + 217 + ], + "lines": [ + { + "bbox": [ + 151, + 155, + 456, + 217 + ], + "spans": [ + { + "bbox": [ + 151, + 155, + 456, + 217 + ], + "score": 0.72, + "content": "\\begin{array} { l } { { f _ { 1 } ( x ) \\triangleq \\displaystyle \\frac { ( 1 - x ) ^ { \\lambda } } { \\Big ( 1 - ( x ^ { \\mu _ { 2 } - 1 } \\zeta _ { 2 } ) ^ { \\frac { 1 } { \\mu _ { 2 } } } \\Big ) ^ { \\lambda - 1 } } \\qquad \\ a n d \\qquad f _ { 2 } ( x ) \\triangleq \\zeta _ { 1 } ^ { \\frac { \\lambda - 1 } { \\mu _ { 1 } - 1 } } \\cdot x ^ { 1 - \\frac { \\lambda - 1 } { \\mu _ { 1 } - 1 } } , } } \\\\ { { \\mathrm { } } } \\\\ { { \\mathrm { } } } \\\\ { { \\mathrm { } } { \\mathrm { } } { } \\\\ { \\mathrm { } { } \\mathrm { } + f _ { 2 } ( x ) \\ i s \\ i n c r e a s i n g \\ i n \\Big [ 0 , \\operatorname* { m i n } \\Big ( 1 , \\zeta _ { 2 } \\Big / \\Big ( \\frac { \\mu _ { 1 } } { \\mu _ { 1 } - 1 } \\cdot \\frac { \\mu _ { 2 } } { \\mu _ { 2 } - 1 } \\Big ) ^ { \\mu _ { 2 } } \\Big ) \\Big ] . } } \\end{array}", + "type": "interline_equation", + "image_path": "6c12f64042b39c6c2111babda04809a2511a69055071bc9aff6539d2e92de17c.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 108, + 155, + 456, + 175.66666666666666 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 108, + 175.66666666666666, + 456, + 196.33333333333331 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 108, + 196.33333333333331, + 456, + 216.99999999999997 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 226, + 298, + 238 + ], + "lines": [ + { + "bbox": [ + 105, + 226, + 299, + 239 + ], + "spans": [ + { + "bbox": [ + 105, + 226, + 233, + 239 + ], + "score": 1.0, + "content": "Proof. Taking the derivative of", + "type": "text" + }, + { + "bbox": [ + 234, + 226, + 257, + 239 + ], + "score": 0.92, + "content": "f _ { 1 } ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 226, + 299, + 239 + ], + "score": 1.0, + "content": ", we have:", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "interline_equation", + "bbox": [ + 118, + 240, + 493, + 344 + ], + "lines": [ + { + "bbox": [ + 118, + 240, + 493, + 344 + ], + "spans": [ + { + "bbox": [ + 118, + 240, + 493, + 344 + ], + "score": 0.95, + "content": "f _ { 1 } ^ { \\prime } ( x ) = \\frac { - \\lambda ( 1 - x ) ^ { \\lambda - 1 } ( 1 - ( x ^ { \\mu _ { 2 } - 1 } \\zeta _ { 2 } ) ^ { \\frac { 1 } { \\mu _ { 2 } } } ) ^ { \\lambda - 1 } } { ( 1 - ( x ^ { \\mu _ { 2 } - 1 } \\zeta _ { 2 } ) ^ { \\frac { 1 } { \\mu _ { 2 } } } ) ^ { 2 \\lambda - 2 } } \\\\ & { \\qquad + \\frac { ( 1 - x ) ^ { \\lambda } ( \\lambda - 1 ) ( 1 - ( x ^ { \\mu _ { 2 } - 1 } \\zeta _ { 2 } ) ^ { \\frac { 1 } { \\mu _ { 2 } } } ) ^ { \\lambda - 2 } \\zeta _ { 2 } ^ { \\frac { 1 } { \\mu _ { 2 } } } \\cdot \\frac { \\mu _ { 2 } - 1 } { \\mu _ { 2 } } \\cdot x ^ { - \\frac { 1 } { \\mu _ { 2 } } } } { ( 1 - ( x ^ { \\mu _ { 2 } - 1 } \\zeta _ { 2 } ) ^ { \\frac { 1 } { \\mu _ { 2 } } } ) ^ { 2 \\lambda - 2 } } } \\\\ & = \\frac { ( 1 - x ) ^ { \\lambda - 1 } } { ( 1 - ( x ^ { \\mu _ { 2 } - 1 } \\zeta _ { 2 } ) ^ { \\frac { 1 } { \\mu _ { 2 } } } ) ^ { \\lambda - 1 } } \\left( - \\lambda + ( \\lambda - 1 ) \\left( 1 - \\frac { 1 } { \\mu _ { 2 } } \\right) \\frac { 1 - x } { 1 - ( x ^ { \\mu _ { 2 } - 1 } \\zeta _ { 2 } ) ^ { \\frac { 1 } { \\mu _ { 2 } } } } \\left( \\frac { \\zeta _ { 2 } } { x } \\right) ^ { \\frac { 1 } { \\mu _ { 2 } } } \\right) .", + "type": "interline_equation", + "image_path": "35b15c7ab1a2c4747cdca5fd542001f35c54d98e924dca0579f61a5a6e374196.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 118, + 240, + 493, + 274.6666666666667 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 118, + 274.6666666666667, + 493, + 309.33333333333337 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 118, + 309.33333333333337, + 493, + 344.00000000000006 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 348, + 202, + 360 + ], + "lines": [ + { + "bbox": [ + 107, + 348, + 202, + 360 + ], + "spans": [ + { + "bbox": [ + 107, + 348, + 202, + 360 + ], + "score": 1.0, + "content": "We intend to show that:", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "interline_equation", + "bbox": [ + 213, + 358, + 398, + 390 + ], + "lines": [ + { + "bbox": [ + 213, + 358, + 398, + 390 + ], + "spans": [ + { + "bbox": [ + 213, + 358, + 398, + 390 + ], + "score": 0.92, + "content": "f _ { 1 } ^ { \\prime } ( x ) \\geq - \\lambda + ( \\lambda - 1 ) \\left( 1 - \\frac { 1 } { \\mu _ { 2 } } \\right) \\left( \\frac { \\zeta _ { 2 } } { x } \\right) ^ { \\frac { 1 } { \\mu _ { 2 } } } .", + "type": "interline_equation", + "image_path": "abdb8282a3db51a7cc054defe7828ed591cca4398e3208552a154df771675f60.jpg" + } + ] + } + ], + "index": 14.5, + "virtual_lines": [ + { + "bbox": [ + 213, + 358, + 398, + 374.0 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 213, + 374.0, + 398, + 390.0 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 396, + 383, + 417 + ], + "lines": [ + { + "bbox": [ + 99, + 391, + 389, + 420 + ], + "spans": [ + { + "bbox": [ + 99, + 391, + 122, + 420 + ], + "score": 1.0, + "content": "For", + "type": "text" + }, + { + "bbox": [ + 123, + 396, + 245, + 417 + ], + "score": 0.93, + "content": "\\begin{array} { r } { x \\in \\left[ 0 , \\zeta _ { 2 } / \\left( \\frac { \\mu _ { 1 } } { \\mu _ { 1 } - 1 } \\cdot \\frac { \\mu _ { 2 } } { \\mu _ { 2 } - 1 } \\right) ^ { \\mu _ { 2 } } \\right] } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 391, + 263, + 420 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 264, + 401, + 308, + 413 + ], + "score": 0.91, + "content": "y \\in [ 1 , \\infty )", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 391, + 339, + 420 + ], + "score": 1.0, + "content": ", define", + "type": "text" + }, + { + "bbox": [ + 339, + 401, + 368, + 413 + ], + "score": 0.93, + "content": "g ( x , y )", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 391, + 389, + 420 + ], + "score": 1.0, + "content": "as:", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "interline_equation", + "bbox": [ + 191, + 417, + 420, + 449 + ], + "lines": [ + { + "bbox": [ + 191, + 417, + 420, + 449 + ], + "spans": [ + { + "bbox": [ + 191, + 417, + 420, + 449 + ], + "score": 0.91, + "content": "g ( x , y ) \\triangleq - \\lambda \\cdot y ^ { \\lambda - 1 } + ( \\lambda - 1 ) \\left( 1 - { \\frac { 1 } { \\mu _ { 2 } } } \\right) \\left( { \\frac { \\zeta _ { 2 } } { x } } \\right) ^ { \\frac { 1 } { \\mu _ { 2 } } } y ^ { \\lambda } .", + "type": "interline_equation", + "image_path": "2c7b796ca481daff12481695463e1d671fbf4c557174ac45a6fc23f691a8ad93.jpg" + } + ] + } + ], + "index": 17.5, + "virtual_lines": [ + { + "bbox": [ + 191, + 417, + 420, + 433.0 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 191, + 433.0, + 420, + 449.0 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 455, + 506, + 478 + ], + "lines": [ + { + "bbox": [ + 106, + 454, + 505, + 468 + ], + "spans": [ + { + "bbox": [ + 106, + 454, + 164, + 468 + ], + "score": 1.0, + "content": "We claim that", + "type": "text" + }, + { + "bbox": [ + 164, + 455, + 192, + 467 + ], + "score": 0.93, + "content": "g ( x , y )", + "type": "inline_equation" + }, + { + "bbox": [ + 193, + 454, + 256, + 468 + ], + "score": 1.0, + "content": "is increasing in", + "type": "text" + }, + { + "bbox": [ + 256, + 457, + 263, + 466 + ], + "score": 0.81, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 263, + 454, + 319, + 468 + ], + "score": 1.0, + "content": "and therefore", + "type": "text" + }, + { + "bbox": [ + 319, + 455, + 389, + 467 + ], + "score": 0.93, + "content": "g ( x , y ) \\geq g ( x , 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 454, + 505, + 468 + ], + "score": 1.0, + "content": ", and prove it by showing the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 465, + 506, + 480 + ], + "spans": [ + { + "bbox": [ + 105, + 465, + 187, + 480 + ], + "score": 1.0, + "content": "partial derivative of", + "type": "text" + }, + { + "bbox": [ + 187, + 466, + 216, + 478 + ], + "score": 0.93, + "content": "g ( x , y )", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 465, + 278, + 480 + ], + "score": 1.0, + "content": "with respect to", + "type": "text" + }, + { + "bbox": [ + 279, + 468, + 285, + 478 + ], + "score": 0.81, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 465, + 483, + 480 + ], + "score": 1.0, + "content": "is non-negative. Take a derivative with respect to", + "type": "text" + }, + { + "bbox": [ + 483, + 469, + 490, + 478 + ], + "score": 0.81, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 490, + 465, + 506, + 480 + ], + "score": 1.0, + "content": "as:", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5 + }, + { + "type": "interline_equation", + "bbox": [ + 169, + 479, + 440, + 545 + ], + "lines": [ + { + "bbox": [ + 169, + 479, + 440, + 545 + ], + "spans": [ + { + "bbox": [ + 169, + 479, + 440, + 545 + ], + "score": 0.94, + "content": "\\begin{array} { l } { { g _ { y } ^ { \\prime } ( x , y ) = - \\lambda ( \\lambda - 1 ) y ^ { \\lambda - 2 } + \\lambda ( \\lambda - 1 ) \\left( 1 - { \\frac { 1 } { \\mu _ { 2 } } } \\right) \\left( { \\frac { \\zeta _ { 2 } } { x } } \\right) ^ { \\frac { 1 } { \\mu _ { 2 } } } y ^ { \\lambda - 1 } } } \\\\ { { \\ = \\lambda ( \\lambda - 1 ) y ^ { \\lambda - 2 } \\left( - 1 + \\left( 1 - { \\frac { 1 } { \\mu _ { 2 } } } \\right) \\left( { \\frac { \\zeta _ { 2 } } { x } } \\right) ^ { \\frac { 1 } { \\mu _ { 2 } } } y \\right) . } } \\end{array}", + "type": "interline_equation", + "image_path": "38cdd5bb8155351f31061a3e2560a277a40179a17fad0039ec5ebe6035253653.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 169, + 479, + 440, + 501.0 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 169, + 501.0, + 440, + 523.0 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 169, + 523.0, + 440, + 545.0 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 550, + 433, + 563 + ], + "lines": [ + { + "bbox": [ + 106, + 550, + 434, + 564 + ], + "spans": [ + { + "bbox": [ + 106, + 550, + 154, + 564 + ], + "score": 1.0, + "content": "To see why", + "type": "text" + }, + { + "bbox": [ + 154, + 550, + 188, + 564 + ], + "score": 0.93, + "content": "g _ { y } ^ { \\prime } ( x , y )", + "type": "inline_equation" + }, + { + "bbox": [ + 188, + 550, + 359, + 564 + ], + "score": 1.0, + "content": "is non-negative in the respective ranges of", + "type": "text" + }, + { + "bbox": [ + 359, + 553, + 366, + 560 + ], + "score": 0.8, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 366, + 550, + 384, + 564 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 384, + 553, + 390, + 562 + ], + "score": 0.8, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 550, + 434, + 564 + ], + "score": 1.0, + "content": ", note that:", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "interline_equation", + "bbox": [ + 142, + 565, + 416, + 732 + ], + "lines": [ + { + "bbox": [ + 142, + 565, + 416, + 732 + ], + "spans": [ + { + "bbox": [ + 142, + 565, + 416, + 732 + ], + "score": 0.94, + "content": "\\begin{array} { r l } { x \\leq \\zeta _ { 2 } \\Big / \\Big ( \\frac { \\mu _ { 1 } } { \\mu _ { 1 } - 1 } \\cdot \\frac { \\mu _ { 2 } } { \\mu _ { 2 } - 1 } \\Big ) ^ { \\mu _ { 2 } } \\implies x \\leq \\zeta _ { 2 } \\Big / \\Big ( \\frac { \\mu _ { 2 } } { \\mu _ { 2 } - 1 } \\Big ) ^ { \\mu _ { 2 } } } \\\\ & { \\implies 1 \\leq \\frac { \\zeta _ { 2 } } { x } \\cdot \\Big ( \\frac { \\mu _ { 2 } - 1 } { \\mu _ { 2 } } \\Big ) ^ { \\mu _ { 2 } } } \\\\ & { \\implies 1 \\leq \\frac { \\mu _ { 2 } - 1 } { \\mu _ { 2 } } \\Big ( \\frac { \\zeta _ { 2 } } { x } \\Big ) ^ { \\frac { 1 } { \\mu _ { 2 } } } } \\\\ & { \\implies 1 \\leq \\frac { \\mu _ { 2 } - 1 } { \\mu _ { 2 } } \\Big ( \\frac { \\zeta _ { 2 } } { x } \\Big ) ^ { \\frac { 1 } { \\mu _ { 2 } } } g } \\\\ & { \\implies 0 \\leq - 1 + \\frac { \\mu _ { 2 } - 1 } { \\mu _ { 2 } } \\Big ( \\frac { \\zeta _ { 2 } } { x } \\Big ) ^ { \\frac { 1 } { \\mu _ { 2 } } } g } \\\\ & { \\implies 0 \\leq - 1 + \\frac { \\mu _ { 2 } - 1 } { \\mu _ { 2 } } \\Big ( \\frac { \\zeta _ { 2 } } { x } \\Big ) ^ { \\frac { 1 } { \\mu _ { 2 } } } g } \\\\ & { \\implies 0 \\leq g _ { g } ^ { \\prime } ( x , y ) . } \\end{array}", + "type": "interline_equation", + "image_path": "d4bebd870642ce5ae5e53e436cfcf9373b4aff326f24e4b9cf297f1a2e793b07.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 142, + 565, + 416, + 620.6666666666666 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 142, + 620.6666666666666, + 416, + 676.3333333333333 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 142, + 676.3333333333333, + 416, + 731.9999999999999 + ], + "spans": [], + "index": 27 + } + ] + } + ], + "page_idx": 18, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 26, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 765 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 765 + ], + "score": 1.0, + "content": "19", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 138 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "score": 1.0, + "content": "Although Equation (6) is very close to the corresponding statement in the theorem’s claim, one", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 92, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 92, + 377, + 106 + ], + "score": 1.0, + "content": "subtlety remains. The bound (6) applies to the exact probability", + "type": "text" + }, + { + "bbox": [ + 378, + 93, + 470, + 105 + ], + "score": 0.9, + "content": "q = \\mathbf { P r } \\left[ \\mathcal { M } ( D ) \\neq i ^ { * } \\right]", + "type": "inline_equation" + }, + { + "bbox": [ + 470, + 92, + 505, + 106 + ], + "score": 1.0, + "content": ". In the", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 392, + 117 + ], + "score": 1.0, + "content": "theorem statement, and in practice, we can only derive an upper bound", + "type": "text" + }, + { + "bbox": [ + 392, + 106, + 398, + 116 + ], + "score": 0.82, + "content": "\\tilde { q }", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 104, + 412, + 117 + ], + "score": 1.0, + "content": "on", + "type": "text" + }, + { + "bbox": [ + 412, + 105, + 482, + 117 + ], + "score": 0.88, + "content": "\\mathbf { P r } \\left[ \\mathcal { M } ( D ) \\neq i ^ { * } \\right]", + "type": "inline_equation" + }, + { + "bbox": [ + 482, + 104, + 505, + 117 + ], + "score": 1.0, + "content": ". The", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 104, + 113, + 506, + 129 + ], + "spans": [ + { + "bbox": [ + 104, + 113, + 506, + 129 + ], + "score": 1.0, + "content": "last step of the proof requires showing that the expression in Equation (6) is monotone in the range", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 126, + 240, + 138 + ], + "spans": [ + { + "bbox": [ + 106, + 126, + 155, + 138 + ], + "score": 1.0, + "content": "of values of", + "type": "text" + }, + { + "bbox": [ + 156, + 128, + 162, + 138 + ], + "score": 0.81, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 126, + 240, + 138 + ], + "score": 1.0, + "content": "that we care about.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2, + "bbox_fs": [ + 104, + 82, + 506, + 138 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 142, + 414, + 155 + ], + "lines": [ + { + "bbox": [ + 105, + 142, + 414, + 158 + ], + "spans": [ + { + "bbox": [ + 105, + 142, + 339, + 158 + ], + "score": 1.0, + "content": "Lemma 9 (Monotonicity of the bound). Let the functions", + "type": "text" + }, + { + "bbox": [ + 340, + 143, + 360, + 155 + ], + "score": 0.9, + "content": "f _ { 1 } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 142, + 379, + 158 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 379, + 143, + 400, + 155 + ], + "score": 0.83, + "content": "f _ { 2 } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 142, + 414, + 158 + ], + "score": 1.0, + "content": "be", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5, + "bbox_fs": [ + 105, + 142, + 414, + 158 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 108, + 155, + 456, + 217 + ], + "lines": [ + { + "bbox": [ + 151, + 155, + 456, + 217 + ], + "spans": [ + { + "bbox": [ + 151, + 155, + 456, + 217 + ], + "score": 0.72, + "content": "\\begin{array} { l } { { f _ { 1 } ( x ) \\triangleq \\displaystyle \\frac { ( 1 - x ) ^ { \\lambda } } { \\Big ( 1 - ( x ^ { \\mu _ { 2 } - 1 } \\zeta _ { 2 } ) ^ { \\frac { 1 } { \\mu _ { 2 } } } \\Big ) ^ { \\lambda - 1 } } \\qquad \\ a n d \\qquad f _ { 2 } ( x ) \\triangleq \\zeta _ { 1 } ^ { \\frac { \\lambda - 1 } { \\mu _ { 1 } - 1 } } \\cdot x ^ { 1 - \\frac { \\lambda - 1 } { \\mu _ { 1 } - 1 } } , } } \\\\ { { \\mathrm { } } } \\\\ { { \\mathrm { } } } \\\\ { { \\mathrm { } } { \\mathrm { } } { } \\\\ { \\mathrm { } { } \\mathrm { } + f _ { 2 } ( x ) \\ i s \\ i n c r e a s i n g \\ i n \\Big [ 0 , \\operatorname* { m i n } \\Big ( 1 , \\zeta _ { 2 } \\Big / \\Big ( \\frac { \\mu _ { 1 } } { \\mu _ { 1 } - 1 } \\cdot \\frac { \\mu _ { 2 } } { \\mu _ { 2 } - 1 } \\Big ) ^ { \\mu _ { 2 } } \\Big ) \\Big ] . } } \\end{array}", + "type": "interline_equation", + "image_path": "6c12f64042b39c6c2111babda04809a2511a69055071bc9aff6539d2e92de17c.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 108, + 155, + 456, + 175.66666666666666 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 108, + 175.66666666666666, + 456, + 196.33333333333331 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 108, + 196.33333333333331, + 456, + 216.99999999999997 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 226, + 298, + 238 + ], + "lines": [ + { + "bbox": [ + 105, + 226, + 299, + 239 + ], + "spans": [ + { + "bbox": [ + 105, + 226, + 233, + 239 + ], + "score": 1.0, + "content": "Proof. Taking the derivative of", + "type": "text" + }, + { + "bbox": [ + 234, + 226, + 257, + 239 + ], + "score": 0.92, + "content": "f _ { 1 } ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 226, + 299, + 239 + ], + "score": 1.0, + "content": ", we have:", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9, + "bbox_fs": [ + 105, + 226, + 299, + 239 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 118, + 240, + 493, + 344 + ], + "lines": [ + { + "bbox": [ + 118, + 240, + 493, + 344 + ], + "spans": [ + { + "bbox": [ + 118, + 240, + 493, + 344 + ], + "score": 0.95, + "content": "f _ { 1 } ^ { \\prime } ( x ) = \\frac { - \\lambda ( 1 - x ) ^ { \\lambda - 1 } ( 1 - ( x ^ { \\mu _ { 2 } - 1 } \\zeta _ { 2 } ) ^ { \\frac { 1 } { \\mu _ { 2 } } } ) ^ { \\lambda - 1 } } { ( 1 - ( x ^ { \\mu _ { 2 } - 1 } \\zeta _ { 2 } ) ^ { \\frac { 1 } { \\mu _ { 2 } } } ) ^ { 2 \\lambda - 2 } } \\\\ & { \\qquad + \\frac { ( 1 - x ) ^ { \\lambda } ( \\lambda - 1 ) ( 1 - ( x ^ { \\mu _ { 2 } - 1 } \\zeta _ { 2 } ) ^ { \\frac { 1 } { \\mu _ { 2 } } } ) ^ { \\lambda - 2 } \\zeta _ { 2 } ^ { \\frac { 1 } { \\mu _ { 2 } } } \\cdot \\frac { \\mu _ { 2 } - 1 } { \\mu _ { 2 } } \\cdot x ^ { - \\frac { 1 } { \\mu _ { 2 } } } } { ( 1 - ( x ^ { \\mu _ { 2 } - 1 } \\zeta _ { 2 } ) ^ { \\frac { 1 } { \\mu _ { 2 } } } ) ^ { 2 \\lambda - 2 } } } \\\\ & = \\frac { ( 1 - x ) ^ { \\lambda - 1 } } { ( 1 - ( x ^ { \\mu _ { 2 } - 1 } \\zeta _ { 2 } ) ^ { \\frac { 1 } { \\mu _ { 2 } } } ) ^ { \\lambda - 1 } } \\left( - \\lambda + ( \\lambda - 1 ) \\left( 1 - \\frac { 1 } { \\mu _ { 2 } } \\right) \\frac { 1 - x } { 1 - ( x ^ { \\mu _ { 2 } - 1 } \\zeta _ { 2 } ) ^ { \\frac { 1 } { \\mu _ { 2 } } } } \\left( \\frac { \\zeta _ { 2 } } { x } \\right) ^ { \\frac { 1 } { \\mu _ { 2 } } } \\right) .", + "type": "interline_equation", + "image_path": "35b15c7ab1a2c4747cdca5fd542001f35c54d98e924dca0579f61a5a6e374196.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 118, + 240, + 493, + 274.6666666666667 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 118, + 274.6666666666667, + 493, + 309.33333333333337 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 118, + 309.33333333333337, + 493, + 344.00000000000006 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 348, + 202, + 360 + ], + "lines": [ + { + "bbox": [ + 107, + 348, + 202, + 360 + ], + "spans": [ + { + "bbox": [ + 107, + 348, + 202, + 360 + ], + "score": 1.0, + "content": "We intend to show that:", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13, + "bbox_fs": [ + 107, + 348, + 202, + 360 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 213, + 358, + 398, + 390 + ], + "lines": [ + { + "bbox": [ + 213, + 358, + 398, + 390 + ], + "spans": [ + { + "bbox": [ + 213, + 358, + 398, + 390 + ], + "score": 0.92, + "content": "f _ { 1 } ^ { \\prime } ( x ) \\geq - \\lambda + ( \\lambda - 1 ) \\left( 1 - \\frac { 1 } { \\mu _ { 2 } } \\right) \\left( \\frac { \\zeta _ { 2 } } { x } \\right) ^ { \\frac { 1 } { \\mu _ { 2 } } } .", + "type": "interline_equation", + "image_path": "abdb8282a3db51a7cc054defe7828ed591cca4398e3208552a154df771675f60.jpg" + } + ] + } + ], + "index": 14.5, + "virtual_lines": [ + { + "bbox": [ + 213, + 358, + 398, + 374.0 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 213, + 374.0, + 398, + 390.0 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 396, + 383, + 417 + ], + "lines": [ + { + "bbox": [ + 99, + 391, + 389, + 420 + ], + "spans": [ + { + "bbox": [ + 99, + 391, + 122, + 420 + ], + "score": 1.0, + "content": "For", + "type": "text" + }, + { + "bbox": [ + 123, + 396, + 245, + 417 + ], + "score": 0.93, + "content": "\\begin{array} { r } { x \\in \\left[ 0 , \\zeta _ { 2 } / \\left( \\frac { \\mu _ { 1 } } { \\mu _ { 1 } - 1 } \\cdot \\frac { \\mu _ { 2 } } { \\mu _ { 2 } - 1 } \\right) ^ { \\mu _ { 2 } } \\right] } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 391, + 263, + 420 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 264, + 401, + 308, + 413 + ], + "score": 0.91, + "content": "y \\in [ 1 , \\infty )", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 391, + 339, + 420 + ], + "score": 1.0, + "content": ", define", + "type": "text" + }, + { + "bbox": [ + 339, + 401, + 368, + 413 + ], + "score": 0.93, + "content": "g ( x , y )", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 391, + 389, + 420 + ], + "score": 1.0, + "content": "as:", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16, + "bbox_fs": [ + 99, + 391, + 389, + 420 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 191, + 417, + 420, + 449 + ], + "lines": [ + { + "bbox": [ + 191, + 417, + 420, + 449 + ], + "spans": [ + { + "bbox": [ + 191, + 417, + 420, + 449 + ], + "score": 0.91, + "content": "g ( x , y ) \\triangleq - \\lambda \\cdot y ^ { \\lambda - 1 } + ( \\lambda - 1 ) \\left( 1 - { \\frac { 1 } { \\mu _ { 2 } } } \\right) \\left( { \\frac { \\zeta _ { 2 } } { x } } \\right) ^ { \\frac { 1 } { \\mu _ { 2 } } } y ^ { \\lambda } .", + "type": "interline_equation", + "image_path": "2c7b796ca481daff12481695463e1d671fbf4c557174ac45a6fc23f691a8ad93.jpg" + } + ] + } + ], + "index": 17.5, + "virtual_lines": [ + { + "bbox": [ + 191, + 417, + 420, + 433.0 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 191, + 433.0, + 420, + 449.0 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 455, + 506, + 478 + ], + "lines": [ + { + "bbox": [ + 106, + 454, + 505, + 468 + ], + "spans": [ + { + "bbox": [ + 106, + 454, + 164, + 468 + ], + "score": 1.0, + "content": "We claim that", + "type": "text" + }, + { + "bbox": [ + 164, + 455, + 192, + 467 + ], + "score": 0.93, + "content": "g ( x , y )", + "type": "inline_equation" + }, + { + "bbox": [ + 193, + 454, + 256, + 468 + ], + "score": 1.0, + "content": "is increasing in", + "type": "text" + }, + { + "bbox": [ + 256, + 457, + 263, + 466 + ], + "score": 0.81, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 263, + 454, + 319, + 468 + ], + "score": 1.0, + "content": "and therefore", + "type": "text" + }, + { + "bbox": [ + 319, + 455, + 389, + 467 + ], + "score": 0.93, + "content": "g ( x , y ) \\geq g ( x , 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 454, + 505, + 468 + ], + "score": 1.0, + "content": ", and prove it by showing the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 465, + 506, + 480 + ], + "spans": [ + { + "bbox": [ + 105, + 465, + 187, + 480 + ], + "score": 1.0, + "content": "partial derivative of", + "type": "text" + }, + { + "bbox": [ + 187, + 466, + 216, + 478 + ], + "score": 0.93, + "content": "g ( x , y )", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 465, + 278, + 480 + ], + "score": 1.0, + "content": "with respect to", + "type": "text" + }, + { + "bbox": [ + 279, + 468, + 285, + 478 + ], + "score": 0.81, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 465, + 483, + 480 + ], + "score": 1.0, + "content": "is non-negative. Take a derivative with respect to", + "type": "text" + }, + { + "bbox": [ + 483, + 469, + 490, + 478 + ], + "score": 0.81, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 490, + 465, + 506, + 480 + ], + "score": 1.0, + "content": "as:", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5, + "bbox_fs": [ + 105, + 454, + 506, + 480 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 169, + 479, + 440, + 545 + ], + "lines": [ + { + "bbox": [ + 169, + 479, + 440, + 545 + ], + "spans": [ + { + "bbox": [ + 169, + 479, + 440, + 545 + ], + "score": 0.94, + "content": "\\begin{array} { l } { { g _ { y } ^ { \\prime } ( x , y ) = - \\lambda ( \\lambda - 1 ) y ^ { \\lambda - 2 } + \\lambda ( \\lambda - 1 ) \\left( 1 - { \\frac { 1 } { \\mu _ { 2 } } } \\right) \\left( { \\frac { \\zeta _ { 2 } } { x } } \\right) ^ { \\frac { 1 } { \\mu _ { 2 } } } y ^ { \\lambda - 1 } } } \\\\ { { \\ = \\lambda ( \\lambda - 1 ) y ^ { \\lambda - 2 } \\left( - 1 + \\left( 1 - { \\frac { 1 } { \\mu _ { 2 } } } \\right) \\left( { \\frac { \\zeta _ { 2 } } { x } } \\right) ^ { \\frac { 1 } { \\mu _ { 2 } } } y \\right) . } } \\end{array}", + "type": "interline_equation", + "image_path": "38cdd5bb8155351f31061a3e2560a277a40179a17fad0039ec5ebe6035253653.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 169, + 479, + 440, + 501.0 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 169, + 501.0, + 440, + 523.0 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 169, + 523.0, + 440, + 545.0 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 550, + 433, + 563 + ], + "lines": [ + { + "bbox": [ + 106, + 550, + 434, + 564 + ], + "spans": [ + { + "bbox": [ + 106, + 550, + 154, + 564 + ], + "score": 1.0, + "content": "To see why", + "type": "text" + }, + { + "bbox": [ + 154, + 550, + 188, + 564 + ], + "score": 0.93, + "content": "g _ { y } ^ { \\prime } ( x , y )", + "type": "inline_equation" + }, + { + "bbox": [ + 188, + 550, + 359, + 564 + ], + "score": 1.0, + "content": "is non-negative in the respective ranges of", + "type": "text" + }, + { + "bbox": [ + 359, + 553, + 366, + 560 + ], + "score": 0.8, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 366, + 550, + 384, + 564 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 384, + 553, + 390, + 562 + ], + "score": 0.8, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 550, + 434, + 564 + ], + "score": 1.0, + "content": ", note that:", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24, + "bbox_fs": [ + 106, + 550, + 434, + 564 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 142, + 565, + 416, + 732 + ], + "lines": [ + { + "bbox": [ + 142, + 565, + 416, + 732 + ], + "spans": [ + { + "bbox": [ + 142, + 565, + 416, + 732 + ], + "score": 0.94, + "content": "\\begin{array} { r l } { x \\leq \\zeta _ { 2 } \\Big / \\Big ( \\frac { \\mu _ { 1 } } { \\mu _ { 1 } - 1 } \\cdot \\frac { \\mu _ { 2 } } { \\mu _ { 2 } - 1 } \\Big ) ^ { \\mu _ { 2 } } \\implies x \\leq \\zeta _ { 2 } \\Big / \\Big ( \\frac { \\mu _ { 2 } } { \\mu _ { 2 } - 1 } \\Big ) ^ { \\mu _ { 2 } } } \\\\ & { \\implies 1 \\leq \\frac { \\zeta _ { 2 } } { x } \\cdot \\Big ( \\frac { \\mu _ { 2 } - 1 } { \\mu _ { 2 } } \\Big ) ^ { \\mu _ { 2 } } } \\\\ & { \\implies 1 \\leq \\frac { \\mu _ { 2 } - 1 } { \\mu _ { 2 } } \\Big ( \\frac { \\zeta _ { 2 } } { x } \\Big ) ^ { \\frac { 1 } { \\mu _ { 2 } } } } \\\\ & { \\implies 1 \\leq \\frac { \\mu _ { 2 } - 1 } { \\mu _ { 2 } } \\Big ( \\frac { \\zeta _ { 2 } } { x } \\Big ) ^ { \\frac { 1 } { \\mu _ { 2 } } } g } \\\\ & { \\implies 0 \\leq - 1 + \\frac { \\mu _ { 2 } - 1 } { \\mu _ { 2 } } \\Big ( \\frac { \\zeta _ { 2 } } { x } \\Big ) ^ { \\frac { 1 } { \\mu _ { 2 } } } g } \\\\ & { \\implies 0 \\leq - 1 + \\frac { \\mu _ { 2 } - 1 } { \\mu _ { 2 } } \\Big ( \\frac { \\zeta _ { 2 } } { x } \\Big ) ^ { \\frac { 1 } { \\mu _ { 2 } } } g } \\\\ & { \\implies 0 \\leq g _ { g } ^ { \\prime } ( x , y ) . } \\end{array}", + "type": "interline_equation", + "image_path": "d4bebd870642ce5ae5e53e436cfcf9373b4aff326f24e4b9cf297f1a2e793b07.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 142, + 565, + 416, + 620.6666666666666 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 142, + 620.6666666666666, + 416, + 676.3333333333333 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 142, + 676.3333333333333, + 416, + 731.9999999999999 + ], + "spans": [], + "index": 27 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 81, + 423, + 97 + ], + "lines": [ + { + "bbox": [ + 101, + 73, + 427, + 101 + ], + "spans": [ + { + "bbox": [ + 101, + 73, + 145, + 101 + ], + "score": 1.0, + "content": "Consider", + "type": "text" + }, + { + "bbox": [ + 146, + 81, + 210, + 98 + ], + "score": 0.93, + "content": "\\frac { 1 - x } { 1 - ( x ^ { \\mu _ { 2 } - 1 } \\zeta _ { 2 } ) ^ { 1 / \\mu _ { 2 } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 73, + 239, + 101 + ], + "score": 1.0, + "content": ". Since", + "type": "text" + }, + { + "bbox": [ + 239, + 83, + 267, + 94 + ], + "score": 0.91, + "content": "\\zeta _ { 2 } \\geq 1", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 73, + 285, + 101 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 285, + 83, + 311, + 93 + ], + "score": 0.9, + "content": "x \\leq 1", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 73, + 349, + 101 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + }, + { + "bbox": [ + 349, + 83, + 378, + 94 + ], + "score": 0.92, + "content": "x \\leq \\zeta _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 379, + 73, + 427, + 101 + ], + "score": 1.0, + "content": "and hence", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "interline_equation", + "bbox": [ + 216, + 102, + 394, + 131 + ], + "lines": [ + { + "bbox": [ + 216, + 102, + 394, + 131 + ], + "spans": [ + { + "bbox": [ + 216, + 102, + 394, + 131 + ], + "score": 0.94, + "content": "{ \\frac { 1 - x } { 1 - ( x ^ { \\mu _ { 2 } - 1 } \\zeta _ { 2 } ) ^ { \\frac { 1 } { \\mu _ { 2 } } } } } \\geq { \\frac { 1 - x } { 1 - ( x ^ { \\mu _ { 2 } - 1 } x ) ^ { \\frac { 1 } { \\mu _ { 2 } } } } } = 1 .", + "type": "interline_equation", + "image_path": "e724b1d3dd791934b55c0a088cf927ac10524a6c57a269b37c82ec3763a694c2.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 216, + 102, + 394, + 131 + ], + "spans": [], + "index": 1 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 141, + 505, + 167 + ], + "lines": [ + { + "bbox": [ + 102, + 137, + 509, + 164 + ], + "spans": [ + { + "bbox": [ + 102, + 137, + 192, + 164 + ], + "score": 1.0, + "content": "Therefore we can set", + "type": "text" + }, + { + "bbox": [ + 193, + 142, + 276, + 158 + ], + "score": 0.95, + "content": "\\begin{array} { r } { y = \\frac { 1 - x } { 1 - ( x ^ { \\mu _ { 2 } - 1 } \\zeta _ { 2 } ) ^ { 1 / \\mu _ { 2 } } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 137, + 369, + 164 + ], + "score": 1.0, + "content": "and apply the fact that", + "type": "text" + }, + { + "bbox": [ + 370, + 143, + 440, + 155 + ], + "score": 0.93, + "content": "g ( x , y ) \\geq g ( x , 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 137, + 468, + 164 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 469, + 144, + 493, + 155 + ], + "score": 0.91, + "content": "y \\geq 1", + "type": "inline_equation" + }, + { + "bbox": [ + 494, + 137, + 509, + 164 + ], + "score": 1.0, + "content": "to", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 104, + 155, + 123, + 170 + ], + "spans": [ + { + "bbox": [ + 104, + 155, + 123, + 170 + ], + "score": 1.0, + "content": "get", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5 + }, + { + "type": "interline_equation", + "bbox": [ + 213, + 171, + 396, + 203 + ], + "lines": [ + { + "bbox": [ + 213, + 171, + 396, + 203 + ], + "spans": [ + { + "bbox": [ + 213, + 171, + 396, + 203 + ], + "score": 0.93, + "content": "f _ { 1 } ^ { \\prime } ( x ) \\geq - \\lambda + ( \\lambda - 1 ) \\left( 1 - \\frac { 1 } { \\mu _ { 2 } } \\right) \\left( \\frac { \\zeta _ { 2 } } { x } \\right) ^ { \\frac { 1 } { \\mu _ { 2 } } } ,", + "type": "interline_equation", + "image_path": "1beabd9acdabf6088d3fbe178aa8aebe94c6683d554c410e4e8ace6a00d13fbf.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 213, + 171, + 396, + 203 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 206, + 181, + 218 + ], + "lines": [ + { + "bbox": [ + 105, + 205, + 182, + 221 + ], + "spans": [ + { + "bbox": [ + 105, + 205, + 182, + 221 + ], + "score": 1.0, + "content": "as required by (7).", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 107, + 222, + 268, + 235 + ], + "lines": [ + { + "bbox": [ + 106, + 221, + 269, + 236 + ], + "spans": [ + { + "bbox": [ + 106, + 221, + 203, + 236 + ], + "score": 1.0, + "content": "Taking the derivative of", + "type": "text" + }, + { + "bbox": [ + 204, + 223, + 227, + 235 + ], + "score": 0.92, + "content": "f _ { 2 } ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 221, + 269, + 236 + ], + "score": 1.0, + "content": ", we have:", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "interline_equation", + "bbox": [ + 127, + 239, + 483, + 272 + ], + "lines": [ + { + "bbox": [ + 127, + 239, + 483, + 272 + ], + "spans": [ + { + "bbox": [ + 127, + 239, + 483, + 272 + ], + "score": 0.92, + "content": "f _ { 2 } ^ { \\prime } ( x ) = \\zeta _ { 1 } ^ { \\frac { \\lambda - 1 } { \\mu _ { 1 } - 1 } } \\cdot \\left( 1 - { \\frac { \\lambda - 1 } { \\mu _ { 1 } - 1 } } \\right) x ^ { - { \\frac { \\lambda - 1 } { \\mu _ { 1 } - 1 } } } = \\left( { \\frac { \\zeta _ { 1 } } { x } } \\right) ^ { { \\frac { \\lambda - 1 } { \\mu _ { 1 } - 1 } } } \\left( 1 - { \\frac { \\lambda - 1 } { \\mu _ { 1 } - 1 } } \\right) \\geq 1 - { \\frac { \\lambda - 1 } { \\mu _ { 1 } - 1 } } .", + "type": "interline_equation", + "image_path": "f94fde8eb40eb496e74481f048a47191098e0e671b1757a079026f2cc4b295c0.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 127, + 239, + 483, + 250.0 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 127, + 250.0, + 483, + 261.0 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 127, + 261.0, + 483, + 272.0 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 275, + 285, + 287 + ], + "lines": [ + { + "bbox": [ + 106, + 273, + 286, + 289 + ], + "spans": [ + { + "bbox": [ + 106, + 273, + 286, + 289 + ], + "score": 1.0, + "content": "Combining the two terms together, we have:", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "interline_equation", + "bbox": [ + 185, + 291, + 424, + 357 + ], + "lines": [ + { + "bbox": [ + 185, + 291, + 424, + 357 + ], + "spans": [ + { + "bbox": [ + 185, + 291, + 424, + 357 + ], + "score": 0.94, + "content": "\\begin{array} { c } { { f ^ { \\prime } ( x ) \\geq - \\lambda + ( \\lambda - 1 ) \\left( 1 - { \\frac { 1 } { \\mu _ { 2 } } } \\right) \\left( { \\frac { \\zeta _ { 2 } } { x } } \\right) ^ { \\frac { 1 } { \\mu _ { 2 } } } + 1 - { \\frac { \\lambda - 1 } { \\mu _ { 1 } - 1 } } } } \\\\ { { = ( \\lambda - 1 ) \\left( - { \\frac { \\mu _ { 1 } } { \\mu _ { 1 } - 1 } } + { \\frac { \\mu _ { 2 } - 1 } { \\mu _ { 2 } } } \\left( { \\frac { \\zeta _ { 2 } } { x } } \\right) ^ { \\frac { 1 } { \\mu _ { 2 } } } \\right) . } } \\end{array}", + "type": "interline_equation", + "image_path": "8887c72367b365abe5de736be80daaf9b57ebe1a496c6fb4f009565260ebbfa2.jpg" + } + ] + } + ], + "index": 12.5, + "virtual_lines": [ + { + "bbox": [ + 185, + 291, + 424, + 307.5 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 185, + 307.5, + 424, + 324.0 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 185, + 324.0, + 424, + 340.5 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 185, + 340.5, + 424, + 357.0 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 361, + 262, + 373 + ], + "lines": [ + { + "bbox": [ + 105, + 360, + 261, + 374 + ], + "spans": [ + { + "bbox": [ + 105, + 360, + 123, + 374 + ], + "score": 1.0, + "content": "For", + "type": "text" + }, + { + "bbox": [ + 123, + 361, + 146, + 373 + ], + "score": 0.92, + "content": "f ^ { \\prime } ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 360, + 261, + 374 + ], + "score": 1.0, + "content": "to be non-negative we need:", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "interline_equation", + "bbox": [ + 228, + 378, + 379, + 438 + ], + "lines": [ + { + "bbox": [ + 228, + 378, + 379, + 438 + ], + "spans": [ + { + "bbox": [ + 228, + 378, + 379, + 438 + ], + "score": 0.93, + "content": "\\begin{array} { r l } & { - \\frac { \\mu _ { 1 } } { \\mu _ { 1 } - 1 } + \\frac { \\mu _ { 2 } - 1 } { \\mu _ { 2 } } \\left( \\frac { \\zeta _ { 2 } } { x } \\right) ^ { \\frac { 1 } { \\mu _ { 2 } } } \\geq 0 } \\\\ & { \\iff \\left( \\frac { \\mu _ { 1 } } { \\mu _ { 1 } - 1 } \\cdot \\frac { \\mu _ { 2 } } { \\mu _ { 2 } - 1 } \\right) ^ { \\mu _ { 2 } } \\leq \\frac { \\zeta _ { 2 } } { x } . } \\end{array}", + "type": "interline_equation", + "image_path": "83b10b31b9cc7c088535979d7ffe5dbd44307a5a0c3b19ed6c5a8e091752b2b4.jpg" + } + ] + } + ], + "index": 16.5, + "virtual_lines": [ + { + "bbox": [ + 228, + 378, + 379, + 408.0 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 228, + 408.0, + 379, + 438.0 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 442, + 506, + 493 + ], + "lines": [ + { + "bbox": [ + 99, + 438, + 505, + 465 + ], + "spans": [ + { + "bbox": [ + 99, + 438, + 123, + 465 + ], + "score": 1.0, + "content": "So", + "type": "text" + }, + { + "bbox": [ + 123, + 446, + 144, + 459 + ], + "score": 0.91, + "content": "f ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 438, + 225, + 465 + ], + "score": 1.0, + "content": "is increasing for", + "type": "text" + }, + { + "bbox": [ + 225, + 442, + 361, + 463 + ], + "score": 0.93, + "content": "\\begin{array} { r c l } { x } & { \\in } & { \\left[ 0 , \\zeta _ { 2 } / \\left( { \\frac { \\mu _ { 1 } } { \\mu _ { 1 } - 1 } } \\cdot { \\frac { \\mu _ { 2 } } { \\mu _ { 2 } - 1 } } \\right) ^ { \\mu _ { 2 } } \\right] } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 438, + 449, + 465 + ], + "score": 1.0, + "content": ". This means for", + "type": "text" + }, + { + "bbox": [ + 450, + 446, + 505, + 459 + ], + "score": 0.83, + "content": "q \\leq \\tilde { q } \\leq", + "type": "inline_equation" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 456, + 512, + 488 + ], + "spans": [ + { + "bbox": [ + 106, + 461, + 192, + 482 + ], + "score": 0.91, + "content": "\\zeta _ { 2 } / { \\left( \\frac { \\mu _ { 1 } } { \\mu _ { 1 } - 1 } \\cdot \\frac { \\mu _ { 2 } } { \\mu _ { 2 } - 1 } \\right) } ^ { \\mu _ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 456, + 234, + 488 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + }, + { + "bbox": [ + 234, + 465, + 288, + 478 + ], + "score": 0.92, + "content": "f ( q ) \\leq f ( \\tilde { q } )", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 456, + 512, + 488 + ], + "score": 1.0, + "content": ". This completes the proof of the lemma and that of", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 479, + 506, + 494 + ], + "spans": [ + { + "bbox": [ + 105, + 479, + 160, + 494 + ], + "score": 1.0, + "content": "the theorem.", + "type": "text" + }, + { + "bbox": [ + 496, + 480, + 506, + 493 + ], + "score": 0.807, + "content": "■", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 106, + 528, + 506, + 562 + ], + "lines": [ + { + "bbox": [ + 105, + 527, + 506, + 543 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 438, + 543 + ], + "score": 1.0, + "content": "Theorem 6 yields data-dependent Rényi differential privacy bounds for any value of", + "type": "text" + }, + { + "bbox": [ + 438, + 531, + 450, + 540 + ], + "score": 0.86, + "content": "\\mu _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 527, + 466, + 543 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 467, + 531, + 479, + 541 + ], + "score": 0.85, + "content": "\\mu _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 479, + 527, + 506, + 543 + ], + "score": 1.0, + "content": "larger", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 538, + 504, + 555 + ], + "spans": [ + { + "bbox": [ + 105, + 538, + 126, + 555 + ], + "score": 1.0, + "content": "than", + "type": "text" + }, + { + "bbox": [ + 127, + 541, + 133, + 550 + ], + "score": 0.78, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 134, + 538, + 492, + 555 + ], + "score": 1.0, + "content": ". The following proposition simplifies this search by calculating optimal higher moments", + "type": "text" + }, + { + "bbox": [ + 492, + 542, + 504, + 552 + ], + "score": 0.83, + "content": "\\mu _ { 1 }", + "type": "inline_equation" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 550, + 320, + 563 + ], + "spans": [ + { + "bbox": [ + 106, + 550, + 123, + 562 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 123, + 552, + 135, + 563 + ], + "score": 0.85, + "content": "\\mu _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 550, + 304, + 562 + ], + "score": 1.0, + "content": "for the GNMax mechanism with variance", + "type": "text" + }, + { + "bbox": [ + 304, + 550, + 316, + 561 + ], + "score": 0.87, + "content": "\\sigma ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 316, + 550, + 320, + 562 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 104, + 565, + 505, + 588 + ], + "lines": [ + { + "bbox": [ + 105, + 564, + 506, + 579 + ], + "spans": [ + { + "bbox": [ + 105, + 564, + 506, + 579 + ], + "score": 1.0, + "content": "Proposition 10. When applying Theorem 6 and Proposition 8 for GNMax with Gaussian of variance", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 574, + 290, + 590 + ], + "spans": [ + { + "bbox": [ + 106, + 576, + 118, + 587 + ], + "score": 0.83, + "content": "\\sigma ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 118, + 574, + 290, + 590 + ], + "score": 1.0, + "content": ", the right-hand side of (2) is minimized at", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24.5 + }, + { + "type": "interline_equation", + "bbox": [ + 223, + 592, + 387, + 609 + ], + "lines": [ + { + "bbox": [ + 223, + 592, + 387, + 609 + ], + "spans": [ + { + "bbox": [ + 223, + 592, + 387, + 609 + ], + "score": 0.91, + "content": "\\mu _ { 2 } = \\sigma \\cdot \\sqrt { \\log ( 1 / \\tilde { q } ) } , a n d \\mu _ { 1 } = \\mu _ { 2 } + 1 .", + "type": "interline_equation", + "image_path": "8cc3b103018d2dbba69a8b80529ea9894e403eff24d56bf3fa2928cd95b06942.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 223, + 592, + 387, + 609 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 619, + 504, + 645 + ], + "lines": [ + { + "bbox": [ + 106, + 618, + 505, + 632 + ], + "spans": [ + { + "bbox": [ + 106, + 618, + 505, + 632 + ], + "score": 1.0, + "content": "Proof. We can minimize both terms in (2) independently. To minimize the first term in (6), we", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 104, + 627, + 312, + 648 + ], + "spans": [ + { + "bbox": [ + 104, + 627, + 147, + 648 + ], + "score": 1.0, + "content": "minimize", + "type": "text" + }, + { + "bbox": [ + 147, + 630, + 200, + 645 + ], + "score": 0.94, + "content": "\\left( \\tilde { q } e ^ { \\varepsilon _ { 2 } } \\right) ^ { 1 - 1 / \\mu _ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 627, + 312, + 648 + ], + "score": 1.0, + "content": "by considering logarithms:", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5 + }, + { + "type": "interline_equation", + "bbox": [ + 194, + 649, + 414, + 734 + ], + "lines": [ + { + "bbox": [ + 194, + 649, + 414, + 734 + ], + "spans": [ + { + "bbox": [ + 194, + 649, + 414, + 734 + ], + "score": 0.94, + "content": "\\begin{array} { r l } { \\log \\left\\{ \\big ( \\tilde { q } e ^ { \\varepsilon _ { 2 } } \\big ) ^ { 1 - 1 / \\mu _ { 2 } } \\right\\} = \\log \\Bigg \\{ \\tilde { q } ^ { 1 - \\frac { 1 } { \\mu _ { 2 } } } \\exp \\left( \\frac { \\mu _ { 2 } - 1 } { \\sigma ^ { 2 } } \\right) \\Bigg \\} } & { } \\\\ { \\quad \\quad \\quad \\quad \\quad = \\left( 1 - \\frac { 1 } { \\mu _ { 2 } } \\right) \\cdot \\log \\tilde { q } + \\frac { \\mu _ { 2 } - 1 } { \\sigma ^ { 2 } } } & { } \\\\ { \\quad \\quad \\quad \\quad = \\frac { 1 } { \\mu _ { 2 } } \\log \\frac { 1 } { \\tilde { q } } + \\frac { \\mu _ { 2 } } { \\sigma ^ { 2 } } - \\frac { 1 } { \\sigma ^ { 2 } } - \\log \\frac { 1 } { \\tilde { q } } , } \\end{array}", + "type": "interline_equation", + "image_path": "277fc897ffc6e63e8c029f3da9f8dd8d58bd2c63eabbd99b403373cc0b7803eb.jpg" + } + ] + } + ], + "index": 31, + "virtual_lines": [ + { + "bbox": [ + 194, + 649, + 414, + 666.0 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 194, + 666.0, + 414, + 683.0 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 194, + 683.0, + 414, + 700.0 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 194, + 700.0, + 414, + 717.0 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 194, + 717.0, + 414, + 734.0 + ], + "spans": [], + "index": 33 + } + ] + } + ], + "page_idx": 19, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 26, + 294, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 312, + 761 + ], + "lines": [ + { + "bbox": [ + 298, + 750, + 313, + 763 + ], + "spans": [ + { + "bbox": [ + 298, + 750, + 313, + 763 + ], + "score": 1.0, + "content": "20", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 496, + 504, + 505, + 516 + ], + "lines": [ + { + "bbox": [ + 497, + 506, + 505, + 517 + ], + "spans": [ + { + "bbox": [ + 497, + 506, + 505, + 517 + ], + "score": 0.585, + "content": "■", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 81, + 423, + 97 + ], + "lines": [ + { + "bbox": [ + 101, + 73, + 427, + 101 + ], + "spans": [ + { + "bbox": [ + 101, + 73, + 145, + 101 + ], + "score": 1.0, + "content": "Consider", + "type": "text" + }, + { + "bbox": [ + 146, + 81, + 210, + 98 + ], + "score": 0.93, + "content": "\\frac { 1 - x } { 1 - ( x ^ { \\mu _ { 2 } - 1 } \\zeta _ { 2 } ) ^ { 1 / \\mu _ { 2 } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 73, + 239, + 101 + ], + "score": 1.0, + "content": ". Since", + "type": "text" + }, + { + "bbox": [ + 239, + 83, + 267, + 94 + ], + "score": 0.91, + "content": "\\zeta _ { 2 } \\geq 1", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 73, + 285, + 101 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 285, + 83, + 311, + 93 + ], + "score": 0.9, + "content": "x \\leq 1", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 73, + 349, + 101 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + }, + { + "bbox": [ + 349, + 83, + 378, + 94 + ], + "score": 0.92, + "content": "x \\leq \\zeta _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 379, + 73, + 427, + 101 + ], + "score": 1.0, + "content": "and hence", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0, + "bbox_fs": [ + 101, + 73, + 427, + 101 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 216, + 102, + 394, + 131 + ], + "lines": [ + { + "bbox": [ + 216, + 102, + 394, + 131 + ], + "spans": [ + { + "bbox": [ + 216, + 102, + 394, + 131 + ], + "score": 0.94, + "content": "{ \\frac { 1 - x } { 1 - ( x ^ { \\mu _ { 2 } - 1 } \\zeta _ { 2 } ) ^ { \\frac { 1 } { \\mu _ { 2 } } } } } \\geq { \\frac { 1 - x } { 1 - ( x ^ { \\mu _ { 2 } - 1 } x ) ^ { \\frac { 1 } { \\mu _ { 2 } } } } } = 1 .", + "type": "interline_equation", + "image_path": "e724b1d3dd791934b55c0a088cf927ac10524a6c57a269b37c82ec3763a694c2.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 216, + 102, + 394, + 131 + ], + "spans": [], + "index": 1 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 141, + 505, + 167 + ], + "lines": [ + { + "bbox": [ + 102, + 137, + 509, + 164 + ], + "spans": [ + { + "bbox": [ + 102, + 137, + 192, + 164 + ], + "score": 1.0, + "content": "Therefore we can set", + "type": "text" + }, + { + "bbox": [ + 193, + 142, + 276, + 158 + ], + "score": 0.95, + "content": "\\begin{array} { r } { y = \\frac { 1 - x } { 1 - ( x ^ { \\mu _ { 2 } - 1 } \\zeta _ { 2 } ) ^ { 1 / \\mu _ { 2 } } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 137, + 369, + 164 + ], + "score": 1.0, + "content": "and apply the fact that", + "type": "text" + }, + { + "bbox": [ + 370, + 143, + 440, + 155 + ], + "score": 0.93, + "content": "g ( x , y ) \\geq g ( x , 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 137, + 468, + 164 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 469, + 144, + 493, + 155 + ], + "score": 0.91, + "content": "y \\geq 1", + "type": "inline_equation" + }, + { + "bbox": [ + 494, + 137, + 509, + 164 + ], + "score": 1.0, + "content": "to", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 104, + 155, + 123, + 170 + ], + "spans": [ + { + "bbox": [ + 104, + 155, + 123, + 170 + ], + "score": 1.0, + "content": "get", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5, + "bbox_fs": [ + 102, + 137, + 509, + 170 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 213, + 171, + 396, + 203 + ], + "lines": [ + { + "bbox": [ + 213, + 171, + 396, + 203 + ], + "spans": [ + { + "bbox": [ + 213, + 171, + 396, + 203 + ], + "score": 0.93, + "content": "f _ { 1 } ^ { \\prime } ( x ) \\geq - \\lambda + ( \\lambda - 1 ) \\left( 1 - \\frac { 1 } { \\mu _ { 2 } } \\right) \\left( \\frac { \\zeta _ { 2 } } { x } \\right) ^ { \\frac { 1 } { \\mu _ { 2 } } } ,", + "type": "interline_equation", + "image_path": "1beabd9acdabf6088d3fbe178aa8aebe94c6683d554c410e4e8ace6a00d13fbf.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 213, + 171, + 396, + 203 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 206, + 181, + 218 + ], + "lines": [ + { + "bbox": [ + 105, + 205, + 182, + 221 + ], + "spans": [ + { + "bbox": [ + 105, + 205, + 182, + 221 + ], + "score": 1.0, + "content": "as required by (7).", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5, + "bbox_fs": [ + 105, + 205, + 182, + 221 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 222, + 268, + 235 + ], + "lines": [ + { + "bbox": [ + 106, + 221, + 269, + 236 + ], + "spans": [ + { + "bbox": [ + 106, + 221, + 203, + 236 + ], + "score": 1.0, + "content": "Taking the derivative of", + "type": "text" + }, + { + "bbox": [ + 204, + 223, + 227, + 235 + ], + "score": 0.92, + "content": "f _ { 2 } ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 221, + 269, + 236 + ], + "score": 1.0, + "content": ", we have:", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6, + "bbox_fs": [ + 106, + 221, + 269, + 236 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 127, + 239, + 483, + 272 + ], + "lines": [ + { + "bbox": [ + 127, + 239, + 483, + 272 + ], + "spans": [ + { + "bbox": [ + 127, + 239, + 483, + 272 + ], + "score": 0.92, + "content": "f _ { 2 } ^ { \\prime } ( x ) = \\zeta _ { 1 } ^ { \\frac { \\lambda - 1 } { \\mu _ { 1 } - 1 } } \\cdot \\left( 1 - { \\frac { \\lambda - 1 } { \\mu _ { 1 } - 1 } } \\right) x ^ { - { \\frac { \\lambda - 1 } { \\mu _ { 1 } - 1 } } } = \\left( { \\frac { \\zeta _ { 1 } } { x } } \\right) ^ { { \\frac { \\lambda - 1 } { \\mu _ { 1 } - 1 } } } \\left( 1 - { \\frac { \\lambda - 1 } { \\mu _ { 1 } - 1 } } \\right) \\geq 1 - { \\frac { \\lambda - 1 } { \\mu _ { 1 } - 1 } } .", + "type": "interline_equation", + "image_path": "f94fde8eb40eb496e74481f048a47191098e0e671b1757a079026f2cc4b295c0.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 127, + 239, + 483, + 250.0 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 127, + 250.0, + 483, + 261.0 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 127, + 261.0, + 483, + 272.0 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 275, + 285, + 287 + ], + "lines": [ + { + "bbox": [ + 106, + 273, + 286, + 289 + ], + "spans": [ + { + "bbox": [ + 106, + 273, + 286, + 289 + ], + "score": 1.0, + "content": "Combining the two terms together, we have:", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10, + "bbox_fs": [ + 106, + 273, + 286, + 289 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 185, + 291, + 424, + 357 + ], + "lines": [ + { + "bbox": [ + 185, + 291, + 424, + 357 + ], + "spans": [ + { + "bbox": [ + 185, + 291, + 424, + 357 + ], + "score": 0.94, + "content": "\\begin{array} { c } { { f ^ { \\prime } ( x ) \\geq - \\lambda + ( \\lambda - 1 ) \\left( 1 - { \\frac { 1 } { \\mu _ { 2 } } } \\right) \\left( { \\frac { \\zeta _ { 2 } } { x } } \\right) ^ { \\frac { 1 } { \\mu _ { 2 } } } + 1 - { \\frac { \\lambda - 1 } { \\mu _ { 1 } - 1 } } } } \\\\ { { = ( \\lambda - 1 ) \\left( - { \\frac { \\mu _ { 1 } } { \\mu _ { 1 } - 1 } } + { \\frac { \\mu _ { 2 } - 1 } { \\mu _ { 2 } } } \\left( { \\frac { \\zeta _ { 2 } } { x } } \\right) ^ { \\frac { 1 } { \\mu _ { 2 } } } \\right) . } } \\end{array}", + "type": "interline_equation", + "image_path": "8887c72367b365abe5de736be80daaf9b57ebe1a496c6fb4f009565260ebbfa2.jpg" + } + ] + } + ], + "index": 12.5, + "virtual_lines": [ + { + "bbox": [ + 185, + 291, + 424, + 307.5 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 185, + 307.5, + 424, + 324.0 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 185, + 324.0, + 424, + 340.5 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 185, + 340.5, + 424, + 357.0 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 361, + 262, + 373 + ], + "lines": [ + { + "bbox": [ + 105, + 360, + 261, + 374 + ], + "spans": [ + { + "bbox": [ + 105, + 360, + 123, + 374 + ], + "score": 1.0, + "content": "For", + "type": "text" + }, + { + "bbox": [ + 123, + 361, + 146, + 373 + ], + "score": 0.92, + "content": "f ^ { \\prime } ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 360, + 261, + 374 + ], + "score": 1.0, + "content": "to be non-negative we need:", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15, + "bbox_fs": [ + 105, + 360, + 261, + 374 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 228, + 378, + 379, + 438 + ], + "lines": [ + { + "bbox": [ + 228, + 378, + 379, + 438 + ], + "spans": [ + { + "bbox": [ + 228, + 378, + 379, + 438 + ], + "score": 0.93, + "content": "\\begin{array} { r l } & { - \\frac { \\mu _ { 1 } } { \\mu _ { 1 } - 1 } + \\frac { \\mu _ { 2 } - 1 } { \\mu _ { 2 } } \\left( \\frac { \\zeta _ { 2 } } { x } \\right) ^ { \\frac { 1 } { \\mu _ { 2 } } } \\geq 0 } \\\\ & { \\iff \\left( \\frac { \\mu _ { 1 } } { \\mu _ { 1 } - 1 } \\cdot \\frac { \\mu _ { 2 } } { \\mu _ { 2 } - 1 } \\right) ^ { \\mu _ { 2 } } \\leq \\frac { \\zeta _ { 2 } } { x } . } \\end{array}", + "type": "interline_equation", + "image_path": "83b10b31b9cc7c088535979d7ffe5dbd44307a5a0c3b19ed6c5a8e091752b2b4.jpg" + } + ] + } + ], + "index": 16.5, + "virtual_lines": [ + { + "bbox": [ + 228, + 378, + 379, + 408.0 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 228, + 408.0, + 379, + 438.0 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 442, + 506, + 493 + ], + "lines": [ + { + "bbox": [ + 99, + 438, + 505, + 465 + ], + "spans": [ + { + "bbox": [ + 99, + 438, + 123, + 465 + ], + "score": 1.0, + "content": "So", + "type": "text" + }, + { + "bbox": [ + 123, + 446, + 144, + 459 + ], + "score": 0.91, + "content": "f ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 438, + 225, + 465 + ], + "score": 1.0, + "content": "is increasing for", + "type": "text" + }, + { + "bbox": [ + 225, + 442, + 361, + 463 + ], + "score": 0.93, + "content": "\\begin{array} { r c l } { x } & { \\in } & { \\left[ 0 , \\zeta _ { 2 } / \\left( { \\frac { \\mu _ { 1 } } { \\mu _ { 1 } - 1 } } \\cdot { \\frac { \\mu _ { 2 } } { \\mu _ { 2 } - 1 } } \\right) ^ { \\mu _ { 2 } } \\right] } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 438, + 449, + 465 + ], + "score": 1.0, + "content": ". This means for", + "type": "text" + }, + { + "bbox": [ + 450, + 446, + 505, + 459 + ], + "score": 0.83, + "content": "q \\leq \\tilde { q } \\leq", + "type": "inline_equation" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 456, + 512, + 488 + ], + "spans": [ + { + "bbox": [ + 106, + 461, + 192, + 482 + ], + "score": 0.91, + "content": "\\zeta _ { 2 } / { \\left( \\frac { \\mu _ { 1 } } { \\mu _ { 1 } - 1 } \\cdot \\frac { \\mu _ { 2 } } { \\mu _ { 2 } - 1 } \\right) } ^ { \\mu _ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 456, + 234, + 488 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + }, + { + "bbox": [ + 234, + 465, + 288, + 478 + ], + "score": 0.92, + "content": "f ( q ) \\leq f ( \\tilde { q } )", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 456, + 512, + 488 + ], + "score": 1.0, + "content": ". This completes the proof of the lemma and that of", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 479, + 506, + 494 + ], + "spans": [ + { + "bbox": [ + 105, + 479, + 160, + 494 + ], + "score": 1.0, + "content": "the theorem.", + "type": "text" + }, + { + "bbox": [ + 496, + 480, + 506, + 493 + ], + "score": 0.807, + "content": "■", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19, + "bbox_fs": [ + 99, + 438, + 512, + 494 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 528, + 506, + 562 + ], + "lines": [ + { + "bbox": [ + 105, + 527, + 506, + 543 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 438, + 543 + ], + "score": 1.0, + "content": "Theorem 6 yields data-dependent Rényi differential privacy bounds for any value of", + "type": "text" + }, + { + "bbox": [ + 438, + 531, + 450, + 540 + ], + "score": 0.86, + "content": "\\mu _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 527, + 466, + 543 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 467, + 531, + 479, + 541 + ], + "score": 0.85, + "content": "\\mu _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 479, + 527, + 506, + 543 + ], + "score": 1.0, + "content": "larger", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 538, + 504, + 555 + ], + "spans": [ + { + "bbox": [ + 105, + 538, + 126, + 555 + ], + "score": 1.0, + "content": "than", + "type": "text" + }, + { + "bbox": [ + 127, + 541, + 133, + 550 + ], + "score": 0.78, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 134, + 538, + 492, + 555 + ], + "score": 1.0, + "content": ". The following proposition simplifies this search by calculating optimal higher moments", + "type": "text" + }, + { + "bbox": [ + 492, + 542, + 504, + 552 + ], + "score": 0.83, + "content": "\\mu _ { 1 }", + "type": "inline_equation" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 550, + 320, + 563 + ], + "spans": [ + { + "bbox": [ + 106, + 550, + 123, + 562 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 123, + 552, + 135, + 563 + ], + "score": 0.85, + "content": "\\mu _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 550, + 304, + 562 + ], + "score": 1.0, + "content": "for the GNMax mechanism with variance", + "type": "text" + }, + { + "bbox": [ + 304, + 550, + 316, + 561 + ], + "score": 0.87, + "content": "\\sigma ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 316, + 550, + 320, + 562 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22, + "bbox_fs": [ + 105, + 527, + 506, + 563 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 565, + 505, + 588 + ], + "lines": [ + { + "bbox": [ + 105, + 564, + 506, + 579 + ], + "spans": [ + { + "bbox": [ + 105, + 564, + 506, + 579 + ], + "score": 1.0, + "content": "Proposition 10. When applying Theorem 6 and Proposition 8 for GNMax with Gaussian of variance", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 574, + 290, + 590 + ], + "spans": [ + { + "bbox": [ + 106, + 576, + 118, + 587 + ], + "score": 0.83, + "content": "\\sigma ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 118, + 574, + 290, + 590 + ], + "score": 1.0, + "content": ", the right-hand side of (2) is minimized at", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24.5, + "bbox_fs": [ + 105, + 564, + 506, + 590 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 223, + 592, + 387, + 609 + ], + "lines": [ + { + "bbox": [ + 223, + 592, + 387, + 609 + ], + "spans": [ + { + "bbox": [ + 223, + 592, + 387, + 609 + ], + "score": 0.91, + "content": "\\mu _ { 2 } = \\sigma \\cdot \\sqrt { \\log ( 1 / \\tilde { q } ) } , a n d \\mu _ { 1 } = \\mu _ { 2 } + 1 .", + "type": "interline_equation", + "image_path": "8cc3b103018d2dbba69a8b80529ea9894e403eff24d56bf3fa2928cd95b06942.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 223, + 592, + 387, + 609 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 619, + 504, + 645 + ], + "lines": [ + { + "bbox": [ + 106, + 618, + 505, + 632 + ], + "spans": [ + { + "bbox": [ + 106, + 618, + 505, + 632 + ], + "score": 1.0, + "content": "Proof. We can minimize both terms in (2) independently. To minimize the first term in (6), we", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 104, + 627, + 312, + 648 + ], + "spans": [ + { + "bbox": [ + 104, + 627, + 147, + 648 + ], + "score": 1.0, + "content": "minimize", + "type": "text" + }, + { + "bbox": [ + 147, + 630, + 200, + 645 + ], + "score": 0.94, + "content": "\\left( \\tilde { q } e ^ { \\varepsilon _ { 2 } } \\right) ^ { 1 - 1 / \\mu _ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 627, + 312, + 648 + ], + "score": 1.0, + "content": "by considering logarithms:", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5, + "bbox_fs": [ + 104, + 618, + 505, + 648 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 194, + 649, + 414, + 734 + ], + "lines": [ + { + "bbox": [ + 194, + 649, + 414, + 734 + ], + "spans": [ + { + "bbox": [ + 194, + 649, + 414, + 734 + ], + "score": 0.94, + "content": "\\begin{array} { r l } { \\log \\left\\{ \\big ( \\tilde { q } e ^ { \\varepsilon _ { 2 } } \\big ) ^ { 1 - 1 / \\mu _ { 2 } } \\right\\} = \\log \\Bigg \\{ \\tilde { q } ^ { 1 - \\frac { 1 } { \\mu _ { 2 } } } \\exp \\left( \\frac { \\mu _ { 2 } - 1 } { \\sigma ^ { 2 } } \\right) \\Bigg \\} } & { } \\\\ { \\quad \\quad \\quad \\quad \\quad = \\left( 1 - \\frac { 1 } { \\mu _ { 2 } } \\right) \\cdot \\log \\tilde { q } + \\frac { \\mu _ { 2 } - 1 } { \\sigma ^ { 2 } } } & { } \\\\ { \\quad \\quad \\quad \\quad = \\frac { 1 } { \\mu _ { 2 } } \\log \\frac { 1 } { \\tilde { q } } + \\frac { \\mu _ { 2 } } { \\sigma ^ { 2 } } - \\frac { 1 } { \\sigma ^ { 2 } } - \\log \\frac { 1 } { \\tilde { q } } , } \\end{array}", + "type": "interline_equation", + "image_path": "277fc897ffc6e63e8c029f3da9f8dd8d58bd2c63eabbd99b403373cc0b7803eb.jpg" + } + ] + } + ], + "index": 31, + "virtual_lines": [ + { + "bbox": [ + 194, + 649, + 414, + 666.0 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 194, + 666.0, + 414, + 683.0 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 194, + 683.0, + 414, + 700.0 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 194, + 700.0, + 414, + 717.0 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 194, + 717.0, + 414, + 734.0 + ], + "spans": [], + "index": 33 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 108, + 81, + 284, + 95 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 284, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 197, + 96 + ], + "score": 1.0, + "content": "which is minimized at", + "type": "text" + }, + { + "bbox": [ + 198, + 81, + 281, + 95 + ], + "score": 0.91, + "content": "\\mu _ { 2 } = \\sigma \\cdot \\sqrt { \\log ( 1 / \\tilde { q } ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 80, + 284, + 96 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 106, + 410, + 120 + ], + "lines": [ + { + "bbox": [ + 105, + 106, + 411, + 122 + ], + "spans": [ + { + "bbox": [ + 105, + 106, + 306, + 122 + ], + "score": 1.0, + "content": "To minimize the second term in (6), we minimize", + "type": "text" + }, + { + "bbox": [ + 306, + 107, + 363, + 120 + ], + "score": 0.93, + "content": "e ^ { \\varepsilon _ { 1 } } / \\tilde { q } ^ { 1 / ( \\mu _ { 1 } - 1 ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 106, + 411, + 122 + ], + "score": 1.0, + "content": "as follows:", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1 + }, + { + "type": "interline_equation", + "bbox": [ + 200, + 125, + 409, + 207 + ], + "lines": [ + { + "bbox": [ + 200, + 125, + 409, + 207 + ], + "spans": [ + { + "bbox": [ + 200, + 125, + 409, + 207 + ], + "score": 0.95, + "content": "\\begin{array} { r l } { \\log \\left\\{ \\displaystyle \\frac { e ^ { \\varepsilon _ { 1 } } } { \\tilde { q } ^ { 1 / ( \\mu _ { 1 } - 1 ) } } \\right\\} = \\log \\left\\{ \\tilde { q } ^ { - 1 / ( \\mu _ { 1 } - 1 ) } \\exp \\left( \\frac { \\mu _ { 1 } } { \\sigma ^ { 2 } } \\right) \\right\\} } & { { } } \\\\ { = \\displaystyle \\frac { \\mu _ { 1 } } { \\sigma ^ { 2 } } + \\frac { 1 } { \\mu _ { 1 } - 1 } \\log \\frac { 1 } { \\tilde { q } } } & { { } } \\\\ { = \\displaystyle \\frac { 1 } { \\sigma ^ { 2 } } + \\frac { \\mu _ { 1 } - 1 } { \\sigma ^ { 2 } } + \\frac { 1 } { \\mu _ { 1 } - 1 } \\log \\frac { 1 } { \\tilde { q } } , } \\end{array}", + "type": "interline_equation", + "image_path": "38e19204f31f82b3059a7bfa76b10c820534e7c884e13439d88660e2a9e6df7a.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 200, + 125, + 409, + 141.4 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 200, + 141.4, + 409, + 157.8 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 200, + 157.8, + 409, + 174.20000000000002 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 200, + 174.20000000000002, + 409, + 190.60000000000002 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 200, + 190.60000000000002, + 409, + 207.00000000000003 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 212, + 387, + 226 + ], + "lines": [ + { + "bbox": [ + 106, + 211, + 388, + 227 + ], + "spans": [ + { + "bbox": [ + 106, + 211, + 198, + 227 + ], + "score": 1.0, + "content": "which is minimized at", + "type": "text" + }, + { + "bbox": [ + 198, + 212, + 298, + 226 + ], + "score": 0.93, + "content": "\\mu _ { 1 } = 1 + \\sigma \\cdot \\sqrt { \\log ( 1 / \\tilde { q } ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 211, + 388, + 227 + ], + "score": 1.0, + "content": "completing the proof.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 106, + 239, + 505, + 284 + ], + "lines": [ + { + "bbox": [ + 105, + 239, + 505, + 252 + ], + "spans": [ + { + "bbox": [ + 105, + 239, + 424, + 252 + ], + "score": 1.0, + "content": "Putting this together, we apply the following steps to calculate RDP of order", + "type": "text" + }, + { + "bbox": [ + 425, + 240, + 432, + 249 + ], + "score": 0.76, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 432, + 239, + 505, + 252 + ], + "score": 1.0, + "content": "for GNMax with", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 250, + 505, + 262 + ], + "spans": [ + { + "bbox": [ + 106, + 250, + 142, + 262 + ], + "score": 1.0, + "content": "variance", + "type": "text" + }, + { + "bbox": [ + 142, + 250, + 154, + 261 + ], + "score": 0.87, + "content": "\\sigma ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 250, + 228, + 262 + ], + "score": 1.0, + "content": "on a given dataset", + "type": "text" + }, + { + "bbox": [ + 229, + 251, + 238, + 260 + ], + "score": 0.8, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 250, + 350, + 262 + ], + "score": 1.0, + "content": ". First, we compute a bound", + "type": "text" + }, + { + "bbox": [ + 350, + 252, + 357, + 262 + ], + "score": 0.8, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 357, + 250, + 505, + 262 + ], + "score": 1.0, + "content": "according to Proposition 7. Then we", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 261, + 505, + 273 + ], + "spans": [ + { + "bbox": [ + 105, + 261, + 505, + 273 + ], + "score": 1.0, + "content": "use the smaller of two bounds: a data-dependent (Theorem 6) and a data-independent one (Proposi-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 104, + 271, + 141, + 284 + ], + "spans": [ + { + "bbox": [ + 104, + 271, + 141, + 284 + ], + "score": 1.0, + "content": "tion 8) :", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 9.5 + }, + { + "type": "interline_equation", + "bbox": [ + 129, + 289, + 480, + 317 + ], + "lines": [ + { + "bbox": [ + 129, + 289, + 480, + 317 + ], + "spans": [ + { + "bbox": [ + 129, + 289, + 480, + 317 + ], + "score": 0.92, + "content": "\\beta _ { \\sigma } ( q ) \\triangleq \\operatorname* { m i n } \\left\\{ \\frac { 1 } { \\lambda - 1 } \\log \\left\\{ ( 1 - q ) \\cdot A ( q , \\mu _ { 2 } , \\varepsilon _ { 2 } ) ^ { \\lambda - 1 } + q \\cdot B ( q , \\mu _ { 1 } , \\varepsilon _ { 1 } ) ^ { \\lambda - 1 } \\right\\} , \\lambda / \\sigma ^ { 2 } \\right\\} ,", + "type": "interline_equation", + "image_path": "04d686ff17cfae6c9922a5f17b6ff06bf118005e236aa392f928384de05eca01.jpg" + } + ] + } + ], + "index": 12, + "virtual_lines": [ + { + "bbox": [ + 129, + 289, + 480, + 317 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 321, + 506, + 398 + ], + "lines": [ + { + "bbox": [ + 107, + 322, + 505, + 334 + ], + "spans": [ + { + "bbox": [ + 107, + 322, + 133, + 334 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 322, + 143, + 333 + ], + "score": 0.77, + "content": "\\pmb { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 322, + 161, + 334 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 161, + 322, + 171, + 333 + ], + "score": 0.81, + "content": "\\textbf { { B } }", + "type": "inline_equation" + }, + { + "bbox": [ + 172, + 322, + 413, + 334 + ], + "score": 1.0, + "content": "are defined as in the statement of Theorem 6, the parameters", + "type": "text" + }, + { + "bbox": [ + 414, + 324, + 425, + 334 + ], + "score": 0.86, + "content": "\\mu _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 425, + 322, + 443, + 334 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 443, + 324, + 455, + 334 + ], + "score": 0.85, + "content": "\\mu _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 455, + 322, + 505, + 334 + ], + "score": 1.0, + "content": "are selected", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 333, + 506, + 347 + ], + "spans": [ + { + "bbox": [ + 105, + 333, + 238, + 347 + ], + "score": 1.0, + "content": "according to Proposition 10, and", + "type": "text" + }, + { + "bbox": [ + 238, + 333, + 287, + 347 + ], + "score": 0.93, + "content": "\\varepsilon _ { 1 } \\triangleq \\mu _ { 1 } / \\sigma ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 333, + 305, + 347 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 306, + 333, + 354, + 347 + ], + "score": 0.93, + "content": "\\varepsilon _ { 2 } \\triangleq \\mu _ { 2 } / \\sigma ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 355, + 333, + 506, + 347 + ], + "score": 1.0, + "content": "(Proposition 8). Importantly, the first", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 104, + 345, + 503, + 366 + ], + "spans": [ + { + "bbox": [ + 104, + 349, + 246, + 362 + ], + "score": 1.0, + "content": "expression is evaluated only when", + "type": "text" + }, + { + "bbox": [ + 248, + 350, + 345, + 362 + ], + "score": 0.32, + "content": "q < 1 , \\mu _ { 1 } \\geq \\lambda , \\mu _ { 2 } > 1", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 349, + 366, + 362 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 367, + 345, + 501, + 366 + ], + "score": 0.93, + "content": "q \\leq e ^ { ( \\mu _ { 2 } - 1 ) \\varepsilon _ { 2 } } / \\left( \\frac { \\mu _ { 1 } } { \\mu _ { 1 } - 1 } \\cdot \\frac { \\mu _ { 2 } } { \\mu _ { 2 } - 1 } \\right) ^ { \\mu _ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 345, + 503, + 365 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 362, + 506, + 377 + ], + "spans": [ + { + "bbox": [ + 105, + 362, + 506, + 377 + ], + "score": 1.0, + "content": "These conditions can either be checked for each application of the aggregation mechanism, or a crit-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 375, + 505, + 388 + ], + "spans": [ + { + "bbox": [ + 105, + 375, + 158, + 388 + ], + "score": 1.0, + "content": "ical value of", + "type": "text" + }, + { + "bbox": [ + 158, + 376, + 168, + 387 + ], + "score": 0.85, + "content": "q _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 375, + 505, + 388 + ], + "score": 1.0, + "content": "that separates the range of applicability of the data-dependent and data-independent", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 386, + 503, + 398 + ], + "spans": [ + { + "bbox": [ + 106, + 386, + 246, + 398 + ], + "score": 1.0, + "content": "bounds can be computed for given", + "type": "text" + }, + { + "bbox": [ + 246, + 388, + 254, + 396 + ], + "score": 0.78, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 386, + 271, + 398 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 272, + 387, + 279, + 396 + ], + "score": 0.79, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 386, + 503, + 398 + ], + "score": 1.0, + "content": ". In our implementation we pursue the second approach.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 15.5 + }, + { + "type": "text", + "bbox": [ + 108, + 402, + 502, + 426 + ], + "lines": [ + { + "bbox": [ + 106, + 402, + 504, + 416 + ], + "spans": [ + { + "bbox": [ + 106, + 402, + 504, + 416 + ], + "score": 1.0, + "content": "The following corollary offers a simple asymptotic expression of the privacy of GNMax for the case", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 414, + 422, + 426 + ], + "spans": [ + { + "bbox": [ + 106, + 414, + 235, + 426 + ], + "score": 1.0, + "content": "when there are large (relative to", + "type": "text" + }, + { + "bbox": [ + 236, + 416, + 243, + 424 + ], + "score": 0.69, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 243, + 414, + 422, + 426 + ], + "score": 1.0, + "content": ") gaps between the highest three vote counts.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5 + }, + { + "type": "text", + "bbox": [ + 107, + 429, + 505, + 463 + ], + "lines": [ + { + "bbox": [ + 105, + 428, + 505, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 304, + 442 + ], + "score": 1.0, + "content": "Corollary 11. If the top three vote counts are", + "type": "text" + }, + { + "bbox": [ + 304, + 430, + 374, + 440 + ], + "score": 0.88, + "content": "n _ { 1 } ~ > ~ n _ { 2 } ~ > ~ n _ { 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 428, + 396, + 442 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 396, + 430, + 432, + 440 + ], + "score": 0.76, + "content": "n _ { 1 } \\mathrm { ~ - ~ } n _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 432, + 428, + 438, + 442 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 438, + 430, + 501, + 440 + ], + "score": 0.78, + "content": "n _ { 2 } \\mathrm { ~ - ~ } n _ { 3 } \\mathrm { ~ } \\gg \\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 428, + 505, + 442 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 440, + 505, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 440, + 332, + 453 + ], + "score": 1.0, + "content": "then the mechanism GNMax with Gaussian of variance", + "type": "text" + }, + { + "bbox": [ + 332, + 441, + 344, + 450 + ], + "score": 0.87, + "content": "\\sigma ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 440, + 380, + 453 + ], + "score": 1.0, + "content": "satisfies", + "type": "text" + }, + { + "bbox": [ + 380, + 441, + 465, + 452 + ], + "score": 0.86, + "content": "( \\lambda , \\exp ( - 2 \\lambda / \\sigma ^ { 2 } ) / \\lambda )", + "type": "inline_equation" + }, + { + "bbox": [ + 465, + 440, + 505, + 453 + ], + "score": 1.0, + "content": "-RDP for", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 450, + 182, + 465 + ], + "spans": [ + { + "bbox": [ + 106, + 451, + 177, + 463 + ], + "score": 0.92, + "content": "\\lambda = ( n _ { 1 } - n _ { 2 } ) / 4", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 450, + 182, + 465 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 106, + 476, + 505, + 536 + ], + "lines": [ + { + "bbox": [ + 105, + 477, + 505, + 490 + ], + "spans": [ + { + "bbox": [ + 105, + 477, + 250, + 490 + ], + "score": 1.0, + "content": "Proof. Denote the noisy counts as", + "type": "text" + }, + { + "bbox": [ + 250, + 477, + 338, + 489 + ], + "score": 0.92, + "content": "\\tilde { n } _ { i } = n _ { i } + \\mathcal { N } ( 0 , \\sigma ^ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 477, + 505, + 490 + ], + "score": 1.0, + "content": ". Ignoring outputs other than those with", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 487, + 505, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 487, + 329, + 501 + ], + "score": 1.0, + "content": "the highest and the second highest counts, we bound", + "type": "text" + }, + { + "bbox": [ + 329, + 488, + 419, + 500 + ], + "score": 0.92, + "content": "q = \\mathbf { \\bar { P r } } \\left[ \\mathcal { \\bar { M } } ( D ) \\right] \\neq 1 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 419, + 487, + 433, + 501 + ], + "score": 1.0, + "content": "as", + "type": "text" + }, + { + "bbox": [ + 433, + 488, + 505, + 500 + ], + "score": 0.91, + "content": "\\mathbf { P r } [ \\tilde { n } _ { 1 } ~ < ~ \\tilde { n } _ { 2 } ] ~ =", + "type": "inline_equation" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 499, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 106, + 500, + 329, + 513 + ], + "score": 0.9, + "content": "{ \\bf P r } [ N ( 0 , 2 \\sigma ^ { 2 } ) > n _ { 1 } - n _ { 2 } ] < \\exp { \\left( - ( n _ { 1 } - n _ { 2 } ) ^ { 2 } / 4 \\sigma ^ { 2 } \\right) }", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 499, + 401, + 513 + ], + "score": 1.0, + "content": ", which we use as", + "type": "text" + }, + { + "bbox": [ + 401, + 501, + 407, + 512 + ], + "score": 0.76, + "content": "\\tilde { q }", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 499, + 450, + 513 + ], + "score": 1.0, + "content": ". Plugging", + "type": "text" + }, + { + "bbox": [ + 451, + 501, + 457, + 512 + ], + "score": 0.83, + "content": "\\tilde { q }", + "type": "inline_equation" + }, + { + "bbox": [ + 457, + 499, + 505, + 513 + ], + "score": 1.0, + "content": "in Proposi-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 104, + 510, + 506, + 526 + ], + "spans": [ + { + "bbox": [ + 104, + 510, + 176, + 526 + ], + "score": 1.0, + "content": "tion 10, we have", + "type": "text" + }, + { + "bbox": [ + 176, + 513, + 294, + 524 + ], + "score": 0.89, + "content": "\\mu _ { 1 } - 1 = \\mu _ { 2 } = ( n _ { 1 } - n _ { 2 } ) / 2", + "type": "inline_equation" + }, + { + "bbox": [ + 295, + 510, + 506, + 526 + ], + "score": 1.0, + "content": ", limiting the range of applicability of Theorem 6 to", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 107, + 522, + 182, + 536 + ], + "spans": [ + { + "bbox": [ + 107, + 523, + 178, + 536 + ], + "score": 0.92, + "content": "\\lambda < ( n _ { 1 } - n _ { 2 } ) / 2", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 522, + 182, + 536 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 107, + 540, + 505, + 563 + ], + "lines": [ + { + "bbox": [ + 105, + 539, + 506, + 553 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 147, + 553 + ], + "score": 1.0, + "content": "Choosing", + "type": "text" + }, + { + "bbox": [ + 147, + 540, + 217, + 551 + ], + "score": 0.9, + "content": "\\lambda = ( n _ { 1 } - n _ { 2 } ) / 4", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 539, + 251, + 553 + ], + "score": 1.0, + "content": "ensures", + "type": "text" + }, + { + "bbox": [ + 251, + 540, + 320, + 552 + ], + "score": 0.92, + "content": "A ( \\tilde { q } , \\mu _ { 2 } , \\varepsilon _ { 2 } ) \\approx 1", + "type": "inline_equation" + }, + { + "bbox": [ + 320, + 539, + 506, + 553 + ], + "score": 1.0, + "content": ", which allows approximating the bound (2) as", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 549, + 505, + 565 + ], + "spans": [ + { + "bbox": [ + 106, + 551, + 221, + 564 + ], + "score": 0.88, + "content": "\\tilde { q } \\cdot B ( \\tilde { q } , \\mu _ { 1 } , \\varepsilon _ { 1 } ) ^ { \\lambda - 1 } / ( \\lambda - 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 549, + 425, + 565 + ], + "score": 1.0, + "content": ". The proof follows by straightforward calculation.", + "type": "text" + }, + { + "bbox": [ + 498, + 552, + 505, + 561 + ], + "score": 0.0, + "content": "", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5 + }, + { + "type": "title", + "bbox": [ + 105, + 579, + 473, + 592 + ], + "lines": [ + { + "bbox": [ + 104, + 578, + 475, + 594 + ], + "spans": [ + { + "bbox": [ + 104, + 578, + 475, + 594 + ], + "score": 1.0, + "content": "B SMOOTH SENSITIVITY AND PUBLISHING THE PRIVACY PARAMETER", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 106, + 604, + 505, + 672 + ], + "lines": [ + { + "bbox": [ + 106, + 605, + 505, + 618 + ], + "spans": [ + { + "bbox": [ + 106, + 605, + 483, + 618 + ], + "score": 1.0, + "content": "The privacy guarantees obtained for the mechanisms in this paper via Theorem 6 take as input", + "type": "text" + }, + { + "bbox": [ + 484, + 606, + 489, + 617 + ], + "score": 0.81, + "content": "\\tilde { q }", + "type": "inline_equation" + }, + { + "bbox": [ + 489, + 605, + 505, + 618 + ], + "score": 1.0, + "content": ", an", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 616, + 506, + 629 + ], + "spans": [ + { + "bbox": [ + 105, + 616, + 506, + 629 + ], + "score": 1.0, + "content": "upper bound on the probability that the aggregate mechanism returns the true plurality. This means", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 625, + 506, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 625, + 506, + 641 + ], + "score": 1.0, + "content": "that the resulting privacy parameters computed depend on teacher votes and hence the underlying", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 637, + 506, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 506, + 651 + ], + "score": 1.0, + "content": "data. To avoid potential privacy breaches from simply publishing the data-dependent parameter, we", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 648, + 506, + 661 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 506, + 661 + ], + "score": 1.0, + "content": "need to publish a sanitized version of the privacy loss. This is done by adding noise to the computed", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 660, + 485, + 673 + ], + "spans": [ + { + "bbox": [ + 105, + 660, + 485, + 673 + ], + "score": 1.0, + "content": "privacy loss estimates using the smooth sensitivity algorithm proposed by Nissim et al. (2007).", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 34.5 + }, + { + "type": "text", + "bbox": [ + 107, + 676, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "score": 1.0, + "content": "This section has the following structure. First we recall the notion of smooth sensitivity and intro-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "duce an algorithm for computing the smooth sensitivity of the privacy loss function of the GNMax", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "score": 1.0, + "content": "mechanism. In the rest of the section we prove correctness of these algorithms by stating several", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "conditions on the mechanism, proving that these conditions are sufficient for correctness of the al-", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 721, + 403, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 403, + 733 + ], + "score": 1.0, + "content": "gorithm, and finally demonstrating that GNMax satisfies these conditions.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 40 + } + ], + "page_idx": 20, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 26, + 293, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 496, + 212, + 505, + 225 + ], + "lines": [ + { + "bbox": [ + 497, + 214, + 505, + 225 + ], + "spans": [ + { + "bbox": [ + 497, + 214, + 505, + 225 + ], + "score": 0.689, + "content": "■", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 298, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 298, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 14 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 108, + 81, + 284, + 95 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 284, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 197, + 96 + ], + "score": 1.0, + "content": "which is minimized at", + "type": "text" + }, + { + "bbox": [ + 198, + 81, + 281, + 95 + ], + "score": 0.91, + "content": "\\mu _ { 2 } = \\sigma \\cdot \\sqrt { \\log ( 1 / \\tilde { q } ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 80, + 284, + 96 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0, + "bbox_fs": [ + 105, + 80, + 284, + 96 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 106, + 410, + 120 + ], + "lines": [ + { + "bbox": [ + 105, + 106, + 411, + 122 + ], + "spans": [ + { + "bbox": [ + 105, + 106, + 306, + 122 + ], + "score": 1.0, + "content": "To minimize the second term in (6), we minimize", + "type": "text" + }, + { + "bbox": [ + 306, + 107, + 363, + 120 + ], + "score": 0.93, + "content": "e ^ { \\varepsilon _ { 1 } } / \\tilde { q } ^ { 1 / ( \\mu _ { 1 } - 1 ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 106, + 411, + 122 + ], + "score": 1.0, + "content": "as follows:", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1, + "bbox_fs": [ + 105, + 106, + 411, + 122 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 200, + 125, + 409, + 207 + ], + "lines": [ + { + "bbox": [ + 200, + 125, + 409, + 207 + ], + "spans": [ + { + "bbox": [ + 200, + 125, + 409, + 207 + ], + "score": 0.95, + "content": "\\begin{array} { r l } { \\log \\left\\{ \\displaystyle \\frac { e ^ { \\varepsilon _ { 1 } } } { \\tilde { q } ^ { 1 / ( \\mu _ { 1 } - 1 ) } } \\right\\} = \\log \\left\\{ \\tilde { q } ^ { - 1 / ( \\mu _ { 1 } - 1 ) } \\exp \\left( \\frac { \\mu _ { 1 } } { \\sigma ^ { 2 } } \\right) \\right\\} } & { { } } \\\\ { = \\displaystyle \\frac { \\mu _ { 1 } } { \\sigma ^ { 2 } } + \\frac { 1 } { \\mu _ { 1 } - 1 } \\log \\frac { 1 } { \\tilde { q } } } & { { } } \\\\ { = \\displaystyle \\frac { 1 } { \\sigma ^ { 2 } } + \\frac { \\mu _ { 1 } - 1 } { \\sigma ^ { 2 } } + \\frac { 1 } { \\mu _ { 1 } - 1 } \\log \\frac { 1 } { \\tilde { q } } , } \\end{array}", + "type": "interline_equation", + "image_path": "38e19204f31f82b3059a7bfa76b10c820534e7c884e13439d88660e2a9e6df7a.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 200, + 125, + 409, + 141.4 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 200, + 141.4, + 409, + 157.8 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 200, + 157.8, + 409, + 174.20000000000002 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 200, + 174.20000000000002, + 409, + 190.60000000000002 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 200, + 190.60000000000002, + 409, + 207.00000000000003 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 212, + 387, + 226 + ], + "lines": [ + { + "bbox": [ + 106, + 211, + 388, + 227 + ], + "spans": [ + { + "bbox": [ + 106, + 211, + 198, + 227 + ], + "score": 1.0, + "content": "which is minimized at", + "type": "text" + }, + { + "bbox": [ + 198, + 212, + 298, + 226 + ], + "score": 0.93, + "content": "\\mu _ { 1 } = 1 + \\sigma \\cdot \\sqrt { \\log ( 1 / \\tilde { q } ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 211, + 388, + 227 + ], + "score": 1.0, + "content": "completing the proof.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7, + "bbox_fs": [ + 106, + 211, + 388, + 227 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 239, + 505, + 284 + ], + "lines": [ + { + "bbox": [ + 105, + 239, + 505, + 252 + ], + "spans": [ + { + "bbox": [ + 105, + 239, + 424, + 252 + ], + "score": 1.0, + "content": "Putting this together, we apply the following steps to calculate RDP of order", + "type": "text" + }, + { + "bbox": [ + 425, + 240, + 432, + 249 + ], + "score": 0.76, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 432, + 239, + 505, + 252 + ], + "score": 1.0, + "content": "for GNMax with", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 250, + 505, + 262 + ], + "spans": [ + { + "bbox": [ + 106, + 250, + 142, + 262 + ], + "score": 1.0, + "content": "variance", + "type": "text" + }, + { + "bbox": [ + 142, + 250, + 154, + 261 + ], + "score": 0.87, + "content": "\\sigma ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 250, + 228, + 262 + ], + "score": 1.0, + "content": "on a given dataset", + "type": "text" + }, + { + "bbox": [ + 229, + 251, + 238, + 260 + ], + "score": 0.8, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 250, + 350, + 262 + ], + "score": 1.0, + "content": ". First, we compute a bound", + "type": "text" + }, + { + "bbox": [ + 350, + 252, + 357, + 262 + ], + "score": 0.8, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 357, + 250, + 505, + 262 + ], + "score": 1.0, + "content": "according to Proposition 7. Then we", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 261, + 505, + 273 + ], + "spans": [ + { + "bbox": [ + 105, + 261, + 505, + 273 + ], + "score": 1.0, + "content": "use the smaller of two bounds: a data-dependent (Theorem 6) and a data-independent one (Proposi-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 104, + 271, + 141, + 284 + ], + "spans": [ + { + "bbox": [ + 104, + 271, + 141, + 284 + ], + "score": 1.0, + "content": "tion 8) :", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 9.5, + "bbox_fs": [ + 104, + 239, + 505, + 284 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 129, + 289, + 480, + 317 + ], + "lines": [ + { + "bbox": [ + 129, + 289, + 480, + 317 + ], + "spans": [ + { + "bbox": [ + 129, + 289, + 480, + 317 + ], + "score": 0.92, + "content": "\\beta _ { \\sigma } ( q ) \\triangleq \\operatorname* { m i n } \\left\\{ \\frac { 1 } { \\lambda - 1 } \\log \\left\\{ ( 1 - q ) \\cdot A ( q , \\mu _ { 2 } , \\varepsilon _ { 2 } ) ^ { \\lambda - 1 } + q \\cdot B ( q , \\mu _ { 1 } , \\varepsilon _ { 1 } ) ^ { \\lambda - 1 } \\right\\} , \\lambda / \\sigma ^ { 2 } \\right\\} ,", + "type": "interline_equation", + "image_path": "04d686ff17cfae6c9922a5f17b6ff06bf118005e236aa392f928384de05eca01.jpg" + } + ] + } + ], + "index": 12, + "virtual_lines": [ + { + "bbox": [ + 129, + 289, + 480, + 317 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 321, + 506, + 398 + ], + "lines": [ + { + "bbox": [ + 107, + 322, + 505, + 334 + ], + "spans": [ + { + "bbox": [ + 107, + 322, + 133, + 334 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 322, + 143, + 333 + ], + "score": 0.77, + "content": "\\pmb { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 322, + 161, + 334 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 161, + 322, + 171, + 333 + ], + "score": 0.81, + "content": "\\textbf { { B } }", + "type": "inline_equation" + }, + { + "bbox": [ + 172, + 322, + 413, + 334 + ], + "score": 1.0, + "content": "are defined as in the statement of Theorem 6, the parameters", + "type": "text" + }, + { + "bbox": [ + 414, + 324, + 425, + 334 + ], + "score": 0.86, + "content": "\\mu _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 425, + 322, + 443, + 334 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 443, + 324, + 455, + 334 + ], + "score": 0.85, + "content": "\\mu _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 455, + 322, + 505, + 334 + ], + "score": 1.0, + "content": "are selected", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 333, + 506, + 347 + ], + "spans": [ + { + "bbox": [ + 105, + 333, + 238, + 347 + ], + "score": 1.0, + "content": "according to Proposition 10, and", + "type": "text" + }, + { + "bbox": [ + 238, + 333, + 287, + 347 + ], + "score": 0.93, + "content": "\\varepsilon _ { 1 } \\triangleq \\mu _ { 1 } / \\sigma ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 333, + 305, + 347 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 306, + 333, + 354, + 347 + ], + "score": 0.93, + "content": "\\varepsilon _ { 2 } \\triangleq \\mu _ { 2 } / \\sigma ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 355, + 333, + 506, + 347 + ], + "score": 1.0, + "content": "(Proposition 8). Importantly, the first", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 104, + 345, + 503, + 366 + ], + "spans": [ + { + "bbox": [ + 104, + 349, + 246, + 362 + ], + "score": 1.0, + "content": "expression is evaluated only when", + "type": "text" + }, + { + "bbox": [ + 248, + 350, + 345, + 362 + ], + "score": 0.32, + "content": "q < 1 , \\mu _ { 1 } \\geq \\lambda , \\mu _ { 2 } > 1", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 349, + 366, + 362 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 367, + 345, + 501, + 366 + ], + "score": 0.93, + "content": "q \\leq e ^ { ( \\mu _ { 2 } - 1 ) \\varepsilon _ { 2 } } / \\left( \\frac { \\mu _ { 1 } } { \\mu _ { 1 } - 1 } \\cdot \\frac { \\mu _ { 2 } } { \\mu _ { 2 } - 1 } \\right) ^ { \\mu _ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 345, + 503, + 365 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 362, + 506, + 377 + ], + "spans": [ + { + "bbox": [ + 105, + 362, + 506, + 377 + ], + "score": 1.0, + "content": "These conditions can either be checked for each application of the aggregation mechanism, or a crit-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 375, + 505, + 388 + ], + "spans": [ + { + "bbox": [ + 105, + 375, + 158, + 388 + ], + "score": 1.0, + "content": "ical value of", + "type": "text" + }, + { + "bbox": [ + 158, + 376, + 168, + 387 + ], + "score": 0.85, + "content": "q _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 375, + 505, + 388 + ], + "score": 1.0, + "content": "that separates the range of applicability of the data-dependent and data-independent", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 386, + 503, + 398 + ], + "spans": [ + { + "bbox": [ + 106, + 386, + 246, + 398 + ], + "score": 1.0, + "content": "bounds can be computed for given", + "type": "text" + }, + { + "bbox": [ + 246, + 388, + 254, + 396 + ], + "score": 0.78, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 386, + 271, + 398 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 272, + 387, + 279, + 396 + ], + "score": 0.79, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 386, + 503, + 398 + ], + "score": 1.0, + "content": ". In our implementation we pursue the second approach.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 15.5, + "bbox_fs": [ + 104, + 322, + 506, + 398 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 402, + 502, + 426 + ], + "lines": [ + { + "bbox": [ + 106, + 402, + 504, + 416 + ], + "spans": [ + { + "bbox": [ + 106, + 402, + 504, + 416 + ], + "score": 1.0, + "content": "The following corollary offers a simple asymptotic expression of the privacy of GNMax for the case", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 414, + 422, + 426 + ], + "spans": [ + { + "bbox": [ + 106, + 414, + 235, + 426 + ], + "score": 1.0, + "content": "when there are large (relative to", + "type": "text" + }, + { + "bbox": [ + 236, + 416, + 243, + 424 + ], + "score": 0.69, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 243, + 414, + 422, + 426 + ], + "score": 1.0, + "content": ") gaps between the highest three vote counts.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5, + "bbox_fs": [ + 106, + 402, + 504, + 426 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 429, + 505, + 463 + ], + "lines": [ + { + "bbox": [ + 105, + 428, + 505, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 304, + 442 + ], + "score": 1.0, + "content": "Corollary 11. If the top three vote counts are", + "type": "text" + }, + { + "bbox": [ + 304, + 430, + 374, + 440 + ], + "score": 0.88, + "content": "n _ { 1 } ~ > ~ n _ { 2 } ~ > ~ n _ { 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 428, + 396, + 442 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 396, + 430, + 432, + 440 + ], + "score": 0.76, + "content": "n _ { 1 } \\mathrm { ~ - ~ } n _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 432, + 428, + 438, + 442 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 438, + 430, + 501, + 440 + ], + "score": 0.78, + "content": "n _ { 2 } \\mathrm { ~ - ~ } n _ { 3 } \\mathrm { ~ } \\gg \\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 428, + 505, + 442 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 440, + 505, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 440, + 332, + 453 + ], + "score": 1.0, + "content": "then the mechanism GNMax with Gaussian of variance", + "type": "text" + }, + { + "bbox": [ + 332, + 441, + 344, + 450 + ], + "score": 0.87, + "content": "\\sigma ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 440, + 380, + 453 + ], + "score": 1.0, + "content": "satisfies", + "type": "text" + }, + { + "bbox": [ + 380, + 441, + 465, + 452 + ], + "score": 0.86, + "content": "( \\lambda , \\exp ( - 2 \\lambda / \\sigma ^ { 2 } ) / \\lambda )", + "type": "inline_equation" + }, + { + "bbox": [ + 465, + 440, + 505, + 453 + ], + "score": 1.0, + "content": "-RDP for", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 450, + 182, + 465 + ], + "spans": [ + { + "bbox": [ + 106, + 451, + 177, + 463 + ], + "score": 0.92, + "content": "\\lambda = ( n _ { 1 } - n _ { 2 } ) / 4", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 450, + 182, + 465 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22, + "bbox_fs": [ + 105, + 428, + 505, + 465 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 476, + 505, + 536 + ], + "lines": [ + { + "bbox": [ + 105, + 477, + 505, + 490 + ], + "spans": [ + { + "bbox": [ + 105, + 477, + 250, + 490 + ], + "score": 1.0, + "content": "Proof. Denote the noisy counts as", + "type": "text" + }, + { + "bbox": [ + 250, + 477, + 338, + 489 + ], + "score": 0.92, + "content": "\\tilde { n } _ { i } = n _ { i } + \\mathcal { N } ( 0 , \\sigma ^ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 477, + 505, + 490 + ], + "score": 1.0, + "content": ". Ignoring outputs other than those with", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 487, + 505, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 487, + 329, + 501 + ], + "score": 1.0, + "content": "the highest and the second highest counts, we bound", + "type": "text" + }, + { + "bbox": [ + 329, + 488, + 419, + 500 + ], + "score": 0.92, + "content": "q = \\mathbf { \\bar { P r } } \\left[ \\mathcal { \\bar { M } } ( D ) \\right] \\neq 1 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 419, + 487, + 433, + 501 + ], + "score": 1.0, + "content": "as", + "type": "text" + }, + { + "bbox": [ + 433, + 488, + 505, + 500 + ], + "score": 0.91, + "content": "\\mathbf { P r } [ \\tilde { n } _ { 1 } ~ < ~ \\tilde { n } _ { 2 } ] ~ =", + "type": "inline_equation" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 499, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 106, + 500, + 329, + 513 + ], + "score": 0.9, + "content": "{ \\bf P r } [ N ( 0 , 2 \\sigma ^ { 2 } ) > n _ { 1 } - n _ { 2 } ] < \\exp { \\left( - ( n _ { 1 } - n _ { 2 } ) ^ { 2 } / 4 \\sigma ^ { 2 } \\right) }", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 499, + 401, + 513 + ], + "score": 1.0, + "content": ", which we use as", + "type": "text" + }, + { + "bbox": [ + 401, + 501, + 407, + 512 + ], + "score": 0.76, + "content": "\\tilde { q }", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 499, + 450, + 513 + ], + "score": 1.0, + "content": ". Plugging", + "type": "text" + }, + { + "bbox": [ + 451, + 501, + 457, + 512 + ], + "score": 0.83, + "content": "\\tilde { q }", + "type": "inline_equation" + }, + { + "bbox": [ + 457, + 499, + 505, + 513 + ], + "score": 1.0, + "content": "in Proposi-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 104, + 510, + 506, + 526 + ], + "spans": [ + { + "bbox": [ + 104, + 510, + 176, + 526 + ], + "score": 1.0, + "content": "tion 10, we have", + "type": "text" + }, + { + "bbox": [ + 176, + 513, + 294, + 524 + ], + "score": 0.89, + "content": "\\mu _ { 1 } - 1 = \\mu _ { 2 } = ( n _ { 1 } - n _ { 2 } ) / 2", + "type": "inline_equation" + }, + { + "bbox": [ + 295, + 510, + 506, + 526 + ], + "score": 1.0, + "content": ", limiting the range of applicability of Theorem 6 to", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 107, + 522, + 182, + 536 + ], + "spans": [ + { + "bbox": [ + 107, + 523, + 178, + 536 + ], + "score": 0.92, + "content": "\\lambda < ( n _ { 1 } - n _ { 2 } ) / 2", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 522, + 182, + 536 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26, + "bbox_fs": [ + 104, + 477, + 506, + 536 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 540, + 505, + 563 + ], + "lines": [ + { + "bbox": [ + 105, + 539, + 506, + 553 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 147, + 553 + ], + "score": 1.0, + "content": "Choosing", + "type": "text" + }, + { + "bbox": [ + 147, + 540, + 217, + 551 + ], + "score": 0.9, + "content": "\\lambda = ( n _ { 1 } - n _ { 2 } ) / 4", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 539, + 251, + 553 + ], + "score": 1.0, + "content": "ensures", + "type": "text" + }, + { + "bbox": [ + 251, + 540, + 320, + 552 + ], + "score": 0.92, + "content": "A ( \\tilde { q } , \\mu _ { 2 } , \\varepsilon _ { 2 } ) \\approx 1", + "type": "inline_equation" + }, + { + "bbox": [ + 320, + 539, + 506, + 553 + ], + "score": 1.0, + "content": ", which allows approximating the bound (2) as", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 549, + 505, + 565 + ], + "spans": [ + { + "bbox": [ + 106, + 551, + 221, + 564 + ], + "score": 0.88, + "content": "\\tilde { q } \\cdot B ( \\tilde { q } , \\mu _ { 1 } , \\varepsilon _ { 1 } ) ^ { \\lambda - 1 } / ( \\lambda - 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 549, + 425, + 565 + ], + "score": 1.0, + "content": ". The proof follows by straightforward calculation.", + "type": "text" + }, + { + "bbox": [ + 498, + 552, + 505, + 561 + ], + "score": 0.0, + "content": "", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5, + "bbox_fs": [ + 105, + 539, + 506, + 565 + ] + }, + { + "type": "title", + "bbox": [ + 105, + 579, + 473, + 592 + ], + "lines": [ + { + "bbox": [ + 104, + 578, + 475, + 594 + ], + "spans": [ + { + "bbox": [ + 104, + 578, + 475, + 594 + ], + "score": 1.0, + "content": "B SMOOTH SENSITIVITY AND PUBLISHING THE PRIVACY PARAMETER", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 106, + 604, + 505, + 672 + ], + "lines": [ + { + "bbox": [ + 106, + 605, + 505, + 618 + ], + "spans": [ + { + "bbox": [ + 106, + 605, + 483, + 618 + ], + "score": 1.0, + "content": "The privacy guarantees obtained for the mechanisms in this paper via Theorem 6 take as input", + "type": "text" + }, + { + "bbox": [ + 484, + 606, + 489, + 617 + ], + "score": 0.81, + "content": "\\tilde { q }", + "type": "inline_equation" + }, + { + "bbox": [ + 489, + 605, + 505, + 618 + ], + "score": 1.0, + "content": ", an", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 616, + 506, + 629 + ], + "spans": [ + { + "bbox": [ + 105, + 616, + 506, + 629 + ], + "score": 1.0, + "content": "upper bound on the probability that the aggregate mechanism returns the true plurality. This means", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 625, + 506, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 625, + 506, + 641 + ], + "score": 1.0, + "content": "that the resulting privacy parameters computed depend on teacher votes and hence the underlying", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 637, + 506, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 506, + 651 + ], + "score": 1.0, + "content": "data. To avoid potential privacy breaches from simply publishing the data-dependent parameter, we", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 648, + 506, + 661 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 506, + 661 + ], + "score": 1.0, + "content": "need to publish a sanitized version of the privacy loss. This is done by adding noise to the computed", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 660, + 485, + 673 + ], + "spans": [ + { + "bbox": [ + 105, + 660, + 485, + 673 + ], + "score": 1.0, + "content": "privacy loss estimates using the smooth sensitivity algorithm proposed by Nissim et al. (2007).", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 34.5, + "bbox_fs": [ + 105, + 605, + 506, + 673 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 676, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "score": 1.0, + "content": "This section has the following structure. First we recall the notion of smooth sensitivity and intro-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "duce an algorithm for computing the smooth sensitivity of the privacy loss function of the GNMax", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "score": 1.0, + "content": "mechanism. In the rest of the section we prove correctness of these algorithms by stating several", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "conditions on the mechanism, proving that these conditions are sufficient for correctness of the al-", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 721, + 403, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 403, + 733 + ], + "score": 1.0, + "content": "gorithm, and finally demonstrating that GNMax satisfies these conditions.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 40, + "bbox_fs": [ + 105, + 677, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 82, + 284, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 285, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 285, + 95 + ], + "score": 1.0, + "content": "B.1 COMPUTING SMOOTH SENSITIVITY", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 102, + 506, + 160 + ], + "lines": [ + { + "bbox": [ + 105, + 101, + 507, + 116 + ], + "spans": [ + { + "bbox": [ + 105, + 101, + 158, + 116 + ], + "score": 1.0, + "content": "Any dataset", + "type": "text" + }, + { + "bbox": [ + 158, + 104, + 168, + 113 + ], + "score": 0.74, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 101, + 253, + 116 + ], + "score": 1.0, + "content": "defines a histogram", + "type": "text" + }, + { + "bbox": [ + 253, + 103, + 361, + 115 + ], + "score": 0.93, + "content": "\\bar { n } = ( n _ { 1 } , \\ldots , n _ { m } ) \\in \\mathbb { N } ^ { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 101, + 507, + 116 + ], + "score": 1.0, + "content": "of the teachers’ votes. We have a", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 104, + 112, + 504, + 128 + ], + "spans": [ + { + "bbox": [ + 104, + 112, + 331, + 128 + ], + "score": 1.0, + "content": "natural notion of the distance between two histograms", + "type": "text" + }, + { + "bbox": [ + 331, + 114, + 375, + 126 + ], + "score": 0.87, + "content": "\\operatorname { d i s t } ( \\bar { n } , \\bar { n } ^ { \\prime } )", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 112, + 439, + 128 + ], + "score": 1.0, + "content": "and a function", + "type": "text" + }, + { + "bbox": [ + 440, + 114, + 504, + 126 + ], + "score": 0.9, + "content": "q \\colon \\mathbb { N } ^ { m } [ 0 , 1 ]", + "type": "inline_equation" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 125, + 505, + 137 + ], + "spans": [ + { + "bbox": [ + 106, + 125, + 433, + 137 + ], + "score": 1.0, + "content": "on these histograms computing the bound according to Proposition 7. The value", + "type": "text" + }, + { + "bbox": [ + 434, + 126, + 453, + 137 + ], + "score": 0.92, + "content": "q ( { \\bar { n } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 454, + 125, + 505, + 137 + ], + "score": 1.0, + "content": "can be used", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 104, + 136, + 506, + 151 + ], + "spans": [ + { + "bbox": [ + 104, + 136, + 118, + 151 + ], + "score": 1.0, + "content": "as", + "type": "text" + }, + { + "bbox": [ + 118, + 138, + 124, + 149 + ], + "score": 0.83, + "content": "\\tilde { q }", + "type": "inline_equation" + }, + { + "bbox": [ + 124, + 136, + 351, + 151 + ], + "score": 1.0, + "content": "in the application of Theorem 6. Additionally we have", + "type": "text" + }, + { + "bbox": [ + 351, + 136, + 367, + 147 + ], + "score": 0.9, + "content": "\\boldsymbol { n } ^ { ( i ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 368, + 136, + 414, + 151 + ], + "score": 1.0, + "content": "denote the", + "type": "text" + }, + { + "bbox": [ + 415, + 138, + 419, + 147 + ], + "score": 0.75, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 136, + 506, + 151 + ], + "score": 1.0, + "content": "-th highest bar in the", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 148, + 152, + 162 + ], + "spans": [ + { + "bbox": [ + 105, + 148, + 152, + 162 + ], + "score": 1.0, + "content": "histogram.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 106, + 164, + 455, + 177 + ], + "lines": [ + { + "bbox": [ + 106, + 164, + 455, + 178 + ], + "spans": [ + { + "bbox": [ + 106, + 164, + 288, + 178 + ], + "score": 1.0, + "content": "We aim at calculating a smooth sensitivity of", + "type": "text" + }, + { + "bbox": [ + 288, + 165, + 324, + 177 + ], + "score": 0.92, + "content": "\\beta \\left( q ( \\bar { n } ) \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 164, + 455, + 178 + ], + "score": 1.0, + "content": "whose definition we recall now.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 107, + 179, + 505, + 201 + ], + "lines": [ + { + "bbox": [ + 105, + 177, + 506, + 192 + ], + "spans": [ + { + "bbox": [ + 105, + 177, + 389, + 192 + ], + "score": 1.0, + "content": "Definition 12 (Smooth Sensitivity). Given the smoothness parameter", + "type": "text" + }, + { + "bbox": [ + 390, + 180, + 397, + 190 + ], + "score": 0.76, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 397, + 177, + 409, + 192 + ], + "score": 1.0, + "content": ", a", + "type": "text" + }, + { + "bbox": [ + 410, + 180, + 417, + 190 + ], + "score": 0.82, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 177, + 506, + 192 + ], + "score": 1.0, + "content": "-smooth sensitivity of", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 107, + 190, + 181, + 203 + ], + "spans": [ + { + "bbox": [ + 107, + 190, + 127, + 202 + ], + "score": 0.91, + "content": "f ( n )", + "type": "inline_equation" + }, + { + "bbox": [ + 128, + 190, + 181, + 203 + ], + "score": 1.0, + "content": "is defined as", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5 + }, + { + "type": "interline_equation", + "bbox": [ + 215, + 203, + 395, + 225 + ], + "lines": [ + { + "bbox": [ + 215, + 203, + 395, + 225 + ], + "spans": [ + { + "bbox": [ + 215, + 203, + 395, + 225 + ], + "score": 0.92, + "content": "\\mathrm { S S } _ { \\beta } ( \\bar { n } ) \\triangleq \\operatorname* { m a x } _ { d \\geq 0 } e ^ { - \\beta d } \\cdot \\operatorname* { m a x } _ { \\bar { n } ^ { \\prime } : \\mathrm { d i s t } ( \\bar { n } , \\bar { n } ^ { \\prime } ) \\leq d } \\tilde { \\mathrm { L S } } ( \\bar { n } ^ { \\prime } ) ,", + "type": "interline_equation", + "image_path": "0e0f2fa2554b39340a31602d93847c48ad1d028bf20f0694b831ba5bf92dc15f.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 215, + 203, + 395, + 225 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 228, + 132, + 239 + ], + "lines": [ + { + "bbox": [ + 105, + 227, + 135, + 241 + ], + "spans": [ + { + "bbox": [ + 105, + 227, + 135, + 241 + ], + "score": 1.0, + "content": "where", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "interline_equation", + "bbox": [ + 227, + 241, + 384, + 262 + ], + "lines": [ + { + "bbox": [ + 227, + 241, + 384, + 262 + ], + "spans": [ + { + "bbox": [ + 227, + 241, + 384, + 262 + ], + "score": 0.92, + "content": "\\tilde { \\mathrm { L S } } ( \\bar { n } ) \\geq \\operatorname* { m a x } _ { \\bar { n } ^ { \\prime } : \\mathrm { d i s t } ( \\bar { n } , \\bar { n } ^ { \\prime } ) = 1 } | f ( n ) - f ( n ^ { \\prime } ) |", + "type": "interline_equation", + "image_path": "e801863ac7d8815bf8d9a8c052f211fb10b2460049e33cfc00e6caddff5ab968.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 227, + 241, + 384, + 262 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 265, + 273, + 277 + ], + "lines": [ + { + "bbox": [ + 106, + 264, + 274, + 278 + ], + "spans": [ + { + "bbox": [ + 106, + 264, + 274, + 278 + ], + "score": 1.0, + "content": "is an upper bound on the local sensitivity.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 107, + 284, + 506, + 318 + ], + "lines": [ + { + "bbox": [ + 106, + 284, + 505, + 298 + ], + "spans": [ + { + "bbox": [ + 106, + 284, + 387, + 298 + ], + "score": 1.0, + "content": "We now describe Algorithms 3–5 computing a smooth sensitivity of", + "type": "text" + }, + { + "bbox": [ + 387, + 285, + 419, + 297 + ], + "score": 0.94, + "content": "\\beta \\left( q ( \\cdot ) \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 284, + 505, + 298 + ], + "score": 1.0, + "content": ". The algorithms as-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 295, + 506, + 310 + ], + "spans": [ + { + "bbox": [ + 105, + 295, + 327, + 310 + ], + "score": 1.0, + "content": "sume the existence of efficiently computable functions", + "type": "text" + }, + { + "bbox": [ + 327, + 296, + 388, + 308 + ], + "score": 0.89, + "content": "q \\colon \\mathbb { N } ^ { m } [ 0 , 1 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 388, + 295, + 392, + 310 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 393, + 296, + 484, + 308 + ], + "score": 0.85, + "content": "\\mathrm { B _ { L } } , \\mathrm { B _ { U } } \\colon [ 0 , 1 ] \\to [ 0 , 1 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 485, + 295, + 506, + 310 + ], + "score": 1.0, + "content": ", and", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 306, + 164, + 320 + ], + "spans": [ + { + "bbox": [ + 105, + 306, + 149, + 320 + ], + "score": 1.0, + "content": "a constant", + "type": "text" + }, + { + "bbox": [ + 149, + 309, + 159, + 318 + ], + "score": 0.85, + "content": "q _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 306, + 164, + 320 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 106, + 323, + 504, + 347 + ], + "lines": [ + { + "bbox": [ + 106, + 324, + 506, + 336 + ], + "spans": [ + { + "bbox": [ + 106, + 324, + 207, + 336 + ], + "score": 1.0, + "content": "Informally, the functions", + "type": "text" + }, + { + "bbox": [ + 207, + 324, + 222, + 335 + ], + "score": 0.84, + "content": "\\mathrm { B _ { U } }", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 324, + 240, + 336 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 240, + 324, + 254, + 335 + ], + "score": 0.87, + "content": "\\mathrm { B _ { L } }", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 324, + 448, + 336 + ], + "score": 1.0, + "content": "respectively upper and lower bound the value of", + "type": "text" + }, + { + "bbox": [ + 448, + 326, + 454, + 335 + ], + "score": 0.81, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 455, + 324, + 506, + 336 + ], + "score": 1.0, + "content": "evaluated at", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 335, + 505, + 348 + ], + "spans": [ + { + "bbox": [ + 106, + 335, + 171, + 348 + ], + "score": 1.0, + "content": "any neighbor of", + "type": "text" + }, + { + "bbox": [ + 171, + 336, + 178, + 345 + ], + "score": 0.79, + "content": "\\bar { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 335, + 202, + 348 + ], + "score": 1.0, + "content": "given", + "type": "text" + }, + { + "bbox": [ + 203, + 335, + 222, + 347 + ], + "score": 0.91, + "content": "q ( { \\bar { n } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 335, + 242, + 348 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 243, + 335, + 268, + 347 + ], + "score": 0.92, + "content": "[ 0 , q _ { 0 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 335, + 505, + 348 + ], + "score": 1.0, + "content": "limits the range of applicability of data-dependent analysis.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5 + }, + { + "type": "text", + "bbox": [ + 105, + 351, + 465, + 363 + ], + "lines": [ + { + "bbox": [ + 106, + 351, + 466, + 365 + ], + "spans": [ + { + "bbox": [ + 106, + 351, + 164, + 365 + ], + "score": 1.0, + "content": "The functions", + "type": "text" + }, + { + "bbox": [ + 164, + 352, + 178, + 363 + ], + "score": 0.88, + "content": "\\mathrm { B _ { L } }", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 351, + 195, + 365 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 196, + 352, + 210, + 363 + ], + "score": 0.86, + "content": "\\mathrm { B _ { U } }", + "type": "inline_equation" + }, + { + "bbox": [ + 211, + 351, + 466, + 365 + ], + "score": 1.0, + "content": "are defined as follows. Their derivation appears in Section B.4.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "interline_equation", + "bbox": [ + 185, + 365, + 425, + 423 + ], + "lines": [ + { + "bbox": [ + 185, + 365, + 425, + 423 + ], + "spans": [ + { + "bbox": [ + 185, + 365, + 425, + 423 + ], + "score": 0.94, + "content": "\\begin{array} { l } { { \\displaystyle { \\mathrm { B } } _ { \\mathrm { U } } ( q ) \\triangleq \\operatorname* { m i n } \\left\\{ \\frac { m - 1 } { 2 } \\mathrm { e r f c } \\left( \\mathrm { e r f c } ^ { - 1 } \\left( \\frac { 2 q } { m - 1 } \\right) - \\frac { 1 } { \\sigma } \\right) , 1 \\right\\} , } } \\\\ { { \\displaystyle { \\mathrm { B } } _ { \\mathrm { L } } ( q ) \\triangleq \\frac { m - 1 } { 2 } \\mathrm { e r f c } \\left( \\mathrm { e r f c } ^ { - 1 } \\left( \\frac { 2 q } { m - 1 } \\right) + \\frac { 1 } { \\sigma } \\right) , } } \\end{array}", + "type": "interline_equation", + "image_path": "4d98ba6b423631d450213ea11cc140d6b38b9f2a647cfb7427d6ff9b4724b3d0.jpg" + } + ] + } + ], + "index": 20.5, + "virtual_lines": [ + { + "bbox": [ + 185, + 365, + 425, + 379.5 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 185, + 379.5, + 425, + 394.0 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 185, + 394.0, + 425, + 408.5 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 185, + 408.5, + 425, + 423.0 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 435, + 504, + 459 + ], + "lines": [ + { + "bbox": [ + 106, + 435, + 505, + 448 + ], + "spans": [ + { + "bbox": [ + 106, + 435, + 314, + 448 + ], + "score": 1.0, + "content": "Algorithm 3 – Local Sensitivity: use the functions", + "type": "text" + }, + { + "bbox": [ + 315, + 436, + 329, + 447 + ], + "score": 0.73, + "content": "\\mathrm { B _ { U } }", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 435, + 347, + 448 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 347, + 437, + 361, + 447 + ], + "score": 0.86, + "content": "\\mathrm { B _ { L } }", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 435, + 505, + 448 + ], + "score": 1.0, + "content": "to compute (an upper bound) of the", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 446, + 489, + 459 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 212, + 459 + ], + "score": 1.0, + "content": "local sensitivity at a given", + "type": "text" + }, + { + "bbox": [ + 212, + 448, + 219, + 458 + ], + "score": 0.74, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 446, + 366, + 459 + ], + "score": 1.0, + "content": "value by looking at the difference of", + "type": "text" + }, + { + "bbox": [ + 367, + 446, + 387, + 459 + ], + "score": 0.91, + "content": "\\beta \\left( \\cdot \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 446, + 489, + 459 + ], + "score": 1.0, + "content": "evaluated on the bounds.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5 + }, + { + "type": "table", + "bbox": [ + 110, + 461, + 505, + 533 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 110, + 461, + 505, + 533 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 110, + 461, + 505, + 533 + ], + "spans": [ + { + "bbox": [ + 110, + 461, + 505, + 533 + ], + "score": 0.569, + "html": "
procedure LS(q)
2: if q1≤q≤ qo then q1 = BL(qo). Interpolate the middle part.
3: q↑q1 end if
4: 5:return max{β(Bu(q))-β(q),β(q)-β(BL(q))}
6: end procedure
", + "type": "table", + "image_path": "6a31d795155be45c1cb5e956266a989f2c78f2afa0fa20bb3ff6c48c0ba271f5.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 110, + 461, + 505, + 485.0 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 110, + 485.0, + 505, + 509.0 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 110, + 509.0, + 505, + 533.0 + ], + "spans": [], + "index": 27 + } + ] + } + ], + "index": 26 + }, + { + "type": "title", + "bbox": [ + 108, + 551, + 257, + 563 + ], + "lines": [ + { + "bbox": [ + 105, + 550, + 258, + 565 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 258, + 565 + ], + "score": 1.0, + "content": "B.2 NOTATION AND CONDITIONS", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 106, + 572, + 504, + 595 + ], + "lines": [ + { + "bbox": [ + 105, + 572, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 505, + 585 + ], + "score": 1.0, + "content": "Notation. We find that the algorithm and the proof of its correctness are more naturally expressed", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 582, + 442, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 442, + 596 + ], + "score": 1.0, + "content": "if we relax the notions of a histogram and its neighbors to allow non-integer values.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5 + }, + { + "type": "text", + "bbox": [ + 133, + 603, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 132, + 601, + 506, + 617 + ], + "spans": [ + { + "bbox": [ + 132, + 601, + 506, + 617 + ], + "score": 1.0, + "content": "• We generalize histograms to be any vector with non-negative real values. This relaxation is", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 141, + 613, + 505, + 627 + ], + "spans": [ + { + "bbox": [ + 141, + 613, + 505, + 627 + ], + "score": 1.0, + "content": "used only in the analysis of algorithms; the actual computations are performed exclusively", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 141, + 626, + 251, + 637 + ], + "spans": [ + { + "bbox": [ + 141, + 626, + 251, + 637 + ], + "score": 1.0, + "content": "over integer-valued inputs.", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 132, + 639, + 506, + 655 + ], + "spans": [ + { + "bbox": [ + 132, + 639, + 158, + 655 + ], + "score": 1.0, + "content": "• Let", + "type": "text" + }, + { + "bbox": [ + 158, + 640, + 257, + 652 + ], + "score": 0.91, + "content": "\\bar { n } = [ n _ { 1 } , \\dots , n _ { m } ] \\in \\mathbb { R } ^ { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 639, + 260, + 655 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 261, + 641, + 290, + 652 + ], + "score": 0.88, + "content": "n _ { i } \\geq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 290, + 639, + 387, + 655 + ], + "score": 1.0, + "content": "denote a histogram. Let", + "type": "text" + }, + { + "bbox": [ + 387, + 639, + 404, + 650 + ], + "score": 0.9, + "content": "\\boldsymbol { n } ^ { ( i ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 404, + 639, + 448, + 655 + ], + "score": 1.0, + "content": "denote the", + "type": "text" + }, + { + "bbox": [ + 449, + 641, + 453, + 650 + ], + "score": 0.74, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 453, + 639, + 506, + 655 + ], + "score": 1.0, + "content": "-th bar in the", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 141, + 652, + 214, + 663 + ], + "spans": [ + { + "bbox": [ + 141, + 652, + 214, + 663 + ], + "score": 1.0, + "content": "descending order.", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 134, + 664, + 506, + 678 + ], + "spans": [ + { + "bbox": [ + 134, + 664, + 369, + 678 + ], + "score": 1.0, + "content": "• Define a “move” as increasing one bar by some value in", + "type": "text" + }, + { + "bbox": [ + 369, + 666, + 389, + 678 + ], + "score": 0.3, + "content": "[ 0 , 1 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 664, + 506, + 678 + ], + "score": 1.0, + "content": "and decreasing one bar by a", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 141, + 676, + 506, + 689 + ], + "spans": [ + { + "bbox": [ + 141, + 676, + 255, + 689 + ], + "score": 1.0, + "content": "(possibly different) value in", + "type": "text" + }, + { + "bbox": [ + 255, + 677, + 276, + 689 + ], + "score": 0.49, + "content": "[ 0 , 1 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 276, + 676, + 506, + 689 + ], + "score": 1.0, + "content": "subject to the resulting value be non-negative. Notice the", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 141, + 687, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 141, + 687, + 506, + 700 + ], + "score": 1.0, + "content": "difference between the original problem and our relaxation. In the original formulation, the", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 141, + 698, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 141, + 698, + 506, + 712 + ], + "score": 1.0, + "content": "histogram takes only integer values and we can only increase/decrease them by exactly 1.", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 141, + 709, + 504, + 723 + ], + "spans": [ + { + "bbox": [ + 141, + 709, + 483, + 723 + ], + "score": 1.0, + "content": "In contrast, we allow real values and a teacher can contribute an arbitrary amount in", + "type": "text" + }, + { + "bbox": [ + 483, + 710, + 504, + 722 + ], + "score": 0.58, + "content": "[ 0 , 1 ]", + "type": "inline_equation" + } + ], + "index": 40 + }, + { + "bbox": [ + 142, + 721, + 210, + 732 + ], + "spans": [ + { + "bbox": [ + 142, + 721, + 210, + 732 + ], + "score": 1.0, + "content": "to any one class.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 36 + } + ], + "page_idx": 21, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 26, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "22", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 82, + 284, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 285, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 285, + 95 + ], + "score": 1.0, + "content": "B.1 COMPUTING SMOOTH SENSITIVITY", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 102, + 506, + 160 + ], + "lines": [ + { + "bbox": [ + 105, + 101, + 507, + 116 + ], + "spans": [ + { + "bbox": [ + 105, + 101, + 158, + 116 + ], + "score": 1.0, + "content": "Any dataset", + "type": "text" + }, + { + "bbox": [ + 158, + 104, + 168, + 113 + ], + "score": 0.74, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 101, + 253, + 116 + ], + "score": 1.0, + "content": "defines a histogram", + "type": "text" + }, + { + "bbox": [ + 253, + 103, + 361, + 115 + ], + "score": 0.93, + "content": "\\bar { n } = ( n _ { 1 } , \\ldots , n _ { m } ) \\in \\mathbb { N } ^ { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 101, + 507, + 116 + ], + "score": 1.0, + "content": "of the teachers’ votes. We have a", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 104, + 112, + 504, + 128 + ], + "spans": [ + { + "bbox": [ + 104, + 112, + 331, + 128 + ], + "score": 1.0, + "content": "natural notion of the distance between two histograms", + "type": "text" + }, + { + "bbox": [ + 331, + 114, + 375, + 126 + ], + "score": 0.87, + "content": "\\operatorname { d i s t } ( \\bar { n } , \\bar { n } ^ { \\prime } )", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 112, + 439, + 128 + ], + "score": 1.0, + "content": "and a function", + "type": "text" + }, + { + "bbox": [ + 440, + 114, + 504, + 126 + ], + "score": 0.9, + "content": "q \\colon \\mathbb { N } ^ { m } [ 0 , 1 ]", + "type": "inline_equation" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 125, + 505, + 137 + ], + "spans": [ + { + "bbox": [ + 106, + 125, + 433, + 137 + ], + "score": 1.0, + "content": "on these histograms computing the bound according to Proposition 7. The value", + "type": "text" + }, + { + "bbox": [ + 434, + 126, + 453, + 137 + ], + "score": 0.92, + "content": "q ( { \\bar { n } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 454, + 125, + 505, + 137 + ], + "score": 1.0, + "content": "can be used", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 104, + 136, + 506, + 151 + ], + "spans": [ + { + "bbox": [ + 104, + 136, + 118, + 151 + ], + "score": 1.0, + "content": "as", + "type": "text" + }, + { + "bbox": [ + 118, + 138, + 124, + 149 + ], + "score": 0.83, + "content": "\\tilde { q }", + "type": "inline_equation" + }, + { + "bbox": [ + 124, + 136, + 351, + 151 + ], + "score": 1.0, + "content": "in the application of Theorem 6. Additionally we have", + "type": "text" + }, + { + "bbox": [ + 351, + 136, + 367, + 147 + ], + "score": 0.9, + "content": "\\boldsymbol { n } ^ { ( i ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 368, + 136, + 414, + 151 + ], + "score": 1.0, + "content": "denote the", + "type": "text" + }, + { + "bbox": [ + 415, + 138, + 419, + 147 + ], + "score": 0.75, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 136, + 506, + 151 + ], + "score": 1.0, + "content": "-th highest bar in the", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 148, + 152, + 162 + ], + "spans": [ + { + "bbox": [ + 105, + 148, + 152, + 162 + ], + "score": 1.0, + "content": "histogram.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 3, + "bbox_fs": [ + 104, + 101, + 507, + 162 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 164, + 455, + 177 + ], + "lines": [ + { + "bbox": [ + 106, + 164, + 455, + 178 + ], + "spans": [ + { + "bbox": [ + 106, + 164, + 288, + 178 + ], + "score": 1.0, + "content": "We aim at calculating a smooth sensitivity of", + "type": "text" + }, + { + "bbox": [ + 288, + 165, + 324, + 177 + ], + "score": 0.92, + "content": "\\beta \\left( q ( \\bar { n } ) \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 164, + 455, + 178 + ], + "score": 1.0, + "content": "whose definition we recall now.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6, + "bbox_fs": [ + 106, + 164, + 455, + 178 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 179, + 505, + 201 + ], + "lines": [ + { + "bbox": [ + 105, + 177, + 506, + 192 + ], + "spans": [ + { + "bbox": [ + 105, + 177, + 389, + 192 + ], + "score": 1.0, + "content": "Definition 12 (Smooth Sensitivity). Given the smoothness parameter", + "type": "text" + }, + { + "bbox": [ + 390, + 180, + 397, + 190 + ], + "score": 0.76, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 397, + 177, + 409, + 192 + ], + "score": 1.0, + "content": ", a", + "type": "text" + }, + { + "bbox": [ + 410, + 180, + 417, + 190 + ], + "score": 0.82, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 177, + 506, + 192 + ], + "score": 1.0, + "content": "-smooth sensitivity of", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 107, + 190, + 181, + 203 + ], + "spans": [ + { + "bbox": [ + 107, + 190, + 127, + 202 + ], + "score": 0.91, + "content": "f ( n )", + "type": "inline_equation" + }, + { + "bbox": [ + 128, + 190, + 181, + 203 + ], + "score": 1.0, + "content": "is defined as", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5, + "bbox_fs": [ + 105, + 177, + 506, + 203 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 215, + 203, + 395, + 225 + ], + "lines": [ + { + "bbox": [ + 215, + 203, + 395, + 225 + ], + "spans": [ + { + "bbox": [ + 215, + 203, + 395, + 225 + ], + "score": 0.92, + "content": "\\mathrm { S S } _ { \\beta } ( \\bar { n } ) \\triangleq \\operatorname* { m a x } _ { d \\geq 0 } e ^ { - \\beta d } \\cdot \\operatorname* { m a x } _ { \\bar { n } ^ { \\prime } : \\mathrm { d i s t } ( \\bar { n } , \\bar { n } ^ { \\prime } ) \\leq d } \\tilde { \\mathrm { L S } } ( \\bar { n } ^ { \\prime } ) ,", + "type": "interline_equation", + "image_path": "0e0f2fa2554b39340a31602d93847c48ad1d028bf20f0694b831ba5bf92dc15f.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 215, + 203, + 395, + 225 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 228, + 132, + 239 + ], + "lines": [ + { + "bbox": [ + 105, + 227, + 135, + 241 + ], + "spans": [ + { + "bbox": [ + 105, + 227, + 135, + 241 + ], + "score": 1.0, + "content": "where", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10, + "bbox_fs": [ + 105, + 227, + 135, + 241 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 227, + 241, + 384, + 262 + ], + "lines": [ + { + "bbox": [ + 227, + 241, + 384, + 262 + ], + "spans": [ + { + "bbox": [ + 227, + 241, + 384, + 262 + ], + "score": 0.92, + "content": "\\tilde { \\mathrm { L S } } ( \\bar { n } ) \\geq \\operatorname* { m a x } _ { \\bar { n } ^ { \\prime } : \\mathrm { d i s t } ( \\bar { n } , \\bar { n } ^ { \\prime } ) = 1 } | f ( n ) - f ( n ^ { \\prime } ) |", + "type": "interline_equation", + "image_path": "e801863ac7d8815bf8d9a8c052f211fb10b2460049e33cfc00e6caddff5ab968.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 227, + 241, + 384, + 262 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 265, + 273, + 277 + ], + "lines": [ + { + "bbox": [ + 106, + 264, + 274, + 278 + ], + "spans": [ + { + "bbox": [ + 106, + 264, + 274, + 278 + ], + "score": 1.0, + "content": "is an upper bound on the local sensitivity.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12, + "bbox_fs": [ + 106, + 264, + 274, + 278 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 284, + 506, + 318 + ], + "lines": [ + { + "bbox": [ + 106, + 284, + 505, + 298 + ], + "spans": [ + { + "bbox": [ + 106, + 284, + 387, + 298 + ], + "score": 1.0, + "content": "We now describe Algorithms 3–5 computing a smooth sensitivity of", + "type": "text" + }, + { + "bbox": [ + 387, + 285, + 419, + 297 + ], + "score": 0.94, + "content": "\\beta \\left( q ( \\cdot ) \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 284, + 505, + 298 + ], + "score": 1.0, + "content": ". The algorithms as-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 295, + 506, + 310 + ], + "spans": [ + { + "bbox": [ + 105, + 295, + 327, + 310 + ], + "score": 1.0, + "content": "sume the existence of efficiently computable functions", + "type": "text" + }, + { + "bbox": [ + 327, + 296, + 388, + 308 + ], + "score": 0.89, + "content": "q \\colon \\mathbb { N } ^ { m } [ 0 , 1 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 388, + 295, + 392, + 310 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 393, + 296, + 484, + 308 + ], + "score": 0.85, + "content": "\\mathrm { B _ { L } } , \\mathrm { B _ { U } } \\colon [ 0 , 1 ] \\to [ 0 , 1 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 485, + 295, + 506, + 310 + ], + "score": 1.0, + "content": ", and", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 306, + 164, + 320 + ], + "spans": [ + { + "bbox": [ + 105, + 306, + 149, + 320 + ], + "score": 1.0, + "content": "a constant", + "type": "text" + }, + { + "bbox": [ + 149, + 309, + 159, + 318 + ], + "score": 0.85, + "content": "q _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 306, + 164, + 320 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14, + "bbox_fs": [ + 105, + 284, + 506, + 320 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 323, + 504, + 347 + ], + "lines": [ + { + "bbox": [ + 106, + 324, + 506, + 336 + ], + "spans": [ + { + "bbox": [ + 106, + 324, + 207, + 336 + ], + "score": 1.0, + "content": "Informally, the functions", + "type": "text" + }, + { + "bbox": [ + 207, + 324, + 222, + 335 + ], + "score": 0.84, + "content": "\\mathrm { B _ { U } }", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 324, + 240, + 336 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 240, + 324, + 254, + 335 + ], + "score": 0.87, + "content": "\\mathrm { B _ { L } }", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 324, + 448, + 336 + ], + "score": 1.0, + "content": "respectively upper and lower bound the value of", + "type": "text" + }, + { + "bbox": [ + 448, + 326, + 454, + 335 + ], + "score": 0.81, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 455, + 324, + 506, + 336 + ], + "score": 1.0, + "content": "evaluated at", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 335, + 505, + 348 + ], + "spans": [ + { + "bbox": [ + 106, + 335, + 171, + 348 + ], + "score": 1.0, + "content": "any neighbor of", + "type": "text" + }, + { + "bbox": [ + 171, + 336, + 178, + 345 + ], + "score": 0.79, + "content": "\\bar { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 335, + 202, + 348 + ], + "score": 1.0, + "content": "given", + "type": "text" + }, + { + "bbox": [ + 203, + 335, + 222, + 347 + ], + "score": 0.91, + "content": "q ( { \\bar { n } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 335, + 242, + 348 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 243, + 335, + 268, + 347 + ], + "score": 0.92, + "content": "[ 0 , q _ { 0 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 335, + 505, + 348 + ], + "score": 1.0, + "content": "limits the range of applicability of data-dependent analysis.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5, + "bbox_fs": [ + 106, + 324, + 506, + 348 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 351, + 465, + 363 + ], + "lines": [ + { + "bbox": [ + 106, + 351, + 466, + 365 + ], + "spans": [ + { + "bbox": [ + 106, + 351, + 164, + 365 + ], + "score": 1.0, + "content": "The functions", + "type": "text" + }, + { + "bbox": [ + 164, + 352, + 178, + 363 + ], + "score": 0.88, + "content": "\\mathrm { B _ { L } }", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 351, + 195, + 365 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 196, + 352, + 210, + 363 + ], + "score": 0.86, + "content": "\\mathrm { B _ { U } }", + "type": "inline_equation" + }, + { + "bbox": [ + 211, + 351, + 466, + 365 + ], + "score": 1.0, + "content": "are defined as follows. Their derivation appears in Section B.4.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18, + "bbox_fs": [ + 106, + 351, + 466, + 365 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 185, + 365, + 425, + 423 + ], + "lines": [ + { + "bbox": [ + 185, + 365, + 425, + 423 + ], + "spans": [ + { + "bbox": [ + 185, + 365, + 425, + 423 + ], + "score": 0.94, + "content": "\\begin{array} { l } { { \\displaystyle { \\mathrm { B } } _ { \\mathrm { U } } ( q ) \\triangleq \\operatorname* { m i n } \\left\\{ \\frac { m - 1 } { 2 } \\mathrm { e r f c } \\left( \\mathrm { e r f c } ^ { - 1 } \\left( \\frac { 2 q } { m - 1 } \\right) - \\frac { 1 } { \\sigma } \\right) , 1 \\right\\} , } } \\\\ { { \\displaystyle { \\mathrm { B } } _ { \\mathrm { L } } ( q ) \\triangleq \\frac { m - 1 } { 2 } \\mathrm { e r f c } \\left( \\mathrm { e r f c } ^ { - 1 } \\left( \\frac { 2 q } { m - 1 } \\right) + \\frac { 1 } { \\sigma } \\right) , } } \\end{array}", + "type": "interline_equation", + "image_path": "4d98ba6b423631d450213ea11cc140d6b38b9f2a647cfb7427d6ff9b4724b3d0.jpg" + } + ] + } + ], + "index": 20.5, + "virtual_lines": [ + { + "bbox": [ + 185, + 365, + 425, + 379.5 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 185, + 379.5, + 425, + 394.0 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 185, + 394.0, + 425, + 408.5 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 185, + 408.5, + 425, + 423.0 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 435, + 504, + 459 + ], + "lines": [ + { + "bbox": [ + 106, + 435, + 505, + 448 + ], + "spans": [ + { + "bbox": [ + 106, + 435, + 314, + 448 + ], + "score": 1.0, + "content": "Algorithm 3 – Local Sensitivity: use the functions", + "type": "text" + }, + { + "bbox": [ + 315, + 436, + 329, + 447 + ], + "score": 0.73, + "content": "\\mathrm { B _ { U } }", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 435, + 347, + 448 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 347, + 437, + 361, + 447 + ], + "score": 0.86, + "content": "\\mathrm { B _ { L } }", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 435, + 505, + 448 + ], + "score": 1.0, + "content": "to compute (an upper bound) of the", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 446, + 489, + 459 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 212, + 459 + ], + "score": 1.0, + "content": "local sensitivity at a given", + "type": "text" + }, + { + "bbox": [ + 212, + 448, + 219, + 458 + ], + "score": 0.74, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 446, + 366, + 459 + ], + "score": 1.0, + "content": "value by looking at the difference of", + "type": "text" + }, + { + "bbox": [ + 367, + 446, + 387, + 459 + ], + "score": 0.91, + "content": "\\beta \\left( \\cdot \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 446, + 489, + 459 + ], + "score": 1.0, + "content": "evaluated on the bounds.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5, + "bbox_fs": [ + 105, + 435, + 505, + 459 + ] + }, + { + "type": "table", + "bbox": [ + 110, + 461, + 505, + 533 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 110, + 461, + 505, + 533 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 110, + 461, + 505, + 533 + ], + "spans": [ + { + "bbox": [ + 110, + 461, + 505, + 533 + ], + "score": 0.569, + "html": "
procedure LS(q)
2: if q1≤q≤ qo then q1 = BL(qo). Interpolate the middle part.
3: q↑q1 end if
4: 5:return max{β(Bu(q))-β(q),β(q)-β(BL(q))}
6: end procedure
", + "type": "table", + "image_path": "6a31d795155be45c1cb5e956266a989f2c78f2afa0fa20bb3ff6c48c0ba271f5.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 110, + 461, + 505, + 485.0 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 110, + 485.0, + 505, + 509.0 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 110, + 509.0, + 505, + 533.0 + ], + "spans": [], + "index": 27 + } + ] + } + ], + "index": 26 + }, + { + "type": "title", + "bbox": [ + 108, + 551, + 257, + 563 + ], + "lines": [ + { + "bbox": [ + 105, + 550, + 258, + 565 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 258, + 565 + ], + "score": 1.0, + "content": "B.2 NOTATION AND CONDITIONS", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 106, + 572, + 504, + 595 + ], + "lines": [ + { + "bbox": [ + 105, + 572, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 505, + 585 + ], + "score": 1.0, + "content": "Notation. We find that the algorithm and the proof of its correctness are more naturally expressed", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 582, + 442, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 442, + 596 + ], + "score": 1.0, + "content": "if we relax the notions of a histogram and its neighbors to allow non-integer values.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5, + "bbox_fs": [ + 105, + 572, + 505, + 596 + ] + }, + { + "type": "list", + "bbox": [ + 133, + 603, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 132, + 601, + 506, + 617 + ], + "spans": [ + { + "bbox": [ + 132, + 601, + 506, + 617 + ], + "score": 1.0, + "content": "• We generalize histograms to be any vector with non-negative real values. This relaxation is", + "type": "text" + } + ], + "index": 31, + "is_list_start_line": true + }, + { + "bbox": [ + 141, + 613, + 505, + 627 + ], + "spans": [ + { + "bbox": [ + 141, + 613, + 505, + 627 + ], + "score": 1.0, + "content": "used only in the analysis of algorithms; the actual computations are performed exclusively", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 141, + 626, + 251, + 637 + ], + "spans": [ + { + "bbox": [ + 141, + 626, + 251, + 637 + ], + "score": 1.0, + "content": "over integer-valued inputs.", + "type": "text" + } + ], + "index": 33, + "is_list_end_line": true + }, + { + "bbox": [ + 132, + 639, + 506, + 655 + ], + "spans": [ + { + "bbox": [ + 132, + 639, + 158, + 655 + ], + "score": 1.0, + "content": "• Let", + "type": "text" + }, + { + "bbox": [ + 158, + 640, + 257, + 652 + ], + "score": 0.91, + "content": "\\bar { n } = [ n _ { 1 } , \\dots , n _ { m } ] \\in \\mathbb { R } ^ { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 639, + 260, + 655 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 261, + 641, + 290, + 652 + ], + "score": 0.88, + "content": "n _ { i } \\geq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 290, + 639, + 387, + 655 + ], + "score": 1.0, + "content": "denote a histogram. Let", + "type": "text" + }, + { + "bbox": [ + 387, + 639, + 404, + 650 + ], + "score": 0.9, + "content": "\\boldsymbol { n } ^ { ( i ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 404, + 639, + 448, + 655 + ], + "score": 1.0, + "content": "denote the", + "type": "text" + }, + { + "bbox": [ + 449, + 641, + 453, + 650 + ], + "score": 0.74, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 453, + 639, + 506, + 655 + ], + "score": 1.0, + "content": "-th bar in the", + "type": "text" + } + ], + "index": 34, + "is_list_start_line": true + }, + { + "bbox": [ + 141, + 652, + 214, + 663 + ], + "spans": [ + { + "bbox": [ + 141, + 652, + 214, + 663 + ], + "score": 1.0, + "content": "descending order.", + "type": "text" + } + ], + "index": 35, + "is_list_end_line": true + }, + { + "bbox": [ + 134, + 664, + 506, + 678 + ], + "spans": [ + { + "bbox": [ + 134, + 664, + 369, + 678 + ], + "score": 1.0, + "content": "• Define a “move” as increasing one bar by some value in", + "type": "text" + }, + { + "bbox": [ + 369, + 666, + 389, + 678 + ], + "score": 0.3, + "content": "[ 0 , 1 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 664, + 506, + 678 + ], + "score": 1.0, + "content": "and decreasing one bar by a", + "type": "text" + } + ], + "index": 36, + "is_list_start_line": true + }, + { + "bbox": [ + 141, + 676, + 506, + 689 + ], + "spans": [ + { + "bbox": [ + 141, + 676, + 255, + 689 + ], + "score": 1.0, + "content": "(possibly different) value in", + "type": "text" + }, + { + "bbox": [ + 255, + 677, + 276, + 689 + ], + "score": 0.49, + "content": "[ 0 , 1 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 276, + 676, + 506, + 689 + ], + "score": 1.0, + "content": "subject to the resulting value be non-negative. Notice the", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 141, + 687, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 141, + 687, + 506, + 700 + ], + "score": 1.0, + "content": "difference between the original problem and our relaxation. In the original formulation, the", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 141, + 698, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 141, + 698, + 506, + 712 + ], + "score": 1.0, + "content": "histogram takes only integer values and we can only increase/decrease them by exactly 1.", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 141, + 709, + 504, + 723 + ], + "spans": [ + { + "bbox": [ + 141, + 709, + 483, + 723 + ], + "score": 1.0, + "content": "In contrast, we allow real values and a teacher can contribute an arbitrary amount in", + "type": "text" + }, + { + "bbox": [ + 483, + 710, + 504, + 722 + ], + "score": 0.58, + "content": "[ 0 , 1 ]", + "type": "inline_equation" + } + ], + "index": 40 + }, + { + "bbox": [ + 142, + 721, + 210, + 732 + ], + "spans": [ + { + "bbox": [ + 142, + 721, + 210, + 732 + ], + "score": 1.0, + "content": "to any one class.", + "type": "text" + } + ], + "index": 41, + "is_list_end_line": true + } + ], + "index": 36, + "bbox_fs": [ + 132, + 601, + 506, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 506, + 118 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 354, + 96 + ], + "score": 1.0, + "content": "Algorithm 4 – Sensitivity at a distance: given a histogram", + "type": "text" + }, + { + "bbox": [ + 354, + 84, + 361, + 93 + ], + "score": 0.71, + "content": "\\bar { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 82, + 473, + 96 + ], + "score": 1.0, + "content": ", compute the sensitivity of", + "type": "text" + }, + { + "bbox": [ + 473, + 83, + 493, + 95 + ], + "score": 0.9, + "content": "\\beta \\left( \\cdot \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 494, + 82, + 506, + 96 + ], + "score": 1.0, + "content": "at", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 95, + 506, + 109 + ], + "spans": [ + { + "bbox": [ + 106, + 95, + 173, + 109 + ], + "score": 1.0, + "content": "distance at most", + "type": "text" + }, + { + "bbox": [ + 173, + 96, + 180, + 106 + ], + "score": 0.69, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 180, + 95, + 313, + 109 + ], + "score": 1.0, + "content": "using the procedure LS˜ , function", + "type": "text" + }, + { + "bbox": [ + 314, + 95, + 330, + 108 + ], + "score": 0.89, + "content": "q ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 95, + 373, + 109 + ], + "score": 1.0, + "content": ", constants", + "type": "text" + }, + { + "bbox": [ + 374, + 97, + 384, + 107 + ], + "score": 0.85, + "content": "q _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 384, + 95, + 402, + 109 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 402, + 95, + 454, + 108 + ], + "score": 0.93, + "content": "q _ { 1 } = \\mathrm { B _ { L } } ( q _ { 0 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 454, + 95, + 506, + 109 + ], + "score": 1.0, + "content": ", and careful", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "table", + "bbox": [ + 105, + 109, + 505, + 526 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 105, + 109, + 505, + 526 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 109, + 505, + 526 + ], + "spans": [ + { + "bbox": [ + 105, + 109, + 505, + 526 + ], + "score": 0.767, + "html": "
case analysis that finds the neighbor at distance d with the maximum sensitivity.
1: procedure ATDISTANCED(n, d)
2: q←q(n)> q is in the flat region.
3: 4:if q1 ≤q≤ go then
return LS(q), STOP
5: end if
6:if q<qithen Need to increase q.
7:if n(1)-n(2)< 2d then n(i) is the ith largest element.
8:return LS(qi), STOP
9:else
10:n'← SORT(n)+[-d,d,O,...,0]
11:q'←q(n')
12:if q' >qi then
13:return LS(qo), STOP
14:else
15:return LS(q'),CONTINUE
16:end if
17:end if
18:else Need to decrease q.
19:
20:n↑[n,0,...,0]
21:q'←q(n')
22:return LS(q'), STOP
23:else
24:n' ← SORT(n)+[d,0,...,0]
25:for d' =1,...,d do
26:n'(2) ←n(2)-1 The index of n'(2) may change.
27:end for
28:q'←q(n')
29:if q'<qo then
30:return LS(qo), STOP
31:else
32:return LS(q'), CONTINUE
33:end if
34:end if
35: end if 36: end procedure
", + "type": "table", + "image_path": "a34773ddf53c93b1801fa950ead0a5c7667654d52deb65c13dd3d09310faa7cf.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 105, + 109, + 505, + 248.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 105, + 248.0, + 505, + 387.0 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 105, + 387.0, + 505, + 526.0 + ], + "spans": [], + "index": 4 + } + ] + } + ], + "index": 3 + }, + { + "type": "title", + "bbox": [ + 107, + 540, + 503, + 564 + ], + "lines": [ + { + "bbox": [ + 105, + 540, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 540, + 307, + 554 + ], + "score": 1.0, + "content": "Algorithm 5 – Smooth Sensitivity: Compute the", + "type": "text" + }, + { + "bbox": [ + 307, + 541, + 315, + 552 + ], + "score": 0.81, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 315, + 540, + 401, + 554 + ], + "score": 1.0, + "content": "smooth sensitivity of", + "type": "text" + }, + { + "bbox": [ + 401, + 541, + 421, + 552 + ], + "score": 0.88, + "content": "\\beta \\left( \\cdot \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 422, + 540, + 505, + 554 + ], + "score": 1.0, + "content": "via Definition 12 by", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 103, + 549, + 469, + 566 + ], + "spans": [ + { + "bbox": [ + 103, + 549, + 443, + 566 + ], + "score": 1.0, + "content": "looking at sensitivities at various distances and returning the maximum weighted by", + "type": "text" + }, + { + "bbox": [ + 444, + 551, + 465, + 561 + ], + "score": 0.86, + "content": "e ^ { - \\beta d }", + "type": "inline_equation" + }, + { + "bbox": [ + 465, + 549, + 469, + 566 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5 + }, + { + "type": "text", + "bbox": [ + 110, + 567, + 343, + 667 + ], + "lines": [ + { + "bbox": [ + 110, + 566, + 287, + 579 + ], + "spans": [ + { + "bbox": [ + 110, + 566, + 263, + 579 + ], + "score": 1.0, + "content": "1: procedure SMOOTHSENSITIVITY", + "type": "text" + }, + { + "bbox": [ + 263, + 567, + 287, + 579 + ], + "score": 0.29, + "content": "( \\bar { n } , \\beta )", + "type": "inline_equation" + } + ], + "index": 7 + }, + { + "bbox": [ + 111, + 577, + 169, + 590 + ], + "spans": [ + { + "bbox": [ + 111, + 578, + 121, + 590 + ], + "score": 1.0, + "content": "2:", + "type": "text" + }, + { + "bbox": [ + 137, + 577, + 169, + 589 + ], + "score": 1.0, + "content": "S ← 0", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 110, + 588, + 168, + 601 + ], + "spans": [ + { + "bbox": [ + 110, + 588, + 122, + 601 + ], + "score": 1.0, + "content": "3:", + "type": "text" + }, + { + "bbox": [ + 136, + 588, + 168, + 600 + ], + "score": 1.0, + "content": "d ← 0", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 111, + 600, + 169, + 612 + ], + "spans": [ + { + "bbox": [ + 111, + 600, + 121, + 611 + ], + "score": 1.0, + "content": "4:", + "type": "text" + }, + { + "bbox": [ + 136, + 600, + 169, + 612 + ], + "score": 1.0, + "content": "repeat", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 111, + 610, + 342, + 624 + ], + "spans": [ + { + "bbox": [ + 111, + 611, + 121, + 623 + ], + "score": 1.0, + "content": "5:", + "type": "text" + }, + { + "bbox": [ + 153, + 613, + 159, + 621 + ], + "score": 0.35, + "content": "c", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 610, + 239, + 624 + ], + "score": 1.0, + "content": ", StoppingCondition", + "type": "text" + }, + { + "bbox": [ + 240, + 612, + 253, + 621 + ], + "score": 0.63, + "content": "", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 610, + 318, + 624 + ], + "score": 1.0, + "content": "ATDISTANCED", + "type": "text" + }, + { + "bbox": [ + 318, + 611, + 342, + 623 + ], + "score": 0.27, + "content": "( \\bar { n } , d )", + "type": "inline_equation" + } + ], + "index": 11 + }, + { + "bbox": [ + 110, + 620, + 250, + 634 + ], + "spans": [ + { + "bbox": [ + 110, + 622, + 122, + 634 + ], + "score": 1.0, + "content": "6:", + "type": "text" + }, + { + "bbox": [ + 151, + 620, + 250, + 633 + ], + "score": 1.0, + "content": "S ← max{S, c · e−βd}", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 110, + 632, + 200, + 645 + ], + "spans": [ + { + "bbox": [ + 110, + 633, + 122, + 645 + ], + "score": 1.0, + "content": "7:", + "type": "text" + }, + { + "bbox": [ + 153, + 632, + 200, + 644 + ], + "score": 1.0, + "content": "d ← d + 1", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 110, + 643, + 275, + 655 + ], + "spans": [ + { + "bbox": [ + 110, + 644, + 122, + 655 + ], + "score": 1.0, + "content": "8:", + "type": "text" + }, + { + "bbox": [ + 137, + 643, + 238, + 655 + ], + "score": 1.0, + "content": "until StoppingCondition", + "type": "text" + }, + { + "bbox": [ + 238, + 645, + 250, + 654 + ], + "score": 0.52, + "content": "=", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 643, + 275, + 655 + ], + "score": 1.0, + "content": "STOP", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 110, + 654, + 188, + 667 + ], + "spans": [ + { + "bbox": [ + 110, + 654, + 188, + 667 + ], + "score": 1.0, + "content": "9: end procedure", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 133, + 686, + 502, + 699 + ], + "lines": [ + { + "bbox": [ + 131, + 684, + 503, + 701 + ], + "spans": [ + { + "bbox": [ + 131, + 684, + 320, + 701 + ], + "score": 1.0, + "content": "• Define the distance between two histograms", + "type": "text" + }, + { + "bbox": [ + 321, + 687, + 395, + 699 + ], + "score": 0.89, + "content": "\\bar { n } = ( n _ { 1 } , \\dots , n _ { m } )", + "type": "inline_equation" + }, + { + "bbox": [ + 395, + 684, + 413, + 701 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 413, + 686, + 490, + 699 + ], + "score": 0.91, + "content": "\\hat { n } ^ { \\prime } = ( n _ { 1 } ^ { \\prime } , \\dots , n _ { m } ^ { \\prime } )", + "type": "inline_equation" + }, + { + "bbox": [ + 490, + 684, + 503, + 701 + ], + "score": 1.0, + "content": "as", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "interline_equation", + "bbox": [ + 203, + 699, + 441, + 739 + ], + "lines": [ + { + "bbox": [ + 203, + 699, + 441, + 739 + ], + "spans": [ + { + "bbox": [ + 203, + 699, + 441, + 739 + ], + "score": 0.89, + "content": "d ( \\bar { n } , \\bar { n } ^ { \\prime } ) \\triangleq \\operatorname* { m a x } \\left\\{ \\sum _ { \\substack { i : n _ { i } > n _ { i } ^ { \\prime } } } \\lceil n _ { i } - n _ { i } ^ { \\prime } \\rceil , \\quad \\sum _ { \\substack { i : n _ { i } < n _ { i } ^ { \\prime } } } \\lceil n _ { i } ^ { \\prime } - n _ { i } \\rceil \\right\\} ,", + "type": "interline_equation", + "image_path": "d62dd9e9d87ca604e4a74552a88afbd4a6db6bcb558c27bd67e92c99f0b4692c.jpg" + } + ] + } + ], + "index": 17.5, + "virtual_lines": [ + { + "bbox": [ + 203, + 699, + 441, + 719.0 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 203, + 719.0, + 441, + 739.0 + ], + "spans": [], + "index": 18 + } + ] + } + ], + "page_idx": 22, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 298, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 298, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 15 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 506, + 118 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 354, + 96 + ], + "score": 1.0, + "content": "Algorithm 4 – Sensitivity at a distance: given a histogram", + "type": "text" + }, + { + "bbox": [ + 354, + 84, + 361, + 93 + ], + "score": 0.71, + "content": "\\bar { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 82, + 473, + 96 + ], + "score": 1.0, + "content": ", compute the sensitivity of", + "type": "text" + }, + { + "bbox": [ + 473, + 83, + 493, + 95 + ], + "score": 0.9, + "content": "\\beta \\left( \\cdot \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 494, + 82, + 506, + 96 + ], + "score": 1.0, + "content": "at", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 95, + 506, + 109 + ], + "spans": [ + { + "bbox": [ + 106, + 95, + 173, + 109 + ], + "score": 1.0, + "content": "distance at most", + "type": "text" + }, + { + "bbox": [ + 173, + 96, + 180, + 106 + ], + "score": 0.69, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 180, + 95, + 313, + 109 + ], + "score": 1.0, + "content": "using the procedure LS˜ , function", + "type": "text" + }, + { + "bbox": [ + 314, + 95, + 330, + 108 + ], + "score": 0.89, + "content": "q ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 95, + 373, + 109 + ], + "score": 1.0, + "content": ", constants", + "type": "text" + }, + { + "bbox": [ + 374, + 97, + 384, + 107 + ], + "score": 0.85, + "content": "q _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 384, + 95, + 402, + 109 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 402, + 95, + 454, + 108 + ], + "score": 0.93, + "content": "q _ { 1 } = \\mathrm { B _ { L } } ( q _ { 0 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 454, + 95, + 506, + 109 + ], + "score": 1.0, + "content": ", and careful", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 106, + 82, + 506, + 109 + ] + }, + { + "type": "table", + "bbox": [ + 105, + 109, + 505, + 526 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 105, + 109, + 505, + 526 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 109, + 505, + 526 + ], + "spans": [ + { + "bbox": [ + 105, + 109, + 505, + 526 + ], + "score": 0.767, + "html": "
case analysis that finds the neighbor at distance d with the maximum sensitivity.
1: procedure ATDISTANCED(n, d)
2: q←q(n)> q is in the flat region.
3: 4:if q1 ≤q≤ go then
return LS(q), STOP
5: end if
6:if q<qithen Need to increase q.
7:if n(1)-n(2)< 2d then n(i) is the ith largest element.
8:return LS(qi), STOP
9:else
10:n'← SORT(n)+[-d,d,O,...,0]
11:q'←q(n')
12:if q' >qi then
13:return LS(qo), STOP
14:else
15:return LS(q'),CONTINUE
16:end if
17:end if
18:else Need to decrease q.
19:
20:n↑[n,0,...,0]
21:q'←q(n')
22:return LS(q'), STOP
23:else
24:n' ← SORT(n)+[d,0,...,0]
25:for d' =1,...,d do
26:n'(2) ←n(2)-1 The index of n'(2) may change.
27:end for
28:q'←q(n')
29:if q'<qo then
30:return LS(qo), STOP
31:else
32:return LS(q'), CONTINUE
33:end if
34:end if
35: end if 36: end procedure
", + "type": "table", + "image_path": "a34773ddf53c93b1801fa950ead0a5c7667654d52deb65c13dd3d09310faa7cf.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 105, + 109, + 505, + 248.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 105, + 248.0, + 505, + 387.0 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 105, + 387.0, + 505, + 526.0 + ], + "spans": [], + "index": 4 + } + ] + } + ], + "index": 3 + }, + { + "type": "title", + "bbox": [ + 107, + 540, + 503, + 564 + ], + "lines": [ + { + "bbox": [ + 105, + 540, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 540, + 307, + 554 + ], + "score": 1.0, + "content": "Algorithm 5 – Smooth Sensitivity: Compute the", + "type": "text" + }, + { + "bbox": [ + 307, + 541, + 315, + 552 + ], + "score": 0.81, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 315, + 540, + 401, + 554 + ], + "score": 1.0, + "content": "smooth sensitivity of", + "type": "text" + }, + { + "bbox": [ + 401, + 541, + 421, + 552 + ], + "score": 0.88, + "content": "\\beta \\left( \\cdot \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 422, + 540, + 505, + 554 + ], + "score": 1.0, + "content": "via Definition 12 by", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 103, + 549, + 469, + 566 + ], + "spans": [ + { + "bbox": [ + 103, + 549, + 443, + 566 + ], + "score": 1.0, + "content": "looking at sensitivities at various distances and returning the maximum weighted by", + "type": "text" + }, + { + "bbox": [ + 444, + 551, + 465, + 561 + ], + "score": 0.86, + "content": "e ^ { - \\beta d }", + "type": "inline_equation" + }, + { + "bbox": [ + 465, + 549, + 469, + 566 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5 + }, + { + "type": "index", + "bbox": [ + 110, + 567, + 343, + 667 + ], + "lines": [ + { + "bbox": [ + 110, + 566, + 287, + 579 + ], + "spans": [ + { + "bbox": [ + 110, + 566, + 263, + 579 + ], + "score": 1.0, + "content": "1: procedure SMOOTHSENSITIVITY", + "type": "text" + }, + { + "bbox": [ + 263, + 567, + 287, + 579 + ], + "score": 0.29, + "content": "( \\bar { n } , \\beta )", + "type": "inline_equation" + } + ], + "index": 7, + "is_list_start_line": true + }, + { + "bbox": [ + 111, + 577, + 169, + 590 + ], + "spans": [ + { + "bbox": [ + 111, + 578, + 121, + 590 + ], + "score": 1.0, + "content": "2:", + "type": "text" + }, + { + "bbox": [ + 137, + 577, + 169, + 589 + ], + "score": 1.0, + "content": "S ← 0", + "type": "text" + } + ], + "index": 8, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 588, + 168, + 601 + ], + "spans": [ + { + "bbox": [ + 110, + 588, + 122, + 601 + ], + "score": 1.0, + "content": "3:", + "type": "text" + }, + { + "bbox": [ + 136, + 588, + 168, + 600 + ], + "score": 1.0, + "content": "d ← 0", + "type": "text" + } + ], + "index": 9, + "is_list_start_line": true + }, + { + "bbox": [ + 111, + 600, + 169, + 612 + ], + "spans": [ + { + "bbox": [ + 111, + 600, + 121, + 611 + ], + "score": 1.0, + "content": "4:", + "type": "text" + }, + { + "bbox": [ + 136, + 600, + 169, + 612 + ], + "score": 1.0, + "content": "repeat", + "type": "text" + } + ], + "index": 10, + "is_list_start_line": true + }, + { + "bbox": [ + 111, + 610, + 342, + 624 + ], + "spans": [ + { + "bbox": [ + 111, + 611, + 121, + 623 + ], + "score": 1.0, + "content": "5:", + "type": "text" + }, + { + "bbox": [ + 153, + 613, + 159, + 621 + ], + "score": 0.35, + "content": "c", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 610, + 239, + 624 + ], + "score": 1.0, + "content": ", StoppingCondition", + "type": "text" + }, + { + "bbox": [ + 240, + 612, + 253, + 621 + ], + "score": 0.63, + "content": "", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 610, + 318, + 624 + ], + "score": 1.0, + "content": "ATDISTANCED", + "type": "text" + }, + { + "bbox": [ + 318, + 611, + 342, + 623 + ], + "score": 0.27, + "content": "( \\bar { n } , d )", + "type": "inline_equation" + } + ], + "index": 11, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 620, + 250, + 634 + ], + "spans": [ + { + "bbox": [ + 110, + 622, + 122, + 634 + ], + "score": 1.0, + "content": "6:", + "type": "text" + }, + { + "bbox": [ + 151, + 620, + 250, + 633 + ], + "score": 1.0, + "content": "S ← max{S, c · e−βd}", + "type": "text" + } + ], + "index": 12, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 632, + 200, + 645 + ], + "spans": [ + { + "bbox": [ + 110, + 633, + 122, + 645 + ], + "score": 1.0, + "content": "7:", + "type": "text" + }, + { + "bbox": [ + 153, + 632, + 200, + 644 + ], + "score": 1.0, + "content": "d ← d + 1", + "type": "text" + } + ], + "index": 13, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 643, + 275, + 655 + ], + "spans": [ + { + "bbox": [ + 110, + 644, + 122, + 655 + ], + "score": 1.0, + "content": "8:", + "type": "text" + }, + { + "bbox": [ + 137, + 643, + 238, + 655 + ], + "score": 1.0, + "content": "until StoppingCondition", + "type": "text" + }, + { + "bbox": [ + 238, + 645, + 250, + 654 + ], + "score": 0.52, + "content": "=", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 643, + 275, + 655 + ], + "score": 1.0, + "content": "STOP", + "type": "text" + } + ], + "index": 14, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 654, + 188, + 667 + ], + "spans": [ + { + "bbox": [ + 110, + 654, + 188, + 667 + ], + "score": 1.0, + "content": "9: end procedure", + "type": "text" + } + ], + "index": 15, + "is_list_start_line": true + } + ], + "index": 11, + "bbox_fs": [ + 110, + 566, + 342, + 667 + ] + }, + { + "type": "text", + "bbox": [ + 133, + 686, + 502, + 699 + ], + "lines": [ + { + "bbox": [ + 131, + 684, + 503, + 701 + ], + "spans": [ + { + "bbox": [ + 131, + 684, + 320, + 701 + ], + "score": 1.0, + "content": "• Define the distance between two histograms", + "type": "text" + }, + { + "bbox": [ + 321, + 687, + 395, + 699 + ], + "score": 0.89, + "content": "\\bar { n } = ( n _ { 1 } , \\dots , n _ { m } )", + "type": "inline_equation" + }, + { + "bbox": [ + 395, + 684, + 413, + 701 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 413, + 686, + 490, + 699 + ], + "score": 0.91, + "content": "\\hat { n } ^ { \\prime } = ( n _ { 1 } ^ { \\prime } , \\dots , n _ { m } ^ { \\prime } )", + "type": "inline_equation" + }, + { + "bbox": [ + 490, + 684, + 503, + 701 + ], + "score": 1.0, + "content": "as", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16, + "bbox_fs": [ + 131, + 684, + 503, + 701 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 203, + 699, + 441, + 739 + ], + "lines": [ + { + "bbox": [ + 203, + 699, + 441, + 739 + ], + "spans": [ + { + "bbox": [ + 203, + 699, + 441, + 739 + ], + "score": 0.89, + "content": "d ( \\bar { n } , \\bar { n } ^ { \\prime } ) \\triangleq \\operatorname* { m a x } \\left\\{ \\sum _ { \\substack { i : n _ { i } > n _ { i } ^ { \\prime } } } \\lceil n _ { i } - n _ { i } ^ { \\prime } \\rceil , \\quad \\sum _ { \\substack { i : n _ { i } < n _ { i } ^ { \\prime } } } \\lceil n _ { i } ^ { \\prime } - n _ { i } \\rceil \\right\\} ,", + "type": "interline_equation", + "image_path": "d62dd9e9d87ca604e4a74552a88afbd4a6db6bcb558c27bd67e92c99f0b4692c.jpg" + } + ] + } + ], + "index": 17.5, + "virtual_lines": [ + { + "bbox": [ + 203, + 699, + 441, + 719.0 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 203, + 719.0, + 441, + 739.0 + ], + "spans": [], + "index": 18 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 142, + 82, + 505, + 116 + ], + "lines": [ + { + "bbox": [ + 141, + 81, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 141, + 81, + 505, + 95 + ], + "score": 1.0, + "content": "which is equal to the smallest number of “moves” needed to make the two histograms", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 141, + 92, + 505, + 107 + ], + "spans": [ + { + "bbox": [ + 141, + 92, + 505, + 107 + ], + "score": 1.0, + "content": "identical. We use the ceiling function since a single step can increase/decrease one bar by", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 141, + 105, + 184, + 115 + ], + "spans": [ + { + "bbox": [ + 141, + 105, + 184, + 115 + ], + "score": 1.0, + "content": "at most 1.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 142, + 117, + 402, + 129 + ], + "lines": [ + { + "bbox": [ + 142, + 117, + 403, + 130 + ], + "spans": [ + { + "bbox": [ + 142, + 117, + 376, + 130 + ], + "score": 1.0, + "content": "We say that two histograms are neighbors if their distance", + "type": "text" + }, + { + "bbox": [ + 376, + 118, + 383, + 127 + ], + "score": 0.76, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 117, + 403, + 130 + ], + "score": 1.0, + "content": "is 1.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 139, + 130, + 503, + 153 + ], + "lines": [ + { + "bbox": [ + 142, + 130, + 504, + 142 + ], + "spans": [ + { + "bbox": [ + 142, + 130, + 504, + 142 + ], + "score": 1.0, + "content": "Notice that analyses of Rényi differential privacy for LNMax, GNMax and the exponential", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 141, + 141, + 497, + 154 + ], + "spans": [ + { + "bbox": [ + 141, + 141, + 497, + 154 + ], + "score": 1.0, + "content": "mechanism are still applicable when the neighboring datasets are defined in this manner.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5 + }, + { + "type": "text", + "bbox": [ + 134, + 155, + 458, + 169 + ], + "lines": [ + { + "bbox": [ + 132, + 153, + 459, + 171 + ], + "spans": [ + { + "bbox": [ + 132, + 153, + 270, + 171 + ], + "score": 1.0, + "content": "• Given a randomized aggregator", + "type": "text" + }, + { + "bbox": [ + 271, + 155, + 335, + 169 + ], + "score": 0.92, + "content": "\\mathcal { M } : \\mathbb { R } _ { \\ge 0 } ^ { m } [ m ]", + "type": "inline_equation" + }, + { + "bbox": [ + 336, + 153, + 351, + 171 + ], + "score": 1.0, + "content": ", let", + "type": "text" + }, + { + "bbox": [ + 352, + 155, + 415, + 169 + ], + "score": 0.91, + "content": "q \\colon \\mathbb { R } _ { \\geq 0 } ^ { m } [ 0 , 1 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 153, + 459, + 171 + ], + "score": 1.0, + "content": "be so that", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "interline_equation", + "bbox": [ + 253, + 173, + 393, + 186 + ], + "lines": [ + { + "bbox": [ + 253, + 173, + 393, + 186 + ], + "spans": [ + { + "bbox": [ + 253, + 173, + 393, + 186 + ], + "score": 0.9, + "content": "q ( \\bar { n } ) \\geq \\mathbf { P r } [ \\mathcal { M } ( \\bar { n } ) \\neq \\operatorname { a r g m a x } ( \\bar { n } ) ] .", + "type": "interline_equation", + "image_path": "8471e0e213718b3fe46ab230dfbfff17f68134b7f1e57f67aa3edc8cca914986.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 253, + 173, + 393, + 186 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 140, + 190, + 504, + 213 + ], + "lines": [ + { + "bbox": [ + 142, + 189, + 505, + 203 + ], + "spans": [ + { + "bbox": [ + 142, + 189, + 283, + 203 + ], + "score": 1.0, + "content": "When the context is clear, we use", + "type": "text" + }, + { + "bbox": [ + 283, + 193, + 290, + 202 + ], + "score": 0.83, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 290, + 189, + 505, + 203 + ], + "score": 1.0, + "content": "to denote a specific value of the function, which, in", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 202, + 372, + 214 + ], + "spans": [ + { + "bbox": [ + 141, + 202, + 245, + 214 + ], + "score": 1.0, + "content": "particular, can be used as", + "type": "text" + }, + { + "bbox": [ + 245, + 203, + 251, + 213 + ], + "score": 0.84, + "content": "\\tilde { q }", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 202, + 372, + 214 + ], + "score": 1.0, + "content": "in applications of Theorem 6.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5 + }, + { + "type": "text", + "bbox": [ + 134, + 216, + 503, + 228 + ], + "lines": [ + { + "bbox": [ + 132, + 215, + 504, + 230 + ], + "spans": [ + { + "bbox": [ + 132, + 215, + 158, + 230 + ], + "score": 1.0, + "content": "• Let", + "type": "text" + }, + { + "bbox": [ + 158, + 216, + 213, + 228 + ], + "score": 0.89, + "content": "\\beta \\colon [ 0 , 1 ] \\mathbb { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 215, + 325, + 230 + ], + "score": 1.0, + "content": "be the function that maps a", + "type": "text" + }, + { + "bbox": [ + 325, + 219, + 331, + 228 + ], + "score": 0.81, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 215, + 504, + 230 + ], + "score": 1.0, + "content": "value to the value of the Rényi accountant.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 111, + 239, + 503, + 252 + ], + "lines": [ + { + "bbox": [ + 109, + 237, + 501, + 254 + ], + "spans": [ + { + "bbox": [ + 109, + 237, + 446, + 254 + ], + "score": 1.0, + "content": "Conditions. Throughout this section we will be referring to the list of conditions on", + "type": "text" + }, + { + "bbox": [ + 447, + 240, + 463, + 252 + ], + "score": 0.9, + "content": "q ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 463, + 237, + 480, + 254 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 481, + 239, + 501, + 252 + ], + "score": 0.9, + "content": "\\beta \\left( \\cdot \\right)", + "type": "inline_equation" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 122, + 260, + 506, + 439 + ], + "lines": [ + { + "bbox": [ + 122, + 260, + 354, + 273 + ], + "spans": [ + { + "bbox": [ + 122, + 260, + 196, + 273 + ], + "score": 1.0, + "content": "C1. The function", + "type": "text" + }, + { + "bbox": [ + 196, + 260, + 212, + 273 + ], + "score": 0.9, + "content": "q ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 260, + 340, + 273 + ], + "score": 1.0, + "content": "is continuous in each argument", + "type": "text" + }, + { + "bbox": [ + 340, + 263, + 351, + 271 + ], + "score": 0.85, + "content": "n _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 351, + 260, + 354, + 273 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 122, + 273, + 505, + 288 + ], + "spans": [ + { + "bbox": [ + 122, + 273, + 230, + 288 + ], + "score": 1.0, + "content": "C2. There exist functions", + "type": "text" + }, + { + "bbox": [ + 230, + 274, + 324, + 286 + ], + "score": 0.9, + "content": "\\mathrm { B _ { U } , B _ { L } \\colon [ 0 , 1 ] \\to [ 0 , 1 ] }", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 273, + 434, + 288 + ], + "score": 1.0, + "content": "such that for any neighbor", + "type": "text" + }, + { + "bbox": [ + 435, + 275, + 445, + 285 + ], + "score": 0.86, + "content": "\\bar { n } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 445, + 273, + 457, + 288 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 458, + 276, + 465, + 285 + ], + "score": 0.79, + "content": "\\bar { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 465, + 273, + 505, + 288 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 142, + 285, + 505, + 299 + ], + "spans": [ + { + "bbox": [ + 142, + 286, + 273, + 298 + ], + "score": 0.92, + "content": "\\mathrm { B } _ { \\mathrm { L } } ( q ( \\bar { n } ) ) \\leq q ( \\bar { n } ^ { \\prime } ) \\leq \\mathrm { B } _ { \\mathrm { U } } ( q ( \\bar { n } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 285, + 295, + 299 + ], + "score": 1.0, + "content": ", i.e.,", + "type": "text" + }, + { + "bbox": [ + 295, + 287, + 310, + 297 + ], + "score": 0.51, + "content": "\\mathrm { B _ { U } }", + "type": "inline_equation" + }, + { + "bbox": [ + 310, + 285, + 329, + 299 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 329, + 286, + 343, + 297 + ], + "score": 0.88, + "content": "\\mathrm { B _ { L } }", + "type": "inline_equation" + }, + { + "bbox": [ + 343, + 285, + 505, + 299 + ], + "score": 1.0, + "content": "provide upper and lower bounds on the", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 142, + 297, + 261, + 309 + ], + "spans": [ + { + "bbox": [ + 142, + 299, + 149, + 308 + ], + "score": 0.76, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 297, + 250, + 309 + ], + "score": 1.0, + "content": "value of any neighbor of", + "type": "text" + }, + { + "bbox": [ + 250, + 298, + 257, + 307 + ], + "score": 0.83, + "content": "\\bar { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 297, + 261, + 309 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 123, + 311, + 243, + 325 + ], + "spans": [ + { + "bbox": [ + 123, + 311, + 142, + 325 + ], + "score": 1.0, + "content": "C3.", + "type": "text" + }, + { + "bbox": [ + 142, + 311, + 168, + 324 + ], + "score": 0.9, + "content": "\\operatorname { B _ { L } } ( q )", + "type": "inline_equation" + }, + { + "bbox": [ + 169, + 311, + 232, + 325 + ], + "score": 1.0, + "content": "is increasing in", + "type": "text" + }, + { + "bbox": [ + 233, + 314, + 239, + 323 + ], + "score": 0.72, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 311, + 243, + 325 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 122, + 324, + 503, + 340 + ], + "spans": [ + { + "bbox": [ + 122, + 324, + 141, + 340 + ], + "score": 1.0, + "content": "C4.", + "type": "text" + }, + { + "bbox": [ + 142, + 326, + 157, + 337 + ], + "score": 0.67, + "content": "\\mathrm { B _ { U } }", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 324, + 175, + 340 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 176, + 326, + 189, + 337 + ], + "score": 0.87, + "content": "\\mathrm { B _ { L } }", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 324, + 438, + 340 + ], + "score": 1.0, + "content": "are functional inverses of each other in part of the range, i.e.,", + "type": "text" + }, + { + "bbox": [ + 438, + 326, + 503, + 338 + ], + "score": 0.89, + "content": "q = \\mathrm { B _ { L } } ( \\mathrm { B _ { U } } ( q ) )", + "type": "inline_equation" + } + ], + "index": 17 + }, + { + "bbox": [ + 140, + 336, + 505, + 350 + ], + "spans": [ + { + "bbox": [ + 140, + 336, + 170, + 350 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 171, + 337, + 215, + 349 + ], + "score": 0.93, + "content": "q \\in [ 0 , q _ { 0 } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 215, + 336, + 247, + 350 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 247, + 339, + 258, + 349 + ], + "score": 0.85, + "content": "q _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 336, + 387, + 350 + ], + "score": 1.0, + "content": "is defined below. Additionally", + "type": "text" + }, + { + "bbox": [ + 387, + 337, + 476, + 349 + ], + "score": 0.91, + "content": "\\mathrm { B } _ { \\mathrm { L } } ( \\bar { q } ) \\leq q \\bar { \\leq } \\mathrm { B } _ { \\mathrm { U } } ( q )", + "type": "inline_equation" + }, + { + "bbox": [ + 476, + 336, + 505, + 350 + ], + "score": 1.0, + "content": "for all", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 142, + 348, + 184, + 361 + ], + "spans": [ + { + "bbox": [ + 142, + 348, + 180, + 360 + ], + "score": 0.91, + "content": "q \\in [ 0 , 1 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 348, + 184, + 361 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 122, + 362, + 504, + 375 + ], + "spans": [ + { + "bbox": [ + 122, + 362, + 142, + 375 + ], + "score": 1.0, + "content": "C5.", + "type": "text" + }, + { + "bbox": [ + 142, + 362, + 162, + 375 + ], + "score": 0.9, + "content": "\\beta \\left( \\cdot \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 362, + 349, + 375 + ], + "score": 1.0, + "content": "has the following shape: there exist constants", + "type": "text" + }, + { + "bbox": [ + 350, + 363, + 361, + 374 + ], + "score": 0.89, + "content": "\\beta ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 362, + 380, + 375 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 380, + 363, + 417, + 374 + ], + "score": 0.89, + "content": "q _ { 0 } \\leq 0 . 5", + "type": "inline_equation" + }, + { + "bbox": [ + 418, + 362, + 460, + 375 + ], + "score": 1.0, + "content": ", such that", + "type": "text" + }, + { + "bbox": [ + 460, + 363, + 483, + 375 + ], + "score": 0.92, + "content": "\\beta \\left( q \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 483, + 362, + 504, + 375 + ], + "score": 1.0, + "content": "non-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 141, + 373, + 506, + 387 + ], + "spans": [ + { + "bbox": [ + 141, + 373, + 198, + 387 + ], + "score": 1.0, + "content": "decreasing in", + "type": "text" + }, + { + "bbox": [ + 199, + 374, + 223, + 385 + ], + "score": 0.92, + "content": "[ 0 , q _ { 0 } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 373, + 241, + 387 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 242, + 374, + 327, + 386 + ], + "score": 0.92, + "content": "\\bar { \\beta ( q ) } = \\beta ^ { * } \\ge \\beta ( q _ { 0 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 328, + 373, + 343, + 387 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 343, + 375, + 372, + 385 + ], + "score": 0.9, + "content": "q > q _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 373, + 430, + 387 + ], + "score": 1.0, + "content": ". The constant", + "type": "text" + }, + { + "bbox": [ + 431, + 374, + 442, + 385 + ], + "score": 0.9, + "content": "\\beta ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 443, + 373, + 506, + 387 + ], + "score": 1.0, + "content": "corresponds to", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 141, + 385, + 250, + 397 + ], + "spans": [ + { + "bbox": [ + 141, + 385, + 250, + 397 + ], + "score": 1.0, + "content": "a data-independent bound.", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 122, + 399, + 489, + 415 + ], + "spans": [ + { + "bbox": [ + 122, + 399, + 142, + 415 + ], + "score": 1.0, + "content": "C6.", + "type": "text" + }, + { + "bbox": [ + 143, + 399, + 262, + 413 + ], + "score": 0.93, + "content": "\\Delta \\beta ( q ) \\triangleq \\beta ( \\mathrm { B } _ { \\mathrm { U } } ( q ) ) - \\beta ( q )", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 399, + 346, + 415 + ], + "score": 1.0, + "content": "is non-decreasing in", + "type": "text" + }, + { + "bbox": [ + 347, + 401, + 391, + 413 + ], + "score": 0.94, + "content": "[ 0 , \\mathrm { B _ { L } } ( q _ { 0 } ) ]", + "type": "inline_equation" + }, + { + "bbox": [ + 391, + 399, + 436, + 415 + ], + "score": 1.0, + "content": ", i.e., when", + "type": "text" + }, + { + "bbox": [ + 436, + 400, + 486, + 413 + ], + "score": 0.91, + "content": "\\mathrm { B _ { U } } ( q ) \\le q _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 486, + 399, + 489, + 415 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 122, + 415, + 505, + 431 + ], + "spans": [ + { + "bbox": [ + 122, + 415, + 189, + 431 + ], + "score": 1.0, + "content": "C7. Recall that", + "type": "text" + }, + { + "bbox": [ + 189, + 415, + 205, + 427 + ], + "score": 0.9, + "content": "\\boldsymbol { n } ^ { ( i ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 206, + 415, + 232, + 431 + ], + "score": 1.0, + "content": "is the", + "type": "text" + }, + { + "bbox": [ + 232, + 418, + 237, + 427 + ], + "score": 0.72, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 238, + 415, + 387, + 431 + ], + "score": 1.0, + "content": "-th largest coordinate of a histogram", + "type": "text" + }, + { + "bbox": [ + 387, + 418, + 394, + 427 + ], + "score": 0.76, + "content": "\\bar { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 394, + 415, + 436, + 431 + ], + "score": 1.0, + "content": ". Then, if", + "type": "text" + }, + { + "bbox": [ + 436, + 416, + 501, + 429 + ], + "score": 0.91, + "content": "q ( \\bar { n } ) \\leq \\mathrm { B _ { U } } ( q _ { 0 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 415, + 505, + 431 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 142, + 428, + 336, + 440 + ], + "spans": [ + { + "bbox": [ + 142, + 428, + 162, + 440 + ], + "score": 1.0, + "content": "then", + "type": "text" + }, + { + "bbox": [ + 162, + 428, + 181, + 440 + ], + "score": 0.92, + "content": "q ( { \\bar { n } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 428, + 336, + 440 + ], + "score": 1.0, + "content": "is differentiable in all coordinates and", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 18.5 + }, + { + "type": "interline_equation", + "bbox": [ + 239, + 443, + 407, + 468 + ], + "lines": [ + { + "bbox": [ + 239, + 443, + 407, + 468 + ], + "spans": [ + { + "bbox": [ + 239, + 443, + 407, + 468 + ], + "score": 0.93, + "content": "\\forall i > j \\ge 2 \\quad \\frac { \\partial q } { \\partial n ^ { ( j ) } } ( \\bar { n } ) \\ge \\frac { \\partial q } { \\partial n ^ { ( i ) } } ( \\bar { n } ) \\ge 0 .", + "type": "interline_equation", + "image_path": "0e5fbcd8bdd27e5d00a653ed39197c383ea484e313945c5681977cf3be7862fe.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 239, + 443, + 407, + 468 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "text", + "bbox": [ + 123, + 473, + 396, + 485 + ], + "lines": [ + { + "bbox": [ + 122, + 471, + 397, + 488 + ], + "spans": [ + { + "bbox": [ + 122, + 471, + 196, + 488 + ], + "score": 1.0, + "content": "C8. The function", + "type": "text" + }, + { + "bbox": [ + 196, + 474, + 216, + 486 + ], + "score": 0.92, + "content": "q ( { \\bar { n } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 471, + 397, + 488 + ], + "score": 1.0, + "content": "is invariant under addition of a constant, i.e.,", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 141, + 506, + 341, + 519 + ], + "lines": [ + { + "bbox": [ + 141, + 505, + 342, + 521 + ], + "spans": [ + { + "bbox": [ + 141, + 505, + 159, + 521 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 159, + 507, + 179, + 519 + ], + "score": 0.92, + "content": "q ( { \\bar { n } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 179, + 505, + 313, + 521 + ], + "score": 1.0, + "content": "is invariant under permutation of", + "type": "text" + }, + { + "bbox": [ + 313, + 508, + 320, + 517 + ], + "score": 0.75, + "content": "\\bar { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 505, + 342, + 521 + ], + "score": 1.0, + "content": ", i.e.,", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 142, + 540, + 362, + 554 + ], + "lines": [ + { + "bbox": [ + 140, + 537, + 359, + 558 + ], + "spans": [ + { + "bbox": [ + 140, + 537, + 245, + 558 + ], + "score": 1.0, + "content": "Finally, we require that if", + "type": "text" + }, + { + "bbox": [ + 246, + 540, + 293, + 552 + ], + "score": 0.91, + "content": "n ^ { ( 1 ) } = n ^ { ( 2 ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 537, + 317, + 558 + ], + "score": 1.0, + "content": ", then", + "type": "text" + }, + { + "bbox": [ + 317, + 542, + 359, + 554 + ], + "score": 0.92, + "content": "q ( { \\bar { n } } ) \\geq q _ { 0 }", + "type": "inline_equation" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 106, + 561, + 505, + 651 + ], + "lines": [ + { + "bbox": [ + 106, + 561, + 505, + 575 + ], + "spans": [ + { + "bbox": [ + 106, + 561, + 245, + 575 + ], + "score": 1.0, + "content": "We may additionally assume that", + "type": "text" + }, + { + "bbox": [ + 246, + 561, + 333, + 574 + ], + "score": 0.94, + "content": "q _ { 0 } \\ \\ge \\ q ( [ n , 0 , \\ldots , 0 ] )", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 561, + 505, + 575 + ], + "score": 1.0, + "content": ". Indeed, if this condition is not satisfied,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 572, + 502, + 586 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 502, + 586 + ], + "score": 1.0, + "content": "then the data-dependent analysis is not going to be used anywhere. The most extreme histogram—", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 107, + 584, + 506, + 596 + ], + "spans": [ + { + "bbox": [ + 107, + 584, + 155, + 596 + ], + "score": 0.91, + "content": "[ n , 0 , \\ldots , 0 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 156, + 584, + 506, + 596 + ], + "score": 1.0, + "content": "—is the most advantageous setting for applying data-dependent bounds. If we cannot", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 595, + 505, + 608 + ], + "spans": [ + { + "bbox": [ + 105, + 595, + 505, + 608 + ], + "score": 1.0, + "content": "use the data-dependent bound even in that case, we would be using the data-independent bound", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 104, + 606, + 505, + 618 + ], + "spans": [ + { + "bbox": [ + 104, + 606, + 505, + 618 + ], + "score": 1.0, + "content": "everywhere and do not need to compute smooth sensitivity anyway. Yet this condition is not auto-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 617, + 505, + 629 + ], + "spans": [ + { + "bbox": [ + 105, + 617, + 251, + 629 + ], + "score": 1.0, + "content": "matically satisfied. For example, if", + "type": "text" + }, + { + "bbox": [ + 251, + 619, + 261, + 627 + ], + "score": 0.74, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 617, + 444, + 629 + ], + "score": 1.0, + "content": "(the number of classes) is large compared to", + "type": "text" + }, + { + "bbox": [ + 445, + 619, + 452, + 627 + ], + "score": 0.69, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 452, + 617, + 505, + 629 + ], + "score": 1.0, + "content": "(the number", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 628, + 505, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 628, + 245, + 640 + ], + "score": 1.0, + "content": "of teachers), we might have large", + "type": "text" + }, + { + "bbox": [ + 245, + 628, + 306, + 640 + ], + "score": 0.92, + "content": "q ( [ n , 0 , \\ldots , 0 ] )", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 628, + 505, + 640 + ], + "score": 1.0, + "content": ". So we need to check this condition in the code", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 639, + 284, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 639, + 284, + 651 + ], + "score": 1.0, + "content": "before doing smooth sensitivity calculation.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 33.5 + }, + { + "type": "title", + "bbox": [ + 108, + 663, + 290, + 675 + ], + "lines": [ + { + "bbox": [ + 105, + 662, + 291, + 676 + ], + "spans": [ + { + "bbox": [ + 105, + 662, + 291, + 676 + ], + "score": 1.0, + "content": "B.3 CORRECTNESS OF ALGORITHMS 3–5", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 106, + 683, + 503, + 707 + ], + "lines": [ + { + "bbox": [ + 105, + 682, + 504, + 697 + ], + "spans": [ + { + "bbox": [ + 105, + 682, + 324, + 697 + ], + "score": 1.0, + "content": "Recall that local sensitivity of a deterministic function", + "type": "text" + }, + { + "bbox": [ + 324, + 685, + 331, + 695 + ], + "score": 0.86, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 682, + 404, + 697 + ], + "score": 1.0, + "content": "is defined as max", + "type": "text" + }, + { + "bbox": [ + 404, + 684, + 463, + 696 + ], + "score": 0.92, + "content": "f ( D ) - f ( D ^ { \\prime } )", + "type": "inline_equation" + }, + { + "bbox": [ + 464, + 682, + 494, + 697 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 494, + 684, + 504, + 694 + ], + "score": 0.78, + "content": "D", + "type": "inline_equation" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 695, + 196, + 708 + ], + "spans": [ + { + "bbox": [ + 106, + 695, + 123, + 708 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 123, + 695, + 136, + 705 + ], + "score": 0.87, + "content": "D ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 136, + 695, + 196, + 708 + ], + "score": 1.0, + "content": "are neighbors.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.5 + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 502, + 733 + ], + "lines": [ + { + "bbox": [ + 105, + 709, + 504, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 322, + 722 + ], + "score": 1.0, + "content": "Proposition 13. Under conditions C2–C6, Algorithm", + "type": "text" + }, + { + "bbox": [ + 323, + 711, + 329, + 720 + ], + "score": 0.49, + "content": "^ 3", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 709, + 504, + 722 + ], + "score": 1.0, + "content": "computes an upper bound on local sensitiv-", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 719, + 170, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 719, + 129, + 734 + ], + "score": 1.0, + "content": "ity of", + "type": "text" + }, + { + "bbox": [ + 129, + 720, + 164, + 733 + ], + "score": 0.91, + "content": "\\beta ( q ( \\bar { n } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 165, + 719, + 170, + 734 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41.5 + } + ], + "page_idx": 23, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 298, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 298, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 15 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 142, + 82, + 505, + 116 + ], + "lines": [ + { + "bbox": [ + 141, + 81, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 141, + 81, + 505, + 95 + ], + "score": 1.0, + "content": "which is equal to the smallest number of “moves” needed to make the two histograms", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 141, + 92, + 505, + 107 + ], + "spans": [ + { + "bbox": [ + 141, + 92, + 505, + 107 + ], + "score": 1.0, + "content": "identical. We use the ceiling function since a single step can increase/decrease one bar by", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 141, + 105, + 184, + 115 + ], + "spans": [ + { + "bbox": [ + 141, + 105, + 184, + 115 + ], + "score": 1.0, + "content": "at most 1.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1, + "bbox_fs": [ + 141, + 81, + 505, + 115 + ] + }, + { + "type": "text", + "bbox": [ + 142, + 117, + 402, + 129 + ], + "lines": [ + { + "bbox": [ + 142, + 117, + 403, + 130 + ], + "spans": [ + { + "bbox": [ + 142, + 117, + 376, + 130 + ], + "score": 1.0, + "content": "We say that two histograms are neighbors if their distance", + "type": "text" + }, + { + "bbox": [ + 376, + 118, + 383, + 127 + ], + "score": 0.76, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 117, + 403, + 130 + ], + "score": 1.0, + "content": "is 1.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3, + "bbox_fs": [ + 142, + 117, + 403, + 130 + ] + }, + { + "type": "text", + "bbox": [ + 139, + 130, + 503, + 153 + ], + "lines": [ + { + "bbox": [ + 142, + 130, + 504, + 142 + ], + "spans": [ + { + "bbox": [ + 142, + 130, + 504, + 142 + ], + "score": 1.0, + "content": "Notice that analyses of Rényi differential privacy for LNMax, GNMax and the exponential", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 141, + 141, + 497, + 154 + ], + "spans": [ + { + "bbox": [ + 141, + 141, + 497, + 154 + ], + "score": 1.0, + "content": "mechanism are still applicable when the neighboring datasets are defined in this manner.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5, + "bbox_fs": [ + 141, + 130, + 504, + 154 + ] + }, + { + "type": "text", + "bbox": [ + 134, + 155, + 458, + 169 + ], + "lines": [ + { + "bbox": [ + 132, + 153, + 459, + 171 + ], + "spans": [ + { + "bbox": [ + 132, + 153, + 270, + 171 + ], + "score": 1.0, + "content": "• Given a randomized aggregator", + "type": "text" + }, + { + "bbox": [ + 271, + 155, + 335, + 169 + ], + "score": 0.92, + "content": "\\mathcal { M } : \\mathbb { R } _ { \\ge 0 } ^ { m } [ m ]", + "type": "inline_equation" + }, + { + "bbox": [ + 336, + 153, + 351, + 171 + ], + "score": 1.0, + "content": ", let", + "type": "text" + }, + { + "bbox": [ + 352, + 155, + 415, + 169 + ], + "score": 0.91, + "content": "q \\colon \\mathbb { R } _ { \\geq 0 } ^ { m } [ 0 , 1 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 153, + 459, + 171 + ], + "score": 1.0, + "content": "be so that", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6, + "bbox_fs": [ + 132, + 153, + 459, + 171 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 253, + 173, + 393, + 186 + ], + "lines": [ + { + "bbox": [ + 253, + 173, + 393, + 186 + ], + "spans": [ + { + "bbox": [ + 253, + 173, + 393, + 186 + ], + "score": 0.9, + "content": "q ( \\bar { n } ) \\geq \\mathbf { P r } [ \\mathcal { M } ( \\bar { n } ) \\neq \\operatorname { a r g m a x } ( \\bar { n } ) ] .", + "type": "interline_equation", + "image_path": "8471e0e213718b3fe46ab230dfbfff17f68134b7f1e57f67aa3edc8cca914986.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 253, + 173, + 393, + 186 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 140, + 190, + 504, + 213 + ], + "lines": [ + { + "bbox": [ + 142, + 189, + 505, + 203 + ], + "spans": [ + { + "bbox": [ + 142, + 189, + 283, + 203 + ], + "score": 1.0, + "content": "When the context is clear, we use", + "type": "text" + }, + { + "bbox": [ + 283, + 193, + 290, + 202 + ], + "score": 0.83, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 290, + 189, + 505, + 203 + ], + "score": 1.0, + "content": "to denote a specific value of the function, which, in", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 202, + 372, + 214 + ], + "spans": [ + { + "bbox": [ + 141, + 202, + 245, + 214 + ], + "score": 1.0, + "content": "particular, can be used as", + "type": "text" + }, + { + "bbox": [ + 245, + 203, + 251, + 213 + ], + "score": 0.84, + "content": "\\tilde { q }", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 202, + 372, + 214 + ], + "score": 1.0, + "content": "in applications of Theorem 6.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5, + "bbox_fs": [ + 141, + 189, + 505, + 214 + ] + }, + { + "type": "text", + "bbox": [ + 134, + 216, + 503, + 228 + ], + "lines": [ + { + "bbox": [ + 132, + 215, + 504, + 230 + ], + "spans": [ + { + "bbox": [ + 132, + 215, + 158, + 230 + ], + "score": 1.0, + "content": "• Let", + "type": "text" + }, + { + "bbox": [ + 158, + 216, + 213, + 228 + ], + "score": 0.89, + "content": "\\beta \\colon [ 0 , 1 ] \\mathbb { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 215, + 325, + 230 + ], + "score": 1.0, + "content": "be the function that maps a", + "type": "text" + }, + { + "bbox": [ + 325, + 219, + 331, + 228 + ], + "score": 0.81, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 215, + 504, + 230 + ], + "score": 1.0, + "content": "value to the value of the Rényi accountant.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10, + "bbox_fs": [ + 132, + 215, + 504, + 230 + ] + }, + { + "type": "text", + "bbox": [ + 111, + 239, + 503, + 252 + ], + "lines": [ + { + "bbox": [ + 109, + 237, + 501, + 254 + ], + "spans": [ + { + "bbox": [ + 109, + 237, + 446, + 254 + ], + "score": 1.0, + "content": "Conditions. Throughout this section we will be referring to the list of conditions on", + "type": "text" + }, + { + "bbox": [ + 447, + 240, + 463, + 252 + ], + "score": 0.9, + "content": "q ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 463, + 237, + 480, + 254 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 481, + 239, + 501, + 252 + ], + "score": 0.9, + "content": "\\beta \\left( \\cdot \\right)", + "type": "inline_equation" + } + ], + "index": 11 + } + ], + "index": 11, + "bbox_fs": [ + 109, + 237, + 501, + 254 + ] + }, + { + "type": "list", + "bbox": [ + 122, + 260, + 506, + 439 + ], + "lines": [ + { + "bbox": [ + 122, + 260, + 354, + 273 + ], + "spans": [ + { + "bbox": [ + 122, + 260, + 196, + 273 + ], + "score": 1.0, + "content": "C1. The function", + "type": "text" + }, + { + "bbox": [ + 196, + 260, + 212, + 273 + ], + "score": 0.9, + "content": "q ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 260, + 340, + 273 + ], + "score": 1.0, + "content": "is continuous in each argument", + "type": "text" + }, + { + "bbox": [ + 340, + 263, + 351, + 271 + ], + "score": 0.85, + "content": "n _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 351, + 260, + 354, + 273 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 12, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 122, + 273, + 505, + 288 + ], + "spans": [ + { + "bbox": [ + 122, + 273, + 230, + 288 + ], + "score": 1.0, + "content": "C2. There exist functions", + "type": "text" + }, + { + "bbox": [ + 230, + 274, + 324, + 286 + ], + "score": 0.9, + "content": "\\mathrm { B _ { U } , B _ { L } \\colon [ 0 , 1 ] \\to [ 0 , 1 ] }", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 273, + 434, + 288 + ], + "score": 1.0, + "content": "such that for any neighbor", + "type": "text" + }, + { + "bbox": [ + 435, + 275, + 445, + 285 + ], + "score": 0.86, + "content": "\\bar { n } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 445, + 273, + 457, + 288 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 458, + 276, + 465, + 285 + ], + "score": 0.79, + "content": "\\bar { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 465, + 273, + 505, + 288 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 13, + "is_list_start_line": true + }, + { + "bbox": [ + 142, + 285, + 505, + 299 + ], + "spans": [ + { + "bbox": [ + 142, + 286, + 273, + 298 + ], + "score": 0.92, + "content": "\\mathrm { B } _ { \\mathrm { L } } ( q ( \\bar { n } ) ) \\leq q ( \\bar { n } ^ { \\prime } ) \\leq \\mathrm { B } _ { \\mathrm { U } } ( q ( \\bar { n } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 285, + 295, + 299 + ], + "score": 1.0, + "content": ", i.e.,", + "type": "text" + }, + { + "bbox": [ + 295, + 287, + 310, + 297 + ], + "score": 0.51, + "content": "\\mathrm { B _ { U } }", + "type": "inline_equation" + }, + { + "bbox": [ + 310, + 285, + 329, + 299 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 329, + 286, + 343, + 297 + ], + "score": 0.88, + "content": "\\mathrm { B _ { L } }", + "type": "inline_equation" + }, + { + "bbox": [ + 343, + 285, + 505, + 299 + ], + "score": 1.0, + "content": "provide upper and lower bounds on the", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 142, + 297, + 261, + 309 + ], + "spans": [ + { + "bbox": [ + 142, + 299, + 149, + 308 + ], + "score": 0.76, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 297, + 250, + 309 + ], + "score": 1.0, + "content": "value of any neighbor of", + "type": "text" + }, + { + "bbox": [ + 250, + 298, + 257, + 307 + ], + "score": 0.83, + "content": "\\bar { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 297, + 261, + 309 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 15, + "is_list_end_line": true + }, + { + "bbox": [ + 123, + 311, + 243, + 325 + ], + "spans": [ + { + "bbox": [ + 123, + 311, + 142, + 325 + ], + "score": 1.0, + "content": "C3.", + "type": "text" + }, + { + "bbox": [ + 142, + 311, + 168, + 324 + ], + "score": 0.9, + "content": "\\operatorname { B _ { L } } ( q )", + "type": "inline_equation" + }, + { + "bbox": [ + 169, + 311, + 232, + 325 + ], + "score": 1.0, + "content": "is increasing in", + "type": "text" + }, + { + "bbox": [ + 233, + 314, + 239, + 323 + ], + "score": 0.72, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 311, + 243, + 325 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 16, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 122, + 324, + 503, + 340 + ], + "spans": [ + { + "bbox": [ + 122, + 324, + 141, + 340 + ], + "score": 1.0, + "content": "C4.", + "type": "text" + }, + { + "bbox": [ + 142, + 326, + 157, + 337 + ], + "score": 0.67, + "content": "\\mathrm { B _ { U } }", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 324, + 175, + 340 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 176, + 326, + 189, + 337 + ], + "score": 0.87, + "content": "\\mathrm { B _ { L } }", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 324, + 438, + 340 + ], + "score": 1.0, + "content": "are functional inverses of each other in part of the range, i.e.,", + "type": "text" + }, + { + "bbox": [ + 438, + 326, + 503, + 338 + ], + "score": 0.89, + "content": "q = \\mathrm { B _ { L } } ( \\mathrm { B _ { U } } ( q ) )", + "type": "inline_equation" + } + ], + "index": 17, + "is_list_start_line": true + }, + { + "bbox": [ + 140, + 336, + 505, + 350 + ], + "spans": [ + { + "bbox": [ + 140, + 336, + 170, + 350 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 171, + 337, + 215, + 349 + ], + "score": 0.93, + "content": "q \\in [ 0 , q _ { 0 } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 215, + 336, + 247, + 350 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 247, + 339, + 258, + 349 + ], + "score": 0.85, + "content": "q _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 336, + 387, + 350 + ], + "score": 1.0, + "content": "is defined below. Additionally", + "type": "text" + }, + { + "bbox": [ + 387, + 337, + 476, + 349 + ], + "score": 0.91, + "content": "\\mathrm { B } _ { \\mathrm { L } } ( \\bar { q } ) \\leq q \\bar { \\leq } \\mathrm { B } _ { \\mathrm { U } } ( q )", + "type": "inline_equation" + }, + { + "bbox": [ + 476, + 336, + 505, + 350 + ], + "score": 1.0, + "content": "for all", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 142, + 348, + 184, + 361 + ], + "spans": [ + { + "bbox": [ + 142, + 348, + 180, + 360 + ], + "score": 0.91, + "content": "q \\in [ 0 , 1 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 348, + 184, + 361 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 19, + "is_list_end_line": true + }, + { + "bbox": [ + 122, + 362, + 504, + 375 + ], + "spans": [ + { + "bbox": [ + 122, + 362, + 142, + 375 + ], + "score": 1.0, + "content": "C5.", + "type": "text" + }, + { + "bbox": [ + 142, + 362, + 162, + 375 + ], + "score": 0.9, + "content": "\\beta \\left( \\cdot \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 362, + 349, + 375 + ], + "score": 1.0, + "content": "has the following shape: there exist constants", + "type": "text" + }, + { + "bbox": [ + 350, + 363, + 361, + 374 + ], + "score": 0.89, + "content": "\\beta ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 362, + 380, + 375 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 380, + 363, + 417, + 374 + ], + "score": 0.89, + "content": "q _ { 0 } \\leq 0 . 5", + "type": "inline_equation" + }, + { + "bbox": [ + 418, + 362, + 460, + 375 + ], + "score": 1.0, + "content": ", such that", + "type": "text" + }, + { + "bbox": [ + 460, + 363, + 483, + 375 + ], + "score": 0.92, + "content": "\\beta \\left( q \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 483, + 362, + 504, + 375 + ], + "score": 1.0, + "content": "non-", + "type": "text" + } + ], + "index": 20, + "is_list_start_line": true + }, + { + "bbox": [ + 141, + 373, + 506, + 387 + ], + "spans": [ + { + "bbox": [ + 141, + 373, + 198, + 387 + ], + "score": 1.0, + "content": "decreasing in", + "type": "text" + }, + { + "bbox": [ + 199, + 374, + 223, + 385 + ], + "score": 0.92, + "content": "[ 0 , q _ { 0 } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 373, + 241, + 387 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 242, + 374, + 327, + 386 + ], + "score": 0.92, + "content": "\\bar { \\beta ( q ) } = \\beta ^ { * } \\ge \\beta ( q _ { 0 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 328, + 373, + 343, + 387 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 343, + 375, + 372, + 385 + ], + "score": 0.9, + "content": "q > q _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 373, + 430, + 387 + ], + "score": 1.0, + "content": ". The constant", + "type": "text" + }, + { + "bbox": [ + 431, + 374, + 442, + 385 + ], + "score": 0.9, + "content": "\\beta ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 443, + 373, + 506, + 387 + ], + "score": 1.0, + "content": "corresponds to", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 141, + 385, + 250, + 397 + ], + "spans": [ + { + "bbox": [ + 141, + 385, + 250, + 397 + ], + "score": 1.0, + "content": "a data-independent bound.", + "type": "text" + } + ], + "index": 22, + "is_list_end_line": true + }, + { + "bbox": [ + 122, + 399, + 489, + 415 + ], + "spans": [ + { + "bbox": [ + 122, + 399, + 142, + 415 + ], + "score": 1.0, + "content": "C6.", + "type": "text" + }, + { + "bbox": [ + 143, + 399, + 262, + 413 + ], + "score": 0.93, + "content": "\\Delta \\beta ( q ) \\triangleq \\beta ( \\mathrm { B } _ { \\mathrm { U } } ( q ) ) - \\beta ( q )", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 399, + 346, + 415 + ], + "score": 1.0, + "content": "is non-decreasing in", + "type": "text" + }, + { + "bbox": [ + 347, + 401, + 391, + 413 + ], + "score": 0.94, + "content": "[ 0 , \\mathrm { B _ { L } } ( q _ { 0 } ) ]", + "type": "inline_equation" + }, + { + "bbox": [ + 391, + 399, + 436, + 415 + ], + "score": 1.0, + "content": ", i.e., when", + "type": "text" + }, + { + "bbox": [ + 436, + 400, + 486, + 413 + ], + "score": 0.91, + "content": "\\mathrm { B _ { U } } ( q ) \\le q _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 486, + 399, + 489, + 415 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 23, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 122, + 415, + 505, + 431 + ], + "spans": [ + { + "bbox": [ + 122, + 415, + 189, + 431 + ], + "score": 1.0, + "content": "C7. Recall that", + "type": "text" + }, + { + "bbox": [ + 189, + 415, + 205, + 427 + ], + "score": 0.9, + "content": "\\boldsymbol { n } ^ { ( i ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 206, + 415, + 232, + 431 + ], + "score": 1.0, + "content": "is the", + "type": "text" + }, + { + "bbox": [ + 232, + 418, + 237, + 427 + ], + "score": 0.72, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 238, + 415, + 387, + 431 + ], + "score": 1.0, + "content": "-th largest coordinate of a histogram", + "type": "text" + }, + { + "bbox": [ + 387, + 418, + 394, + 427 + ], + "score": 0.76, + "content": "\\bar { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 394, + 415, + 436, + 431 + ], + "score": 1.0, + "content": ". Then, if", + "type": "text" + }, + { + "bbox": [ + 436, + 416, + 501, + 429 + ], + "score": 0.91, + "content": "q ( \\bar { n } ) \\leq \\mathrm { B _ { U } } ( q _ { 0 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 415, + 505, + 431 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 24, + "is_list_start_line": true + }, + { + "bbox": [ + 142, + 428, + 336, + 440 + ], + "spans": [ + { + "bbox": [ + 142, + 428, + 162, + 440 + ], + "score": 1.0, + "content": "then", + "type": "text" + }, + { + "bbox": [ + 162, + 428, + 181, + 440 + ], + "score": 0.92, + "content": "q ( { \\bar { n } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 428, + 336, + 440 + ], + "score": 1.0, + "content": "is differentiable in all coordinates and", + "type": "text" + } + ], + "index": 25, + "is_list_end_line": true + } + ], + "index": 18.5, + "bbox_fs": [ + 122, + 260, + 506, + 440 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 239, + 443, + 407, + 468 + ], + "lines": [ + { + "bbox": [ + 239, + 443, + 407, + 468 + ], + "spans": [ + { + "bbox": [ + 239, + 443, + 407, + 468 + ], + "score": 0.93, + "content": "\\forall i > j \\ge 2 \\quad \\frac { \\partial q } { \\partial n ^ { ( j ) } } ( \\bar { n } ) \\ge \\frac { \\partial q } { \\partial n ^ { ( i ) } } ( \\bar { n } ) \\ge 0 .", + "type": "interline_equation", + "image_path": "0e5fbcd8bdd27e5d00a653ed39197c383ea484e313945c5681977cf3be7862fe.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 239, + 443, + 407, + 468 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "text", + "bbox": [ + 123, + 473, + 396, + 485 + ], + "lines": [ + { + "bbox": [ + 122, + 471, + 397, + 488 + ], + "spans": [ + { + "bbox": [ + 122, + 471, + 196, + 488 + ], + "score": 1.0, + "content": "C8. The function", + "type": "text" + }, + { + "bbox": [ + 196, + 474, + 216, + 486 + ], + "score": 0.92, + "content": "q ( { \\bar { n } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 471, + 397, + 488 + ], + "score": 1.0, + "content": "is invariant under addition of a constant, i.e.,", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 141, + 505, + 342, + 521 + ], + "spans": [ + { + "bbox": [ + 141, + 505, + 159, + 521 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 159, + 507, + 179, + 519 + ], + "score": 0.92, + "content": "q ( { \\bar { n } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 179, + 505, + 313, + 521 + ], + "score": 1.0, + "content": "is invariant under permutation of", + "type": "text" + }, + { + "bbox": [ + 313, + 508, + 320, + 517 + ], + "score": 0.75, + "content": "\\bar { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 505, + 342, + 521 + ], + "score": 1.0, + "content": ", i.e.,", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27, + "bbox_fs": [ + 122, + 471, + 397, + 488 + ] + }, + { + "type": "text", + "bbox": [ + 141, + 506, + 341, + 519 + ], + "lines": [], + "index": 28, + "bbox_fs": [ + 141, + 505, + 342, + 521 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 142, + 540, + 362, + 554 + ], + "lines": [ + { + "bbox": [ + 140, + 537, + 359, + 558 + ], + "spans": [ + { + "bbox": [ + 140, + 537, + 245, + 558 + ], + "score": 1.0, + "content": "Finally, we require that if", + "type": "text" + }, + { + "bbox": [ + 246, + 540, + 293, + 552 + ], + "score": 0.91, + "content": "n ^ { ( 1 ) } = n ^ { ( 2 ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 537, + 317, + 558 + ], + "score": 1.0, + "content": ", then", + "type": "text" + }, + { + "bbox": [ + 317, + 542, + 359, + 554 + ], + "score": 0.92, + "content": "q ( { \\bar { n } } ) \\geq q _ { 0 }", + "type": "inline_equation" + } + ], + "index": 29 + } + ], + "index": 29, + "bbox_fs": [ + 140, + 537, + 359, + 558 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 561, + 505, + 651 + ], + "lines": [ + { + "bbox": [ + 106, + 561, + 505, + 575 + ], + "spans": [ + { + "bbox": [ + 106, + 561, + 245, + 575 + ], + "score": 1.0, + "content": "We may additionally assume that", + "type": "text" + }, + { + "bbox": [ + 246, + 561, + 333, + 574 + ], + "score": 0.94, + "content": "q _ { 0 } \\ \\ge \\ q ( [ n , 0 , \\ldots , 0 ] )", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 561, + 505, + 575 + ], + "score": 1.0, + "content": ". Indeed, if this condition is not satisfied,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 572, + 502, + 586 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 502, + 586 + ], + "score": 1.0, + "content": "then the data-dependent analysis is not going to be used anywhere. The most extreme histogram—", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 107, + 584, + 506, + 596 + ], + "spans": [ + { + "bbox": [ + 107, + 584, + 155, + 596 + ], + "score": 0.91, + "content": "[ n , 0 , \\ldots , 0 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 156, + 584, + 506, + 596 + ], + "score": 1.0, + "content": "—is the most advantageous setting for applying data-dependent bounds. If we cannot", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 595, + 505, + 608 + ], + "spans": [ + { + "bbox": [ + 105, + 595, + 505, + 608 + ], + "score": 1.0, + "content": "use the data-dependent bound even in that case, we would be using the data-independent bound", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 104, + 606, + 505, + 618 + ], + "spans": [ + { + "bbox": [ + 104, + 606, + 505, + 618 + ], + "score": 1.0, + "content": "everywhere and do not need to compute smooth sensitivity anyway. Yet this condition is not auto-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 617, + 505, + 629 + ], + "spans": [ + { + "bbox": [ + 105, + 617, + 251, + 629 + ], + "score": 1.0, + "content": "matically satisfied. For example, if", + "type": "text" + }, + { + "bbox": [ + 251, + 619, + 261, + 627 + ], + "score": 0.74, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 617, + 444, + 629 + ], + "score": 1.0, + "content": "(the number of classes) is large compared to", + "type": "text" + }, + { + "bbox": [ + 445, + 619, + 452, + 627 + ], + "score": 0.69, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 452, + 617, + 505, + 629 + ], + "score": 1.0, + "content": "(the number", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 628, + 505, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 628, + 245, + 640 + ], + "score": 1.0, + "content": "of teachers), we might have large", + "type": "text" + }, + { + "bbox": [ + 245, + 628, + 306, + 640 + ], + "score": 0.92, + "content": "q ( [ n , 0 , \\ldots , 0 ] )", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 628, + 505, + 640 + ], + "score": 1.0, + "content": ". So we need to check this condition in the code", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 639, + 284, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 639, + 284, + 651 + ], + "score": 1.0, + "content": "before doing smooth sensitivity calculation.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 33.5, + "bbox_fs": [ + 104, + 561, + 506, + 651 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 663, + 290, + 675 + ], + "lines": [ + { + "bbox": [ + 105, + 662, + 291, + 676 + ], + "spans": [ + { + "bbox": [ + 105, + 662, + 291, + 676 + ], + "score": 1.0, + "content": "B.3 CORRECTNESS OF ALGORITHMS 3–5", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 106, + 683, + 503, + 707 + ], + "lines": [ + { + "bbox": [ + 105, + 682, + 504, + 697 + ], + "spans": [ + { + "bbox": [ + 105, + 682, + 324, + 697 + ], + "score": 1.0, + "content": "Recall that local sensitivity of a deterministic function", + "type": "text" + }, + { + "bbox": [ + 324, + 685, + 331, + 695 + ], + "score": 0.86, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 682, + 404, + 697 + ], + "score": 1.0, + "content": "is defined as max", + "type": "text" + }, + { + "bbox": [ + 404, + 684, + 463, + 696 + ], + "score": 0.92, + "content": "f ( D ) - f ( D ^ { \\prime } )", + "type": "inline_equation" + }, + { + "bbox": [ + 464, + 682, + 494, + 697 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 494, + 684, + 504, + 694 + ], + "score": 0.78, + "content": "D", + "type": "inline_equation" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 695, + 196, + 708 + ], + "spans": [ + { + "bbox": [ + 106, + 695, + 123, + 708 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 123, + 695, + 136, + 705 + ], + "score": 0.87, + "content": "D ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 136, + 695, + 196, + 708 + ], + "score": 1.0, + "content": "are neighbors.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.5, + "bbox_fs": [ + 105, + 682, + 504, + 708 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 502, + 733 + ], + "lines": [ + { + "bbox": [ + 105, + 709, + 504, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 322, + 722 + ], + "score": 1.0, + "content": "Proposition 13. Under conditions C2–C6, Algorithm", + "type": "text" + }, + { + "bbox": [ + 323, + 711, + 329, + 720 + ], + "score": 0.49, + "content": "^ 3", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 709, + 504, + 722 + ], + "score": 1.0, + "content": "computes an upper bound on local sensitiv-", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 719, + 170, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 719, + 129, + 734 + ], + "score": 1.0, + "content": "ity of", + "type": "text" + }, + { + "bbox": [ + 129, + 720, + 164, + 733 + ], + "score": 0.91, + "content": "\\beta ( q ( \\bar { n } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 165, + 719, + 170, + 734 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41.5, + "bbox_fs": [ + 105, + 709, + 504, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 104, + 82, + 504, + 106 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 161, + 96 + ], + "score": 1.0, + "content": "Proof. Since", + "type": "text" + }, + { + "bbox": [ + 161, + 82, + 181, + 94 + ], + "score": 0.89, + "content": "\\beta \\left( \\cdot \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 82, + 434, + 96 + ], + "score": 1.0, + "content": "is non-decreasing everywhere (by C5), and for any neighbors", + "type": "text" + }, + { + "bbox": [ + 434, + 84, + 442, + 92 + ], + "score": 0.79, + "content": "\\bar { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 82, + 460, + 96 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 461, + 83, + 471, + 92 + ], + "score": 0.87, + "content": "\\bar { n } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 471, + 82, + 505, + 96 + ], + "score": 1.0, + "content": "it holds", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 92, + 380, + 108 + ], + "spans": [ + { + "bbox": [ + 105, + 92, + 124, + 108 + ], + "score": 1.0, + "content": "that", + "type": "text" + }, + { + "bbox": [ + 124, + 93, + 251, + 106 + ], + "score": 0.9, + "content": "\\mathrm { B } _ { \\mathrm { L } } ( q ( \\bar { n } ) ) \\leq q ( \\bar { n } ^ { \\prime } ) \\leq \\mathrm { B } _ { \\mathrm { U } } ( q ( \\bar { n } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 92, + 380, + 108 + ], + "score": 1.0, + "content": "(by C2), we have the following", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "interline_equation", + "bbox": [ + 122, + 107, + 488, + 163 + ], + "lines": [ + { + "bbox": [ + 122, + 107, + 488, + 163 + ], + "spans": [ + { + "bbox": [ + 122, + 107, + 488, + 163 + ], + "score": 0.93, + "content": "\\begin{array} { r l } & { | \\beta \\left( q ( \\bar { n } ) \\right) - \\beta \\left( q ( \\bar { n } ^ { \\prime } ) \\right) | \\leq \\operatorname* { m a x } \\bigg \\{ \\beta \\Big ( \\mathrm { B } _ { \\mathrm { U } } { \\left( q ( \\bar { n } ) \\right) } \\Big ) - \\beta \\Big ( q ( \\bar { n } ) \\Big ) , \\beta \\Big ( q ( \\bar { n } ) \\Big ) - \\beta \\Big ( \\mathrm { B } _ { \\mathrm { L } } { \\left( q ( \\bar { n } ) \\right) } \\Big ) \\bigg \\} } \\\\ & { \\quad \\quad \\quad \\quad = \\operatorname* { m a x } \\bigg \\{ \\Delta \\beta \\Big ( q ( \\bar { n } ) \\Big ) , \\Delta \\beta \\Big ( \\mathrm { B } _ { \\mathrm { L } } { \\left( q ( \\bar { n } ) \\right) } \\Big ) \\bigg \\} } \\end{array}", + "type": "interline_equation", + "image_path": "5e37804c04f0b61b766c1c18b59af0847d6859b2e52026105130c8ec00cc52bc.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 122, + 107, + 488, + 125.66666666666667 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 122, + 125.66666666666667, + 488, + 144.33333333333334 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 122, + 144.33333333333334, + 488, + 163.0 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 164, + 362, + 177 + ], + "lines": [ + { + "bbox": [ + 105, + 163, + 363, + 178 + ], + "spans": [ + { + "bbox": [ + 105, + 163, + 285, + 178 + ], + "score": 1.0, + "content": "as an upper bound on the local sensitivity of", + "type": "text" + }, + { + "bbox": [ + 285, + 164, + 317, + 177 + ], + "score": 0.91, + "content": "\\beta \\left( q ( \\cdot ) \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 163, + 351, + 178 + ], + "score": 1.0, + "content": "at input", + "type": "text" + }, + { + "bbox": [ + 352, + 166, + 358, + 174 + ], + "score": 0.76, + "content": "\\bar { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 359, + 163, + 363, + 178 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 107, + 181, + 504, + 215 + ], + "lines": [ + { + "bbox": [ + 105, + 180, + 506, + 195 + ], + "spans": [ + { + "bbox": [ + 105, + 180, + 366, + 195 + ], + "score": 1.0, + "content": "The function computed by Algorithm 3 differs from above when", + "type": "text" + }, + { + "bbox": [ + 367, + 181, + 448, + 194 + ], + "score": 0.93, + "content": "q ( \\bar { n } ) \\in ( \\mathrm { B _ { L } } ( q _ { 0 } ) , q _ { 0 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 449, + 180, + 506, + 195 + ], + "score": 1.0, + "content": ". To complete", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 191, + 506, + 206 + ], + "spans": [ + { + "bbox": [ + 105, + 191, + 402, + 206 + ], + "score": 1.0, + "content": "the proof we need to argue that the local sensitivity is upper bounded by", + "type": "text" + }, + { + "bbox": [ + 403, + 193, + 456, + 205 + ], + "score": 0.91, + "content": "\\Delta \\beta \\left( \\mathrm { B _ { L } } ( q _ { 0 } ) \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 457, + 191, + 473, + 206 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 474, + 193, + 493, + 205 + ], + "score": 0.92, + "content": "q ( { \\bar { n } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 493, + 191, + 506, + 206 + ], + "score": 1.0, + "content": "in", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 203, + 392, + 216 + ], + "spans": [ + { + "bbox": [ + 105, + 203, + 392, + 216 + ], + "score": 1.0, + "content": "this interval. The bound follows from the following three observations.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 105, + 219, + 503, + 243 + ], + "lines": [ + { + "bbox": [ + 104, + 217, + 505, + 235 + ], + "spans": [ + { + "bbox": [ + 104, + 217, + 130, + 235 + ], + "score": 1.0, + "content": "First,", + "type": "text" + }, + { + "bbox": [ + 131, + 220, + 161, + 232 + ], + "score": 0.9, + "content": "\\Delta \\beta \\left( q \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 161, + 217, + 285, + 235 + ], + "score": 1.0, + "content": "is non-increasing in the range", + "type": "text" + }, + { + "bbox": [ + 286, + 220, + 331, + 232 + ], + "score": 0.91, + "content": "( \\mathrm { B _ { L } } ( q _ { 0 } ) , 1 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 217, + 358, + 235 + ], + "score": 1.0, + "content": ", since", + "type": "text" + }, + { + "bbox": [ + 358, + 220, + 402, + 232 + ], + "score": 0.92, + "content": "\\beta \\left( \\mathrm { B } _ { \\mathrm { U } } ( q ) \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 402, + 217, + 465, + 235 + ], + "score": 1.0, + "content": "is constant (by", + "type": "text" + }, + { + "bbox": [ + 465, + 220, + 505, + 233 + ], + "score": 0.88, + "content": "\\operatorname { B _ { U } } ( q ) \\geq", + "type": "inline_equation" + } + ], + "index": 9 + }, + { + "bbox": [ + 107, + 230, + 469, + 245 + ], + "spans": [ + { + "bbox": [ + 107, + 232, + 180, + 244 + ], + "score": 0.9, + "content": "\\mathrm { B _ { U } } ( \\mathrm { B _ { L } } ( q _ { 0 } ) ) = q _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 230, + 232, + 245 + ], + "score": 1.0, + "content": "and C5) and", + "type": "text" + }, + { + "bbox": [ + 233, + 231, + 255, + 244 + ], + "score": 0.93, + "content": "\\beta \\left( q \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 230, + 469, + 245 + ], + "score": 1.0, + "content": "is non-decreasing in the range (by C5). In particular,", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5 + }, + { + "type": "interline_equation", + "bbox": [ + 225, + 245, + 386, + 259 + ], + "lines": [ + { + "bbox": [ + 225, + 245, + 386, + 259 + ], + "spans": [ + { + "bbox": [ + 225, + 245, + 386, + 259 + ], + "score": 0.81, + "content": "\\Delta \\beta ( q ) \\leq \\Delta \\beta ( \\mathrm { B } _ { \\mathrm { L } } ( q _ { 0 } ) ) { \\mathrm { ~ i f ~ } } q \\geq \\mathrm { B } _ { \\mathrm { L } } ( q _ { 0 } ) .", + "type": "interline_equation", + "image_path": "e768b40261e07a278ed78af1d8eaacd26eb8efa83b039462e27d4aa6dbd3e341.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 225, + 245, + 386, + 259 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "text", + "bbox": [ + 104, + 260, + 504, + 282 + ], + "lines": [ + { + "bbox": [ + 105, + 259, + 505, + 274 + ], + "spans": [ + { + "bbox": [ + 105, + 259, + 141, + 274 + ], + "score": 1.0, + "content": "Second,", + "type": "text" + }, + { + "bbox": [ + 141, + 261, + 191, + 273 + ], + "score": 0.92, + "content": "\\Delta \\beta \\left( \\mathrm { B } _ { \\mathrm { L } } ( q ) \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 259, + 312, + 274 + ], + "score": 1.0, + "content": "is non-decreasing in the range", + "type": "text" + }, + { + "bbox": [ + 313, + 261, + 337, + 273 + ], + "score": 0.91, + "content": "[ 0 , q _ { 0 } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 259, + 360, + 274 + ], + "score": 1.0, + "content": "since", + "type": "text" + }, + { + "bbox": [ + 361, + 261, + 387, + 273 + ], + "score": 0.92, + "content": "\\operatorname { B _ { L } } ( q )", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 259, + 505, + 274 + ], + "score": 1.0, + "content": "is increasing (by C3 and C6).", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 271, + 177, + 284 + ], + "spans": [ + { + "bbox": [ + 106, + 271, + 177, + 284 + ], + "score": 1.0, + "content": "This implies that", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5 + }, + { + "type": "interline_equation", + "bbox": [ + 224, + 281, + 387, + 295 + ], + "lines": [ + { + "bbox": [ + 224, + 281, + 387, + 295 + ], + "spans": [ + { + "bbox": [ + 224, + 281, + 387, + 295 + ], + "score": 0.89, + "content": "\\Delta \\beta ( \\mathrm { B _ { L } } ( q ) ) \\leq \\Delta \\beta ( \\mathrm { B _ { L } } ( q _ { 0 } ) ) { \\mathrm { ~ i f ~ } } q \\leq q _ { 0 } .", + "type": "interline_equation", + "image_path": "87c019bbfca5244fdfab97ca5325e8b310a2a30fdd80c9a5c4621b63ac321022.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 224, + 281, + 387, + 295 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 301, + 395, + 313 + ], + "lines": [ + { + "bbox": [ + 105, + 300, + 396, + 315 + ], + "spans": [ + { + "bbox": [ + 105, + 300, + 396, + 315 + ], + "score": 1.0, + "content": "By (8) and (9) applied to the intersection of the two ranges, it holds that", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "interline_equation", + "bbox": [ + 150, + 315, + 459, + 343 + ], + "lines": [ + { + "bbox": [ + 150, + 315, + 459, + 343 + ], + "spans": [ + { + "bbox": [ + 150, + 315, + 459, + 343 + ], + "score": 0.94, + "content": "\\begin{array} { r } { \\operatorname* { m a x } \\bigg \\{ \\Delta \\beta \\Big ( q ( \\bar { n } ) \\Big ) , ~ \\Delta \\beta \\Big ( \\mathrm { B } _ { \\mathrm { L } } ( q ( \\bar { n } ) ) \\Big ) \\bigg \\} \\leq \\Delta \\beta \\left( \\mathrm { B } _ { \\mathrm { L } } ( q _ { 0 } ) \\right) \\mathrm { i f } ~ \\mathrm { B } _ { \\mathrm { L } } ( q _ { 0 } ) \\leq q \\leq q _ { 0 } , } \\end{array}", + "type": "interline_equation", + "image_path": "a7c2a46609dee524b7163b3e6a3ecf2386ca376b44363b84544140aa39622b24.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 150, + 315, + 459, + 343 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 345, + 149, + 357 + ], + "lines": [ + { + "bbox": [ + 105, + 345, + 150, + 357 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 150, + 357 + ], + "score": 1.0, + "content": "as needed.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 106, + 368, + 504, + 392 + ], + "lines": [ + { + "bbox": [ + 105, + 366, + 506, + 383 + ], + "spans": [ + { + "bbox": [ + 105, + 366, + 422, + 383 + ], + "score": 1.0, + "content": "We thus established that the function computed by Algorithm 3, which we call", + "type": "text" + }, + { + "bbox": [ + 422, + 367, + 447, + 381 + ], + "score": 0.88, + "content": "\\tilde { \\mathrm { L S } } ( q )", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 366, + 506, + 383 + ], + "score": 1.0, + "content": "from now on,", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 379, + 315, + 393 + ], + "spans": [ + { + "bbox": [ + 105, + 379, + 315, + 393 + ], + "score": 1.0, + "content": "is an upper bound on the local sensitivity. Formally,", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5 + }, + { + "type": "interline_equation", + "bbox": [ + 177, + 394, + 431, + 422 + ], + "lines": [ + { + "bbox": [ + 177, + 394, + 431, + 422 + ], + "spans": [ + { + "bbox": [ + 177, + 394, + 431, + 422 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\tilde { \\mathrm { L S } } ( q ) \\triangleq \\left\\{ \\begin{array} { l l } { \\Delta \\beta \\left( \\mathrm { B } _ { \\mathrm { L } } ( q _ { 0 } ) \\right) } & { \\mathrm { i f ~ } q \\in ( \\mathrm { B } _ { \\mathrm { L } } ( q _ { 0 } ) , q _ { 0 } ) , } \\\\ { \\operatorname* { m a x } \\left\\{ \\Delta \\beta \\left( q \\right) , \\Delta \\beta \\left( \\mathrm { B } _ { \\mathrm { L } } ( q ) \\right) \\right\\} } & { \\mathrm { o t h e r w i s e } . } \\end{array} \\right. } \\end{array}", + "type": "interline_equation", + "image_path": "bf84673a8a9cc41fcf5b2ef17c4a9a8a0439b4835fdcdf431c81993a82464af2.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 177, + 394, + 431, + 422 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 432, + 352, + 444 + ], + "lines": [ + { + "bbox": [ + 105, + 430, + 353, + 447 + ], + "spans": [ + { + "bbox": [ + 105, + 430, + 324, + 447 + ], + "score": 1.0, + "content": "The following proposition characterizes the growth of", + "type": "text" + }, + { + "bbox": [ + 324, + 431, + 349, + 445 + ], + "score": 0.9, + "content": "\\tilde { \\mathrm { L S } } ( q )", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 430, + 353, + 447 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 106, + 447, + 504, + 472 + ], + "lines": [ + { + "bbox": [ + 105, + 446, + 505, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 261, + 462 + ], + "score": 1.0, + "content": "Proposition 14. Assuming conditions", + "type": "text" + }, + { + "bbox": [ + 262, + 448, + 292, + 459 + ], + "score": 0.49, + "content": "C 2 { - } C 6 ,", + "type": "inline_equation" + }, + { + "bbox": [ + 292, + 446, + 345, + 462 + ], + "score": 1.0, + "content": ", the function", + "type": "text" + }, + { + "bbox": [ + 345, + 447, + 370, + 460 + ], + "score": 0.84, + "content": "\\tilde { \\mathrm { L S } } ( q )", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 446, + 456, + 462 + ], + "score": 1.0, + "content": "is non-decreasing in", + "type": "text" + }, + { + "bbox": [ + 457, + 448, + 501, + 461 + ], + "score": 0.9, + "content": "[ 0 , \\mathrm { B _ { L } } ( q _ { 0 } ) ]", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 446, + 505, + 462 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 458, + 325, + 473 + ], + "spans": [ + { + "bbox": [ + 105, + 458, + 154, + 473 + ], + "score": 1.0, + "content": "constant in", + "type": "text" + }, + { + "bbox": [ + 154, + 459, + 202, + 471 + ], + "score": 0.93, + "content": "[ \\mathrm { B _ { L } } ( q _ { 0 } ) , q _ { 0 } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 458, + 296, + 473 + ], + "score": 1.0, + "content": ", and non-increasing in", + "type": "text" + }, + { + "bbox": [ + 297, + 459, + 321, + 471 + ], + "score": 0.89, + "content": "[ q _ { 0 } , 1 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 458, + 325, + 473 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5 + }, + { + "type": "text", + "bbox": [ + 107, + 482, + 278, + 495 + ], + "lines": [ + { + "bbox": [ + 106, + 482, + 279, + 496 + ], + "spans": [ + { + "bbox": [ + 106, + 482, + 279, + 496 + ], + "score": 1.0, + "content": "Proof. Consider separately three intervals.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 132, + 505, + 505, + 579 + ], + "lines": [ + { + "bbox": [ + 133, + 505, + 334, + 520 + ], + "spans": [ + { + "bbox": [ + 133, + 505, + 210, + 520 + ], + "score": 1.0, + "content": "• By construction,", + "type": "text" + }, + { + "bbox": [ + 210, + 505, + 224, + 517 + ], + "score": 0.69, + "content": "\\tilde { \\mathrm { L S } }", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 505, + 280, + 520 + ], + "score": 1.0, + "content": "is constant in", + "type": "text" + }, + { + "bbox": [ + 281, + 506, + 329, + 519 + ], + "score": 0.9, + "content": "[ \\mathrm { B _ { L } } ( q _ { 0 } ) , q _ { 0 } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 505, + 334, + 520 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 132, + 523, + 505, + 539 + ], + "spans": [ + { + "bbox": [ + 132, + 523, + 227, + 539 + ], + "score": 1.0, + "content": "• Since both functions", + "type": "text" + }, + { + "bbox": [ + 227, + 525, + 255, + 538 + ], + "score": 0.91, + "content": "\\Delta \\beta \\left( \\cdot \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 256, + 523, + 274, + 539 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 275, + 525, + 323, + 538 + ], + "score": 0.93, + "content": "\\Delta \\beta \\left( \\mathrm { B _ { L } } ( \\cdot ) \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 323, + 523, + 434, + 539 + ], + "score": 1.0, + "content": "are each non-decreasing in", + "type": "text" + }, + { + "bbox": [ + 434, + 525, + 480, + 538 + ], + "score": 0.9, + "content": "[ 0 , \\mathrm { B _ { L } } ( q _ { 0 } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 480, + 523, + 505, + 539 + ], + "score": 1.0, + "content": ", so is", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 141, + 536, + 185, + 549 + ], + "spans": [ + { + "bbox": [ + 141, + 536, + 185, + 549 + ], + "score": 1.0, + "content": "their max.", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 132, + 553, + 505, + 569 + ], + "spans": [ + { + "bbox": [ + 132, + 553, + 202, + 569 + ], + "score": 1.0, + "content": "• In the interval", + "type": "text" + }, + { + "bbox": [ + 203, + 555, + 255, + 567 + ], + "score": 0.66, + "content": "( q _ { 0 } , 1 ] , \\beta ( q )", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 553, + 335, + 569 + ], + "score": 1.0, + "content": "is constant. Hence", + "type": "text" + }, + { + "bbox": [ + 336, + 555, + 387, + 567 + ], + "score": 0.92, + "content": "\\Delta \\beta ( q ) = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 553, + 406, + 569 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 406, + 555, + 505, + 568 + ], + "score": 0.92, + "content": "\\Delta \\beta ( \\mathrm { B } _ { \\mathrm { L } } ( q ) ) = \\beta ( q ) -", + "type": "inline_equation" + } + ], + "index": 28 + }, + { + "bbox": [ + 142, + 565, + 480, + 580 + ], + "spans": [ + { + "bbox": [ + 142, + 566, + 185, + 578 + ], + "score": 0.92, + "content": "\\beta \\left( \\mathrm { B _ { L } } ( q ) \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 565, + 353, + 580 + ], + "score": 1.0, + "content": "is non-decreasing. Their maximum value", + "type": "text" + }, + { + "bbox": [ + 353, + 567, + 403, + 578 + ], + "score": 0.91, + "content": "\\Delta \\beta \\left( \\mathrm { B _ { L } } ( q ) \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 565, + 480, + 580 + ], + "score": 1.0, + "content": "is non-decreasing.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 107, + 588, + 183, + 600 + ], + "lines": [ + { + "bbox": [ + 106, + 587, + 184, + 601 + ], + "spans": [ + { + "bbox": [ + 106, + 587, + 184, + 601 + ], + "score": 1.0, + "content": "The claim follows.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 108, + 612, + 506, + 635 + ], + "lines": [ + { + "bbox": [ + 106, + 612, + 505, + 625 + ], + "spans": [ + { + "bbox": [ + 106, + 612, + 456, + 625 + ], + "score": 1.0, + "content": "We next prove correctness of Algorithm 4, which computes the maximal sensitivity of", + "type": "text" + }, + { + "bbox": [ + 456, + 613, + 464, + 624 + ], + "score": 0.87, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 465, + 612, + 505, + 625 + ], + "score": 1.0, + "content": "at a fixed", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 623, + 145, + 636 + ], + "spans": [ + { + "bbox": [ + 105, + 623, + 145, + 636 + ], + "score": 1.0, + "content": "distance.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5 + }, + { + "type": "text", + "bbox": [ + 109, + 640, + 421, + 653 + ], + "lines": [ + { + "bbox": [ + 106, + 639, + 422, + 654 + ], + "spans": [ + { + "bbox": [ + 106, + 639, + 422, + 654 + ], + "score": 1.0, + "content": "The proof relies on the following notion of a partial order between histograms.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 106, + 654, + 336, + 666 + ], + "lines": [ + { + "bbox": [ + 105, + 653, + 335, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 653, + 217, + 668 + ], + "score": 1.0, + "content": "Definition 15. Prefix sums", + "type": "text" + }, + { + "bbox": [ + 217, + 654, + 241, + 666 + ], + "score": 0.92, + "content": "S _ { i } ( \\bar { n } )", + "type": "inline_equation" + }, + { + "bbox": [ + 241, + 653, + 335, + 668 + ], + "score": 1.0, + "content": "are defined as follows:", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 34 + }, + { + "type": "interline_equation", + "bbox": [ + 251, + 668, + 360, + 703 + ], + "lines": [ + { + "bbox": [ + 251, + 668, + 360, + 703 + ], + "spans": [ + { + "bbox": [ + 251, + 668, + 360, + 703 + ], + "score": 0.95, + "content": "S _ { i } ( \\bar { n } ) \\triangleq \\sum _ { j = 1 } ^ { i } ( n ^ { ( 1 ) } - n ^ { ( j ) } ) .", + "type": "interline_equation", + "image_path": "61e36132164f56cbb5eac510ee6c00562799aab463400659a78d5be1f75c552e.jpg" + } + ] + } + ], + "index": 35.5, + "virtual_lines": [ + { + "bbox": [ + 251, + 668, + 360, + 685.5 + ], + "spans": [], + "index": 35 + }, + { + "bbox": [ + 251, + 685.5, + 360, + 703.0 + ], + "spans": [], + "index": 36 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 705, + 363, + 718 + ], + "lines": [ + { + "bbox": [ + 106, + 705, + 362, + 719 + ], + "spans": [ + { + "bbox": [ + 106, + 705, + 205, + 719 + ], + "score": 1.0, + "content": "We say that a histogram", + "type": "text" + }, + { + "bbox": [ + 205, + 708, + 212, + 716 + ], + "score": 0.79, + "content": "\\bar { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 705, + 257, + 719 + ], + "score": 1.0, + "content": "dominates", + "type": "text" + }, + { + "bbox": [ + 257, + 706, + 266, + 716 + ], + "score": 0.87, + "content": "\\bar { n } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 705, + 316, + 719 + ], + "score": 1.0, + "content": ", denoted as", + "type": "text" + }, + { + "bbox": [ + 316, + 706, + 344, + 717 + ], + "score": 0.91, + "content": "\\bar { n } \\succeq \\bar { n } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 705, + 362, + 719 + ], + "score": 1.0, + "content": ", iff:", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37 + } + ], + "page_idx": 24, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 26, + 293, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 298, + 749, + 313, + 765 + ], + "spans": [ + { + "bbox": [ + 298, + 749, + 313, + 765 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 16, + "width": 15 + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 497, + 344, + 505, + 357 + ], + "lines": [ + { + "bbox": [ + 497, + 346, + 505, + 358 + ], + "spans": [ + { + "bbox": [ + 497, + 346, + 505, + 358 + ], + "score": 0.776, + "content": "■", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 497, + 588, + 505, + 600 + ], + "lines": [ + { + "bbox": [ + 498, + 591, + 505, + 601 + ], + "spans": [ + { + "bbox": [ + 498, + 591, + 505, + 601 + ], + "score": 0.0, + "content": "", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 104, + 82, + 504, + 106 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 161, + 96 + ], + "score": 1.0, + "content": "Proof. Since", + "type": "text" + }, + { + "bbox": [ + 161, + 82, + 181, + 94 + ], + "score": 0.89, + "content": "\\beta \\left( \\cdot \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 82, + 434, + 96 + ], + "score": 1.0, + "content": "is non-decreasing everywhere (by C5), and for any neighbors", + "type": "text" + }, + { + "bbox": [ + 434, + 84, + 442, + 92 + ], + "score": 0.79, + "content": "\\bar { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 82, + 460, + 96 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 461, + 83, + 471, + 92 + ], + "score": 0.87, + "content": "\\bar { n } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 471, + 82, + 505, + 96 + ], + "score": 1.0, + "content": "it holds", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 92, + 380, + 108 + ], + "spans": [ + { + "bbox": [ + 105, + 92, + 124, + 108 + ], + "score": 1.0, + "content": "that", + "type": "text" + }, + { + "bbox": [ + 124, + 93, + 251, + 106 + ], + "score": 0.9, + "content": "\\mathrm { B } _ { \\mathrm { L } } ( q ( \\bar { n } ) ) \\leq q ( \\bar { n } ^ { \\prime } ) \\leq \\mathrm { B } _ { \\mathrm { U } } ( q ( \\bar { n } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 92, + 380, + 108 + ], + "score": 1.0, + "content": "(by C2), we have the following", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 105, + 82, + 505, + 108 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 122, + 107, + 488, + 163 + ], + "lines": [ + { + "bbox": [ + 122, + 107, + 488, + 163 + ], + "spans": [ + { + "bbox": [ + 122, + 107, + 488, + 163 + ], + "score": 0.93, + "content": "\\begin{array} { r l } & { | \\beta \\left( q ( \\bar { n } ) \\right) - \\beta \\left( q ( \\bar { n } ^ { \\prime } ) \\right) | \\leq \\operatorname* { m a x } \\bigg \\{ \\beta \\Big ( \\mathrm { B } _ { \\mathrm { U } } { \\left( q ( \\bar { n } ) \\right) } \\Big ) - \\beta \\Big ( q ( \\bar { n } ) \\Big ) , \\beta \\Big ( q ( \\bar { n } ) \\Big ) - \\beta \\Big ( \\mathrm { B } _ { \\mathrm { L } } { \\left( q ( \\bar { n } ) \\right) } \\Big ) \\bigg \\} } \\\\ & { \\quad \\quad \\quad \\quad = \\operatorname* { m a x } \\bigg \\{ \\Delta \\beta \\Big ( q ( \\bar { n } ) \\Big ) , \\Delta \\beta \\Big ( \\mathrm { B } _ { \\mathrm { L } } { \\left( q ( \\bar { n } ) \\right) } \\Big ) \\bigg \\} } \\end{array}", + "type": "interline_equation", + "image_path": "5e37804c04f0b61b766c1c18b59af0847d6859b2e52026105130c8ec00cc52bc.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 122, + 107, + 488, + 125.66666666666667 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 122, + 125.66666666666667, + 488, + 144.33333333333334 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 122, + 144.33333333333334, + 488, + 163.0 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 164, + 362, + 177 + ], + "lines": [ + { + "bbox": [ + 105, + 163, + 363, + 178 + ], + "spans": [ + { + "bbox": [ + 105, + 163, + 285, + 178 + ], + "score": 1.0, + "content": "as an upper bound on the local sensitivity of", + "type": "text" + }, + { + "bbox": [ + 285, + 164, + 317, + 177 + ], + "score": 0.91, + "content": "\\beta \\left( q ( \\cdot ) \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 163, + 351, + 178 + ], + "score": 1.0, + "content": "at input", + "type": "text" + }, + { + "bbox": [ + 352, + 166, + 358, + 174 + ], + "score": 0.76, + "content": "\\bar { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 359, + 163, + 363, + 178 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5, + "bbox_fs": [ + 105, + 163, + 363, + 178 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 181, + 504, + 215 + ], + "lines": [ + { + "bbox": [ + 105, + 180, + 506, + 195 + ], + "spans": [ + { + "bbox": [ + 105, + 180, + 366, + 195 + ], + "score": 1.0, + "content": "The function computed by Algorithm 3 differs from above when", + "type": "text" + }, + { + "bbox": [ + 367, + 181, + 448, + 194 + ], + "score": 0.93, + "content": "q ( \\bar { n } ) \\in ( \\mathrm { B _ { L } } ( q _ { 0 } ) , q _ { 0 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 449, + 180, + 506, + 195 + ], + "score": 1.0, + "content": ". To complete", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 191, + 506, + 206 + ], + "spans": [ + { + "bbox": [ + 105, + 191, + 402, + 206 + ], + "score": 1.0, + "content": "the proof we need to argue that the local sensitivity is upper bounded by", + "type": "text" + }, + { + "bbox": [ + 403, + 193, + 456, + 205 + ], + "score": 0.91, + "content": "\\Delta \\beta \\left( \\mathrm { B _ { L } } ( q _ { 0 } ) \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 457, + 191, + 473, + 206 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 474, + 193, + 493, + 205 + ], + "score": 0.92, + "content": "q ( { \\bar { n } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 493, + 191, + 506, + 206 + ], + "score": 1.0, + "content": "in", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 203, + 392, + 216 + ], + "spans": [ + { + "bbox": [ + 105, + 203, + 392, + 216 + ], + "score": 1.0, + "content": "this interval. The bound follows from the following three observations.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7, + "bbox_fs": [ + 105, + 180, + 506, + 216 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 219, + 503, + 243 + ], + "lines": [ + { + "bbox": [ + 104, + 217, + 505, + 235 + ], + "spans": [ + { + "bbox": [ + 104, + 217, + 130, + 235 + ], + "score": 1.0, + "content": "First,", + "type": "text" + }, + { + "bbox": [ + 131, + 220, + 161, + 232 + ], + "score": 0.9, + "content": "\\Delta \\beta \\left( q \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 161, + 217, + 285, + 235 + ], + "score": 1.0, + "content": "is non-increasing in the range", + "type": "text" + }, + { + "bbox": [ + 286, + 220, + 331, + 232 + ], + "score": 0.91, + "content": "( \\mathrm { B _ { L } } ( q _ { 0 } ) , 1 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 217, + 358, + 235 + ], + "score": 1.0, + "content": ", since", + "type": "text" + }, + { + "bbox": [ + 358, + 220, + 402, + 232 + ], + "score": 0.92, + "content": "\\beta \\left( \\mathrm { B } _ { \\mathrm { U } } ( q ) \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 402, + 217, + 465, + 235 + ], + "score": 1.0, + "content": "is constant (by", + "type": "text" + }, + { + "bbox": [ + 465, + 220, + 505, + 233 + ], + "score": 0.88, + "content": "\\operatorname { B _ { U } } ( q ) \\geq", + "type": "inline_equation" + } + ], + "index": 9 + }, + { + "bbox": [ + 107, + 230, + 469, + 245 + ], + "spans": [ + { + "bbox": [ + 107, + 232, + 180, + 244 + ], + "score": 0.9, + "content": "\\mathrm { B _ { U } } ( \\mathrm { B _ { L } } ( q _ { 0 } ) ) = q _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 230, + 232, + 245 + ], + "score": 1.0, + "content": "and C5) and", + "type": "text" + }, + { + "bbox": [ + 233, + 231, + 255, + 244 + ], + "score": 0.93, + "content": "\\beta \\left( q \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 230, + 469, + 245 + ], + "score": 1.0, + "content": "is non-decreasing in the range (by C5). In particular,", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5, + "bbox_fs": [ + 104, + 217, + 505, + 245 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 225, + 245, + 386, + 259 + ], + "lines": [ + { + "bbox": [ + 225, + 245, + 386, + 259 + ], + "spans": [ + { + "bbox": [ + 225, + 245, + 386, + 259 + ], + "score": 0.81, + "content": "\\Delta \\beta ( q ) \\leq \\Delta \\beta ( \\mathrm { B } _ { \\mathrm { L } } ( q _ { 0 } ) ) { \\mathrm { ~ i f ~ } } q \\geq \\mathrm { B } _ { \\mathrm { L } } ( q _ { 0 } ) .", + "type": "interline_equation", + "image_path": "e768b40261e07a278ed78af1d8eaacd26eb8efa83b039462e27d4aa6dbd3e341.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 225, + 245, + 386, + 259 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "text", + "bbox": [ + 104, + 260, + 504, + 282 + ], + "lines": [ + { + "bbox": [ + 105, + 259, + 505, + 274 + ], + "spans": [ + { + "bbox": [ + 105, + 259, + 141, + 274 + ], + "score": 1.0, + "content": "Second,", + "type": "text" + }, + { + "bbox": [ + 141, + 261, + 191, + 273 + ], + "score": 0.92, + "content": "\\Delta \\beta \\left( \\mathrm { B } _ { \\mathrm { L } } ( q ) \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 259, + 312, + 274 + ], + "score": 1.0, + "content": "is non-decreasing in the range", + "type": "text" + }, + { + "bbox": [ + 313, + 261, + 337, + 273 + ], + "score": 0.91, + "content": "[ 0 , q _ { 0 } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 259, + 360, + 274 + ], + "score": 1.0, + "content": "since", + "type": "text" + }, + { + "bbox": [ + 361, + 261, + 387, + 273 + ], + "score": 0.92, + "content": "\\operatorname { B _ { L } } ( q )", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 259, + 505, + 274 + ], + "score": 1.0, + "content": "is increasing (by C3 and C6).", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 271, + 177, + 284 + ], + "spans": [ + { + "bbox": [ + 106, + 271, + 177, + 284 + ], + "score": 1.0, + "content": "This implies that", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5, + "bbox_fs": [ + 105, + 259, + 505, + 284 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 224, + 281, + 387, + 295 + ], + "lines": [ + { + "bbox": [ + 224, + 281, + 387, + 295 + ], + "spans": [ + { + "bbox": [ + 224, + 281, + 387, + 295 + ], + "score": 0.89, + "content": "\\Delta \\beta ( \\mathrm { B _ { L } } ( q ) ) \\leq \\Delta \\beta ( \\mathrm { B _ { L } } ( q _ { 0 } ) ) { \\mathrm { ~ i f ~ } } q \\leq q _ { 0 } .", + "type": "interline_equation", + "image_path": "87c019bbfca5244fdfab97ca5325e8b310a2a30fdd80c9a5c4621b63ac321022.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 224, + 281, + 387, + 295 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 301, + 395, + 313 + ], + "lines": [ + { + "bbox": [ + 105, + 300, + 396, + 315 + ], + "spans": [ + { + "bbox": [ + 105, + 300, + 396, + 315 + ], + "score": 1.0, + "content": "By (8) and (9) applied to the intersection of the two ranges, it holds that", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15, + "bbox_fs": [ + 105, + 300, + 396, + 315 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 150, + 315, + 459, + 343 + ], + "lines": [ + { + "bbox": [ + 150, + 315, + 459, + 343 + ], + "spans": [ + { + "bbox": [ + 150, + 315, + 459, + 343 + ], + "score": 0.94, + "content": "\\begin{array} { r } { \\operatorname* { m a x } \\bigg \\{ \\Delta \\beta \\Big ( q ( \\bar { n } ) \\Big ) , ~ \\Delta \\beta \\Big ( \\mathrm { B } _ { \\mathrm { L } } ( q ( \\bar { n } ) ) \\Big ) \\bigg \\} \\leq \\Delta \\beta \\left( \\mathrm { B } _ { \\mathrm { L } } ( q _ { 0 } ) \\right) \\mathrm { i f } ~ \\mathrm { B } _ { \\mathrm { L } } ( q _ { 0 } ) \\leq q \\leq q _ { 0 } , } \\end{array}", + "type": "interline_equation", + "image_path": "a7c2a46609dee524b7163b3e6a3ecf2386ca376b44363b84544140aa39622b24.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 150, + 315, + 459, + 343 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 345, + 149, + 357 + ], + "lines": [ + { + "bbox": [ + 105, + 345, + 150, + 357 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 150, + 357 + ], + "score": 1.0, + "content": "as needed.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17, + "bbox_fs": [ + 105, + 345, + 150, + 357 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 368, + 504, + 392 + ], + "lines": [ + { + "bbox": [ + 105, + 366, + 506, + 383 + ], + "spans": [ + { + "bbox": [ + 105, + 366, + 422, + 383 + ], + "score": 1.0, + "content": "We thus established that the function computed by Algorithm 3, which we call", + "type": "text" + }, + { + "bbox": [ + 422, + 367, + 447, + 381 + ], + "score": 0.88, + "content": "\\tilde { \\mathrm { L S } } ( q )", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 366, + 506, + 383 + ], + "score": 1.0, + "content": "from now on,", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 379, + 315, + 393 + ], + "spans": [ + { + "bbox": [ + 105, + 379, + 315, + 393 + ], + "score": 1.0, + "content": "is an upper bound on the local sensitivity. Formally,", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5, + "bbox_fs": [ + 105, + 366, + 506, + 393 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 177, + 394, + 431, + 422 + ], + "lines": [ + { + "bbox": [ + 177, + 394, + 431, + 422 + ], + "spans": [ + { + "bbox": [ + 177, + 394, + 431, + 422 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\tilde { \\mathrm { L S } } ( q ) \\triangleq \\left\\{ \\begin{array} { l l } { \\Delta \\beta \\left( \\mathrm { B } _ { \\mathrm { L } } ( q _ { 0 } ) \\right) } & { \\mathrm { i f ~ } q \\in ( \\mathrm { B } _ { \\mathrm { L } } ( q _ { 0 } ) , q _ { 0 } ) , } \\\\ { \\operatorname* { m a x } \\left\\{ \\Delta \\beta \\left( q \\right) , \\Delta \\beta \\left( \\mathrm { B } _ { \\mathrm { L } } ( q ) \\right) \\right\\} } & { \\mathrm { o t h e r w i s e } . } \\end{array} \\right. } \\end{array}", + "type": "interline_equation", + "image_path": "bf84673a8a9cc41fcf5b2ef17c4a9a8a0439b4835fdcdf431c81993a82464af2.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 177, + 394, + 431, + 422 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 432, + 352, + 444 + ], + "lines": [ + { + "bbox": [ + 105, + 430, + 353, + 447 + ], + "spans": [ + { + "bbox": [ + 105, + 430, + 324, + 447 + ], + "score": 1.0, + "content": "The following proposition characterizes the growth of", + "type": "text" + }, + { + "bbox": [ + 324, + 431, + 349, + 445 + ], + "score": 0.9, + "content": "\\tilde { \\mathrm { L S } } ( q )", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 430, + 353, + 447 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21, + "bbox_fs": [ + 105, + 430, + 353, + 447 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 447, + 504, + 472 + ], + "lines": [ + { + "bbox": [ + 105, + 446, + 505, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 261, + 462 + ], + "score": 1.0, + "content": "Proposition 14. Assuming conditions", + "type": "text" + }, + { + "bbox": [ + 262, + 448, + 292, + 459 + ], + "score": 0.49, + "content": "C 2 { - } C 6 ,", + "type": "inline_equation" + }, + { + "bbox": [ + 292, + 446, + 345, + 462 + ], + "score": 1.0, + "content": ", the function", + "type": "text" + }, + { + "bbox": [ + 345, + 447, + 370, + 460 + ], + "score": 0.84, + "content": "\\tilde { \\mathrm { L S } } ( q )", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 446, + 456, + 462 + ], + "score": 1.0, + "content": "is non-decreasing in", + "type": "text" + }, + { + "bbox": [ + 457, + 448, + 501, + 461 + ], + "score": 0.9, + "content": "[ 0 , \\mathrm { B _ { L } } ( q _ { 0 } ) ]", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 446, + 505, + 462 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 458, + 325, + 473 + ], + "spans": [ + { + "bbox": [ + 105, + 458, + 154, + 473 + ], + "score": 1.0, + "content": "constant in", + "type": "text" + }, + { + "bbox": [ + 154, + 459, + 202, + 471 + ], + "score": 0.93, + "content": "[ \\mathrm { B _ { L } } ( q _ { 0 } ) , q _ { 0 } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 458, + 296, + 473 + ], + "score": 1.0, + "content": ", and non-increasing in", + "type": "text" + }, + { + "bbox": [ + 297, + 459, + 321, + 471 + ], + "score": 0.89, + "content": "[ q _ { 0 } , 1 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 458, + 325, + 473 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5, + "bbox_fs": [ + 105, + 446, + 505, + 473 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 482, + 278, + 495 + ], + "lines": [ + { + "bbox": [ + 106, + 482, + 279, + 496 + ], + "spans": [ + { + "bbox": [ + 106, + 482, + 279, + 496 + ], + "score": 1.0, + "content": "Proof. Consider separately three intervals.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24, + "bbox_fs": [ + 106, + 482, + 279, + 496 + ] + }, + { + "type": "list", + "bbox": [ + 132, + 505, + 505, + 579 + ], + "lines": [ + { + "bbox": [ + 133, + 505, + 334, + 520 + ], + "spans": [ + { + "bbox": [ + 133, + 505, + 210, + 520 + ], + "score": 1.0, + "content": "• By construction,", + "type": "text" + }, + { + "bbox": [ + 210, + 505, + 224, + 517 + ], + "score": 0.69, + "content": "\\tilde { \\mathrm { L S } }", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 505, + 280, + 520 + ], + "score": 1.0, + "content": "is constant in", + "type": "text" + }, + { + "bbox": [ + 281, + 506, + 329, + 519 + ], + "score": 0.9, + "content": "[ \\mathrm { B _ { L } } ( q _ { 0 } ) , q _ { 0 } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 505, + 334, + 520 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 25, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 132, + 523, + 505, + 539 + ], + "spans": [ + { + "bbox": [ + 132, + 523, + 227, + 539 + ], + "score": 1.0, + "content": "• Since both functions", + "type": "text" + }, + { + "bbox": [ + 227, + 525, + 255, + 538 + ], + "score": 0.91, + "content": "\\Delta \\beta \\left( \\cdot \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 256, + 523, + 274, + 539 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 275, + 525, + 323, + 538 + ], + "score": 0.93, + "content": "\\Delta \\beta \\left( \\mathrm { B _ { L } } ( \\cdot ) \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 323, + 523, + 434, + 539 + ], + "score": 1.0, + "content": "are each non-decreasing in", + "type": "text" + }, + { + "bbox": [ + 434, + 525, + 480, + 538 + ], + "score": 0.9, + "content": "[ 0 , \\mathrm { B _ { L } } ( q _ { 0 } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 480, + 523, + 505, + 539 + ], + "score": 1.0, + "content": ", so is", + "type": "text" + } + ], + "index": 26, + "is_list_start_line": true + }, + { + "bbox": [ + 141, + 536, + 185, + 549 + ], + "spans": [ + { + "bbox": [ + 141, + 536, + 185, + 549 + ], + "score": 1.0, + "content": "their max.", + "type": "text" + } + ], + "index": 27, + "is_list_end_line": true + }, + { + "bbox": [ + 132, + 553, + 505, + 569 + ], + "spans": [ + { + "bbox": [ + 132, + 553, + 202, + 569 + ], + "score": 1.0, + "content": "• In the interval", + "type": "text" + }, + { + "bbox": [ + 203, + 555, + 255, + 567 + ], + "score": 0.66, + "content": "( q _ { 0 } , 1 ] , \\beta ( q )", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 553, + 335, + 569 + ], + "score": 1.0, + "content": "is constant. Hence", + "type": "text" + }, + { + "bbox": [ + 336, + 555, + 387, + 567 + ], + "score": 0.92, + "content": "\\Delta \\beta ( q ) = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 553, + 406, + 569 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 406, + 555, + 505, + 568 + ], + "score": 0.92, + "content": "\\Delta \\beta ( \\mathrm { B } _ { \\mathrm { L } } ( q ) ) = \\beta ( q ) -", + "type": "inline_equation" + } + ], + "index": 28, + "is_list_start_line": true + }, + { + "bbox": [ + 142, + 565, + 480, + 580 + ], + "spans": [ + { + "bbox": [ + 142, + 566, + 185, + 578 + ], + "score": 0.92, + "content": "\\beta \\left( \\mathrm { B _ { L } } ( q ) \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 565, + 353, + 580 + ], + "score": 1.0, + "content": "is non-decreasing. Their maximum value", + "type": "text" + }, + { + "bbox": [ + 353, + 567, + 403, + 578 + ], + "score": 0.91, + "content": "\\Delta \\beta \\left( \\mathrm { B _ { L } } ( q ) \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 565, + 480, + 580 + ], + "score": 1.0, + "content": "is non-decreasing.", + "type": "text" + } + ], + "index": 29, + "is_list_end_line": true + } + ], + "index": 27, + "bbox_fs": [ + 132, + 505, + 505, + 580 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 588, + 183, + 600 + ], + "lines": [ + { + "bbox": [ + 106, + 587, + 184, + 601 + ], + "spans": [ + { + "bbox": [ + 106, + 587, + 184, + 601 + ], + "score": 1.0, + "content": "The claim follows.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30, + "bbox_fs": [ + 106, + 587, + 184, + 601 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 612, + 506, + 635 + ], + "lines": [ + { + "bbox": [ + 106, + 612, + 505, + 625 + ], + "spans": [ + { + "bbox": [ + 106, + 612, + 456, + 625 + ], + "score": 1.0, + "content": "We next prove correctness of Algorithm 4, which computes the maximal sensitivity of", + "type": "text" + }, + { + "bbox": [ + 456, + 613, + 464, + 624 + ], + "score": 0.87, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 465, + 612, + 505, + 625 + ], + "score": 1.0, + "content": "at a fixed", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 623, + 145, + 636 + ], + "spans": [ + { + "bbox": [ + 105, + 623, + 145, + 636 + ], + "score": 1.0, + "content": "distance.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5, + "bbox_fs": [ + 105, + 612, + 505, + 636 + ] + }, + { + "type": "text", + "bbox": [ + 109, + 640, + 421, + 653 + ], + "lines": [ + { + "bbox": [ + 106, + 639, + 422, + 654 + ], + "spans": [ + { + "bbox": [ + 106, + 639, + 422, + 654 + ], + "score": 1.0, + "content": "The proof relies on the following notion of a partial order between histograms.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33, + "bbox_fs": [ + 106, + 639, + 422, + 654 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 654, + 336, + 666 + ], + "lines": [ + { + "bbox": [ + 105, + 653, + 335, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 653, + 217, + 668 + ], + "score": 1.0, + "content": "Definition 15. Prefix sums", + "type": "text" + }, + { + "bbox": [ + 217, + 654, + 241, + 666 + ], + "score": 0.92, + "content": "S _ { i } ( \\bar { n } )", + "type": "inline_equation" + }, + { + "bbox": [ + 241, + 653, + 335, + 668 + ], + "score": 1.0, + "content": "are defined as follows:", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 34, + "bbox_fs": [ + 105, + 653, + 335, + 668 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 251, + 668, + 360, + 703 + ], + "lines": [ + { + "bbox": [ + 251, + 668, + 360, + 703 + ], + "spans": [ + { + "bbox": [ + 251, + 668, + 360, + 703 + ], + "score": 0.95, + "content": "S _ { i } ( \\bar { n } ) \\triangleq \\sum _ { j = 1 } ^ { i } ( n ^ { ( 1 ) } - n ^ { ( j ) } ) .", + "type": "interline_equation", + "image_path": "61e36132164f56cbb5eac510ee6c00562799aab463400659a78d5be1f75c552e.jpg" + } + ] + } + ], + "index": 35.5, + "virtual_lines": [ + { + "bbox": [ + 251, + 668, + 360, + 685.5 + ], + "spans": [], + "index": 35 + }, + { + "bbox": [ + 251, + 685.5, + 360, + 703.0 + ], + "spans": [], + "index": 36 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 705, + 363, + 718 + ], + "lines": [ + { + "bbox": [ + 106, + 705, + 362, + 719 + ], + "spans": [ + { + "bbox": [ + 106, + 705, + 205, + 719 + ], + "score": 1.0, + "content": "We say that a histogram", + "type": "text" + }, + { + "bbox": [ + 205, + 708, + 212, + 716 + ], + "score": 0.79, + "content": "\\bar { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 705, + 257, + 719 + ], + "score": 1.0, + "content": "dominates", + "type": "text" + }, + { + "bbox": [ + 257, + 706, + 266, + 716 + ], + "score": 0.87, + "content": "\\bar { n } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 705, + 316, + 719 + ], + "score": 1.0, + "content": ", denoted as", + "type": "text" + }, + { + "bbox": [ + 316, + 706, + 344, + 717 + ], + "score": 0.91, + "content": "\\bar { n } \\succeq \\bar { n } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 705, + 362, + 719 + ], + "score": 1.0, + "content": ", iff:", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37, + "bbox_fs": [ + 106, + 705, + 362, + 719 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 500, + 109 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 500, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 160, + 95 + ], + "score": 1.0, + "content": "The function", + "type": "text" + }, + { + "bbox": [ + 160, + 82, + 177, + 95 + ], + "score": 0.92, + "content": "q ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 177, + 81, + 500, + 95 + ], + "score": 1.0, + "content": "is monotone under this notion of dominance (assuming certain conditions hold):", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 96, + 424, + 110 + ], + "spans": [ + { + "bbox": [ + 106, + 96, + 184, + 110 + ], + "score": 1.0, + "content": "Proposition 16. If", + "type": "text" + }, + { + "bbox": [ + 184, + 96, + 200, + 109 + ], + "score": 0.79, + "content": "q ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 96, + 303, + 110 + ], + "score": 1.0, + "content": "satisfies C1, C2, C7, and", + "type": "text" + }, + { + "bbox": [ + 304, + 97, + 316, + 107 + ], + "score": 0.48, + "content": "C 8 _ { \\mathrm { : } }", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 96, + 337, + 110 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 338, + 96, + 400, + 109 + ], + "score": 0.91, + "content": "q ( \\bar { n } ) < \\mathrm { B _ { U } } ( q _ { 0 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 96, + 424, + 110 + ], + "score": 1.0, + "content": ", then", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "interline_equation", + "bbox": [ + 254, + 112, + 356, + 127 + ], + "lines": [ + { + "bbox": [ + 254, + 112, + 356, + 127 + ], + "spans": [ + { + "bbox": [ + 254, + 112, + 356, + 127 + ], + "score": 0.89, + "content": "\\bar { n } \\succeq \\bar { n } ^ { \\prime } \\Rightarrow q ( \\bar { n } ) \\leq q ( \\bar { n } ^ { \\prime } ) .", + "type": "interline_equation", + "image_path": "932364722b16b32734ed5f03e55e82f13f3610d021ef610e08875c1043083e30.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 254, + 112, + 356, + 127 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 137, + 505, + 173 + ], + "lines": [ + { + "bbox": [ + 105, + 137, + 505, + 151 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 224, + 151 + ], + "score": 1.0, + "content": "Proof. We may assume that", + "type": "text" + }, + { + "bbox": [ + 224, + 137, + 277, + 149 + ], + "score": 0.95, + "content": "n ^ { ( 1 ) } = n ^ { \\prime ( 1 ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 137, + 424, + 151 + ], + "score": 1.0, + "content": ". Indeed, if this does not hold, add", + "type": "text" + }, + { + "bbox": [ + 424, + 137, + 480, + 151 + ], + "score": 0.92, + "content": "| n ^ { ( 1 ) } - n ^ { \\prime ( 1 ) } |", + "type": "inline_equation" + }, + { + "bbox": [ + 480, + 137, + 505, + 151 + ], + "score": 1.0, + "content": "to all", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 150, + 504, + 162 + ], + "spans": [ + { + "bbox": [ + 106, + 150, + 504, + 162 + ], + "score": 1.0, + "content": "coordinates of the histogram with the smaller of the two values. This transform does not change the", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 107, + 160, + 483, + 173 + ], + "spans": [ + { + "bbox": [ + 107, + 163, + 113, + 172 + ], + "score": 0.75, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 113, + 160, + 249, + 173 + ], + "score": 1.0, + "content": "value (by C8) and it preserves the", + "type": "text" + }, + { + "bbox": [ + 250, + 162, + 260, + 172 + ], + "score": 0.84, + "content": "\\succeq", + "type": "inline_equation" + }, + { + "bbox": [ + 260, + 160, + 382, + 173 + ], + "score": 1.0, + "content": "relationship as all prefix sums", + "type": "text" + }, + { + "bbox": [ + 382, + 160, + 403, + 173 + ], + "score": 0.91, + "content": "S _ { i } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 160, + 483, + 173 + ], + "score": 1.0, + "content": "remain unchanged.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 107, + 177, + 331, + 189 + ], + "lines": [ + { + "bbox": [ + 106, + 176, + 332, + 191 + ], + "spans": [ + { + "bbox": [ + 106, + 176, + 332, + 191 + ], + "score": 1.0, + "content": "We make a simple observation that will be helpful later:", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "interline_equation", + "bbox": [ + 209, + 193, + 402, + 229 + ], + "lines": [ + { + "bbox": [ + 209, + 193, + 402, + 229 + ], + "spans": [ + { + "bbox": [ + 209, + 193, + 402, + 229 + ], + "score": 0.94, + "content": "\\forall i \\in [ m ] \\mathrm { i t } \\mathrm { h o l d s ~ t h a t } \\sum _ { j = 1 } ^ { i } ( n ^ { ( 1 ) } - n _ { j } ) \\geq S _ { i } ( \\bar { n } ) .", + "type": "interline_equation", + "image_path": "87a290a91360b0afa6a80fe03af03f377df02790898ac4640ed1989f63ae2d4d.jpg" + } + ] + } + ], + "index": 7.5, + "virtual_lines": [ + { + "bbox": [ + 209, + 193, + 402, + 211.0 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 209, + 211.0, + 402, + 229.0 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 232, + 506, + 266 + ], + "lines": [ + { + "bbox": [ + 105, + 232, + 504, + 245 + ], + "spans": [ + { + "bbox": [ + 105, + 232, + 496, + 245 + ], + "score": 1.0, + "content": "The inequality holds because the prefix sum accumulates the gaps between the largest value of", + "type": "text" + }, + { + "bbox": [ + 497, + 234, + 504, + 242 + ], + "score": 0.78, + "content": "\\bar { n }", + "type": "inline_equation" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 243, + 505, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 243, + 505, + 255 + ], + "score": 1.0, + "content": "and all other values in the non-decreasing order. Any deviation from this order may only increase", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 253, + 173, + 268 + ], + "spans": [ + { + "bbox": [ + 105, + 253, + 173, + 268 + ], + "score": 1.0, + "content": "the prefix sums.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 107, + 271, + 504, + 305 + ], + "lines": [ + { + "bbox": [ + 105, + 270, + 505, + 284 + ], + "spans": [ + { + "bbox": [ + 105, + 270, + 505, + 284 + ], + "score": 1.0, + "content": "The following lemma constructs a monotone chain (in the partial order of dominance) of histograms", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 281, + 506, + 295 + ], + "spans": [ + { + "bbox": [ + 105, + 281, + 152, + 295 + ], + "score": 1.0, + "content": "connecting", + "type": "text" + }, + { + "bbox": [ + 153, + 283, + 160, + 292 + ], + "score": 0.74, + "content": "\\bar { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 281, + 178, + 295 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 178, + 282, + 188, + 292 + ], + "score": 0.86, + "content": "\\bar { n } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 281, + 487, + 295 + ], + "score": 1.0, + "content": "via a sequence of intermediate steps that either do not change the value of", + "type": "text" + }, + { + "bbox": [ + 487, + 284, + 493, + 294 + ], + "score": 0.79, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 493, + 281, + 506, + 295 + ], + "score": 1.0, + "content": "or", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 293, + 267, + 304 + ], + "spans": [ + { + "bbox": [ + 106, + 293, + 267, + 304 + ], + "score": 1.0, + "content": "touch at most two coordinates at a time.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 107, + 309, + 503, + 336 + ], + "lines": [ + { + "bbox": [ + 105, + 308, + 505, + 324 + ], + "spans": [ + { + "bbox": [ + 105, + 308, + 243, + 324 + ], + "score": 1.0, + "content": "Lemma 17. There exists a chain", + "type": "text" + }, + { + "bbox": [ + 244, + 310, + 376, + 322 + ], + "score": 0.91, + "content": "{ \\bar { n } } = { \\bar { n } } _ { 0 } \\succeq { \\bar { n } } _ { 1 } \\succeq \\cdot \\cdot \\cdot \\succeq { \\bar { n } } _ { d } = { \\bar { n } } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 308, + 448, + 324 + ], + "score": 1.0, + "content": ", such that for all", + "type": "text" + }, + { + "bbox": [ + 448, + 310, + 477, + 321 + ], + "score": 0.91, + "content": "i \\in [ d ]", + "type": "inline_equation" + }, + { + "bbox": [ + 478, + 308, + 505, + 324 + ], + "score": 1.0, + "content": "either", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 107, + 315, + 501, + 343 + ], + "spans": [ + { + "bbox": [ + 107, + 323, + 172, + 336 + ], + "score": 0.91, + "content": "d ( \\bar { n } _ { i - 1 } , \\bar { n } _ { i } ) = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 315, + 185, + 343 + ], + "score": 1.0, + "content": "or", + "type": "text" + }, + { + "bbox": [ + 185, + 324, + 241, + 336 + ], + "score": 0.92, + "content": "\\bar { n } _ { i - 1 } = \\pi ( \\bar { n } _ { i } )", + "type": "inline_equation" + }, + { + "bbox": [ + 242, + 315, + 331, + 343 + ], + "score": 1.0, + "content": "for some permutation", + "type": "text" + }, + { + "bbox": [ + 331, + 326, + 339, + 334 + ], + "score": 0.55, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 315, + 352, + 343 + ], + "score": 1.0, + "content": "on", + "type": "text" + }, + { + "bbox": [ + 353, + 324, + 367, + 336 + ], + "score": 0.84, + "content": "[ m ]", + "type": "inline_equation" + }, + { + "bbox": [ + 368, + 315, + 426, + 343 + ], + "score": 1.0, + "content": ". Additionally,", + "type": "text" + }, + { + "bbox": [ + 443, + 321, + 501, + 339 + ], + "score": 1.0, + "content": "= · · · = n(1)d .", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5 + }, + { + "type": "text", + "bbox": [ + 106, + 347, + 505, + 383 + ], + "lines": [ + { + "bbox": [ + 106, + 347, + 505, + 360 + ], + "spans": [ + { + "bbox": [ + 106, + 347, + 263, + 360 + ], + "score": 1.0, + "content": "Proof (Lemma). Wlog we assume that", + "type": "text" + }, + { + "bbox": [ + 263, + 349, + 271, + 357 + ], + "score": 0.79, + "content": "\\bar { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 347, + 289, + 360 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 289, + 348, + 299, + 357 + ], + "score": 0.86, + "content": "\\bar { n } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 347, + 505, + 360 + ], + "score": 1.0, + "content": "are each sorted in the descending order. The proof", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 359, + 505, + 373 + ], + "spans": [ + { + "bbox": [ + 105, + 359, + 185, + 373 + ], + "score": 1.0, + "content": "is by induction on", + "type": "text" + }, + { + "bbox": [ + 185, + 359, + 343, + 372 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\ell ( \\bar { n } , \\bar { n } ^ { \\prime } ) \\stackrel { \\Delta } { = } \\sum _ { i } \\lceil n _ { i } - n _ { i } ^ { \\prime } \\rceil \\leq 2 d ( \\bar { n } , \\bar { n } ^ { \\prime } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 359, + 505, + 373 + ], + "score": 1.0, + "content": ", which, by construction, only assumes", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 371, + 221, + 383 + ], + "spans": [ + { + "bbox": [ + 105, + 371, + 221, + 383 + ], + "score": 1.0, + "content": "non-negative integer values.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 106, + 387, + 505, + 448 + ], + "lines": [ + { + "bbox": [ + 104, + 386, + 504, + 400 + ], + "spans": [ + { + "bbox": [ + 104, + 386, + 406, + 400 + ], + "score": 1.0, + "content": "If the distance is 0, the statement is immediate. Otherwise, find the smallest", + "type": "text" + }, + { + "bbox": [ + 407, + 389, + 411, + 398 + ], + "score": 0.68, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 411, + 386, + 440, + 400 + ], + "score": 1.0, + "content": "so that", + "type": "text" + }, + { + "bbox": [ + 441, + 388, + 504, + 400 + ], + "score": 0.93, + "content": "S _ { i } ( \\bar { n } ) > S _ { i } ( \\bar { n } ^ { \\prime } )", + "type": "inline_equation" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 398, + 506, + 412 + ], + "spans": [ + { + "bbox": [ + 105, + 398, + 238, + 412 + ], + "score": 1.0, + "content": "(if all prefix sums are equal and", + "type": "text" + }, + { + "bbox": [ + 238, + 398, + 289, + 410 + ], + "score": 0.92, + "content": "n ^ { ( 1 ) } = n ^ { \\prime ( 1 ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 290, + 398, + 374, + 412 + ], + "score": 1.0, + "content": ", it would imply that", + "type": "text" + }, + { + "bbox": [ + 374, + 400, + 406, + 410 + ], + "score": 0.88, + "content": "\\bar { n } = \\bar { n } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 398, + 506, + 412 + ], + "score": 1.0, + "content": "). In particular, it means", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 411, + 506, + 426 + ], + "spans": [ + { + "bbox": [ + 105, + 411, + 124, + 426 + ], + "score": 1.0, + "content": "that", + "type": "text" + }, + { + "bbox": [ + 125, + 412, + 162, + 425 + ], + "score": 0.93, + "content": "n _ { j } = n _ { j } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 411, + 179, + 426 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 180, + 412, + 205, + 424 + ], + "score": 0.9, + "content": "j < i", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 411, + 224, + 426 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 225, + 412, + 331, + 425 + ], + "score": 0.93, + "content": "n _ { i } < n _ { i } ^ { \\prime } \\le n _ { i - 1 } = n _ { i - 1 } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 332, + 411, + 354, + 426 + ], + "score": 1.0, + "content": ". Let", + "type": "text" + }, + { + "bbox": [ + 355, + 412, + 443, + 425 + ], + "score": 0.92, + "content": "x \\triangleq \\operatorname* { m i n } ( n _ { i } ^ { \\prime } - n _ { i } , 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 443, + 411, + 479, + 426 + ], + "score": 1.0, + "content": ". Define", + "type": "text" + }, + { + "bbox": [ + 480, + 412, + 492, + 423 + ], + "score": 0.87, + "content": "\\bar { n } ^ { \\prime \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 493, + 411, + 506, + 426 + ], + "score": 1.0, + "content": "as", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 423, + 505, + 438 + ], + "spans": [ + { + "bbox": [ + 105, + 423, + 155, + 438 + ], + "score": 1.0, + "content": "identical to", + "type": "text" + }, + { + "bbox": [ + 155, + 425, + 165, + 435 + ], + "score": 0.84, + "content": "\\bar { n } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 166, + 423, + 215, + 438 + ], + "score": 1.0, + "content": "except that", + "type": "text" + }, + { + "bbox": [ + 215, + 425, + 272, + 437 + ], + "score": 0.91, + "content": "n _ { i } ^ { \\prime \\prime } = n _ { i } ^ { \\prime } - x", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 423, + 505, + 438 + ], + "score": 1.0, + "content": ". The new value is guaranteed to be non-negative, since", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 107, + 435, + 505, + 448 + ], + "spans": [ + { + "bbox": [ + 107, + 435, + 156, + 448 + ], + "score": 0.93, + "content": "x \\leq n _ { i } ^ { \\prime } - n _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 156, + 435, + 173, + 448 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 174, + 436, + 203, + 447 + ], + "score": 0.91, + "content": "n _ { i } \\geq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 435, + 246, + 448 + ], + "score": 1.0, + "content": ". Note that", + "type": "text" + }, + { + "bbox": [ + 246, + 437, + 258, + 446 + ], + "score": 0.87, + "content": "\\bar { n } ^ { \\prime \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 435, + 505, + 448 + ], + "score": 1.0, + "content": "is not necessarily sorted anymore. Consider two possibilities.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 107, + 451, + 503, + 475 + ], + "lines": [ + { + "bbox": [ + 105, + 450, + 505, + 466 + ], + "spans": [ + { + "bbox": [ + 105, + 450, + 141, + 466 + ], + "score": 1.0, + "content": "Case I:", + "type": "text" + }, + { + "bbox": [ + 141, + 452, + 177, + 464 + ], + "score": 0.91, + "content": "\\bar { n } \\succeq \\bar { n } ^ { \\prime \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 450, + 211, + 466 + ], + "score": 1.0, + "content": ". Since", + "type": "text" + }, + { + "bbox": [ + 211, + 452, + 250, + 464 + ], + "score": 0.85, + "content": "\\bar { n } ^ { \\prime \\prime } \\succeq \\bar { n } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 450, + 255, + 466 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 255, + 452, + 338, + 465 + ], + "score": 0.79, + "content": "\\ell ( \\bar { n } , \\bar { n } ^ { \\prime \\prime } ) < \\ell ( \\bar { n } , \\bar { n } ^ { \\prime } )", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 450, + 362, + 466 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 362, + 452, + 423, + 465 + ], + "score": 0.92, + "content": "d ( \\bar { n } ^ { \\prime \\prime } , \\bar { n } ^ { \\prime } ) = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 423, + 450, + 505, + 466 + ], + "score": 1.0, + "content": ", we may apply the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 461, + 262, + 477 + ], + "spans": [ + { + "bbox": [ + 105, + 461, + 234, + 477 + ], + "score": 1.0, + "content": "induction hypothesis to the pair", + "type": "text" + }, + { + "bbox": [ + 235, + 464, + 257, + 474 + ], + "score": 0.48, + "content": "\\bar { n } , \\bar { n } ^ { \\prime \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 461, + 262, + 477 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5 + }, + { + "type": "text", + "bbox": [ + 106, + 479, + 505, + 542 + ], + "lines": [ + { + "bbox": [ + 106, + 480, + 506, + 493 + ], + "spans": [ + { + "bbox": [ + 106, + 480, + 143, + 493 + ], + "score": 1.0, + "content": "Case II:", + "type": "text" + }, + { + "bbox": [ + 143, + 480, + 175, + 493 + ], + "score": 0.91, + "content": "\\bar { n } \\not \\subset \\bar { n } ^ { \\prime \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 175, + 480, + 360, + 493 + ], + "score": 1.0, + "content": ". This may happen because the prefix sums of", + "type": "text" + }, + { + "bbox": [ + 361, + 481, + 372, + 491 + ], + "score": 0.88, + "content": "\\bar { n } ^ { \\prime \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 373, + 480, + 461, + 493 + ], + "score": 1.0, + "content": "increase compared to", + "type": "text" + }, + { + "bbox": [ + 461, + 480, + 489, + 493 + ], + "score": 0.93, + "content": "S _ { j } ( \\bar { n } ^ { \\prime } )", + "type": "inline_equation" + }, + { + "bbox": [ + 490, + 480, + 506, + 493 + ], + "score": 1.0, + "content": "for", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 492, + 506, + 510 + ], + "spans": [ + { + "bbox": [ + 106, + 495, + 130, + 507 + ], + "score": 0.89, + "content": "j \\geq i", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 493, + 228, + 510 + ], + "score": 1.0, + "content": ". Find the smallest such", + "type": "text" + }, + { + "bbox": [ + 228, + 495, + 236, + 505 + ], + "score": 0.83, + "content": "i ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 493, + 267, + 510 + ], + "score": 1.0, + "content": "so that", + "type": "text" + }, + { + "bbox": [ + 267, + 492, + 375, + 509 + ], + "score": 0.94, + "content": "\\textstyle \\sum _ { j = 1 } ^ { i ^ { \\prime } } ( n _ { 1 } ^ { \\prime \\prime } - n _ { j } ^ { \\prime \\prime } ) > S _ { i ^ { \\prime } } ( \\bar { n } )", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 493, + 408, + 510 + ], + "score": 1.0, + "content": ". (Since", + "type": "text" + }, + { + "bbox": [ + 409, + 495, + 421, + 506 + ], + "score": 0.87, + "content": "\\bar { n } ^ { \\prime \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 422, + 493, + 506, + 510 + ], + "score": 1.0, + "content": "is not sorted, we fix", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 508, + 505, + 520 + ], + "spans": [ + { + "bbox": [ + 106, + 508, + 384, + 520 + ], + "score": 1.0, + "content": "the order in which prefix sums are accumulated to be the same as in", + "type": "text" + }, + { + "bbox": [ + 384, + 510, + 392, + 518 + ], + "score": 0.76, + "content": "\\bar { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 508, + 428, + 520 + ], + "score": 1.0, + "content": "; by (10)", + "type": "text" + }, + { + "bbox": [ + 428, + 508, + 436, + 518 + ], + "score": 0.82, + "content": "i ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 508, + 505, + 520 + ], + "score": 1.0, + "content": "is well defined).", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 517, + 506, + 532 + ], + "spans": [ + { + "bbox": [ + 105, + 517, + 155, + 532 + ], + "score": 1.0, + "content": "Next we let", + "type": "text" + }, + { + "bbox": [ + 155, + 519, + 169, + 529 + ], + "score": 0.91, + "content": "\\bar { n } ^ { \\prime \\prime \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 170, + 517, + 230, + 532 + ], + "score": 1.0, + "content": "be identical to", + "type": "text" + }, + { + "bbox": [ + 230, + 519, + 242, + 529 + ], + "score": 0.87, + "content": "\\bar { n } ^ { \\prime \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 243, + 517, + 289, + 532 + ], + "score": 1.0, + "content": "except that", + "type": "text" + }, + { + "bbox": [ + 290, + 519, + 348, + 532 + ], + "score": 0.93, + "content": "n _ { i ^ { \\prime } } ^ { \\prime \\prime \\prime } = n _ { i ^ { \\prime } } ^ { \\prime \\prime } + x", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 517, + 415, + 532 + ], + "score": 1.0, + "content": ". In other words,", + "type": "text" + }, + { + "bbox": [ + 415, + 519, + 430, + 529 + ], + "score": 0.88, + "content": "\\bar { n } ^ { \\prime \\prime \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 430, + 517, + 481, + 532 + ], + "score": 1.0, + "content": "differs from", + "type": "text" + }, + { + "bbox": [ + 482, + 519, + 491, + 529 + ], + "score": 0.85, + "content": "\\bar { n } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 491, + 517, + 506, + 532 + ], + "score": 1.0, + "content": "by", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 530, + 287, + 542 + ], + "spans": [ + { + "bbox": [ + 106, + 530, + 139, + 542 + ], + "score": 1.0, + "content": "shifting", + "type": "text" + }, + { + "bbox": [ + 140, + 532, + 146, + 540 + ], + "score": 0.76, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 147, + 530, + 214, + 542 + ], + "score": 1.0, + "content": "from coordinate", + "type": "text" + }, + { + "bbox": [ + 214, + 531, + 219, + 540 + ], + "score": 0.78, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 530, + 275, + 542 + ], + "score": 1.0, + "content": "to coordinate", + "type": "text" + }, + { + "bbox": [ + 275, + 531, + 282, + 540 + ], + "score": 0.83, + "content": "i ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 530, + 287, + 542 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 106, + 546, + 505, + 592 + ], + "lines": [ + { + "bbox": [ + 105, + 546, + 506, + 560 + ], + "spans": [ + { + "bbox": [ + 105, + 546, + 219, + 560 + ], + "score": 1.0, + "content": "We argue that incrementing", + "type": "text" + }, + { + "bbox": [ + 219, + 547, + 232, + 559 + ], + "score": 0.89, + "content": "n _ { i ^ { \\prime } } ^ { \\prime \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 546, + 246, + 560 + ], + "score": 1.0, + "content": "by", + "type": "text" + }, + { + "bbox": [ + 246, + 549, + 253, + 557 + ], + "score": 0.75, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 546, + 408, + 560 + ], + "score": 1.0, + "content": "does not change the maximal value of", + "type": "text" + }, + { + "bbox": [ + 408, + 547, + 420, + 558 + ], + "score": 0.87, + "content": "\\bar { n } ^ { \\prime \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 546, + 441, + 560 + ], + "score": 1.0, + "content": ", i.e.,", + "type": "text" + }, + { + "bbox": [ + 441, + 547, + 482, + 559 + ], + "score": 0.92, + "content": "n _ { 1 } ^ { \\prime \\prime \\prime } > n _ { i \\prime } ^ { \\prime \\prime \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 483, + 546, + 506, + 560 + ], + "score": 1.0, + "content": ". Our", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 558, + 505, + 569 + ], + "spans": [ + { + "bbox": [ + 106, + 558, + 145, + 569 + ], + "score": 1.0, + "content": "choice of", + "type": "text" + }, + { + "bbox": [ + 146, + 558, + 153, + 568 + ], + "score": 0.85, + "content": "i ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 153, + 558, + 372, + 569 + ], + "score": 1.0, + "content": ", which is the smallest index so that the prefix sum over", + "type": "text" + }, + { + "bbox": [ + 372, + 558, + 384, + 568 + ], + "score": 0.89, + "content": "\\bar { n } ^ { \\prime \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 558, + 462, + 569 + ], + "score": 1.0, + "content": "overtakes that over", + "type": "text" + }, + { + "bbox": [ + 462, + 560, + 469, + 568 + ], + "score": 0.81, + "content": "\\bar { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 470, + 558, + 505, + 569 + ], + "score": 1.0, + "content": ", implies", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 104, + 567, + 503, + 583 + ], + "spans": [ + { + "bbox": [ + 104, + 567, + 124, + 583 + ], + "score": 1.0, + "content": "that", + "type": "text" + }, + { + "bbox": [ + 125, + 569, + 211, + 581 + ], + "score": 0.93, + "content": "n _ { 1 } ^ { \\prime \\prime } - n _ { i ^ { \\prime } } ^ { \\prime \\prime } > n _ { 1 } - n _ { i ^ { \\prime } }", + "type": "inline_equation" + }, + { + "bbox": [ + 211, + 567, + 241, + 583 + ], + "score": 1.0, + "content": ". Since", + "type": "text" + }, + { + "bbox": [ + 242, + 569, + 279, + 581 + ], + "score": 0.92, + "content": "n _ { 1 } ^ { \\prime \\prime } = n _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 567, + 338, + 583 + ], + "score": 1.0, + "content": ", it means that", + "type": "text" + }, + { + "bbox": [ + 338, + 569, + 377, + 581 + ], + "score": 0.93, + "content": "n _ { i ^ { \\prime } } > n _ { i ^ { \\prime } } ^ { \\prime \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 567, + 442, + 583 + ], + "score": 1.0, + "content": "(and by adding", + "type": "text" + }, + { + "bbox": [ + 443, + 572, + 450, + 579 + ], + "score": 0.75, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 567, + 490, + 583 + ], + "score": 1.0, + "content": "we move", + "type": "text" + }, + { + "bbox": [ + 491, + 569, + 503, + 581 + ], + "score": 0.9, + "content": "n _ { i ^ { \\prime } } ^ { \\prime \\prime }", + "type": "inline_equation" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 579, + 217, + 592 + ], + "spans": [ + { + "bbox": [ + 105, + 579, + 140, + 592 + ], + "score": 1.0, + "content": "towards", + "type": "text" + }, + { + "bbox": [ + 140, + 582, + 153, + 591 + ], + "score": 0.85, + "content": "n _ { i ^ { \\prime } }", + "type": "inline_equation" + }, + { + "bbox": [ + 153, + 579, + 217, + 592 + ], + "score": 1.0, + "content": "). Furthermore,", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 33.5 + }, + { + "type": "interline_equation", + "bbox": [ + 162, + 595, + 448, + 609 + ], + "lines": [ + { + "bbox": [ + 162, + 595, + 448, + 609 + ], + "spans": [ + { + "bbox": [ + 162, + 595, + 448, + 609 + ], + "score": 0.86, + "content": "n _ { i ^ { \\prime } } ^ { \\prime \\prime \\prime } = n _ { i ^ { \\prime } } ^ { \\prime \\prime } + x \\leq n _ { i ^ { \\prime } } + ( n _ { i } ^ { \\prime } - n _ { i } ) = n _ { i } ^ { \\prime } + ( n _ { i ^ { \\prime } } - n _ { i } ) \\leq n _ { i } ^ { \\prime } \\leq n _ { 1 } ^ { \\prime } = n _ { 1 } ^ { \\prime \\prime \\prime } ,", + "type": "interline_equation", + "image_path": "de324607f5fe5bb5f2dc8482a81c533c6fbe3878cdc34a473edd73e26e83e3e3.jpg" + } + ] + } + ], + "index": 36, + "virtual_lines": [ + { + "bbox": [ + 162, + 595, + 448, + 609 + ], + "spans": [], + "index": 36 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 613, + 293, + 625 + ], + "lines": [ + { + "bbox": [ + 106, + 612, + 294, + 627 + ], + "spans": [ + { + "bbox": [ + 106, + 612, + 141, + 627 + ], + "score": 1.0, + "content": "(We use", + "type": "text" + }, + { + "bbox": [ + 141, + 614, + 177, + 625 + ], + "score": 0.91, + "content": "n _ { i ^ { \\prime } } \\leq n _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 177, + 612, + 262, + 627 + ], + "score": 1.0, + "content": ", which is implied by", + "type": "text" + }, + { + "bbox": [ + 262, + 613, + 286, + 624 + ], + "score": 0.88, + "content": "i ^ { \\prime } > i", + "type": "inline_equation" + }, + { + "bbox": [ + 287, + 612, + 294, + 627 + ], + "score": 1.0, + "content": ".)", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 107, + 631, + 504, + 657 + ], + "lines": [ + { + "bbox": [ + 103, + 626, + 504, + 650 + ], + "spans": [ + { + "bbox": [ + 103, + 626, + 166, + 650 + ], + "score": 1.0, + "content": "We claim that", + "type": "text" + }, + { + "bbox": [ + 166, + 630, + 279, + 645 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\sum _ { j = 1 } ^ { t } ( n _ { 1 } ^ { \\prime \\prime \\prime } - n _ { j } ^ { \\prime \\prime \\prime } ) \\le S _ { t } ( \\bar { n } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 626, + 308, + 650 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 308, + 633, + 313, + 642 + ], + "score": 0.71, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 626, + 394, + 650 + ], + "score": 1.0, + "content": ", and thus, via (10),", + "type": "text" + }, + { + "bbox": [ + 395, + 632, + 430, + 643 + ], + "score": 0.9, + "content": "\\bar { n } \\succeq \\bar { n } ^ { \\prime \\prime \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 431, + 626, + 496, + 650 + ], + "score": 1.0, + "content": ". The choice of", + "type": "text" + }, + { + "bbox": [ + 497, + 632, + 504, + 642 + ], + "score": 0.83, + "content": "i ^ { \\prime }", + "type": "inline_equation" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 644, + 382, + 657 + ], + "spans": [ + { + "bbox": [ + 106, + 645, + 230, + 657 + ], + "score": 1.0, + "content": "makes the statement trivial for", + "type": "text" + }, + { + "bbox": [ + 230, + 645, + 254, + 655 + ], + "score": 0.88, + "content": "t < i ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 645, + 275, + 657 + ], + "score": 1.0, + "content": ". For", + "type": "text" + }, + { + "bbox": [ + 275, + 644, + 299, + 656 + ], + "score": 0.89, + "content": "t \\geq i ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 645, + 382, + 657 + ], + "score": 1.0, + "content": "the following holds:", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38.5 + }, + { + "type": "interline_equation", + "bbox": [ + 128, + 659, + 481, + 700 + ], + "lines": [ + { + "bbox": [ + 128, + 659, + 481, + 700 + ], + "spans": [ + { + "bbox": [ + 128, + 659, + 481, + 700 + ], + "score": 0.94, + "content": "\\sum _ { j = 1 } ^ { t } ( n _ { 1 } ^ { \\prime \\prime \\prime } - n _ { j } ^ { \\prime \\prime \\prime } ) = \\sum _ { j = 1 } ^ { t } ( n _ { 1 } ^ { \\prime \\prime } - n _ { j } ^ { \\prime \\prime } ) - x \\leq \\left( \\sum _ { j = 1 } ^ { t } ( n _ { 1 } ^ { \\prime } - n _ { j } ^ { \\prime } ) + x \\right) - x = S _ { t } ( n ^ { \\prime } ) \\leq S _ { t } ( \\bar { n } ) .", + "type": "interline_equation", + "image_path": "e0110dc6f86f54fca9b4c48b25ed0f43f2cfddfddc301ce75088d5f8b2bda130.jpg" + } + ] + } + ], + "index": 41, + "virtual_lines": [ + { + "bbox": [ + 128, + 659, + 481, + 672.6666666666666 + ], + "spans": [], + "index": 40 + }, + { + "bbox": [ + 128, + 672.6666666666666, + 481, + 686.3333333333333 + ], + "spans": [], + "index": 41 + }, + { + "bbox": [ + 128, + 686.3333333333333, + 481, + 699.9999999999999 + ], + "spans": [], + "index": 42 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 709, + 505, + 733 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 172, + 722 + ], + "score": 1.0, + "content": "By construction", + "type": "text" + }, + { + "bbox": [ + 173, + 709, + 232, + 722 + ], + "score": 0.93, + "content": "d ( \\bar { n } ^ { \\prime } , \\bar { n } ^ { \\prime \\prime \\prime } ) = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "(the two histograms differ in two locations, in positive and negative", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 718, + 505, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 718, + 164, + 734 + ], + "score": 1.0, + "content": "directions, by", + "type": "text" + }, + { + "bbox": [ + 164, + 722, + 191, + 731 + ], + "score": 0.89, + "content": "x \\leq 1", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 718, + 320, + 734 + ], + "score": 1.0, + "content": "in each). For the same reasons", + "type": "text" + }, + { + "bbox": [ + 320, + 721, + 358, + 731 + ], + "score": 0.91, + "content": "\\bar { n } ^ { \\prime \\prime \\prime } \\succeq \\bar { n } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 358, + 718, + 418, + 734 + ], + "score": 1.0, + "content": ". To show that", + "type": "text" + }, + { + "bbox": [ + 419, + 720, + 501, + 732 + ], + "score": 0.93, + "content": "\\bar { \\ell } ( \\bar { n } , \\bar { n } ^ { \\prime } ) > \\ell ( \\bar { n } , \\bar { n } ^ { \\prime \\prime \\prime } )", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 718, + 505, + 734 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43.5 + } + ], + "page_idx": 25, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 26, + 293, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 298, + 750, + 313, + 763 + ], + "spans": [ + { + "bbox": [ + 298, + 750, + 313, + 763 + ], + "score": 1.0, + "content": "26", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 500, + 109 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 500, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 160, + 95 + ], + "score": 1.0, + "content": "The function", + "type": "text" + }, + { + "bbox": [ + 160, + 82, + 177, + 95 + ], + "score": 0.92, + "content": "q ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 177, + 81, + 500, + 95 + ], + "score": 1.0, + "content": "is monotone under this notion of dominance (assuming certain conditions hold):", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 96, + 424, + 110 + ], + "spans": [ + { + "bbox": [ + 106, + 96, + 184, + 110 + ], + "score": 1.0, + "content": "Proposition 16. If", + "type": "text" + }, + { + "bbox": [ + 184, + 96, + 200, + 109 + ], + "score": 0.79, + "content": "q ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 96, + 303, + 110 + ], + "score": 1.0, + "content": "satisfies C1, C2, C7, and", + "type": "text" + }, + { + "bbox": [ + 304, + 97, + 316, + 107 + ], + "score": 0.48, + "content": "C 8 _ { \\mathrm { : } }", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 96, + 337, + 110 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 338, + 96, + 400, + 109 + ], + "score": 0.91, + "content": "q ( \\bar { n } ) < \\mathrm { B _ { U } } ( q _ { 0 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 96, + 424, + 110 + ], + "score": 1.0, + "content": ", then", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 106, + 81, + 500, + 110 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 254, + 112, + 356, + 127 + ], + "lines": [ + { + "bbox": [ + 254, + 112, + 356, + 127 + ], + "spans": [ + { + "bbox": [ + 254, + 112, + 356, + 127 + ], + "score": 0.89, + "content": "\\bar { n } \\succeq \\bar { n } ^ { \\prime } \\Rightarrow q ( \\bar { n } ) \\leq q ( \\bar { n } ^ { \\prime } ) .", + "type": "interline_equation", + "image_path": "932364722b16b32734ed5f03e55e82f13f3610d021ef610e08875c1043083e30.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 254, + 112, + 356, + 127 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 137, + 505, + 173 + ], + "lines": [ + { + "bbox": [ + 105, + 137, + 505, + 151 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 224, + 151 + ], + "score": 1.0, + "content": "Proof. We may assume that", + "type": "text" + }, + { + "bbox": [ + 224, + 137, + 277, + 149 + ], + "score": 0.95, + "content": "n ^ { ( 1 ) } = n ^ { \\prime ( 1 ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 137, + 424, + 151 + ], + "score": 1.0, + "content": ". Indeed, if this does not hold, add", + "type": "text" + }, + { + "bbox": [ + 424, + 137, + 480, + 151 + ], + "score": 0.92, + "content": "| n ^ { ( 1 ) } - n ^ { \\prime ( 1 ) } |", + "type": "inline_equation" + }, + { + "bbox": [ + 480, + 137, + 505, + 151 + ], + "score": 1.0, + "content": "to all", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 150, + 504, + 162 + ], + "spans": [ + { + "bbox": [ + 106, + 150, + 504, + 162 + ], + "score": 1.0, + "content": "coordinates of the histogram with the smaller of the two values. This transform does not change the", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 107, + 160, + 483, + 173 + ], + "spans": [ + { + "bbox": [ + 107, + 163, + 113, + 172 + ], + "score": 0.75, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 113, + 160, + 249, + 173 + ], + "score": 1.0, + "content": "value (by C8) and it preserves the", + "type": "text" + }, + { + "bbox": [ + 250, + 162, + 260, + 172 + ], + "score": 0.84, + "content": "\\succeq", + "type": "inline_equation" + }, + { + "bbox": [ + 260, + 160, + 382, + 173 + ], + "score": 1.0, + "content": "relationship as all prefix sums", + "type": "text" + }, + { + "bbox": [ + 382, + 160, + 403, + 173 + ], + "score": 0.91, + "content": "S _ { i } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 160, + 483, + 173 + ], + "score": 1.0, + "content": "remain unchanged.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4, + "bbox_fs": [ + 105, + 137, + 505, + 173 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 177, + 331, + 189 + ], + "lines": [ + { + "bbox": [ + 106, + 176, + 332, + 191 + ], + "spans": [ + { + "bbox": [ + 106, + 176, + 332, + 191 + ], + "score": 1.0, + "content": "We make a simple observation that will be helpful later:", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6, + "bbox_fs": [ + 106, + 176, + 332, + 191 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 209, + 193, + 402, + 229 + ], + "lines": [ + { + "bbox": [ + 209, + 193, + 402, + 229 + ], + "spans": [ + { + "bbox": [ + 209, + 193, + 402, + 229 + ], + "score": 0.94, + "content": "\\forall i \\in [ m ] \\mathrm { i t } \\mathrm { h o l d s ~ t h a t } \\sum _ { j = 1 } ^ { i } ( n ^ { ( 1 ) } - n _ { j } ) \\geq S _ { i } ( \\bar { n } ) .", + "type": "interline_equation", + "image_path": "87a290a91360b0afa6a80fe03af03f377df02790898ac4640ed1989f63ae2d4d.jpg" + } + ] + } + ], + "index": 7.5, + "virtual_lines": [ + { + "bbox": [ + 209, + 193, + 402, + 211.0 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 209, + 211.0, + 402, + 229.0 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 232, + 506, + 266 + ], + "lines": [ + { + "bbox": [ + 105, + 232, + 504, + 245 + ], + "spans": [ + { + "bbox": [ + 105, + 232, + 496, + 245 + ], + "score": 1.0, + "content": "The inequality holds because the prefix sum accumulates the gaps between the largest value of", + "type": "text" + }, + { + "bbox": [ + 497, + 234, + 504, + 242 + ], + "score": 0.78, + "content": "\\bar { n }", + "type": "inline_equation" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 243, + 505, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 243, + 505, + 255 + ], + "score": 1.0, + "content": "and all other values in the non-decreasing order. Any deviation from this order may only increase", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 253, + 173, + 268 + ], + "spans": [ + { + "bbox": [ + 105, + 253, + 173, + 268 + ], + "score": 1.0, + "content": "the prefix sums.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10, + "bbox_fs": [ + 105, + 232, + 505, + 268 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 271, + 504, + 305 + ], + "lines": [ + { + "bbox": [ + 105, + 270, + 505, + 284 + ], + "spans": [ + { + "bbox": [ + 105, + 270, + 505, + 284 + ], + "score": 1.0, + "content": "The following lemma constructs a monotone chain (in the partial order of dominance) of histograms", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 281, + 506, + 295 + ], + "spans": [ + { + "bbox": [ + 105, + 281, + 152, + 295 + ], + "score": 1.0, + "content": "connecting", + "type": "text" + }, + { + "bbox": [ + 153, + 283, + 160, + 292 + ], + "score": 0.74, + "content": "\\bar { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 281, + 178, + 295 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 178, + 282, + 188, + 292 + ], + "score": 0.86, + "content": "\\bar { n } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 281, + 487, + 295 + ], + "score": 1.0, + "content": "via a sequence of intermediate steps that either do not change the value of", + "type": "text" + }, + { + "bbox": [ + 487, + 284, + 493, + 294 + ], + "score": 0.79, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 493, + 281, + 506, + 295 + ], + "score": 1.0, + "content": "or", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 293, + 267, + 304 + ], + "spans": [ + { + "bbox": [ + 106, + 293, + 267, + 304 + ], + "score": 1.0, + "content": "touch at most two coordinates at a time.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13, + "bbox_fs": [ + 105, + 270, + 506, + 304 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 309, + 503, + 336 + ], + "lines": [ + { + "bbox": [ + 105, + 308, + 505, + 324 + ], + "spans": [ + { + "bbox": [ + 105, + 308, + 243, + 324 + ], + "score": 1.0, + "content": "Lemma 17. There exists a chain", + "type": "text" + }, + { + "bbox": [ + 244, + 310, + 376, + 322 + ], + "score": 0.91, + "content": "{ \\bar { n } } = { \\bar { n } } _ { 0 } \\succeq { \\bar { n } } _ { 1 } \\succeq \\cdot \\cdot \\cdot \\succeq { \\bar { n } } _ { d } = { \\bar { n } } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 308, + 448, + 324 + ], + "score": 1.0, + "content": ", such that for all", + "type": "text" + }, + { + "bbox": [ + 448, + 310, + 477, + 321 + ], + "score": 0.91, + "content": "i \\in [ d ]", + "type": "inline_equation" + }, + { + "bbox": [ + 478, + 308, + 505, + 324 + ], + "score": 1.0, + "content": "either", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 107, + 315, + 501, + 343 + ], + "spans": [ + { + "bbox": [ + 107, + 323, + 172, + 336 + ], + "score": 0.91, + "content": "d ( \\bar { n } _ { i - 1 } , \\bar { n } _ { i } ) = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 315, + 185, + 343 + ], + "score": 1.0, + "content": "or", + "type": "text" + }, + { + "bbox": [ + 185, + 324, + 241, + 336 + ], + "score": 0.92, + "content": "\\bar { n } _ { i - 1 } = \\pi ( \\bar { n } _ { i } )", + "type": "inline_equation" + }, + { + "bbox": [ + 242, + 315, + 331, + 343 + ], + "score": 1.0, + "content": "for some permutation", + "type": "text" + }, + { + "bbox": [ + 331, + 326, + 339, + 334 + ], + "score": 0.55, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 315, + 352, + 343 + ], + "score": 1.0, + "content": "on", + "type": "text" + }, + { + "bbox": [ + 353, + 324, + 367, + 336 + ], + "score": 0.84, + "content": "[ m ]", + "type": "inline_equation" + }, + { + "bbox": [ + 368, + 315, + 426, + 343 + ], + "score": 1.0, + "content": ". Additionally,", + "type": "text" + }, + { + "bbox": [ + 443, + 321, + 501, + 339 + ], + "score": 1.0, + "content": "= · · · = n(1)d .", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5, + "bbox_fs": [ + 105, + 308, + 505, + 343 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 347, + 505, + 383 + ], + "lines": [ + { + "bbox": [ + 106, + 347, + 505, + 360 + ], + "spans": [ + { + "bbox": [ + 106, + 347, + 263, + 360 + ], + "score": 1.0, + "content": "Proof (Lemma). Wlog we assume that", + "type": "text" + }, + { + "bbox": [ + 263, + 349, + 271, + 357 + ], + "score": 0.79, + "content": "\\bar { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 347, + 289, + 360 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 289, + 348, + 299, + 357 + ], + "score": 0.86, + "content": "\\bar { n } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 347, + 505, + 360 + ], + "score": 1.0, + "content": "are each sorted in the descending order. The proof", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 359, + 505, + 373 + ], + "spans": [ + { + "bbox": [ + 105, + 359, + 185, + 373 + ], + "score": 1.0, + "content": "is by induction on", + "type": "text" + }, + { + "bbox": [ + 185, + 359, + 343, + 372 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\ell ( \\bar { n } , \\bar { n } ^ { \\prime } ) \\stackrel { \\Delta } { = } \\sum _ { i } \\lceil n _ { i } - n _ { i } ^ { \\prime } \\rceil \\leq 2 d ( \\bar { n } , \\bar { n } ^ { \\prime } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 359, + 505, + 373 + ], + "score": 1.0, + "content": ", which, by construction, only assumes", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 371, + 221, + 383 + ], + "spans": [ + { + "bbox": [ + 105, + 371, + 221, + 383 + ], + "score": 1.0, + "content": "non-negative integer values.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18, + "bbox_fs": [ + 105, + 347, + 505, + 383 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 387, + 505, + 448 + ], + "lines": [ + { + "bbox": [ + 104, + 386, + 504, + 400 + ], + "spans": [ + { + "bbox": [ + 104, + 386, + 406, + 400 + ], + "score": 1.0, + "content": "If the distance is 0, the statement is immediate. Otherwise, find the smallest", + "type": "text" + }, + { + "bbox": [ + 407, + 389, + 411, + 398 + ], + "score": 0.68, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 411, + 386, + 440, + 400 + ], + "score": 1.0, + "content": "so that", + "type": "text" + }, + { + "bbox": [ + 441, + 388, + 504, + 400 + ], + "score": 0.93, + "content": "S _ { i } ( \\bar { n } ) > S _ { i } ( \\bar { n } ^ { \\prime } )", + "type": "inline_equation" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 398, + 506, + 412 + ], + "spans": [ + { + "bbox": [ + 105, + 398, + 238, + 412 + ], + "score": 1.0, + "content": "(if all prefix sums are equal and", + "type": "text" + }, + { + "bbox": [ + 238, + 398, + 289, + 410 + ], + "score": 0.92, + "content": "n ^ { ( 1 ) } = n ^ { \\prime ( 1 ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 290, + 398, + 374, + 412 + ], + "score": 1.0, + "content": ", it would imply that", + "type": "text" + }, + { + "bbox": [ + 374, + 400, + 406, + 410 + ], + "score": 0.88, + "content": "\\bar { n } = \\bar { n } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 398, + 506, + 412 + ], + "score": 1.0, + "content": "). In particular, it means", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 411, + 506, + 426 + ], + "spans": [ + { + "bbox": [ + 105, + 411, + 124, + 426 + ], + "score": 1.0, + "content": "that", + "type": "text" + }, + { + "bbox": [ + 125, + 412, + 162, + 425 + ], + "score": 0.93, + "content": "n _ { j } = n _ { j } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 411, + 179, + 426 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 180, + 412, + 205, + 424 + ], + "score": 0.9, + "content": "j < i", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 411, + 224, + 426 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 225, + 412, + 331, + 425 + ], + "score": 0.93, + "content": "n _ { i } < n _ { i } ^ { \\prime } \\le n _ { i - 1 } = n _ { i - 1 } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 332, + 411, + 354, + 426 + ], + "score": 1.0, + "content": ". Let", + "type": "text" + }, + { + "bbox": [ + 355, + 412, + 443, + 425 + ], + "score": 0.92, + "content": "x \\triangleq \\operatorname* { m i n } ( n _ { i } ^ { \\prime } - n _ { i } , 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 443, + 411, + 479, + 426 + ], + "score": 1.0, + "content": ". Define", + "type": "text" + }, + { + "bbox": [ + 480, + 412, + 492, + 423 + ], + "score": 0.87, + "content": "\\bar { n } ^ { \\prime \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 493, + 411, + 506, + 426 + ], + "score": 1.0, + "content": "as", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 423, + 505, + 438 + ], + "spans": [ + { + "bbox": [ + 105, + 423, + 155, + 438 + ], + "score": 1.0, + "content": "identical to", + "type": "text" + }, + { + "bbox": [ + 155, + 425, + 165, + 435 + ], + "score": 0.84, + "content": "\\bar { n } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 166, + 423, + 215, + 438 + ], + "score": 1.0, + "content": "except that", + "type": "text" + }, + { + "bbox": [ + 215, + 425, + 272, + 437 + ], + "score": 0.91, + "content": "n _ { i } ^ { \\prime \\prime } = n _ { i } ^ { \\prime } - x", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 423, + 505, + 438 + ], + "score": 1.0, + "content": ". The new value is guaranteed to be non-negative, since", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 107, + 435, + 505, + 448 + ], + "spans": [ + { + "bbox": [ + 107, + 435, + 156, + 448 + ], + "score": 0.93, + "content": "x \\leq n _ { i } ^ { \\prime } - n _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 156, + 435, + 173, + 448 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 174, + 436, + 203, + 447 + ], + "score": 0.91, + "content": "n _ { i } \\geq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 435, + 246, + 448 + ], + "score": 1.0, + "content": ". Note that", + "type": "text" + }, + { + "bbox": [ + 246, + 437, + 258, + 446 + ], + "score": 0.87, + "content": "\\bar { n } ^ { \\prime \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 435, + 505, + 448 + ], + "score": 1.0, + "content": "is not necessarily sorted anymore. Consider two possibilities.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 22, + "bbox_fs": [ + 104, + 386, + 506, + 448 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 451, + 503, + 475 + ], + "lines": [ + { + "bbox": [ + 105, + 450, + 505, + 466 + ], + "spans": [ + { + "bbox": [ + 105, + 450, + 141, + 466 + ], + "score": 1.0, + "content": "Case I:", + "type": "text" + }, + { + "bbox": [ + 141, + 452, + 177, + 464 + ], + "score": 0.91, + "content": "\\bar { n } \\succeq \\bar { n } ^ { \\prime \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 450, + 211, + 466 + ], + "score": 1.0, + "content": ". Since", + "type": "text" + }, + { + "bbox": [ + 211, + 452, + 250, + 464 + ], + "score": 0.85, + "content": "\\bar { n } ^ { \\prime \\prime } \\succeq \\bar { n } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 450, + 255, + 466 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 255, + 452, + 338, + 465 + ], + "score": 0.79, + "content": "\\ell ( \\bar { n } , \\bar { n } ^ { \\prime \\prime } ) < \\ell ( \\bar { n } , \\bar { n } ^ { \\prime } )", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 450, + 362, + 466 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 362, + 452, + 423, + 465 + ], + "score": 0.92, + "content": "d ( \\bar { n } ^ { \\prime \\prime } , \\bar { n } ^ { \\prime } ) = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 423, + 450, + 505, + 466 + ], + "score": 1.0, + "content": ", we may apply the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 461, + 262, + 477 + ], + "spans": [ + { + "bbox": [ + 105, + 461, + 234, + 477 + ], + "score": 1.0, + "content": "induction hypothesis to the pair", + "type": "text" + }, + { + "bbox": [ + 235, + 464, + 257, + 474 + ], + "score": 0.48, + "content": "\\bar { n } , \\bar { n } ^ { \\prime \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 461, + 262, + 477 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5, + "bbox_fs": [ + 105, + 450, + 505, + 477 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 479, + 505, + 542 + ], + "lines": [ + { + "bbox": [ + 106, + 480, + 506, + 493 + ], + "spans": [ + { + "bbox": [ + 106, + 480, + 143, + 493 + ], + "score": 1.0, + "content": "Case II:", + "type": "text" + }, + { + "bbox": [ + 143, + 480, + 175, + 493 + ], + "score": 0.91, + "content": "\\bar { n } \\not \\subset \\bar { n } ^ { \\prime \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 175, + 480, + 360, + 493 + ], + "score": 1.0, + "content": ". This may happen because the prefix sums of", + "type": "text" + }, + { + "bbox": [ + 361, + 481, + 372, + 491 + ], + "score": 0.88, + "content": "\\bar { n } ^ { \\prime \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 373, + 480, + 461, + 493 + ], + "score": 1.0, + "content": "increase compared to", + "type": "text" + }, + { + "bbox": [ + 461, + 480, + 489, + 493 + ], + "score": 0.93, + "content": "S _ { j } ( \\bar { n } ^ { \\prime } )", + "type": "inline_equation" + }, + { + "bbox": [ + 490, + 480, + 506, + 493 + ], + "score": 1.0, + "content": "for", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 492, + 506, + 510 + ], + "spans": [ + { + "bbox": [ + 106, + 495, + 130, + 507 + ], + "score": 0.89, + "content": "j \\geq i", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 493, + 228, + 510 + ], + "score": 1.0, + "content": ". Find the smallest such", + "type": "text" + }, + { + "bbox": [ + 228, + 495, + 236, + 505 + ], + "score": 0.83, + "content": "i ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 493, + 267, + 510 + ], + "score": 1.0, + "content": "so that", + "type": "text" + }, + { + "bbox": [ + 267, + 492, + 375, + 509 + ], + "score": 0.94, + "content": "\\textstyle \\sum _ { j = 1 } ^ { i ^ { \\prime } } ( n _ { 1 } ^ { \\prime \\prime } - n _ { j } ^ { \\prime \\prime } ) > S _ { i ^ { \\prime } } ( \\bar { n } )", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 493, + 408, + 510 + ], + "score": 1.0, + "content": ". (Since", + "type": "text" + }, + { + "bbox": [ + 409, + 495, + 421, + 506 + ], + "score": 0.87, + "content": "\\bar { n } ^ { \\prime \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 422, + 493, + 506, + 510 + ], + "score": 1.0, + "content": "is not sorted, we fix", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 508, + 505, + 520 + ], + "spans": [ + { + "bbox": [ + 106, + 508, + 384, + 520 + ], + "score": 1.0, + "content": "the order in which prefix sums are accumulated to be the same as in", + "type": "text" + }, + { + "bbox": [ + 384, + 510, + 392, + 518 + ], + "score": 0.76, + "content": "\\bar { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 508, + 428, + 520 + ], + "score": 1.0, + "content": "; by (10)", + "type": "text" + }, + { + "bbox": [ + 428, + 508, + 436, + 518 + ], + "score": 0.82, + "content": "i ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 508, + 505, + 520 + ], + "score": 1.0, + "content": "is well defined).", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 517, + 506, + 532 + ], + "spans": [ + { + "bbox": [ + 105, + 517, + 155, + 532 + ], + "score": 1.0, + "content": "Next we let", + "type": "text" + }, + { + "bbox": [ + 155, + 519, + 169, + 529 + ], + "score": 0.91, + "content": "\\bar { n } ^ { \\prime \\prime \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 170, + 517, + 230, + 532 + ], + "score": 1.0, + "content": "be identical to", + "type": "text" + }, + { + "bbox": [ + 230, + 519, + 242, + 529 + ], + "score": 0.87, + "content": "\\bar { n } ^ { \\prime \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 243, + 517, + 289, + 532 + ], + "score": 1.0, + "content": "except that", + "type": "text" + }, + { + "bbox": [ + 290, + 519, + 348, + 532 + ], + "score": 0.93, + "content": "n _ { i ^ { \\prime } } ^ { \\prime \\prime \\prime } = n _ { i ^ { \\prime } } ^ { \\prime \\prime } + x", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 517, + 415, + 532 + ], + "score": 1.0, + "content": ". In other words,", + "type": "text" + }, + { + "bbox": [ + 415, + 519, + 430, + 529 + ], + "score": 0.88, + "content": "\\bar { n } ^ { \\prime \\prime \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 430, + 517, + 481, + 532 + ], + "score": 1.0, + "content": "differs from", + "type": "text" + }, + { + "bbox": [ + 482, + 519, + 491, + 529 + ], + "score": 0.85, + "content": "\\bar { n } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 491, + 517, + 506, + 532 + ], + "score": 1.0, + "content": "by", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 530, + 287, + 542 + ], + "spans": [ + { + "bbox": [ + 106, + 530, + 139, + 542 + ], + "score": 1.0, + "content": "shifting", + "type": "text" + }, + { + "bbox": [ + 140, + 532, + 146, + 540 + ], + "score": 0.76, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 147, + 530, + 214, + 542 + ], + "score": 1.0, + "content": "from coordinate", + "type": "text" + }, + { + "bbox": [ + 214, + 531, + 219, + 540 + ], + "score": 0.78, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 530, + 275, + 542 + ], + "score": 1.0, + "content": "to coordinate", + "type": "text" + }, + { + "bbox": [ + 275, + 531, + 282, + 540 + ], + "score": 0.83, + "content": "i ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 530, + 287, + 542 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 29, + "bbox_fs": [ + 105, + 480, + 506, + 542 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 546, + 505, + 592 + ], + "lines": [ + { + "bbox": [ + 105, + 546, + 506, + 560 + ], + "spans": [ + { + "bbox": [ + 105, + 546, + 219, + 560 + ], + "score": 1.0, + "content": "We argue that incrementing", + "type": "text" + }, + { + "bbox": [ + 219, + 547, + 232, + 559 + ], + "score": 0.89, + "content": "n _ { i ^ { \\prime } } ^ { \\prime \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 546, + 246, + 560 + ], + "score": 1.0, + "content": "by", + "type": "text" + }, + { + "bbox": [ + 246, + 549, + 253, + 557 + ], + "score": 0.75, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 546, + 408, + 560 + ], + "score": 1.0, + "content": "does not change the maximal value of", + "type": "text" + }, + { + "bbox": [ + 408, + 547, + 420, + 558 + ], + "score": 0.87, + "content": "\\bar { n } ^ { \\prime \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 546, + 441, + 560 + ], + "score": 1.0, + "content": ", i.e.,", + "type": "text" + }, + { + "bbox": [ + 441, + 547, + 482, + 559 + ], + "score": 0.92, + "content": "n _ { 1 } ^ { \\prime \\prime \\prime } > n _ { i \\prime } ^ { \\prime \\prime \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 483, + 546, + 506, + 560 + ], + "score": 1.0, + "content": ". Our", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 558, + 505, + 569 + ], + "spans": [ + { + "bbox": [ + 106, + 558, + 145, + 569 + ], + "score": 1.0, + "content": "choice of", + "type": "text" + }, + { + "bbox": [ + 146, + 558, + 153, + 568 + ], + "score": 0.85, + "content": "i ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 153, + 558, + 372, + 569 + ], + "score": 1.0, + "content": ", which is the smallest index so that the prefix sum over", + "type": "text" + }, + { + "bbox": [ + 372, + 558, + 384, + 568 + ], + "score": 0.89, + "content": "\\bar { n } ^ { \\prime \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 558, + 462, + 569 + ], + "score": 1.0, + "content": "overtakes that over", + "type": "text" + }, + { + "bbox": [ + 462, + 560, + 469, + 568 + ], + "score": 0.81, + "content": "\\bar { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 470, + 558, + 505, + 569 + ], + "score": 1.0, + "content": ", implies", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 104, + 567, + 503, + 583 + ], + "spans": [ + { + "bbox": [ + 104, + 567, + 124, + 583 + ], + "score": 1.0, + "content": "that", + "type": "text" + }, + { + "bbox": [ + 125, + 569, + 211, + 581 + ], + "score": 0.93, + "content": "n _ { 1 } ^ { \\prime \\prime } - n _ { i ^ { \\prime } } ^ { \\prime \\prime } > n _ { 1 } - n _ { i ^ { \\prime } }", + "type": "inline_equation" + }, + { + "bbox": [ + 211, + 567, + 241, + 583 + ], + "score": 1.0, + "content": ". Since", + "type": "text" + }, + { + "bbox": [ + 242, + 569, + 279, + 581 + ], + "score": 0.92, + "content": "n _ { 1 } ^ { \\prime \\prime } = n _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 567, + 338, + 583 + ], + "score": 1.0, + "content": ", it means that", + "type": "text" + }, + { + "bbox": [ + 338, + 569, + 377, + 581 + ], + "score": 0.93, + "content": "n _ { i ^ { \\prime } } > n _ { i ^ { \\prime } } ^ { \\prime \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 567, + 442, + 583 + ], + "score": 1.0, + "content": "(and by adding", + "type": "text" + }, + { + "bbox": [ + 443, + 572, + 450, + 579 + ], + "score": 0.75, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 567, + 490, + 583 + ], + "score": 1.0, + "content": "we move", + "type": "text" + }, + { + "bbox": [ + 491, + 569, + 503, + 581 + ], + "score": 0.9, + "content": "n _ { i ^ { \\prime } } ^ { \\prime \\prime }", + "type": "inline_equation" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 579, + 217, + 592 + ], + "spans": [ + { + "bbox": [ + 105, + 579, + 140, + 592 + ], + "score": 1.0, + "content": "towards", + "type": "text" + }, + { + "bbox": [ + 140, + 582, + 153, + 591 + ], + "score": 0.85, + "content": "n _ { i ^ { \\prime } }", + "type": "inline_equation" + }, + { + "bbox": [ + 153, + 579, + 217, + 592 + ], + "score": 1.0, + "content": "). Furthermore,", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 33.5, + "bbox_fs": [ + 104, + 546, + 506, + 592 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 162, + 595, + 448, + 609 + ], + "lines": [ + { + "bbox": [ + 162, + 595, + 448, + 609 + ], + "spans": [ + { + "bbox": [ + 162, + 595, + 448, + 609 + ], + "score": 0.86, + "content": "n _ { i ^ { \\prime } } ^ { \\prime \\prime \\prime } = n _ { i ^ { \\prime } } ^ { \\prime \\prime } + x \\leq n _ { i ^ { \\prime } } + ( n _ { i } ^ { \\prime } - n _ { i } ) = n _ { i } ^ { \\prime } + ( n _ { i ^ { \\prime } } - n _ { i } ) \\leq n _ { i } ^ { \\prime } \\leq n _ { 1 } ^ { \\prime } = n _ { 1 } ^ { \\prime \\prime \\prime } ,", + "type": "interline_equation", + "image_path": "de324607f5fe5bb5f2dc8482a81c533c6fbe3878cdc34a473edd73e26e83e3e3.jpg" + } + ] + } + ], + "index": 36, + "virtual_lines": [ + { + "bbox": [ + 162, + 595, + 448, + 609 + ], + "spans": [], + "index": 36 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 613, + 293, + 625 + ], + "lines": [ + { + "bbox": [ + 106, + 612, + 294, + 627 + ], + "spans": [ + { + "bbox": [ + 106, + 612, + 141, + 627 + ], + "score": 1.0, + "content": "(We use", + "type": "text" + }, + { + "bbox": [ + 141, + 614, + 177, + 625 + ], + "score": 0.91, + "content": "n _ { i ^ { \\prime } } \\leq n _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 177, + 612, + 262, + 627 + ], + "score": 1.0, + "content": ", which is implied by", + "type": "text" + }, + { + "bbox": [ + 262, + 613, + 286, + 624 + ], + "score": 0.88, + "content": "i ^ { \\prime } > i", + "type": "inline_equation" + }, + { + "bbox": [ + 287, + 612, + 294, + 627 + ], + "score": 1.0, + "content": ".)", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37, + "bbox_fs": [ + 106, + 612, + 294, + 627 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 631, + 504, + 657 + ], + "lines": [ + { + "bbox": [ + 103, + 626, + 504, + 650 + ], + "spans": [ + { + "bbox": [ + 103, + 626, + 166, + 650 + ], + "score": 1.0, + "content": "We claim that", + "type": "text" + }, + { + "bbox": [ + 166, + 630, + 279, + 645 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\sum _ { j = 1 } ^ { t } ( n _ { 1 } ^ { \\prime \\prime \\prime } - n _ { j } ^ { \\prime \\prime \\prime } ) \\le S _ { t } ( \\bar { n } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 626, + 308, + 650 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 308, + 633, + 313, + 642 + ], + "score": 0.71, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 626, + 394, + 650 + ], + "score": 1.0, + "content": ", and thus, via (10),", + "type": "text" + }, + { + "bbox": [ + 395, + 632, + 430, + 643 + ], + "score": 0.9, + "content": "\\bar { n } \\succeq \\bar { n } ^ { \\prime \\prime \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 431, + 626, + 496, + 650 + ], + "score": 1.0, + "content": ". The choice of", + "type": "text" + }, + { + "bbox": [ + 497, + 632, + 504, + 642 + ], + "score": 0.83, + "content": "i ^ { \\prime }", + "type": "inline_equation" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 644, + 382, + 657 + ], + "spans": [ + { + "bbox": [ + 106, + 645, + 230, + 657 + ], + "score": 1.0, + "content": "makes the statement trivial for", + "type": "text" + }, + { + "bbox": [ + 230, + 645, + 254, + 655 + ], + "score": 0.88, + "content": "t < i ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 645, + 275, + 657 + ], + "score": 1.0, + "content": ". For", + "type": "text" + }, + { + "bbox": [ + 275, + 644, + 299, + 656 + ], + "score": 0.89, + "content": "t \\geq i ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 645, + 382, + 657 + ], + "score": 1.0, + "content": "the following holds:", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38.5, + "bbox_fs": [ + 103, + 626, + 504, + 657 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 128, + 659, + 481, + 700 + ], + "lines": [ + { + "bbox": [ + 128, + 659, + 481, + 700 + ], + "spans": [ + { + "bbox": [ + 128, + 659, + 481, + 700 + ], + "score": 0.94, + "content": "\\sum _ { j = 1 } ^ { t } ( n _ { 1 } ^ { \\prime \\prime \\prime } - n _ { j } ^ { \\prime \\prime \\prime } ) = \\sum _ { j = 1 } ^ { t } ( n _ { 1 } ^ { \\prime \\prime } - n _ { j } ^ { \\prime \\prime } ) - x \\leq \\left( \\sum _ { j = 1 } ^ { t } ( n _ { 1 } ^ { \\prime } - n _ { j } ^ { \\prime } ) + x \\right) - x = S _ { t } ( n ^ { \\prime } ) \\leq S _ { t } ( \\bar { n } ) .", + "type": "interline_equation", + "image_path": "e0110dc6f86f54fca9b4c48b25ed0f43f2cfddfddc301ce75088d5f8b2bda130.jpg" + } + ] + } + ], + "index": 41, + "virtual_lines": [ + { + "bbox": [ + 128, + 659, + 481, + 672.6666666666666 + ], + "spans": [], + "index": 40 + }, + { + "bbox": [ + 128, + 672.6666666666666, + 481, + 686.3333333333333 + ], + "spans": [], + "index": 41 + }, + { + "bbox": [ + 128, + 686.3333333333333, + 481, + 699.9999999999999 + ], + "spans": [], + "index": 42 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 709, + 505, + 733 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 172, + 722 + ], + "score": 1.0, + "content": "By construction", + "type": "text" + }, + { + "bbox": [ + 173, + 709, + 232, + 722 + ], + "score": 0.93, + "content": "d ( \\bar { n } ^ { \\prime } , \\bar { n } ^ { \\prime \\prime \\prime } ) = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "(the two histograms differ in two locations, in positive and negative", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 718, + 505, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 718, + 164, + 734 + ], + "score": 1.0, + "content": "directions, by", + "type": "text" + }, + { + "bbox": [ + 164, + 722, + 191, + 731 + ], + "score": 0.89, + "content": "x \\leq 1", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 718, + 320, + 734 + ], + "score": 1.0, + "content": "in each). For the same reasons", + "type": "text" + }, + { + "bbox": [ + 320, + 721, + 358, + 731 + ], + "score": 0.91, + "content": "\\bar { n } ^ { \\prime \\prime \\prime } \\succeq \\bar { n } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 358, + 718, + 418, + 734 + ], + "score": 1.0, + "content": ". To show that", + "type": "text" + }, + { + "bbox": [ + 419, + 720, + 501, + 732 + ], + "score": 0.93, + "content": "\\bar { \\ell } ( \\bar { n } , \\bar { n } ^ { \\prime } ) > \\ell ( \\bar { n } , \\bar { n } ^ { \\prime \\prime \\prime } )", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 718, + 505, + 734 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43.5, + "bbox_fs": [ + 105, + 709, + 505, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 81, + 504, + 107 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 144, + 95 + ], + "score": 1.0, + "content": "compare", + "type": "text" + }, + { + "bbox": [ + 145, + 82, + 187, + 96 + ], + "score": 0.92, + "content": "\\lceil n _ { j } - n _ { j } ^ { \\prime } \\rceil", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 81, + 207, + 95 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 207, + 82, + 252, + 96 + ], + "score": 0.93, + "content": "\\lceil n _ { j } - n _ { j } ^ { \\prime \\prime \\prime } \\rceil", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 81, + 269, + 95 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 269, + 82, + 304, + 94 + ], + "score": 0.92, + "content": "j = i , i ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 81, + 322, + 95 + ], + "score": 1.0, + "content": ". At", + "type": "text" + }, + { + "bbox": [ + 323, + 83, + 347, + 94 + ], + "score": 0.91, + "content": "j = i", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 81, + 505, + 95 + ], + "score": 1.0, + "content": "the first term is strictly larger than the", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 95, + 372, + 108 + ], + "spans": [ + { + "bbox": [ + 106, + 95, + 152, + 108 + ], + "score": 1.0, + "content": "second. At", + "type": "text" + }, + { + "bbox": [ + 152, + 96, + 177, + 107 + ], + "score": 0.9, + "content": "j = i ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 95, + 372, + 108 + ], + "score": 1.0, + "content": ", the inequality holds too but it may be not strict.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 105, + 111, + 504, + 135 + ], + "lines": [ + { + "bbox": [ + 105, + 110, + 505, + 125 + ], + "spans": [ + { + "bbox": [ + 105, + 110, + 331, + 125 + ], + "score": 1.0, + "content": "We may again apply the induction hypothesis to the pair", + "type": "text" + }, + { + "bbox": [ + 332, + 113, + 339, + 122 + ], + "score": 0.81, + "content": "\\bar { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 110, + 357, + 125 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 357, + 112, + 371, + 122 + ], + "score": 0.89, + "content": "\\bar { n } ^ { \\prime \\prime \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 110, + 505, + 125 + ], + "score": 1.0, + "content": ", thus completing the proof of the", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 121, + 504, + 136 + ], + "spans": [ + { + "bbox": [ + 105, + 121, + 140, + 136 + ], + "score": 1.0, + "content": "lemma.", + "type": "text" + }, + { + "bbox": [ + 498, + 125, + 504, + 132 + ], + "score": 0.0, + "content": "", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 106, + 146, + 506, + 169 + ], + "lines": [ + { + "bbox": [ + 106, + 146, + 505, + 159 + ], + "spans": [ + { + "bbox": [ + 106, + 146, + 412, + 159 + ], + "score": 1.0, + "content": "To complete the proof of the proposition, we need to argue that the values of", + "type": "text" + }, + { + "bbox": [ + 412, + 149, + 419, + 158 + ], + "score": 0.81, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 419, + 146, + 505, + 159 + ], + "score": 1.0, + "content": "are also monotone in", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 157, + 389, + 170 + ], + "spans": [ + { + "bbox": [ + 105, + 157, + 389, + 170 + ], + "score": 1.0, + "content": "the chain constructed by the previous lemma. Concretely, we put forth", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5 + }, + { + "type": "text", + "bbox": [ + 106, + 199, + 506, + 233 + ], + "lines": [ + { + "bbox": [ + 106, + 198, + 506, + 212 + ], + "spans": [ + { + "bbox": [ + 106, + 198, + 192, + 212 + ], + "score": 1.0, + "content": "Proof. The fact that", + "type": "text" + }, + { + "bbox": [ + 192, + 199, + 247, + 212 + ], + "score": 0.93, + "content": "d ( \\bar { n } , \\bar { n } ^ { \\prime } ) = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 247, + 198, + 266, + 212 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 267, + 199, + 299, + 210 + ], + "score": 0.92, + "content": "\\bar { n } \\succeq \\bar { n } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 198, + 468, + 212 + ], + "score": 1.0, + "content": "means that there is either a single index", + "type": "text" + }, + { + "bbox": [ + 469, + 200, + 474, + 209 + ], + "score": 0.67, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 198, + 506, + 212 + ], + "score": 1.0, + "content": "so that", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 107, + 210, + 506, + 224 + ], + "spans": [ + { + "bbox": [ + 107, + 211, + 139, + 223 + ], + "score": 0.92, + "content": "n _ { i } ^ { \\prime } < n _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 210, + 245, + 224 + ], + "score": 1.0, + "content": ", or there exist two indices", + "type": "text" + }, + { + "bbox": [ + 245, + 212, + 250, + 221 + ], + "score": 0.78, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 210, + 267, + 224 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 268, + 212, + 274, + 222 + ], + "score": 0.84, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 274, + 210, + 303, + 224 + ], + "score": 1.0, + "content": "so that", + "type": "text" + }, + { + "bbox": [ + 303, + 210, + 336, + 223 + ], + "score": 0.93, + "content": "n _ { i } ^ { \\prime } < n _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 337, + 210, + 354, + 224 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 354, + 210, + 389, + 223 + ], + "score": 0.91, + "content": "n _ { j } ^ { \\prime } > n _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 210, + 506, + 224 + ], + "score": 1.0, + "content": ". The first case is immediate,", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 221, + 380, + 234 + ], + "spans": [ + { + "bbox": [ + 105, + 221, + 129, + 234 + ], + "score": 1.0, + "content": "since", + "type": "text" + }, + { + "bbox": [ + 129, + 224, + 136, + 233 + ], + "score": 0.83, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 136, + 221, + 380, + 234 + ], + "score": 1.0, + "content": "is non-decreasing in all inputs except for the largest (by C7).", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 107, + 237, + 502, + 261 + ], + "lines": [ + { + "bbox": [ + 104, + 235, + 501, + 254 + ], + "spans": [ + { + "bbox": [ + 104, + 235, + 122, + 254 + ], + "score": 1.0, + "content": "Let", + "type": "text" + }, + { + "bbox": [ + 122, + 238, + 172, + 250 + ], + "score": 0.91, + "content": "n _ { i } ^ { \\prime } = n _ { i } - x", + "type": "inline_equation" + }, + { + "bbox": [ + 172, + 235, + 189, + 254 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 190, + 238, + 240, + 252 + ], + "score": 0.92, + "content": "n _ { j } ^ { \\prime } = n _ { j } + y", + "type": "inline_equation" + }, + { + "bbox": [ + 241, + 235, + 270, + 254 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 271, + 239, + 305, + 250 + ], + "score": 0.9, + "content": "x , y > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 235, + 334, + 254 + ], + "score": 1.0, + "content": ". Since", + "type": "text" + }, + { + "bbox": [ + 334, + 238, + 363, + 249 + ], + "score": 0.91, + "content": "\\bar { n } \\succeq \\bar { n } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 235, + 424, + 254 + ], + "score": 1.0, + "content": ", it follows that", + "type": "text" + }, + { + "bbox": [ + 424, + 239, + 458, + 251 + ], + "score": 0.92, + "content": "n _ { i } \\geq n _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 458, + 235, + 475, + 254 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 476, + 240, + 501, + 250 + ], + "score": 0.9, + "content": "x > y", + "type": "inline_equation" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 249, + 188, + 262 + ], + "spans": [ + { + "bbox": [ + 106, + 249, + 188, + 262 + ], + "score": 1.0, + "content": "Consider two cases.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5 + }, + { + "type": "text", + "bbox": [ + 103, + 266, + 496, + 279 + ], + "lines": [ + { + "bbox": [ + 106, + 264, + 497, + 280 + ], + "spans": [ + { + "bbox": [ + 106, + 264, + 139, + 280 + ], + "score": 1.0, + "content": "Case I:", + "type": "text" + }, + { + "bbox": [ + 139, + 266, + 173, + 280 + ], + "score": 0.92, + "content": "n _ { i } ^ { \\prime } \\geq n _ { j } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 264, + 234, + 280 + ], + "score": 1.0, + "content": ", i.e., removing", + "type": "text" + }, + { + "bbox": [ + 235, + 269, + 241, + 276 + ], + "score": 0.77, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 242, + 264, + 264, + 280 + ], + "score": 1.0, + "content": "from", + "type": "text" + }, + { + "bbox": [ + 265, + 268, + 275, + 277 + ], + "score": 0.85, + "content": "n _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 264, + 322, + 280 + ], + "score": 1.0, + "content": "and adding", + "type": "text" + }, + { + "bbox": [ + 323, + 269, + 330, + 278 + ], + "score": 0.79, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 264, + 340, + 280 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 341, + 269, + 352, + 279 + ], + "score": 0.86, + "content": "n _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 264, + 497, + 280 + ], + "score": 1.0, + "content": "does not change their ordering. Let", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "interline_equation", + "bbox": [ + 161, + 285, + 449, + 300 + ], + "lines": [ + { + "bbox": [ + 161, + 285, + 449, + 300 + ], + "spans": [ + { + "bbox": [ + 161, + 285, + 449, + 300 + ], + "score": 0.87, + "content": "\\bar { n } ( t ) \\triangleq ( 1 - t ) \\bar { n } + t \\cdot \\bar { n } ^ { \\prime } = [ n _ { 1 } , \\ldots , n _ { i } - t \\cdot x , \\ldots , n _ { j } + t \\cdot y , \\ldots , n _ { m } ] .", + "type": "interline_equation", + "image_path": "6494bd35497a509b8f7d73f77113409c8cd2b52a95a50f290b487553202cec9b.jpg" + } + ] + } + ], + "index": 12, + "virtual_lines": [ + { + "bbox": [ + 161, + 285, + 449, + 300 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 304, + 131, + 316 + ], + "lines": [ + { + "bbox": [ + 105, + 303, + 134, + 319 + ], + "spans": [ + { + "bbox": [ + 105, + 303, + 134, + 319 + ], + "score": 1.0, + "content": "Then,", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "interline_equation", + "bbox": [ + 152, + 320, + 459, + 393 + ], + "lines": [ + { + "bbox": [ + 152, + 320, + 459, + 393 + ], + "spans": [ + { + "bbox": [ + 152, + 320, + 459, + 393 + ], + "score": 0.93, + "content": "\\begin{array} { l l } { \\displaystyle q ( \\bar { n } ^ { \\prime } ) - q ( \\bar { n } ) = q ( \\bar { n } ( 1 ) ) - q ( \\bar { n } ( 0 ) ) = \\int _ { t = 0 } ^ { 1 } ( q \\circ \\bar { n } ) ^ { \\prime } ( t ) \\mathrm { d } t } \\\\ { \\displaystyle \\qquad = \\int _ { t = 0 } ^ { 1 } \\left\\{ - x \\frac { \\partial q } { \\partial n _ { i } } \\bar { n } ( t ) + y \\frac { \\partial q } { \\partial n _ { j } } \\bar { n } ( t ) \\right\\} \\mathrm { d } t } \\\\ { \\displaystyle \\qquad \\leq 0 . } \\end{array}", + "type": "interline_equation", + "image_path": "c3a7f188b7530edd23bdad41a77caecb8a059c7e5594abe8daa0b950f7b39059.jpg" + } + ] + } + ], + "index": 15, + "virtual_lines": [ + { + "bbox": [ + 152, + 320, + 459, + 344.3333333333333 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 152, + 344.3333333333333, + 459, + 368.66666666666663 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 152, + 368.66666666666663, + 459, + 392.99999999999994 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 397, + 504, + 420 + ], + "lines": [ + { + "bbox": [ + 105, + 396, + 506, + 410 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 321, + 410 + ], + "score": 1.0, + "content": "The last inequality follows from C7 and the facts that", + "type": "text" + }, + { + "bbox": [ + 321, + 398, + 365, + 408 + ], + "score": 0.9, + "content": "x > y > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 365, + 396, + 383, + 410 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 383, + 397, + 439, + 410 + ], + "score": 0.92, + "content": "n _ { i } ( t ) > n _ { j } ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 439, + 396, + 506, + 410 + ], + "score": 1.0, + "content": ". (The condition", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 406, + 405, + 421 + ], + "spans": [ + { + "bbox": [ + 105, + 406, + 124, + 421 + ], + "score": 1.0, + "content": "that", + "type": "text" + }, + { + "bbox": [ + 124, + 408, + 198, + 420 + ], + "score": 0.92, + "content": "q ( \\bar { n } ( t ) ) \\overset { \\cdot } { \\leq } \\dot { \\mathrm { B } _ { \\mathrm { U } } } ( q _ { 0 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 406, + 334, + 421 + ], + "score": 1.0, + "content": "follows from C2 and the fact that", + "type": "text" + }, + { + "bbox": [ + 335, + 408, + 400, + 420 + ], + "score": 0.91, + "content": "d ( \\bar { n } ^ { \\prime } , \\bar { n } ( t ) ) \\leq 1 .", + "type": "inline_equation" + }, + { + "bbox": [ + 400, + 406, + 405, + 421 + ], + "score": 1.0, + "content": ")", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5 + }, + { + "type": "text", + "bbox": [ + 106, + 424, + 505, + 471 + ], + "lines": [ + { + "bbox": [ + 106, + 424, + 505, + 438 + ], + "spans": [ + { + "bbox": [ + 106, + 424, + 143, + 438 + ], + "score": 1.0, + "content": "Case II:", + "type": "text" + }, + { + "bbox": [ + 144, + 424, + 179, + 438 + ], + "score": 0.93, + "content": "n _ { i } ^ { \\prime } \\leq n _ { j } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 180, + 424, + 286, + 438 + ], + "score": 1.0, + "content": ". In this case we swap the", + "type": "text" + }, + { + "bbox": [ + 287, + 426, + 291, + 435 + ], + "score": 0.4, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 424, + 318, + 438 + ], + "score": 1.0, + "content": "th and", + "type": "text" + }, + { + "bbox": [ + 318, + 426, + 324, + 436 + ], + "score": 0.74, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 424, + 375, + 438 + ], + "score": 1.0, + "content": "th indices in", + "type": "text" + }, + { + "bbox": [ + 375, + 425, + 385, + 435 + ], + "score": 0.86, + "content": "\\bar { n } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 386, + 424, + 435, + 438 + ], + "score": 1.0, + "content": "by defining", + "type": "text" + }, + { + "bbox": [ + 435, + 425, + 448, + 435 + ], + "score": 0.87, + "content": "\\bar { n } ^ { \\prime \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 448, + 424, + 505, + 438 + ], + "score": 1.0, + "content": "which differs", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 436, + 506, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 436, + 148, + 451 + ], + "score": 1.0, + "content": "from it in", + "type": "text" + }, + { + "bbox": [ + 148, + 438, + 186, + 451 + ], + "score": 0.91, + "content": "\\bar { n } _ { i } ^ { \\prime \\prime } = \\bar { n } _ { j } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 186, + 436, + 205, + 451 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 205, + 437, + 241, + 451 + ], + "score": 0.92, + "content": "\\bar { n } _ { j \\_ } ^ { \\prime \\prime } = \\bar { n } _ { i } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 242, + 436, + 279, + 451 + ], + "score": 1.0, + "content": ". By C8,", + "type": "text" + }, + { + "bbox": [ + 280, + 437, + 340, + 450 + ], + "score": 0.92, + "content": "q ( \\bar { n } ^ { \\prime \\prime } ) = q ( \\bar { n } ^ { \\prime } )", + "type": "inline_equation" + }, + { + "bbox": [ + 341, + 436, + 405, + 451 + ], + "score": 1.0, + "content": "and, of course,", + "type": "text" + }, + { + "bbox": [ + 405, + 437, + 439, + 448 + ], + "score": 0.91, + "content": "\\bar { n } ^ { \\prime \\prime } \\succeq \\bar { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 439, + 436, + 506, + 451 + ], + "score": 1.0, + "content": "since the prefix", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 448, + 506, + 460 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 506, + 460 + ], + "score": 1.0, + "content": "sums remain unchanged. The benefit of doing this transformation is that we are back in Case I,", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 459, + 460, + 472 + ], + "spans": [ + { + "bbox": [ + 106, + 459, + 346, + 472 + ], + "score": 1.0, + "content": "where the relative order of coordinates that change between", + "type": "text" + }, + { + "bbox": [ + 347, + 460, + 354, + 469 + ], + "score": 0.79, + "content": "\\bar { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 459, + 372, + 472 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 372, + 459, + 384, + 469 + ], + "score": 0.88, + "content": "\\bar { n } ^ { \\prime \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 384, + 459, + 460, + 472 + ], + "score": 1.0, + "content": "remains the same.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 20.5 + }, + { + "type": "text", + "bbox": [ + 108, + 476, + 264, + 488 + ], + "lines": [ + { + "bbox": [ + 106, + 475, + 265, + 489 + ], + "spans": [ + { + "bbox": [ + 106, + 475, + 265, + 489 + ], + "score": 1.0, + "content": "This concludes the proof of the lemma.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 107, + 500, + 505, + 524 + ], + "lines": [ + { + "bbox": [ + 105, + 499, + 506, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 499, + 367, + 513 + ], + "score": 1.0, + "content": "Applying Lemma 17 we construct a chain of histograms between", + "type": "text" + }, + { + "bbox": [ + 368, + 501, + 375, + 510 + ], + "score": 0.78, + "content": "\\bar { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 375, + 499, + 393, + 513 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 393, + 500, + 403, + 510 + ], + "score": 0.87, + "content": "\\bar { n } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 499, + 506, + 513 + ], + "score": 1.0, + "content": ", which, by Lemma 18, is", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 511, + 505, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 178, + 523 + ], + "score": 1.0, + "content": "non-increasing in", + "type": "text" + }, + { + "bbox": [ + 178, + 511, + 195, + 523 + ], + "score": 0.9, + "content": "q ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 511, + 303, + 523 + ], + "score": 1.0, + "content": ". Together this implies that", + "type": "text" + }, + { + "bbox": [ + 303, + 511, + 357, + 523 + ], + "score": 0.93, + "content": "q ( \\bar { n } ) \\leq q ( \\bar { n } ^ { \\prime } )", + "type": "inline_equation" + }, + { + "bbox": [ + 358, + 511, + 408, + 523 + ], + "score": 1.0, + "content": ", as claimed.", + "type": "text" + }, + { + "bbox": [ + 498, + 512, + 505, + 521 + ], + "score": 0.0, + "content": "", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24.5 + }, + { + "type": "text", + "bbox": [ + 107, + 534, + 505, + 557 + ], + "lines": [ + { + "bbox": [ + 106, + 534, + 505, + 547 + ], + "spans": [ + { + "bbox": [ + 106, + 534, + 505, + 547 + ], + "score": 1.0, + "content": "We apply the notion of dominance in proving the following proposition, which is used later in", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 546, + 252, + 558 + ], + "spans": [ + { + "bbox": [ + 105, + 546, + 252, + 558 + ], + "score": 1.0, + "content": "arguing correctness of Algorithm 4.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5 + }, + { + "type": "text", + "bbox": [ + 106, + 560, + 504, + 583 + ], + "lines": [ + { + "bbox": [ + 105, + 559, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 559, + 453, + 574 + ], + "score": 1.0, + "content": "Proposition 19. Let n¯ be an integer-valued histogram and d be a positive integer. And", + "type": "text" + }, + { + "bbox": [ + 453, + 561, + 470, + 573 + ], + "score": 0.89, + "content": "q ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 470, + 559, + 505, + 574 + ], + "score": 1.0, + "content": "satisfies", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 572, + 259, + 585 + ], + "spans": [ + { + "bbox": [ + 106, + 572, + 259, + 585 + ], + "score": 1.0, + "content": "C1, C7, and C8. The following holds:", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5 + }, + { + "type": "text", + "bbox": [ + 127, + 591, + 505, + 615 + ], + "lines": [ + { + "bbox": [ + 128, + 588, + 506, + 607 + ], + "spans": [ + { + "bbox": [ + 128, + 588, + 185, + 607 + ], + "score": 1.0, + "content": "1. Assuming", + "type": "text" + }, + { + "bbox": [ + 185, + 591, + 261, + 603 + ], + "score": 0.9, + "content": "n ^ { ( 1 ) } - n ^ { ( 2 ) } \\geq 2 d ,", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 588, + 278, + 607 + ], + "score": 1.0, + "content": ", let", + "type": "text" + }, + { + "bbox": [ + 279, + 593, + 290, + 603 + ], + "score": 0.85, + "content": "\\bar { n } ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 588, + 366, + 607 + ], + "score": 1.0, + "content": "be obtained from", + "type": "text" + }, + { + "bbox": [ + 366, + 594, + 374, + 603 + ], + "score": 0.41, + "content": "\\bar { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 588, + 446, + 607 + ], + "score": 1.0, + "content": "by decrementing", + "type": "text" + }, + { + "bbox": [ + 446, + 591, + 464, + 603 + ], + "score": 0.88, + "content": "{ \\boldsymbol n } ^ { ( 1 ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 464, + 588, + 479, + 607 + ], + "score": 1.0, + "content": "by", + "type": "text" + }, + { + "bbox": [ + 479, + 593, + 486, + 603 + ], + "score": 0.69, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 486, + 588, + 506, + 607 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 141, + 601, + 262, + 617 + ], + "spans": [ + { + "bbox": [ + 141, + 601, + 197, + 617 + ], + "score": 1.0, + "content": "incrementing", + "type": "text" + }, + { + "bbox": [ + 197, + 603, + 215, + 614 + ], + "score": 0.84, + "content": "n ^ { ( 2 ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 215, + 601, + 228, + 617 + ], + "score": 1.0, + "content": "by", + "type": "text" + }, + { + "bbox": [ + 228, + 604, + 235, + 614 + ], + "score": 0.6, + "content": "d .", + "type": "inline_equation" + }, + { + "bbox": [ + 235, + 601, + 262, + 617 + ], + "score": 1.0, + "content": ". Then", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5 + }, + { + "type": "text", + "bbox": [ + 126, + 645, + 505, + 669 + ], + "lines": [ + { + "bbox": [ + 125, + 639, + 509, + 670 + ], + "spans": [ + { + "bbox": [ + 125, + 639, + 185, + 670 + ], + "score": 1.0, + "content": "2. Assuming repeatedly", + "type": "text" + }, + { + "bbox": [ + 185, + 645, + 249, + 659 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\sum _ { i = 2 } ^ { m } n ^ { ( i ) } \\geq d } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 639, + 267, + 670 + ], + "score": 1.0, + "content": ", let e hi", + "type": "text" + }, + { + "bbox": [ + 267, + 647, + 283, + 657 + ], + "score": 0.87, + "content": "\\bar { n } ^ { * * }", + "type": "inline_equation" + }, + { + "bbox": [ + 284, + 639, + 358, + 670 + ], + "score": 1.0, + "content": "be obtained from am’s current secon", + "type": "text" + }, + { + "bbox": [ + 358, + 648, + 366, + 656 + ], + "score": 0.43, + "content": "\\bar { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 366, + 639, + 436, + 670 + ], + "score": 1.0, + "content": "by incrementing highest value by o", + "type": "text" + }, + { + "bbox": [ + 437, + 648, + 448, + 657 + ], + "score": 0.83, + "content": "n _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 456, + 639, + 463, + 670 + ], + "score": 1.0, + "content": "y ti", + "type": "text" + }, + { + "bbox": [ + 464, + 647, + 470, + 657 + ], + "score": 0.72, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 470, + 639, + 509, + 670 + ], + "score": 1.0, + "content": ", and byes. Then", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 449, + 658, + 456, + 667 + ], + "spans": [ + { + "bbox": [ + 449, + 658, + 456, + 667 + ], + "score": 0.54, + "content": "d", + "type": "inline_equation" + } + ], + "index": 33 + } + ], + "index": 32.5 + }, + { + "type": "text", + "bbox": [ + 107, + 698, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 314, + 711 + ], + "score": 1.0, + "content": "Proof. Towards proving the claims, we argue that", + "type": "text" + }, + { + "bbox": [ + 314, + 699, + 326, + 709 + ], + "score": 0.87, + "content": "\\bar { n } ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 699, + 346, + 711 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 346, + 699, + 362, + 709 + ], + "score": 0.88, + "content": "\\bar { n } ^ { * * }", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "are, respectively, the minimal and", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "the maximal elements in the histogram dominance order (Definition 15) in the set of histograms at", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 721, + 331, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 141, + 733 + ], + "score": 1.0, + "content": "distance", + "type": "text" + }, + { + "bbox": [ + 142, + 721, + 148, + 730 + ], + "score": 0.77, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 721, + 171, + 733 + ], + "score": 1.0, + "content": "from", + "type": "text" + }, + { + "bbox": [ + 171, + 722, + 178, + 730 + ], + "score": 0.66, + "content": "\\bar { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 721, + 331, + 733 + ], + "score": 1.0, + "content": ". By Proposition 16 the claims follow.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35 + } + ], + "page_idx": 26, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 26, + 293, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 39 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 39 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 298, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 298, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "27", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 497, + 476, + 505, + 488 + ], + "lines": [ + { + "bbox": [ + 497, + 477, + 505, + 488 + ], + "spans": [ + { + "bbox": [ + 497, + 477, + 505, + 488 + ], + "score": 0.823, + "content": "■", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 81, + 504, + 107 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 144, + 95 + ], + "score": 1.0, + "content": "compare", + "type": "text" + }, + { + "bbox": [ + 145, + 82, + 187, + 96 + ], + "score": 0.92, + "content": "\\lceil n _ { j } - n _ { j } ^ { \\prime } \\rceil", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 81, + 207, + 95 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 207, + 82, + 252, + 96 + ], + "score": 0.93, + "content": "\\lceil n _ { j } - n _ { j } ^ { \\prime \\prime \\prime } \\rceil", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 81, + 269, + 95 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 269, + 82, + 304, + 94 + ], + "score": 0.92, + "content": "j = i , i ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 81, + 322, + 95 + ], + "score": 1.0, + "content": ". At", + "type": "text" + }, + { + "bbox": [ + 323, + 83, + 347, + 94 + ], + "score": 0.91, + "content": "j = i", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 81, + 505, + 95 + ], + "score": 1.0, + "content": "the first term is strictly larger than the", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 95, + 372, + 108 + ], + "spans": [ + { + "bbox": [ + 106, + 95, + 152, + 108 + ], + "score": 1.0, + "content": "second. At", + "type": "text" + }, + { + "bbox": [ + 152, + 96, + 177, + 107 + ], + "score": 0.9, + "content": "j = i ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 95, + 372, + 108 + ], + "score": 1.0, + "content": ", the inequality holds too but it may be not strict.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 105, + 81, + 505, + 108 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 111, + 504, + 135 + ], + "lines": [ + { + "bbox": [ + 105, + 110, + 505, + 125 + ], + "spans": [ + { + "bbox": [ + 105, + 110, + 331, + 125 + ], + "score": 1.0, + "content": "We may again apply the induction hypothesis to the pair", + "type": "text" + }, + { + "bbox": [ + 332, + 113, + 339, + 122 + ], + "score": 0.81, + "content": "\\bar { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 110, + 357, + 125 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 357, + 112, + 371, + 122 + ], + "score": 0.89, + "content": "\\bar { n } ^ { \\prime \\prime \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 110, + 505, + 125 + ], + "score": 1.0, + "content": ", thus completing the proof of the", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 121, + 504, + 136 + ], + "spans": [ + { + "bbox": [ + 105, + 121, + 140, + 136 + ], + "score": 1.0, + "content": "lemma.", + "type": "text" + }, + { + "bbox": [ + 498, + 125, + 504, + 132 + ], + "score": 0.0, + "content": "", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5, + "bbox_fs": [ + 105, + 110, + 505, + 136 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 146, + 506, + 169 + ], + "lines": [ + { + "bbox": [ + 106, + 146, + 505, + 159 + ], + "spans": [ + { + "bbox": [ + 106, + 146, + 412, + 159 + ], + "score": 1.0, + "content": "To complete the proof of the proposition, we need to argue that the values of", + "type": "text" + }, + { + "bbox": [ + 412, + 149, + 419, + 158 + ], + "score": 0.81, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 419, + 146, + 505, + 159 + ], + "score": 1.0, + "content": "are also monotone in", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 157, + 389, + 170 + ], + "spans": [ + { + "bbox": [ + 105, + 157, + 389, + 170 + ], + "score": 1.0, + "content": "the chain constructed by the previous lemma. Concretely, we put forth", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5, + "bbox_fs": [ + 105, + 146, + 505, + 170 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 199, + 506, + 233 + ], + "lines": [ + { + "bbox": [ + 106, + 198, + 506, + 212 + ], + "spans": [ + { + "bbox": [ + 106, + 198, + 192, + 212 + ], + "score": 1.0, + "content": "Proof. The fact that", + "type": "text" + }, + { + "bbox": [ + 192, + 199, + 247, + 212 + ], + "score": 0.93, + "content": "d ( \\bar { n } , \\bar { n } ^ { \\prime } ) = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 247, + 198, + 266, + 212 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 267, + 199, + 299, + 210 + ], + "score": 0.92, + "content": "\\bar { n } \\succeq \\bar { n } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 198, + 468, + 212 + ], + "score": 1.0, + "content": "means that there is either a single index", + "type": "text" + }, + { + "bbox": [ + 469, + 200, + 474, + 209 + ], + "score": 0.67, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 198, + 506, + 212 + ], + "score": 1.0, + "content": "so that", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 107, + 210, + 506, + 224 + ], + "spans": [ + { + "bbox": [ + 107, + 211, + 139, + 223 + ], + "score": 0.92, + "content": "n _ { i } ^ { \\prime } < n _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 210, + 245, + 224 + ], + "score": 1.0, + "content": ", or there exist two indices", + "type": "text" + }, + { + "bbox": [ + 245, + 212, + 250, + 221 + ], + "score": 0.78, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 210, + 267, + 224 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 268, + 212, + 274, + 222 + ], + "score": 0.84, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 274, + 210, + 303, + 224 + ], + "score": 1.0, + "content": "so that", + "type": "text" + }, + { + "bbox": [ + 303, + 210, + 336, + 223 + ], + "score": 0.93, + "content": "n _ { i } ^ { \\prime } < n _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 337, + 210, + 354, + 224 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 354, + 210, + 389, + 223 + ], + "score": 0.91, + "content": "n _ { j } ^ { \\prime } > n _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 210, + 506, + 224 + ], + "score": 1.0, + "content": ". The first case is immediate,", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 221, + 380, + 234 + ], + "spans": [ + { + "bbox": [ + 105, + 221, + 129, + 234 + ], + "score": 1.0, + "content": "since", + "type": "text" + }, + { + "bbox": [ + 129, + 224, + 136, + 233 + ], + "score": 0.83, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 136, + 221, + 380, + 234 + ], + "score": 1.0, + "content": "is non-decreasing in all inputs except for the largest (by C7).", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7, + "bbox_fs": [ + 105, + 198, + 506, + 234 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 237, + 502, + 261 + ], + "lines": [ + { + "bbox": [ + 104, + 235, + 501, + 254 + ], + "spans": [ + { + "bbox": [ + 104, + 235, + 122, + 254 + ], + "score": 1.0, + "content": "Let", + "type": "text" + }, + { + "bbox": [ + 122, + 238, + 172, + 250 + ], + "score": 0.91, + "content": "n _ { i } ^ { \\prime } = n _ { i } - x", + "type": "inline_equation" + }, + { + "bbox": [ + 172, + 235, + 189, + 254 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 190, + 238, + 240, + 252 + ], + "score": 0.92, + "content": "n _ { j } ^ { \\prime } = n _ { j } + y", + "type": "inline_equation" + }, + { + "bbox": [ + 241, + 235, + 270, + 254 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 271, + 239, + 305, + 250 + ], + "score": 0.9, + "content": "x , y > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 235, + 334, + 254 + ], + "score": 1.0, + "content": ". Since", + "type": "text" + }, + { + "bbox": [ + 334, + 238, + 363, + 249 + ], + "score": 0.91, + "content": "\\bar { n } \\succeq \\bar { n } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 235, + 424, + 254 + ], + "score": 1.0, + "content": ", it follows that", + "type": "text" + }, + { + "bbox": [ + 424, + 239, + 458, + 251 + ], + "score": 0.92, + "content": "n _ { i } \\geq n _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 458, + 235, + 475, + 254 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 476, + 240, + 501, + 250 + ], + "score": 0.9, + "content": "x > y", + "type": "inline_equation" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 249, + 188, + 262 + ], + "spans": [ + { + "bbox": [ + 106, + 249, + 188, + 262 + ], + "score": 1.0, + "content": "Consider two cases.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5, + "bbox_fs": [ + 104, + 235, + 501, + 262 + ] + }, + { + "type": "text", + "bbox": [ + 103, + 266, + 496, + 279 + ], + "lines": [ + { + "bbox": [ + 106, + 264, + 497, + 280 + ], + "spans": [ + { + "bbox": [ + 106, + 264, + 139, + 280 + ], + "score": 1.0, + "content": "Case I:", + "type": "text" + }, + { + "bbox": [ + 139, + 266, + 173, + 280 + ], + "score": 0.92, + "content": "n _ { i } ^ { \\prime } \\geq n _ { j } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 264, + 234, + 280 + ], + "score": 1.0, + "content": ", i.e., removing", + "type": "text" + }, + { + "bbox": [ + 235, + 269, + 241, + 276 + ], + "score": 0.77, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 242, + 264, + 264, + 280 + ], + "score": 1.0, + "content": "from", + "type": "text" + }, + { + "bbox": [ + 265, + 268, + 275, + 277 + ], + "score": 0.85, + "content": "n _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 264, + 322, + 280 + ], + "score": 1.0, + "content": "and adding", + "type": "text" + }, + { + "bbox": [ + 323, + 269, + 330, + 278 + ], + "score": 0.79, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 264, + 340, + 280 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 341, + 269, + 352, + 279 + ], + "score": 0.86, + "content": "n _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 264, + 497, + 280 + ], + "score": 1.0, + "content": "does not change their ordering. Let", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11, + "bbox_fs": [ + 106, + 264, + 497, + 280 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 161, + 285, + 449, + 300 + ], + "lines": [ + { + "bbox": [ + 161, + 285, + 449, + 300 + ], + "spans": [ + { + "bbox": [ + 161, + 285, + 449, + 300 + ], + "score": 0.87, + "content": "\\bar { n } ( t ) \\triangleq ( 1 - t ) \\bar { n } + t \\cdot \\bar { n } ^ { \\prime } = [ n _ { 1 } , \\ldots , n _ { i } - t \\cdot x , \\ldots , n _ { j } + t \\cdot y , \\ldots , n _ { m } ] .", + "type": "interline_equation", + "image_path": "6494bd35497a509b8f7d73f77113409c8cd2b52a95a50f290b487553202cec9b.jpg" + } + ] + } + ], + "index": 12, + "virtual_lines": [ + { + "bbox": [ + 161, + 285, + 449, + 300 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 304, + 131, + 316 + ], + "lines": [ + { + "bbox": [ + 105, + 303, + 134, + 319 + ], + "spans": [ + { + "bbox": [ + 105, + 303, + 134, + 319 + ], + "score": 1.0, + "content": "Then,", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13, + "bbox_fs": [ + 105, + 303, + 134, + 319 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 152, + 320, + 459, + 393 + ], + "lines": [ + { + "bbox": [ + 152, + 320, + 459, + 393 + ], + "spans": [ + { + "bbox": [ + 152, + 320, + 459, + 393 + ], + "score": 0.93, + "content": "\\begin{array} { l l } { \\displaystyle q ( \\bar { n } ^ { \\prime } ) - q ( \\bar { n } ) = q ( \\bar { n } ( 1 ) ) - q ( \\bar { n } ( 0 ) ) = \\int _ { t = 0 } ^ { 1 } ( q \\circ \\bar { n } ) ^ { \\prime } ( t ) \\mathrm { d } t } \\\\ { \\displaystyle \\qquad = \\int _ { t = 0 } ^ { 1 } \\left\\{ - x \\frac { \\partial q } { \\partial n _ { i } } \\bar { n } ( t ) + y \\frac { \\partial q } { \\partial n _ { j } } \\bar { n } ( t ) \\right\\} \\mathrm { d } t } \\\\ { \\displaystyle \\qquad \\leq 0 . } \\end{array}", + "type": "interline_equation", + "image_path": "c3a7f188b7530edd23bdad41a77caecb8a059c7e5594abe8daa0b950f7b39059.jpg" + } + ] + } + ], + "index": 15, + "virtual_lines": [ + { + "bbox": [ + 152, + 320, + 459, + 344.3333333333333 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 152, + 344.3333333333333, + 459, + 368.66666666666663 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 152, + 368.66666666666663, + 459, + 392.99999999999994 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 397, + 504, + 420 + ], + "lines": [ + { + "bbox": [ + 105, + 396, + 506, + 410 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 321, + 410 + ], + "score": 1.0, + "content": "The last inequality follows from C7 and the facts that", + "type": "text" + }, + { + "bbox": [ + 321, + 398, + 365, + 408 + ], + "score": 0.9, + "content": "x > y > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 365, + 396, + 383, + 410 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 383, + 397, + 439, + 410 + ], + "score": 0.92, + "content": "n _ { i } ( t ) > n _ { j } ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 439, + 396, + 506, + 410 + ], + "score": 1.0, + "content": ". (The condition", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 406, + 405, + 421 + ], + "spans": [ + { + "bbox": [ + 105, + 406, + 124, + 421 + ], + "score": 1.0, + "content": "that", + "type": "text" + }, + { + "bbox": [ + 124, + 408, + 198, + 420 + ], + "score": 0.92, + "content": "q ( \\bar { n } ( t ) ) \\overset { \\cdot } { \\leq } \\dot { \\mathrm { B } _ { \\mathrm { U } } } ( q _ { 0 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 406, + 334, + 421 + ], + "score": 1.0, + "content": "follows from C2 and the fact that", + "type": "text" + }, + { + "bbox": [ + 335, + 408, + 400, + 420 + ], + "score": 0.91, + "content": "d ( \\bar { n } ^ { \\prime } , \\bar { n } ( t ) ) \\leq 1 .", + "type": "inline_equation" + }, + { + "bbox": [ + 400, + 406, + 405, + 421 + ], + "score": 1.0, + "content": ")", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5, + "bbox_fs": [ + 105, + 396, + 506, + 421 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 424, + 505, + 471 + ], + "lines": [ + { + "bbox": [ + 106, + 424, + 505, + 438 + ], + "spans": [ + { + "bbox": [ + 106, + 424, + 143, + 438 + ], + "score": 1.0, + "content": "Case II:", + "type": "text" + }, + { + "bbox": [ + 144, + 424, + 179, + 438 + ], + "score": 0.93, + "content": "n _ { i } ^ { \\prime } \\leq n _ { j } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 180, + 424, + 286, + 438 + ], + "score": 1.0, + "content": ". In this case we swap the", + "type": "text" + }, + { + "bbox": [ + 287, + 426, + 291, + 435 + ], + "score": 0.4, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 424, + 318, + 438 + ], + "score": 1.0, + "content": "th and", + "type": "text" + }, + { + "bbox": [ + 318, + 426, + 324, + 436 + ], + "score": 0.74, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 424, + 375, + 438 + ], + "score": 1.0, + "content": "th indices in", + "type": "text" + }, + { + "bbox": [ + 375, + 425, + 385, + 435 + ], + "score": 0.86, + "content": "\\bar { n } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 386, + 424, + 435, + 438 + ], + "score": 1.0, + "content": "by defining", + "type": "text" + }, + { + "bbox": [ + 435, + 425, + 448, + 435 + ], + "score": 0.87, + "content": "\\bar { n } ^ { \\prime \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 448, + 424, + 505, + 438 + ], + "score": 1.0, + "content": "which differs", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 436, + 506, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 436, + 148, + 451 + ], + "score": 1.0, + "content": "from it in", + "type": "text" + }, + { + "bbox": [ + 148, + 438, + 186, + 451 + ], + "score": 0.91, + "content": "\\bar { n } _ { i } ^ { \\prime \\prime } = \\bar { n } _ { j } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 186, + 436, + 205, + 451 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 205, + 437, + 241, + 451 + ], + "score": 0.92, + "content": "\\bar { n } _ { j \\_ } ^ { \\prime \\prime } = \\bar { n } _ { i } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 242, + 436, + 279, + 451 + ], + "score": 1.0, + "content": ". By C8,", + "type": "text" + }, + { + "bbox": [ + 280, + 437, + 340, + 450 + ], + "score": 0.92, + "content": "q ( \\bar { n } ^ { \\prime \\prime } ) = q ( \\bar { n } ^ { \\prime } )", + "type": "inline_equation" + }, + { + "bbox": [ + 341, + 436, + 405, + 451 + ], + "score": 1.0, + "content": "and, of course,", + "type": "text" + }, + { + "bbox": [ + 405, + 437, + 439, + 448 + ], + "score": 0.91, + "content": "\\bar { n } ^ { \\prime \\prime } \\succeq \\bar { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 439, + 436, + 506, + 451 + ], + "score": 1.0, + "content": "since the prefix", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 448, + 506, + 460 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 506, + 460 + ], + "score": 1.0, + "content": "sums remain unchanged. The benefit of doing this transformation is that we are back in Case I,", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 459, + 460, + 472 + ], + "spans": [ + { + "bbox": [ + 106, + 459, + 346, + 472 + ], + "score": 1.0, + "content": "where the relative order of coordinates that change between", + "type": "text" + }, + { + "bbox": [ + 347, + 460, + 354, + 469 + ], + "score": 0.79, + "content": "\\bar { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 459, + 372, + 472 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 372, + 459, + 384, + 469 + ], + "score": 0.88, + "content": "\\bar { n } ^ { \\prime \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 384, + 459, + 460, + 472 + ], + "score": 1.0, + "content": "remains the same.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 20.5, + "bbox_fs": [ + 105, + 424, + 506, + 472 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 476, + 264, + 488 + ], + "lines": [ + { + "bbox": [ + 106, + 475, + 265, + 489 + ], + "spans": [ + { + "bbox": [ + 106, + 475, + 265, + 489 + ], + "score": 1.0, + "content": "This concludes the proof of the lemma.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23, + "bbox_fs": [ + 106, + 475, + 265, + 489 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 500, + 505, + 524 + ], + "lines": [ + { + "bbox": [ + 105, + 499, + 506, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 499, + 367, + 513 + ], + "score": 1.0, + "content": "Applying Lemma 17 we construct a chain of histograms between", + "type": "text" + }, + { + "bbox": [ + 368, + 501, + 375, + 510 + ], + "score": 0.78, + "content": "\\bar { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 375, + 499, + 393, + 513 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 393, + 500, + 403, + 510 + ], + "score": 0.87, + "content": "\\bar { n } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 499, + 506, + 513 + ], + "score": 1.0, + "content": ", which, by Lemma 18, is", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 511, + 505, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 178, + 523 + ], + "score": 1.0, + "content": "non-increasing in", + "type": "text" + }, + { + "bbox": [ + 178, + 511, + 195, + 523 + ], + "score": 0.9, + "content": "q ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 511, + 303, + 523 + ], + "score": 1.0, + "content": ". Together this implies that", + "type": "text" + }, + { + "bbox": [ + 303, + 511, + 357, + 523 + ], + "score": 0.93, + "content": "q ( \\bar { n } ) \\leq q ( \\bar { n } ^ { \\prime } )", + "type": "inline_equation" + }, + { + "bbox": [ + 358, + 511, + 408, + 523 + ], + "score": 1.0, + "content": ", as claimed.", + "type": "text" + }, + { + "bbox": [ + 498, + 512, + 505, + 521 + ], + "score": 0.0, + "content": "", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24.5, + "bbox_fs": [ + 105, + 499, + 506, + 523 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 534, + 505, + 557 + ], + "lines": [ + { + "bbox": [ + 106, + 534, + 505, + 547 + ], + "spans": [ + { + "bbox": [ + 106, + 534, + 505, + 547 + ], + "score": 1.0, + "content": "We apply the notion of dominance in proving the following proposition, which is used later in", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 546, + 252, + 558 + ], + "spans": [ + { + "bbox": [ + 105, + 546, + 252, + 558 + ], + "score": 1.0, + "content": "arguing correctness of Algorithm 4.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5, + "bbox_fs": [ + 105, + 534, + 505, + 558 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 560, + 504, + 583 + ], + "lines": [ + { + "bbox": [ + 105, + 559, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 559, + 453, + 574 + ], + "score": 1.0, + "content": "Proposition 19. Let n¯ be an integer-valued histogram and d be a positive integer. And", + "type": "text" + }, + { + "bbox": [ + 453, + 561, + 470, + 573 + ], + "score": 0.89, + "content": "q ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 470, + 559, + 505, + 574 + ], + "score": 1.0, + "content": "satisfies", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 572, + 259, + 585 + ], + "spans": [ + { + "bbox": [ + 106, + 572, + 259, + 585 + ], + "score": 1.0, + "content": "C1, C7, and C8. The following holds:", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5, + "bbox_fs": [ + 105, + 559, + 505, + 585 + ] + }, + { + "type": "text", + "bbox": [ + 127, + 591, + 505, + 615 + ], + "lines": [ + { + "bbox": [ + 128, + 588, + 506, + 607 + ], + "spans": [ + { + "bbox": [ + 128, + 588, + 185, + 607 + ], + "score": 1.0, + "content": "1. Assuming", + "type": "text" + }, + { + "bbox": [ + 185, + 591, + 261, + 603 + ], + "score": 0.9, + "content": "n ^ { ( 1 ) } - n ^ { ( 2 ) } \\geq 2 d ,", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 588, + 278, + 607 + ], + "score": 1.0, + "content": ", let", + "type": "text" + }, + { + "bbox": [ + 279, + 593, + 290, + 603 + ], + "score": 0.85, + "content": "\\bar { n } ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 588, + 366, + 607 + ], + "score": 1.0, + "content": "be obtained from", + "type": "text" + }, + { + "bbox": [ + 366, + 594, + 374, + 603 + ], + "score": 0.41, + "content": "\\bar { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 588, + 446, + 607 + ], + "score": 1.0, + "content": "by decrementing", + "type": "text" + }, + { + "bbox": [ + 446, + 591, + 464, + 603 + ], + "score": 0.88, + "content": "{ \\boldsymbol n } ^ { ( 1 ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 464, + 588, + 479, + 607 + ], + "score": 1.0, + "content": "by", + "type": "text" + }, + { + "bbox": [ + 479, + 593, + 486, + 603 + ], + "score": 0.69, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 486, + 588, + 506, + 607 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 141, + 601, + 262, + 617 + ], + "spans": [ + { + "bbox": [ + 141, + 601, + 197, + 617 + ], + "score": 1.0, + "content": "incrementing", + "type": "text" + }, + { + "bbox": [ + 197, + 603, + 215, + 614 + ], + "score": 0.84, + "content": "n ^ { ( 2 ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 215, + 601, + 228, + 617 + ], + "score": 1.0, + "content": "by", + "type": "text" + }, + { + "bbox": [ + 228, + 604, + 235, + 614 + ], + "score": 0.6, + "content": "d .", + "type": "inline_equation" + }, + { + "bbox": [ + 235, + 601, + 262, + 617 + ], + "score": 1.0, + "content": ". Then", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5, + "bbox_fs": [ + 128, + 588, + 506, + 617 + ] + }, + { + "type": "text", + "bbox": [ + 126, + 645, + 505, + 669 + ], + "lines": [ + { + "bbox": [ + 125, + 639, + 509, + 670 + ], + "spans": [ + { + "bbox": [ + 125, + 639, + 185, + 670 + ], + "score": 1.0, + "content": "2. Assuming repeatedly", + "type": "text" + }, + { + "bbox": [ + 185, + 645, + 249, + 659 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\sum _ { i = 2 } ^ { m } n ^ { ( i ) } \\geq d } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 639, + 267, + 670 + ], + "score": 1.0, + "content": ", let e hi", + "type": "text" + }, + { + "bbox": [ + 267, + 647, + 283, + 657 + ], + "score": 0.87, + "content": "\\bar { n } ^ { * * }", + "type": "inline_equation" + }, + { + "bbox": [ + 284, + 639, + 358, + 670 + ], + "score": 1.0, + "content": "be obtained from am’s current secon", + "type": "text" + }, + { + "bbox": [ + 358, + 648, + 366, + 656 + ], + "score": 0.43, + "content": "\\bar { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 366, + 639, + 436, + 670 + ], + "score": 1.0, + "content": "by incrementing highest value by o", + "type": "text" + }, + { + "bbox": [ + 437, + 648, + 448, + 657 + ], + "score": 0.83, + "content": "n _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 456, + 639, + 463, + 670 + ], + "score": 1.0, + "content": "y ti", + "type": "text" + }, + { + "bbox": [ + 464, + 647, + 470, + 657 + ], + "score": 0.72, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 470, + 639, + 509, + 670 + ], + "score": 1.0, + "content": ", and byes. Then", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 449, + 658, + 456, + 667 + ], + "spans": [ + { + "bbox": [ + 449, + 658, + 456, + 667 + ], + "score": 0.54, + "content": "d", + "type": "inline_equation" + } + ], + "index": 33 + } + ], + "index": 32.5, + "bbox_fs": [ + 125, + 639, + 509, + 670 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 698, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 314, + 711 + ], + "score": 1.0, + "content": "Proof. Towards proving the claims, we argue that", + "type": "text" + }, + { + "bbox": [ + 314, + 699, + 326, + 709 + ], + "score": 0.87, + "content": "\\bar { n } ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 699, + 346, + 711 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 346, + 699, + 362, + 709 + ], + "score": 0.88, + "content": "\\bar { n } ^ { * * }", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "are, respectively, the minimal and", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "the maximal elements in the histogram dominance order (Definition 15) in the set of histograms at", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 721, + 331, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 141, + 733 + ], + "score": 1.0, + "content": "distance", + "type": "text" + }, + { + "bbox": [ + 142, + 721, + 148, + 730 + ], + "score": 0.77, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 721, + 171, + 733 + ], + "score": 1.0, + "content": "from", + "type": "text" + }, + { + "bbox": [ + 171, + 722, + 178, + 730 + ], + "score": 0.66, + "content": "\\bar { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 721, + 331, + 733 + ], + "score": 1.0, + "content": ". By Proposition 16 the claims follow.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35, + "bbox_fs": [ + 105, + 699, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 131, + 81, + 505, + 135 + ], + "lines": [ + { + "bbox": [ + 128, + 78, + 504, + 98 + ], + "spans": [ + { + "bbox": [ + 128, + 78, + 232, + 98 + ], + "score": 1.0, + "content": "1. Take any histogram", + "type": "text" + }, + { + "bbox": [ + 233, + 83, + 243, + 93 + ], + "score": 0.84, + "content": "\\bar { n } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 78, + 299, + 98 + ], + "score": 1.0, + "content": "at distance", + "type": "text" + }, + { + "bbox": [ + 299, + 83, + 307, + 93 + ], + "score": 0.75, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 307, + 78, + 335, + 98 + ], + "score": 1.0, + "content": "from", + "type": "text" + }, + { + "bbox": [ + 335, + 84, + 343, + 92 + ], + "score": 0.73, + "content": "\\bar { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 343, + 78, + 477, + 98 + ], + "score": 1.0, + "content": ". Our goal is to prove that", + "type": "text" + }, + { + "bbox": [ + 477, + 82, + 504, + 93 + ], + "score": 0.86, + "content": "\\bar { n } ^ { \\prime } \\succeq", + "type": "inline_equation" + } + ], + "index": 0 + }, + { + "bbox": [ + 142, + 92, + 504, + 106 + ], + "spans": [ + { + "bbox": [ + 142, + 94, + 154, + 104 + ], + "score": 0.83, + "content": "\\bar { n } ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 92, + 322, + 106 + ], + "score": 1.0, + "content": ". Recall the definition of the distance", + "type": "text" + }, + { + "bbox": [ + 322, + 93, + 346, + 106 + ], + "score": 0.89, + "content": "d ( \\cdot , \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 92, + 456, + 106 + ], + "score": 1.0, + "content": "between two histograms", + "type": "text" + }, + { + "bbox": [ + 456, + 93, + 504, + 106 + ], + "score": 0.88, + "content": "d ( \\bar { n } , \\bar { n } ^ { \\prime } ) ~ =", + "type": "inline_equation" + } + ], + "index": 1 + }, + { + "bbox": [ + 139, + 103, + 508, + 127 + ], + "spans": [ + { + "bbox": [ + 139, + 103, + 164, + 127 + ], + "score": 1.0, + "content": "max", + "type": "text" + }, + { + "bbox": [ + 164, + 105, + 338, + 124 + ], + "score": 0.85, + "content": "\\begin{array} { r l } { \\bigg \\{ \\sum _ { i : n _ { i } > n _ { i } ^ { \\prime } } \\lceil n _ { i } - n _ { i } ^ { \\prime } \\rceil , \\sum _ { i : n _ { i } < n _ { i } ^ { \\prime } } \\lceil n _ { i } ^ { \\prime } - n _ { i } \\rceil \\bigg \\} } & { { } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 103, + 457, + 127 + ], + "score": 1.0, + "content": ". If the distance is bounded by", + "type": "text" + }, + { + "bbox": [ + 457, + 109, + 464, + 118 + ], + "score": 0.79, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 464, + 103, + 508, + 127 + ], + "score": 1.0, + "content": ", it means,", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 141, + 122, + 214, + 135 + ], + "spans": [ + { + "bbox": [ + 141, + 122, + 214, + 135 + ], + "score": 1.0, + "content": "in particular, that", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5 + }, + { + "type": "interline_equation", + "bbox": [ + 240, + 154, + 405, + 190 + ], + "lines": [ + { + "bbox": [ + 240, + 154, + 405, + 190 + ], + "spans": [ + { + "bbox": [ + 240, + 154, + 405, + 190 + ], + "score": 0.81, + "content": "\\sum _ { j = 2 } ^ { i } n ^ { \\prime ( j ) } \\leq \\sum _ { j = 2 } ^ { i } n ^ { ( j ) } + d \\quad { \\mathrm { ~ f o r ~ a l l ~ } } i > 2 .", + "type": "interline_equation", + "image_path": "e51cdc6036b3cf6ba1921706a666ce5da624dffafd279e30cb6d46ffbeb7ad42.jpg" + } + ] + } + ], + "index": 4.5, + "virtual_lines": [ + { + "bbox": [ + 240, + 154, + 405, + 172.0 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 240, + 172.0, + 405, + 190.0 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "text", + "bbox": [ + 141, + 193, + 349, + 205 + ], + "lines": [ + { + "bbox": [ + 142, + 193, + 349, + 206 + ], + "spans": [ + { + "bbox": [ + 142, + 193, + 292, + 206 + ], + "score": 1.0, + "content": "That lets us bound the prefix sums of", + "type": "text" + }, + { + "bbox": [ + 293, + 194, + 302, + 204 + ], + "score": 0.87, + "content": "\\bar { n } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 303, + 193, + 349, + 206 + ], + "score": 1.0, + "content": "as follows:", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "interline_equation", + "bbox": [ + 152, + 211, + 495, + 288 + ], + "lines": [ + { + "bbox": [ + 152, + 211, + 495, + 288 + ], + "spans": [ + { + "bbox": [ + 152, + 211, + 495, + 288 + ], + "score": 0.93, + "content": "\\begin{array} { l } { S _ { i } ( \\bar { n } ^ { \\prime } ) = \\displaystyle \\sum _ { j = 2 } ^ { i } ( n ^ { \\prime ( 1 ) } - n ^ { \\prime ( j ) } ) = ( i - 1 ) \\cdot n ^ { \\prime ( 1 ) } - \\displaystyle \\sum _ { j = 2 } ^ { i } n ^ { \\prime ( j ) } } \\\\ { \\geq ( i - 1 ) \\cdot ( n ^ { ( 1 ) } - d ) - \\displaystyle \\left( \\sum _ { j = 2 } ^ { i } n ^ { ( j ) } + d \\right) = S _ { i } ( \\bar { n } ^ { * } ) . } \\end{array}", + "type": "interline_equation", + "image_path": "bf48420f4900c7f8d7ff8206d29a0facecae5d732ed9e66b42c0d87828f6b09a.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 152, + 211, + 495, + 236.66666666666666 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 152, + 236.66666666666666, + 495, + 262.3333333333333 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 152, + 262.3333333333333, + 495, + 288.0 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 142, + 290, + 503, + 314 + ], + "lines": [ + { + "bbox": [ + 141, + 289, + 501, + 304 + ], + "spans": [ + { + "bbox": [ + 141, + 289, + 234, + 304 + ], + "score": 1.0, + "content": "We demonstrated that", + "type": "text" + }, + { + "bbox": [ + 235, + 291, + 272, + 302 + ], + "score": 0.92, + "content": "\\bar { n } ^ { \\prime } \\succeq \\bar { n } ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 289, + 438, + 304 + ], + "score": 1.0, + "content": ", which, by Proposition 16, implies that", + "type": "text" + }, + { + "bbox": [ + 439, + 290, + 501, + 303 + ], + "score": 0.92, + "content": "q ( \\bar { n } ^ { \\prime } ) \\leq q ( \\bar { n } ^ { * } )", + "type": "inline_equation" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 301, + 396, + 315 + ], + "spans": [ + { + "bbox": [ + 141, + 301, + 259, + 315 + ], + "score": 1.0, + "content": "Together with the immediate", + "type": "text" + }, + { + "bbox": [ + 260, + 302, + 313, + 314 + ], + "score": 0.93, + "content": "d ( \\bar { n } , \\bar { n } ^ { * } ) = d", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 301, + 396, + 315 + ], + "score": 1.0, + "content": "we prove the claim.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5 + }, + { + "type": "text", + "bbox": [ + 131, + 320, + 504, + 343 + ], + "lines": [ + { + "bbox": [ + 128, + 319, + 506, + 334 + ], + "spans": [ + { + "bbox": [ + 128, + 319, + 220, + 334 + ], + "score": 1.0, + "content": "2. Assume wlog that", + "type": "text" + }, + { + "bbox": [ + 221, + 322, + 228, + 330 + ], + "score": 0.81, + "content": "\\bar { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 319, + 506, + 334 + ], + "score": 1.0, + "content": "is sorted in the descending order. Define the following value that", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 331, + 226, + 343 + ], + "spans": [ + { + "bbox": [ + 141, + 331, + 190, + 343 + ], + "score": 1.0, + "content": "depends on", + "type": "text" + }, + { + "bbox": [ + 190, + 333, + 197, + 342 + ], + "score": 0.8, + "content": "\\bar { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 331, + 215, + 343 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 216, + 332, + 222, + 342 + ], + "score": 0.82, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 331, + 226, + 343 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5 + }, + { + "type": "interline_equation", + "bbox": [ + 234, + 346, + 412, + 386 + ], + "lines": [ + { + "bbox": [ + 234, + 346, + 412, + 386 + ], + "spans": [ + { + "bbox": [ + 234, + 346, + 412, + 386 + ], + "score": 0.94, + "content": "u \\triangleq \\operatorname* { m i n } \\left\\{ x \\in { \\mathbb { N } } \\colon \\sum _ { i : i > 1 , n _ { i } \\geq x } n _ { i } - x \\leq d \\right\\} .", + "type": "interline_equation", + "image_path": "2ae07e381ae3d22531b806739fd5ae3cf8a217c375f0f495fca76da961fa2406.jpg" + } + ] + } + ], + "index": 14.5, + "virtual_lines": [ + { + "bbox": [ + 234, + 346, + 412, + 366.0 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 234, + 366.0, + 412, + 386.0 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "text", + "bbox": [ + 142, + 389, + 503, + 411 + ], + "lines": [ + { + "bbox": [ + 142, + 388, + 505, + 401 + ], + "spans": [ + { + "bbox": [ + 142, + 388, + 195, + 401 + ], + "score": 1.0, + "content": "The constant", + "type": "text" + }, + { + "bbox": [ + 195, + 391, + 202, + 399 + ], + "score": 0.8, + "content": "u", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 388, + 280, + 401 + ], + "score": 1.0, + "content": "is the smallest such", + "type": "text" + }, + { + "bbox": [ + 281, + 391, + 288, + 399 + ], + "score": 0.78, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 388, + 505, + 401 + ], + "score": 1.0, + "content": "so that the total mass that can be shaved from elements", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 399, + 308, + 411 + ], + "spans": [ + { + "bbox": [ + 141, + 399, + 153, + 411 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 154, + 401, + 160, + 410 + ], + "score": 0.81, + "content": "\\bar { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 161, + 399, + 187, + 411 + ], + "score": 1.0, + "content": "above", + "type": "text" + }, + { + "bbox": [ + 187, + 402, + 195, + 410 + ], + "score": 0.79, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 399, + 240, + 411 + ], + "score": 1.0, + "content": "(excluding", + "type": "text" + }, + { + "bbox": [ + 241, + 401, + 253, + 411 + ], + "score": 0.84, + "content": "n _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 399, + 298, + 411 + ], + "score": 1.0, + "content": ") is at most", + "type": "text" + }, + { + "bbox": [ + 298, + 400, + 304, + 410 + ], + "score": 0.83, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 399, + 308, + 411 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5 + }, + { + "type": "text", + "bbox": [ + 142, + 416, + 348, + 428 + ], + "lines": [ + { + "bbox": [ + 142, + 416, + 348, + 429 + ], + "spans": [ + { + "bbox": [ + 142, + 416, + 327, + 429 + ], + "score": 1.0, + "content": "We give the following equivalent definition of", + "type": "text" + }, + { + "bbox": [ + 328, + 417, + 343, + 427 + ], + "score": 0.88, + "content": "\\bar { n } ^ { * * }", + "type": "inline_equation" + }, + { + "bbox": [ + 343, + 416, + 348, + 429 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "interline_equation", + "bbox": [ + 243, + 433, + 402, + 474 + ], + "lines": [ + { + "bbox": [ + 243, + 433, + 402, + 474 + ], + "spans": [ + { + "bbox": [ + 243, + 433, + 402, + 474 + ], + "score": 0.94, + "content": "n _ { i } ^ { * * } = \\left\\{ { \\begin{array} { l l } { n _ { 1 } + d } & { { \\mathrm { i f ~ } } i = 1 , } \\\\ { u } & { { \\mathrm { i f ~ } } i > 1 { \\mathrm { ~ a n d ~ } } n _ { i } \\geq u , } \\\\ { n _ { i } } & { { \\mathrm { o t h e r w i s e } } . } \\end{array} } \\right.", + "type": "interline_equation", + "image_path": "813c8558474a39af939a72cbc535ee9c7e7b03c4a40cebcab34830ae3e0cc6f3.jpg" + } + ] + } + ], + "index": 19.5, + "virtual_lines": [ + { + "bbox": [ + 243, + 433, + 402, + 453.5 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 243, + 453.5, + 402, + 474.0 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 142, + 478, + 505, + 513 + ], + "lines": [ + { + "bbox": [ + 141, + 477, + 506, + 491 + ], + "spans": [ + { + "bbox": [ + 141, + 477, + 177, + 491 + ], + "score": 1.0, + "content": "Fix any", + "type": "text" + }, + { + "bbox": [ + 177, + 478, + 212, + 490 + ], + "score": 0.9, + "content": "i \\in [ m ]", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 477, + 294, + 491 + ], + "score": 1.0, + "content": "and any histogram", + "type": "text" + }, + { + "bbox": [ + 294, + 479, + 304, + 488 + ], + "score": 0.87, + "content": "\\bar { n } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 477, + 353, + 491 + ], + "score": 1.0, + "content": "at distance", + "type": "text" + }, + { + "bbox": [ + 353, + 479, + 360, + 488 + ], + "score": 0.79, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 477, + 385, + 491 + ], + "score": 1.0, + "content": "from", + "type": "text" + }, + { + "bbox": [ + 385, + 480, + 392, + 488 + ], + "score": 0.73, + "content": "\\bar { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 477, + 506, + 491 + ], + "score": 1.0, + "content": ". Our goal is to prove that", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 143, + 488, + 506, + 502 + ], + "spans": [ + { + "bbox": [ + 143, + 489, + 217, + 501 + ], + "score": 0.87, + "content": "S _ { i } ( \\bar { n } ^ { * * } ) \\geq S _ { i } ^ { \\bar { ( n ^ { \\prime } ) } }", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 488, + 257, + 502 + ], + "score": 1.0, + "content": "and thus", + "type": "text" + }, + { + "bbox": [ + 257, + 489, + 298, + 500 + ], + "score": 0.92, + "content": "\\bar { n } ^ { * * } \\succeq \\bar { n } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 488, + 459, + 502 + ], + "score": 1.0, + "content": ". Assume the opposite and take largest", + "type": "text" + }, + { + "bbox": [ + 460, + 490, + 464, + 499 + ], + "score": 0.79, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 465, + 488, + 506, + 502 + ], + "score": 1.0, + "content": "such that", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 143, + 499, + 219, + 513 + ], + "spans": [ + { + "bbox": [ + 143, + 501, + 214, + 513 + ], + "score": 0.89, + "content": "S _ { i } ( { \\bar { n } } ^ { * * } ) < S _ { i } ( { \\bar { n } } ^ { \\prime } )", + "type": "inline_equation" + }, + { + "bbox": [ + 215, + 499, + 219, + 513 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 144, + 517, + 440, + 531 + ], + "lines": [ + { + "bbox": [ + 141, + 515, + 442, + 534 + ], + "spans": [ + { + "bbox": [ + 141, + 515, + 227, + 534 + ], + "score": 1.0, + "content": "We may assume that", + "type": "text" + }, + { + "bbox": [ + 227, + 517, + 316, + 531 + ], + "score": 0.93, + "content": "n ^ { \\prime ( 1 ) } = n _ { 1 } ^ { * * } = n _ { 1 } + d", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 515, + 442, + 534 + ], + "score": 1.0, + "content": ". Consider the following cases.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 142, + 536, + 355, + 549 + ], + "lines": [ + { + "bbox": [ + 142, + 534, + 355, + 550 + ], + "spans": [ + { + "bbox": [ + 142, + 534, + 183, + 550 + ], + "score": 1.0, + "content": "Case I. If", + "type": "text" + }, + { + "bbox": [ + 183, + 536, + 227, + 547 + ], + "score": 0.92, + "content": "n ^ { * * ( i ) } < u", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 534, + 355, + 550 + ], + "score": 1.0, + "content": ", the contradiction follows from", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "interline_equation", + "bbox": [ + 151, + 554, + 496, + 606 + ], + "lines": [ + { + "bbox": [ + 151, + 554, + 496, + 606 + ], + "spans": [ + { + "bbox": [ + 151, + 554, + 496, + 606 + ], + "score": 0.94, + "content": "\\begin{array} { r } { S _ { i } ( \\bar { n } ^ { \\prime } ) = \\displaystyle \\sum _ { j = 2 } ^ { i } ( n ^ { \\prime ( 1 ) } - n ^ { \\prime ( j ) } ) = \\displaystyle \\sum _ { j = 2 } ^ { i } \\Big ( ( n ^ { \\prime ( 1 ) } - n ^ { ( 1 ) } ) + ( n ^ { ( 1 ) } - n ^ { ( j ) } ) + ( n ^ { ( j ) } - n ^ { \\prime ( j ) } ) \\Big ) } \\\\ { \\le ( i - 1 ) d + S _ { i } ( \\bar { n } ) + d = S _ { i } ( \\bar { n } ^ { * * } ) . } \\end{array}", + "type": "interline_equation", + "image_path": "20c6752be4a43e4789082067e1276bddffdc8903272c1a05f275d7d232fed5bf.jpg" + } + ] + } + ], + "index": 27, + "virtual_lines": [ + { + "bbox": [ + 151, + 554, + 496, + 571.3333333333334 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 151, + 571.3333333333334, + 496, + 588.6666666666667 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 151, + 588.6666666666667, + 496, + 606.0000000000001 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "text", + "bbox": [ + 142, + 607, + 504, + 630 + ], + "lines": [ + { + "bbox": [ + 141, + 606, + 506, + 621 + ], + "spans": [ + { + "bbox": [ + 141, + 606, + 398, + 621 + ], + "score": 1.0, + "content": "The last equality is due to the fact that all differences between", + "type": "text" + }, + { + "bbox": [ + 398, + 609, + 405, + 618 + ], + "score": 0.81, + "content": "\\bar { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 606, + 424, + 621 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 425, + 608, + 440, + 618 + ], + "score": 0.89, + "content": "\\bar { n } ^ { * * }", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 606, + 506, + 621 + ], + "score": 1.0, + "content": "are confined to", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 142, + 619, + 266, + 630 + ], + "spans": [ + { + "bbox": [ + 142, + 619, + 257, + 630 + ], + "score": 1.0, + "content": "the indices that are less than", + "type": "text" + }, + { + "bbox": [ + 257, + 619, + 262, + 628 + ], + "score": 0.75, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 619, + 266, + 630 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5 + }, + { + "type": "text", + "bbox": [ + 143, + 634, + 503, + 658 + ], + "lines": [ + { + "bbox": [ + 140, + 632, + 506, + 649 + ], + "spans": [ + { + "bbox": [ + 140, + 632, + 165, + 649 + ], + "score": 1.0, + "content": "Case", + "type": "text" + }, + { + "bbox": [ + 166, + 635, + 175, + 645 + ], + "score": 0.31, + "content": "\\mathbf { I I }", + "type": "inline_equation" + }, + { + "bbox": [ + 176, + 632, + 190, + 649 + ], + "score": 1.0, + "content": ". If", + "type": "text" + }, + { + "bbox": [ + 190, + 634, + 237, + 646 + ], + "score": 0.92, + "content": "n ^ { * * ( i ) } = u", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 632, + 257, + 649 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 257, + 634, + 298, + 646 + ], + "score": 0.92, + "content": "n ^ { \\prime { ( i ) } } \\geq u", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 632, + 395, + 649 + ], + "score": 1.0, + "content": ", the contradiction with", + "type": "text" + }, + { + "bbox": [ + 396, + 635, + 470, + 648 + ], + "score": 0.92, + "content": "S _ { i } ( \\bar { n } ^ { * * } ) < S _ { i } ( \\bar { n } ^ { \\prime } )", + "type": "inline_equation" + }, + { + "bbox": [ + 471, + 632, + 506, + 649 + ], + "score": 1.0, + "content": "follows", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 141, + 645, + 218, + 659 + ], + "spans": [ + { + "bbox": [ + 141, + 645, + 218, + 659 + ], + "score": 1.0, + "content": "immediately from", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5 + }, + { + "type": "interline_equation", + "bbox": [ + 199, + 662, + 448, + 697 + ], + "lines": [ + { + "bbox": [ + 199, + 662, + 448, + 697 + ], + "spans": [ + { + "bbox": [ + 199, + 662, + 448, + 697 + ], + "score": 0.93, + "content": "S _ { i } ( \\bar { n } ^ { \\prime } ) = \\sum _ { j = 2 } ^ { i } ( n ^ { \\prime ( 1 ) } - n ^ { \\prime ( j ) } ) \\le ( i - 1 ) ( n ^ { \\prime ( 1 ) } - u ) = S _ { i } ( \\bar { n } ^ { * * } ) .", + "type": "interline_equation", + "image_path": "d3122cb1b2334f94cde4f121fa76017d00abcd3307d0b0cbd2dab06d6ad68235.jpg" + } + ] + } + ], + "index": 34, + "virtual_lines": [ + { + "bbox": [ + 199, + 662, + 448, + 673.6666666666666 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 199, + 673.6666666666666, + 448, + 685.3333333333333 + ], + "spans": [], + "index": 34 + }, + { + "bbox": [ + 199, + 685.3333333333333, + 448, + 696.9999999999999 + ], + "spans": [], + "index": 35 + } + ] + }, + { + "type": "text", + "bbox": [ + 142, + 707, + 504, + 733 + ], + "lines": [ + { + "bbox": [ + 140, + 704, + 507, + 722 + ], + "spans": [ + { + "bbox": [ + 140, + 704, + 314, + 722 + ], + "score": 1.0, + "content": "Case III. Finally, consider the case when", + "type": "text" + }, + { + "bbox": [ + 315, + 707, + 361, + 718 + ], + "score": 0.95, + "content": "n ^ { * * ( i ) } = u", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 704, + 380, + 722 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 380, + 707, + 442, + 719 + ], + "score": 0.91, + "content": "v \\ \\triangleq n ^ { \\prime ( i ) } < u", + "type": "inline_equation" + }, + { + "bbox": [ + 443, + 704, + 474, + 722 + ], + "score": 1.0, + "content": ". Since", + "type": "text" + }, + { + "bbox": [ + 474, + 709, + 479, + 718 + ], + "score": 0.79, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 479, + 704, + 507, + 722 + ], + "score": 1.0, + "content": "is the", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 140, + 717, + 503, + 734 + ], + "spans": [ + { + "bbox": [ + 140, + 717, + 211, + 734 + ], + "score": 1.0, + "content": "largest such that", + "type": "text" + }, + { + "bbox": [ + 212, + 720, + 285, + 732 + ], + "score": 0.93, + "content": "S _ { i } ( { \\bar { n } } ^ { * * } ) < S _ { i } ( { \\bar { n } } ^ { \\prime } )", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 717, + 345, + 734 + ], + "score": 1.0, + "content": ", it means that", + "type": "text" + }, + { + "bbox": [ + 345, + 719, + 503, + 731 + ], + "score": 0.9, + "content": "n ^ { * * ( i + 1 ) } < n ^ { \\prime ( i + 1 ) } \\leq v < u = n ^ { * * ( i ) }", + "type": "inline_equation" + } + ], + "index": 37 + } + ], + "index": 36.5 + } + ], + "page_idx": 27, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 26, + 293, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 39 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 39 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 298, + 750, + 313, + 763 + ], + "spans": [ + { + "bbox": [ + 298, + 750, + 313, + 763 + ], + "score": 1.0, + "content": "28", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 131, + 81, + 505, + 135 + ], + "lines": [ + { + "bbox": [ + 128, + 78, + 504, + 98 + ], + "spans": [ + { + "bbox": [ + 128, + 78, + 232, + 98 + ], + "score": 1.0, + "content": "1. Take any histogram", + "type": "text" + }, + { + "bbox": [ + 233, + 83, + 243, + 93 + ], + "score": 0.84, + "content": "\\bar { n } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 78, + 299, + 98 + ], + "score": 1.0, + "content": "at distance", + "type": "text" + }, + { + "bbox": [ + 299, + 83, + 307, + 93 + ], + "score": 0.75, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 307, + 78, + 335, + 98 + ], + "score": 1.0, + "content": "from", + "type": "text" + }, + { + "bbox": [ + 335, + 84, + 343, + 92 + ], + "score": 0.73, + "content": "\\bar { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 343, + 78, + 477, + 98 + ], + "score": 1.0, + "content": ". Our goal is to prove that", + "type": "text" + }, + { + "bbox": [ + 477, + 82, + 504, + 93 + ], + "score": 0.86, + "content": "\\bar { n } ^ { \\prime } \\succeq", + "type": "inline_equation" + } + ], + "index": 0 + }, + { + "bbox": [ + 142, + 92, + 504, + 106 + ], + "spans": [ + { + "bbox": [ + 142, + 94, + 154, + 104 + ], + "score": 0.83, + "content": "\\bar { n } ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 92, + 322, + 106 + ], + "score": 1.0, + "content": ". Recall the definition of the distance", + "type": "text" + }, + { + "bbox": [ + 322, + 93, + 346, + 106 + ], + "score": 0.89, + "content": "d ( \\cdot , \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 92, + 456, + 106 + ], + "score": 1.0, + "content": "between two histograms", + "type": "text" + }, + { + "bbox": [ + 456, + 93, + 504, + 106 + ], + "score": 0.88, + "content": "d ( \\bar { n } , \\bar { n } ^ { \\prime } ) ~ =", + "type": "inline_equation" + } + ], + "index": 1 + }, + { + "bbox": [ + 139, + 103, + 508, + 127 + ], + "spans": [ + { + "bbox": [ + 139, + 103, + 164, + 127 + ], + "score": 1.0, + "content": "max", + "type": "text" + }, + { + "bbox": [ + 164, + 105, + 338, + 124 + ], + "score": 0.85, + "content": "\\begin{array} { r l } { \\bigg \\{ \\sum _ { i : n _ { i } > n _ { i } ^ { \\prime } } \\lceil n _ { i } - n _ { i } ^ { \\prime } \\rceil , \\sum _ { i : n _ { i } < n _ { i } ^ { \\prime } } \\lceil n _ { i } ^ { \\prime } - n _ { i } \\rceil \\bigg \\} } & { { } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 103, + 457, + 127 + ], + "score": 1.0, + "content": ". If the distance is bounded by", + "type": "text" + }, + { + "bbox": [ + 457, + 109, + 464, + 118 + ], + "score": 0.79, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 464, + 103, + 508, + 127 + ], + "score": 1.0, + "content": ", it means,", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 141, + 122, + 214, + 135 + ], + "spans": [ + { + "bbox": [ + 141, + 122, + 214, + 135 + ], + "score": 1.0, + "content": "in particular, that", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5, + "bbox_fs": [ + 128, + 78, + 508, + 135 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 240, + 154, + 405, + 190 + ], + "lines": [ + { + "bbox": [ + 240, + 154, + 405, + 190 + ], + "spans": [ + { + "bbox": [ + 240, + 154, + 405, + 190 + ], + "score": 0.81, + "content": "\\sum _ { j = 2 } ^ { i } n ^ { \\prime ( j ) } \\leq \\sum _ { j = 2 } ^ { i } n ^ { ( j ) } + d \\quad { \\mathrm { ~ f o r ~ a l l ~ } } i > 2 .", + "type": "interline_equation", + "image_path": "e51cdc6036b3cf6ba1921706a666ce5da624dffafd279e30cb6d46ffbeb7ad42.jpg" + } + ] + } + ], + "index": 4.5, + "virtual_lines": [ + { + "bbox": [ + 240, + 154, + 405, + 172.0 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 240, + 172.0, + 405, + 190.0 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "text", + "bbox": [ + 141, + 193, + 349, + 205 + ], + "lines": [ + { + "bbox": [ + 142, + 193, + 349, + 206 + ], + "spans": [ + { + "bbox": [ + 142, + 193, + 292, + 206 + ], + "score": 1.0, + "content": "That lets us bound the prefix sums of", + "type": "text" + }, + { + "bbox": [ + 293, + 194, + 302, + 204 + ], + "score": 0.87, + "content": "\\bar { n } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 303, + 193, + 349, + 206 + ], + "score": 1.0, + "content": "as follows:", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6, + "bbox_fs": [ + 142, + 193, + 349, + 206 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 152, + 211, + 495, + 288 + ], + "lines": [ + { + "bbox": [ + 152, + 211, + 495, + 288 + ], + "spans": [ + { + "bbox": [ + 152, + 211, + 495, + 288 + ], + "score": 0.93, + "content": "\\begin{array} { l } { S _ { i } ( \\bar { n } ^ { \\prime } ) = \\displaystyle \\sum _ { j = 2 } ^ { i } ( n ^ { \\prime ( 1 ) } - n ^ { \\prime ( j ) } ) = ( i - 1 ) \\cdot n ^ { \\prime ( 1 ) } - \\displaystyle \\sum _ { j = 2 } ^ { i } n ^ { \\prime ( j ) } } \\\\ { \\geq ( i - 1 ) \\cdot ( n ^ { ( 1 ) } - d ) - \\displaystyle \\left( \\sum _ { j = 2 } ^ { i } n ^ { ( j ) } + d \\right) = S _ { i } ( \\bar { n } ^ { * } ) . } \\end{array}", + "type": "interline_equation", + "image_path": "bf48420f4900c7f8d7ff8206d29a0facecae5d732ed9e66b42c0d87828f6b09a.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 152, + 211, + 495, + 236.66666666666666 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 152, + 236.66666666666666, + 495, + 262.3333333333333 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 152, + 262.3333333333333, + 495, + 288.0 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 142, + 290, + 503, + 314 + ], + "lines": [ + { + "bbox": [ + 141, + 289, + 501, + 304 + ], + "spans": [ + { + "bbox": [ + 141, + 289, + 234, + 304 + ], + "score": 1.0, + "content": "We demonstrated that", + "type": "text" + }, + { + "bbox": [ + 235, + 291, + 272, + 302 + ], + "score": 0.92, + "content": "\\bar { n } ^ { \\prime } \\succeq \\bar { n } ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 289, + 438, + 304 + ], + "score": 1.0, + "content": ", which, by Proposition 16, implies that", + "type": "text" + }, + { + "bbox": [ + 439, + 290, + 501, + 303 + ], + "score": 0.92, + "content": "q ( \\bar { n } ^ { \\prime } ) \\leq q ( \\bar { n } ^ { * } )", + "type": "inline_equation" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 301, + 396, + 315 + ], + "spans": [ + { + "bbox": [ + 141, + 301, + 259, + 315 + ], + "score": 1.0, + "content": "Together with the immediate", + "type": "text" + }, + { + "bbox": [ + 260, + 302, + 313, + 314 + ], + "score": 0.93, + "content": "d ( \\bar { n } , \\bar { n } ^ { * } ) = d", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 301, + 396, + 315 + ], + "score": 1.0, + "content": "we prove the claim.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5, + "bbox_fs": [ + 141, + 289, + 501, + 315 + ] + }, + { + "type": "text", + "bbox": [ + 131, + 320, + 504, + 343 + ], + "lines": [ + { + "bbox": [ + 128, + 319, + 506, + 334 + ], + "spans": [ + { + "bbox": [ + 128, + 319, + 220, + 334 + ], + "score": 1.0, + "content": "2. Assume wlog that", + "type": "text" + }, + { + "bbox": [ + 221, + 322, + 228, + 330 + ], + "score": 0.81, + "content": "\\bar { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 319, + 506, + 334 + ], + "score": 1.0, + "content": "is sorted in the descending order. Define the following value that", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 331, + 226, + 343 + ], + "spans": [ + { + "bbox": [ + 141, + 331, + 190, + 343 + ], + "score": 1.0, + "content": "depends on", + "type": "text" + }, + { + "bbox": [ + 190, + 333, + 197, + 342 + ], + "score": 0.8, + "content": "\\bar { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 331, + 215, + 343 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 216, + 332, + 222, + 342 + ], + "score": 0.82, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 331, + 226, + 343 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5, + "bbox_fs": [ + 128, + 319, + 506, + 343 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 234, + 346, + 412, + 386 + ], + "lines": [ + { + "bbox": [ + 234, + 346, + 412, + 386 + ], + "spans": [ + { + "bbox": [ + 234, + 346, + 412, + 386 + ], + "score": 0.94, + "content": "u \\triangleq \\operatorname* { m i n } \\left\\{ x \\in { \\mathbb { N } } \\colon \\sum _ { i : i > 1 , n _ { i } \\geq x } n _ { i } - x \\leq d \\right\\} .", + "type": "interline_equation", + "image_path": "2ae07e381ae3d22531b806739fd5ae3cf8a217c375f0f495fca76da961fa2406.jpg" + } + ] + } + ], + "index": 14.5, + "virtual_lines": [ + { + "bbox": [ + 234, + 346, + 412, + 366.0 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 234, + 366.0, + 412, + 386.0 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "text", + "bbox": [ + 142, + 389, + 503, + 411 + ], + "lines": [ + { + "bbox": [ + 142, + 388, + 505, + 401 + ], + "spans": [ + { + "bbox": [ + 142, + 388, + 195, + 401 + ], + "score": 1.0, + "content": "The constant", + "type": "text" + }, + { + "bbox": [ + 195, + 391, + 202, + 399 + ], + "score": 0.8, + "content": "u", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 388, + 280, + 401 + ], + "score": 1.0, + "content": "is the smallest such", + "type": "text" + }, + { + "bbox": [ + 281, + 391, + 288, + 399 + ], + "score": 0.78, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 388, + 505, + 401 + ], + "score": 1.0, + "content": "so that the total mass that can be shaved from elements", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 399, + 308, + 411 + ], + "spans": [ + { + "bbox": [ + 141, + 399, + 153, + 411 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 154, + 401, + 160, + 410 + ], + "score": 0.81, + "content": "\\bar { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 161, + 399, + 187, + 411 + ], + "score": 1.0, + "content": "above", + "type": "text" + }, + { + "bbox": [ + 187, + 402, + 195, + 410 + ], + "score": 0.79, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 399, + 240, + 411 + ], + "score": 1.0, + "content": "(excluding", + "type": "text" + }, + { + "bbox": [ + 241, + 401, + 253, + 411 + ], + "score": 0.84, + "content": "n _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 399, + 298, + 411 + ], + "score": 1.0, + "content": ") is at most", + "type": "text" + }, + { + "bbox": [ + 298, + 400, + 304, + 410 + ], + "score": 0.83, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 399, + 308, + 411 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5, + "bbox_fs": [ + 141, + 388, + 505, + 411 + ] + }, + { + "type": "text", + "bbox": [ + 142, + 416, + 348, + 428 + ], + "lines": [ + { + "bbox": [ + 142, + 416, + 348, + 429 + ], + "spans": [ + { + "bbox": [ + 142, + 416, + 327, + 429 + ], + "score": 1.0, + "content": "We give the following equivalent definition of", + "type": "text" + }, + { + "bbox": [ + 328, + 417, + 343, + 427 + ], + "score": 0.88, + "content": "\\bar { n } ^ { * * }", + "type": "inline_equation" + }, + { + "bbox": [ + 343, + 416, + 348, + 429 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18, + "bbox_fs": [ + 142, + 416, + 348, + 429 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 243, + 433, + 402, + 474 + ], + "lines": [ + { + "bbox": [ + 243, + 433, + 402, + 474 + ], + "spans": [ + { + "bbox": [ + 243, + 433, + 402, + 474 + ], + "score": 0.94, + "content": "n _ { i } ^ { * * } = \\left\\{ { \\begin{array} { l l } { n _ { 1 } + d } & { { \\mathrm { i f ~ } } i = 1 , } \\\\ { u } & { { \\mathrm { i f ~ } } i > 1 { \\mathrm { ~ a n d ~ } } n _ { i } \\geq u , } \\\\ { n _ { i } } & { { \\mathrm { o t h e r w i s e } } . } \\end{array} } \\right.", + "type": "interline_equation", + "image_path": "813c8558474a39af939a72cbc535ee9c7e7b03c4a40cebcab34830ae3e0cc6f3.jpg" + } + ] + } + ], + "index": 19.5, + "virtual_lines": [ + { + "bbox": [ + 243, + 433, + 402, + 453.5 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 243, + 453.5, + 402, + 474.0 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 142, + 478, + 505, + 513 + ], + "lines": [ + { + "bbox": [ + 141, + 477, + 506, + 491 + ], + "spans": [ + { + "bbox": [ + 141, + 477, + 177, + 491 + ], + "score": 1.0, + "content": "Fix any", + "type": "text" + }, + { + "bbox": [ + 177, + 478, + 212, + 490 + ], + "score": 0.9, + "content": "i \\in [ m ]", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 477, + 294, + 491 + ], + "score": 1.0, + "content": "and any histogram", + "type": "text" + }, + { + "bbox": [ + 294, + 479, + 304, + 488 + ], + "score": 0.87, + "content": "\\bar { n } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 477, + 353, + 491 + ], + "score": 1.0, + "content": "at distance", + "type": "text" + }, + { + "bbox": [ + 353, + 479, + 360, + 488 + ], + "score": 0.79, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 477, + 385, + 491 + ], + "score": 1.0, + "content": "from", + "type": "text" + }, + { + "bbox": [ + 385, + 480, + 392, + 488 + ], + "score": 0.73, + "content": "\\bar { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 477, + 506, + 491 + ], + "score": 1.0, + "content": ". Our goal is to prove that", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 143, + 488, + 506, + 502 + ], + "spans": [ + { + "bbox": [ + 143, + 489, + 217, + 501 + ], + "score": 0.87, + "content": "S _ { i } ( \\bar { n } ^ { * * } ) \\geq S _ { i } ^ { \\bar { ( n ^ { \\prime } ) } }", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 488, + 257, + 502 + ], + "score": 1.0, + "content": "and thus", + "type": "text" + }, + { + "bbox": [ + 257, + 489, + 298, + 500 + ], + "score": 0.92, + "content": "\\bar { n } ^ { * * } \\succeq \\bar { n } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 488, + 459, + 502 + ], + "score": 1.0, + "content": ". Assume the opposite and take largest", + "type": "text" + }, + { + "bbox": [ + 460, + 490, + 464, + 499 + ], + "score": 0.79, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 465, + 488, + 506, + 502 + ], + "score": 1.0, + "content": "such that", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 143, + 499, + 219, + 513 + ], + "spans": [ + { + "bbox": [ + 143, + 501, + 214, + 513 + ], + "score": 0.89, + "content": "S _ { i } ( { \\bar { n } } ^ { * * } ) < S _ { i } ( { \\bar { n } } ^ { \\prime } )", + "type": "inline_equation" + }, + { + "bbox": [ + 215, + 499, + 219, + 513 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22, + "bbox_fs": [ + 141, + 477, + 506, + 513 + ] + }, + { + "type": "text", + "bbox": [ + 144, + 517, + 440, + 531 + ], + "lines": [ + { + "bbox": [ + 141, + 515, + 442, + 534 + ], + "spans": [ + { + "bbox": [ + 141, + 515, + 227, + 534 + ], + "score": 1.0, + "content": "We may assume that", + "type": "text" + }, + { + "bbox": [ + 227, + 517, + 316, + 531 + ], + "score": 0.93, + "content": "n ^ { \\prime ( 1 ) } = n _ { 1 } ^ { * * } = n _ { 1 } + d", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 515, + 442, + 534 + ], + "score": 1.0, + "content": ". Consider the following cases.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24, + "bbox_fs": [ + 141, + 515, + 442, + 534 + ] + }, + { + "type": "text", + "bbox": [ + 142, + 536, + 355, + 549 + ], + "lines": [ + { + "bbox": [ + 142, + 534, + 355, + 550 + ], + "spans": [ + { + "bbox": [ + 142, + 534, + 183, + 550 + ], + "score": 1.0, + "content": "Case I. If", + "type": "text" + }, + { + "bbox": [ + 183, + 536, + 227, + 547 + ], + "score": 0.92, + "content": "n ^ { * * ( i ) } < u", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 534, + 355, + 550 + ], + "score": 1.0, + "content": ", the contradiction follows from", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25, + "bbox_fs": [ + 142, + 534, + 355, + 550 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 151, + 554, + 496, + 606 + ], + "lines": [ + { + "bbox": [ + 151, + 554, + 496, + 606 + ], + "spans": [ + { + "bbox": [ + 151, + 554, + 496, + 606 + ], + "score": 0.94, + "content": "\\begin{array} { r } { S _ { i } ( \\bar { n } ^ { \\prime } ) = \\displaystyle \\sum _ { j = 2 } ^ { i } ( n ^ { \\prime ( 1 ) } - n ^ { \\prime ( j ) } ) = \\displaystyle \\sum _ { j = 2 } ^ { i } \\Big ( ( n ^ { \\prime ( 1 ) } - n ^ { ( 1 ) } ) + ( n ^ { ( 1 ) } - n ^ { ( j ) } ) + ( n ^ { ( j ) } - n ^ { \\prime ( j ) } ) \\Big ) } \\\\ { \\le ( i - 1 ) d + S _ { i } ( \\bar { n } ) + d = S _ { i } ( \\bar { n } ^ { * * } ) . } \\end{array}", + "type": "interline_equation", + "image_path": "20c6752be4a43e4789082067e1276bddffdc8903272c1a05f275d7d232fed5bf.jpg" + } + ] + } + ], + "index": 27, + "virtual_lines": [ + { + "bbox": [ + 151, + 554, + 496, + 571.3333333333334 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 151, + 571.3333333333334, + 496, + 588.6666666666667 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 151, + 588.6666666666667, + 496, + 606.0000000000001 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "text", + "bbox": [ + 142, + 607, + 504, + 630 + ], + "lines": [ + { + "bbox": [ + 141, + 606, + 506, + 621 + ], + "spans": [ + { + "bbox": [ + 141, + 606, + 398, + 621 + ], + "score": 1.0, + "content": "The last equality is due to the fact that all differences between", + "type": "text" + }, + { + "bbox": [ + 398, + 609, + 405, + 618 + ], + "score": 0.81, + "content": "\\bar { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 606, + 424, + 621 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 425, + 608, + 440, + 618 + ], + "score": 0.89, + "content": "\\bar { n } ^ { * * }", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 606, + 506, + 621 + ], + "score": 1.0, + "content": "are confined to", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 142, + 619, + 266, + 630 + ], + "spans": [ + { + "bbox": [ + 142, + 619, + 257, + 630 + ], + "score": 1.0, + "content": "the indices that are less than", + "type": "text" + }, + { + "bbox": [ + 257, + 619, + 262, + 628 + ], + "score": 0.75, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 619, + 266, + 630 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5, + "bbox_fs": [ + 141, + 606, + 506, + 630 + ] + }, + { + "type": "text", + "bbox": [ + 143, + 634, + 503, + 658 + ], + "lines": [ + { + "bbox": [ + 140, + 632, + 506, + 649 + ], + "spans": [ + { + "bbox": [ + 140, + 632, + 165, + 649 + ], + "score": 1.0, + "content": "Case", + "type": "text" + }, + { + "bbox": [ + 166, + 635, + 175, + 645 + ], + "score": 0.31, + "content": "\\mathbf { I I }", + "type": "inline_equation" + }, + { + "bbox": [ + 176, + 632, + 190, + 649 + ], + "score": 1.0, + "content": ". If", + "type": "text" + }, + { + "bbox": [ + 190, + 634, + 237, + 646 + ], + "score": 0.92, + "content": "n ^ { * * ( i ) } = u", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 632, + 257, + 649 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 257, + 634, + 298, + 646 + ], + "score": 0.92, + "content": "n ^ { \\prime { ( i ) } } \\geq u", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 632, + 395, + 649 + ], + "score": 1.0, + "content": ", the contradiction with", + "type": "text" + }, + { + "bbox": [ + 396, + 635, + 470, + 648 + ], + "score": 0.92, + "content": "S _ { i } ( \\bar { n } ^ { * * } ) < S _ { i } ( \\bar { n } ^ { \\prime } )", + "type": "inline_equation" + }, + { + "bbox": [ + 471, + 632, + 506, + 649 + ], + "score": 1.0, + "content": "follows", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 141, + 645, + 218, + 659 + ], + "spans": [ + { + "bbox": [ + 141, + 645, + 218, + 659 + ], + "score": 1.0, + "content": "immediately from", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5, + "bbox_fs": [ + 140, + 632, + 506, + 659 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 199, + 662, + 448, + 697 + ], + "lines": [ + { + "bbox": [ + 199, + 662, + 448, + 697 + ], + "spans": [ + { + "bbox": [ + 199, + 662, + 448, + 697 + ], + "score": 0.93, + "content": "S _ { i } ( \\bar { n } ^ { \\prime } ) = \\sum _ { j = 2 } ^ { i } ( n ^ { \\prime ( 1 ) } - n ^ { \\prime ( j ) } ) \\le ( i - 1 ) ( n ^ { \\prime ( 1 ) } - u ) = S _ { i } ( \\bar { n } ^ { * * } ) .", + "type": "interline_equation", + "image_path": "d3122cb1b2334f94cde4f121fa76017d00abcd3307d0b0cbd2dab06d6ad68235.jpg" + } + ] + } + ], + "index": 34, + "virtual_lines": [ + { + "bbox": [ + 199, + 662, + 448, + 673.6666666666666 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 199, + 673.6666666666666, + 448, + 685.3333333333333 + ], + "spans": [], + "index": 34 + }, + { + "bbox": [ + 199, + 685.3333333333333, + 448, + 696.9999999999999 + ], + "spans": [], + "index": 35 + } + ] + }, + { + "type": "text", + "bbox": [ + 142, + 707, + 504, + 733 + ], + "lines": [ + { + "bbox": [ + 140, + 704, + 507, + 722 + ], + "spans": [ + { + "bbox": [ + 140, + 704, + 314, + 722 + ], + "score": 1.0, + "content": "Case III. Finally, consider the case when", + "type": "text" + }, + { + "bbox": [ + 315, + 707, + 361, + 718 + ], + "score": 0.95, + "content": "n ^ { * * ( i ) } = u", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 704, + 380, + 722 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 380, + 707, + 442, + 719 + ], + "score": 0.91, + "content": "v \\ \\triangleq n ^ { \\prime ( i ) } < u", + "type": "inline_equation" + }, + { + "bbox": [ + 443, + 704, + 474, + 722 + ], + "score": 1.0, + "content": ". Since", + "type": "text" + }, + { + "bbox": [ + 474, + 709, + 479, + 718 + ], + "score": 0.79, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 479, + 704, + 507, + 722 + ], + "score": 1.0, + "content": "is the", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 140, + 717, + 503, + 734 + ], + "spans": [ + { + "bbox": [ + 140, + 717, + 211, + 734 + ], + "score": 1.0, + "content": "largest such that", + "type": "text" + }, + { + "bbox": [ + 212, + 720, + 285, + 732 + ], + "score": 0.93, + "content": "S _ { i } ( { \\bar { n } } ^ { * * } ) < S _ { i } ( { \\bar { n } } ^ { \\prime } )", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 717, + 345, + 734 + ], + "score": 1.0, + "content": ", it means that", + "type": "text" + }, + { + "bbox": [ + 345, + 719, + 503, + 731 + ], + "score": 0.9, + "content": "n ^ { * * ( i + 1 ) } < n ^ { \\prime ( i + 1 ) } \\leq v < u = n ^ { * * ( i ) }", + "type": "inline_equation" + } + ], + "index": 37 + } + ], + "index": 36.5, + "bbox_fs": [ + 140, + 704, + 507, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 140, + 81, + 504, + 106 + ], + "lines": [ + { + "bbox": [ + 140, + 79, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 140, + 79, + 178, + 96 + ], + "score": 1.0, + "content": "and thus", + "type": "text" + }, + { + "bbox": [ + 178, + 81, + 267, + 93 + ], + "score": 0.91, + "content": "n ^ { * * ( i ) } - n ^ { * * ( i + 1 ) } \\geq 2", + "type": "inline_equation" + }, + { + "bbox": [ + 267, + 79, + 505, + 96 + ], + "score": 1.0, + "content": "(we rely on the fact that the histograms are integer-valued).", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 140, + 91, + 505, + 107 + ], + "spans": [ + { + "bbox": [ + 140, + 91, + 294, + 107 + ], + "score": 1.0, + "content": "It implies that all differences between", + "type": "text" + }, + { + "bbox": [ + 295, + 95, + 302, + 104 + ], + "score": 0.82, + "content": "\\bar { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 303, + 91, + 320, + 107 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 320, + 94, + 336, + 104 + ], + "score": 0.89, + "content": "\\bar { n } ^ { * * }", + "type": "inline_equation" + }, + { + "bbox": [ + 336, + 91, + 455, + 107 + ], + "score": 1.0, + "content": "are confined to the indices in", + "type": "text" + }, + { + "bbox": [ + 455, + 94, + 474, + 106 + ], + "score": 0.91, + "content": "[ 1 , i ]", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 91, + 505, + 107 + ], + "score": 1.0, + "content": ". Then,", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "interline_equation", + "bbox": [ + 186, + 119, + 403, + 221 + ], + "lines": [ + { + "bbox": [ + 186, + 119, + 403, + 221 + ], + "spans": [ + { + "bbox": [ + 186, + 119, + 403, + 221 + ], + "score": 0.95, + "content": "\\begin{array} { l } { { S _ { i } ( \\bar { n } ^ { * * } ) - S _ { i } ( \\bar { n } ^ { \\prime } ) \\geq \\displaystyle \\sum _ { j = 2 } ^ { i } ( n _ { 1 } ^ { * * } - n _ { j } ^ { * * } ) - \\displaystyle \\sum _ { j = 2 } ^ { i } ( n _ { 1 } ^ { \\prime } - n _ { j } ^ { \\prime } ) } } \\\\ { { \\mathrm { ~ } = \\displaystyle \\sum _ { j = 2 } ^ { i } ( ( n _ { j } - n _ { j } ^ { * * } ) + ( n _ { j } ^ { \\prime } - n _ { j } ) ) } } \\\\ { { \\mathrm { ~ } \\geq d - d ( \\bar { n } , \\bar { n } ^ { \\prime } ) } } \\\\ { { \\mathrm { ~ } \\geq 0 , } } \\end{array}", + "type": "interline_equation", + "image_path": "51cece594c08cf45d10bc705e505966c2fa15114aef86cf417ee48aa95118457.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 186, + 119, + 403, + 133.57142857142858 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 186, + 133.57142857142858, + 403, + 148.14285714285717 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 186, + 148.14285714285717, + 403, + 162.71428571428575 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 186, + 162.71428571428575, + 403, + 177.28571428571433 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 186, + 177.28571428571433, + 403, + 191.85714285714292 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 186, + 191.85714285714292, + 403, + 206.4285714285715 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 186, + 206.4285714285715, + 403, + 221.00000000000009 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "text", + "bbox": [ + 142, + 231, + 371, + 244 + ], + "lines": [ + { + "bbox": [ + 142, + 231, + 371, + 245 + ], + "spans": [ + { + "bbox": [ + 142, + 231, + 295, + 245 + ], + "score": 1.0, + "content": "which contradicts the assumption that", + "type": "text" + }, + { + "bbox": [ + 296, + 232, + 367, + 244 + ], + "score": 0.92, + "content": "S _ { i } ( { \\bar { n } } ^ { * * } ) < S _ { i } ( { \\bar { n } } ^ { \\prime } )", + "type": "inline_equation" + }, + { + "bbox": [ + 368, + 231, + 371, + 245 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 107, + 327, + 345, + 339 + ], + "lines": [ + { + "bbox": [ + 107, + 327, + 345, + 340 + ], + "spans": [ + { + "bbox": [ + 107, + 327, + 345, + 340 + ], + "score": 1.0, + "content": "We may now state and prove the main result of this section.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 106, + 345, + 505, + 369 + ], + "lines": [ + { + "bbox": [ + 106, + 345, + 504, + 359 + ], + "spans": [ + { + "bbox": [ + 106, + 345, + 218, + 359 + ], + "score": 1.0, + "content": "Theorem 20. Assume that", + "type": "text" + }, + { + "bbox": [ + 219, + 346, + 235, + 358 + ], + "score": 0.89, + "content": "q ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 345, + 317, + 359 + ], + "score": 1.0, + "content": "satisfies conditions", + "type": "text" + }, + { + "bbox": [ + 317, + 347, + 347, + 357 + ], + "score": 0.49, + "content": "C l { - } C 8", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 345, + 366, + 359 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 367, + 348, + 374, + 356 + ], + "score": 0.52, + "content": "\\bar { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 375, + 345, + 504, + 359 + ], + "score": 1.0, + "content": "is an integer-valued histogram.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 357, + 266, + 370 + ], + "spans": [ + { + "bbox": [ + 106, + 357, + 266, + 370 + ], + "score": 1.0, + "content": "Then the following two claims are true:", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5 + }, + { + "type": "text", + "bbox": [ + 130, + 382, + 342, + 397 + ], + "lines": [ + { + "bbox": [ + 128, + 381, + 341, + 398 + ], + "spans": [ + { + "bbox": [ + 128, + 381, + 232, + 398 + ], + "score": 1.0, + "content": "1. Algorithm 4 computes", + "type": "text" + }, + { + "bbox": [ + 232, + 381, + 341, + 397 + ], + "score": 0.64, + "content": "\\begin{array} { r } { \\operatorname* { m a x } _ { \\bar { n } ^ { \\prime } : \\mathrm { d i s t } ( \\bar { n } , \\bar { n } ^ { \\prime } ) \\leq d } \\tilde { \\mathrm { L S } } ( \\bar { n } ^ { \\prime } ) . } \\end{array}", + "type": "inline_equation" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 130, + 416, + 505, + 441 + ], + "lines": [ + { + "bbox": [ + 128, + 415, + 505, + 430 + ], + "spans": [ + { + "bbox": [ + 128, + 415, + 236, + 430 + ], + "score": 1.0, + "content": "2. Algorithm 5 computes", + "type": "text" + }, + { + "bbox": [ + 236, + 417, + 267, + 430 + ], + "score": 0.91, + "content": "\\mathrm { S S } _ { \\beta } ( \\bar { n } )", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 415, + 319, + 430 + ], + "score": 1.0, + "content": ", which is a", + "type": "text" + }, + { + "bbox": [ + 319, + 418, + 327, + 429 + ], + "score": 0.84, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 415, + 505, + 430 + ], + "score": 1.0, + "content": "-smooth upper bound on smooth sensitivity", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 427, + 189, + 442 + ], + "spans": [ + { + "bbox": [ + 141, + 427, + 152, + 442 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 153, + 428, + 185, + 441 + ], + "score": 0.92, + "content": "\\beta \\left( q ( \\cdot ) \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 427, + 189, + 442 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5 + }, + { + "type": "text", + "bbox": [ + 107, + 478, + 505, + 525 + ], + "lines": [ + { + "bbox": [ + 106, + 477, + 506, + 492 + ], + "spans": [ + { + "bbox": [ + 106, + 478, + 224, + 492 + ], + "score": 1.0, + "content": "Proof. Claim 1. Recall that", + "type": "text" + }, + { + "bbox": [ + 224, + 479, + 279, + 491 + ], + "score": 0.92, + "content": "q _ { 1 } = \\mathrm { B _ { L } } ( q _ { 0 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 478, + 468, + 492 + ], + "score": 1.0, + "content": ", and therefore, by Proposition 14 the function", + "type": "text" + }, + { + "bbox": [ + 468, + 477, + 494, + 491 + ], + "score": 0.89, + "content": "\\tilde { \\mathrm { L S } } ( q )", + "type": "inline_equation" + }, + { + "bbox": [ + 494, + 478, + 506, + 492 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 490, + 506, + 503 + ], + "spans": [ + { + "bbox": [ + 105, + 490, + 181, + 503 + ], + "score": 1.0, + "content": "non-decreasing in", + "type": "text" + }, + { + "bbox": [ + 181, + 490, + 206, + 502 + ], + "score": 0.9, + "content": "[ 0 , q _ { 1 } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 206, + 490, + 257, + 503 + ], + "score": 1.0, + "content": ", constant in", + "type": "text" + }, + { + "bbox": [ + 258, + 491, + 286, + 502 + ], + "score": 0.92, + "content": "[ q _ { 1 } , q _ { 0 } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 490, + 381, + 503 + ], + "score": 1.0, + "content": ", and non-increasing in", + "type": "text" + }, + { + "bbox": [ + 381, + 490, + 406, + 502 + ], + "score": 0.92, + "content": "[ q _ { 0 } , 1 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 490, + 506, + 503 + ], + "score": 1.0, + "content": ". It means, in particular,", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 502, + 505, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 502, + 180, + 516 + ], + "score": 1.0, + "content": "that to maximize", + "type": "text" + }, + { + "bbox": [ + 180, + 502, + 222, + 515 + ], + "score": 0.89, + "content": "\\tilde { \\mathrm { L S } } ( q ( \\bar { n } ^ { \\prime } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 502, + 335, + 516 + ], + "score": 1.0, + "content": "over histograms satisfying", + "type": "text" + }, + { + "bbox": [ + 336, + 503, + 393, + 515 + ], + "score": 0.93, + "content": "d ( \\bar { n } , \\bar { n } ^ { \\prime } ) = d", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 502, + 505, + 516 + ], + "score": 1.0, + "content": ", it suffices to consider the", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 513, + 174, + 527 + ], + "spans": [ + { + "bbox": [ + 105, + 513, + 174, + 527 + ], + "score": 1.0, + "content": "following cases.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 17.5 + }, + { + "type": "text", + "bbox": [ + 106, + 531, + 506, + 566 + ], + "lines": [ + { + "bbox": [ + 105, + 530, + 506, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 531, + 115, + 545 + ], + "score": 1.0, + "content": "If", + "type": "text" + }, + { + "bbox": [ + 116, + 530, + 176, + 544 + ], + "score": 0.9, + "content": "\\tilde { \\mathrm { L S } } ( q ( \\bar { n } ) ) < q _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 177, + 531, + 264, + 545 + ], + "score": 1.0, + "content": ", then higher values of", + "type": "text" + }, + { + "bbox": [ + 264, + 531, + 288, + 544 + ], + "score": 0.71, + "content": "\\mathrm { \\tilde { L S } ( \\cdot ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 531, + 506, + 545 + ], + "score": 1.0, + "content": "may be attained only by histograms with higher values", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 543, + 505, + 555 + ], + "spans": [ + { + "bbox": [ + 106, + 543, + 117, + 555 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 118, + 545, + 123, + 555 + ], + "score": 0.8, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 124, + 543, + 352, + 555 + ], + "score": 1.0, + "content": ". Proposition 19 enables us to efficiently find a histogram", + "type": "text" + }, + { + "bbox": [ + 353, + 543, + 364, + 553 + ], + "score": 0.86, + "content": "\\bar { n } ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 365, + 543, + 432, + 555 + ], + "score": 1.0, + "content": "with the highest", + "type": "text" + }, + { + "bbox": [ + 432, + 545, + 438, + 555 + ], + "score": 0.8, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 439, + 543, + 484, + 555 + ], + "score": 1.0, + "content": "at distance", + "type": "text" + }, + { + "bbox": [ + 484, + 543, + 491, + 553 + ], + "score": 0.78, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 491, + 543, + 505, + 555 + ], + "score": 1.0, + "content": ", or", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 554, + 483, + 567 + ], + "spans": [ + { + "bbox": [ + 106, + 554, + 483, + 567 + ], + "score": 1.0, + "content": "conclude that we may reach the plateau by making the two highest histogram entries be equal.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 108, + 571, + 419, + 585 + ], + "lines": [ + { + "bbox": [ + 116, + 569, + 419, + 587 + ], + "spans": [ + { + "bbox": [ + 116, + 570, + 199, + 585 + ], + "score": 0.92, + "content": "q _ { 1 } \\leq \\tilde { \\mathrm { L S } } ( q ( \\bar { n } ) ) \\leq q _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 569, + 256, + 587 + ], + "score": 1.0, + "content": ", it means that", + "type": "text" + }, + { + "bbox": [ + 257, + 570, + 295, + 585 + ], + "score": 0.89, + "content": "\\tilde { \\mathrm { L S } } ( q ( n ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 296, + 569, + 419, + 587 + ], + "score": 1.0, + "content": "is already as high as it can be.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 107, + 590, + 506, + 625 + ], + "lines": [ + { + "bbox": [ + 105, + 589, + 505, + 604 + ], + "spans": [ + { + "bbox": [ + 105, + 590, + 115, + 604 + ], + "score": 1.0, + "content": "If", + "type": "text" + }, + { + "bbox": [ + 116, + 589, + 177, + 603 + ], + "score": 0.92, + "content": "q _ { 0 } < \\tilde { \\mathrm { L S } } ( q ( \\bar { n } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 177, + 590, + 384, + 604 + ], + "score": 1.0, + "content": ", then, according to Proposition 14, higher values of", + "type": "text" + }, + { + "bbox": [ + 385, + 589, + 408, + 603 + ], + "score": 0.84, + "content": "\\mathrm { \\tilde { L S } ( \\cdot ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 408, + 590, + 505, + 604 + ], + "score": 1.0, + "content": "can be achieved by his-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 602, + 505, + 614 + ], + "spans": [ + { + "bbox": [ + 105, + 602, + 231, + 614 + ], + "score": 1.0, + "content": "tograms with smaller values of", + "type": "text" + }, + { + "bbox": [ + 231, + 604, + 237, + 613 + ], + "score": 0.79, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 602, + 505, + 614 + ], + "score": 1.0, + "content": ", which we explore using the procedure outlined by Proposition 19.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 612, + 498, + 627 + ], + "spans": [ + { + "bbox": [ + 105, + 612, + 388, + 627 + ], + "score": 1.0, + "content": "The stopping condition—when the plateau is reached—happens when", + "type": "text" + }, + { + "bbox": [ + 388, + 615, + 394, + 624 + ], + "score": 0.73, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 395, + 612, + 484, + 627 + ], + "score": 1.0, + "content": "becomes smaller than", + "type": "text" + }, + { + "bbox": [ + 484, + 615, + 494, + 624 + ], + "score": 0.82, + "content": "q _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 612, + 498, + 627 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 104, + 629, + 478, + 641 + ], + "lines": [ + { + "bbox": [ + 105, + 629, + 478, + 642 + ], + "spans": [ + { + "bbox": [ + 105, + 629, + 478, + 642 + ], + "score": 1.0, + "content": "Claim 2. The second claim follows from the specification of Algorithm 5 and the first claim.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "title", + "bbox": [ + 106, + 662, + 307, + 675 + ], + "lines": [ + { + "bbox": [ + 106, + 663, + 307, + 676 + ], + "spans": [ + { + "bbox": [ + 106, + 663, + 307, + 676 + ], + "score": 1.0, + "content": "B.4 GNMAX SATISFIES CONDITIONS C1–C8", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 106, + 687, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 687, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 687, + 506, + 700 + ], + "score": 1.0, + "content": "The previous sections laid down a framework for computing smooth sensitivity of a randomized", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 278, + 712 + ], + "score": 1.0, + "content": "aggregator mechanism: defining functions", + "type": "text" + }, + { + "bbox": [ + 279, + 699, + 351, + 711 + ], + "score": 0.3, + "content": "q ( \\cdot ) , \\mathrm { B _ { U } ( \\cdot ) , B _ { L } ( \\cdot ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 698, + 506, + 712 + ], + "score": 1.0, + "content": ", verifying that they satisfy conditions", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "C1–C8, and applying Theorem 20, which asserts correctness of Algorithm 5. In this section we", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 721, + 326, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 326, + 732 + ], + "score": 1.0, + "content": "instantiate this framework for the GNMax mechanism.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 30.5 + } + ], + "page_idx": 28, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 26, + 293, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 39 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 39 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 298, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 298, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 15 + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 496, + 277, + 506, + 290 + ], + "lines": [ + { + "bbox": [ + 498, + 279, + 505, + 290 + ], + "spans": [ + { + "bbox": [ + 498, + 279, + 505, + 290 + ], + "score": 0.0, + "content": "", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 497, + 630, + 505, + 641 + ], + "lines": [ + { + "bbox": [ + 497, + 630, + 506, + 643 + ], + "spans": [ + { + "bbox": [ + 497, + 630, + 506, + 643 + ], + "score": 0.746, + "content": "■", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 140, + 81, + 504, + 106 + ], + "lines": [ + { + "bbox": [ + 140, + 79, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 140, + 79, + 178, + 96 + ], + "score": 1.0, + "content": "and thus", + "type": "text" + }, + { + "bbox": [ + 178, + 81, + 267, + 93 + ], + "score": 0.91, + "content": "n ^ { * * ( i ) } - n ^ { * * ( i + 1 ) } \\geq 2", + "type": "inline_equation" + }, + { + "bbox": [ + 267, + 79, + 505, + 96 + ], + "score": 1.0, + "content": "(we rely on the fact that the histograms are integer-valued).", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 140, + 91, + 505, + 107 + ], + "spans": [ + { + "bbox": [ + 140, + 91, + 294, + 107 + ], + "score": 1.0, + "content": "It implies that all differences between", + "type": "text" + }, + { + "bbox": [ + 295, + 95, + 302, + 104 + ], + "score": 0.82, + "content": "\\bar { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 303, + 91, + 320, + 107 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 320, + 94, + 336, + 104 + ], + "score": 0.89, + "content": "\\bar { n } ^ { * * }", + "type": "inline_equation" + }, + { + "bbox": [ + 336, + 91, + 455, + 107 + ], + "score": 1.0, + "content": "are confined to the indices in", + "type": "text" + }, + { + "bbox": [ + 455, + 94, + 474, + 106 + ], + "score": 0.91, + "content": "[ 1 , i ]", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 91, + 505, + 107 + ], + "score": 1.0, + "content": ". Then,", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 140, + 79, + 505, + 107 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 186, + 119, + 403, + 221 + ], + "lines": [ + { + "bbox": [ + 186, + 119, + 403, + 221 + ], + "spans": [ + { + "bbox": [ + 186, + 119, + 403, + 221 + ], + "score": 0.95, + "content": "\\begin{array} { l } { { S _ { i } ( \\bar { n } ^ { * * } ) - S _ { i } ( \\bar { n } ^ { \\prime } ) \\geq \\displaystyle \\sum _ { j = 2 } ^ { i } ( n _ { 1 } ^ { * * } - n _ { j } ^ { * * } ) - \\displaystyle \\sum _ { j = 2 } ^ { i } ( n _ { 1 } ^ { \\prime } - n _ { j } ^ { \\prime } ) } } \\\\ { { \\mathrm { ~ } = \\displaystyle \\sum _ { j = 2 } ^ { i } ( ( n _ { j } - n _ { j } ^ { * * } ) + ( n _ { j } ^ { \\prime } - n _ { j } ) ) } } \\\\ { { \\mathrm { ~ } \\geq d - d ( \\bar { n } , \\bar { n } ^ { \\prime } ) } } \\\\ { { \\mathrm { ~ } \\geq 0 , } } \\end{array}", + "type": "interline_equation", + "image_path": "51cece594c08cf45d10bc705e505966c2fa15114aef86cf417ee48aa95118457.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 186, + 119, + 403, + 133.57142857142858 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 186, + 133.57142857142858, + 403, + 148.14285714285717 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 186, + 148.14285714285717, + 403, + 162.71428571428575 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 186, + 162.71428571428575, + 403, + 177.28571428571433 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 186, + 177.28571428571433, + 403, + 191.85714285714292 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 186, + 191.85714285714292, + 403, + 206.4285714285715 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 186, + 206.4285714285715, + 403, + 221.00000000000009 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "text", + "bbox": [ + 142, + 231, + 371, + 244 + ], + "lines": [ + { + "bbox": [ + 142, + 231, + 371, + 245 + ], + "spans": [ + { + "bbox": [ + 142, + 231, + 295, + 245 + ], + "score": 1.0, + "content": "which contradicts the assumption that", + "type": "text" + }, + { + "bbox": [ + 296, + 232, + 367, + 244 + ], + "score": 0.92, + "content": "S _ { i } ( { \\bar { n } } ^ { * * } ) < S _ { i } ( { \\bar { n } } ^ { \\prime } )", + "type": "inline_equation" + }, + { + "bbox": [ + 368, + 231, + 371, + 245 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9, + "bbox_fs": [ + 142, + 231, + 371, + 245 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 327, + 345, + 339 + ], + "lines": [ + { + "bbox": [ + 107, + 327, + 345, + 340 + ], + "spans": [ + { + "bbox": [ + 107, + 327, + 345, + 340 + ], + "score": 1.0, + "content": "We may now state and prove the main result of this section.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10, + "bbox_fs": [ + 107, + 327, + 345, + 340 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 345, + 505, + 369 + ], + "lines": [ + { + "bbox": [ + 106, + 345, + 504, + 359 + ], + "spans": [ + { + "bbox": [ + 106, + 345, + 218, + 359 + ], + "score": 1.0, + "content": "Theorem 20. Assume that", + "type": "text" + }, + { + "bbox": [ + 219, + 346, + 235, + 358 + ], + "score": 0.89, + "content": "q ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 345, + 317, + 359 + ], + "score": 1.0, + "content": "satisfies conditions", + "type": "text" + }, + { + "bbox": [ + 317, + 347, + 347, + 357 + ], + "score": 0.49, + "content": "C l { - } C 8", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 345, + 366, + 359 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 367, + 348, + 374, + 356 + ], + "score": 0.52, + "content": "\\bar { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 375, + 345, + 504, + 359 + ], + "score": 1.0, + "content": "is an integer-valued histogram.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 357, + 266, + 370 + ], + "spans": [ + { + "bbox": [ + 106, + 357, + 266, + 370 + ], + "score": 1.0, + "content": "Then the following two claims are true:", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5, + "bbox_fs": [ + 106, + 345, + 504, + 370 + ] + }, + { + "type": "text", + "bbox": [ + 130, + 382, + 342, + 397 + ], + "lines": [ + { + "bbox": [ + 128, + 381, + 341, + 398 + ], + "spans": [ + { + "bbox": [ + 128, + 381, + 232, + 398 + ], + "score": 1.0, + "content": "1. Algorithm 4 computes", + "type": "text" + }, + { + "bbox": [ + 232, + 381, + 341, + 397 + ], + "score": 0.64, + "content": "\\begin{array} { r } { \\operatorname* { m a x } _ { \\bar { n } ^ { \\prime } : \\mathrm { d i s t } ( \\bar { n } , \\bar { n } ^ { \\prime } ) \\leq d } \\tilde { \\mathrm { L S } } ( \\bar { n } ^ { \\prime } ) . } \\end{array}", + "type": "inline_equation" + } + ], + "index": 13 + } + ], + "index": 13, + "bbox_fs": [ + 128, + 381, + 341, + 398 + ] + }, + { + "type": "text", + "bbox": [ + 130, + 416, + 505, + 441 + ], + "lines": [ + { + "bbox": [ + 128, + 415, + 505, + 430 + ], + "spans": [ + { + "bbox": [ + 128, + 415, + 236, + 430 + ], + "score": 1.0, + "content": "2. Algorithm 5 computes", + "type": "text" + }, + { + "bbox": [ + 236, + 417, + 267, + 430 + ], + "score": 0.91, + "content": "\\mathrm { S S } _ { \\beta } ( \\bar { n } )", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 415, + 319, + 430 + ], + "score": 1.0, + "content": ", which is a", + "type": "text" + }, + { + "bbox": [ + 319, + 418, + 327, + 429 + ], + "score": 0.84, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 415, + 505, + 430 + ], + "score": 1.0, + "content": "-smooth upper bound on smooth sensitivity", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 427, + 189, + 442 + ], + "spans": [ + { + "bbox": [ + 141, + 427, + 152, + 442 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 153, + 428, + 185, + 441 + ], + "score": 0.92, + "content": "\\beta \\left( q ( \\cdot ) \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 427, + 189, + 442 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5, + "bbox_fs": [ + 128, + 415, + 505, + 442 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 478, + 505, + 525 + ], + "lines": [ + { + "bbox": [ + 106, + 477, + 506, + 492 + ], + "spans": [ + { + "bbox": [ + 106, + 478, + 224, + 492 + ], + "score": 1.0, + "content": "Proof. Claim 1. Recall that", + "type": "text" + }, + { + "bbox": [ + 224, + 479, + 279, + 491 + ], + "score": 0.92, + "content": "q _ { 1 } = \\mathrm { B _ { L } } ( q _ { 0 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 478, + 468, + 492 + ], + "score": 1.0, + "content": ", and therefore, by Proposition 14 the function", + "type": "text" + }, + { + "bbox": [ + 468, + 477, + 494, + 491 + ], + "score": 0.89, + "content": "\\tilde { \\mathrm { L S } } ( q )", + "type": "inline_equation" + }, + { + "bbox": [ + 494, + 478, + 506, + 492 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 490, + 506, + 503 + ], + "spans": [ + { + "bbox": [ + 105, + 490, + 181, + 503 + ], + "score": 1.0, + "content": "non-decreasing in", + "type": "text" + }, + { + "bbox": [ + 181, + 490, + 206, + 502 + ], + "score": 0.9, + "content": "[ 0 , q _ { 1 } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 206, + 490, + 257, + 503 + ], + "score": 1.0, + "content": ", constant in", + "type": "text" + }, + { + "bbox": [ + 258, + 491, + 286, + 502 + ], + "score": 0.92, + "content": "[ q _ { 1 } , q _ { 0 } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 490, + 381, + 503 + ], + "score": 1.0, + "content": ", and non-increasing in", + "type": "text" + }, + { + "bbox": [ + 381, + 490, + 406, + 502 + ], + "score": 0.92, + "content": "[ q _ { 0 } , 1 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 490, + 506, + 503 + ], + "score": 1.0, + "content": ". It means, in particular,", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 502, + 505, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 502, + 180, + 516 + ], + "score": 1.0, + "content": "that to maximize", + "type": "text" + }, + { + "bbox": [ + 180, + 502, + 222, + 515 + ], + "score": 0.89, + "content": "\\tilde { \\mathrm { L S } } ( q ( \\bar { n } ^ { \\prime } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 502, + 335, + 516 + ], + "score": 1.0, + "content": "over histograms satisfying", + "type": "text" + }, + { + "bbox": [ + 336, + 503, + 393, + 515 + ], + "score": 0.93, + "content": "d ( \\bar { n } , \\bar { n } ^ { \\prime } ) = d", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 502, + 505, + 516 + ], + "score": 1.0, + "content": ", it suffices to consider the", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 513, + 174, + 527 + ], + "spans": [ + { + "bbox": [ + 105, + 513, + 174, + 527 + ], + "score": 1.0, + "content": "following cases.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 17.5, + "bbox_fs": [ + 105, + 477, + 506, + 527 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 531, + 506, + 566 + ], + "lines": [ + { + "bbox": [ + 105, + 530, + 506, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 531, + 115, + 545 + ], + "score": 1.0, + "content": "If", + "type": "text" + }, + { + "bbox": [ + 116, + 530, + 176, + 544 + ], + "score": 0.9, + "content": "\\tilde { \\mathrm { L S } } ( q ( \\bar { n } ) ) < q _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 177, + 531, + 264, + 545 + ], + "score": 1.0, + "content": ", then higher values of", + "type": "text" + }, + { + "bbox": [ + 264, + 531, + 288, + 544 + ], + "score": 0.71, + "content": "\\mathrm { \\tilde { L S } ( \\cdot ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 531, + 506, + 545 + ], + "score": 1.0, + "content": "may be attained only by histograms with higher values", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 543, + 505, + 555 + ], + "spans": [ + { + "bbox": [ + 106, + 543, + 117, + 555 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 118, + 545, + 123, + 555 + ], + "score": 0.8, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 124, + 543, + 352, + 555 + ], + "score": 1.0, + "content": ". Proposition 19 enables us to efficiently find a histogram", + "type": "text" + }, + { + "bbox": [ + 353, + 543, + 364, + 553 + ], + "score": 0.86, + "content": "\\bar { n } ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 365, + 543, + 432, + 555 + ], + "score": 1.0, + "content": "with the highest", + "type": "text" + }, + { + "bbox": [ + 432, + 545, + 438, + 555 + ], + "score": 0.8, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 439, + 543, + 484, + 555 + ], + "score": 1.0, + "content": "at distance", + "type": "text" + }, + { + "bbox": [ + 484, + 543, + 491, + 553 + ], + "score": 0.78, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 491, + 543, + 505, + 555 + ], + "score": 1.0, + "content": ", or", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 554, + 483, + 567 + ], + "spans": [ + { + "bbox": [ + 106, + 554, + 483, + 567 + ], + "score": 1.0, + "content": "conclude that we may reach the plateau by making the two highest histogram entries be equal.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21, + "bbox_fs": [ + 105, + 530, + 506, + 567 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 571, + 419, + 585 + ], + "lines": [ + { + "bbox": [ + 116, + 569, + 419, + 587 + ], + "spans": [ + { + "bbox": [ + 116, + 570, + 199, + 585 + ], + "score": 0.92, + "content": "q _ { 1 } \\leq \\tilde { \\mathrm { L S } } ( q ( \\bar { n } ) ) \\leq q _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 569, + 256, + 587 + ], + "score": 1.0, + "content": ", it means that", + "type": "text" + }, + { + "bbox": [ + 257, + 570, + 295, + 585 + ], + "score": 0.89, + "content": "\\tilde { \\mathrm { L S } } ( q ( n ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 296, + 569, + 419, + 587 + ], + "score": 1.0, + "content": "is already as high as it can be.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23, + "bbox_fs": [ + 116, + 569, + 419, + 587 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 590, + 506, + 625 + ], + "lines": [ + { + "bbox": [ + 105, + 589, + 505, + 604 + ], + "spans": [ + { + "bbox": [ + 105, + 590, + 115, + 604 + ], + "score": 1.0, + "content": "If", + "type": "text" + }, + { + "bbox": [ + 116, + 589, + 177, + 603 + ], + "score": 0.92, + "content": "q _ { 0 } < \\tilde { \\mathrm { L S } } ( q ( \\bar { n } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 177, + 590, + 384, + 604 + ], + "score": 1.0, + "content": ", then, according to Proposition 14, higher values of", + "type": "text" + }, + { + "bbox": [ + 385, + 589, + 408, + 603 + ], + "score": 0.84, + "content": "\\mathrm { \\tilde { L S } ( \\cdot ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 408, + 590, + 505, + 604 + ], + "score": 1.0, + "content": "can be achieved by his-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 602, + 505, + 614 + ], + "spans": [ + { + "bbox": [ + 105, + 602, + 231, + 614 + ], + "score": 1.0, + "content": "tograms with smaller values of", + "type": "text" + }, + { + "bbox": [ + 231, + 604, + 237, + 613 + ], + "score": 0.79, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 602, + 505, + 614 + ], + "score": 1.0, + "content": ", which we explore using the procedure outlined by Proposition 19.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 612, + 498, + 627 + ], + "spans": [ + { + "bbox": [ + 105, + 612, + 388, + 627 + ], + "score": 1.0, + "content": "The stopping condition—when the plateau is reached—happens when", + "type": "text" + }, + { + "bbox": [ + 388, + 615, + 394, + 624 + ], + "score": 0.73, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 395, + 612, + 484, + 627 + ], + "score": 1.0, + "content": "becomes smaller than", + "type": "text" + }, + { + "bbox": [ + 484, + 615, + 494, + 624 + ], + "score": 0.82, + "content": "q _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 612, + 498, + 627 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25, + "bbox_fs": [ + 105, + 589, + 505, + 627 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 629, + 478, + 641 + ], + "lines": [ + { + "bbox": [ + 105, + 629, + 478, + 642 + ], + "spans": [ + { + "bbox": [ + 105, + 629, + 478, + 642 + ], + "score": 1.0, + "content": "Claim 2. The second claim follows from the specification of Algorithm 5 and the first claim.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27, + "bbox_fs": [ + 105, + 629, + 478, + 642 + ] + }, + { + "type": "title", + "bbox": [ + 106, + 662, + 307, + 675 + ], + "lines": [ + { + "bbox": [ + 106, + 663, + 307, + 676 + ], + "spans": [ + { + "bbox": [ + 106, + 663, + 307, + 676 + ], + "score": 1.0, + "content": "B.4 GNMAX SATISFIES CONDITIONS C1–C8", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 106, + 687, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 687, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 687, + 506, + 700 + ], + "score": 1.0, + "content": "The previous sections laid down a framework for computing smooth sensitivity of a randomized", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 278, + 712 + ], + "score": 1.0, + "content": "aggregator mechanism: defining functions", + "type": "text" + }, + { + "bbox": [ + 279, + 699, + 351, + 711 + ], + "score": 0.3, + "content": "q ( \\cdot ) , \\mathrm { B _ { U } ( \\cdot ) , B _ { L } ( \\cdot ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 698, + 506, + 712 + ], + "score": 1.0, + "content": ", verifying that they satisfy conditions", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "C1–C8, and applying Theorem 20, which asserts correctness of Algorithm 5. In this section we", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 721, + 326, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 326, + 732 + ], + "score": 1.0, + "content": "instantiate this framework for the GNMax mechanism.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 30.5, + "bbox_fs": [ + 105, + 687, + 506, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 82, + 285, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 285, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 285, + 95 + ], + "score": 1.0, + "content": "B.4.1 CONDITIONS C1–C4, C7 AND C8", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 105, + 100, + 505, + 124 + ], + "lines": [ + { + "bbox": [ + 102, + 96, + 504, + 120 + ], + "spans": [ + { + "bbox": [ + 102, + 96, + 145, + 120 + ], + "score": 1.0, + "content": "Defining", + "type": "text" + }, + { + "bbox": [ + 145, + 104, + 152, + 113 + ], + "score": 0.71, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 152, + 96, + 439, + 120 + ], + "score": 1.0, + "content": "and conditions C1, C7, and C8. Following Proposition 7, we define", + "type": "text" + }, + { + "bbox": [ + 439, + 101, + 504, + 115 + ], + "score": 0.92, + "content": "q \\colon \\mathbb { R } _ { \\geq 0 } ^ { m } [ 0 , 1 ]", + "type": "inline_equation" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 112, + 311, + 125 + ], + "spans": [ + { + "bbox": [ + 106, + 112, + 289, + 125 + ], + "score": 1.0, + "content": "for a GNMax mechanism parameterized with", + "type": "text" + }, + { + "bbox": [ + 290, + 115, + 297, + 123 + ], + "score": 0.77, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 112, + 311, + 125 + ], + "score": 1.0, + "content": "as:", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1.5 + }, + { + "type": "interline_equation", + "bbox": [ + 201, + 128, + 408, + 249 + ], + "lines": [ + { + "bbox": [ + 201, + 128, + 408, + 249 + ], + "spans": [ + { + "bbox": [ + 201, + 128, + 408, + 249 + ], + "score": 0.95, + "content": "\\begin{array} { r l } & { q ( \\bar { n } ) \\triangleq \\operatorname* { m i n } \\left\\{ \\underset { i \\neq i ^ { * } } { \\sum } \\mathbf { P r } ( Z _ { i } - Z _ { i ^ { * } } \\geq n _ { i ^ { * } } - n _ { i } ) , 1 \\right\\} } \\\\ & { \\quad = \\operatorname* { m i n } \\left\\{ \\underset { i \\neq i ^ { * } } { \\sum } \\frac { 1 } { 2 } \\left( 1 - \\mathrm { e r f } \\left( \\frac { n _ { i ^ { * } } - n _ { i } } { 2 \\sigma } \\right) \\right) , 1 \\right\\} } \\\\ & { \\quad = \\operatorname* { m i n } \\left\\{ \\underset { i \\neq i ^ { * } } { \\sum } \\frac { 1 } { 2 } \\mathrm { e r f c } \\left( \\frac { n _ { i ^ { * } } - n _ { i } } { 2 \\sigma } \\right) , 1 \\right\\} , } \\end{array}", + "type": "interline_equation", + "image_path": "b555ced3f1c79d37e679ec7a63759430adc04569f17e6b1a46ee55adbca4dbc6.jpg" + } + ] + } + ], + "index": 6.5, + "virtual_lines": [ + { + "bbox": [ + 201, + 128, + 408, + 143.125 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 201, + 143.125, + 408, + 158.25 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 201, + 158.25, + 408, + 173.375 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 201, + 173.375, + 408, + 188.5 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 201, + 188.5, + 408, + 203.625 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 201, + 203.625, + 408, + 218.75 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 201, + 218.75, + 408, + 233.875 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 201, + 233.875, + 408, + 249.0 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 251, + 505, + 274 + ], + "lines": [ + { + "bbox": [ + 106, + 251, + 505, + 264 + ], + "spans": [ + { + "bbox": [ + 106, + 251, + 133, + 264 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 252, + 142, + 261 + ], + "score": 0.86, + "content": "i ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 142, + 251, + 208, + 264 + ], + "score": 1.0, + "content": "is the histogram", + "type": "text" + }, + { + "bbox": [ + 208, + 253, + 216, + 261 + ], + "score": 0.81, + "content": "\\bar { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 251, + 318, + 264 + ], + "score": 1.0, + "content": "’s highest coordinate, i.e.,", + "type": "text" + }, + { + "bbox": [ + 318, + 252, + 355, + 263 + ], + "score": 0.92, + "content": "n _ { i ^ { * } } \\geq n _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 356, + 251, + 382, + 264 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 382, + 252, + 387, + 261 + ], + "score": 0.76, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 251, + 505, + 264 + ], + "score": 1.0, + "content": "(if there are multiple highest,", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 262, + 505, + 275 + ], + "spans": [ + { + "bbox": [ + 105, + 262, + 118, + 275 + ], + "score": 1.0, + "content": "let", + "type": "text" + }, + { + "bbox": [ + 118, + 263, + 128, + 272 + ], + "score": 0.85, + "content": "i ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 128, + 262, + 505, + 275 + ], + "score": 1.0, + "content": "be any of them). Recall that erf is the error function, and erfc is the complement error function.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5 + }, + { + "type": "text", + "bbox": [ + 105, + 279, + 504, + 302 + ], + "lines": [ + { + "bbox": [ + 105, + 276, + 505, + 294 + ], + "spans": [ + { + "bbox": [ + 105, + 276, + 236, + 294 + ], + "score": 1.0, + "content": "Proposition 7 demonstrates that", + "type": "text" + }, + { + "bbox": [ + 236, + 279, + 256, + 291 + ], + "score": 0.92, + "content": "q ( { \\bar { n } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 256, + 276, + 505, + 294 + ], + "score": 1.0, + "content": "bounds from above the probability that GNMax outputs any-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 289, + 306, + 303 + ], + "spans": [ + { + "bbox": [ + 105, + 289, + 306, + 303 + ], + "score": 1.0, + "content": "thing but the highest coordinate of the histogram.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5 + }, + { + "type": "text", + "bbox": [ + 105, + 307, + 460, + 319 + ], + "lines": [ + { + "bbox": [ + 106, + 306, + 461, + 320 + ], + "spans": [ + { + "bbox": [ + 106, + 306, + 325, + 320 + ], + "score": 1.0, + "content": "Conditions C1, C7, and C8 follow by simple calculus", + "type": "text" + }, + { + "bbox": [ + 325, + 308, + 335, + 319 + ], + "score": 0.78, + "content": "( q _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 306, + 461, + 320 + ], + "score": 1.0, + "content": ", defined below, is at most 0.5).", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 106, + 329, + 505, + 353 + ], + "lines": [ + { + "bbox": [ + 105, + 329, + 505, + 343 + ], + "spans": [ + { + "bbox": [ + 105, + 329, + 151, + 343 + ], + "score": 1.0, + "content": "Functions", + "type": "text" + }, + { + "bbox": [ + 151, + 331, + 184, + 342 + ], + "score": 0.38, + "content": "\\mathrm { B } _ { \\mathrm { L } } , \\mathrm { B } _ { \\mathrm { U } }", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 329, + 398, + 343 + ], + "score": 1.0, + "content": ", and conditions C2–C4. Recall that the functions", + "type": "text" + }, + { + "bbox": [ + 398, + 331, + 411, + 342 + ], + "score": 0.89, + "content": "\\mathrm { B _ { L } }", + "type": "inline_equation" + }, + { + "bbox": [ + 412, + 329, + 430, + 343 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 431, + 331, + 446, + 342 + ], + "score": 0.88, + "content": "\\mathrm { B _ { U } }", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 329, + 505, + 343 + ], + "score": 1.0, + "content": "are defined in", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 341, + 204, + 354 + ], + "spans": [ + { + "bbox": [ + 105, + 341, + 148, + 354 + ], + "score": 1.0, + "content": "Appendix", + "type": "text" + }, + { + "bbox": [ + 148, + 343, + 156, + 352 + ], + "score": 0.28, + "content": "\\mathbf { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 156, + 341, + 204, + 354 + ], + "score": 1.0, + "content": "as follows:", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5 + }, + { + "type": "interline_equation", + "bbox": [ + 185, + 357, + 426, + 414 + ], + "lines": [ + { + "bbox": [ + 185, + 357, + 426, + 414 + ], + "spans": [ + { + "bbox": [ + 185, + 357, + 426, + 414 + ], + "score": 0.94, + "content": "\\begin{array} { l } { { \\displaystyle { \\mathrm { B } } _ { \\mathrm { U } } ( q ) \\triangleq \\operatorname* { m i n } \\left\\{ \\frac { m - 1 } { 2 } \\mathrm { e r f c } \\left( \\mathrm { e r f c } ^ { - 1 } \\left( \\frac { 2 q } { m - 1 } \\right) - \\frac { 1 } { \\sigma } \\right) , 1 \\right\\} , } } \\\\ { { \\displaystyle { \\mathrm { B } } _ { \\mathrm { L } } ( q ) \\triangleq \\frac { m - 1 } { 2 } \\mathrm { e r f c } \\left( \\mathrm { e r f c } ^ { - 1 } \\left( \\frac { 2 q } { m - 1 } \\right) + \\frac { 1 } { \\sigma } \\right) , } } \\end{array}", + "type": "interline_equation", + "image_path": "2a46ffe3a3d74b3ca3f2abc703aaea0051f2a3bc248d7c5ef591287b7ffb861f.jpg" + } + ] + } + ], + "index": 19.5, + "virtual_lines": [ + { + "bbox": [ + 185, + 357, + 426, + 371.25 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 185, + 371.25, + 426, + 385.5 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 185, + 385.5, + 426, + 399.75 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 185, + 399.75, + 426, + 414.0 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 416, + 503, + 438 + ], + "lines": [ + { + "bbox": [ + 105, + 416, + 505, + 430 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 312, + 430 + ], + "score": 1.0, + "content": "Proposition 21 (Condition C2). For any neighbor", + "type": "text" + }, + { + "bbox": [ + 312, + 417, + 321, + 427 + ], + "score": 0.85, + "content": "\\bar { n } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 416, + 334, + 430 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 334, + 419, + 340, + 427 + ], + "score": 0.66, + "content": "\\bar { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 341, + 416, + 362, + 430 + ], + "score": 1.0, + "content": ", i.e.,", + "type": "text" + }, + { + "bbox": [ + 362, + 417, + 414, + 429 + ], + "score": 0.92, + "content": "d ( \\bar { n } ^ { \\prime } , \\bar { n } ) = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 414, + 416, + 505, + 430 + ], + "score": 1.0, + "content": ", the following bounds", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 426, + 131, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 131, + 441 + ], + "score": 1.0, + "content": "hold:", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5 + }, + { + "type": "interline_equation", + "bbox": [ + 239, + 437, + 371, + 452 + ], + "lines": [ + { + "bbox": [ + 239, + 437, + 371, + 452 + ], + "spans": [ + { + "bbox": [ + 239, + 437, + 371, + 452 + ], + "score": 0.88, + "content": "\\mathrm { B } _ { \\mathrm { L } } ( q ( \\bar { n } ) ) \\leq q ( \\bar { n } ^ { \\prime } ) \\leq \\mathrm { B } _ { \\mathrm { U } } ( q ( \\bar { n } ) ) .", + "type": "interline_equation", + "image_path": "3b3ca4537077ca14e32edae19eacc4db1a5b70ad1ad23fa159d24fac9a950114.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 239, + 437, + 371, + 452 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 464, + 504, + 488 + ], + "lines": [ + { + "bbox": [ + 106, + 463, + 505, + 478 + ], + "spans": [ + { + "bbox": [ + 106, + 463, + 211, + 478 + ], + "score": 1.0, + "content": "Proof. Assume wlog that", + "type": "text" + }, + { + "bbox": [ + 212, + 465, + 240, + 475 + ], + "score": 0.9, + "content": "i ^ { * } = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 240, + 463, + 261, + 478 + ], + "score": 1.0, + "content": ". Let", + "type": "text" + }, + { + "bbox": [ + 262, + 464, + 318, + 476 + ], + "score": 0.9, + "content": "x _ { i } \\triangleq n _ { 1 } - n _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 463, + 336, + 478 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 337, + 464, + 419, + 477 + ], + "score": 0.92, + "content": "q _ { i } \\triangleq \\mathrm { e r f c } ( x _ { i } / 2 \\sigma ) / 2", + "type": "inline_equation" + }, + { + "bbox": [ + 419, + 463, + 505, + 478 + ], + "score": 1.0, + "content": ", and similarly define", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 107, + 475, + 435, + 488 + ], + "spans": [ + { + "bbox": [ + 107, + 476, + 117, + 487 + ], + "score": 0.89, + "content": "\\boldsymbol { x } _ { i } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 117, + 475, + 132, + 488 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 132, + 476, + 142, + 486 + ], + "score": 0.84, + "content": "\\bar { n } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 142, + 475, + 199, + 488 + ], + "score": 1.0, + "content": ". Observe that", + "type": "text" + }, + { + "bbox": [ + 200, + 476, + 252, + 488 + ], + "score": 0.93, + "content": "| x _ { i } - x _ { i } ^ { \\prime } | \\leq 2", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 475, + 435, + 488 + ], + "score": 1.0, + "content": ", which, by monotonicity of erfc, implies that", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5 + }, + { + "type": "interline_equation", + "bbox": [ + 206, + 491, + 403, + 519 + ], + "lines": [ + { + "bbox": [ + 206, + 491, + 403, + 519 + ], + "spans": [ + { + "bbox": [ + 206, + 491, + 403, + 519 + ], + "score": 0.91, + "content": "{ \\frac { 1 } { 2 } } \\operatorname { e r f c } \\left( { \\frac { x _ { i } + 2 } { 2 \\sigma } } \\right) \\leq q _ { i } ( { \\bar { n } } ^ { \\prime } ) \\leq { \\frac { 1 } { 2 } } \\operatorname { e r f c } \\left( { \\frac { x _ { i } - 2 } { 2 \\sigma } } \\right) .", + "type": "interline_equation", + "image_path": "157fa8dfc2bd519ef8e7fe58aa7d2bf8c5cb507852a07d0280eb15058ef212a0.jpg" + } + ] + } + ], + "index": 27, + "virtual_lines": [ + { + "bbox": [ + 206, + 491, + 403, + 519 + ], + "spans": [], + "index": 27 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 523, + 128, + 534 + ], + "lines": [ + { + "bbox": [ + 105, + 522, + 130, + 536 + ], + "spans": [ + { + "bbox": [ + 105, + 522, + 130, + 536 + ], + "score": 1.0, + "content": "Thus", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "interline_equation", + "bbox": [ + 192, + 531, + 419, + 562 + ], + "lines": [ + { + "bbox": [ + 192, + 531, + 419, + 562 + ], + "spans": [ + { + "bbox": [ + 192, + 531, + 419, + 562 + ], + "score": 0.91, + "content": "\\frac { 1 } { 2 } \\sum _ { i > 1 } \\mathrm { e r f c } \\left( \\frac { x _ { i } + 2 } { 2 \\sigma } \\right) \\leq q ( \\bar { n } ^ { \\prime } ) \\leq \\frac { 1 } { 2 } \\sum _ { i > 1 } \\mathrm { e r f c } \\left( \\frac { x _ { i } - 2 } { 2 \\sigma } \\right) .", + "type": "interline_equation", + "image_path": "8c90bdf88a16d5b9f2509ac9502a6cf98038c74118dd8f10283a298d6e8140cd.jpg" + } + ] + } + ], + "index": 29.5, + "virtual_lines": [ + { + "bbox": [ + 192, + 531, + 419, + 546.5 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 192, + 546.5, + 419, + 562.0 + ], + "spans": [], + "index": 30 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 563, + 375, + 576 + ], + "lines": [ + { + "bbox": [ + 105, + 562, + 376, + 577 + ], + "spans": [ + { + "bbox": [ + 105, + 562, + 150, + 577 + ], + "score": 1.0, + "content": "(Although", + "type": "text" + }, + { + "bbox": [ + 150, + 564, + 159, + 574 + ], + "score": 0.83, + "content": "i ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 562, + 246, + 577 + ], + "score": 1.0, + "content": "may change between", + "type": "text" + }, + { + "bbox": [ + 246, + 565, + 254, + 574 + ], + "score": 0.81, + "content": "\\bar { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 562, + 271, + 577 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 272, + 564, + 281, + 574 + ], + "score": 0.86, + "content": "\\bar { n } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 562, + 376, + 577 + ], + "score": 1.0, + "content": ", the bounds still hold.)", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 106, + 580, + 504, + 603 + ], + "lines": [ + { + "bbox": [ + 105, + 579, + 505, + 594 + ], + "spans": [ + { + "bbox": [ + 105, + 579, + 234, + 594 + ], + "score": 1.0, + "content": "Our first goal is to upper bound", + "type": "text" + }, + { + "bbox": [ + 235, + 581, + 257, + 593 + ], + "score": 0.92, + "content": "q ( \\bar { n } ^ { \\prime } )", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 579, + 338, + 594 + ], + "score": 1.0, + "content": "for a given value of", + "type": "text" + }, + { + "bbox": [ + 339, + 581, + 358, + 593 + ], + "score": 0.92, + "content": "q ( { \\bar { n } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 358, + 579, + 505, + 594 + ], + "score": 1.0, + "content": ". To this end we set up the following", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 592, + 200, + 604 + ], + "spans": [ + { + "bbox": [ + 106, + 592, + 200, + 604 + ], + "score": 1.0, + "content": "maximization problem", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5 + }, + { + "type": "interline_equation", + "bbox": [ + 161, + 607, + 449, + 639 + ], + "lines": [ + { + "bbox": [ + 161, + 607, + 449, + 639 + ], + "spans": [ + { + "bbox": [ + 161, + 607, + 449, + 639 + ], + "score": 0.9, + "content": "\\operatorname* { m a x } _ { \\{ x _ { i } \\} } { \\frac { 1 } { 2 } } \\sum _ { i > 1 } { \\mathrm { e r f c } } \\left( { \\frac { x _ { i } - 2 } { 2 \\sigma } } \\right) { \\mathrm { ~ s u c h ~ t h a t ~ } } { \\frac { 1 } { 2 } } \\sum _ { i > 1 } { \\mathrm { e r f c } } \\left( { \\frac { x _ { i } } { 2 \\sigma } } \\right) = q { \\mathrm { ~ a n d ~ } } x _ { i } \\geq 0 .", + "type": "interline_equation", + "image_path": "17bcdbb17a43550590c08be1e22c9d0c8696fc196a10de7c2e09ead1aa536605.jpg" + } + ] + } + ], + "index": 35, + "virtual_lines": [ + { + "bbox": [ + 161, + 607, + 449, + 617.6666666666666 + ], + "spans": [], + "index": 34 + }, + { + "bbox": [ + 161, + 617.6666666666666, + 449, + 628.3333333333333 + ], + "spans": [], + "index": 35 + }, + { + "bbox": [ + 161, + 628.3333333333333, + 449, + 638.9999999999999 + ], + "spans": [], + "index": 36 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 642, + 504, + 666 + ], + "lines": [ + { + "bbox": [ + 106, + 642, + 504, + 655 + ], + "spans": [ + { + "bbox": [ + 106, + 642, + 504, + 655 + ], + "score": 1.0, + "content": "We may temporarily ignore the non-negative constraints, which end up being satisfied by our solu-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 653, + 446, + 666 + ], + "spans": [ + { + "bbox": [ + 105, + 653, + 428, + 666 + ], + "score": 1.0, + "content": "tion. Consider using the method of Lagrange multipliers and take a derivative in", + "type": "text" + }, + { + "bbox": [ + 428, + 654, + 442, + 664 + ], + "score": 0.88, + "content": "x _ { i } { } ^ { \\ ' }", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 653, + 446, + 666 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37.5 + }, + { + "type": "interline_equation", + "bbox": [ + 168, + 669, + 441, + 732 + ], + "lines": [ + { + "bbox": [ + 168, + 669, + 441, + 732 + ], + "spans": [ + { + "bbox": [ + 168, + 669, + 441, + 732 + ], + "score": 0.92, + "content": "\\begin{array} { c } { \\displaystyle - \\exp \\left( - \\left( \\frac { x _ { i } - 2 } { 2 \\sigma } \\right) ^ { 2 } \\right) + \\lambda \\exp \\left( - \\left( \\frac { x _ { i } } { 2 \\sigma } \\right) ^ { 2 } \\right) = 0 } \\\\ { \\displaystyle \\Leftrightarrow \\lambda = \\exp \\left( \\frac { x _ { i } - 1 } { \\sigma ^ { 2 } } \\right) . } \\end{array}", + "type": "interline_equation", + "image_path": "dfaa73f9d59389f801c72fec89860f0573218fd8733edba749cbaf91f7476414.jpg" + } + ] + } + ], + "index": 40, + "virtual_lines": [ + { + "bbox": [ + 168, + 669, + 441, + 690.0 + ], + "spans": [], + "index": 39 + }, + { + "bbox": [ + 168, + 690.0, + 441, + 711.0 + ], + "spans": [], + "index": 40 + }, + { + "bbox": [ + 168, + 711.0, + 441, + 732.0 + ], + "spans": [], + "index": 41 + } + ] + } + ], + "page_idx": 29, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 26, + 293, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 298, + 750, + 313, + 763 + ], + "spans": [ + { + "bbox": [ + 298, + 750, + 313, + 763 + ], + "score": 1.0, + "content": "30", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 82, + 285, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 285, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 285, + 95 + ], + "score": 1.0, + "content": "B.4.1 CONDITIONS C1–C4, C7 AND C8", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 105, + 100, + 505, + 124 + ], + "lines": [ + { + "bbox": [ + 102, + 96, + 504, + 120 + ], + "spans": [ + { + "bbox": [ + 102, + 96, + 145, + 120 + ], + "score": 1.0, + "content": "Defining", + "type": "text" + }, + { + "bbox": [ + 145, + 104, + 152, + 113 + ], + "score": 0.71, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 152, + 96, + 439, + 120 + ], + "score": 1.0, + "content": "and conditions C1, C7, and C8. Following Proposition 7, we define", + "type": "text" + }, + { + "bbox": [ + 439, + 101, + 504, + 115 + ], + "score": 0.92, + "content": "q \\colon \\mathbb { R } _ { \\geq 0 } ^ { m } [ 0 , 1 ]", + "type": "inline_equation" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 112, + 311, + 125 + ], + "spans": [ + { + "bbox": [ + 106, + 112, + 289, + 125 + ], + "score": 1.0, + "content": "for a GNMax mechanism parameterized with", + "type": "text" + }, + { + "bbox": [ + 290, + 115, + 297, + 123 + ], + "score": 0.77, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 112, + 311, + 125 + ], + "score": 1.0, + "content": "as:", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1.5, + "bbox_fs": [ + 102, + 96, + 504, + 125 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 201, + 128, + 408, + 249 + ], + "lines": [ + { + "bbox": [ + 201, + 128, + 408, + 249 + ], + "spans": [ + { + "bbox": [ + 201, + 128, + 408, + 249 + ], + "score": 0.95, + "content": "\\begin{array} { r l } & { q ( \\bar { n } ) \\triangleq \\operatorname* { m i n } \\left\\{ \\underset { i \\neq i ^ { * } } { \\sum } \\mathbf { P r } ( Z _ { i } - Z _ { i ^ { * } } \\geq n _ { i ^ { * } } - n _ { i } ) , 1 \\right\\} } \\\\ & { \\quad = \\operatorname* { m i n } \\left\\{ \\underset { i \\neq i ^ { * } } { \\sum } \\frac { 1 } { 2 } \\left( 1 - \\mathrm { e r f } \\left( \\frac { n _ { i ^ { * } } - n _ { i } } { 2 \\sigma } \\right) \\right) , 1 \\right\\} } \\\\ & { \\quad = \\operatorname* { m i n } \\left\\{ \\underset { i \\neq i ^ { * } } { \\sum } \\frac { 1 } { 2 } \\mathrm { e r f c } \\left( \\frac { n _ { i ^ { * } } - n _ { i } } { 2 \\sigma } \\right) , 1 \\right\\} , } \\end{array}", + "type": "interline_equation", + "image_path": "b555ced3f1c79d37e679ec7a63759430adc04569f17e6b1a46ee55adbca4dbc6.jpg" + } + ] + } + ], + "index": 6.5, + "virtual_lines": [ + { + "bbox": [ + 201, + 128, + 408, + 143.125 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 201, + 143.125, + 408, + 158.25 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 201, + 158.25, + 408, + 173.375 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 201, + 173.375, + 408, + 188.5 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 201, + 188.5, + 408, + 203.625 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 201, + 203.625, + 408, + 218.75 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 201, + 218.75, + 408, + 233.875 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 201, + 233.875, + 408, + 249.0 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 251, + 505, + 274 + ], + "lines": [ + { + "bbox": [ + 106, + 251, + 505, + 264 + ], + "spans": [ + { + "bbox": [ + 106, + 251, + 133, + 264 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 252, + 142, + 261 + ], + "score": 0.86, + "content": "i ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 142, + 251, + 208, + 264 + ], + "score": 1.0, + "content": "is the histogram", + "type": "text" + }, + { + "bbox": [ + 208, + 253, + 216, + 261 + ], + "score": 0.81, + "content": "\\bar { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 251, + 318, + 264 + ], + "score": 1.0, + "content": "’s highest coordinate, i.e.,", + "type": "text" + }, + { + "bbox": [ + 318, + 252, + 355, + 263 + ], + "score": 0.92, + "content": "n _ { i ^ { * } } \\geq n _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 356, + 251, + 382, + 264 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 382, + 252, + 387, + 261 + ], + "score": 0.76, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 251, + 505, + 264 + ], + "score": 1.0, + "content": "(if there are multiple highest,", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 262, + 505, + 275 + ], + "spans": [ + { + "bbox": [ + 105, + 262, + 118, + 275 + ], + "score": 1.0, + "content": "let", + "type": "text" + }, + { + "bbox": [ + 118, + 263, + 128, + 272 + ], + "score": 0.85, + "content": "i ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 128, + 262, + 505, + 275 + ], + "score": 1.0, + "content": "be any of them). Recall that erf is the error function, and erfc is the complement error function.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5, + "bbox_fs": [ + 105, + 251, + 505, + 275 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 279, + 504, + 302 + ], + "lines": [ + { + "bbox": [ + 105, + 276, + 505, + 294 + ], + "spans": [ + { + "bbox": [ + 105, + 276, + 236, + 294 + ], + "score": 1.0, + "content": "Proposition 7 demonstrates that", + "type": "text" + }, + { + "bbox": [ + 236, + 279, + 256, + 291 + ], + "score": 0.92, + "content": "q ( { \\bar { n } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 256, + 276, + 505, + 294 + ], + "score": 1.0, + "content": "bounds from above the probability that GNMax outputs any-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 289, + 306, + 303 + ], + "spans": [ + { + "bbox": [ + 105, + 289, + 306, + 303 + ], + "score": 1.0, + "content": "thing but the highest coordinate of the histogram.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5, + "bbox_fs": [ + 105, + 276, + 505, + 303 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 307, + 460, + 319 + ], + "lines": [ + { + "bbox": [ + 106, + 306, + 461, + 320 + ], + "spans": [ + { + "bbox": [ + 106, + 306, + 325, + 320 + ], + "score": 1.0, + "content": "Conditions C1, C7, and C8 follow by simple calculus", + "type": "text" + }, + { + "bbox": [ + 325, + 308, + 335, + 319 + ], + "score": 0.78, + "content": "( q _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 306, + 461, + 320 + ], + "score": 1.0, + "content": ", defined below, is at most 0.5).", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15, + "bbox_fs": [ + 106, + 306, + 461, + 320 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 329, + 505, + 353 + ], + "lines": [ + { + "bbox": [ + 105, + 329, + 505, + 343 + ], + "spans": [ + { + "bbox": [ + 105, + 329, + 151, + 343 + ], + "score": 1.0, + "content": "Functions", + "type": "text" + }, + { + "bbox": [ + 151, + 331, + 184, + 342 + ], + "score": 0.38, + "content": "\\mathrm { B } _ { \\mathrm { L } } , \\mathrm { B } _ { \\mathrm { U } }", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 329, + 398, + 343 + ], + "score": 1.0, + "content": ", and conditions C2–C4. Recall that the functions", + "type": "text" + }, + { + "bbox": [ + 398, + 331, + 411, + 342 + ], + "score": 0.89, + "content": "\\mathrm { B _ { L } }", + "type": "inline_equation" + }, + { + "bbox": [ + 412, + 329, + 430, + 343 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 431, + 331, + 446, + 342 + ], + "score": 0.88, + "content": "\\mathrm { B _ { U } }", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 329, + 505, + 343 + ], + "score": 1.0, + "content": "are defined in", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 341, + 204, + 354 + ], + "spans": [ + { + "bbox": [ + 105, + 341, + 148, + 354 + ], + "score": 1.0, + "content": "Appendix", + "type": "text" + }, + { + "bbox": [ + 148, + 343, + 156, + 352 + ], + "score": 0.28, + "content": "\\mathbf { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 156, + 341, + 204, + 354 + ], + "score": 1.0, + "content": "as follows:", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5, + "bbox_fs": [ + 105, + 329, + 505, + 354 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 185, + 357, + 426, + 414 + ], + "lines": [ + { + "bbox": [ + 185, + 357, + 426, + 414 + ], + "spans": [ + { + "bbox": [ + 185, + 357, + 426, + 414 + ], + "score": 0.94, + "content": "\\begin{array} { l } { { \\displaystyle { \\mathrm { B } } _ { \\mathrm { U } } ( q ) \\triangleq \\operatorname* { m i n } \\left\\{ \\frac { m - 1 } { 2 } \\mathrm { e r f c } \\left( \\mathrm { e r f c } ^ { - 1 } \\left( \\frac { 2 q } { m - 1 } \\right) - \\frac { 1 } { \\sigma } \\right) , 1 \\right\\} , } } \\\\ { { \\displaystyle { \\mathrm { B } } _ { \\mathrm { L } } ( q ) \\triangleq \\frac { m - 1 } { 2 } \\mathrm { e r f c } \\left( \\mathrm { e r f c } ^ { - 1 } \\left( \\frac { 2 q } { m - 1 } \\right) + \\frac { 1 } { \\sigma } \\right) , } } \\end{array}", + "type": "interline_equation", + "image_path": "2a46ffe3a3d74b3ca3f2abc703aaea0051f2a3bc248d7c5ef591287b7ffb861f.jpg" + } + ] + } + ], + "index": 19.5, + "virtual_lines": [ + { + "bbox": [ + 185, + 357, + 426, + 371.25 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 185, + 371.25, + 426, + 385.5 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 185, + 385.5, + 426, + 399.75 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 185, + 399.75, + 426, + 414.0 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 416, + 503, + 438 + ], + "lines": [ + { + "bbox": [ + 105, + 416, + 505, + 430 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 312, + 430 + ], + "score": 1.0, + "content": "Proposition 21 (Condition C2). For any neighbor", + "type": "text" + }, + { + "bbox": [ + 312, + 417, + 321, + 427 + ], + "score": 0.85, + "content": "\\bar { n } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 416, + 334, + 430 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 334, + 419, + 340, + 427 + ], + "score": 0.66, + "content": "\\bar { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 341, + 416, + 362, + 430 + ], + "score": 1.0, + "content": ", i.e.,", + "type": "text" + }, + { + "bbox": [ + 362, + 417, + 414, + 429 + ], + "score": 0.92, + "content": "d ( \\bar { n } ^ { \\prime } , \\bar { n } ) = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 414, + 416, + 505, + 430 + ], + "score": 1.0, + "content": ", the following bounds", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 426, + 131, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 131, + 441 + ], + "score": 1.0, + "content": "hold:", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5, + "bbox_fs": [ + 105, + 416, + 505, + 441 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 239, + 437, + 371, + 452 + ], + "lines": [ + { + "bbox": [ + 239, + 437, + 371, + 452 + ], + "spans": [ + { + "bbox": [ + 239, + 437, + 371, + 452 + ], + "score": 0.88, + "content": "\\mathrm { B } _ { \\mathrm { L } } ( q ( \\bar { n } ) ) \\leq q ( \\bar { n } ^ { \\prime } ) \\leq \\mathrm { B } _ { \\mathrm { U } } ( q ( \\bar { n } ) ) .", + "type": "interline_equation", + "image_path": "3b3ca4537077ca14e32edae19eacc4db1a5b70ad1ad23fa159d24fac9a950114.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 239, + 437, + 371, + 452 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 464, + 504, + 488 + ], + "lines": [ + { + "bbox": [ + 106, + 463, + 505, + 478 + ], + "spans": [ + { + "bbox": [ + 106, + 463, + 211, + 478 + ], + "score": 1.0, + "content": "Proof. Assume wlog that", + "type": "text" + }, + { + "bbox": [ + 212, + 465, + 240, + 475 + ], + "score": 0.9, + "content": "i ^ { * } = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 240, + 463, + 261, + 478 + ], + "score": 1.0, + "content": ". Let", + "type": "text" + }, + { + "bbox": [ + 262, + 464, + 318, + 476 + ], + "score": 0.9, + "content": "x _ { i } \\triangleq n _ { 1 } - n _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 463, + 336, + 478 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 337, + 464, + 419, + 477 + ], + "score": 0.92, + "content": "q _ { i } \\triangleq \\mathrm { e r f c } ( x _ { i } / 2 \\sigma ) / 2", + "type": "inline_equation" + }, + { + "bbox": [ + 419, + 463, + 505, + 478 + ], + "score": 1.0, + "content": ", and similarly define", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 107, + 475, + 435, + 488 + ], + "spans": [ + { + "bbox": [ + 107, + 476, + 117, + 487 + ], + "score": 0.89, + "content": "\\boldsymbol { x } _ { i } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 117, + 475, + 132, + 488 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 132, + 476, + 142, + 486 + ], + "score": 0.84, + "content": "\\bar { n } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 142, + 475, + 199, + 488 + ], + "score": 1.0, + "content": ". Observe that", + "type": "text" + }, + { + "bbox": [ + 200, + 476, + 252, + 488 + ], + "score": 0.93, + "content": "| x _ { i } - x _ { i } ^ { \\prime } | \\leq 2", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 475, + 435, + 488 + ], + "score": 1.0, + "content": ", which, by monotonicity of erfc, implies that", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5, + "bbox_fs": [ + 106, + 463, + 505, + 488 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 206, + 491, + 403, + 519 + ], + "lines": [ + { + "bbox": [ + 206, + 491, + 403, + 519 + ], + "spans": [ + { + "bbox": [ + 206, + 491, + 403, + 519 + ], + "score": 0.91, + "content": "{ \\frac { 1 } { 2 } } \\operatorname { e r f c } \\left( { \\frac { x _ { i } + 2 } { 2 \\sigma } } \\right) \\leq q _ { i } ( { \\bar { n } } ^ { \\prime } ) \\leq { \\frac { 1 } { 2 } } \\operatorname { e r f c } \\left( { \\frac { x _ { i } - 2 } { 2 \\sigma } } \\right) .", + "type": "interline_equation", + "image_path": "157fa8dfc2bd519ef8e7fe58aa7d2bf8c5cb507852a07d0280eb15058ef212a0.jpg" + } + ] + } + ], + "index": 27, + "virtual_lines": [ + { + "bbox": [ + 206, + 491, + 403, + 519 + ], + "spans": [], + "index": 27 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 523, + 128, + 534 + ], + "lines": [ + { + "bbox": [ + 105, + 522, + 130, + 536 + ], + "spans": [ + { + "bbox": [ + 105, + 522, + 130, + 536 + ], + "score": 1.0, + "content": "Thus", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28, + "bbox_fs": [ + 105, + 522, + 130, + 536 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 192, + 531, + 419, + 562 + ], + "lines": [ + { + "bbox": [ + 192, + 531, + 419, + 562 + ], + "spans": [ + { + "bbox": [ + 192, + 531, + 419, + 562 + ], + "score": 0.91, + "content": "\\frac { 1 } { 2 } \\sum _ { i > 1 } \\mathrm { e r f c } \\left( \\frac { x _ { i } + 2 } { 2 \\sigma } \\right) \\leq q ( \\bar { n } ^ { \\prime } ) \\leq \\frac { 1 } { 2 } \\sum _ { i > 1 } \\mathrm { e r f c } \\left( \\frac { x _ { i } - 2 } { 2 \\sigma } \\right) .", + "type": "interline_equation", + "image_path": "8c90bdf88a16d5b9f2509ac9502a6cf98038c74118dd8f10283a298d6e8140cd.jpg" + } + ] + } + ], + "index": 29.5, + "virtual_lines": [ + { + "bbox": [ + 192, + 531, + 419, + 546.5 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 192, + 546.5, + 419, + 562.0 + ], + "spans": [], + "index": 30 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 563, + 375, + 576 + ], + "lines": [ + { + "bbox": [ + 105, + 562, + 376, + 577 + ], + "spans": [ + { + "bbox": [ + 105, + 562, + 150, + 577 + ], + "score": 1.0, + "content": "(Although", + "type": "text" + }, + { + "bbox": [ + 150, + 564, + 159, + 574 + ], + "score": 0.83, + "content": "i ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 562, + 246, + 577 + ], + "score": 1.0, + "content": "may change between", + "type": "text" + }, + { + "bbox": [ + 246, + 565, + 254, + 574 + ], + "score": 0.81, + "content": "\\bar { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 562, + 271, + 577 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 272, + 564, + 281, + 574 + ], + "score": 0.86, + "content": "\\bar { n } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 562, + 376, + 577 + ], + "score": 1.0, + "content": ", the bounds still hold.)", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31, + "bbox_fs": [ + 105, + 562, + 376, + 577 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 580, + 504, + 603 + ], + "lines": [ + { + "bbox": [ + 105, + 579, + 505, + 594 + ], + "spans": [ + { + "bbox": [ + 105, + 579, + 234, + 594 + ], + "score": 1.0, + "content": "Our first goal is to upper bound", + "type": "text" + }, + { + "bbox": [ + 235, + 581, + 257, + 593 + ], + "score": 0.92, + "content": "q ( \\bar { n } ^ { \\prime } )", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 579, + 338, + 594 + ], + "score": 1.0, + "content": "for a given value of", + "type": "text" + }, + { + "bbox": [ + 339, + 581, + 358, + 593 + ], + "score": 0.92, + "content": "q ( { \\bar { n } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 358, + 579, + 505, + 594 + ], + "score": 1.0, + "content": ". To this end we set up the following", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 592, + 200, + 604 + ], + "spans": [ + { + "bbox": [ + 106, + 592, + 200, + 604 + ], + "score": 1.0, + "content": "maximization problem", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5, + "bbox_fs": [ + 105, + 579, + 505, + 604 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 161, + 607, + 449, + 639 + ], + "lines": [ + { + "bbox": [ + 161, + 607, + 449, + 639 + ], + "spans": [ + { + "bbox": [ + 161, + 607, + 449, + 639 + ], + "score": 0.9, + "content": "\\operatorname* { m a x } _ { \\{ x _ { i } \\} } { \\frac { 1 } { 2 } } \\sum _ { i > 1 } { \\mathrm { e r f c } } \\left( { \\frac { x _ { i } - 2 } { 2 \\sigma } } \\right) { \\mathrm { ~ s u c h ~ t h a t ~ } } { \\frac { 1 } { 2 } } \\sum _ { i > 1 } { \\mathrm { e r f c } } \\left( { \\frac { x _ { i } } { 2 \\sigma } } \\right) = q { \\mathrm { ~ a n d ~ } } x _ { i } \\geq 0 .", + "type": "interline_equation", + "image_path": "17bcdbb17a43550590c08be1e22c9d0c8696fc196a10de7c2e09ead1aa536605.jpg" + } + ] + } + ], + "index": 35, + "virtual_lines": [ + { + "bbox": [ + 161, + 607, + 449, + 617.6666666666666 + ], + "spans": [], + "index": 34 + }, + { + "bbox": [ + 161, + 617.6666666666666, + 449, + 628.3333333333333 + ], + "spans": [], + "index": 35 + }, + { + "bbox": [ + 161, + 628.3333333333333, + 449, + 638.9999999999999 + ], + "spans": [], + "index": 36 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 642, + 504, + 666 + ], + "lines": [ + { + "bbox": [ + 106, + 642, + 504, + 655 + ], + "spans": [ + { + "bbox": [ + 106, + 642, + 504, + 655 + ], + "score": 1.0, + "content": "We may temporarily ignore the non-negative constraints, which end up being satisfied by our solu-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 653, + 446, + 666 + ], + "spans": [ + { + "bbox": [ + 105, + 653, + 428, + 666 + ], + "score": 1.0, + "content": "tion. Consider using the method of Lagrange multipliers and take a derivative in", + "type": "text" + }, + { + "bbox": [ + 428, + 654, + 442, + 664 + ], + "score": 0.88, + "content": "x _ { i } { } ^ { \\ ' }", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 653, + 446, + 666 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37.5, + "bbox_fs": [ + 105, + 642, + 504, + 666 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 168, + 669, + 441, + 732 + ], + "lines": [ + { + "bbox": [ + 168, + 669, + 441, + 732 + ], + "spans": [ + { + "bbox": [ + 168, + 669, + 441, + 732 + ], + "score": 0.92, + "content": "\\begin{array} { c } { \\displaystyle - \\exp \\left( - \\left( \\frac { x _ { i } - 2 } { 2 \\sigma } \\right) ^ { 2 } \\right) + \\lambda \\exp \\left( - \\left( \\frac { x _ { i } } { 2 \\sigma } \\right) ^ { 2 } \\right) = 0 } \\\\ { \\displaystyle \\Leftrightarrow \\lambda = \\exp \\left( \\frac { x _ { i } - 1 } { \\sigma ^ { 2 } } \\right) . } \\end{array}", + "type": "interline_equation", + "image_path": "dfaa73f9d59389f801c72fec89860f0573218fd8733edba749cbaf91f7476414.jpg" + } + ] + } + ], + "index": 40, + "virtual_lines": [ + { + "bbox": [ + 168, + 669, + 441, + 690.0 + ], + "spans": [], + "index": 39 + }, + { + "bbox": [ + 168, + 690.0, + 441, + 711.0 + ], + "spans": [], + "index": 40 + }, + { + "bbox": [ + 168, + 711.0, + 441, + 732.0 + ], + "spans": [], + "index": 41 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 504, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 260, + 96 + ], + "score": 1.0, + "content": "Since the expression is symmetric in", + "type": "text" + }, + { + "bbox": [ + 261, + 83, + 287, + 93 + ], + "score": 0.9, + "content": "i > 1", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 81, + 480, + 96 + ], + "score": 1.0, + "content": ", it means that the local optima are attained at", + "type": "text" + }, + { + "bbox": [ + 480, + 84, + 505, + 94 + ], + "score": 0.84, + "content": "x _ { 2 } =", + "type": "inline_equation" + } + ], + "index": 0 + }, + { + "bbox": [ + 107, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 107, + 95, + 149, + 105 + ], + "score": 0.85, + "content": "\\cdots = x _ { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 150, + 93, + 480, + 106 + ], + "score": 1.0, + "content": "(the second derivative confirms that these are local maxima). After solving for", + "type": "text" + }, + { + "bbox": [ + 480, + 95, + 505, + 106 + ], + "score": 0.85, + "content": "( m -", + "type": "inline_equation" + } + ], + "index": 1 + }, + { + "bbox": [ + 108, + 104, + 223, + 117 + ], + "spans": [ + { + "bbox": [ + 108, + 105, + 187, + 117 + ], + "score": 0.88, + "content": "1 ) \\operatorname { e r f c } ( x / 2 \\sigma ) = 2 q", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 104, + 223, + 117 + ], + "score": 1.0, + "content": "we have", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "interline_equation", + "bbox": [ + 209, + 119, + 402, + 147 + ], + "lines": [ + { + "bbox": [ + 209, + 119, + 402, + 147 + ], + "spans": [ + { + "bbox": [ + 209, + 119, + 402, + 147 + ], + "score": 0.94, + "content": "q ( \\bar { n } ^ { \\prime } ) \\leq \\frac { m - 1 } { 2 } \\mathrm { e r f c } \\left( \\mathrm { e r f c ^ { - 1 } } \\left( \\frac { 2 q } { m - 1 } \\right) - \\frac { 1 } { \\sigma } \\right) .", + "type": "interline_equation", + "image_path": "954a47d8f0473556818f5c73b15af652c16d18e39bd05fa295ee938074704cb1.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 209, + 119, + 402, + 147 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 151, + 286, + 162 + ], + "lines": [ + { + "bbox": [ + 106, + 149, + 286, + 164 + ], + "spans": [ + { + "bbox": [ + 106, + 149, + 133, + 164 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 153, + 144, + 161 + ], + "score": 0.78, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 149, + 286, + 164 + ], + "score": 1.0, + "content": "is the number of classes. Similarly,", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "interline_equation", + "bbox": [ + 209, + 165, + 402, + 194 + ], + "lines": [ + { + "bbox": [ + 209, + 165, + 402, + 194 + ], + "spans": [ + { + "bbox": [ + 209, + 165, + 402, + 194 + ], + "score": 0.93, + "content": "q ( \\bar { n } ^ { \\prime } ) \\geq \\frac { m - 1 } { 2 } \\mathrm { e r f c } \\left( \\mathrm { e r f c ^ { - 1 } } \\left( \\frac { 2 q } { m - 1 } \\right) + \\frac { 1 } { \\sigma } \\right) .", + "type": "interline_equation", + "image_path": "ed3718159ea1135242ea8c1435901f1ca18e0f871acb2bf82df56fb6363f23dc.jpg" + } + ] + } + ], + "index": 5.5, + "virtual_lines": [ + { + "bbox": [ + 209, + 165, + 402, + 179.5 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 209, + 179.5, + 402, + 194.0 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 221, + 505, + 267 + ], + "lines": [ + { + "bbox": [ + 105, + 220, + 505, + 235 + ], + "spans": [ + { + "bbox": [ + 105, + 220, + 187, + 235 + ], + "score": 1.0, + "content": "Conditions C3, i.e.,", + "type": "text" + }, + { + "bbox": [ + 187, + 222, + 213, + 234 + ], + "score": 0.93, + "content": "\\operatorname { B _ { L } } ( q )", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 220, + 338, + 235 + ], + "score": 1.0, + "content": "is monotonically increasing in", + "type": "text" + }, + { + "bbox": [ + 338, + 224, + 344, + 233 + ], + "score": 0.78, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 220, + 365, + 235 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 365, + 222, + 378, + 232 + ], + "score": 0.27, + "content": "\\mathrm { C 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 220, + 399, + 235 + ], + "score": 1.0, + "content": ", i.e.,", + "type": "text" + }, + { + "bbox": [ + 399, + 222, + 413, + 233 + ], + "score": 0.88, + "content": "\\mathrm { B _ { L } }", + "type": "inline_equation" + }, + { + "bbox": [ + 413, + 220, + 431, + 235 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 431, + 222, + 446, + 233 + ], + "score": 0.87, + "content": "\\mathrm { B _ { U } }", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 220, + 505, + 235 + ], + "score": 1.0, + "content": "are functional", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 232, + 506, + 245 + ], + "spans": [ + { + "bbox": [ + 105, + 232, + 212, + 245 + ], + "score": 1.0, + "content": "inverses of each other in", + "type": "text" + }, + { + "bbox": [ + 212, + 233, + 237, + 245 + ], + "score": 0.93, + "content": "[ 0 , q _ { 0 } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 232, + 258, + 245 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 258, + 232, + 350, + 244 + ], + "score": 0.89, + "content": "\\mathrm { B } _ { \\mathrm { L } } ( { \\dot { q } } ) \\leq q \\leq \\mathbf { \\bar { B } } _ { \\mathrm { U } } ( { \\dot { q } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 351, + 232, + 381, + 245 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 382, + 233, + 424, + 244 + ], + "score": 0.91, + "content": "q \\in [ 0 , 1 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 424, + 232, + 506, + 245 + ], + "score": 1.0, + "content": ", follow from basic", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 244, + 505, + 256 + ], + "spans": [ + { + "bbox": [ + 105, + 244, + 258, + 256 + ], + "score": 1.0, + "content": "properties of erfc. The restriction that", + "type": "text" + }, + { + "bbox": [ + 258, + 244, + 300, + 255 + ], + "score": 0.92, + "content": "q \\in [ 0 , q _ { 0 } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 244, + 351, + 256 + ], + "score": 1.0, + "content": "ensures that", + "type": "text" + }, + { + "bbox": [ + 351, + 244, + 378, + 255 + ], + "score": 0.91, + "content": "\\operatorname { B _ { U } } ( q )", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 244, + 505, + 256 + ], + "score": 1.0, + "content": "is strictly less than one, and the", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 254, + 426, + 268 + ], + "spans": [ + { + "bbox": [ + 105, + 254, + 224, + 268 + ], + "score": 1.0, + "content": "minimum in the definition of", + "type": "text" + }, + { + "bbox": [ + 225, + 255, + 249, + 267 + ], + "score": 0.9, + "content": "\\operatorname { B _ { U } } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 254, + 426, + 268 + ], + "score": 1.0, + "content": "simplifies to its first argument in this range.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 8.5 + }, + { + "type": "title", + "bbox": [ + 108, + 277, + 248, + 289 + ], + "lines": [ + { + "bbox": [ + 105, + 276, + 250, + 290 + ], + "spans": [ + { + "bbox": [ + 105, + 276, + 250, + 290 + ], + "score": 1.0, + "content": "B.4.2 CONDITIONS C5 AND C6", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 106, + 296, + 505, + 343 + ], + "lines": [ + { + "bbox": [ + 105, + 296, + 506, + 311 + ], + "spans": [ + { + "bbox": [ + 105, + 296, + 302, + 311 + ], + "score": 1.0, + "content": "Conditions C5 and C6 stipulate that the function", + "type": "text" + }, + { + "bbox": [ + 302, + 297, + 362, + 309 + ], + "score": 0.91, + "content": "\\beta ( q ) \\triangleq \\beta _ { \\sigma } ( q )", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 296, + 506, + 311 + ], + "score": 1.0, + "content": "(defined in Appendix A) exhibits a", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 104, + 307, + 506, + 322 + ], + "spans": [ + { + "bbox": [ + 104, + 307, + 306, + 322 + ], + "score": 1.0, + "content": "specific growth pattern. Concretely, C5 states that", + "type": "text" + }, + { + "bbox": [ + 306, + 309, + 328, + 320 + ], + "score": 0.91, + "content": "\\beta \\left( q \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 328, + 307, + 455, + 322 + ], + "score": 1.0, + "content": "is monotonically increasing for", + "type": "text" + }, + { + "bbox": [ + 455, + 309, + 501, + 320 + ], + "score": 0.9, + "content": "0 \\leq q \\leq q _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 307, + 506, + 322 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 319, + 505, + 331 + ], + "spans": [ + { + "bbox": [ + 106, + 319, + 174, + 331 + ], + "score": 1.0, + "content": "and constant for", + "type": "text" + }, + { + "bbox": [ + 174, + 320, + 225, + 330 + ], + "score": 0.9, + "content": "q _ { 0 } < q \\leq 1", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 319, + 352, + 331 + ], + "score": 1.0, + "content": ". (Additionally, we require that", + "type": "text" + }, + { + "bbox": [ + 353, + 319, + 406, + 331 + ], + "score": 0.9, + "content": "\\mathrm { B _ { U } } ( q _ { 0 } ) < 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 319, + 505, + 331 + ], + "score": 1.0, + "content": ". Condition C6 requires", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 329, + 377, + 343 + ], + "spans": [ + { + "bbox": [ + 105, + 329, + 124, + 343 + ], + "score": 1.0, + "content": "that", + "type": "text" + }, + { + "bbox": [ + 124, + 330, + 243, + 343 + ], + "score": 0.9, + "content": "\\Delta \\beta ( q ) = \\beta ( \\mathrm { B } _ { \\mathrm { U } } ( q ) ) - \\beta ( q )", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 329, + 328, + 343 + ], + "score": 1.0, + "content": "is non-decreasing in", + "type": "text" + }, + { + "bbox": [ + 328, + 330, + 372, + 342 + ], + "score": 0.92, + "content": "[ 0 , \\mathrm { B _ { L } } ( q _ { 0 } ) ]", + "type": "inline_equation" + }, + { + "bbox": [ + 373, + 329, + 377, + 343 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13.5 + }, + { + "type": "text", + "bbox": [ + 106, + 347, + 504, + 370 + ], + "lines": [ + { + "bbox": [ + 106, + 346, + 504, + 359 + ], + "spans": [ + { + "bbox": [ + 106, + 346, + 471, + 359 + ], + "score": 1.0, + "content": "Rather than proving these statements analytically, we check these assumptions for any fixed", + "type": "text" + }, + { + "bbox": [ + 472, + 349, + 479, + 357 + ], + "score": 0.77, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 479, + 346, + 496, + 359 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 497, + 348, + 504, + 357 + ], + "score": 0.78, + "content": "\\lambda", + "type": "inline_equation" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 358, + 321, + 371 + ], + "spans": [ + { + "bbox": [ + 106, + 358, + 321, + 371 + ], + "score": 1.0, + "content": "via a combination of symbolic and numeric analyses.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5 + }, + { + "type": "text", + "bbox": [ + 107, + 374, + 505, + 408 + ], + "lines": [ + { + "bbox": [ + 104, + 374, + 505, + 388 + ], + "spans": [ + { + "bbox": [ + 104, + 374, + 331, + 388 + ], + "score": 1.0, + "content": "More concretely, we construct symbolic expressions for", + "type": "text" + }, + { + "bbox": [ + 331, + 375, + 352, + 387 + ], + "score": 0.91, + "content": "\\beta \\left( \\cdot \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 374, + 370, + 388 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 370, + 375, + 398, + 387 + ], + "score": 0.91, + "content": "\\Delta \\beta \\left( \\cdot \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 374, + 505, + 388 + ], + "score": 1.0, + "content": "and (symbolically) differ-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 385, + 505, + 400 + ], + "spans": [ + { + "bbox": [ + 105, + 385, + 413, + 400 + ], + "score": 1.0, + "content": "entiate them. We then minimize (numerically) the resulting expressions over", + "type": "text" + }, + { + "bbox": [ + 414, + 386, + 438, + 398 + ], + "score": 0.94, + "content": "[ 0 , q _ { 0 } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 438, + 385, + 456, + 400 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 456, + 386, + 501, + 398 + ], + "score": 0.92, + "content": "[ 0 , \\mathrm { B _ { L } } ( q _ { 0 } ) ]", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 385, + 505, + 400 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 396, + 351, + 409 + ], + "spans": [ + { + "bbox": [ + 106, + 396, + 351, + 409 + ], + "score": 1.0, + "content": "and verify that their minimal values are indeed non-negative.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19 + }, + { + "type": "title", + "bbox": [ + 107, + 421, + 387, + 433 + ], + "lines": [ + { + "bbox": [ + 106, + 421, + 388, + 434 + ], + "spans": [ + { + "bbox": [ + 106, + 421, + 388, + 434 + ], + "score": 1.0, + "content": "B.5 RÉNYI DIFFERENTIAL PRIVACY AND SMOOTH SENSITIVITY", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 106, + 441, + 505, + 486 + ], + "lines": [ + { + "bbox": [ + 105, + 441, + 506, + 455 + ], + "spans": [ + { + "bbox": [ + 105, + 441, + 506, + 455 + ], + "score": 1.0, + "content": "Although the procedure for computing a smooth sensitivity bound may be quite involved (such as", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 452, + 505, + 466 + ], + "spans": [ + { + "bbox": [ + 105, + 452, + 505, + 466 + ], + "score": 1.0, + "content": "Algorithms 3–5), its use in a differentially private data release is straightforward. Following Nissim", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 464, + 504, + 477 + ], + "spans": [ + { + "bbox": [ + 105, + 464, + 496, + 477 + ], + "score": 1.0, + "content": "et al. (2007), we define an additive Gaussian mechanism where the noise distribution is scaled by", + "type": "text" + }, + { + "bbox": [ + 497, + 466, + 504, + 474 + ], + "score": 0.73, + "content": "\\sigma", + "type": "inline_equation" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 475, + 237, + 487 + ], + "spans": [ + { + "bbox": [ + 106, + 475, + 237, + 487 + ], + "score": 1.0, + "content": "and a smooth sensitivity bound:", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 23.5 + }, + { + "type": "text", + "bbox": [ + 105, + 488, + 505, + 511 + ], + "lines": [ + { + "bbox": [ + 105, + 487, + 505, + 503 + ], + "spans": [ + { + "bbox": [ + 105, + 487, + 286, + 503 + ], + "score": 1.0, + "content": "Definition 22. Given a real-valued function", + "type": "text" + }, + { + "bbox": [ + 286, + 489, + 329, + 501 + ], + "score": 0.92, + "content": "f \\colon { \\mathcal { D } } \\mathbb { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 487, + 355, + 503 + ], + "score": 1.0, + "content": "and a", + "type": "text" + }, + { + "bbox": [ + 355, + 490, + 362, + 501 + ], + "score": 0.83, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 487, + 466, + 503 + ], + "score": 1.0, + "content": "-smooth sensitivity bound", + "type": "text" + }, + { + "bbox": [ + 466, + 489, + 488, + 501 + ], + "score": 0.35, + "content": "\\operatorname { S S } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 489, + 487, + 505, + 503 + ], + "score": 1.0, + "content": ", let", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 107, + 500, + 220, + 513 + ], + "spans": [ + { + "bbox": [ + 107, + 500, + 132, + 513 + ], + "score": 0.91, + "content": "( \\beta , \\sigma )", + "type": "inline_equation" + }, + { + "bbox": [ + 132, + 500, + 220, + 513 + ], + "score": 1.0, + "content": "-GNSS mechanism be", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5 + }, + { + "type": "interline_equation", + "bbox": [ + 226, + 516, + 385, + 532 + ], + "lines": [ + { + "bbox": [ + 226, + 516, + 385, + 532 + ], + "spans": [ + { + "bbox": [ + 226, + 516, + 385, + 532 + ], + "score": 0.9, + "content": "{ \\mathcal { F } } _ { \\sigma } ( D ) \\triangleq f ( D ) + \\operatorname { S S } _ { \\beta } ( D ) \\cdot { \\mathcal { N } } ( 0 , \\sigma ^ { 2 } ) .", + "type": "interline_equation", + "image_path": "3e487bd6badf792115f3a5bc6a4ef192a039e9492014e1de8d341f550f516c69.jpg" + } + ] + } + ], + "index": 28, + "virtual_lines": [ + { + "bbox": [ + 226, + 516, + 385, + 532 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 540, + 505, + 564 + ], + "lines": [ + { + "bbox": [ + 105, + 540, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 540, + 505, + 554 + ], + "score": 1.0, + "content": "We claim that this mechanism satisfies Rényi differential privacy for finite orders from a certain", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 104, + 551, + 135, + 566 + ], + "spans": [ + { + "bbox": [ + 104, + 551, + 135, + 566 + ], + "score": 1.0, + "content": "range.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5 + }, + { + "type": "text", + "bbox": [ + 106, + 565, + 385, + 578 + ], + "lines": [ + { + "bbox": [ + 106, + 565, + 383, + 579 + ], + "spans": [ + { + "bbox": [ + 106, + 565, + 183, + 579 + ], + "score": 1.0, + "content": "Theorem 23. The", + "type": "text" + }, + { + "bbox": [ + 183, + 566, + 208, + 578 + ], + "score": 0.91, + "content": "( \\beta , \\sigma )", + "type": "inline_equation" + }, + { + "bbox": [ + 208, + 565, + 284, + 579 + ], + "score": 1.0, + "content": "-GNSS mechanism", + "type": "text" + }, + { + "bbox": [ + 284, + 567, + 297, + 578 + ], + "score": 0.89, + "content": "{ \\mathcal { F } } _ { \\sigma }", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 565, + 308, + 579 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 308, + 567, + 331, + 578 + ], + "score": 0.9, + "content": "( \\lambda , \\varepsilon )", + "type": "inline_equation" + }, + { + "bbox": [ + 332, + 565, + 383, + 579 + ], + "score": 1.0, + "content": "-RDP, where", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "interline_equation", + "bbox": [ + 228, + 582, + 382, + 609 + ], + "lines": [ + { + "bbox": [ + 228, + 582, + 382, + 609 + ], + "spans": [ + { + "bbox": [ + 228, + 582, + 382, + 609 + ], + "score": 0.93, + "content": "\\varepsilon \\triangleq { \\frac { \\lambda \\cdot e ^ { 2 \\beta } } { \\sigma ^ { 2 } } } + { \\frac { \\beta \\lambda - 0 . 5 \\ln ( 1 - 2 \\lambda \\beta ) } { \\lambda - 1 } }", + "type": "interline_equation", + "image_path": "e07df1ad04294ea2f19d0d403bc4bd2b2b7927f5a0ca379ecd42e2badb7c31a6.jpg" + } + ] + } + ], + "index": 32, + "virtual_lines": [ + { + "bbox": [ + 228, + 582, + 382, + 609 + ], + "spans": [], + "index": 32 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 612, + 203, + 624 + ], + "lines": [ + { + "bbox": [ + 104, + 611, + 204, + 626 + ], + "spans": [ + { + "bbox": [ + 104, + 611, + 133, + 626 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 134, + 612, + 201, + 624 + ], + "score": 0.92, + "content": "1 < \\lambda < 1 / ( 2 \\beta )", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 611, + 204, + 626 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 107, + 635, + 504, + 659 + ], + "lines": [ + { + "bbox": [ + 105, + 635, + 505, + 649 + ], + "spans": [ + { + "bbox": [ + 105, + 635, + 278, + 649 + ], + "score": 1.0, + "content": "Proof. Consider two neighboring datasets", + "type": "text" + }, + { + "bbox": [ + 278, + 637, + 288, + 646 + ], + "score": 0.84, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 635, + 306, + 649 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 307, + 636, + 319, + 646 + ], + "score": 0.88, + "content": "D ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 319, + 635, + 450, + 649 + ], + "score": 1.0, + "content": ". The output distributions of the", + "type": "text" + }, + { + "bbox": [ + 450, + 636, + 474, + 648 + ], + "score": 0.92, + "content": "( \\beta , \\sigma )", + "type": "inline_equation" + }, + { + "bbox": [ + 475, + 635, + 505, + 649 + ], + "score": 1.0, + "content": "-GNSS", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 646, + 277, + 660 + ], + "spans": [ + { + "bbox": [ + 105, + 646, + 167, + 660 + ], + "score": 1.0, + "content": "mechanism on", + "type": "text" + }, + { + "bbox": [ + 167, + 648, + 177, + 657 + ], + "score": 0.83, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 177, + 646, + 195, + 660 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 195, + 648, + 207, + 657 + ], + "score": 0.88, + "content": "D ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 208, + 646, + 277, + 660 + ], + "score": 1.0, + "content": "are, respectively,", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5 + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 663, + 497, + 678 + ], + "lines": [ + { + "bbox": [ + 111, + 663, + 497, + 678 + ], + "spans": [ + { + "bbox": [ + 111, + 663, + 497, + 678 + ], + "score": 0.85, + "content": "P \\triangleq f ( D ) + \\mathrm { S S } _ { \\beta } ( D ) \\cdot { \\mathcal { N } } ( 0 , \\sigma ^ { 2 } ) = { \\mathcal { N } } ( f ( D ) , ( \\mathrm { S S } _ { \\beta } ( D ) \\sigma ) ^ { 2 } ) { \\mathrm { ~ a n d ~ } } Q \\triangleq { \\mathcal { N } } ( f ( D ^ { \\prime } ) , ( \\mathrm { S S } _ { \\beta } ( D ^ { \\prime } ) \\sigma ) ^ { 2 } ) .", + "type": "interline_equation", + "image_path": "14eb515b6e73df43657653069dccefb52bff376888351b95d0656aea26ac1b45.jpg" + } + ] + } + ], + "index": 36, + "virtual_lines": [ + { + "bbox": [ + 111, + 663, + 497, + 678 + ], + "spans": [], + "index": 36 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 681, + 504, + 704 + ], + "lines": [ + { + "bbox": [ + 106, + 681, + 505, + 694 + ], + "spans": [ + { + "bbox": [ + 106, + 681, + 505, + 694 + ], + "score": 1.0, + "content": "The Rényi divergence between two normal distributions can be computed in closed form (van Erven", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 692, + 194, + 705 + ], + "spans": [ + { + "bbox": [ + 106, + 692, + 194, + 705 + ], + "score": 1.0, + "content": "& Harremoës, 2014):", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37.5 + }, + { + "type": "interline_equation", + "bbox": [ + 161, + 707, + 449, + 735 + ], + "lines": [ + { + "bbox": [ + 161, + 707, + 449, + 735 + ], + "spans": [ + { + "bbox": [ + 161, + 707, + 449, + 735 + ], + "score": 0.91, + "content": "D _ { \\lambda } ( P \\| Q ) = \\lambda { \\frac { ( f ( D ) - f ( D ^ { \\prime } ) ) ^ { 2 } } { 2 \\sigma ^ { 2 } s ^ { 2 } } } + { \\frac { 1 } { 1 - \\lambda } } \\ln { \\frac { s } { { \\mathrm { S S } } _ { \\beta } ( D ) ^ { 1 - \\lambda } \\cdot { \\mathrm { S S } } _ { \\beta } ( D ^ { \\prime } ) ^ { \\lambda } } } ,", + "type": "interline_equation", + "image_path": "a54d7047c95a8e290ebe167790f64e87b3411e55860a96234b4ff609d0930e49.jpg" + } + ] + } + ], + "index": 39, + "virtual_lines": [ + { + "bbox": [ + 161, + 707, + 449, + 735 + ], + "spans": [], + "index": 39 + } + ] + } + ], + "page_idx": 30, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 26, + 293, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 39 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 39 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 298, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 298, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 14 + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 496, + 197, + 505, + 210 + ], + "lines": [ + { + "bbox": [ + 497, + 199, + 505, + 212 + ], + "spans": [ + { + "bbox": [ + 497, + 199, + 505, + 212 + ], + "score": 0.828, + "content": "■", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 504, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 260, + 96 + ], + "score": 1.0, + "content": "Since the expression is symmetric in", + "type": "text" + }, + { + "bbox": [ + 261, + 83, + 287, + 93 + ], + "score": 0.9, + "content": "i > 1", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 81, + 480, + 96 + ], + "score": 1.0, + "content": ", it means that the local optima are attained at", + "type": "text" + }, + { + "bbox": [ + 480, + 84, + 505, + 94 + ], + "score": 0.84, + "content": "x _ { 2 } =", + "type": "inline_equation" + } + ], + "index": 0 + }, + { + "bbox": [ + 107, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 107, + 95, + 149, + 105 + ], + "score": 0.85, + "content": "\\cdots = x _ { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 150, + 93, + 480, + 106 + ], + "score": 1.0, + "content": "(the second derivative confirms that these are local maxima). After solving for", + "type": "text" + }, + { + "bbox": [ + 480, + 95, + 505, + 106 + ], + "score": 0.85, + "content": "( m -", + "type": "inline_equation" + } + ], + "index": 1 + }, + { + "bbox": [ + 108, + 104, + 223, + 117 + ], + "spans": [ + { + "bbox": [ + 108, + 105, + 187, + 117 + ], + "score": 0.88, + "content": "1 ) \\operatorname { e r f c } ( x / 2 \\sigma ) = 2 q", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 104, + 223, + 117 + ], + "score": 1.0, + "content": "we have", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1, + "bbox_fs": [ + 105, + 81, + 505, + 117 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 209, + 119, + 402, + 147 + ], + "lines": [ + { + "bbox": [ + 209, + 119, + 402, + 147 + ], + "spans": [ + { + "bbox": [ + 209, + 119, + 402, + 147 + ], + "score": 0.94, + "content": "q ( \\bar { n } ^ { \\prime } ) \\leq \\frac { m - 1 } { 2 } \\mathrm { e r f c } \\left( \\mathrm { e r f c ^ { - 1 } } \\left( \\frac { 2 q } { m - 1 } \\right) - \\frac { 1 } { \\sigma } \\right) .", + "type": "interline_equation", + "image_path": "954a47d8f0473556818f5c73b15af652c16d18e39bd05fa295ee938074704cb1.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 209, + 119, + 402, + 147 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 151, + 286, + 162 + ], + "lines": [ + { + "bbox": [ + 106, + 149, + 286, + 164 + ], + "spans": [ + { + "bbox": [ + 106, + 149, + 133, + 164 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 153, + 144, + 161 + ], + "score": 0.78, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 149, + 286, + 164 + ], + "score": 1.0, + "content": "is the number of classes. Similarly,", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4, + "bbox_fs": [ + 106, + 149, + 286, + 164 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 209, + 165, + 402, + 194 + ], + "lines": [ + { + "bbox": [ + 209, + 165, + 402, + 194 + ], + "spans": [ + { + "bbox": [ + 209, + 165, + 402, + 194 + ], + "score": 0.93, + "content": "q ( \\bar { n } ^ { \\prime } ) \\geq \\frac { m - 1 } { 2 } \\mathrm { e r f c } \\left( \\mathrm { e r f c ^ { - 1 } } \\left( \\frac { 2 q } { m - 1 } \\right) + \\frac { 1 } { \\sigma } \\right) .", + "type": "interline_equation", + "image_path": "ed3718159ea1135242ea8c1435901f1ca18e0f871acb2bf82df56fb6363f23dc.jpg" + } + ] + } + ], + "index": 5.5, + "virtual_lines": [ + { + "bbox": [ + 209, + 165, + 402, + 179.5 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 209, + 179.5, + 402, + 194.0 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 221, + 505, + 267 + ], + "lines": [ + { + "bbox": [ + 105, + 220, + 505, + 235 + ], + "spans": [ + { + "bbox": [ + 105, + 220, + 187, + 235 + ], + "score": 1.0, + "content": "Conditions C3, i.e.,", + "type": "text" + }, + { + "bbox": [ + 187, + 222, + 213, + 234 + ], + "score": 0.93, + "content": "\\operatorname { B _ { L } } ( q )", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 220, + 338, + 235 + ], + "score": 1.0, + "content": "is monotonically increasing in", + "type": "text" + }, + { + "bbox": [ + 338, + 224, + 344, + 233 + ], + "score": 0.78, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 220, + 365, + 235 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 365, + 222, + 378, + 232 + ], + "score": 0.27, + "content": "\\mathrm { C 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 220, + 399, + 235 + ], + "score": 1.0, + "content": ", i.e.,", + "type": "text" + }, + { + "bbox": [ + 399, + 222, + 413, + 233 + ], + "score": 0.88, + "content": "\\mathrm { B _ { L } }", + "type": "inline_equation" + }, + { + "bbox": [ + 413, + 220, + 431, + 235 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 431, + 222, + 446, + 233 + ], + "score": 0.87, + "content": "\\mathrm { B _ { U } }", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 220, + 505, + 235 + ], + "score": 1.0, + "content": "are functional", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 232, + 506, + 245 + ], + "spans": [ + { + "bbox": [ + 105, + 232, + 212, + 245 + ], + "score": 1.0, + "content": "inverses of each other in", + "type": "text" + }, + { + "bbox": [ + 212, + 233, + 237, + 245 + ], + "score": 0.93, + "content": "[ 0 , q _ { 0 } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 232, + 258, + 245 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 258, + 232, + 350, + 244 + ], + "score": 0.89, + "content": "\\mathrm { B } _ { \\mathrm { L } } ( { \\dot { q } } ) \\leq q \\leq \\mathbf { \\bar { B } } _ { \\mathrm { U } } ( { \\dot { q } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 351, + 232, + 381, + 245 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 382, + 233, + 424, + 244 + ], + "score": 0.91, + "content": "q \\in [ 0 , 1 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 424, + 232, + 506, + 245 + ], + "score": 1.0, + "content": ", follow from basic", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 244, + 505, + 256 + ], + "spans": [ + { + "bbox": [ + 105, + 244, + 258, + 256 + ], + "score": 1.0, + "content": "properties of erfc. The restriction that", + "type": "text" + }, + { + "bbox": [ + 258, + 244, + 300, + 255 + ], + "score": 0.92, + "content": "q \\in [ 0 , q _ { 0 } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 244, + 351, + 256 + ], + "score": 1.0, + "content": "ensures that", + "type": "text" + }, + { + "bbox": [ + 351, + 244, + 378, + 255 + ], + "score": 0.91, + "content": "\\operatorname { B _ { U } } ( q )", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 244, + 505, + 256 + ], + "score": 1.0, + "content": "is strictly less than one, and the", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 254, + 426, + 268 + ], + "spans": [ + { + "bbox": [ + 105, + 254, + 224, + 268 + ], + "score": 1.0, + "content": "minimum in the definition of", + "type": "text" + }, + { + "bbox": [ + 225, + 255, + 249, + 267 + ], + "score": 0.9, + "content": "\\operatorname { B _ { U } } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 254, + 426, + 268 + ], + "score": 1.0, + "content": "simplifies to its first argument in this range.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 8.5, + "bbox_fs": [ + 105, + 220, + 506, + 268 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 277, + 248, + 289 + ], + "lines": [ + { + "bbox": [ + 105, + 276, + 250, + 290 + ], + "spans": [ + { + "bbox": [ + 105, + 276, + 250, + 290 + ], + "score": 1.0, + "content": "B.4.2 CONDITIONS C5 AND C6", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 106, + 296, + 505, + 343 + ], + "lines": [ + { + "bbox": [ + 105, + 296, + 506, + 311 + ], + "spans": [ + { + "bbox": [ + 105, + 296, + 302, + 311 + ], + "score": 1.0, + "content": "Conditions C5 and C6 stipulate that the function", + "type": "text" + }, + { + "bbox": [ + 302, + 297, + 362, + 309 + ], + "score": 0.91, + "content": "\\beta ( q ) \\triangleq \\beta _ { \\sigma } ( q )", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 296, + 506, + 311 + ], + "score": 1.0, + "content": "(defined in Appendix A) exhibits a", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 104, + 307, + 506, + 322 + ], + "spans": [ + { + "bbox": [ + 104, + 307, + 306, + 322 + ], + "score": 1.0, + "content": "specific growth pattern. Concretely, C5 states that", + "type": "text" + }, + { + "bbox": [ + 306, + 309, + 328, + 320 + ], + "score": 0.91, + "content": "\\beta \\left( q \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 328, + 307, + 455, + 322 + ], + "score": 1.0, + "content": "is monotonically increasing for", + "type": "text" + }, + { + "bbox": [ + 455, + 309, + 501, + 320 + ], + "score": 0.9, + "content": "0 \\leq q \\leq q _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 307, + 506, + 322 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 319, + 505, + 331 + ], + "spans": [ + { + "bbox": [ + 106, + 319, + 174, + 331 + ], + "score": 1.0, + "content": "and constant for", + "type": "text" + }, + { + "bbox": [ + 174, + 320, + 225, + 330 + ], + "score": 0.9, + "content": "q _ { 0 } < q \\leq 1", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 319, + 352, + 331 + ], + "score": 1.0, + "content": ". (Additionally, we require that", + "type": "text" + }, + { + "bbox": [ + 353, + 319, + 406, + 331 + ], + "score": 0.9, + "content": "\\mathrm { B _ { U } } ( q _ { 0 } ) < 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 319, + 505, + 331 + ], + "score": 1.0, + "content": ". Condition C6 requires", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 329, + 377, + 343 + ], + "spans": [ + { + "bbox": [ + 105, + 329, + 124, + 343 + ], + "score": 1.0, + "content": "that", + "type": "text" + }, + { + "bbox": [ + 124, + 330, + 243, + 343 + ], + "score": 0.9, + "content": "\\Delta \\beta ( q ) = \\beta ( \\mathrm { B } _ { \\mathrm { U } } ( q ) ) - \\beta ( q )", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 329, + 328, + 343 + ], + "score": 1.0, + "content": "is non-decreasing in", + "type": "text" + }, + { + "bbox": [ + 328, + 330, + 372, + 342 + ], + "score": 0.92, + "content": "[ 0 , \\mathrm { B _ { L } } ( q _ { 0 } ) ]", + "type": "inline_equation" + }, + { + "bbox": [ + 373, + 329, + 377, + 343 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13.5, + "bbox_fs": [ + 104, + 296, + 506, + 343 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 347, + 504, + 370 + ], + "lines": [ + { + "bbox": [ + 106, + 346, + 504, + 359 + ], + "spans": [ + { + "bbox": [ + 106, + 346, + 471, + 359 + ], + "score": 1.0, + "content": "Rather than proving these statements analytically, we check these assumptions for any fixed", + "type": "text" + }, + { + "bbox": [ + 472, + 349, + 479, + 357 + ], + "score": 0.77, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 479, + 346, + 496, + 359 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 497, + 348, + 504, + 357 + ], + "score": 0.78, + "content": "\\lambda", + "type": "inline_equation" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 358, + 321, + 371 + ], + "spans": [ + { + "bbox": [ + 106, + 358, + 321, + 371 + ], + "score": 1.0, + "content": "via a combination of symbolic and numeric analyses.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5, + "bbox_fs": [ + 106, + 346, + 504, + 371 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 374, + 505, + 408 + ], + "lines": [ + { + "bbox": [ + 104, + 374, + 505, + 388 + ], + "spans": [ + { + "bbox": [ + 104, + 374, + 331, + 388 + ], + "score": 1.0, + "content": "More concretely, we construct symbolic expressions for", + "type": "text" + }, + { + "bbox": [ + 331, + 375, + 352, + 387 + ], + "score": 0.91, + "content": "\\beta \\left( \\cdot \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 374, + 370, + 388 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 370, + 375, + 398, + 387 + ], + "score": 0.91, + "content": "\\Delta \\beta \\left( \\cdot \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 374, + 505, + 388 + ], + "score": 1.0, + "content": "and (symbolically) differ-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 385, + 505, + 400 + ], + "spans": [ + { + "bbox": [ + 105, + 385, + 413, + 400 + ], + "score": 1.0, + "content": "entiate them. We then minimize (numerically) the resulting expressions over", + "type": "text" + }, + { + "bbox": [ + 414, + 386, + 438, + 398 + ], + "score": 0.94, + "content": "[ 0 , q _ { 0 } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 438, + 385, + 456, + 400 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 456, + 386, + 501, + 398 + ], + "score": 0.92, + "content": "[ 0 , \\mathrm { B _ { L } } ( q _ { 0 } ) ]", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 385, + 505, + 400 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 396, + 351, + 409 + ], + "spans": [ + { + "bbox": [ + 106, + 396, + 351, + 409 + ], + "score": 1.0, + "content": "and verify that their minimal values are indeed non-negative.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19, + "bbox_fs": [ + 104, + 374, + 505, + 409 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 421, + 387, + 433 + ], + "lines": [ + { + "bbox": [ + 106, + 421, + 388, + 434 + ], + "spans": [ + { + "bbox": [ + 106, + 421, + 388, + 434 + ], + "score": 1.0, + "content": "B.5 RÉNYI DIFFERENTIAL PRIVACY AND SMOOTH SENSITIVITY", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 106, + 441, + 505, + 486 + ], + "lines": [ + { + "bbox": [ + 105, + 441, + 506, + 455 + ], + "spans": [ + { + "bbox": [ + 105, + 441, + 506, + 455 + ], + "score": 1.0, + "content": "Although the procedure for computing a smooth sensitivity bound may be quite involved (such as", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 452, + 505, + 466 + ], + "spans": [ + { + "bbox": [ + 105, + 452, + 505, + 466 + ], + "score": 1.0, + "content": "Algorithms 3–5), its use in a differentially private data release is straightforward. Following Nissim", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 464, + 504, + 477 + ], + "spans": [ + { + "bbox": [ + 105, + 464, + 496, + 477 + ], + "score": 1.0, + "content": "et al. (2007), we define an additive Gaussian mechanism where the noise distribution is scaled by", + "type": "text" + }, + { + "bbox": [ + 497, + 466, + 504, + 474 + ], + "score": 0.73, + "content": "\\sigma", + "type": "inline_equation" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 475, + 237, + 487 + ], + "spans": [ + { + "bbox": [ + 106, + 475, + 237, + 487 + ], + "score": 1.0, + "content": "and a smooth sensitivity bound:", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 23.5, + "bbox_fs": [ + 105, + 441, + 506, + 487 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 488, + 505, + 511 + ], + "lines": [ + { + "bbox": [ + 105, + 487, + 505, + 503 + ], + "spans": [ + { + "bbox": [ + 105, + 487, + 286, + 503 + ], + "score": 1.0, + "content": "Definition 22. Given a real-valued function", + "type": "text" + }, + { + "bbox": [ + 286, + 489, + 329, + 501 + ], + "score": 0.92, + "content": "f \\colon { \\mathcal { D } } \\mathbb { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 487, + 355, + 503 + ], + "score": 1.0, + "content": "and a", + "type": "text" + }, + { + "bbox": [ + 355, + 490, + 362, + 501 + ], + "score": 0.83, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 487, + 466, + 503 + ], + "score": 1.0, + "content": "-smooth sensitivity bound", + "type": "text" + }, + { + "bbox": [ + 466, + 489, + 488, + 501 + ], + "score": 0.35, + "content": "\\operatorname { S S } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 489, + 487, + 505, + 503 + ], + "score": 1.0, + "content": ", let", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 107, + 500, + 220, + 513 + ], + "spans": [ + { + "bbox": [ + 107, + 500, + 132, + 513 + ], + "score": 0.91, + "content": "( \\beta , \\sigma )", + "type": "inline_equation" + }, + { + "bbox": [ + 132, + 500, + 220, + 513 + ], + "score": 1.0, + "content": "-GNSS mechanism be", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5, + "bbox_fs": [ + 105, + 487, + 505, + 513 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 226, + 516, + 385, + 532 + ], + "lines": [ + { + "bbox": [ + 226, + 516, + 385, + 532 + ], + "spans": [ + { + "bbox": [ + 226, + 516, + 385, + 532 + ], + "score": 0.9, + "content": "{ \\mathcal { F } } _ { \\sigma } ( D ) \\triangleq f ( D ) + \\operatorname { S S } _ { \\beta } ( D ) \\cdot { \\mathcal { N } } ( 0 , \\sigma ^ { 2 } ) .", + "type": "interline_equation", + "image_path": "3e487bd6badf792115f3a5bc6a4ef192a039e9492014e1de8d341f550f516c69.jpg" + } + ] + } + ], + "index": 28, + "virtual_lines": [ + { + "bbox": [ + 226, + 516, + 385, + 532 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 540, + 505, + 564 + ], + "lines": [ + { + "bbox": [ + 105, + 540, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 540, + 505, + 554 + ], + "score": 1.0, + "content": "We claim that this mechanism satisfies Rényi differential privacy for finite orders from a certain", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 104, + 551, + 135, + 566 + ], + "spans": [ + { + "bbox": [ + 104, + 551, + 135, + 566 + ], + "score": 1.0, + "content": "range.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5, + "bbox_fs": [ + 104, + 540, + 505, + 566 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 565, + 385, + 578 + ], + "lines": [ + { + "bbox": [ + 106, + 565, + 383, + 579 + ], + "spans": [ + { + "bbox": [ + 106, + 565, + 183, + 579 + ], + "score": 1.0, + "content": "Theorem 23. The", + "type": "text" + }, + { + "bbox": [ + 183, + 566, + 208, + 578 + ], + "score": 0.91, + "content": "( \\beta , \\sigma )", + "type": "inline_equation" + }, + { + "bbox": [ + 208, + 565, + 284, + 579 + ], + "score": 1.0, + "content": "-GNSS mechanism", + "type": "text" + }, + { + "bbox": [ + 284, + 567, + 297, + 578 + ], + "score": 0.89, + "content": "{ \\mathcal { F } } _ { \\sigma }", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 565, + 308, + 579 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 308, + 567, + 331, + 578 + ], + "score": 0.9, + "content": "( \\lambda , \\varepsilon )", + "type": "inline_equation" + }, + { + "bbox": [ + 332, + 565, + 383, + 579 + ], + "score": 1.0, + "content": "-RDP, where", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31, + "bbox_fs": [ + 106, + 565, + 383, + 579 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 228, + 582, + 382, + 609 + ], + "lines": [ + { + "bbox": [ + 228, + 582, + 382, + 609 + ], + "spans": [ + { + "bbox": [ + 228, + 582, + 382, + 609 + ], + "score": 0.93, + "content": "\\varepsilon \\triangleq { \\frac { \\lambda \\cdot e ^ { 2 \\beta } } { \\sigma ^ { 2 } } } + { \\frac { \\beta \\lambda - 0 . 5 \\ln ( 1 - 2 \\lambda \\beta ) } { \\lambda - 1 } }", + "type": "interline_equation", + "image_path": "e07df1ad04294ea2f19d0d403bc4bd2b2b7927f5a0ca379ecd42e2badb7c31a6.jpg" + } + ] + } + ], + "index": 32, + "virtual_lines": [ + { + "bbox": [ + 228, + 582, + 382, + 609 + ], + "spans": [], + "index": 32 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 612, + 203, + 624 + ], + "lines": [ + { + "bbox": [ + 104, + 611, + 204, + 626 + ], + "spans": [ + { + "bbox": [ + 104, + 611, + 133, + 626 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 134, + 612, + 201, + 624 + ], + "score": 0.92, + "content": "1 < \\lambda < 1 / ( 2 \\beta )", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 611, + 204, + 626 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33, + "bbox_fs": [ + 104, + 611, + 204, + 626 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 635, + 504, + 659 + ], + "lines": [ + { + "bbox": [ + 105, + 635, + 505, + 649 + ], + "spans": [ + { + "bbox": [ + 105, + 635, + 278, + 649 + ], + "score": 1.0, + "content": "Proof. Consider two neighboring datasets", + "type": "text" + }, + { + "bbox": [ + 278, + 637, + 288, + 646 + ], + "score": 0.84, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 635, + 306, + 649 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 307, + 636, + 319, + 646 + ], + "score": 0.88, + "content": "D ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 319, + 635, + 450, + 649 + ], + "score": 1.0, + "content": ". The output distributions of the", + "type": "text" + }, + { + "bbox": [ + 450, + 636, + 474, + 648 + ], + "score": 0.92, + "content": "( \\beta , \\sigma )", + "type": "inline_equation" + }, + { + "bbox": [ + 475, + 635, + 505, + 649 + ], + "score": 1.0, + "content": "-GNSS", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 646, + 277, + 660 + ], + "spans": [ + { + "bbox": [ + 105, + 646, + 167, + 660 + ], + "score": 1.0, + "content": "mechanism on", + "type": "text" + }, + { + "bbox": [ + 167, + 648, + 177, + 657 + ], + "score": 0.83, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 177, + 646, + 195, + 660 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 195, + 648, + 207, + 657 + ], + "score": 0.88, + "content": "D ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 208, + 646, + 277, + 660 + ], + "score": 1.0, + "content": "are, respectively,", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5, + "bbox_fs": [ + 105, + 635, + 505, + 660 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 663, + 497, + 678 + ], + "lines": [ + { + "bbox": [ + 111, + 663, + 497, + 678 + ], + "spans": [ + { + "bbox": [ + 111, + 663, + 497, + 678 + ], + "score": 0.85, + "content": "P \\triangleq f ( D ) + \\mathrm { S S } _ { \\beta } ( D ) \\cdot { \\mathcal { N } } ( 0 , \\sigma ^ { 2 } ) = { \\mathcal { N } } ( f ( D ) , ( \\mathrm { S S } _ { \\beta } ( D ) \\sigma ) ^ { 2 } ) { \\mathrm { ~ a n d ~ } } Q \\triangleq { \\mathcal { N } } ( f ( D ^ { \\prime } ) , ( \\mathrm { S S } _ { \\beta } ( D ^ { \\prime } ) \\sigma ) ^ { 2 } ) .", + "type": "interline_equation", + "image_path": "14eb515b6e73df43657653069dccefb52bff376888351b95d0656aea26ac1b45.jpg" + } + ] + } + ], + "index": 36, + "virtual_lines": [ + { + "bbox": [ + 111, + 663, + 497, + 678 + ], + "spans": [], + "index": 36 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 681, + 504, + 704 + ], + "lines": [ + { + "bbox": [ + 106, + 681, + 505, + 694 + ], + "spans": [ + { + "bbox": [ + 106, + 681, + 505, + 694 + ], + "score": 1.0, + "content": "The Rényi divergence between two normal distributions can be computed in closed form (van Erven", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 692, + 194, + 705 + ], + "spans": [ + { + "bbox": [ + 106, + 692, + 194, + 705 + ], + "score": 1.0, + "content": "& Harremoës, 2014):", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37.5, + "bbox_fs": [ + 106, + 681, + 505, + 705 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 161, + 707, + 449, + 735 + ], + "lines": [ + { + "bbox": [ + 161, + 707, + 449, + 735 + ], + "spans": [ + { + "bbox": [ + 161, + 707, + 449, + 735 + ], + "score": 0.91, + "content": "D _ { \\lambda } ( P \\| Q ) = \\lambda { \\frac { ( f ( D ) - f ( D ^ { \\prime } ) ) ^ { 2 } } { 2 \\sigma ^ { 2 } s ^ { 2 } } } + { \\frac { 1 } { 1 - \\lambda } } \\ln { \\frac { s } { { \\mathrm { S S } } _ { \\beta } ( D ) ^ { 1 - \\lambda } \\cdot { \\mathrm { S S } } _ { \\beta } ( D ^ { \\prime } ) ^ { \\lambda } } } ,", + "type": "interline_equation", + "image_path": "a54d7047c95a8e290ebe167790f64e87b3411e55860a96234b4ff609d0930e49.jpg" + } + ] + } + ], + "index": 39, + "virtual_lines": [ + { + "bbox": [ + 161, + 707, + 449, + 735 + ], + "spans": [], + "index": 39 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 81, + 330, + 95 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 329, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 144, + 96 + ], + "score": 1.0, + "content": "provided", + "type": "text" + }, + { + "bbox": [ + 144, + 81, + 329, + 95 + ], + "score": 0.89, + "content": "s ^ { 2 } \\triangleq ( 1 - \\lambda ) \\cdot \\mathrm { S S } _ { \\beta } ( D ) ^ { 2 } + \\lambda \\cdot \\mathrm { S S } _ { \\beta } ( D ^ { \\prime } ) ^ { 2 } > 0 .", + "type": "inline_equation" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 99, + 365, + 111 + ], + "lines": [ + { + "bbox": [ + 106, + 98, + 364, + 113 + ], + "spans": [ + { + "bbox": [ + 106, + 98, + 364, + 113 + ], + "score": 1.0, + "content": "According to the definition of smooth sensitivity (Definition 12)", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1 + }, + { + "type": "interline_equation", + "bbox": [ + 218, + 113, + 392, + 129 + ], + "lines": [ + { + "bbox": [ + 218, + 113, + 392, + 129 + ], + "spans": [ + { + "bbox": [ + 218, + 113, + 392, + 129 + ], + "score": 0.89, + "content": "e ^ { - \\beta } \\cdot \\mathrm { S S } _ { \\beta } ( D ) \\leq \\mathrm { S S } _ { \\beta } ( D ^ { \\prime } ) \\leq e ^ { \\beta } \\cdot \\mathrm { S S } _ { \\beta } ( D ) ,", + "type": "interline_equation", + "image_path": "e5c78a41023b079d2c30eba19f297b40bb24767ed1b6d5da45139fcc1b7491c3.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 218, + 113, + 392, + 129 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 132, + 123, + 143 + ], + "lines": [ + { + "bbox": [ + 105, + 132, + 123, + 143 + ], + "spans": [ + { + "bbox": [ + 105, + 132, + 123, + 143 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + }, + { + "type": "interline_equation", + "bbox": [ + 208, + 145, + 403, + 160 + ], + "lines": [ + { + "bbox": [ + 208, + 145, + 403, + 160 + ], + "spans": [ + { + "bbox": [ + 208, + 145, + 403, + 160 + ], + "score": 0.91, + "content": "| f ( D ) - f ( D ^ { \\prime } ) | \\leq e ^ { \\beta } \\cdot \\operatorname * { m i n } ( \\mathrm { S S } _ { \\beta } ( D ) , \\mathrm { S S } _ { \\beta } ( D ^ { \\prime } ) ) .", + "type": "interline_equation", + "image_path": "b4d0e3d37c589724658cf5c188624eb6e2dda1cad7bf46096f8b8db6fd45a0f8.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 208, + 145, + 403, + 160 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 168, + 382, + 181 + ], + "lines": [ + { + "bbox": [ + 106, + 168, + 383, + 182 + ], + "spans": [ + { + "bbox": [ + 106, + 168, + 282, + 182 + ], + "score": 1.0, + "content": "Bound (12) together with the condition that", + "type": "text" + }, + { + "bbox": [ + 282, + 169, + 331, + 181 + ], + "score": 0.93, + "content": "\\lambda \\le 1 / ( 2 \\beta )", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 168, + 383, + 182 + ], + "score": 1.0, + "content": "implies that", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "interline_equation", + "bbox": [ + 116, + 186, + 478, + 220 + ], + "lines": [ + { + "bbox": [ + 116, + 186, + 478, + 220 + ], + "spans": [ + { + "bbox": [ + 116, + 186, + 478, + 220 + ], + "score": 0.92, + "content": "\\begin{array} { r l } & { s ^ { 2 } = ( 1 - \\lambda ) \\cdot \\operatorname { S S } _ { \\beta } ( D ) ^ { 2 } + \\lambda \\cdot \\operatorname { S S } _ { \\beta } ( D ^ { \\prime } ) ^ { 2 } = \\operatorname { S S } _ { \\beta } ( D ) ^ { 2 } + \\lambda ( \\operatorname { S S } _ { \\beta } ( D ^ { \\prime } ) ^ { 2 } - \\operatorname { S S } _ { \\beta } ( D ) ^ { 2 } ) } \\\\ & { \\qquad \\geq \\operatorname { S S } _ { \\beta } ( D ) ^ { 2 } ( 1 + \\lambda ( e ^ { - 2 \\beta } - 1 ) ) \\geq \\operatorname { S S } _ { \\beta } ( D ) ^ { 2 } ( 1 - 2 \\lambda \\beta ) > 0 . } \\end{array}", + "type": "interline_equation", + "image_path": "cf629b8468c5c23b06e8d1786b1e118922396effaadac83c760c6857a9a77a8c.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 116, + 186, + 478, + 197.33333333333334 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 116, + 197.33333333333334, + 478, + 208.66666666666669 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 116, + 208.66666666666669, + 478, + 220.00000000000003 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 222, + 505, + 245 + ], + "lines": [ + { + "bbox": [ + 105, + 221, + 505, + 235 + ], + "spans": [ + { + "bbox": [ + 105, + 221, + 250, + 235 + ], + "score": 1.0, + "content": "The above lower bound ensures that", + "type": "text" + }, + { + "bbox": [ + 251, + 222, + 261, + 232 + ], + "score": 0.88, + "content": "s ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 221, + 505, + 235 + ], + "score": 1.0, + "content": "is well-defined, i.e., non-negative, as required for application", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 104, + 232, + 141, + 247 + ], + "spans": [ + { + "bbox": [ + 104, + 232, + 141, + 247 + ], + "score": 1.0, + "content": "of (11).", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5 + }, + { + "type": "text", + "bbox": [ + 108, + 250, + 284, + 262 + ], + "lines": [ + { + "bbox": [ + 107, + 250, + 284, + 263 + ], + "spans": [ + { + "bbox": [ + 107, + 250, + 284, + 263 + ], + "score": 1.0, + "content": "Combining bounds (12)– (14), we have that", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "interline_equation", + "bbox": [ + 129, + 264, + 482, + 294 + ], + "lines": [ + { + "bbox": [ + 129, + 264, + 482, + 294 + ], + "spans": [ + { + "bbox": [ + 129, + 264, + 482, + 294 + ], + "score": 0.92, + "content": "D _ { \\lambda } ( P \\| Q ) \\le \\frac { \\lambda \\cdot e ^ { 2 \\beta } } { \\sigma ^ { 2 } } + \\frac { 1 } { 1 - \\lambda } \\ln \\left\\{ \\frac { s } { \\mathrm { S S } _ { \\beta } ( D ) } e ^ { - \\lambda \\beta } \\right\\} \\le \\frac { \\lambda \\cdot e ^ { 2 \\beta } } { \\sigma ^ { 2 } } + \\frac { \\beta \\lambda - 0 . 5 \\ln ( 1 - 2 \\lambda \\beta ) } { \\lambda - 1 }", + "type": "interline_equation", + "image_path": "fad5b31055042de57c3e12099a9f7705061fb28160c93dd285e078026cbda7e3.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 129, + 264, + 482, + 274.0 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 129, + 274.0, + 482, + 284.0 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 129, + 284.0, + 482, + 294.0 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 297, + 153, + 308 + ], + "lines": [ + { + "bbox": [ + 106, + 297, + 153, + 309 + ], + "spans": [ + { + "bbox": [ + 106, + 297, + 153, + 309 + ], + "score": 1.0, + "content": "as claimed.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 106, + 319, + 505, + 365 + ], + "lines": [ + { + "bbox": [ + 105, + 320, + 505, + 333 + ], + "spans": [ + { + "bbox": [ + 105, + 320, + 153, + 333 + ], + "score": 1.0, + "content": "Note that if", + "type": "text" + }, + { + "bbox": [ + 153, + 321, + 180, + 331 + ], + "score": 0.78, + "content": "\\lambda \\gg 1", + "type": "inline_equation" + }, + { + "bbox": [ + 180, + 320, + 183, + 333 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 183, + 321, + 212, + 331 + ], + "score": 0.76, + "content": "\\sigma \\ll \\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 320, + 231, + 333 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 232, + 320, + 282, + 332 + ], + "score": 0.92, + "content": "\\beta \\ll 1 / ( 2 \\lambda )", + "type": "inline_equation" + }, + { + "bbox": [ + 283, + 320, + 306, + 333 + ], + "score": 1.0, + "content": ", then", + "type": "text" + }, + { + "bbox": [ + 306, + 320, + 331, + 333 + ], + "score": 0.91, + "content": "( \\beta , \\sigma )", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 320, + 394, + 333 + ], + "score": 1.0, + "content": "-GNSS satisfies", + "type": "text" + }, + { + "bbox": [ + 394, + 320, + 454, + 333 + ], + "score": 0.9, + "content": "( \\lambda , ( \\lambda { + } 1 ) / \\sigma ^ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 455, + 320, + 505, + 333 + ], + "score": 1.0, + "content": "-RDP. Com-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 331, + 505, + 344 + ], + "spans": [ + { + "bbox": [ + 105, + 331, + 460, + 344 + ], + "score": 1.0, + "content": "pare this with RDP analysis of the standard additive Gaussian mechanism, which satisfies", + "type": "text" + }, + { + "bbox": [ + 461, + 331, + 500, + 344 + ], + "score": 0.92, + "content": "( \\lambda , \\lambda / \\sigma ^ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 500, + 331, + 505, + 344 + ], + "score": 1.0, + "content": "-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 342, + 506, + 356 + ], + "spans": [ + { + "bbox": [ + 105, + 342, + 506, + 356 + ], + "score": 1.0, + "content": "RDP. The difference is that GNSS scales noise in proportion to smooth sensitivity, which is no larger", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 353, + 299, + 366 + ], + "spans": [ + { + "bbox": [ + 105, + 353, + 299, + 366 + ], + "score": 1.0, + "content": "and can be much smaller than global sensitivity.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 17.5 + }, + { + "type": "title", + "bbox": [ + 108, + 377, + 402, + 389 + ], + "lines": [ + { + "bbox": [ + 106, + 377, + 403, + 390 + ], + "spans": [ + { + "bbox": [ + 106, + 377, + 403, + 390 + ], + "score": 1.0, + "content": "B.6 PUTTING IT ALL TOGETHER: APPLYING SMOOTH SENSITIVITY", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 106, + 398, + 505, + 465 + ], + "lines": [ + { + "bbox": [ + 105, + 397, + 505, + 412 + ], + "spans": [ + { + "bbox": [ + 105, + 397, + 505, + 412 + ], + "score": 1.0, + "content": "Recall our initial motivation for the smooth sensitivity analysis: enabling privacy-preserving re-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 410, + 505, + 423 + ], + "spans": [ + { + "bbox": [ + 105, + 410, + 505, + 423 + ], + "score": 1.0, + "content": "lease of data-dependent privacy guarantees. Indeed, these guarantees vary greatly between queries", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 421, + 504, + 433 + ], + "spans": [ + { + "bbox": [ + 106, + 421, + 504, + 433 + ], + "score": 1.0, + "content": "(see Figure 5) and are typically much smaller than data-independent privacy bounds. Since data-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 431, + 505, + 444 + ], + "spans": [ + { + "bbox": [ + 106, + 431, + 505, + 444 + ], + "score": 1.0, + "content": "dependent bounds may leak information about underlying data, publishing the bounds themselves", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 443, + 506, + 456 + ], + "spans": [ + { + "bbox": [ + 105, + 443, + 506, + 456 + ], + "score": 1.0, + "content": "requires a differentially private mechanism. As we explain shortly, smooth sensitivity analysis is a", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 453, + 199, + 464 + ], + "spans": [ + { + "bbox": [ + 106, + 453, + 199, + 464 + ], + "score": 1.0, + "content": "natural fit for this task.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 23.5 + }, + { + "type": "text", + "bbox": [ + 106, + 470, + 505, + 536 + ], + "lines": [ + { + "bbox": [ + 106, + 470, + 505, + 482 + ], + "spans": [ + { + "bbox": [ + 106, + 470, + 505, + 482 + ], + "score": 1.0, + "content": "We first consider the standard additive noise mechanism where the noise (such as Laplace or Gaus-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 481, + 505, + 494 + ], + "spans": [ + { + "bbox": [ + 105, + 481, + 505, + 494 + ], + "score": 1.0, + "content": "sian) is calibrated to the global sensitivity of the function we would like to make differentially", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 104, + 492, + 506, + 505 + ], + "spans": [ + { + "bbox": [ + 104, + 492, + 439, + 505 + ], + "score": 1.0, + "content": "private. We know that Rényi differential privacy is additive for any fixed order", + "type": "text" + }, + { + "bbox": [ + 439, + 493, + 447, + 502 + ], + "score": 0.71, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 492, + 506, + 505 + ], + "score": 1.0, + "content": ", and thus the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 504, + 504, + 515 + ], + "spans": [ + { + "bbox": [ + 106, + 504, + 504, + 515 + ], + "score": 1.0, + "content": "cumulative RDP cost is the sum of RDP costs of individual queries each upper bounded by a data-", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 514, + 506, + 527 + ], + "spans": [ + { + "bbox": [ + 106, + 514, + 506, + 527 + ], + "score": 1.0, + "content": "independent bound. Thus, it might be tempting to use the standard additive noise mechanism for", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 525, + 300, + 537 + ], + "spans": [ + { + "bbox": [ + 105, + 525, + 300, + 537 + ], + "score": 1.0, + "content": "sanitizing the total, but that would be a mistake.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 29.5 + }, + { + "type": "text", + "bbox": [ + 106, + 541, + 505, + 612 + ], + "lines": [ + { + "bbox": [ + 105, + 541, + 506, + 556 + ], + "spans": [ + { + "bbox": [ + 105, + 541, + 290, + 556 + ], + "score": 1.0, + "content": "To see why, consider a sequence of queries", + "type": "text" + }, + { + "bbox": [ + 291, + 543, + 335, + 553 + ], + "score": 0.9, + "content": "\\bar { n } _ { 1 } , \\ldots , \\bar { n } _ { \\ell }", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 541, + 506, + 556 + ], + "score": 1.0, + "content": "answered by the aggregator. Their total", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 104, + 550, + 507, + 571 + ], + "spans": [ + { + "bbox": [ + 104, + 550, + 236, + 571 + ], + "score": 1.0, + "content": "(unsanitized) RDP cost of order", + "type": "text" + }, + { + "bbox": [ + 236, + 555, + 244, + 565 + ], + "score": 0.78, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 550, + 254, + 571 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 254, + 554, + 349, + 568 + ], + "score": 0.91, + "content": "\\begin{array} { r } { B _ { \\sigma } = \\sum _ { i = 1 } ^ { \\ell } \\beta _ { \\sigma } ( q ( \\bar { n } _ { i } ) ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 350, + 550, + 407, + 571 + ], + "score": 1.0, + "content": ". Even though", + "type": "text" + }, + { + "bbox": [ + 407, + 554, + 485, + 567 + ], + "score": 0.92, + "content": "\\beta _ { \\sigma } ( q ( \\bar { n } _ { i } ) ) \\leq \\lambda / \\sigma ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 486, + 550, + 507, + 571 + ], + "score": 1.0, + "content": "(the", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 104, + 565, + 506, + 580 + ], + "spans": [ + { + "bbox": [ + 104, + 565, + 404, + 580 + ], + "score": 1.0, + "content": "data-independent bound, Proposition 8), the sensitivity of their sum is not", + "type": "text" + }, + { + "bbox": [ + 404, + 567, + 426, + 579 + ], + "score": 0.91, + "content": "\\lambda / \\sigma ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 426, + 565, + 506, + 580 + ], + "score": 1.0, + "content": ". The reason is that", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 578, + 505, + 590 + ], + "spans": [ + { + "bbox": [ + 106, + 578, + 505, + 590 + ], + "score": 1.0, + "content": "the (global) sensitivity is defined as the maximal difference in the function’s output between two", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 104, + 588, + 506, + 602 + ], + "spans": [ + { + "bbox": [ + 104, + 588, + 191, + 602 + ], + "score": 1.0, + "content": "neighboring datasets", + "type": "text" + }, + { + "bbox": [ + 191, + 590, + 201, + 599 + ], + "score": 0.81, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 588, + 218, + 602 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 219, + 589, + 231, + 599 + ], + "score": 0.88, + "content": "D ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 588, + 312, + 602 + ], + "score": 1.0, + "content": ". Transitioning from", + "type": "text" + }, + { + "bbox": [ + 313, + 590, + 322, + 599 + ], + "score": 0.8, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 323, + 588, + 334, + 602 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 334, + 589, + 346, + 599 + ], + "score": 0.86, + "content": "D ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 588, + 506, + 602 + ], + "score": 1.0, + "content": "may change one teacher’s output on all", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 600, + 171, + 613 + ], + "spans": [ + { + "bbox": [ + 106, + 600, + 171, + 613 + ], + "score": 1.0, + "content": "student queries.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 35.5 + }, + { + "type": "text", + "bbox": [ + 106, + 616, + 505, + 662 + ], + "lines": [ + { + "bbox": [ + 105, + 617, + 505, + 629 + ], + "spans": [ + { + "bbox": [ + 105, + 617, + 275, + 629 + ], + "score": 1.0, + "content": "In contrast with the global sensitivity of", + "type": "text" + }, + { + "bbox": [ + 275, + 618, + 289, + 628 + ], + "score": 0.89, + "content": "B _ { \\sigma }", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 617, + 505, + 629 + ], + "score": 1.0, + "content": "that may be quite high—particularly for the second", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 628, + 505, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 628, + 505, + 641 + ], + "score": 1.0, + "content": "step of the Confident GNMax aggregator—its smooth sensitivity can be extremely small. Towards", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 639, + 506, + 652 + ], + "spans": [ + { + "bbox": [ + 105, + 639, + 281, + 652 + ], + "score": 1.0, + "content": "computing a smooth sensitivity bound on", + "type": "text" + }, + { + "bbox": [ + 282, + 639, + 295, + 650 + ], + "score": 0.89, + "content": "B _ { \\sigma }", + "type": "inline_equation" + }, + { + "bbox": [ + 296, + 639, + 506, + 652 + ], + "score": 1.0, + "content": ", we prove the following theorem which defines a", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 650, + 390, + 662 + ], + "spans": [ + { + "bbox": [ + 106, + 650, + 390, + 662 + ], + "score": 1.0, + "content": "smooth sensitivity of the sum in terms of local sensitivities of its parts.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 40.5 + }, + { + "type": "text", + "bbox": [ + 107, + 664, + 444, + 679 + ], + "lines": [ + { + "bbox": [ + 105, + 662, + 446, + 681 + ], + "spans": [ + { + "bbox": [ + 105, + 662, + 181, + 681 + ], + "score": 1.0, + "content": "Theorem 24. Let", + "type": "text" + }, + { + "bbox": [ + 181, + 666, + 225, + 677 + ], + "score": 0.89, + "content": "f _ { i } { : } \\mathcal { D } \\mathbb { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 662, + 240, + 681 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 240, + 665, + 281, + 677 + ], + "score": 0.6, + "content": "1 \\leq i \\leq \\ell _ { \\mathrm { { i } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 662, + 284, + 681 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 285, + 663, + 372, + 678 + ], + "score": 0.8, + "content": "\\begin{array} { r } { F ( D ) \\triangleq \\sum _ { i = 1 } ^ { \\ell } f _ { i } ( D ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 373, + 662, + 392, + 681 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 392, + 666, + 417, + 677 + ], + "score": 0.88, + "content": "\\beta > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 662, + 446, + 681 + ], + "score": 1.0, + "content": ". Then", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 43 + }, + { + "type": "interline_equation", + "bbox": [ + 200, + 682, + 410, + 715 + ], + "lines": [ + { + "bbox": [ + 200, + 682, + 410, + 715 + ], + "spans": [ + { + "bbox": [ + 200, + 682, + 410, + 715 + ], + "score": 0.92, + "content": "\\mathrm { S S } ( D ) \\triangleq \\operatorname* { m a x } _ { d \\geq 0 } e ^ { - \\beta d } \\cdot \\sum _ { i = 1 } ^ { \\ell } \\operatorname* { m a x } _ { D ^ { \\prime } : \\mathrm { d i s t } ( D , D ^ { \\prime } ) \\leq d } \\tilde { \\mathrm { L S } } _ { f _ { i } } ( D ^ { \\prime } ) ,", + "type": "interline_equation", + "image_path": "6adf2ce40915fee595d5ec0a917755f403d52b74f6ec4d906840b94260f77bc4.jpg" + } + ] + } + ], + "index": 44.5, + "virtual_lines": [ + { + "bbox": [ + 200, + 682, + 410, + 698.5 + ], + "spans": [], + "index": 44 + }, + { + "bbox": [ + 200, + 698.5, + 410, + 715.0 + ], + "spans": [], + "index": 45 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 720, + 478, + 733 + ], + "lines": [ + { + "bbox": [ + 105, + 719, + 479, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 719, + 123, + 734 + ], + "score": 1.0, + "content": "is a", + "type": "text" + }, + { + "bbox": [ + 124, + 721, + 131, + 732 + ], + "score": 0.82, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 719, + 204, + 734 + ], + "score": 1.0, + "content": "-smooth bound on", + "type": "text" + }, + { + "bbox": [ + 204, + 719, + 272, + 733 + ], + "score": 0.94, + "content": "F ( \\cdot ) i f \\tilde { \\mathrm { L S } } _ { f _ { i } } ( D ^ { \\prime } )", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 719, + 448, + 734 + ], + "score": 1.0, + "content": "are upper bounds on the local sensitivity of", + "type": "text" + }, + { + "bbox": [ + 448, + 720, + 476, + 732 + ], + "score": 0.93, + "content": "f _ { i } ( D ^ { \\prime } )", + "type": "inline_equation" + }, + { + "bbox": [ + 476, + 719, + 479, + 734 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 46 + } + ], + "page_idx": 31, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 26, + 293, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 298, + 749, + 313, + 765 + ], + "spans": [ + { + "bbox": [ + 298, + 749, + 313, + 765 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 16, + "width": 15 + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 497, + 296, + 505, + 308 + ], + "lines": [ + { + "bbox": [ + 497, + 297, + 505, + 309 + ], + "spans": [ + { + "bbox": [ + 497, + 297, + 505, + 309 + ], + "score": 0.738, + "content": "■", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 81, + 330, + 95 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 329, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 144, + 96 + ], + "score": 1.0, + "content": "provided", + "type": "text" + }, + { + "bbox": [ + 144, + 81, + 329, + 95 + ], + "score": 0.89, + "content": "s ^ { 2 } \\triangleq ( 1 - \\lambda ) \\cdot \\mathrm { S S } _ { \\beta } ( D ) ^ { 2 } + \\lambda \\cdot \\mathrm { S S } _ { \\beta } ( D ^ { \\prime } ) ^ { 2 } > 0 .", + "type": "inline_equation" + } + ], + "index": 0 + } + ], + "index": 0, + "bbox_fs": [ + 105, + 80, + 329, + 96 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 99, + 365, + 111 + ], + "lines": [ + { + "bbox": [ + 106, + 98, + 364, + 113 + ], + "spans": [ + { + "bbox": [ + 106, + 98, + 364, + 113 + ], + "score": 1.0, + "content": "According to the definition of smooth sensitivity (Definition 12)", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1, + "bbox_fs": [ + 106, + 98, + 364, + 113 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 218, + 113, + 392, + 129 + ], + "lines": [ + { + "bbox": [ + 218, + 113, + 392, + 129 + ], + "spans": [ + { + "bbox": [ + 218, + 113, + 392, + 129 + ], + "score": 0.89, + "content": "e ^ { - \\beta } \\cdot \\mathrm { S S } _ { \\beta } ( D ) \\leq \\mathrm { S S } _ { \\beta } ( D ^ { \\prime } ) \\leq e ^ { \\beta } \\cdot \\mathrm { S S } _ { \\beta } ( D ) ,", + "type": "interline_equation", + "image_path": "e5c78a41023b079d2c30eba19f297b40bb24767ed1b6d5da45139fcc1b7491c3.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 218, + 113, + 392, + 129 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 132, + 123, + 143 + ], + "lines": [ + { + "bbox": [ + 105, + 132, + 123, + 143 + ], + "spans": [ + { + "bbox": [ + 105, + 132, + 123, + 143 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3, + "bbox_fs": [ + 105, + 132, + 123, + 143 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 208, + 145, + 403, + 160 + ], + "lines": [ + { + "bbox": [ + 208, + 145, + 403, + 160 + ], + "spans": [ + { + "bbox": [ + 208, + 145, + 403, + 160 + ], + "score": 0.91, + "content": "| f ( D ) - f ( D ^ { \\prime } ) | \\leq e ^ { \\beta } \\cdot \\operatorname * { m i n } ( \\mathrm { S S } _ { \\beta } ( D ) , \\mathrm { S S } _ { \\beta } ( D ^ { \\prime } ) ) .", + "type": "interline_equation", + "image_path": "b4d0e3d37c589724658cf5c188624eb6e2dda1cad7bf46096f8b8db6fd45a0f8.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 208, + 145, + 403, + 160 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 168, + 382, + 181 + ], + "lines": [ + { + "bbox": [ + 106, + 168, + 383, + 182 + ], + "spans": [ + { + "bbox": [ + 106, + 168, + 282, + 182 + ], + "score": 1.0, + "content": "Bound (12) together with the condition that", + "type": "text" + }, + { + "bbox": [ + 282, + 169, + 331, + 181 + ], + "score": 0.93, + "content": "\\lambda \\le 1 / ( 2 \\beta )", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 168, + 383, + 182 + ], + "score": 1.0, + "content": "implies that", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5, + "bbox_fs": [ + 106, + 168, + 383, + 182 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 116, + 186, + 478, + 220 + ], + "lines": [ + { + "bbox": [ + 116, + 186, + 478, + 220 + ], + "spans": [ + { + "bbox": [ + 116, + 186, + 478, + 220 + ], + "score": 0.92, + "content": "\\begin{array} { r l } & { s ^ { 2 } = ( 1 - \\lambda ) \\cdot \\operatorname { S S } _ { \\beta } ( D ) ^ { 2 } + \\lambda \\cdot \\operatorname { S S } _ { \\beta } ( D ^ { \\prime } ) ^ { 2 } = \\operatorname { S S } _ { \\beta } ( D ) ^ { 2 } + \\lambda ( \\operatorname { S S } _ { \\beta } ( D ^ { \\prime } ) ^ { 2 } - \\operatorname { S S } _ { \\beta } ( D ) ^ { 2 } ) } \\\\ & { \\qquad \\geq \\operatorname { S S } _ { \\beta } ( D ) ^ { 2 } ( 1 + \\lambda ( e ^ { - 2 \\beta } - 1 ) ) \\geq \\operatorname { S S } _ { \\beta } ( D ) ^ { 2 } ( 1 - 2 \\lambda \\beta ) > 0 . } \\end{array}", + "type": "interline_equation", + "image_path": "cf629b8468c5c23b06e8d1786b1e118922396effaadac83c760c6857a9a77a8c.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 116, + 186, + 478, + 197.33333333333334 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 116, + 197.33333333333334, + 478, + 208.66666666666669 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 116, + 208.66666666666669, + 478, + 220.00000000000003 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 222, + 505, + 245 + ], + "lines": [ + { + "bbox": [ + 105, + 221, + 505, + 235 + ], + "spans": [ + { + "bbox": [ + 105, + 221, + 250, + 235 + ], + "score": 1.0, + "content": "The above lower bound ensures that", + "type": "text" + }, + { + "bbox": [ + 251, + 222, + 261, + 232 + ], + "score": 0.88, + "content": "s ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 221, + 505, + 235 + ], + "score": 1.0, + "content": "is well-defined, i.e., non-negative, as required for application", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 104, + 232, + 141, + 247 + ], + "spans": [ + { + "bbox": [ + 104, + 232, + 141, + 247 + ], + "score": 1.0, + "content": "of (11).", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5, + "bbox_fs": [ + 104, + 221, + 505, + 247 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 250, + 284, + 262 + ], + "lines": [ + { + "bbox": [ + 107, + 250, + 284, + 263 + ], + "spans": [ + { + "bbox": [ + 107, + 250, + 284, + 263 + ], + "score": 1.0, + "content": "Combining bounds (12)– (14), we have that", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11, + "bbox_fs": [ + 107, + 250, + 284, + 263 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 129, + 264, + 482, + 294 + ], + "lines": [ + { + "bbox": [ + 129, + 264, + 482, + 294 + ], + "spans": [ + { + "bbox": [ + 129, + 264, + 482, + 294 + ], + "score": 0.92, + "content": "D _ { \\lambda } ( P \\| Q ) \\le \\frac { \\lambda \\cdot e ^ { 2 \\beta } } { \\sigma ^ { 2 } } + \\frac { 1 } { 1 - \\lambda } \\ln \\left\\{ \\frac { s } { \\mathrm { S S } _ { \\beta } ( D ) } e ^ { - \\lambda \\beta } \\right\\} \\le \\frac { \\lambda \\cdot e ^ { 2 \\beta } } { \\sigma ^ { 2 } } + \\frac { \\beta \\lambda - 0 . 5 \\ln ( 1 - 2 \\lambda \\beta ) } { \\lambda - 1 }", + "type": "interline_equation", + "image_path": "fad5b31055042de57c3e12099a9f7705061fb28160c93dd285e078026cbda7e3.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 129, + 264, + 482, + 274.0 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 129, + 274.0, + 482, + 284.0 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 129, + 284.0, + 482, + 294.0 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 297, + 153, + 308 + ], + "lines": [ + { + "bbox": [ + 106, + 297, + 153, + 309 + ], + "spans": [ + { + "bbox": [ + 106, + 297, + 153, + 309 + ], + "score": 1.0, + "content": "as claimed.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15, + "bbox_fs": [ + 106, + 297, + 153, + 309 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 319, + 505, + 365 + ], + "lines": [ + { + "bbox": [ + 105, + 320, + 505, + 333 + ], + "spans": [ + { + "bbox": [ + 105, + 320, + 153, + 333 + ], + "score": 1.0, + "content": "Note that if", + "type": "text" + }, + { + "bbox": [ + 153, + 321, + 180, + 331 + ], + "score": 0.78, + "content": "\\lambda \\gg 1", + "type": "inline_equation" + }, + { + "bbox": [ + 180, + 320, + 183, + 333 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 183, + 321, + 212, + 331 + ], + "score": 0.76, + "content": "\\sigma \\ll \\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 320, + 231, + 333 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 232, + 320, + 282, + 332 + ], + "score": 0.92, + "content": "\\beta \\ll 1 / ( 2 \\lambda )", + "type": "inline_equation" + }, + { + "bbox": [ + 283, + 320, + 306, + 333 + ], + "score": 1.0, + "content": ", then", + "type": "text" + }, + { + "bbox": [ + 306, + 320, + 331, + 333 + ], + "score": 0.91, + "content": "( \\beta , \\sigma )", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 320, + 394, + 333 + ], + "score": 1.0, + "content": "-GNSS satisfies", + "type": "text" + }, + { + "bbox": [ + 394, + 320, + 454, + 333 + ], + "score": 0.9, + "content": "( \\lambda , ( \\lambda { + } 1 ) / \\sigma ^ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 455, + 320, + 505, + 333 + ], + "score": 1.0, + "content": "-RDP. Com-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 331, + 505, + 344 + ], + "spans": [ + { + "bbox": [ + 105, + 331, + 460, + 344 + ], + "score": 1.0, + "content": "pare this with RDP analysis of the standard additive Gaussian mechanism, which satisfies", + "type": "text" + }, + { + "bbox": [ + 461, + 331, + 500, + 344 + ], + "score": 0.92, + "content": "( \\lambda , \\lambda / \\sigma ^ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 500, + 331, + 505, + 344 + ], + "score": 1.0, + "content": "-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 342, + 506, + 356 + ], + "spans": [ + { + "bbox": [ + 105, + 342, + 506, + 356 + ], + "score": 1.0, + "content": "RDP. The difference is that GNSS scales noise in proportion to smooth sensitivity, which is no larger", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 353, + 299, + 366 + ], + "spans": [ + { + "bbox": [ + 105, + 353, + 299, + 366 + ], + "score": 1.0, + "content": "and can be much smaller than global sensitivity.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 17.5, + "bbox_fs": [ + 105, + 320, + 506, + 366 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 377, + 402, + 389 + ], + "lines": [ + { + "bbox": [ + 106, + 377, + 403, + 390 + ], + "spans": [ + { + "bbox": [ + 106, + 377, + 403, + 390 + ], + "score": 1.0, + "content": "B.6 PUTTING IT ALL TOGETHER: APPLYING SMOOTH SENSITIVITY", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 106, + 398, + 505, + 465 + ], + "lines": [ + { + "bbox": [ + 105, + 397, + 505, + 412 + ], + "spans": [ + { + "bbox": [ + 105, + 397, + 505, + 412 + ], + "score": 1.0, + "content": "Recall our initial motivation for the smooth sensitivity analysis: enabling privacy-preserving re-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 410, + 505, + 423 + ], + "spans": [ + { + "bbox": [ + 105, + 410, + 505, + 423 + ], + "score": 1.0, + "content": "lease of data-dependent privacy guarantees. Indeed, these guarantees vary greatly between queries", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 421, + 504, + 433 + ], + "spans": [ + { + "bbox": [ + 106, + 421, + 504, + 433 + ], + "score": 1.0, + "content": "(see Figure 5) and are typically much smaller than data-independent privacy bounds. Since data-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 431, + 505, + 444 + ], + "spans": [ + { + "bbox": [ + 106, + 431, + 505, + 444 + ], + "score": 1.0, + "content": "dependent bounds may leak information about underlying data, publishing the bounds themselves", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 443, + 506, + 456 + ], + "spans": [ + { + "bbox": [ + 105, + 443, + 506, + 456 + ], + "score": 1.0, + "content": "requires a differentially private mechanism. As we explain shortly, smooth sensitivity analysis is a", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 453, + 199, + 464 + ], + "spans": [ + { + "bbox": [ + 106, + 453, + 199, + 464 + ], + "score": 1.0, + "content": "natural fit for this task.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 23.5, + "bbox_fs": [ + 105, + 397, + 506, + 464 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 470, + 505, + 536 + ], + "lines": [ + { + "bbox": [ + 106, + 470, + 505, + 482 + ], + "spans": [ + { + "bbox": [ + 106, + 470, + 505, + 482 + ], + "score": 1.0, + "content": "We first consider the standard additive noise mechanism where the noise (such as Laplace or Gaus-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 481, + 505, + 494 + ], + "spans": [ + { + "bbox": [ + 105, + 481, + 505, + 494 + ], + "score": 1.0, + "content": "sian) is calibrated to the global sensitivity of the function we would like to make differentially", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 104, + 492, + 506, + 505 + ], + "spans": [ + { + "bbox": [ + 104, + 492, + 439, + 505 + ], + "score": 1.0, + "content": "private. We know that Rényi differential privacy is additive for any fixed order", + "type": "text" + }, + { + "bbox": [ + 439, + 493, + 447, + 502 + ], + "score": 0.71, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 492, + 506, + 505 + ], + "score": 1.0, + "content": ", and thus the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 504, + 504, + 515 + ], + "spans": [ + { + "bbox": [ + 106, + 504, + 504, + 515 + ], + "score": 1.0, + "content": "cumulative RDP cost is the sum of RDP costs of individual queries each upper bounded by a data-", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 514, + 506, + 527 + ], + "spans": [ + { + "bbox": [ + 106, + 514, + 506, + 527 + ], + "score": 1.0, + "content": "independent bound. Thus, it might be tempting to use the standard additive noise mechanism for", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 525, + 300, + 537 + ], + "spans": [ + { + "bbox": [ + 105, + 525, + 300, + 537 + ], + "score": 1.0, + "content": "sanitizing the total, but that would be a mistake.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 29.5, + "bbox_fs": [ + 104, + 470, + 506, + 537 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 541, + 505, + 612 + ], + "lines": [ + { + "bbox": [ + 105, + 541, + 506, + 556 + ], + "spans": [ + { + "bbox": [ + 105, + 541, + 290, + 556 + ], + "score": 1.0, + "content": "To see why, consider a sequence of queries", + "type": "text" + }, + { + "bbox": [ + 291, + 543, + 335, + 553 + ], + "score": 0.9, + "content": "\\bar { n } _ { 1 } , \\ldots , \\bar { n } _ { \\ell }", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 541, + 506, + 556 + ], + "score": 1.0, + "content": "answered by the aggregator. Their total", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 104, + 550, + 507, + 571 + ], + "spans": [ + { + "bbox": [ + 104, + 550, + 236, + 571 + ], + "score": 1.0, + "content": "(unsanitized) RDP cost of order", + "type": "text" + }, + { + "bbox": [ + 236, + 555, + 244, + 565 + ], + "score": 0.78, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 550, + 254, + 571 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 254, + 554, + 349, + 568 + ], + "score": 0.91, + "content": "\\begin{array} { r } { B _ { \\sigma } = \\sum _ { i = 1 } ^ { \\ell } \\beta _ { \\sigma } ( q ( \\bar { n } _ { i } ) ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 350, + 550, + 407, + 571 + ], + "score": 1.0, + "content": ". Even though", + "type": "text" + }, + { + "bbox": [ + 407, + 554, + 485, + 567 + ], + "score": 0.92, + "content": "\\beta _ { \\sigma } ( q ( \\bar { n } _ { i } ) ) \\leq \\lambda / \\sigma ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 486, + 550, + 507, + 571 + ], + "score": 1.0, + "content": "(the", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 104, + 565, + 506, + 580 + ], + "spans": [ + { + "bbox": [ + 104, + 565, + 404, + 580 + ], + "score": 1.0, + "content": "data-independent bound, Proposition 8), the sensitivity of their sum is not", + "type": "text" + }, + { + "bbox": [ + 404, + 567, + 426, + 579 + ], + "score": 0.91, + "content": "\\lambda / \\sigma ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 426, + 565, + 506, + 580 + ], + "score": 1.0, + "content": ". The reason is that", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 578, + 505, + 590 + ], + "spans": [ + { + "bbox": [ + 106, + 578, + 505, + 590 + ], + "score": 1.0, + "content": "the (global) sensitivity is defined as the maximal difference in the function’s output between two", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 104, + 588, + 506, + 602 + ], + "spans": [ + { + "bbox": [ + 104, + 588, + 191, + 602 + ], + "score": 1.0, + "content": "neighboring datasets", + "type": "text" + }, + { + "bbox": [ + 191, + 590, + 201, + 599 + ], + "score": 0.81, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 588, + 218, + 602 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 219, + 589, + 231, + 599 + ], + "score": 0.88, + "content": "D ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 588, + 312, + 602 + ], + "score": 1.0, + "content": ". Transitioning from", + "type": "text" + }, + { + "bbox": [ + 313, + 590, + 322, + 599 + ], + "score": 0.8, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 323, + 588, + 334, + 602 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 334, + 589, + 346, + 599 + ], + "score": 0.86, + "content": "D ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 588, + 506, + 602 + ], + "score": 1.0, + "content": "may change one teacher’s output on all", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 600, + 171, + 613 + ], + "spans": [ + { + "bbox": [ + 106, + 600, + 171, + 613 + ], + "score": 1.0, + "content": "student queries.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 35.5, + "bbox_fs": [ + 104, + 541, + 507, + 613 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 616, + 505, + 662 + ], + "lines": [ + { + "bbox": [ + 105, + 617, + 505, + 629 + ], + "spans": [ + { + "bbox": [ + 105, + 617, + 275, + 629 + ], + "score": 1.0, + "content": "In contrast with the global sensitivity of", + "type": "text" + }, + { + "bbox": [ + 275, + 618, + 289, + 628 + ], + "score": 0.89, + "content": "B _ { \\sigma }", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 617, + 505, + 629 + ], + "score": 1.0, + "content": "that may be quite high—particularly for the second", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 628, + 505, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 628, + 505, + 641 + ], + "score": 1.0, + "content": "step of the Confident GNMax aggregator—its smooth sensitivity can be extremely small. Towards", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 639, + 506, + 652 + ], + "spans": [ + { + "bbox": [ + 105, + 639, + 281, + 652 + ], + "score": 1.0, + "content": "computing a smooth sensitivity bound on", + "type": "text" + }, + { + "bbox": [ + 282, + 639, + 295, + 650 + ], + "score": 0.89, + "content": "B _ { \\sigma }", + "type": "inline_equation" + }, + { + "bbox": [ + 296, + 639, + 506, + 652 + ], + "score": 1.0, + "content": ", we prove the following theorem which defines a", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 650, + 390, + 662 + ], + "spans": [ + { + "bbox": [ + 106, + 650, + 390, + 662 + ], + "score": 1.0, + "content": "smooth sensitivity of the sum in terms of local sensitivities of its parts.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 40.5, + "bbox_fs": [ + 105, + 617, + 506, + 662 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 664, + 444, + 679 + ], + "lines": [ + { + "bbox": [ + 105, + 662, + 446, + 681 + ], + "spans": [ + { + "bbox": [ + 105, + 662, + 181, + 681 + ], + "score": 1.0, + "content": "Theorem 24. Let", + "type": "text" + }, + { + "bbox": [ + 181, + 666, + 225, + 677 + ], + "score": 0.89, + "content": "f _ { i } { : } \\mathcal { D } \\mathbb { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 662, + 240, + 681 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 240, + 665, + 281, + 677 + ], + "score": 0.6, + "content": "1 \\leq i \\leq \\ell _ { \\mathrm { { i } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 662, + 284, + 681 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 285, + 663, + 372, + 678 + ], + "score": 0.8, + "content": "\\begin{array} { r } { F ( D ) \\triangleq \\sum _ { i = 1 } ^ { \\ell } f _ { i } ( D ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 373, + 662, + 392, + 681 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 392, + 666, + 417, + 677 + ], + "score": 0.88, + "content": "\\beta > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 662, + 446, + 681 + ], + "score": 1.0, + "content": ". Then", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 43, + "bbox_fs": [ + 105, + 662, + 446, + 681 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 200, + 682, + 410, + 715 + ], + "lines": [ + { + "bbox": [ + 200, + 682, + 410, + 715 + ], + "spans": [ + { + "bbox": [ + 200, + 682, + 410, + 715 + ], + "score": 0.92, + "content": "\\mathrm { S S } ( D ) \\triangleq \\operatorname* { m a x } _ { d \\geq 0 } e ^ { - \\beta d } \\cdot \\sum _ { i = 1 } ^ { \\ell } \\operatorname* { m a x } _ { D ^ { \\prime } : \\mathrm { d i s t } ( D , D ^ { \\prime } ) \\leq d } \\tilde { \\mathrm { L S } } _ { f _ { i } } ( D ^ { \\prime } ) ,", + "type": "interline_equation", + "image_path": "6adf2ce40915fee595d5ec0a917755f403d52b74f6ec4d906840b94260f77bc4.jpg" + } + ] + } + ], + "index": 44.5, + "virtual_lines": [ + { + "bbox": [ + 200, + 682, + 410, + 698.5 + ], + "spans": [], + "index": 44 + }, + { + "bbox": [ + 200, + 698.5, + 410, + 715.0 + ], + "spans": [], + "index": 45 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 720, + 478, + 733 + ], + "lines": [ + { + "bbox": [ + 105, + 719, + 479, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 719, + 123, + 734 + ], + "score": 1.0, + "content": "is a", + "type": "text" + }, + { + "bbox": [ + 124, + 721, + 131, + 732 + ], + "score": 0.82, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 719, + 204, + 734 + ], + "score": 1.0, + "content": "-smooth bound on", + "type": "text" + }, + { + "bbox": [ + 204, + 719, + 272, + 733 + ], + "score": 0.94, + "content": "F ( \\cdot ) i f \\tilde { \\mathrm { L S } } _ { f _ { i } } ( D ^ { \\prime } )", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 719, + 448, + 734 + ], + "score": 1.0, + "content": "are upper bounds on the local sensitivity of", + "type": "text" + }, + { + "bbox": [ + 448, + 720, + 476, + 732 + ], + "score": 0.93, + "content": "f _ { i } ( D ^ { \\prime } )", + "type": "inline_equation" + }, + { + "bbox": [ + 476, + 719, + 479, + 734 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 46, + "bbox_fs": [ + 105, + 719, + 479, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 81, + 505, + 117 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 504, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 230, + 95 + ], + "score": 1.0, + "content": "Proof. We need to argue that", + "type": "text" + }, + { + "bbox": [ + 230, + 82, + 253, + 95 + ], + "score": 0.5, + "content": "\\operatorname { S S } ( { \\mathord { \\cdot } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 81, + 265, + 95 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 265, + 83, + 273, + 94 + ], + "score": 0.86, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 81, + 328, + 95 + ], + "score": 1.0, + "content": "-smooth, i.e.,", + "type": "text" + }, + { + "bbox": [ + 329, + 82, + 429, + 95 + ], + "score": 0.91, + "content": "\\mathrm { S S } ( D _ { 1 } ) \\le e ^ { \\beta } \\cdot \\mathrm { S S } ( D _ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 429, + 81, + 504, + 95 + ], + "score": 1.0, + "content": "for any neighbor-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 91, + 505, + 108 + ], + "spans": [ + { + "bbox": [ + 105, + 91, + 123, + 108 + ], + "score": 1.0, + "content": "ing", + "type": "text" + }, + { + "bbox": [ + 123, + 93, + 180, + 105 + ], + "score": 0.88, + "content": "D _ { 1 } , D _ { 2 } \\ \\in \\ { \\mathcal { D } }", + "type": "inline_equation" + }, + { + "bbox": [ + 180, + 91, + 403, + 108 + ], + "score": 1.0, + "content": ", and it is an upper bound on the local sensitivity of", + "type": "text" + }, + { + "bbox": [ + 404, + 94, + 433, + 106 + ], + "score": 0.93, + "content": "F ( D _ { 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 433, + 91, + 457, + 108 + ], + "score": 1.0, + "content": ", i.e.,", + "type": "text" + }, + { + "bbox": [ + 458, + 93, + 505, + 106 + ], + "score": 0.88, + "content": "\\mathrm { S S } ( D _ { 1 } ) \\ \\geq", + "type": "inline_equation" + } + ], + "index": 1 + }, + { + "bbox": [ + 107, + 104, + 186, + 118 + ], + "spans": [ + { + "bbox": [ + 107, + 105, + 182, + 117 + ], + "score": 0.89, + "content": "| F ( D _ { 1 } ) - F ( D _ { 2 } ) |", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 104, + 186, + 118 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 107, + 121, + 291, + 132 + ], + "lines": [ + { + "bbox": [ + 106, + 121, + 292, + 133 + ], + "spans": [ + { + "bbox": [ + 106, + 121, + 292, + 133 + ], + "score": 1.0, + "content": "Smoothness follows from the observation that", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + }, + { + "type": "interline_equation", + "bbox": [ + 197, + 136, + 414, + 158 + ], + "lines": [ + { + "bbox": [ + 197, + 136, + 414, + 158 + ], + "spans": [ + { + "bbox": [ + 197, + 136, + 414, + 158 + ], + "score": 0.9, + "content": "\\operatorname* { m a x } _ { D : \\mathrm { d i s t } ( D _ { 1 } , D ) \\leq d } \\tilde { \\mathrm { L S } } _ { f _ { i } } ( D ) \\leq \\operatorname* { m a x } _ { D : \\mathrm { d i s t } ( D _ { 2 } , D ) \\leq d + 1 } \\tilde { \\mathrm { L S } } _ { f _ { i } } ( D )", + "type": "interline_equation", + "image_path": "3c9f44cd2edcfae6aa1c4eeebc7e68b11dd1eb66e2ee9d3d416c1da73bbcaa4d.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 197, + 136, + 414, + 158 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 104, + 163, + 459, + 175 + ], + "lines": [ + { + "bbox": [ + 105, + 163, + 460, + 177 + ], + "spans": [ + { + "bbox": [ + 105, + 163, + 218, + 177 + ], + "score": 1.0, + "content": "for all neighboring datasets", + "type": "text" + }, + { + "bbox": [ + 218, + 164, + 231, + 174 + ], + "score": 0.89, + "content": "D _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 163, + 250, + 177 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 250, + 164, + 264, + 174 + ], + "score": 0.89, + "content": "D _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 264, + 163, + 460, + 177 + ], + "score": 1.0, + "content": "(by the triangle inequality over distances). Then", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "interline_equation", + "bbox": [ + 191, + 180, + 420, + 301 + ], + "lines": [ + { + "bbox": [ + 191, + 180, + 420, + 301 + ], + "spans": [ + { + "bbox": [ + 191, + 180, + 420, + 301 + ], + "score": 0.95, + "content": "\\begin{array} { r l } & { \\displaystyle \\mathrm { S S } ( D _ { 1 } ) = \\operatorname* { m a x } _ { d \\geq 0 } e ^ { - \\beta d } \\cdot \\sum _ { i = 1 } ^ { \\ell } \\operatorname* { m a x } _ { D : \\mathrm { d i s t } ( D _ { 1 } , D ) \\leq d } \\mathrm { I } \\tilde { \\mathrm { S } S } _ { f _ { i } } ( D ) , } \\\\ & { \\qquad \\leq \\displaystyle \\operatorname* { m a x } _ { d \\geq 0 } e ^ { - \\beta d } \\cdot \\sum _ { i = 1 } ^ { \\ell } \\operatorname* { m a x } _ { D : \\mathrm { d i s t } ( D _ { 2 } , D ) \\leq d + 1 } \\mathrm { I } \\tilde { \\mathrm { S } S } _ { f _ { i } } ( D ) } \\\\ & { \\qquad = \\displaystyle \\operatorname* { m a x } _ { d \\geq 1 } e ^ { - \\beta ( d ^ { \\prime } - 1 ) } \\cdot \\sum _ { i = 1 } ^ { \\ell } \\operatorname* { m a x } _ { D : \\mathrm { d i s t } ( D _ { 2 } , D ) \\leq d ^ { \\prime } } \\mathrm { I } \\tilde { \\mathrm { S } S } _ { f _ { i } } ( D ) } \\\\ & { \\qquad \\leq e ^ { \\beta } \\cdot \\mathrm { S S } ( D _ { 2 } ) } \\end{array}", + "type": "interline_equation", + "image_path": "319538b557fb62b145f9d04b0cb874d054e40d10359848ecc095936a018e209f.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 191, + 180, + 420, + 193.44444444444446 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 191, + 193.44444444444446, + 420, + 206.8888888888889 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 191, + 206.8888888888889, + 420, + 220.33333333333337 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 191, + 220.33333333333337, + 420, + 233.77777777777783 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 191, + 233.77777777777783, + 420, + 247.22222222222229 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 191, + 247.22222222222229, + 420, + 260.66666666666674 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 191, + 260.66666666666674, + 420, + 274.1111111111112 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 191, + 274.1111111111112, + 420, + 287.55555555555566 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 191, + 287.55555555555566, + 420, + 301.0000000000001 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 305, + 222, + 316 + ], + "lines": [ + { + "bbox": [ + 105, + 304, + 223, + 317 + ], + "spans": [ + { + "bbox": [ + 105, + 304, + 162, + 317 + ], + "score": 1.0, + "content": "as needed for", + "type": "text" + }, + { + "bbox": [ + 162, + 306, + 169, + 317 + ], + "score": 0.86, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 170, + 304, + 223, + 317 + ], + "score": 1.0, + "content": "-smoothness.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 103, + 321, + 492, + 334 + ], + "lines": [ + { + "bbox": [ + 105, + 319, + 494, + 337 + ], + "spans": [ + { + "bbox": [ + 105, + 319, + 159, + 337 + ], + "score": 1.0, + "content": "The fact that", + "type": "text" + }, + { + "bbox": [ + 159, + 322, + 182, + 334 + ], + "score": 0.41, + "content": "\\operatorname { S S } ( { \\mathord { \\cdot } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 319, + 360, + 337 + ], + "score": 1.0, + "content": "is an upper bound on the local sensitivity of", + "type": "text" + }, + { + "bbox": [ + 360, + 322, + 379, + 334 + ], + "score": 0.91, + "content": "F ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 380, + 319, + 494, + 337 + ], + "score": 1.0, + "content": "is implied by the following:", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "interline_equation", + "bbox": [ + 206, + 339, + 405, + 458 + ], + "lines": [ + { + "bbox": [ + 206, + 339, + 405, + 458 + ], + "spans": [ + { + "bbox": [ + 206, + 339, + 405, + 458 + ], + "score": 0.95, + "content": "\\begin{array} { r l } { \\displaystyle | F ( D _ { 1 } ) - F ( D _ { 2 } ) | = \\left| \\displaystyle \\sum _ { i = 1 } ^ { \\ell } f _ { i } ( D _ { 1 } ) - \\displaystyle \\sum _ { i = 1 } ^ { \\ell } f _ { i } ( D _ { 2 } ) \\right| } & { } \\\\ { \\displaystyle } & { \\le \\displaystyle \\sum _ { i = 1 } ^ { \\ell } | f _ { i } ( D _ { 1 } ) - f _ { i } ( D _ { 2 } ) | } \\\\ { \\displaystyle } & { \\le \\displaystyle \\sum _ { i = 1 } ^ { \\ell } \\mathrm { I } \\tilde { \\mathrm { S } } f _ { i } ( D _ { 1 } ) } \\\\ { \\displaystyle } & { \\le \\mathrm { S S } ( D _ { 1 } ) , } \\end{array}", + "type": "interline_equation", + "image_path": "250ccbb22ab711876faadad3a4e39c1200563e5474827d8ffeba2904e677e46e.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 206, + 339, + 405, + 352.22222222222223 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 206, + 352.22222222222223, + 405, + 365.44444444444446 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 206, + 365.44444444444446, + 405, + 378.6666666666667 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 206, + 378.6666666666667, + 405, + 391.8888888888889 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 206, + 391.8888888888889, + 405, + 405.11111111111114 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 206, + 405.11111111111114, + 405, + 418.33333333333337 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 206, + 418.33333333333337, + 405, + 431.5555555555556 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 206, + 431.5555555555556, + 405, + 444.7777777777778 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 206, + 444.7777777777778, + 405, + 458.00000000000006 + ], + "spans": [], + "index": 25 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 464, + 216, + 475 + ], + "lines": [ + { + "bbox": [ + 106, + 462, + 217, + 477 + ], + "spans": [ + { + "bbox": [ + 106, + 462, + 217, + 477 + ], + "score": 1.0, + "content": "which concludes the proof.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 106, + 487, + 504, + 510 + ], + "lines": [ + { + "bbox": [ + 106, + 488, + 505, + 501 + ], + "spans": [ + { + "bbox": [ + 106, + 488, + 505, + 501 + ], + "score": 1.0, + "content": "Applying Theorem 24 allows us to compute a smooth sensitivity of the sum more efficiently than", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 497, + 429, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 497, + 429, + 513 + ], + "score": 1.0, + "content": "summing up smooth sensitivities of its parts. Results below rely on this strategy.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5 + }, + { + "type": "text", + "bbox": [ + 107, + 522, + 504, + 556 + ], + "lines": [ + { + "bbox": [ + 106, + 522, + 505, + 534 + ], + "spans": [ + { + "bbox": [ + 106, + 522, + 505, + 534 + ], + "score": 1.0, + "content": "Empirical results. Table 2 revisits the privacy bounds in Table 1. For all data-dependent pri-", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 533, + 504, + 546 + ], + "spans": [ + { + "bbox": [ + 106, + 533, + 504, + 546 + ], + "score": 1.0, + "content": "vacy claims of the Confident GNMax aggregator we report parameters for their smooth sensitivity", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 545, + 393, + 557 + ], + "spans": [ + { + "bbox": [ + 106, + 545, + 393, + 557 + ], + "score": 1.0, + "content": "analysis and results of applying the GNSS mechanism for their release.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 106, + 560, + 505, + 639 + ], + "lines": [ + { + "bbox": [ + 106, + 561, + 504, + 573 + ], + "spans": [ + { + "bbox": [ + 106, + 561, + 504, + 573 + ], + "score": 1.0, + "content": "Consider the first row of the table. The MNIST dataset was partitioned among 250 teachers, each", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 572, + 506, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 506, + 585 + ], + "score": 1.0, + "content": "getting 200 training examples. After the teachers were individually trained, the student selected at", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 583, + 505, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 505, + 595 + ], + "score": 1.0, + "content": "random 640 unlabeled examples, and submitted them to the Confident GNMax aggregator with the", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 594, + 505, + 606 + ], + "spans": [ + { + "bbox": [ + 106, + 595, + 264, + 606 + ], + "score": 1.0, + "content": "threshold of 200, and noise parameters", + "type": "text" + }, + { + "bbox": [ + 265, + 594, + 306, + 605 + ], + "score": 0.9, + "content": "\\sigma _ { 1 } = 1 5 0", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 595, + 324, + 606 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 324, + 594, + 360, + 605 + ], + "score": 0.9, + "content": "\\sigma _ { 2 } = 4 0 ", + "type": "inline_equation" + }, + { + "bbox": [ + 360, + 595, + 505, + 606 + ], + "score": 1.0, + "content": ". The expected number of answered", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 605, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 505, + 617 + ], + "score": 1.0, + "content": "examples (those that passed the first step of Algorithm 1) is 283, and the expected Rényi differential", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 104, + 615, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 104, + 615, + 148, + 628 + ], + "score": 1.0, + "content": "privacy is", + "type": "text" + }, + { + "bbox": [ + 148, + 616, + 188, + 626 + ], + "score": 0.89, + "content": "\\varepsilon = 1 . 1 8", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 615, + 224, + 628 + ], + "score": 1.0, + "content": "at order", + "type": "text" + }, + { + "bbox": [ + 224, + 616, + 257, + 626 + ], + "score": 0.9, + "content": "\\lambda = 1 4", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 615, + 405, + 628 + ], + "score": 1.0, + "content": ". This translates (via Theorem 5) to", + "type": "text" + }, + { + "bbox": [ + 406, + 615, + 455, + 628 + ], + "score": 0.87, + "content": "( 2 . 0 0 , 1 0 ^ { - 5 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 455, + 615, + 505, + 628 + ], + "score": 1.0, + "content": "-differential", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 627, + 369, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 358, + 640 + ], + "score": 1.0, + "content": "privacy, where 2.00 is the expectation of the privacy parameter", + "type": "text" + }, + { + "bbox": [ + 358, + 629, + 364, + 637 + ], + "score": 0.66, + "content": "\\varepsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 365, + 627, + 369, + 640 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 107, + 643, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 643, + 505, + 656 + ], + "spans": [ + { + "bbox": [ + 106, + 643, + 505, + 656 + ], + "score": 1.0, + "content": "These costs are data-dependent and they cannot be released without further sanitization, which we", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 654, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 397, + 667 + ], + "score": 1.0, + "content": "handle by adding Gaussian noise scaled by the smooth sensitivity of", + "type": "text" + }, + { + "bbox": [ + 397, + 657, + 403, + 665 + ], + "score": 0.68, + "content": "\\varepsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 404, + 654, + 505, + 667 + ], + "score": 1.0, + "content": "(the GNSS mechanism,", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 186, + 678 + ], + "score": 1.0, + "content": "Definition 22). At", + "type": "text" + }, + { + "bbox": [ + 187, + 666, + 240, + 677 + ], + "score": 0.89, + "content": "\\beta = 0 . 0 3 2 9", + "type": "inline_equation" + }, + { + "bbox": [ + 240, + 666, + 505, + 678 + ], + "score": 1.0, + "content": "the expected value of smooth sensitivity is 0.0618. We choose", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 676, + 504, + 690 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 156, + 688 + ], + "score": 0.9, + "content": "\\sigma _ { \\mathrm { S S } } = 6 . 2 3", + "type": "inline_equation" + }, + { + "bbox": [ + 156, + 676, + 504, + 690 + ], + "score": 1.0, + "content": ", which incurs, according to Theorem 23, an additional (data-independent) (14, 0.52)-", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 687, + 505, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 198, + 701 + ], + "score": 1.0, + "content": "RDP cost. Applying", + "type": "text" + }, + { + "bbox": [ + 198, + 688, + 231, + 700 + ], + "score": 0.92, + "content": "( \\beta , \\sigma _ { \\mathrm { S S } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 687, + 291, + 701 + ], + "score": 1.0, + "content": "-GNSS where", + "type": "text" + }, + { + "bbox": [ + 292, + 688, + 344, + 699 + ], + "score": 0.9, + "content": "\\sigma _ { \\mathrm { S S } } ~ = ~ 6 . 2 3", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 687, + 505, + 701 + ], + "score": 1.0, + "content": ", we may publish differentially private", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 698, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 711 + ], + "score": 1.0, + "content": "estimate of the total privacy cost that consists of a fixed part—the cost of applying Confident GN-", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 708, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 325, + 723 + ], + "score": 1.0, + "content": "Max and GNSS—and random noise. The fixed part is", + "type": "text" + }, + { + "bbox": [ + 325, + 709, + 470, + 721 + ], + "score": 0.89, + "content": "2 . { \\bar { 5 } } 2 = 1 . 1 8 + 0 . 5 2 { \\stackrel { - } { - } } \\mathrm { l n } ( 1 { \\bar { 0 } } ^ { - 5 } ) / 1 4", + "type": "inline_equation" + }, + { + "bbox": [ + 470, + 708, + 506, + 723 + ], + "score": 1.0, + "content": ", and the", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 721, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 372, + 733 + ], + "score": 1.0, + "content": "noise is normally distributed with mean 0 and standard deviation", + "type": "text" + }, + { + "bbox": [ + 373, + 721, + 463, + 732 + ], + "score": 0.87, + "content": "\\sigma _ { \\mathrm { S S } } \\cdot 0 . 0 6 1 8 = 0 . 3 8 5", + "type": "inline_equation" + }, + { + "bbox": [ + 464, + 721, + 505, + 733 + ], + "score": 1.0, + "content": ". We note", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 42.5 + } + ], + "page_idx": 32, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 26, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 298, + 750, + 312, + 763 + ], + "spans": [ + { + "bbox": [ + 298, + 750, + 312, + 763 + ], + "score": 1.0, + "content": "33", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 496, + 463, + 505, + 475 + ], + "lines": [ + { + "bbox": [ + 498, + 466, + 505, + 475 + ], + "spans": [ + { + "bbox": [ + 498, + 466, + 505, + 475 + ], + "score": 0.0, + "content": "", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 81, + 505, + 117 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 504, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 230, + 95 + ], + "score": 1.0, + "content": "Proof. We need to argue that", + "type": "text" + }, + { + "bbox": [ + 230, + 82, + 253, + 95 + ], + "score": 0.5, + "content": "\\operatorname { S S } ( { \\mathord { \\cdot } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 81, + 265, + 95 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 265, + 83, + 273, + 94 + ], + "score": 0.86, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 81, + 328, + 95 + ], + "score": 1.0, + "content": "-smooth, i.e.,", + "type": "text" + }, + { + "bbox": [ + 329, + 82, + 429, + 95 + ], + "score": 0.91, + "content": "\\mathrm { S S } ( D _ { 1 } ) \\le e ^ { \\beta } \\cdot \\mathrm { S S } ( D _ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 429, + 81, + 504, + 95 + ], + "score": 1.0, + "content": "for any neighbor-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 91, + 505, + 108 + ], + "spans": [ + { + "bbox": [ + 105, + 91, + 123, + 108 + ], + "score": 1.0, + "content": "ing", + "type": "text" + }, + { + "bbox": [ + 123, + 93, + 180, + 105 + ], + "score": 0.88, + "content": "D _ { 1 } , D _ { 2 } \\ \\in \\ { \\mathcal { D } }", + "type": "inline_equation" + }, + { + "bbox": [ + 180, + 91, + 403, + 108 + ], + "score": 1.0, + "content": ", and it is an upper bound on the local sensitivity of", + "type": "text" + }, + { + "bbox": [ + 404, + 94, + 433, + 106 + ], + "score": 0.93, + "content": "F ( D _ { 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 433, + 91, + 457, + 108 + ], + "score": 1.0, + "content": ", i.e.,", + "type": "text" + }, + { + "bbox": [ + 458, + 93, + 505, + 106 + ], + "score": 0.88, + "content": "\\mathrm { S S } ( D _ { 1 } ) \\ \\geq", + "type": "inline_equation" + } + ], + "index": 1 + }, + { + "bbox": [ + 107, + 104, + 186, + 118 + ], + "spans": [ + { + "bbox": [ + 107, + 105, + 182, + 117 + ], + "score": 0.89, + "content": "| F ( D _ { 1 } ) - F ( D _ { 2 } ) |", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 104, + 186, + 118 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1, + "bbox_fs": [ + 105, + 81, + 505, + 118 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 121, + 291, + 132 + ], + "lines": [ + { + "bbox": [ + 106, + 121, + 292, + 133 + ], + "spans": [ + { + "bbox": [ + 106, + 121, + 292, + 133 + ], + "score": 1.0, + "content": "Smoothness follows from the observation that", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3, + "bbox_fs": [ + 106, + 121, + 292, + 133 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 197, + 136, + 414, + 158 + ], + "lines": [ + { + "bbox": [ + 197, + 136, + 414, + 158 + ], + "spans": [ + { + "bbox": [ + 197, + 136, + 414, + 158 + ], + "score": 0.9, + "content": "\\operatorname* { m a x } _ { D : \\mathrm { d i s t } ( D _ { 1 } , D ) \\leq d } \\tilde { \\mathrm { L S } } _ { f _ { i } } ( D ) \\leq \\operatorname* { m a x } _ { D : \\mathrm { d i s t } ( D _ { 2 } , D ) \\leq d + 1 } \\tilde { \\mathrm { L S } } _ { f _ { i } } ( D )", + "type": "interline_equation", + "image_path": "3c9f44cd2edcfae6aa1c4eeebc7e68b11dd1eb66e2ee9d3d416c1da73bbcaa4d.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 197, + 136, + 414, + 158 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 104, + 163, + 459, + 175 + ], + "lines": [ + { + "bbox": [ + 105, + 163, + 460, + 177 + ], + "spans": [ + { + "bbox": [ + 105, + 163, + 218, + 177 + ], + "score": 1.0, + "content": "for all neighboring datasets", + "type": "text" + }, + { + "bbox": [ + 218, + 164, + 231, + 174 + ], + "score": 0.89, + "content": "D _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 163, + 250, + 177 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 250, + 164, + 264, + 174 + ], + "score": 0.89, + "content": "D _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 264, + 163, + 460, + 177 + ], + "score": 1.0, + "content": "(by the triangle inequality over distances). Then", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5, + "bbox_fs": [ + 105, + 163, + 460, + 177 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 191, + 180, + 420, + 301 + ], + "lines": [ + { + "bbox": [ + 191, + 180, + 420, + 301 + ], + "spans": [ + { + "bbox": [ + 191, + 180, + 420, + 301 + ], + "score": 0.95, + "content": "\\begin{array} { r l } & { \\displaystyle \\mathrm { S S } ( D _ { 1 } ) = \\operatorname* { m a x } _ { d \\geq 0 } e ^ { - \\beta d } \\cdot \\sum _ { i = 1 } ^ { \\ell } \\operatorname* { m a x } _ { D : \\mathrm { d i s t } ( D _ { 1 } , D ) \\leq d } \\mathrm { I } \\tilde { \\mathrm { S } S } _ { f _ { i } } ( D ) , } \\\\ & { \\qquad \\leq \\displaystyle \\operatorname* { m a x } _ { d \\geq 0 } e ^ { - \\beta d } \\cdot \\sum _ { i = 1 } ^ { \\ell } \\operatorname* { m a x } _ { D : \\mathrm { d i s t } ( D _ { 2 } , D ) \\leq d + 1 } \\mathrm { I } \\tilde { \\mathrm { S } S } _ { f _ { i } } ( D ) } \\\\ & { \\qquad = \\displaystyle \\operatorname* { m a x } _ { d \\geq 1 } e ^ { - \\beta ( d ^ { \\prime } - 1 ) } \\cdot \\sum _ { i = 1 } ^ { \\ell } \\operatorname* { m a x } _ { D : \\mathrm { d i s t } ( D _ { 2 } , D ) \\leq d ^ { \\prime } } \\mathrm { I } \\tilde { \\mathrm { S } S } _ { f _ { i } } ( D ) } \\\\ & { \\qquad \\leq e ^ { \\beta } \\cdot \\mathrm { S S } ( D _ { 2 } ) } \\end{array}", + "type": "interline_equation", + "image_path": "319538b557fb62b145f9d04b0cb874d054e40d10359848ecc095936a018e209f.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 191, + 180, + 420, + 193.44444444444446 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 191, + 193.44444444444446, + 420, + 206.8888888888889 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 191, + 206.8888888888889, + 420, + 220.33333333333337 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 191, + 220.33333333333337, + 420, + 233.77777777777783 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 191, + 233.77777777777783, + 420, + 247.22222222222229 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 191, + 247.22222222222229, + 420, + 260.66666666666674 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 191, + 260.66666666666674, + 420, + 274.1111111111112 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 191, + 274.1111111111112, + 420, + 287.55555555555566 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 191, + 287.55555555555566, + 420, + 301.0000000000001 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 305, + 222, + 316 + ], + "lines": [ + { + "bbox": [ + 105, + 304, + 223, + 317 + ], + "spans": [ + { + "bbox": [ + 105, + 304, + 162, + 317 + ], + "score": 1.0, + "content": "as needed for", + "type": "text" + }, + { + "bbox": [ + 162, + 306, + 169, + 317 + ], + "score": 0.86, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 170, + 304, + 223, + 317 + ], + "score": 1.0, + "content": "-smoothness.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15, + "bbox_fs": [ + 105, + 304, + 223, + 317 + ] + }, + { + "type": "text", + "bbox": [ + 103, + 321, + 492, + 334 + ], + "lines": [ + { + "bbox": [ + 105, + 319, + 494, + 337 + ], + "spans": [ + { + "bbox": [ + 105, + 319, + 159, + 337 + ], + "score": 1.0, + "content": "The fact that", + "type": "text" + }, + { + "bbox": [ + 159, + 322, + 182, + 334 + ], + "score": 0.41, + "content": "\\operatorname { S S } ( { \\mathord { \\cdot } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 319, + 360, + 337 + ], + "score": 1.0, + "content": "is an upper bound on the local sensitivity of", + "type": "text" + }, + { + "bbox": [ + 360, + 322, + 379, + 334 + ], + "score": 0.91, + "content": "F ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 380, + 319, + 494, + 337 + ], + "score": 1.0, + "content": "is implied by the following:", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16, + "bbox_fs": [ + 105, + 319, + 494, + 337 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 206, + 339, + 405, + 458 + ], + "lines": [ + { + "bbox": [ + 206, + 339, + 405, + 458 + ], + "spans": [ + { + "bbox": [ + 206, + 339, + 405, + 458 + ], + "score": 0.95, + "content": "\\begin{array} { r l } { \\displaystyle | F ( D _ { 1 } ) - F ( D _ { 2 } ) | = \\left| \\displaystyle \\sum _ { i = 1 } ^ { \\ell } f _ { i } ( D _ { 1 } ) - \\displaystyle \\sum _ { i = 1 } ^ { \\ell } f _ { i } ( D _ { 2 } ) \\right| } & { } \\\\ { \\displaystyle } & { \\le \\displaystyle \\sum _ { i = 1 } ^ { \\ell } | f _ { i } ( D _ { 1 } ) - f _ { i } ( D _ { 2 } ) | } \\\\ { \\displaystyle } & { \\le \\displaystyle \\sum _ { i = 1 } ^ { \\ell } \\mathrm { I } \\tilde { \\mathrm { S } } f _ { i } ( D _ { 1 } ) } \\\\ { \\displaystyle } & { \\le \\mathrm { S S } ( D _ { 1 } ) , } \\end{array}", + "type": "interline_equation", + "image_path": "250ccbb22ab711876faadad3a4e39c1200563e5474827d8ffeba2904e677e46e.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 206, + 339, + 405, + 352.22222222222223 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 206, + 352.22222222222223, + 405, + 365.44444444444446 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 206, + 365.44444444444446, + 405, + 378.6666666666667 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 206, + 378.6666666666667, + 405, + 391.8888888888889 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 206, + 391.8888888888889, + 405, + 405.11111111111114 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 206, + 405.11111111111114, + 405, + 418.33333333333337 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 206, + 418.33333333333337, + 405, + 431.5555555555556 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 206, + 431.5555555555556, + 405, + 444.7777777777778 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 206, + 444.7777777777778, + 405, + 458.00000000000006 + ], + "spans": [], + "index": 25 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 464, + 216, + 475 + ], + "lines": [ + { + "bbox": [ + 106, + 462, + 217, + 477 + ], + "spans": [ + { + "bbox": [ + 106, + 462, + 217, + 477 + ], + "score": 1.0, + "content": "which concludes the proof.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26, + "bbox_fs": [ + 106, + 462, + 217, + 477 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 487, + 504, + 510 + ], + "lines": [ + { + "bbox": [ + 106, + 488, + 505, + 501 + ], + "spans": [ + { + "bbox": [ + 106, + 488, + 505, + 501 + ], + "score": 1.0, + "content": "Applying Theorem 24 allows us to compute a smooth sensitivity of the sum more efficiently than", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 497, + 429, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 497, + 429, + 513 + ], + "score": 1.0, + "content": "summing up smooth sensitivities of its parts. Results below rely on this strategy.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5, + "bbox_fs": [ + 105, + 488, + 505, + 513 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 522, + 504, + 556 + ], + "lines": [ + { + "bbox": [ + 106, + 522, + 505, + 534 + ], + "spans": [ + { + "bbox": [ + 106, + 522, + 505, + 534 + ], + "score": 1.0, + "content": "Empirical results. Table 2 revisits the privacy bounds in Table 1. For all data-dependent pri-", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 533, + 504, + 546 + ], + "spans": [ + { + "bbox": [ + 106, + 533, + 504, + 546 + ], + "score": 1.0, + "content": "vacy claims of the Confident GNMax aggregator we report parameters for their smooth sensitivity", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 545, + 393, + 557 + ], + "spans": [ + { + "bbox": [ + 106, + 545, + 393, + 557 + ], + "score": 1.0, + "content": "analysis and results of applying the GNSS mechanism for their release.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30, + "bbox_fs": [ + 106, + 522, + 505, + 557 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 560, + 505, + 639 + ], + "lines": [ + { + "bbox": [ + 106, + 561, + 504, + 573 + ], + "spans": [ + { + "bbox": [ + 106, + 561, + 504, + 573 + ], + "score": 1.0, + "content": "Consider the first row of the table. The MNIST dataset was partitioned among 250 teachers, each", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 572, + 506, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 506, + 585 + ], + "score": 1.0, + "content": "getting 200 training examples. After the teachers were individually trained, the student selected at", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 583, + 505, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 505, + 595 + ], + "score": 1.0, + "content": "random 640 unlabeled examples, and submitted them to the Confident GNMax aggregator with the", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 594, + 505, + 606 + ], + "spans": [ + { + "bbox": [ + 106, + 595, + 264, + 606 + ], + "score": 1.0, + "content": "threshold of 200, and noise parameters", + "type": "text" + }, + { + "bbox": [ + 265, + 594, + 306, + 605 + ], + "score": 0.9, + "content": "\\sigma _ { 1 } = 1 5 0", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 595, + 324, + 606 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 324, + 594, + 360, + 605 + ], + "score": 0.9, + "content": "\\sigma _ { 2 } = 4 0 ", + "type": "inline_equation" + }, + { + "bbox": [ + 360, + 595, + 505, + 606 + ], + "score": 1.0, + "content": ". The expected number of answered", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 605, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 505, + 617 + ], + "score": 1.0, + "content": "examples (those that passed the first step of Algorithm 1) is 283, and the expected Rényi differential", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 104, + 615, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 104, + 615, + 148, + 628 + ], + "score": 1.0, + "content": "privacy is", + "type": "text" + }, + { + "bbox": [ + 148, + 616, + 188, + 626 + ], + "score": 0.89, + "content": "\\varepsilon = 1 . 1 8", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 615, + 224, + 628 + ], + "score": 1.0, + "content": "at order", + "type": "text" + }, + { + "bbox": [ + 224, + 616, + 257, + 626 + ], + "score": 0.9, + "content": "\\lambda = 1 4", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 615, + 405, + 628 + ], + "score": 1.0, + "content": ". This translates (via Theorem 5) to", + "type": "text" + }, + { + "bbox": [ + 406, + 615, + 455, + 628 + ], + "score": 0.87, + "content": "( 2 . 0 0 , 1 0 ^ { - 5 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 455, + 615, + 505, + 628 + ], + "score": 1.0, + "content": "-differential", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 627, + 369, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 358, + 640 + ], + "score": 1.0, + "content": "privacy, where 2.00 is the expectation of the privacy parameter", + "type": "text" + }, + { + "bbox": [ + 358, + 629, + 364, + 637 + ], + "score": 0.66, + "content": "\\varepsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 365, + 627, + 369, + 640 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 35, + "bbox_fs": [ + 104, + 561, + 506, + 640 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 643, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 643, + 505, + 656 + ], + "spans": [ + { + "bbox": [ + 106, + 643, + 505, + 656 + ], + "score": 1.0, + "content": "These costs are data-dependent and they cannot be released without further sanitization, which we", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 654, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 397, + 667 + ], + "score": 1.0, + "content": "handle by adding Gaussian noise scaled by the smooth sensitivity of", + "type": "text" + }, + { + "bbox": [ + 397, + 657, + 403, + 665 + ], + "score": 0.68, + "content": "\\varepsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 404, + 654, + 505, + 667 + ], + "score": 1.0, + "content": "(the GNSS mechanism,", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 186, + 678 + ], + "score": 1.0, + "content": "Definition 22). At", + "type": "text" + }, + { + "bbox": [ + 187, + 666, + 240, + 677 + ], + "score": 0.89, + "content": "\\beta = 0 . 0 3 2 9", + "type": "inline_equation" + }, + { + "bbox": [ + 240, + 666, + 505, + 678 + ], + "score": 1.0, + "content": "the expected value of smooth sensitivity is 0.0618. We choose", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 676, + 504, + 690 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 156, + 688 + ], + "score": 0.9, + "content": "\\sigma _ { \\mathrm { S S } } = 6 . 2 3", + "type": "inline_equation" + }, + { + "bbox": [ + 156, + 676, + 504, + 690 + ], + "score": 1.0, + "content": ", which incurs, according to Theorem 23, an additional (data-independent) (14, 0.52)-", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 687, + 505, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 198, + 701 + ], + "score": 1.0, + "content": "RDP cost. Applying", + "type": "text" + }, + { + "bbox": [ + 198, + 688, + 231, + 700 + ], + "score": 0.92, + "content": "( \\beta , \\sigma _ { \\mathrm { S S } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 687, + 291, + 701 + ], + "score": 1.0, + "content": "-GNSS where", + "type": "text" + }, + { + "bbox": [ + 292, + 688, + 344, + 699 + ], + "score": 0.9, + "content": "\\sigma _ { \\mathrm { S S } } ~ = ~ 6 . 2 3", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 687, + 505, + 701 + ], + "score": 1.0, + "content": ", we may publish differentially private", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 698, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 711 + ], + "score": 1.0, + "content": "estimate of the total privacy cost that consists of a fixed part—the cost of applying Confident GN-", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 708, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 325, + 723 + ], + "score": 1.0, + "content": "Max and GNSS—and random noise. The fixed part is", + "type": "text" + }, + { + "bbox": [ + 325, + 709, + 470, + 721 + ], + "score": 0.89, + "content": "2 . { \\bar { 5 } } 2 = 1 . 1 8 + 0 . 5 2 { \\stackrel { - } { - } } \\mathrm { l n } ( 1 { \\bar { 0 } } ^ { - 5 } ) / 1 4", + "type": "inline_equation" + }, + { + "bbox": [ + 470, + 708, + 506, + 723 + ], + "score": 1.0, + "content": ", and the", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 721, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 372, + 733 + ], + "score": 1.0, + "content": "noise is normally distributed with mean 0 and standard deviation", + "type": "text" + }, + { + "bbox": [ + 373, + 721, + 463, + 732 + ], + "score": 0.87, + "content": "\\sigma _ { \\mathrm { S S } } \\cdot 0 . 0 6 1 8 = 0 . 3 8 5", + "type": "inline_equation" + }, + { + "bbox": [ + 464, + 721, + 505, + 733 + ], + "score": 1.0, + "content": ". We note", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 277, + 505, + 290 + ], + "spans": [ + { + "bbox": [ + 106, + 277, + 505, + 290 + ], + "score": 1.0, + "content": "that, in contrast with the standard additive noise, one cannot publish its standard deviation without", + "type": "text", + "cross_page": true + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 289, + 276, + 302 + ], + "spans": [ + { + "bbox": [ + 105, + 289, + 276, + 302 + ], + "score": 1.0, + "content": "going through additional privacy analysis.", + "type": "text", + "cross_page": true + } + ], + "index": 10 + } + ], + "index": 42.5, + "bbox_fs": [ + 105, + 643, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 106, + 80, + 507, + 182 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 106, + 80, + 507, + 182 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 80, + 507, + 182 + ], + "spans": [ + { + "bbox": [ + 106, + 80, + 507, + 182 + ], + "score": 0.984, + "html": "
DatasetConfident GNMax parametersDPE[e] 8Smooth Sensitivity入 B E[SSB] UssSanitized DPE[e]±noise
E[e]BE[SSB]
MNISTT=200,01=150,σ2=402.0010-514.0329.06186.232.52±0.385
SVHNT=300,01=200,02=404.9610-67.5.0533.07174.885.45± 0.350
AdultT=300,σ1=200,02=401.6810-515.5.03100.03327.922.09±0.263
GlyphT=1000,σ1=500,02=1002.0710-820.5.0205.012811.92.29±0.152
Two-round interactive0.83710-850.009.0027826.41.00± .081
.008.0008838.7
", + "type": "table", + "image_path": "5c0e574eca6760490c5785bb6c27226b625409823ed26c081eb7390ca991b508.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 106, + 80, + 507, + 114.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 106, + 114.0, + 507, + 148.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 106, + 148.0, + 507, + 182.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 106, + 190, + 505, + 257 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 189, + 506, + 204 + ], + "spans": [ + { + "bbox": [ + 105, + 189, + 506, + 204 + ], + "score": 1.0, + "content": "Table 2: Privacy-preserving reporting of privacy costs. The table augments Table 1 by including", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 202, + 505, + 213 + ], + "spans": [ + { + "bbox": [ + 106, + 202, + 505, + 213 + ], + "score": 1.0, + "content": "smooth sensitivity analysis of the total privacy cost. The expectations are taken over the student’s", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 212, + 505, + 225 + ], + "spans": [ + { + "bbox": [ + 105, + 212, + 427, + 225 + ], + "score": 1.0, + "content": "queries and outcomes of the first step of the Confident GNMax aggregator. Order", + "type": "text" + }, + { + "bbox": [ + 427, + 213, + 434, + 222 + ], + "score": 0.56, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 435, + 212, + 505, + 225 + ], + "score": 1.0, + "content": ", smooth sensitiv-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 223, + 505, + 235 + ], + "spans": [ + { + "bbox": [ + 105, + 223, + 162, + 235 + ], + "score": 1.0, + "content": "ity parameter", + "type": "text" + }, + { + "bbox": [ + 162, + 224, + 169, + 235 + ], + "score": 0.7, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 169, + 223, + 173, + 235 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 173, + 224, + 189, + 235 + ], + "score": 0.68, + "content": "\\sigma _ { \\mathrm { S S } }", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 223, + 505, + 235 + ], + "score": 1.0, + "content": "are parameters of the GNSS mechanism (Section B.5). The final column sums", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 234, + 506, + 246 + ], + "spans": [ + { + "bbox": [ + 105, + 234, + 216, + 246 + ], + "score": 1.0, + "content": "up the data-dependent cost", + "type": "text" + }, + { + "bbox": [ + 216, + 236, + 222, + 244 + ], + "score": 0.73, + "content": "\\varepsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 234, + 506, + 246 + ], + "score": 1.0, + "content": ", the cost of applying GNSS (Theorem 23), and the standard deviation", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 104, + 243, + 443, + 258 + ], + "spans": [ + { + "bbox": [ + 104, + 243, + 368, + 258 + ], + "score": 1.0, + "content": "of Gaussian noise calibrated to smooth sensitivity (the product of", + "type": "text" + }, + { + "bbox": [ + 369, + 245, + 376, + 255 + ], + "score": 0.35, + "content": "\\mathbb { E }", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 245, + 401, + 258 + ], + "score": 0.82, + "content": "[ \\mathrm { S S } _ { \\beta } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 243, + 418, + 258 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 419, + 246, + 435, + 257 + ], + "score": 0.83, + "content": "\\sigma _ { \\mathrm { S S } }", + "type": "inline_equation" + }, + { + "bbox": [ + 435, + 243, + 443, + 258 + ], + "score": 1.0, + "content": ").", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 5.5 + } + ], + "index": 3.25 + }, + { + "type": "text", + "bbox": [ + 106, + 278, + 504, + 300 + ], + "lines": [ + { + "bbox": [ + 106, + 277, + 505, + 290 + ], + "spans": [ + { + "bbox": [ + 106, + 277, + 505, + 290 + ], + "score": 1.0, + "content": "that, in contrast with the standard additive noise, one cannot publish its standard deviation without", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 289, + 276, + 302 + ], + "spans": [ + { + "bbox": [ + 105, + 289, + 276, + 302 + ], + "score": 1.0, + "content": "going through additional privacy analysis.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5 + }, + { + "type": "text", + "bbox": [ + 107, + 306, + 505, + 350 + ], + "lines": [ + { + "bbox": [ + 105, + 306, + 506, + 318 + ], + "spans": [ + { + "bbox": [ + 105, + 306, + 506, + 318 + ], + "score": 1.0, + "content": "Some of these constants were optimally chosen (via grid search or analytically) given full view of", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 317, + 505, + 329 + ], + "spans": [ + { + "bbox": [ + 106, + 317, + 505, + 329 + ], + "score": 1.0, + "content": "data, and thus provide a somewhat optimistic view of how this pipeline might perform in practice.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 328, + 505, + 341 + ], + "spans": [ + { + "bbox": [ + 105, + 328, + 163, + 341 + ], + "score": 1.0, + "content": "For example,", + "type": "text" + }, + { + "bbox": [ + 164, + 329, + 181, + 339 + ], + "score": 0.84, + "content": "\\sigma _ { \\mathrm { S S } }", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 328, + 505, + 341 + ], + "score": 1.0, + "content": "in Table 2 were selected to minimize the total privacy cost plus two standard", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 339, + 198, + 350 + ], + "spans": [ + { + "bbox": [ + 106, + 339, + 198, + 350 + ], + "score": 1.0, + "content": "deviation of the noise.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12.5 + }, + { + "type": "text", + "bbox": [ + 106, + 355, + 505, + 435 + ], + "lines": [ + { + "bbox": [ + 105, + 355, + 505, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 355, + 505, + 369 + ], + "score": 1.0, + "content": "The following rules of thumb may replace these laborious and privacy-revealing tuning procedures", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 366, + 505, + 380 + ], + "spans": [ + { + "bbox": [ + 105, + 366, + 280, + 380 + ], + "score": 1.0, + "content": "in typical use cases. The privacy parameter", + "type": "text" + }, + { + "bbox": [ + 280, + 367, + 286, + 377 + ], + "score": 0.6, + "content": "\\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 287, + 366, + 505, + 380 + ], + "score": 1.0, + "content": "must be less than the inverse of the number of training", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 377, + 506, + 390 + ], + "spans": [ + { + "bbox": [ + 105, + 377, + 211, + 390 + ], + "score": 1.0, + "content": "examples. Giving a target", + "type": "text" + }, + { + "bbox": [ + 212, + 380, + 217, + 388 + ], + "score": 0.72, + "content": "\\varepsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 377, + 259, + 390 + ], + "score": 1.0, + "content": ", the order", + "type": "text" + }, + { + "bbox": [ + 259, + 378, + 267, + 388 + ], + "score": 0.77, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 267, + 377, + 355, + 390 + ], + "score": 1.0, + "content": "can be chosen so that", + "type": "text" + }, + { + "bbox": [ + 356, + 378, + 451, + 390 + ], + "score": 0.92, + "content": "\\log ( 1 / \\delta ) \\approx ( \\lambda - 1 ) \\varepsilon / 2", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 377, + 506, + 390 + ], + "score": 1.0, + "content": ", i.e., the cost", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 388, + 505, + 401 + ], + "spans": [ + { + "bbox": [ + 105, + 388, + 132, + 401 + ], + "score": 1.0, + "content": "of the", + "type": "text" + }, + { + "bbox": [ + 132, + 389, + 138, + 399 + ], + "score": 0.76, + "content": "\\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 138, + 388, + 376, + 401 + ], + "score": 1.0, + "content": "contribution in Theorem 5 be roughly half of the total. The", + "type": "text" + }, + { + "bbox": [ + 376, + 390, + 384, + 400 + ], + "score": 0.85, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 384, + 388, + 505, + 401 + ], + "score": 1.0, + "content": "-smoothness parameter can be", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 399, + 505, + 412 + ], + "spans": [ + { + "bbox": [ + 105, + 399, + 131, + 412 + ], + "score": 1.0, + "content": "set to", + "type": "text" + }, + { + "bbox": [ + 131, + 399, + 156, + 412 + ], + "score": 0.9, + "content": "0 . 4 / \\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 156, + 399, + 284, + 412 + ], + "score": 1.0, + "content": ", from which smooth sensitivity", + "type": "text" + }, + { + "bbox": [ + 285, + 400, + 302, + 412 + ], + "score": 0.89, + "content": "{ \\mathrm { S S } } _ { \\beta }", + "type": "inline_equation" + }, + { + "bbox": [ + 303, + 399, + 459, + 412 + ], + "score": 1.0, + "content": "can be estimated. The final parameter", + "type": "text" + }, + { + "bbox": [ + 459, + 402, + 475, + 411 + ], + "score": 0.83, + "content": "\\sigma _ { \\mathrm { S S } }", + "type": "inline_equation" + }, + { + "bbox": [ + 475, + 399, + 505, + 412 + ], + "score": 1.0, + "content": "can be", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 411, + 506, + 426 + ], + "spans": [ + { + "bbox": [ + 105, + 412, + 221, + 426 + ], + "score": 1.0, + "content": "reasonably chosen between", + "type": "text" + }, + { + "bbox": [ + 221, + 411, + 284, + 425 + ], + "score": 0.89, + "content": "2 \\cdot \\sqrt { ( \\lambda + 1 ) / \\varepsilon }", + "type": "inline_equation" + }, + { + "bbox": [ + 284, + 412, + 303, + 426 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 304, + 411, + 368, + 425 + ], + "score": 0.91, + "content": "4 \\cdot \\sqrt { ( \\lambda + 1 ) / \\varepsilon }", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 412, + 506, + 426 + ], + "score": 1.0, + "content": "(ensuring that the first, dominant", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 424, + 495, + 436 + ], + "spans": [ + { + "bbox": [ + 105, + 424, + 433, + 436 + ], + "score": 1.0, + "content": "component, of the cost of the GNSS mechanism given by Theorem 23 is between", + "type": "text" + }, + { + "bbox": [ + 433, + 424, + 455, + 436 + ], + "score": 0.89, + "content": "\\varepsilon / 1 6", + "type": "inline_equation" + }, + { + "bbox": [ + 455, + 424, + 472, + 436 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 473, + 424, + 488, + 436 + ], + "score": 0.87, + "content": "\\varepsilon / 4", + "type": "inline_equation" + }, + { + "bbox": [ + 489, + 424, + 495, + 436 + ], + "score": 1.0, + "content": ").", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 18 + } + ], + "page_idx": 33, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 298, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 298, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 15 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 106, + 80, + 507, + 182 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 106, + 80, + 507, + 182 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 80, + 507, + 182 + ], + "spans": [ + { + "bbox": [ + 106, + 80, + 507, + 182 + ], + "score": 0.984, + "html": "
DatasetConfident GNMax parametersDPE[e] 8Smooth Sensitivity入 B E[SSB] UssSanitized DPE[e]±noise
E[e]BE[SSB]
MNISTT=200,01=150,σ2=402.0010-514.0329.06186.232.52±0.385
SVHNT=300,01=200,02=404.9610-67.5.0533.07174.885.45± 0.350
AdultT=300,σ1=200,02=401.6810-515.5.03100.03327.922.09±0.263
GlyphT=1000,σ1=500,02=1002.0710-820.5.0205.012811.92.29±0.152
Two-round interactive0.83710-850.009.0027826.41.00± .081
.008.0008838.7
", + "type": "table", + "image_path": "5c0e574eca6760490c5785bb6c27226b625409823ed26c081eb7390ca991b508.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 106, + 80, + 507, + 114.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 106, + 114.0, + 507, + 148.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 106, + 148.0, + 507, + 182.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 106, + 190, + 505, + 257 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 189, + 506, + 204 + ], + "spans": [ + { + "bbox": [ + 105, + 189, + 506, + 204 + ], + "score": 1.0, + "content": "Table 2: Privacy-preserving reporting of privacy costs. The table augments Table 1 by including", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 202, + 505, + 213 + ], + "spans": [ + { + "bbox": [ + 106, + 202, + 505, + 213 + ], + "score": 1.0, + "content": "smooth sensitivity analysis of the total privacy cost. The expectations are taken over the student’s", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 212, + 505, + 225 + ], + "spans": [ + { + "bbox": [ + 105, + 212, + 427, + 225 + ], + "score": 1.0, + "content": "queries and outcomes of the first step of the Confident GNMax aggregator. Order", + "type": "text" + }, + { + "bbox": [ + 427, + 213, + 434, + 222 + ], + "score": 0.56, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 435, + 212, + 505, + 225 + ], + "score": 1.0, + "content": ", smooth sensitiv-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 223, + 505, + 235 + ], + "spans": [ + { + "bbox": [ + 105, + 223, + 162, + 235 + ], + "score": 1.0, + "content": "ity parameter", + "type": "text" + }, + { + "bbox": [ + 162, + 224, + 169, + 235 + ], + "score": 0.7, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 169, + 223, + 173, + 235 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 173, + 224, + 189, + 235 + ], + "score": 0.68, + "content": "\\sigma _ { \\mathrm { S S } }", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 223, + 505, + 235 + ], + "score": 1.0, + "content": "are parameters of the GNSS mechanism (Section B.5). The final column sums", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 234, + 506, + 246 + ], + "spans": [ + { + "bbox": [ + 105, + 234, + 216, + 246 + ], + "score": 1.0, + "content": "up the data-dependent cost", + "type": "text" + }, + { + "bbox": [ + 216, + 236, + 222, + 244 + ], + "score": 0.73, + "content": "\\varepsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 234, + 506, + 246 + ], + "score": 1.0, + "content": ", the cost of applying GNSS (Theorem 23), and the standard deviation", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 104, + 243, + 443, + 258 + ], + "spans": [ + { + "bbox": [ + 104, + 243, + 368, + 258 + ], + "score": 1.0, + "content": "of Gaussian noise calibrated to smooth sensitivity (the product of", + "type": "text" + }, + { + "bbox": [ + 369, + 245, + 376, + 255 + ], + "score": 0.35, + "content": "\\mathbb { E }", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 245, + 401, + 258 + ], + "score": 0.82, + "content": "[ \\mathrm { S S } _ { \\beta } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 243, + 418, + 258 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 419, + 246, + 435, + 257 + ], + "score": 0.83, + "content": "\\sigma _ { \\mathrm { S S } }", + "type": "inline_equation" + }, + { + "bbox": [ + 435, + 243, + 443, + 258 + ], + "score": 1.0, + "content": ").", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 5.5 + } + ], + "index": 3.25 + }, + { + "type": "text", + "bbox": [ + 106, + 278, + 504, + 300 + ], + "lines": [], + "index": 9.5, + "bbox_fs": [ + 105, + 277, + 505, + 302 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 306, + 505, + 350 + ], + "lines": [ + { + "bbox": [ + 105, + 306, + 506, + 318 + ], + "spans": [ + { + "bbox": [ + 105, + 306, + 506, + 318 + ], + "score": 1.0, + "content": "Some of these constants were optimally chosen (via grid search or analytically) given full view of", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 317, + 505, + 329 + ], + "spans": [ + { + "bbox": [ + 106, + 317, + 505, + 329 + ], + "score": 1.0, + "content": "data, and thus provide a somewhat optimistic view of how this pipeline might perform in practice.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 328, + 505, + 341 + ], + "spans": [ + { + "bbox": [ + 105, + 328, + 163, + 341 + ], + "score": 1.0, + "content": "For example,", + "type": "text" + }, + { + "bbox": [ + 164, + 329, + 181, + 339 + ], + "score": 0.84, + "content": "\\sigma _ { \\mathrm { S S } }", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 328, + 505, + 341 + ], + "score": 1.0, + "content": "in Table 2 were selected to minimize the total privacy cost plus two standard", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 339, + 198, + 350 + ], + "spans": [ + { + "bbox": [ + 106, + 339, + 198, + 350 + ], + "score": 1.0, + "content": "deviation of the noise.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12.5, + "bbox_fs": [ + 105, + 306, + 506, + 350 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 355, + 505, + 435 + ], + "lines": [ + { + "bbox": [ + 105, + 355, + 505, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 355, + 505, + 369 + ], + "score": 1.0, + "content": "The following rules of thumb may replace these laborious and privacy-revealing tuning procedures", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 366, + 505, + 380 + ], + "spans": [ + { + "bbox": [ + 105, + 366, + 280, + 380 + ], + "score": 1.0, + "content": "in typical use cases. The privacy parameter", + "type": "text" + }, + { + "bbox": [ + 280, + 367, + 286, + 377 + ], + "score": 0.6, + "content": "\\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 287, + 366, + 505, + 380 + ], + "score": 1.0, + "content": "must be less than the inverse of the number of training", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 377, + 506, + 390 + ], + "spans": [ + { + "bbox": [ + 105, + 377, + 211, + 390 + ], + "score": 1.0, + "content": "examples. Giving a target", + "type": "text" + }, + { + "bbox": [ + 212, + 380, + 217, + 388 + ], + "score": 0.72, + "content": "\\varepsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 377, + 259, + 390 + ], + "score": 1.0, + "content": ", the order", + "type": "text" + }, + { + "bbox": [ + 259, + 378, + 267, + 388 + ], + "score": 0.77, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 267, + 377, + 355, + 390 + ], + "score": 1.0, + "content": "can be chosen so that", + "type": "text" + }, + { + "bbox": [ + 356, + 378, + 451, + 390 + ], + "score": 0.92, + "content": "\\log ( 1 / \\delta ) \\approx ( \\lambda - 1 ) \\varepsilon / 2", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 377, + 506, + 390 + ], + "score": 1.0, + "content": ", i.e., the cost", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 388, + 505, + 401 + ], + "spans": [ + { + "bbox": [ + 105, + 388, + 132, + 401 + ], + "score": 1.0, + "content": "of the", + "type": "text" + }, + { + "bbox": [ + 132, + 389, + 138, + 399 + ], + "score": 0.76, + "content": "\\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 138, + 388, + 376, + 401 + ], + "score": 1.0, + "content": "contribution in Theorem 5 be roughly half of the total. The", + "type": "text" + }, + { + "bbox": [ + 376, + 390, + 384, + 400 + ], + "score": 0.85, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 384, + 388, + 505, + 401 + ], + "score": 1.0, + "content": "-smoothness parameter can be", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 399, + 505, + 412 + ], + "spans": [ + { + "bbox": [ + 105, + 399, + 131, + 412 + ], + "score": 1.0, + "content": "set to", + "type": "text" + }, + { + "bbox": [ + 131, + 399, + 156, + 412 + ], + "score": 0.9, + "content": "0 . 4 / \\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 156, + 399, + 284, + 412 + ], + "score": 1.0, + "content": ", from which smooth sensitivity", + "type": "text" + }, + { + "bbox": [ + 285, + 400, + 302, + 412 + ], + "score": 0.89, + "content": "{ \\mathrm { S S } } _ { \\beta }", + "type": "inline_equation" + }, + { + "bbox": [ + 303, + 399, + 459, + 412 + ], + "score": 1.0, + "content": "can be estimated. The final parameter", + "type": "text" + }, + { + "bbox": [ + 459, + 402, + 475, + 411 + ], + "score": 0.83, + "content": "\\sigma _ { \\mathrm { S S } }", + "type": "inline_equation" + }, + { + "bbox": [ + 475, + 399, + 505, + 412 + ], + "score": 1.0, + "content": "can be", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 411, + 506, + 426 + ], + "spans": [ + { + "bbox": [ + 105, + 412, + 221, + 426 + ], + "score": 1.0, + "content": "reasonably chosen between", + "type": "text" + }, + { + "bbox": [ + 221, + 411, + 284, + 425 + ], + "score": 0.89, + "content": "2 \\cdot \\sqrt { ( \\lambda + 1 ) / \\varepsilon }", + "type": "inline_equation" + }, + { + "bbox": [ + 284, + 412, + 303, + 426 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 304, + 411, + 368, + 425 + ], + "score": 0.91, + "content": "4 \\cdot \\sqrt { ( \\lambda + 1 ) / \\varepsilon }", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 412, + 506, + 426 + ], + "score": 1.0, + "content": "(ensuring that the first, dominant", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 424, + 495, + 436 + ], + "spans": [ + { + "bbox": [ + 105, + 424, + 433, + 436 + ], + "score": 1.0, + "content": "component, of the cost of the GNSS mechanism given by Theorem 23 is between", + "type": "text" + }, + { + "bbox": [ + 433, + 424, + 455, + 436 + ], + "score": 0.89, + "content": "\\varepsilon / 1 6", + "type": "inline_equation" + }, + { + "bbox": [ + 455, + 424, + 472, + 436 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 473, + 424, + 488, + 436 + ], + "score": 0.87, + "content": "\\varepsilon / 4", + "type": "inline_equation" + }, + { + "bbox": [ + 489, + 424, + 495, + 436 + ], + "score": 1.0, + "content": ").", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 18, + "bbox_fs": [ + 105, + 355, + 506, + 436 + ] + } + ] + } + ], + "_backend": "pipeline", + "_version_name": "2.2.2" +} \ No newline at end of file diff --git a/parse/train/rkZB1XbRZ/rkZB1XbRZ_model.json b/parse/train/rkZB1XbRZ/rkZB1XbRZ_model.json new file mode 100644 index 0000000000000000000000000000000000000000..12c3fc70c626d7d402a63e0a349b750c946f1c85 --- /dev/null +++ b/parse/train/rkZB1XbRZ/rkZB1XbRZ_model.json @@ -0,0 +1,59631 @@ +[ + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1620, + 1403, + 1620, + 1403, + 1987, + 298, + 1987 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 1390, + 1403, + 1390, + 1403, + 1605, + 298, + 1605 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 313, + 321, + 651, + 321, + 651, + 413, + 313, + 413 + ], + "score": 0.954 + }, + { + "category_id": 1, + "poly": [ + 992, + 321, + 1386, + 321, + 1386, + 413, + 992, + 413 + ], + "score": 0.941 + }, + { + "category_id": 1, + "poly": [ + 398, + 960, + 1302, + 960, + 1302, + 1265, + 398, + 1265 + ], + "score": 0.937 + }, + { + "category_id": 1, + "poly": [ + 398, + 681, + 1301, + 681, + 1301, + 956, + 398, + 956 + ], + "score": 0.936 + }, + { + "category_id": 0, + "poly": [ + 300, + 220, + 1193, + 220, + 1193, + 269, + 300, + 269 + ], + "score": 0.935 + }, + { + "category_id": 0, + "poly": [ + 302, + 1321, + 573, + 1321, + 573, + 1356, + 302, + 1356 + ], + "score": 0.889 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 816, + 75, + 816, + 105, + 299, + 105 + ], + "score": 0.87 + }, + { + "category_id": 0, + "poly": [ + 773, + 612, + 926, + 612, + 926, + 646, + 773, + 646 + ], + "score": 0.84 + }, + { + "category_id": 2, + "poly": [ + 318, + 2004, + 1381, + 2004, + 1381, + 2033, + 318, + 2033 + ], + "score": 0.806 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 857, + 2088, + 857, + 2112, + 841, + 2112 + ], + "score": 0.711 + }, + { + "category_id": 1, + "poly": [ + 316, + 495, + 944, + 495, + 944, + 552, + 316, + 552 + ], + "score": 0.555 + }, + { + "category_id": 0, + "poly": [ + 315, + 457, + 1150, + 457, + 1150, + 492, + 315, + 492 + ], + "score": 0.51 + }, + { + "category_id": 13, + "poly": [ + 1181, + 1235, + 1279, + 1235, + 1279, + 1266, + 1181, + 1266 + ], + "score": 0.82, + "latex": "( \\varepsilon < 1 . 0 )" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 218.0, + 1197.0, + 218.0, + 1197.0, + 274.0, + 294.0, + 274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1318.0, + 579.0, + 1318.0, + 579.0, + 1365.0, + 294.0, + 1365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 769.0, + 611.0, + 932.0, + 611.0, + 932.0, + 649.0, + 769.0, + 649.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 2001.0, + 1383.0, + 2001.0, + 1383.0, + 2039.0, + 331.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2087.0, + 860.0, + 2087.0, + 860.0, + 2117.0, + 840.0, + 2117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 309.0, + 453.0, + 1159.0, + 453.0, + 1159.0, + 503.0, + 309.0, + 503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1620.0, + 1404.0, + 1620.0, + 1404.0, + 1658.0, + 293.0, + 1658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1649.0, + 1407.0, + 1649.0, + 1407.0, + 1688.0, + 293.0, + 1688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1678.0, + 1404.0, + 1678.0, + 1404.0, + 1720.0, + 293.0, + 1720.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1712.0, + 1405.0, + 1712.0, + 1405.0, + 1746.0, + 294.0, + 1746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1743.0, + 1405.0, + 1743.0, + 1405.0, + 1777.0, + 294.0, + 1777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1773.0, + 1406.0, + 1773.0, + 1406.0, + 1807.0, + 292.0, + 1807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1802.0, + 1407.0, + 1802.0, + 1407.0, + 1839.0, + 292.0, + 1839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1834.0, + 1405.0, + 1834.0, + 1405.0, + 1868.0, + 294.0, + 1868.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1861.0, + 1405.0, + 1861.0, + 1405.0, + 1901.0, + 292.0, + 1901.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1891.0, + 1407.0, + 1891.0, + 1407.0, + 1932.0, + 292.0, + 1932.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1924.0, + 1404.0, + 1924.0, + 1404.0, + 1960.0, + 293.0, + 1960.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1954.0, + 1405.0, + 1954.0, + 1405.0, + 1991.0, + 294.0, + 1991.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1385.0, + 1404.0, + 1385.0, + 1404.0, + 1429.0, + 292.0, + 1429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1420.0, + 1403.0, + 1420.0, + 1403.0, + 1457.0, + 293.0, + 1457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1449.0, + 1405.0, + 1449.0, + 1405.0, + 1486.0, + 292.0, + 1486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1482.0, + 1404.0, + 1482.0, + 1404.0, + 1516.0, + 294.0, + 1516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1511.0, + 1407.0, + 1511.0, + 1407.0, + 1549.0, + 294.0, + 1549.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1543.0, + 1405.0, + 1543.0, + 1405.0, + 1577.0, + 294.0, + 1577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1574.0, + 1223.0, + 1574.0, + 1223.0, + 1608.0, + 294.0, + 1608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 313.0, + 321.0, + 532.0, + 321.0, + 532.0, + 353.0, + 313.0, + 353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 310.0, + 348.0, + 650.0, + 348.0, + 650.0, + 386.0, + 310.0, + 386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 313.0, + 384.0, + 584.0, + 384.0, + 584.0, + 416.0, + 313.0, + 416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 990.0, + 319.0, + 1166.0, + 319.0, + 1166.0, + 357.0, + 990.0, + 357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 990.0, + 347.0, + 1388.0, + 347.0, + 1388.0, + 388.0, + 990.0, + 388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 993.0, + 383.0, + 1264.0, + 383.0, + 1264.0, + 415.0, + 993.0, + 415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 960.0, + 1304.0, + 960.0, + 1304.0, + 994.0, + 394.0, + 994.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 991.0, + 1305.0, + 991.0, + 1305.0, + 1024.0, + 395.0, + 1024.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1021.0, + 1305.0, + 1021.0, + 1305.0, + 1056.0, + 394.0, + 1056.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1050.0, + 1305.0, + 1050.0, + 1305.0, + 1087.0, + 393.0, + 1087.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1082.0, + 1305.0, + 1082.0, + 1305.0, + 1114.0, + 395.0, + 1114.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1115.0, + 1307.0, + 1115.0, + 1307.0, + 1147.0, + 394.0, + 1147.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1144.0, + 1306.0, + 1144.0, + 1306.0, + 1177.0, + 394.0, + 1177.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1175.0, + 1305.0, + 1175.0, + 1305.0, + 1207.0, + 394.0, + 1207.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1205.0, + 1306.0, + 1205.0, + 1306.0, + 1238.0, + 395.0, + 1238.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1234.0, + 1180.0, + 1234.0, + 1180.0, + 1271.0, + 393.0, + 1271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1280.0, + 1234.0, + 1294.0, + 1234.0, + 1294.0, + 1271.0, + 1280.0, + 1271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 679.0, + 1305.0, + 679.0, + 1305.0, + 719.0, + 394.0, + 719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 711.0, + 1306.0, + 711.0, + 1306.0, + 747.0, + 394.0, + 747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 740.0, + 1306.0, + 740.0, + 1306.0, + 779.0, + 392.0, + 779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 774.0, + 1305.0, + 774.0, + 1305.0, + 805.0, + 394.0, + 805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 805.0, + 1304.0, + 805.0, + 1304.0, + 834.0, + 395.0, + 834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 832.0, + 1306.0, + 832.0, + 1306.0, + 871.0, + 393.0, + 871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 866.0, + 1306.0, + 866.0, + 1306.0, + 895.0, + 393.0, + 895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 894.0, + 1304.0, + 894.0, + 1304.0, + 927.0, + 395.0, + 927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 925.0, + 1218.0, + 925.0, + 1218.0, + 958.0, + 394.0, + 958.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 312.0, + 489.0, + 472.0, + 489.0, + 472.0, + 523.0, + 312.0, + 523.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 313.0, + 522.0, + 944.0, + 522.0, + 944.0, + 556.0, + 313.0, + 556.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 0, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1513, + 1403, + 1513, + 1403, + 1697, + 298, + 1697 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 1313, + 1404, + 1313, + 1404, + 1497, + 298, + 1497 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 297, + 1084, + 1403, + 1084, + 1403, + 1299, + 297, + 1299 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 1711, + 1403, + 1711, + 1403, + 1896, + 298, + 1896 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 299, + 944, + 1403, + 944, + 1403, + 1069, + 299, + 1069 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 299, + 1911, + 1401, + 1911, + 1401, + 2034, + 299, + 2034 + ], + "score": 0.971 + }, + { + "category_id": 3, + "poly": [ + 300, + 231, + 1396, + 231, + 1396, + 562, + 300, + 562 + ], + "score": 0.964 + }, + { + "category_id": 4, + "poly": [ + 296, + 589, + 1405, + 589, + 1405, + 775, + 296, + 775 + ], + "score": 0.962 + }, + { + "category_id": 1, + "poly": [ + 298, + 836, + 1400, + 836, + 1400, + 930, + 298, + 930 + ], + "score": 0.962 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 814, + 76, + 814, + 104, + 299, + 104 + ], + "score": 0.885 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.711 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.124 + }, + { + "category_id": 13, + "poly": [ + 905, + 838, + 966, + 838, + 966, + 870, + 905, + 870 + ], + "score": 0.91, + "latex": "( \\varepsilon , \\delta )" + }, + { + "category_id": 13, + "poly": [ + 1001, + 1836, + 1094, + 1836, + 1094, + 1865, + 1001, + 1865 + ], + "score": 0.83, + "latex": "\\langle \\varepsilon \\approx 1 . 0 " + }, + { + "category_id": 13, + "poly": [ + 756, + 656, + 776, + 656, + 776, + 679, + 756, + 679 + ], + "score": 0.7, + "latex": "\\varepsilon" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 226.0, + 362.0, + 226.0, + 362.0, + 253.0, + 322.0, + 253.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 696.0, + 234.0, + 726.0, + 234.0, + 726.0, + 257.0, + 696.0, + 257.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 407.0, + 245.0, + 477.0, + 245.0, + 477.0, + 277.0, + 407.0, + 277.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1057.0, + 245.0, + 1113.0, + 245.0, + 1113.0, + 269.0, + 1057.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 365.0, + 252.0, + 407.0, + 252.0, + 407.0, + 273.0, + 365.0, + 273.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 762.0, + 252.0, + 821.0, + 252.0, + 821.0, + 277.0, + 762.0, + 277.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 730.0, + 257.0, + 758.0, + 257.0, + 758.0, + 270.0, + 730.0, + 270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1107.0, + 261.0, + 1161.0, + 261.0, + 1161.0, + 296.0, + 1107.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 300.0, + 267.0, + 331.0, + 267.0, + 331.0, + 494.0, + 300.0, + 494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1154.0, + 267.0, + 1288.0, + 267.0, + 1288.0, + 290.0, + 1154.0, + 290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1034.0, + 268.0, + 1066.0, + 268.0, + 1066.0, + 506.0, + 1034.0, + 506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 407.0, + 270.0, + 565.0, + 270.0, + 565.0, + 300.0, + 407.0, + 300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 763.0, + 272.0, + 893.0, + 272.0, + 893.0, + 295.0, + 763.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 564.0, + 273.0, + 639.0, + 273.0, + 639.0, + 296.0, + 564.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 667.0, + 275.0, + 693.0, + 275.0, + 693.0, + 318.0, + 667.0, + 318.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 278.0, + 357.0, + 278.0, + 357.0, + 301.0, + 324.0, + 301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 697.0, + 279.0, + 718.0, + 279.0, + 718.0, + 301.0, + 697.0, + 301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 370.0, + 281.0, + 382.0, + 281.0, + 382.0, + 291.0, + 370.0, + 291.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1057.0, + 296.0, + 1112.0, + 296.0, + 1112.0, + 322.0, + 1057.0, + 322.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1155.0, + 285.0, + 1304.0, + 285.0, + 1304.0, + 315.0, + 1155.0, + 315.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 555.0, + 314.0, + 571.0, + 314.0, + 571.0, + 324.0, + 555.0, + 324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 581.0, + 310.0, + 644.0, + 310.0, + 644.0, + 334.0, + 581.0, + 334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 680.0, + 314.0, + 695.0, + 314.0, + 695.0, + 333.0, + 680.0, + 333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1157.0, + 307.0, + 1232.0, + 307.0, + 1232.0, + 332.0, + 1157.0, + 332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 326.0, + 355.0, + 326.0, + 355.0, + 353.0, + 326.0, + 353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 676.0, + 327.0, + 697.0, + 327.0, + 697.0, + 345.0, + 676.0, + 345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 700.0, + 325.0, + 716.0, + 325.0, + 716.0, + 343.0, + 700.0, + 343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 675.0, + 339.0, + 698.0, + 339.0, + 698.0, + 368.0, + 675.0, + 368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1054.0, + 349.0, + 1105.0, + 349.0, + 1105.0, + 371.0, + 1054.0, + 371.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 673.0, + 356.0, + 707.0, + 356.0, + 707.0, + 489.0, + 673.0, + 489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 698.0, + 368.0, + 717.0, + 368.0, + 717.0, + 390.0, + 698.0, + 390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 378.0, + 355.0, + 378.0, + 355.0, + 401.0, + 322.0, + 401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 364.0, + 385.0, + 444.0, + 385.0, + 444.0, + 410.0, + 364.0, + 410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 462.0, + 385.0, + 471.0, + 385.0, + 471.0, + 399.0, + 462.0, + 399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 436.0, + 397.0, + 527.0, + 397.0, + 527.0, + 441.0, + 436.0, + 441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1057.0, + 401.0, + 1111.0, + 401.0, + 1111.0, + 426.0, + 1057.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 697.0, + 412.0, + 717.0, + 412.0, + 717.0, + 436.0, + 697.0, + 436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 427.0, + 413.0, + 462.0, + 413.0, + 462.0, + 522.0, + 427.0, + 522.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 428.0, + 353.0, + 428.0, + 353.0, + 452.0, + 322.0, + 452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 700.0, + 460.0, + 715.0, + 460.0, + 715.0, + 477.0, + 700.0, + 477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1067.0, + 454.0, + 1105.0, + 454.0, + 1105.0, + 476.0, + 1067.0, + 476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 728.0, + 474.0, + 738.0, + 474.0, + 738.0, + 485.0, + 728.0, + 485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 479.0, + 355.0, + 479.0, + 355.0, + 501.0, + 324.0, + 501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 725.0, + 486.0, + 735.0, + 486.0, + 735.0, + 494.0, + 725.0, + 494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1209.0, + 497.0, + 1218.0, + 497.0, + 1218.0, + 507.0, + 1209.0, + 507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 521.0, + 363.0, + 521.0, + 363.0, + 537.0, + 348.0, + 537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 378.0, + 518.0, + 661.0, + 518.0, + 661.0, + 541.0, + 378.0, + 541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 697.0, + 503.0, + 727.0, + 503.0, + 727.0, + 537.0, + 697.0, + 537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 740.0, + 514.0, + 1015.0, + 514.0, + 1015.0, + 541.0, + 740.0, + 541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1083.0, + 505.0, + 1122.0, + 505.0, + 1122.0, + 542.0, + 1083.0, + 542.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1137.0, + 520.0, + 1181.0, + 520.0, + 1181.0, + 542.0, + 1137.0, + 542.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1192.0, + 520.0, + 1234.0, + 520.0, + 1234.0, + 542.0, + 1192.0, + 542.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1243.0, + 520.0, + 1397.0, + 520.0, + 1397.0, + 543.0, + 1243.0, + 543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 373.0, + 536.0, + 620.0, + 536.0, + 620.0, + 563.0, + 373.0, + 563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 730.0, + 536.0, + 981.0, + 536.0, + 981.0, + 563.0, + 730.0, + 563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1099.0, + 535.0, + 1378.0, + 535.0, + 1378.0, + 566.0, + 1099.0, + 566.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 436.0, + 327.0, + 575.0, + 327.0, + 575.0, + 364.5, + 436.0, + 364.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 449.0, + 397.5, + 471.0, + 397.5, + 471.0, + 406.5, + 449.0, + 406.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 589.0, + 1405.0, + 589.0, + 1405.0, + 625.0, + 295.0, + 625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 619.0, + 1406.0, + 619.0, + 1406.0, + 658.0, + 294.0, + 658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 649.0, + 755.0, + 649.0, + 755.0, + 688.0, + 291.0, + 688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 777.0, + 649.0, + 1405.0, + 649.0, + 1405.0, + 688.0, + 777.0, + 688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 682.0, + 1405.0, + 682.0, + 1405.0, + 716.0, + 293.0, + 716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 711.0, + 1402.0, + 711.0, + 1402.0, + 747.0, + 294.0, + 747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 743.0, + 1403.0, + 743.0, + 1403.0, + 779.0, + 295.0, + 779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 818.0, + 73.0, + 818.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2120.0, + 839.0, + 2120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2120.0, + 838.0, + 2120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1512.0, + 1405.0, + 1512.0, + 1405.0, + 1548.0, + 294.0, + 1548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1540.0, + 1405.0, + 1540.0, + 1405.0, + 1577.0, + 292.0, + 1577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1571.0, + 1403.0, + 1571.0, + 1403.0, + 1609.0, + 292.0, + 1609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1604.0, + 1405.0, + 1604.0, + 1405.0, + 1638.0, + 293.0, + 1638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1634.0, + 1404.0, + 1634.0, + 1404.0, + 1668.0, + 294.0, + 1668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1667.0, + 1375.0, + 1667.0, + 1375.0, + 1699.0, + 296.0, + 1699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1311.0, + 1405.0, + 1311.0, + 1405.0, + 1348.0, + 295.0, + 1348.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1344.0, + 1406.0, + 1344.0, + 1406.0, + 1380.0, + 296.0, + 1380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1375.0, + 1406.0, + 1375.0, + 1406.0, + 1410.0, + 294.0, + 1410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1406.0, + 1405.0, + 1406.0, + 1405.0, + 1439.0, + 293.0, + 1439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1435.0, + 1405.0, + 1435.0, + 1405.0, + 1471.0, + 293.0, + 1471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1466.0, + 1151.0, + 1466.0, + 1151.0, + 1503.0, + 293.0, + 1503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1084.0, + 1401.0, + 1084.0, + 1401.0, + 1119.0, + 295.0, + 1119.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1115.0, + 1405.0, + 1115.0, + 1405.0, + 1150.0, + 293.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1145.0, + 1405.0, + 1145.0, + 1405.0, + 1179.0, + 295.0, + 1179.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1173.0, + 1403.0, + 1173.0, + 1403.0, + 1211.0, + 292.0, + 1211.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1205.0, + 1405.0, + 1205.0, + 1405.0, + 1239.0, + 293.0, + 1239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1235.0, + 1405.0, + 1235.0, + 1405.0, + 1272.0, + 294.0, + 1272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1263.0, + 1336.0, + 1263.0, + 1336.0, + 1305.0, + 292.0, + 1305.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1713.0, + 1404.0, + 1713.0, + 1404.0, + 1745.0, + 296.0, + 1745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1742.0, + 1405.0, + 1742.0, + 1405.0, + 1778.0, + 293.0, + 1778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1773.0, + 1405.0, + 1773.0, + 1405.0, + 1809.0, + 294.0, + 1809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1801.0, + 1405.0, + 1801.0, + 1405.0, + 1840.0, + 293.0, + 1840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1833.0, + 1000.0, + 1833.0, + 1000.0, + 1872.0, + 293.0, + 1872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1095.0, + 1833.0, + 1407.0, + 1833.0, + 1407.0, + 1872.0, + 1095.0, + 1872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1865.0, + 859.0, + 1865.0, + 859.0, + 1900.0, + 293.0, + 1900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 943.0, + 1407.0, + 943.0, + 1407.0, + 981.0, + 293.0, + 981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 975.0, + 1405.0, + 975.0, + 1405.0, + 1012.0, + 292.0, + 1012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1006.0, + 1403.0, + 1006.0, + 1403.0, + 1042.0, + 293.0, + 1042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1038.0, + 1400.0, + 1038.0, + 1400.0, + 1071.0, + 295.0, + 1071.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1910.0, + 1405.0, + 1910.0, + 1405.0, + 1946.0, + 294.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1942.0, + 1405.0, + 1942.0, + 1405.0, + 1976.0, + 293.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1974.0, + 1405.0, + 1974.0, + 1405.0, + 2006.0, + 294.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2001.0, + 610.0, + 2001.0, + 610.0, + 2038.0, + 294.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 834.0, + 904.0, + 834.0, + 904.0, + 875.0, + 292.0, + 875.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 967.0, + 834.0, + 1404.0, + 834.0, + 1404.0, + 875.0, + 967.0, + 875.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 868.0, + 1405.0, + 868.0, + 1405.0, + 902.0, + 294.0, + 902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 899.0, + 1270.0, + 899.0, + 1270.0, + 934.0, + 293.0, + 934.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 1, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 801, + 1404, + 801, + 1404, + 1228, + 298, + 1228 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 299, + 1495, + 1402, + 1495, + 1402, + 1619, + 299, + 1619 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 299, + 1711, + 1402, + 1711, + 1402, + 1865, + 299, + 1865 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 299, + 294, + 1402, + 294, + 1402, + 447, + 299, + 447 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 299, + 1882, + 1402, + 1882, + 1402, + 2034, + 299, + 2034 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 299, + 463, + 1403, + 463, + 1403, + 616, + 299, + 616 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 299, + 631, + 1403, + 631, + 1403, + 785, + 299, + 785 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 297, + 1634, + 1399, + 1634, + 1399, + 1696, + 297, + 1696 + ], + "score": 0.952 + }, + { + "category_id": 1, + "poly": [ + 298, + 1340, + 1399, + 1340, + 1399, + 1403, + 298, + 1403 + ], + "score": 0.952 + }, + { + "category_id": 0, + "poly": [ + 302, + 1272, + 790, + 1272, + 790, + 1307, + 302, + 1307 + ], + "score": 0.909 + }, + { + "category_id": 0, + "poly": [ + 299, + 1438, + 660, + 1438, + 660, + 1471, + 299, + 1471 + ], + "score": 0.903 + }, + { + "category_id": 0, + "poly": [ + 300, + 225, + 587, + 225, + 587, + 261, + 300, + 261 + ], + "score": 0.9 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 815, + 75, + 815, + 104, + 300, + 104 + ], + "score": 0.89 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.586 + }, + { + "category_id": 2, + "poly": [ + 842, + 2088, + 859, + 2088, + 859, + 2111, + 842, + 2111 + ], + "score": 0.401 + }, + { + "category_id": 13, + "poly": [ + 1295, + 1640, + 1315, + 1640, + 1315, + 1662, + 1295, + 1662 + ], + "score": 0.75, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 1055, + 1808, + 1076, + 1808, + 1076, + 1831, + 1055, + 1831 + ], + "score": 0.71, + "latex": "n" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1269.0, + 795.0, + 1269.0, + 795.0, + 1313.0, + 292.0, + 1313.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1436.0, + 665.0, + 1436.0, + 665.0, + 1474.0, + 293.0, + 1474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 222.0, + 594.0, + 222.0, + 594.0, + 269.0, + 291.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 72.0, + 817.0, + 72.0, + 817.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2085.0, + 860.0, + 2085.0, + 860.0, + 2116.0, + 839.0, + 2116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2086.0, + 860.0, + 2086.0, + 860.0, + 2117.0, + 839.0, + 2117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 797.0, + 1404.0, + 797.0, + 1404.0, + 838.0, + 295.0, + 838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 833.0, + 1404.0, + 833.0, + 1404.0, + 865.0, + 296.0, + 865.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 862.0, + 1405.0, + 862.0, + 1405.0, + 898.0, + 294.0, + 898.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 884.0, + 1406.0, + 884.0, + 1406.0, + 935.0, + 292.0, + 935.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 921.0, + 1405.0, + 921.0, + 1405.0, + 959.0, + 292.0, + 959.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 951.0, + 1406.0, + 951.0, + 1406.0, + 988.0, + 292.0, + 988.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 983.0, + 1406.0, + 983.0, + 1406.0, + 1020.0, + 292.0, + 1020.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1015.0, + 1406.0, + 1015.0, + 1406.0, + 1050.0, + 293.0, + 1050.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1045.0, + 1405.0, + 1045.0, + 1405.0, + 1080.0, + 293.0, + 1080.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1075.0, + 1406.0, + 1075.0, + 1406.0, + 1111.0, + 294.0, + 1111.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1106.0, + 1406.0, + 1106.0, + 1406.0, + 1141.0, + 294.0, + 1141.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1136.0, + 1404.0, + 1136.0, + 1404.0, + 1172.0, + 293.0, + 1172.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1167.0, + 1406.0, + 1167.0, + 1406.0, + 1202.0, + 294.0, + 1202.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1199.0, + 1351.0, + 1199.0, + 1351.0, + 1231.0, + 296.0, + 1231.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1494.0, + 1407.0, + 1494.0, + 1407.0, + 1533.0, + 293.0, + 1533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1527.0, + 1406.0, + 1527.0, + 1406.0, + 1559.0, + 294.0, + 1559.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1556.0, + 1403.0, + 1556.0, + 1403.0, + 1594.0, + 292.0, + 1594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1586.0, + 646.0, + 1586.0, + 646.0, + 1624.0, + 294.0, + 1624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 1713.0, + 1404.0, + 1713.0, + 1404.0, + 1746.0, + 298.0, + 1746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1742.0, + 1406.0, + 1742.0, + 1406.0, + 1779.0, + 295.0, + 1779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1773.0, + 1403.0, + 1773.0, + 1403.0, + 1807.0, + 293.0, + 1807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1801.0, + 1054.0, + 1801.0, + 1054.0, + 1840.0, + 294.0, + 1840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1077.0, + 1801.0, + 1406.0, + 1801.0, + 1406.0, + 1840.0, + 1077.0, + 1840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1833.0, + 996.0, + 1833.0, + 996.0, + 1869.0, + 293.0, + 1869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 294.0, + 1406.0, + 294.0, + 1406.0, + 331.0, + 294.0, + 331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 324.0, + 1404.0, + 324.0, + 1404.0, + 361.0, + 295.0, + 361.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 353.0, + 1403.0, + 353.0, + 1403.0, + 393.0, + 292.0, + 393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 384.0, + 1404.0, + 384.0, + 1404.0, + 423.0, + 293.0, + 423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 415.0, + 1035.0, + 415.0, + 1035.0, + 452.0, + 294.0, + 452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1881.0, + 1406.0, + 1881.0, + 1406.0, + 1917.0, + 295.0, + 1917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1911.0, + 1406.0, + 1911.0, + 1406.0, + 1948.0, + 294.0, + 1948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1940.0, + 1406.0, + 1940.0, + 1406.0, + 1979.0, + 293.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1970.0, + 1407.0, + 1970.0, + 1407.0, + 2010.0, + 293.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2004.0, + 1404.0, + 2004.0, + 1404.0, + 2037.0, + 295.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 458.0, + 1407.0, + 458.0, + 1407.0, + 503.0, + 293.0, + 503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 491.0, + 1405.0, + 491.0, + 1405.0, + 530.0, + 293.0, + 530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 521.0, + 1405.0, + 521.0, + 1405.0, + 562.0, + 293.0, + 562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 554.0, + 1407.0, + 554.0, + 1407.0, + 591.0, + 295.0, + 591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 583.0, + 1176.0, + 583.0, + 1176.0, + 623.0, + 294.0, + 623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 630.0, + 1403.0, + 630.0, + 1403.0, + 668.0, + 294.0, + 668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 663.0, + 1403.0, + 663.0, + 1403.0, + 699.0, + 294.0, + 699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 695.0, + 1403.0, + 695.0, + 1403.0, + 728.0, + 295.0, + 728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 721.0, + 1407.0, + 721.0, + 1407.0, + 761.0, + 293.0, + 761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 754.0, + 1390.0, + 754.0, + 1390.0, + 787.0, + 297.0, + 787.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1632.0, + 1294.0, + 1632.0, + 1294.0, + 1668.0, + 296.0, + 1668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1316.0, + 1632.0, + 1403.0, + 1632.0, + 1403.0, + 1668.0, + 1316.0, + 1668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1665.0, + 1008.0, + 1665.0, + 1008.0, + 1698.0, + 293.0, + 1698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1338.0, + 1403.0, + 1338.0, + 1403.0, + 1374.0, + 297.0, + 1374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1372.0, + 1059.0, + 1372.0, + 1059.0, + 1407.0, + 294.0, + 1407.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 2, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 947, + 1405, + 947, + 1405, + 1194, + 296, + 1194 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 297, + 1562, + 1404, + 1562, + 1404, + 1748, + 297, + 1748 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 297, + 1849, + 1404, + 1849, + 1404, + 2035, + 297, + 2035 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 297, + 766, + 1404, + 766, + 1404, + 933, + 297, + 933 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 297, + 1294, + 1403, + 1294, + 1403, + 1388, + 297, + 1388 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 297, + 659, + 1405, + 659, + 1405, + 753, + 297, + 753 + ], + "score": 0.973 + }, + { + "category_id": 3, + "poly": [ + 297, + 220, + 1402, + 220, + 1402, + 511, + 297, + 511 + ], + "score": 0.965 + }, + { + "category_id": 1, + "poly": [ + 296, + 1399, + 1403, + 1399, + 1403, + 1464, + 296, + 1464 + ], + "score": 0.945 + }, + { + "category_id": 8, + "poly": [ + 596, + 1494, + 1103, + 1494, + 1103, + 1536, + 596, + 1536 + ], + "score": 0.944 + }, + { + "category_id": 4, + "poly": [ + 289, + 532, + 1403, + 532, + 1403, + 597, + 289, + 597 + ], + "score": 0.919 + }, + { + "category_id": 0, + "poly": [ + 300, + 1235, + 655, + 1235, + 655, + 1268, + 300, + 1268 + ], + "score": 0.911 + }, + { + "category_id": 0, + "poly": [ + 301, + 1790, + 738, + 1790, + 738, + 1823, + 301, + 1823 + ], + "score": 0.902 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 814, + 76, + 814, + 104, + 299, + 104 + ], + "score": 0.894 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1500, + 1399, + 1500, + 1399, + 1530, + 1366, + 1530 + ], + "score": 0.884 + }, + { + "category_id": 2, + "poly": [ + 841, + 2089, + 858, + 2089, + 858, + 2111, + 841, + 2111 + ], + "score": 0.766 + }, + { + "category_id": 13, + "poly": [ + 826, + 802, + 1027, + 802, + 1027, + 839, + 826, + 839 + ], + "score": 0.93, + "latex": "n _ { i } \\triangleq | f _ { j } ( x ) = i | )" + }, + { + "category_id": 13, + "poly": [ + 741, + 767, + 880, + 767, + 880, + 803, + 741, + 803 + ], + "score": 0.93, + "latex": "f _ { j } ( x ) \\in [ m ]" + }, + { + "category_id": 13, + "poly": [ + 718, + 1432, + 843, + 1432, + 843, + 1463, + 718, + 1463 + ], + "score": 0.92, + "latex": "D , D ^ { \\prime } \\in \\mathcal { D }" + }, + { + "category_id": 13, + "poly": [ + 1172, + 1433, + 1254, + 1433, + 1254, + 1462, + 1172, + 1462 + ], + "score": 0.9, + "latex": "S \\subseteq \\mathcal { R }" + }, + { + "category_id": 14, + "poly": [ + 592, + 1495, + 1106, + 1495, + 1106, + 1534, + 592, + 1534 + ], + "score": 0.9, + "latex": "\\mathbf { P r } [ \\mathcal { M } ( D ) \\in S ] \\leq e ^ { \\varepsilon } \\cdot \\mathbf { P r } [ \\mathcal { M } ( D ^ { \\prime } ) \\in S ] + \\delta ." + }, + { + "category_id": 13, + "poly": [ + 1208, + 1401, + 1269, + 1401, + 1269, + 1433, + 1208, + 1433 + ], + "score": 0.9, + "latex": "( \\varepsilon , \\delta )" + }, + { + "category_id": 13, + "poly": [ + 593, + 771, + 695, + 771, + 695, + 801, + 593, + 801 + ], + "score": 0.89, + "latex": "1 , \\ldots , m" + }, + { + "category_id": 13, + "poly": [ + 1006, + 771, + 1022, + 771, + 1022, + 801, + 1006, + 801 + ], + "score": 0.82, + "latex": "j" + }, + { + "category_id": 13, + "poly": [ + 1049, + 1595, + 1085, + 1595, + 1085, + 1623, + 1049, + 1623 + ], + "score": 0.82, + "latex": "\\mathcal { M }" + }, + { + "category_id": 13, + "poly": [ + 1082, + 1402, + 1108, + 1402, + 1108, + 1428, + 1082, + 1428 + ], + "score": 0.81, + "latex": "\\mathcal { R }" + }, + { + "category_id": 13, + "poly": [ + 297, + 808, + 326, + 808, + 326, + 835, + 297, + 835 + ], + "score": 0.8, + "latex": "n _ { i }" + }, + { + "category_id": 13, + "poly": [ + 749, + 1402, + 784, + 1402, + 784, + 1428, + 749, + 1428 + ], + "score": 0.8, + "latex": "\\mathcal { M }" + }, + { + "category_id": 13, + "poly": [ + 933, + 1402, + 959, + 1402, + 959, + 1428, + 933, + 1428 + ], + "score": 0.79, + "latex": "\\mathcal { D }" + }, + { + "category_id": 13, + "poly": [ + 1146, + 1631, + 1163, + 1631, + 1163, + 1654, + 1146, + 1654 + ], + "score": 0.77, + "latex": "\\varepsilon" + }, + { + "category_id": 13, + "poly": [ + 566, + 1657, + 583, + 1657, + 583, + 1683, + 566, + 1683 + ], + "score": 0.77, + "latex": "\\delta" + }, + { + "category_id": 13, + "poly": [ + 438, + 774, + 458, + 774, + 458, + 796, + 438, + 796 + ], + "score": 0.75, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 298, + 838, + 734, + 838, + 734, + 874, + 298, + 874 + ], + "score": 0.75, + "latex": "A ( x ) \\triangleq \\mathrm { a r g m a x } _ { i } \\left( n _ { i } ( x ) + \\mathrm { L a p } \\left( 1 / \\gamma \\right) \\right)" + }, + { + "category_id": 13, + "poly": [ + 658, + 807, + 672, + 807, + 672, + 832, + 658, + 832 + ], + "score": 0.71, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 806, + 1565, + 852, + 1565, + 852, + 1594, + 806, + 1594 + ], + "score": 0.29, + "latex": "\\mathbf { M L }" + }, + { + "category_id": 15, + "poly": [ + 802.0, + 215.0, + 1076.0, + 215.0, + 1076.0, + 254.0, + 802.0, + 254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1094.0, + 221.0, + 1329.0, + 221.0, + 1329.0, + 252.0, + 1094.0, + 252.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 517.0, + 249.0, + 591.0, + 249.0, + 591.0, + 282.0, + 517.0, + 282.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 700.0, + 249.0, + 804.0, + 249.0, + 804.0, + 281.0, + 700.0, + 281.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 517.0, + 302.0, + 591.0, + 302.0, + 591.0, + 331.0, + 517.0, + 331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 699.0, + 298.0, + 808.0, + 298.0, + 808.0, + 334.0, + 699.0, + 334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 314.0, + 322.0, + 413.0, + 322.0, + 413.0, + 382.0, + 314.0, + 382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 517.0, + 352.0, + 591.0, + 352.0, + 591.0, + 381.0, + 517.0, + 381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 700.0, + 351.0, + 806.0, + 351.0, + 806.0, + 383.0, + 700.0, + 383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 927.0, + 322.0, + 1036.0, + 322.0, + 1036.0, + 381.0, + 927.0, + 381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1143.0, + 335.0, + 1231.0, + 335.0, + 1231.0, + 367.0, + 1143.0, + 367.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1279.0, + 335.0, + 1403.0, + 335.0, + 1403.0, + 370.0, + 1279.0, + 370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 539.0, + 396.0, + 567.0, + 396.0, + 567.0, + 414.0, + 539.0, + 414.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 740.0, + 397.0, + 767.0, + 397.0, + 767.0, + 414.0, + 740.0, + 414.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 993.0, + 387.0, + 1011.0, + 387.0, + 1011.0, + 409.0, + 993.0, + 409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 962.0, + 414.0, + 1064.0, + 414.0, + 1064.0, + 442.0, + 962.0, + 442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1172.0, + 414.0, + 1289.0, + 414.0, + 1289.0, + 442.0, + 1172.0, + 442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 518.0, + 426.0, + 591.0, + 426.0, + 591.0, + 459.0, + 518.0, + 459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 700.0, + 429.0, + 804.0, + 429.0, + 804.0, + 457.0, + 700.0, + 457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 954.0, + 436.0, + 1074.0, + 436.0, + 1074.0, + 468.0, + 954.0, + 468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1169.0, + 434.0, + 1292.0, + 434.0, + 1292.0, + 468.0, + 1169.0, + 468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 477.0, + 476.0, + 570.0, + 476.0, + 570.0, + 511.0, + 477.0, + 511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 688.0, + 486.0, + 783.0, + 486.0, + 783.0, + 499.0, + 688.0, + 499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 826.0, + 479.0, + 925.0, + 479.0, + 925.0, + 507.0, + 826.0, + 507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1093.0, + 488.0, + 1108.0, + 488.0, + 1108.0, + 497.0, + 1093.0, + 497.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1190.0, + 474.0, + 1323.0, + 474.0, + 1323.0, + 510.0, + 1190.0, + 510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 981.0, + 379.5, + 1002.0, + 379.5, + 1002.0, + 397.5, + 981.0, + 397.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1145.25, + 484.5, + 1160.25, + 484.5, + 1160.25, + 498.0, + 1145.25, + 498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 534.0, + 1404.0, + 534.0, + 1404.0, + 566.0, + 296.0, + 566.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 564.0, + 1265.0, + 564.0, + 1265.0, + 597.0, + 296.0, + 597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1236.0, + 657.0, + 1236.0, + 657.0, + 1269.0, + 295.0, + 1269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1790.0, + 744.0, + 1790.0, + 744.0, + 1825.0, + 294.0, + 1825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 818.0, + 73.0, + 818.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2086.0, + 862.0, + 2086.0, + 862.0, + 2118.0, + 838.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 946.0, + 1405.0, + 946.0, + 1405.0, + 983.0, + 294.0, + 983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 978.0, + 1406.0, + 978.0, + 1406.0, + 1014.0, + 293.0, + 1014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1009.0, + 1407.0, + 1009.0, + 1407.0, + 1046.0, + 294.0, + 1046.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1042.0, + 1406.0, + 1042.0, + 1406.0, + 1075.0, + 294.0, + 1075.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1069.0, + 1405.0, + 1069.0, + 1405.0, + 1105.0, + 294.0, + 1105.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1099.0, + 1406.0, + 1099.0, + 1406.0, + 1137.0, + 294.0, + 1137.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1132.0, + 1405.0, + 1132.0, + 1405.0, + 1166.0, + 294.0, + 1166.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1162.0, + 766.0, + 1162.0, + 766.0, + 1196.0, + 295.0, + 1196.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1563.0, + 805.0, + 1563.0, + 805.0, + 1599.0, + 294.0, + 1599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 853.0, + 1563.0, + 1406.0, + 1563.0, + 1406.0, + 1599.0, + 853.0, + 1599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1594.0, + 1048.0, + 1594.0, + 1048.0, + 1631.0, + 294.0, + 1631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1086.0, + 1594.0, + 1405.0, + 1594.0, + 1405.0, + 1631.0, + 1086.0, + 1631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1626.0, + 1145.0, + 1626.0, + 1145.0, + 1661.0, + 295.0, + 1661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1164.0, + 1626.0, + 1404.0, + 1626.0, + 1404.0, + 1661.0, + 1164.0, + 1661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1655.0, + 565.0, + 1655.0, + 565.0, + 1691.0, + 294.0, + 1691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 584.0, + 1655.0, + 1404.0, + 1655.0, + 1404.0, + 1691.0, + 584.0, + 1691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1684.0, + 1406.0, + 1684.0, + 1406.0, + 1724.0, + 292.0, + 1724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1718.0, + 477.0, + 1718.0, + 477.0, + 1749.0, + 295.0, + 1749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1846.0, + 1406.0, + 1846.0, + 1406.0, + 1888.0, + 292.0, + 1888.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1882.0, + 1406.0, + 1882.0, + 1406.0, + 1918.0, + 295.0, + 1918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1907.0, + 1405.0, + 1907.0, + 1405.0, + 1951.0, + 292.0, + 1951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1939.0, + 1404.0, + 1939.0, + 1404.0, + 1982.0, + 294.0, + 1982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1973.0, + 1405.0, + 1973.0, + 1405.0, + 2008.0, + 295.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2003.0, + 1405.0, + 2003.0, + 1405.0, + 2039.0, + 294.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 764.0, + 437.0, + 764.0, + 437.0, + 805.0, + 292.0, + 805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 459.0, + 764.0, + 592.0, + 764.0, + 592.0, + 805.0, + 459.0, + 805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 696.0, + 764.0, + 740.0, + 764.0, + 740.0, + 805.0, + 696.0, + 805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 881.0, + 764.0, + 1005.0, + 764.0, + 1005.0, + 805.0, + 881.0, + 805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1023.0, + 764.0, + 1405.0, + 764.0, + 1405.0, + 805.0, + 1023.0, + 805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 802.0, + 657.0, + 802.0, + 657.0, + 839.0, + 327.0, + 839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 673.0, + 802.0, + 825.0, + 802.0, + 825.0, + 839.0, + 673.0, + 839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1028.0, + 802.0, + 1404.0, + 802.0, + 1404.0, + 839.0, + 1028.0, + 839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 835.0, + 297.0, + 835.0, + 297.0, + 878.0, + 292.0, + 878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 735.0, + 835.0, + 1406.0, + 835.0, + 1406.0, + 878.0, + 735.0, + 878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 869.0, + 1404.0, + 869.0, + 1404.0, + 907.0, + 292.0, + 907.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 902.0, + 683.0, + 902.0, + 683.0, + 935.0, + 295.0, + 935.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1291.0, + 1403.0, + 1291.0, + 1403.0, + 1331.0, + 292.0, + 1331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1326.0, + 1405.0, + 1326.0, + 1405.0, + 1360.0, + 295.0, + 1360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1357.0, + 654.0, + 1357.0, + 654.0, + 1391.0, + 293.0, + 1391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 656.0, + 1405.0, + 656.0, + 1405.0, + 698.0, + 292.0, + 698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 691.0, + 1405.0, + 691.0, + 1405.0, + 725.0, + 295.0, + 725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 722.0, + 986.0, + 722.0, + 986.0, + 756.0, + 296.0, + 756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1397.0, + 748.0, + 1397.0, + 748.0, + 1435.0, + 294.0, + 1435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 785.0, + 1397.0, + 932.0, + 1397.0, + 932.0, + 1435.0, + 785.0, + 1435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 960.0, + 1397.0, + 1081.0, + 1397.0, + 1081.0, + 1435.0, + 960.0, + 1435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1109.0, + 1397.0, + 1207.0, + 1397.0, + 1207.0, + 1435.0, + 1109.0, + 1435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1270.0, + 1397.0, + 1405.0, + 1397.0, + 1405.0, + 1435.0, + 1270.0, + 1435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1432.0, + 717.0, + 1432.0, + 717.0, + 1466.0, + 291.0, + 1466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 844.0, + 1432.0, + 1171.0, + 1432.0, + 1171.0, + 1466.0, + 844.0, + 1466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1255.0, + 1432.0, + 1403.0, + 1432.0, + 1403.0, + 1466.0, + 1255.0, + 1466.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 3, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1213, + 1404, + 1213, + 1404, + 1400, + 298, + 1400 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 297, + 1850, + 1404, + 1850, + 1404, + 2034, + 297, + 2034 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 880, + 1400, + 880, + 1400, + 975, + 298, + 975 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 298, + 1680, + 1403, + 1680, + 1403, + 1836, + 298, + 1836 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 299, + 983, + 1403, + 983, + 1403, + 1086, + 299, + 1086 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 297, + 306, + 1404, + 306, + 1404, + 432, + 297, + 432 + ], + "score": 0.966 + }, + { + "category_id": 1, + "poly": [ + 299, + 1495, + 1400, + 1495, + 1400, + 1589, + 299, + 1589 + ], + "score": 0.96 + }, + { + "category_id": 1, + "poly": [ + 296, + 1112, + 1399, + 1112, + 1399, + 1186, + 296, + 1186 + ], + "score": 0.952 + }, + { + "category_id": 1, + "poly": [ + 295, + 228, + 1401, + 228, + 1401, + 294, + 295, + 294 + ], + "score": 0.951 + }, + { + "category_id": 1, + "poly": [ + 293, + 676, + 1403, + 676, + 1403, + 742, + 293, + 742 + ], + "score": 0.948 + }, + { + "category_id": 8, + "poly": [ + 404, + 758, + 1293, + 758, + 1293, + 850, + 404, + 850 + ], + "score": 0.947 + }, + { + "category_id": 8, + "poly": [ + 351, + 568, + 1348, + 568, + 1348, + 635, + 351, + 635 + ], + "score": 0.939 + }, + { + "category_id": 1, + "poly": [ + 294, + 1603, + 1400, + 1603, + 1400, + 1666, + 294, + 1666 + ], + "score": 0.939 + }, + { + "category_id": 1, + "poly": [ + 294, + 487, + 1401, + 487, + 1401, + 552, + 294, + 552 + ], + "score": 0.932 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 815, + 75, + 815, + 105, + 300, + 105 + ], + "score": 0.91 + }, + { + "category_id": 0, + "poly": [ + 301, + 1437, + 791, + 1437, + 791, + 1469, + 301, + 1469 + ], + "score": 0.907 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.734 + }, + { + "category_id": 14, + "poly": [ + 404, + 756, + 1295, + 756, + 1295, + 851, + 404, + 851 + ], + "score": 0.93, + "latex": "D _ { \\lambda } ( { \\mathcal M } ( D ) \\| { \\mathcal M } ( D ^ { \\prime } ) ) = \\frac { 1 } { \\lambda - 1 } \\log \\mathbb { E } _ { x \\sim { \\mathcal M } ( D ) } \\left[ \\left( \\frac { { \\mathbf { P r } } \\left[ { \\mathcal M } ( D ) = x \\right] } { { \\mathbf { P r } } \\left[ { \\mathcal M } ( D ^ { \\prime } ) = x \\right] } \\right) ^ { \\lambda - 1 } \\right] \\le \\varepsilon ." + }, + { + "category_id": 13, + "poly": [ + 777, + 1152, + 887, + 1152, + 887, + 1185, + 777, + 1185 + ], + "score": 0.93, + "latex": "\\delta \\in ( 0 , 1 )" + }, + { + "category_id": 13, + "poly": [ + 298, + 1145, + 465, + 1145, + 465, + 1190, + 298, + 1190 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { ( \\varepsilon + \\frac { \\log { 1 / \\delta } } { \\lambda - 1 } , \\delta ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 684, + 943, + 745, + 943, + 745, + 976, + 684, + 976 + ], + "score": 0.92, + "latex": "( \\varepsilon , \\delta )" + }, + { + "category_id": 13, + "poly": [ + 1056, + 1276, + 1117, + 1276, + 1117, + 1310, + 1056, + 1310 + ], + "score": 0.92, + "latex": "( \\varepsilon , \\delta )" + }, + { + "category_id": 14, + "poly": [ + 347, + 566, + 1349, + 566, + 1349, + 635, + 347, + 635 + ], + "score": 0.92, + "latex": "D _ { \\lambda } ( P \\| Q ) \\triangleq \\frac { 1 } { \\lambda - 1 } \\log \\mathbb { E } _ { x \\sim Q } \\left[ \\left( P ( x ) / Q ( x ) \\right) ^ { \\lambda } \\right] = \\frac { 1 } { \\lambda - 1 } \\log \\mathbb { E } _ { x \\sim P } \\left[ \\left( P ( x ) / Q ( x ) \\right) ^ { \\lambda - 1 } \\right] ." + }, + { + "category_id": 13, + "poly": [ + 428, + 1215, + 490, + 1215, + 490, + 1249, + 428, + 1249 + ], + "score": 0.92, + "latex": "( \\varepsilon , \\delta )" + }, + { + "category_id": 13, + "poly": [ + 1037, + 1115, + 1101, + 1115, + 1101, + 1148, + 1037, + 1148 + ], + "score": 0.91, + "latex": "( \\lambda , \\varepsilon )" + }, + { + "category_id": 13, + "poly": [ + 299, + 912, + 374, + 912, + 374, + 945, + 299, + 945 + ], + "score": 0.9, + "latex": "( \\infty , \\varepsilon )" + }, + { + "category_id": 13, + "poly": [ + 298, + 1015, + 455, + 1015, + 455, + 1046, + 298, + 1046 + ], + "score": 0.9, + "latex": "\\mathcal { M } _ { 1 } , \\ldots , \\mathcal { M } _ { k }" + }, + { + "category_id": 13, + "poly": [ + 485, + 710, + 556, + 710, + 556, + 741, + 485, + 741 + ], + "score": 0.9, + "latex": "\\lambda \\geq 1" + }, + { + "category_id": 13, + "poly": [ + 299, + 709, + 363, + 709, + 363, + 743, + 299, + 743 + ], + "score": 0.87, + "latex": "( \\lambda , \\varepsilon )" + }, + { + "category_id": 13, + "poly": [ + 713, + 339, + 788, + 339, + 788, + 368, + 713, + 368 + ], + "score": 0.87, + "latex": "( \\delta = 0" + }, + { + "category_id": 13, + "poly": [ + 298, + 1047, + 506, + 1047, + 506, + 1088, + 298, + 1088 + ], + "score": 0.86, + "latex": "( \\lambda , \\sum _ { i = 1 } ^ { k } \\varepsilon _ { i } ) – R D P" + }, + { + "category_id": 13, + "poly": [ + 987, + 710, + 1019, + 710, + 1019, + 737, + 987, + 737 + ], + "score": 0.86, + "latex": "D ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 690, + 1014, + 795, + 1014, + 795, + 1048, + 690, + 1048 + ], + "score": 0.85, + "latex": "\\textit { i } \\in \\ [ k ]" + }, + { + "category_id": 13, + "poly": [ + 1141, + 680, + 1176, + 680, + 1176, + 706, + 1141, + 706 + ], + "score": 0.81, + "latex": "\\mathcal { M }" + }, + { + "category_id": 13, + "poly": [ + 907, + 711, + 934, + 711, + 934, + 737, + 907, + 737 + ], + "score": 0.81, + "latex": "D" + }, + { + "category_id": 13, + "poly": [ + 817, + 1015, + 863, + 1015, + 863, + 1046, + 817, + 1046 + ], + "score": 0.81, + "latex": "\\mathcal { M } _ { i }" + }, + { + "category_id": 13, + "poly": [ + 346, + 522, + 371, + 522, + 371, + 552, + 346, + 552 + ], + "score": 0.8, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 1072, + 1222, + 1088, + 1222, + 1088, + 1243, + 1072, + 1243 + ], + "score": 0.79, + "latex": "\\varepsilon" + }, + { + "category_id": 13, + "poly": [ + 977, + 887, + 993, + 887, + 993, + 909, + 977, + 909 + ], + "score": 0.77, + "latex": "\\varepsilon" + }, + { + "category_id": 13, + "poly": [ + 862, + 1116, + 898, + 1116, + 898, + 1143, + 862, + 1143 + ], + "score": 0.77, + "latex": "\\mathcal { M }" + }, + { + "category_id": 13, + "poly": [ + 813, + 985, + 849, + 985, + 849, + 1013, + 813, + 1013 + ], + "score": 0.77, + "latex": "\\mathcal { M }" + }, + { + "category_id": 13, + "poly": [ + 1227, + 1015, + 1265, + 1015, + 1265, + 1043, + 1227, + 1043 + ], + "score": 0.74, + "latex": "\\mathcal { M }" + }, + { + "category_id": 13, + "poly": [ + 1376, + 492, + 1401, + 492, + 1401, + 517, + 1376, + 517 + ], + "score": 0.74, + "latex": "P" + }, + { + "category_id": 13, + "poly": [ + 1013, + 1015, + 1150, + 1015, + 1150, + 1048, + 1013, + 1048 + ], + "score": 0.66, + "latex": "( \\lambda , \\varepsilon _ { i } ) – R D P ," + }, + { + "category_id": 13, + "poly": [ + 1232, + 1115, + 1269, + 1115, + 1269, + 1143, + 1232, + 1143 + ], + "score": 0.64, + "latex": "\\mathcal { M }" + }, + { + "category_id": 13, + "poly": [ + 1049, + 492, + 1069, + 492, + 1069, + 517, + 1049, + 517 + ], + "score": 0.64, + "latex": "\\lambda" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1436.0, + 796.0, + 1436.0, + 796.0, + 1473.0, + 295.0, + 1473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2085.0, + 861.0, + 2085.0, + 861.0, + 2120.0, + 839.0, + 2120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1214.0, + 427.0, + 1214.0, + 427.0, + 1250.0, + 296.0, + 1250.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 491.0, + 1214.0, + 1071.0, + 1214.0, + 1071.0, + 1250.0, + 491.0, + 1250.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1089.0, + 1214.0, + 1405.0, + 1214.0, + 1405.0, + 1250.0, + 1089.0, + 1250.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1241.0, + 1405.0, + 1241.0, + 1405.0, + 1286.0, + 292.0, + 1286.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1276.0, + 1055.0, + 1276.0, + 1055.0, + 1312.0, + 293.0, + 1312.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1118.0, + 1276.0, + 1405.0, + 1276.0, + 1405.0, + 1312.0, + 1118.0, + 1312.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1308.0, + 1404.0, + 1308.0, + 1404.0, + 1340.0, + 294.0, + 1340.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1339.0, + 1404.0, + 1339.0, + 1404.0, + 1371.0, + 296.0, + 1371.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1369.0, + 1220.0, + 1369.0, + 1220.0, + 1400.0, + 294.0, + 1400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1849.0, + 1405.0, + 1849.0, + 1405.0, + 1885.0, + 295.0, + 1885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1879.0, + 1406.0, + 1879.0, + 1406.0, + 1920.0, + 292.0, + 1920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1913.0, + 1405.0, + 1913.0, + 1405.0, + 1945.0, + 296.0, + 1945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1943.0, + 1404.0, + 1943.0, + 1404.0, + 1975.0, + 295.0, + 1975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1972.0, + 1402.0, + 1972.0, + 1402.0, + 2004.0, + 296.0, + 2004.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 2002.0, + 1387.0, + 2002.0, + 1387.0, + 2037.0, + 292.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 879.0, + 976.0, + 879.0, + 976.0, + 918.0, + 293.0, + 918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 994.0, + 879.0, + 1405.0, + 879.0, + 1405.0, + 918.0, + 994.0, + 918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 375.0, + 910.0, + 1405.0, + 910.0, + 1405.0, + 948.0, + 375.0, + 948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 942.0, + 683.0, + 942.0, + 683.0, + 979.0, + 293.0, + 979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 746.0, + 942.0, + 1062.0, + 942.0, + 1062.0, + 979.0, + 746.0, + 979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1679.0, + 1405.0, + 1679.0, + 1405.0, + 1715.0, + 294.0, + 1715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1710.0, + 1405.0, + 1710.0, + 1405.0, + 1749.0, + 293.0, + 1749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1741.0, + 1405.0, + 1741.0, + 1405.0, + 1778.0, + 293.0, + 1778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1770.0, + 1405.0, + 1770.0, + 1405.0, + 1813.0, + 292.0, + 1813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1805.0, + 1403.0, + 1805.0, + 1403.0, + 1838.0, + 296.0, + 1838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 981.0, + 812.0, + 981.0, + 812.0, + 1021.0, + 294.0, + 1021.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 850.0, + 981.0, + 1404.0, + 981.0, + 1404.0, + 1021.0, + 850.0, + 1021.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1010.0, + 297.0, + 1010.0, + 297.0, + 1051.0, + 292.0, + 1051.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 456.0, + 1010.0, + 689.0, + 1010.0, + 689.0, + 1051.0, + 456.0, + 1051.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 796.0, + 1010.0, + 816.0, + 1010.0, + 816.0, + 1051.0, + 796.0, + 1051.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 864.0, + 1010.0, + 1012.0, + 1010.0, + 1012.0, + 1051.0, + 864.0, + 1051.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1151.0, + 1010.0, + 1226.0, + 1010.0, + 1226.0, + 1051.0, + 1151.0, + 1051.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1266.0, + 1010.0, + 1404.0, + 1010.0, + 1404.0, + 1051.0, + 1266.0, + 1051.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 287.0, + 1033.0, + 297.0, + 1033.0, + 297.0, + 1099.0, + 287.0, + 1099.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 507.0, + 1033.0, + 522.0, + 1033.0, + 522.0, + 1099.0, + 507.0, + 1099.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 309.0, + 1404.0, + 309.0, + 1404.0, + 342.0, + 295.0, + 342.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 338.0, + 712.0, + 338.0, + 712.0, + 373.0, + 292.0, + 373.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 789.0, + 338.0, + 1407.0, + 338.0, + 1407.0, + 373.0, + 789.0, + 373.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 371.0, + 1404.0, + 371.0, + 1404.0, + 401.0, + 296.0, + 401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 396.0, + 1405.0, + 396.0, + 1405.0, + 437.0, + 294.0, + 437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1496.0, + 1404.0, + 1496.0, + 1404.0, + 1530.0, + 295.0, + 1530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1527.0, + 1405.0, + 1527.0, + 1405.0, + 1561.0, + 294.0, + 1561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1554.0, + 1405.0, + 1554.0, + 1405.0, + 1594.0, + 292.0, + 1594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1110.0, + 861.0, + 1110.0, + 861.0, + 1150.0, + 294.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 899.0, + 1110.0, + 1036.0, + 1110.0, + 1036.0, + 1150.0, + 899.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1102.0, + 1110.0, + 1231.0, + 1110.0, + 1231.0, + 1150.0, + 1102.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1270.0, + 1110.0, + 1404.0, + 1110.0, + 1404.0, + 1150.0, + 1270.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1139.0, + 297.0, + 1139.0, + 297.0, + 1194.0, + 293.0, + 1194.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 466.0, + 1139.0, + 776.0, + 1139.0, + 776.0, + 1194.0, + 466.0, + 1194.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 888.0, + 1139.0, + 900.0, + 1139.0, + 900.0, + 1194.0, + 888.0, + 1194.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 229.0, + 1404.0, + 229.0, + 1404.0, + 265.0, + 293.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 260.0, + 612.0, + 260.0, + 612.0, + 296.0, + 295.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 675.0, + 1140.0, + 675.0, + 1140.0, + 714.0, + 293.0, + 714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1177.0, + 675.0, + 1404.0, + 675.0, + 1404.0, + 714.0, + 1177.0, + 714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 708.0, + 298.0, + 708.0, + 298.0, + 745.0, + 295.0, + 745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 364.0, + 708.0, + 484.0, + 708.0, + 484.0, + 745.0, + 364.0, + 745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 557.0, + 708.0, + 906.0, + 708.0, + 906.0, + 745.0, + 557.0, + 745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 935.0, + 708.0, + 986.0, + 708.0, + 986.0, + 745.0, + 935.0, + 745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1020.0, + 708.0, + 1031.0, + 708.0, + 1031.0, + 745.0, + 1020.0, + 745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1604.0, + 1404.0, + 1604.0, + 1404.0, + 1640.0, + 296.0, + 1640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1631.0, + 1405.0, + 1631.0, + 1405.0, + 1674.0, + 293.0, + 1674.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 486.0, + 1048.0, + 486.0, + 1048.0, + 526.0, + 294.0, + 526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1070.0, + 486.0, + 1375.0, + 486.0, + 1375.0, + 526.0, + 1070.0, + 526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 486.0, + 1406.0, + 486.0, + 1406.0, + 526.0, + 1402.0, + 526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 519.0, + 345.0, + 519.0, + 345.0, + 553.0, + 296.0, + 553.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 372.0, + 519.0, + 526.0, + 519.0, + 526.0, + 553.0, + 372.0, + 553.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 4, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1072, + 1405, + 1072, + 1405, + 1288, + 298, + 1288 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 299, + 610, + 1402, + 610, + 1402, + 765, + 299, + 765 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 297, + 1650, + 1403, + 1650, + 1403, + 1867, + 297, + 1867 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 299, + 779, + 1404, + 779, + 1404, + 964, + 299, + 964 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 299, + 1880, + 1401, + 1880, + 1401, + 2034, + 299, + 2034 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 425, + 1403, + 425, + 1403, + 579, + 298, + 579 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 287, + 1402, + 287, + 1402, + 410, + 298, + 410 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 298, + 1542, + 1405, + 1542, + 1405, + 1636, + 298, + 1636 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 297, + 1379, + 1405, + 1379, + 1405, + 1474, + 297, + 1474 + ], + "score": 0.971 + }, + { + "category_id": 0, + "poly": [ + 301, + 1006, + 1088, + 1006, + 1088, + 1042, + 301, + 1042 + ], + "score": 0.925 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 815, + 75, + 815, + 104, + 300, + 104 + ], + "score": 0.892 + }, + { + "category_id": 8, + "poly": [ + 618, + 1480, + 1083, + 1480, + 1083, + 1528, + 618, + 1528 + ], + "score": 0.889 + }, + { + "category_id": 0, + "poly": [ + 301, + 229, + 808, + 229, + 808, + 261, + 301, + 261 + ], + "score": 0.844 + }, + { + "category_id": 0, + "poly": [ + 298, + 1322, + 1078, + 1322, + 1078, + 1354, + 298, + 1354 + ], + "score": 0.827 + }, + { + "category_id": 2, + "poly": [ + 840, + 2089, + 858, + 2089, + 858, + 2112, + 840, + 2112 + ], + "score": 0.78 + }, + { + "category_id": 1, + "poly": [ + 298, + 1322, + 1078, + 1322, + 1078, + 1354, + 298, + 1354 + ], + "score": 0.091 + }, + { + "category_id": 14, + "poly": [ + 614, + 1479, + 1081, + 1479, + 1081, + 1537, + 614, + 1537 + ], + "score": 0.94, + "latex": "\\mathcal { M } _ { \\sigma } ( \\boldsymbol { x } ) \\stackrel { \\triangle } { = } \\operatorname * { a r g m a x } _ { i } \\left\\{ n _ { i } ( \\boldsymbol { x } ) + \\mathcal { N } ( 0 , \\sigma ^ { 2 } ) \\right\\} ," + }, + { + "category_id": 13, + "poly": [ + 373, + 1542, + 479, + 1542, + 479, + 1577, + 373, + 1577 + ], + "score": 0.93, + "latex": "{ \\mathcal { N } } ( 0 , \\sigma ^ { 2 } )" + }, + { + "category_id": 13, + "poly": [ + 1180, + 1380, + 1320, + 1380, + 1320, + 1415, + 1180, + 1415 + ], + "score": 0.92, + "latex": "f _ { j } ( x ) \\in [ m ]" + }, + { + "category_id": 13, + "poly": [ + 818, + 1411, + 884, + 1411, + 884, + 1444, + 818, + 1444 + ], + "score": 0.92, + "latex": "n _ { i } ( x )" + }, + { + "category_id": 13, + "poly": [ + 773, + 1711, + 882, + 1711, + 882, + 1746, + 773, + 1746 + ], + "score": 0.92, + "latex": "( \\lambda , \\lambda / \\bar { \\sigma ^ { 2 } } )" + }, + { + "category_id": 13, + "poly": [ + 818, + 1832, + 928, + 1832, + 928, + 1863, + 818, + 1863 + ], + "score": 0.92, + "latex": "\\delta = 1 0 ^ { - 8 }" + }, + { + "category_id": 13, + "poly": [ + 1329, + 1713, + 1401, + 1713, + 1401, + 1743, + 1329, + 1743 + ], + "score": 0.9, + "latex": "\\lambda \\geq 1" + }, + { + "category_id": 13, + "poly": [ + 297, + 1441, + 581, + 1441, + 581, + 1476, + 297, + 1476 + ], + "score": 0.9, + "latex": "n _ { i } ( \\dot { x } ) = | \\{ j \\colon f _ { j } ( x ) = i \\} | ," + }, + { + "category_id": 13, + "poly": [ + 458, + 1835, + 561, + 1835, + 561, + 1863, + 458, + 1863 + ], + "score": 0.89, + "latex": "\\varepsilon = 8 . 4 2" + }, + { + "category_id": 13, + "poly": [ + 1092, + 1542, + 1123, + 1542, + 1123, + 1571, + 1092, + 1571 + ], + "score": 0.87, + "latex": "\\sigma ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 399, + 902, + 453, + 902, + 453, + 931, + 399, + 931 + ], + "score": 0.87, + "latex": "50 \\%" + }, + { + "category_id": 13, + "poly": [ + 611, + 1835, + 728, + 1835, + 728, + 1863, + 611, + 1863 + ], + "score": 0.87, + "latex": "\\varepsilon = 1 0 . 1 4" + }, + { + "category_id": 13, + "poly": [ + 1333, + 1974, + 1350, + 1974, + 1350, + 2005, + 1333, + 2005 + ], + "score": 0.81, + "latex": "\\tilde { q }" + }, + { + "category_id": 13, + "poly": [ + 341, + 1413, + 357, + 1413, + 357, + 1443, + 341, + 1443 + ], + "score": 0.8, + "latex": "j" + }, + { + "category_id": 13, + "poly": [ + 904, + 1387, + 924, + 1387, + 924, + 1408, + 904, + 1408 + ], + "score": 0.78, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 1233, + 1416, + 1246, + 1416, + 1246, + 1439, + 1233, + 1439 + ], + "score": 0.77, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 742, + 1418, + 762, + 1418, + 762, + 1439, + 742, + 1439 + ], + "score": 0.77, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 945, + 1944, + 963, + 1944, + 963, + 1970, + 945, + 1970 + ], + "score": 0.76, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 1107, + 1386, + 1134, + 1386, + 1134, + 1409, + 1107, + 1409 + ], + "score": 0.75, + "latex": "m" + }, + { + "category_id": 13, + "poly": [ + 1222, + 1888, + 1238, + 1888, + 1238, + 1909, + 1222, + 1909 + ], + "score": 0.71, + "latex": "\\varepsilon" + }, + { + "category_id": 13, + "poly": [ + 437, + 1913, + 454, + 1913, + 454, + 1940, + 437, + 1940 + ], + "score": 0.65, + "latex": "\\delta" + }, + { + "category_id": 13, + "poly": [ + 1374, + 1687, + 1401, + 1687, + 1401, + 1709, + 1374, + 1709 + ], + "score": 0.62, + "latex": "m" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1005.0, + 1090.0, + 1005.0, + 1090.0, + 1045.0, + 294.0, + 1045.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 72.0, + 817.0, + 72.0, + 817.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 228.0, + 810.0, + 228.0, + 810.0, + 265.0, + 295.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1320.0, + 1082.0, + 1320.0, + 1082.0, + 1359.0, + 293.0, + 1359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2087.0, + 861.0, + 2087.0, + 861.0, + 2118.0, + 840.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1070.0, + 1405.0, + 1070.0, + 1405.0, + 1110.0, + 293.0, + 1110.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1105.0, + 1405.0, + 1105.0, + 1405.0, + 1139.0, + 295.0, + 1139.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1134.0, + 1403.0, + 1134.0, + 1403.0, + 1169.0, + 295.0, + 1169.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1165.0, + 1405.0, + 1165.0, + 1405.0, + 1200.0, + 293.0, + 1200.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1195.0, + 1406.0, + 1195.0, + 1406.0, + 1233.0, + 295.0, + 1233.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1224.0, + 1405.0, + 1224.0, + 1405.0, + 1263.0, + 293.0, + 1263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1259.0, + 1371.0, + 1259.0, + 1371.0, + 1290.0, + 296.0, + 1290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 610.0, + 1406.0, + 610.0, + 1406.0, + 648.0, + 295.0, + 648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 642.0, + 1404.0, + 642.0, + 1404.0, + 676.0, + 297.0, + 676.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 670.0, + 1407.0, + 670.0, + 1407.0, + 710.0, + 292.0, + 710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 703.0, + 1404.0, + 703.0, + 1404.0, + 737.0, + 295.0, + 737.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 733.0, + 1312.0, + 733.0, + 1312.0, + 770.0, + 295.0, + 770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1650.0, + 1404.0, + 1650.0, + 1404.0, + 1685.0, + 294.0, + 1685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1682.0, + 1373.0, + 1682.0, + 1373.0, + 1716.0, + 295.0, + 1716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 1682.0, + 1407.0, + 1682.0, + 1407.0, + 1716.0, + 1402.0, + 1716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1709.0, + 772.0, + 1709.0, + 772.0, + 1749.0, + 292.0, + 1749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 883.0, + 1709.0, + 1328.0, + 1709.0, + 1328.0, + 1749.0, + 883.0, + 1749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 1709.0, + 1405.0, + 1709.0, + 1405.0, + 1749.0, + 1402.0, + 1749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1742.0, + 1403.0, + 1742.0, + 1403.0, + 1777.0, + 293.0, + 1777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1773.0, + 1405.0, + 1773.0, + 1405.0, + 1808.0, + 295.0, + 1808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1803.0, + 1405.0, + 1803.0, + 1405.0, + 1836.0, + 293.0, + 1836.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1832.0, + 457.0, + 1832.0, + 457.0, + 1871.0, + 292.0, + 1871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 562.0, + 1832.0, + 610.0, + 1832.0, + 610.0, + 1871.0, + 562.0, + 1871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 729.0, + 1832.0, + 817.0, + 1832.0, + 817.0, + 1871.0, + 729.0, + 1871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 929.0, + 1832.0, + 1180.0, + 1832.0, + 1180.0, + 1871.0, + 929.0, + 1871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 780.0, + 1406.0, + 780.0, + 1406.0, + 816.0, + 295.0, + 816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 810.0, + 1404.0, + 810.0, + 1404.0, + 845.0, + 293.0, + 845.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 840.0, + 1404.0, + 840.0, + 1404.0, + 875.0, + 294.0, + 875.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 869.0, + 1403.0, + 869.0, + 1403.0, + 906.0, + 294.0, + 906.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 899.0, + 398.0, + 899.0, + 398.0, + 936.0, + 293.0, + 936.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 454.0, + 899.0, + 1404.0, + 899.0, + 1404.0, + 936.0, + 454.0, + 936.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 930.0, + 857.0, + 930.0, + 857.0, + 968.0, + 294.0, + 968.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1882.0, + 1221.0, + 1882.0, + 1221.0, + 1915.0, + 297.0, + 1915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1239.0, + 1882.0, + 1403.0, + 1882.0, + 1403.0, + 1915.0, + 1239.0, + 1915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1908.0, + 436.0, + 1908.0, + 436.0, + 1948.0, + 293.0, + 1948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 455.0, + 1908.0, + 1405.0, + 1908.0, + 1405.0, + 1948.0, + 455.0, + 1948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1941.0, + 944.0, + 1941.0, + 944.0, + 1978.0, + 294.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 964.0, + 1941.0, + 1405.0, + 1941.0, + 1405.0, + 1978.0, + 964.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1972.0, + 1332.0, + 1972.0, + 1332.0, + 2009.0, + 295.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1351.0, + 1972.0, + 1405.0, + 1972.0, + 1405.0, + 2009.0, + 1351.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2002.0, + 1182.0, + 2002.0, + 1182.0, + 2038.0, + 294.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 424.0, + 1404.0, + 424.0, + 1404.0, + 460.0, + 293.0, + 460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 450.0, + 1405.0, + 450.0, + 1405.0, + 495.0, + 293.0, + 495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 483.0, + 1403.0, + 483.0, + 1403.0, + 523.0, + 293.0, + 523.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 515.0, + 1407.0, + 515.0, + 1407.0, + 554.0, + 293.0, + 554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 548.0, + 697.0, + 548.0, + 697.0, + 581.0, + 294.0, + 581.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 286.0, + 1407.0, + 286.0, + 1407.0, + 325.0, + 292.0, + 325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 319.0, + 1404.0, + 319.0, + 1404.0, + 352.0, + 293.0, + 352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 348.0, + 1404.0, + 348.0, + 1404.0, + 383.0, + 293.0, + 383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 379.0, + 1403.0, + 379.0, + 1403.0, + 415.0, + 293.0, + 415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1538.0, + 372.0, + 1538.0, + 372.0, + 1579.0, + 293.0, + 1579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 480.0, + 1538.0, + 1091.0, + 1538.0, + 1091.0, + 1579.0, + 480.0, + 1579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1124.0, + 1538.0, + 1405.0, + 1538.0, + 1405.0, + 1579.0, + 1124.0, + 1579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1572.0, + 1403.0, + 1572.0, + 1403.0, + 1608.0, + 295.0, + 1608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1604.0, + 1286.0, + 1604.0, + 1286.0, + 1640.0, + 295.0, + 1640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1377.0, + 903.0, + 1377.0, + 903.0, + 1417.0, + 292.0, + 1417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 925.0, + 1377.0, + 1106.0, + 1377.0, + 1106.0, + 1417.0, + 925.0, + 1417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1135.0, + 1377.0, + 1179.0, + 1377.0, + 1179.0, + 1417.0, + 1135.0, + 1417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1321.0, + 1377.0, + 1406.0, + 1377.0, + 1406.0, + 1417.0, + 1321.0, + 1417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1409.0, + 340.0, + 1409.0, + 340.0, + 1446.0, + 294.0, + 1446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 358.0, + 1409.0, + 741.0, + 1409.0, + 741.0, + 1446.0, + 358.0, + 1446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 763.0, + 1409.0, + 817.0, + 1409.0, + 817.0, + 1446.0, + 763.0, + 1446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 885.0, + 1409.0, + 1232.0, + 1409.0, + 1232.0, + 1446.0, + 885.0, + 1446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1247.0, + 1409.0, + 1403.0, + 1409.0, + 1403.0, + 1446.0, + 1247.0, + 1446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 582.0, + 1442.0, + 1395.0, + 1442.0, + 1395.0, + 1476.0, + 582.0, + 1476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1320.0, + 1082.0, + 1320.0, + 1082.0, + 1359.0, + 293.0, + 1359.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 5, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 881, + 1403, + 881, + 1403, + 1097, + 298, + 1097 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 1527, + 1403, + 1527, + 1403, + 1710, + 298, + 1710 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 1327, + 1402, + 1327, + 1402, + 1512, + 298, + 1512 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 299, + 1188, + 1404, + 1188, + 1404, + 1311, + 299, + 1311 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 696, + 1404, + 696, + 1404, + 851, + 298, + 851 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 1726, + 1404, + 1726, + 1404, + 1880, + 298, + 1880 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 373, + 1404, + 373, + 1404, + 529, + 298, + 529 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 299, + 228, + 1401, + 228, + 1401, + 354, + 299, + 354 + ], + "score": 0.969 + }, + { + "category_id": 1, + "poly": [ + 300, + 1972, + 1402, + 1972, + 1402, + 2034, + 300, + 2034 + ], + "score": 0.941 + }, + { + "category_id": 1, + "poly": [ + 299, + 542, + 1398, + 542, + 1398, + 605, + 299, + 605 + ], + "score": 0.921 + }, + { + "category_id": 0, + "poly": [ + 298, + 1914, + 875, + 1914, + 875, + 1946, + 298, + 1946 + ], + "score": 0.917 + }, + { + "category_id": 1, + "poly": [ + 299, + 607, + 1399, + 607, + 1399, + 676, + 299, + 676 + ], + "score": 0.912 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 815, + 76, + 815, + 104, + 300, + 104 + ], + "score": 0.892 + }, + { + "category_id": 0, + "poly": [ + 302, + 1132, + 848, + 1132, + 848, + 1162, + 302, + 1162 + ], + "score": 0.883 + }, + { + "category_id": 2, + "poly": [ + 842, + 2088, + 858, + 2088, + 858, + 2111, + 842, + 2111 + ], + "score": 0.633 + }, + { + "category_id": 2, + "poly": [ + 842, + 2088, + 858, + 2088, + 858, + 2111, + 842, + 2111 + ], + "score": 0.259 + }, + { + "category_id": 13, + "poly": [ + 1287, + 434, + 1349, + 434, + 1349, + 469, + 1287, + 469 + ], + "score": 0.92, + "latex": "\\lambda / \\sigma ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 838, + 819, + 899, + 819, + 899, + 853, + 838, + 853 + ], + "score": 0.92, + "latex": "( \\varepsilon , \\delta )" + }, + { + "category_id": 13, + "poly": [ + 576, + 609, + 683, + 609, + 683, + 644, + 576, + 644 + ], + "score": 0.9, + "latex": "i ^ { * } \\in [ m ]" + }, + { + "category_id": 13, + "poly": [ + 1166, + 917, + 1268, + 917, + 1268, + 944, + 1166, + 944 + ], + "score": 0.9, + "latex": "n _ { i ^ { * } } - n _ { i }" + }, + { + "category_id": 13, + "poly": [ + 799, + 607, + 1152, + 607, + 1152, + 649, + 799, + 649 + ], + "score": 0.9, + "latex": "\\begin{array} { r } { \\mathbf { P r } \\left[ \\mathcal { M } _ { \\sigma } ( D ) \\neq i ^ { * } \\right] \\ \\leq \\ \\frac { 1 } { 2 } \\sum _ { i \\neq i ^ { * } } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1245, + 323, + 1317, + 323, + 1317, + 353, + 1245, + 353 + ], + "score": 0.9, + "latex": "\\tilde { q } 0" + }, + { + "category_id": 13, + "poly": [ + 1028, + 501, + 1191, + 501, + 1191, + 529, + 1028, + 529 + ], + "score": 0.89, + "latex": "\\mu _ { 1 } = \\mu _ { 2 } = \\infty" + }, + { + "category_id": 13, + "poly": [ + 566, + 1448, + 599, + 1448, + 599, + 1483, + 566, + 1483 + ], + "score": 0.89, + "latex": "\\sigma _ { 2 } ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 919, + 407, + 996, + 407, + 996, + 438, + 919, + 438 + ], + "score": 0.89, + "latex": "\\tilde { q } \\ll 1 ." + }, + { + "category_id": 13, + "poly": [ + 1163, + 1388, + 1195, + 1388, + 1195, + 1421, + 1163, + 1421 + ], + "score": 0.89, + "latex": "\\sigma _ { 1 } ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1301, + 230, + 1391, + 230, + 1391, + 264, + 1301, + 264 + ], + "score": 0.89, + "latex": "\\left( \\mu _ { 2 } , \\varepsilon _ { 2 } \\right)" + }, + { + "category_id": 13, + "poly": [ + 352, + 291, + 608, + 291, + 608, + 324, + 352, + 324 + ], + "score": 0.89, + "latex": "\\mathbf { P r } \\left[ \\mathcal { M } ( D ) \\neq i ^ { * } \\right] \\leq \\tilde { q }" + }, + { + "category_id": 13, + "poly": [ + 297, + 323, + 423, + 323, + 423, + 354, + 297, + 354 + ], + "score": 0.89, + "latex": "\\lambda \\leq \\mu _ { 1 } , \\mu _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1241, + 500, + 1332, + 500, + 1332, + 528, + 1241, + 528 + ], + "score": 0.88, + "latex": "\\varepsilon _ { 1 } = \\varepsilon _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 970, + 764, + 1002, + 764, + 1002, + 790, + 970, + 790 + ], + "score": 0.86, + "latex": "\\mu _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 390, + 1681, + 450, + 1681, + 450, + 1710, + 390, + 1710 + ], + "score": 0.86, + "latex": "0 . 8 \\times" + }, + { + "category_id": 13, + "poly": [ + 1169, + 1533, + 1200, + 1533, + 1200, + 1558, + 1169, + 1558 + ], + "score": 0.85, + "latex": "\\sigma _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 297, + 1680, + 358, + 1680, + 358, + 1710, + 297, + 1710 + ], + "score": 0.85, + "latex": "0 . 6 \\times" + }, + { + "category_id": 13, + "poly": [ + 981, + 1534, + 1012, + 1534, + 1012, + 1558, + 981, + 1558 + ], + "score": 0.85, + "latex": "\\sigma _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 1050, + 762, + 1082, + 762, + 1082, + 790, + 1050, + 790 + ], + "score": 0.85, + "latex": "\\mu _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 964, + 730, + 989, + 730, + 989, + 756, + 964, + 756 + ], + "score": 0.85, + "latex": "i ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 1300, + 545, + 1326, + 545, + 1326, + 571, + 1300, + 571 + ], + "score": 0.85, + "latex": "i ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 523, + 761, + 540, + 761, + 540, + 790, + 523, + 790 + ], + "score": 0.85, + "latex": "\\tilde { q }" + }, + { + "category_id": 13, + "poly": [ + 1207, + 608, + 1313, + 608, + 1313, + 648, + 1207, + 648 + ], + "score": 0.84, + "latex": "\\left( { \\frac { n _ { i ^ { * } } - n _ { i } } { 2 \\sigma } } \\right)" + }, + { + "category_id": 13, + "poly": [ + 783, + 733, + 813, + 733, + 813, + 759, + 783, + 759 + ], + "score": 0.84, + "latex": "n _ { i }" + }, + { + "category_id": 13, + "poly": [ + 1210, + 546, + 1228, + 546, + 1228, + 576, + 1210, + 576 + ], + "score": 0.83, + "latex": "\\tilde { q }" + }, + { + "category_id": 13, + "poly": [ + 1131, + 408, + 1149, + 408, + 1149, + 437, + 1131, + 437 + ], + "score": 0.83, + "latex": "\\tilde { q }" + }, + { + "category_id": 13, + "poly": [ + 1310, + 264, + 1337, + 264, + 1337, + 289, + 1310, + 289 + ], + "score": 0.82, + "latex": "i ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 1005, + 376, + 1024, + 376, + 1024, + 402, + 1005, + 402 + ], + "score": 0.79, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 1080, + 230, + 1236, + 230, + 1236, + 264, + 1080, + 264 + ], + "score": 0.77, + "latex": "( \\mu _ { 1 } , \\varepsilon _ { 1 } ) – R D P" + }, + { + "category_id": 13, + "poly": [ + 457, + 325, + 483, + 325, + 483, + 349, + 457, + 349 + ], + "score": 0.76, + "latex": "D" + }, + { + "category_id": 13, + "poly": [ + 1262, + 293, + 1299, + 293, + 1299, + 320, + 1262, + 320 + ], + "score": 0.76, + "latex": "\\mathcal { M }" + }, + { + "category_id": 13, + "poly": [ + 714, + 945, + 731, + 945, + 731, + 976, + 714, + 976 + ], + "score": 0.76, + "latex": "\\tilde { q }" + }, + { + "category_id": 13, + "poly": [ + 621, + 1590, + 645, + 1590, + 645, + 1616, + 621, + 1616 + ], + "score": 0.76, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 731, + 502, + 748, + 502, + 748, + 524, + 731, + 524 + ], + "score": 0.75, + "latex": "\\varepsilon" + }, + { + "category_id": 13, + "poly": [ + 910, + 263, + 937, + 263, + 937, + 289, + 910, + 289 + ], + "score": 0.74, + "latex": "D" + }, + { + "category_id": 13, + "poly": [ + 1150, + 1360, + 1174, + 1360, + 1174, + 1386, + 1150, + 1386 + ], + "score": 0.7, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 635, + 231, + 672, + 231, + 672, + 259, + 635, + 259 + ], + "score": 0.69, + "latex": "\\mathcal { M }" + }, + { + "category_id": 13, + "poly": [ + 564, + 790, + 584, + 790, + 584, + 816, + 564, + 816 + ], + "score": 0.67, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 1259, + 1651, + 1282, + 1651, + 1282, + 1677, + 1259, + 1677 + ], + "score": 0.62, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 794, + 325, + 975, + 325, + 975, + 354, + 794, + 354 + ], + "score": 0.61, + "latex": "\\tilde { q } , \\mu _ { 1 } , \\varepsilon _ { 1 } , \\mu _ { 2 } , \\varepsilon _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 464, + 1482, + 489, + 1482, + 489, + 1509, + 464, + 1509 + ], + "score": 0.58, + "latex": "\\perp" + }, + { + "category_id": 13, + "poly": [ + 296, + 262, + 356, + 262, + 356, + 290, + 296, + 290 + ], + "score": 0.45, + "latex": "R D P" + }, + { + "category_id": 13, + "poly": [ + 795, + 324, + 812, + 324, + 812, + 353, + 795, + 353 + ], + "score": 0.45, + "latex": "\\tilde { q } ," + }, + { + "category_id": 13, + "poly": [ + 1192, + 324, + 1211, + 324, + 1211, + 349, + 1192, + 349 + ], + "score": 0.36, + "latex": "O" + }, + { + "category_id": 13, + "poly": [ + 821, + 325, + 853, + 325, + 853, + 354, + 821, + 354 + ], + "score": 0.25, + "latex": "\\mu _ { 1 }" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1914.0, + 879.0, + 1914.0, + 879.0, + 1950.0, + 294.0, + 1950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1129.0, + 855.0, + 1129.0, + 855.0, + 1168.0, + 293.0, + 1168.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2086.0, + 860.0, + 2086.0, + 860.0, + 2119.0, + 840.0, + 2119.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2086.0, + 860.0, + 2086.0, + 860.0, + 2119.0, + 840.0, + 2119.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 883.0, + 1405.0, + 883.0, + 1405.0, + 917.0, + 296.0, + 917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 914.0, + 1165.0, + 914.0, + 1165.0, + 951.0, + 293.0, + 951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1269.0, + 914.0, + 1404.0, + 914.0, + 1404.0, + 951.0, + 1269.0, + 951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 945.0, + 713.0, + 945.0, + 713.0, + 979.0, + 294.0, + 979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 732.0, + 945.0, + 1405.0, + 945.0, + 1405.0, + 979.0, + 732.0, + 979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 973.0, + 1407.0, + 973.0, + 1407.0, + 1012.0, + 292.0, + 1012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1004.0, + 1403.0, + 1004.0, + 1403.0, + 1041.0, + 293.0, + 1041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1033.0, + 1407.0, + 1033.0, + 1407.0, + 1073.0, + 292.0, + 1073.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1064.0, + 1068.0, + 1064.0, + 1068.0, + 1103.0, + 295.0, + 1103.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1529.0, + 980.0, + 1529.0, + 980.0, + 1560.0, + 296.0, + 1560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1013.0, + 1529.0, + 1168.0, + 1529.0, + 1168.0, + 1560.0, + 1013.0, + 1560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1201.0, + 1529.0, + 1404.0, + 1529.0, + 1404.0, + 1560.0, + 1201.0, + 1560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1558.0, + 1405.0, + 1558.0, + 1405.0, + 1592.0, + 293.0, + 1592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1588.0, + 620.0, + 1588.0, + 620.0, + 1624.0, + 294.0, + 1624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 646.0, + 1588.0, + 1405.0, + 1588.0, + 1405.0, + 1624.0, + 646.0, + 1624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1619.0, + 1405.0, + 1619.0, + 1405.0, + 1653.0, + 293.0, + 1653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1650.0, + 1258.0, + 1650.0, + 1258.0, + 1685.0, + 293.0, + 1685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1283.0, + 1650.0, + 1407.0, + 1650.0, + 1407.0, + 1685.0, + 1283.0, + 1685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 359.0, + 1680.0, + 389.0, + 1680.0, + 389.0, + 1712.0, + 359.0, + 1712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 451.0, + 1680.0, + 719.0, + 1680.0, + 719.0, + 1712.0, + 451.0, + 1712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1328.0, + 1404.0, + 1328.0, + 1404.0, + 1364.0, + 296.0, + 1364.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1355.0, + 1149.0, + 1355.0, + 1149.0, + 1397.0, + 292.0, + 1397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1175.0, + 1355.0, + 1406.0, + 1355.0, + 1406.0, + 1397.0, + 1175.0, + 1397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1388.0, + 1162.0, + 1388.0, + 1162.0, + 1423.0, + 293.0, + 1423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1196.0, + 1388.0, + 1406.0, + 1388.0, + 1406.0, + 1423.0, + 1196.0, + 1423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1419.0, + 1406.0, + 1419.0, + 1406.0, + 1455.0, + 294.0, + 1455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1446.0, + 565.0, + 1446.0, + 565.0, + 1487.0, + 293.0, + 1487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 600.0, + 1446.0, + 1406.0, + 1446.0, + 1406.0, + 1487.0, + 600.0, + 1487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1478.0, + 463.0, + 1478.0, + 463.0, + 1519.0, + 292.0, + 1519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 490.0, + 1478.0, + 1073.0, + 1478.0, + 1073.0, + 1519.0, + 490.0, + 1519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1190.0, + 1404.0, + 1190.0, + 1404.0, + 1223.0, + 294.0, + 1223.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1218.0, + 1404.0, + 1218.0, + 1404.0, + 1255.0, + 294.0, + 1255.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1252.0, + 1403.0, + 1252.0, + 1403.0, + 1284.0, + 294.0, + 1284.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1286.0, + 393.0, + 1286.0, + 393.0, + 1312.0, + 295.0, + 1312.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 696.0, + 1405.0, + 696.0, + 1405.0, + 732.0, + 295.0, + 732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 724.0, + 782.0, + 724.0, + 782.0, + 767.0, + 292.0, + 767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 814.0, + 724.0, + 963.0, + 724.0, + 963.0, + 767.0, + 814.0, + 767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 990.0, + 724.0, + 1408.0, + 724.0, + 1408.0, + 767.0, + 990.0, + 767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 756.0, + 522.0, + 756.0, + 522.0, + 797.0, + 293.0, + 797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 541.0, + 756.0, + 969.0, + 756.0, + 969.0, + 797.0, + 541.0, + 797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1003.0, + 756.0, + 1049.0, + 756.0, + 1049.0, + 797.0, + 1003.0, + 797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1083.0, + 756.0, + 1408.0, + 756.0, + 1408.0, + 797.0, + 1083.0, + 797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 787.0, + 563.0, + 787.0, + 563.0, + 827.0, + 292.0, + 827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 585.0, + 787.0, + 1407.0, + 787.0, + 1407.0, + 827.0, + 585.0, + 827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 819.0, + 837.0, + 819.0, + 837.0, + 854.0, + 294.0, + 854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 900.0, + 819.0, + 1031.0, + 819.0, + 1031.0, + 854.0, + 900.0, + 854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1724.0, + 1405.0, + 1724.0, + 1405.0, + 1762.0, + 293.0, + 1762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1755.0, + 1405.0, + 1755.0, + 1405.0, + 1792.0, + 294.0, + 1792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1786.0, + 1405.0, + 1786.0, + 1405.0, + 1823.0, + 292.0, + 1823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1815.0, + 1409.0, + 1815.0, + 1409.0, + 1856.0, + 293.0, + 1856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1848.0, + 1298.0, + 1848.0, + 1298.0, + 1885.0, + 293.0, + 1885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 372.0, + 1004.0, + 372.0, + 1004.0, + 410.0, + 296.0, + 410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1025.0, + 372.0, + 1405.0, + 372.0, + 1405.0, + 410.0, + 1025.0, + 410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 404.0, + 918.0, + 404.0, + 918.0, + 442.0, + 294.0, + 442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 997.0, + 404.0, + 1130.0, + 404.0, + 1130.0, + 442.0, + 997.0, + 442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1150.0, + 404.0, + 1405.0, + 404.0, + 1405.0, + 442.0, + 1150.0, + 442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 434.0, + 1286.0, + 434.0, + 1286.0, + 471.0, + 293.0, + 471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1350.0, + 434.0, + 1405.0, + 434.0, + 1405.0, + 471.0, + 1350.0, + 471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 467.0, + 1405.0, + 467.0, + 1405.0, + 500.0, + 294.0, + 500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 494.0, + 730.0, + 494.0, + 730.0, + 534.0, + 292.0, + 534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 749.0, + 494.0, + 1027.0, + 494.0, + 1027.0, + 534.0, + 749.0, + 534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1192.0, + 494.0, + 1240.0, + 494.0, + 1240.0, + 534.0, + 1192.0, + 534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1333.0, + 494.0, + 1352.0, + 494.0, + 1352.0, + 534.0, + 1333.0, + 534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 227.0, + 634.0, + 227.0, + 634.0, + 266.0, + 293.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 673.0, + 227.0, + 1079.0, + 227.0, + 1079.0, + 266.0, + 673.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1237.0, + 227.0, + 1300.0, + 227.0, + 1300.0, + 266.0, + 1237.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1392.0, + 227.0, + 1403.0, + 227.0, + 1403.0, + 266.0, + 1392.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 357.0, + 260.0, + 909.0, + 260.0, + 909.0, + 297.0, + 357.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 938.0, + 260.0, + 1309.0, + 260.0, + 1309.0, + 297.0, + 938.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1338.0, + 260.0, + 1406.0, + 260.0, + 1406.0, + 297.0, + 1338.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 289.0, + 351.0, + 289.0, + 351.0, + 326.0, + 293.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 609.0, + 289.0, + 1261.0, + 289.0, + 1261.0, + 326.0, + 609.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1300.0, + 289.0, + 1406.0, + 289.0, + 1406.0, + 326.0, + 1300.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 319.0, + 296.0, + 319.0, + 296.0, + 359.0, + 292.0, + 359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 424.0, + 319.0, + 456.0, + 319.0, + 456.0, + 359.0, + 424.0, + 359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 484.0, + 319.0, + 793.0, + 319.0, + 793.0, + 359.0, + 484.0, + 359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 976.0, + 319.0, + 1191.0, + 319.0, + 1191.0, + 359.0, + 976.0, + 359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1212.0, + 319.0, + 1244.0, + 319.0, + 1244.0, + 359.0, + 1212.0, + 359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1318.0, + 319.0, + 1331.0, + 319.0, + 1331.0, + 359.0, + 1318.0, + 359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1968.0, + 1406.0, + 1968.0, + 1406.0, + 2008.0, + 294.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2000.0, + 1404.0, + 2000.0, + 1404.0, + 2038.0, + 295.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 538.0, + 1209.0, + 538.0, + 1209.0, + 581.0, + 293.0, + 581.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1229.0, + 538.0, + 1299.0, + 538.0, + 1299.0, + 581.0, + 1229.0, + 581.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1327.0, + 538.0, + 1403.0, + 538.0, + 1403.0, + 581.0, + 1327.0, + 581.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 574.0, + 947.0, + 574.0, + 947.0, + 612.0, + 293.0, + 612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 285.0, + 594.0, + 575.0, + 594.0, + 575.0, + 678.0, + 285.0, + 678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 684.0, + 594.0, + 798.0, + 594.0, + 798.0, + 678.0, + 684.0, + 678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1153.0, + 594.0, + 1206.0, + 594.0, + 1206.0, + 678.0, + 1153.0, + 678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1314.0, + 594.0, + 1413.0, + 594.0, + 1413.0, + 678.0, + 1314.0, + 678.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 6, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1650, + 1403, + 1650, + 1403, + 1896, + 298, + 1896 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 1235, + 1403, + 1235, + 1403, + 1420, + 298, + 1420 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 1067, + 1403, + 1067, + 1403, + 1221, + 298, + 1221 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 300, + 1911, + 1402, + 1911, + 1402, + 2034, + 300, + 2034 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 300, + 1435, + 1398, + 1435, + 1398, + 1528, + 300, + 1528 + ], + "score": 0.964 + }, + { + "category_id": 1, + "poly": [ + 301, + 990, + 1399, + 990, + 1399, + 1052, + 301, + 1052 + ], + "score": 0.954 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 815, + 75, + 815, + 105, + 299, + 105 + ], + "score": 0.896 + }, + { + "category_id": 0, + "poly": [ + 302, + 1578, + 768, + 1578, + 768, + 1613, + 302, + 1613 + ], + "score": 0.894 + }, + { + "category_id": 1, + "poly": [ + 299, + 303, + 932, + 303, + 932, + 491, + 299, + 491 + ], + "score": 0.808 + }, + { + "category_id": 2, + "poly": [ + 840, + 2089, + 858, + 2089, + 858, + 2112, + 840, + 2112 + ], + "score": 0.79 + }, + { + "category_id": 1, + "poly": [ + 299, + 537, + 1399, + 537, + 1399, + 630, + 299, + 630 + ], + "score": 0.772 + }, + { + "category_id": 1, + "poly": [ + 289, + 228, + 1404, + 228, + 1404, + 295, + 289, + 295 + ], + "score": 0.632 + }, + { + "category_id": 5, + "poly": [ + 304, + 640, + 1405, + 640, + 1405, + 928, + 304, + 928 + ], + "score": 0.595, + "html": "
Input: input x,confidence γ,threshold T,noise parameters O1 ando2,total number of teachers M
1:Ask the student to provide prediction scores p(x) 2:if maxj{nj(x)-Mpj(x)}+N(0,o²)≥Tthen >Student does not agree with teachers
3: return argmaxj{nj(x) +N(0,0²)}
4: else if max{pi(x)}> γ then > Student agrees with teachers and is confident
5: return arg maxj Pj(x)
Reinforce student's prediction 6: else return⊥ No output given for this label
" + }, + { + "category_id": 1, + "poly": [ + 304, + 640, + 1405, + 640, + 1405, + 928, + 304, + 928 + ], + "score": 0.468 + }, + { + "category_id": 1, + "poly": [ + 1024, + 335, + 1401, + 335, + 1401, + 399, + 1024, + 399 + ], + "score": 0.283 + }, + { + "category_id": 6, + "poly": [ + 299, + 537, + 1399, + 537, + 1399, + 630, + 299, + 630 + ], + "score": 0.147 + }, + { + "category_id": 13, + "poly": [ + 838, + 671, + 894, + 671, + 894, + 703, + 838, + 703 + ], + "score": 0.9, + "latex": "\\mathbf { p } ( x )" + }, + { + "category_id": 13, + "poly": [ + 363, + 699, + 850, + 699, + 850, + 734, + 363, + 734 + ], + "score": 0.88, + "latex": "\\cdot \\mathrm { m a x } _ { j } \\{ n _ { j } ( x ) - \\hat { M } p _ { j } ( x ) \\} + \\mathcal { N } ( 0 , \\sigma _ { 1 } ^ { 2 } ) \\geq \\hat { T }" + }, + { + "category_id": 13, + "poly": [ + 419, + 769, + 615, + 769, + 615, + 802, + 419, + 802 + ], + "score": 0.87, + "latex": "\\operatorname* { m a x } \\{ p _ { i } ( x ) \\} > \\gamma" + }, + { + "category_id": 13, + "poly": [ + 971, + 646, + 1002, + 646, + 1002, + 671, + 971, + 671 + ], + "score": 0.86, + "latex": "\\sigma _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 1052, + 646, + 1083, + 646, + 1083, + 671, + 1052, + 671 + ], + "score": 0.85, + "latex": "\\sigma _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 478, + 734, + 806, + 734, + 806, + 768, + 478, + 768 + ], + "score": 0.85, + "latex": "\\mathrm { \\ x g m a x } _ { j } \\{ n _ { j } ( x ) + \\mathcal { N } ( 0 , \\sigma _ { 2 } ^ { 2 } ) \\}" + }, + { + "category_id": 13, + "poly": [ + 369, + 333, + 721, + 333, + 721, + 367, + 369, + 367 + ], + "score": 0.85, + "latex": "\\begin{array} { r } { \\operatorname* { m a x } _ { i } \\{ n _ { j } ( x ) \\} + \\mathcal { N } ( 0 , \\sigma _ { 1 } ^ { 2 } ) \\geq T } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 817, + 309, + 848, + 309, + 848, + 334, + 817, + 334 + ], + "score": 0.83, + "latex": "\\sigma _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 577, + 366, + 814, + 366, + 814, + 404, + 577, + 404 + ], + "score": 0.8, + "latex": "\\{ n _ { j } ( x ) + \\mathcal { N } ( 0 , \\sigma _ { 2 } ^ { 2 } ) \\}" + }, + { + "category_id": 13, + "poly": [ + 605, + 645, + 625, + 645, + 625, + 672, + 605, + 672 + ], + "score": 0.78, + "latex": "\\gamma" + }, + { + "category_id": 13, + "poly": [ + 590, + 304, + 613, + 304, + 613, + 330, + 590, + 330 + ], + "score": 0.76, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 899, + 309, + 931, + 309, + 931, + 334, + 899, + 334 + ], + "score": 0.76, + "latex": "\\sigma _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 744, + 641, + 767, + 641, + 767, + 668, + 744, + 668 + ], + "score": 0.75, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 451, + 309, + 469, + 309, + 469, + 330, + 451, + 330 + ], + "score": 0.69, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 450, + 647, + 469, + 647, + 469, + 667, + 450, + 667 + ], + "score": 0.65, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 1368, + 640, + 1401, + 640, + 1401, + 668, + 1368, + 668 + ], + "score": 0.62, + "latex": "M" + }, + { + "category_id": 13, + "poly": [ + 513, + 801, + 646, + 801, + 646, + 833, + 513, + 833 + ], + "score": 0.45, + "latex": "\\operatorname* { m a x } _ { j } p _ { j } ( x )" + }, + { + "category_id": 13, + "poly": [ + 469, + 861, + 494, + 861, + 494, + 887, + 469, + 887 + ], + "score": 0.33, + "latex": "\\perp" + }, + { + "category_id": 13, + "poly": [ + 876, + 773, + 897, + 773, + 897, + 797, + 876, + 797 + ], + "score": 0.3, + "latex": "\\triangleright" + }, + { + "category_id": 13, + "poly": [ + 1045, + 337, + 1067, + 337, + 1067, + 361, + 1045, + 361 + ], + "score": 0.28, + "latex": "\\triangleright" + }, + { + "category_id": 13, + "poly": [ + 1070, + 738, + 1094, + 738, + 1094, + 763, + 1070, + 763 + ], + "score": 0.25, + "latex": "\\triangleright" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 818.0, + 73.0, + 818.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1574.0, + 775.0, + 1574.0, + 775.0, + 1620.0, + 291.0, + 1620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2117.0, + 838.0, + 2117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 535.0, + 1405.0, + 535.0, + 1405.0, + 573.0, + 295.0, + 573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 567.0, + 1405.0, + 567.0, + 1405.0, + 604.0, + 294.0, + 604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 599.0, + 1241.0, + 599.0, + 1241.0, + 633.0, + 295.0, + 633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1652.0, + 1404.0, + 1652.0, + 1404.0, + 1685.0, + 296.0, + 1685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1679.0, + 1404.0, + 1679.0, + 1404.0, + 1717.0, + 292.0, + 1717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1713.0, + 1404.0, + 1713.0, + 1404.0, + 1745.0, + 293.0, + 1745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1742.0, + 1407.0, + 1742.0, + 1407.0, + 1778.0, + 292.0, + 1778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1771.0, + 1404.0, + 1771.0, + 1404.0, + 1810.0, + 292.0, + 1810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1801.0, + 1407.0, + 1801.0, + 1407.0, + 1840.0, + 292.0, + 1840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1834.0, + 1405.0, + 1834.0, + 1405.0, + 1872.0, + 293.0, + 1872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1867.0, + 1171.0, + 1867.0, + 1171.0, + 1897.0, + 296.0, + 1897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1237.0, + 1404.0, + 1237.0, + 1404.0, + 1269.0, + 296.0, + 1269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1266.0, + 1407.0, + 1266.0, + 1407.0, + 1301.0, + 292.0, + 1301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1298.0, + 1405.0, + 1298.0, + 1405.0, + 1331.0, + 293.0, + 1331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1327.0, + 1405.0, + 1327.0, + 1405.0, + 1363.0, + 294.0, + 1363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1357.0, + 1405.0, + 1357.0, + 1405.0, + 1394.0, + 293.0, + 1394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1387.0, + 1345.0, + 1387.0, + 1345.0, + 1424.0, + 293.0, + 1424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1069.0, + 1402.0, + 1069.0, + 1402.0, + 1102.0, + 297.0, + 1102.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1098.0, + 1403.0, + 1098.0, + 1403.0, + 1135.0, + 294.0, + 1135.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1127.0, + 1406.0, + 1127.0, + 1406.0, + 1164.0, + 292.0, + 1164.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1157.0, + 1405.0, + 1157.0, + 1405.0, + 1196.0, + 293.0, + 1196.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1189.0, + 1348.0, + 1189.0, + 1348.0, + 1225.0, + 293.0, + 1225.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1911.0, + 1403.0, + 1911.0, + 1403.0, + 1943.0, + 295.0, + 1943.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1942.0, + 1403.0, + 1942.0, + 1403.0, + 1975.0, + 295.0, + 1975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1970.0, + 1406.0, + 1970.0, + 1406.0, + 2007.0, + 294.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2003.0, + 1407.0, + 2003.0, + 1407.0, + 2036.0, + 294.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1436.0, + 1403.0, + 1436.0, + 1403.0, + 1469.0, + 296.0, + 1469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1467.0, + 1403.0, + 1467.0, + 1403.0, + 1501.0, + 295.0, + 1501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1497.0, + 652.0, + 1497.0, + 652.0, + 1535.0, + 295.0, + 1535.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 989.0, + 1405.0, + 989.0, + 1405.0, + 1025.0, + 296.0, + 1025.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1020.0, + 1338.0, + 1020.0, + 1338.0, + 1054.0, + 296.0, + 1054.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 299.0, + 450.0, + 299.0, + 450.0, + 339.0, + 295.0, + 339.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 470.0, + 299.0, + 589.0, + 299.0, + 589.0, + 339.0, + 470.0, + 339.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 614.0, + 299.0, + 816.0, + 299.0, + 816.0, + 339.0, + 614.0, + 339.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 849.0, + 299.0, + 898.0, + 299.0, + 898.0, + 339.0, + 849.0, + 339.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 932.0, + 299.0, + 935.0, + 299.0, + 935.0, + 339.0, + 932.0, + 339.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 332.0, + 368.0, + 332.0, + 368.0, + 366.0, + 308.0, + 366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 722.0, + 332.0, + 784.0, + 332.0, + 784.0, + 366.0, + 722.0, + 366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 309.0, + 368.0, + 339.0, + 368.0, + 339.0, + 398.0, + 309.0, + 398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 381.0, + 364.0, + 576.0, + 364.0, + 576.0, + 405.0, + 381.0, + 405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 305.0, + 396.0, + 397.0, + 396.0, + 397.0, + 432.0, + 305.0, + 432.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 430.0, + 340.0, + 430.0, + 340.0, + 459.0, + 308.0, + 459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 381.0, + 428.0, + 497.0, + 428.0, + 497.0, + 460.0, + 381.0, + 460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 305.0, + 459.0, + 421.0, + 459.0, + 421.0, + 488.0, + 305.0, + 488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 535.0, + 1405.0, + 535.0, + 1405.0, + 573.0, + 295.0, + 573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 567.0, + 1405.0, + 567.0, + 1405.0, + 604.0, + 294.0, + 604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 599.0, + 1241.0, + 599.0, + 1241.0, + 633.0, + 295.0, + 633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 226.0, + 1407.0, + 226.0, + 1407.0, + 267.0, + 296.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 259.0, + 1270.0, + 259.0, + 1270.0, + 295.0, + 295.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 637.0, + 449.0, + 637.0, + 449.0, + 672.0, + 298.0, + 672.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 470.0, + 637.0, + 604.0, + 637.0, + 604.0, + 672.0, + 470.0, + 672.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 626.0, + 637.0, + 743.0, + 637.0, + 743.0, + 672.0, + 626.0, + 672.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 768.0, + 637.0, + 970.0, + 637.0, + 970.0, + 672.0, + 768.0, + 672.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1003.0, + 637.0, + 1051.0, + 637.0, + 1051.0, + 672.0, + 1003.0, + 672.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1084.0, + 637.0, + 1367.0, + 637.0, + 1367.0, + 672.0, + 1084.0, + 672.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 669.0, + 837.0, + 669.0, + 837.0, + 703.0, + 307.0, + 703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 698.0, + 362.0, + 698.0, + 362.0, + 734.0, + 307.0, + 734.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 851.0, + 698.0, + 912.0, + 698.0, + 912.0, + 734.0, + 851.0, + 734.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 968.0, + 702.0, + 1402.0, + 702.0, + 1402.0, + 732.0, + 968.0, + 732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 733.0, + 342.0, + 733.0, + 342.0, + 768.0, + 307.0, + 768.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 382.0, + 732.0, + 477.0, + 732.0, + 477.0, + 769.0, + 382.0, + 769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1095.0, + 736.0, + 1404.0, + 736.0, + 1404.0, + 766.0, + 1095.0, + 766.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 303.0, + 763.0, + 418.0, + 763.0, + 418.0, + 806.0, + 303.0, + 806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 616.0, + 763.0, + 680.0, + 763.0, + 680.0, + 806.0, + 616.0, + 806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 898.0, + 768.0, + 1405.0, + 768.0, + 1405.0, + 801.0, + 898.0, + 801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 799.0, + 339.0, + 799.0, + 339.0, + 830.0, + 308.0, + 830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 382.0, + 799.0, + 512.0, + 799.0, + 512.0, + 834.0, + 382.0, + 834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1040.0, + 800.0, + 1402.0, + 800.0, + 1402.0, + 830.0, + 1040.0, + 830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 333.0, + 828.0, + 397.0, + 828.0, + 397.0, + 862.0, + 333.0, + 862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 830.0, + 343.0, + 830.0, + 343.0, + 859.0, + 308.0, + 859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 305.0, + 858.0, + 342.0, + 858.0, + 342.0, + 892.0, + 305.0, + 892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 382.0, + 859.0, + 468.0, + 859.0, + 468.0, + 891.0, + 382.0, + 891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1048.0, + 859.0, + 1404.0, + 859.0, + 1404.0, + 893.0, + 1048.0, + 893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 302.0, + 887.0, + 423.0, + 887.0, + 423.0, + 922.0, + 302.0, + 922.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1068.0, + 334.0, + 1402.0, + 334.0, + 1402.0, + 365.0, + 1068.0, + 365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1026.0, + 369.0, + 1402.0, + 369.0, + 1402.0, + 398.0, + 1026.0, + 398.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 7, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 389, + 1403, + 389, + 1403, + 603, + 298, + 603 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 620, + 1404, + 620, + 1404, + 833, + 298, + 833 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 1268, + 1403, + 1268, + 1403, + 1421, + 298, + 1421 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 1069, + 1402, + 1069, + 1402, + 1253, + 298, + 1253 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 870, + 1403, + 870, + 1403, + 1053, + 298, + 1053 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 299, + 1436, + 1403, + 1436, + 1403, + 1621, + 299, + 1621 + ], + "score": 0.976 + }, + { + "category_id": 2, + "poly": [ + 299, + 1916, + 1405, + 1916, + 1405, + 2034, + 299, + 2034 + ], + "score": 0.956 + }, + { + "category_id": 1, + "poly": [ + 295, + 230, + 1399, + 230, + 1399, + 293, + 295, + 293 + ], + "score": 0.95 + }, + { + "category_id": 1, + "poly": [ + 296, + 1827, + 1399, + 1827, + 1399, + 1889, + 296, + 1889 + ], + "score": 0.941 + }, + { + "category_id": 0, + "poly": [ + 301, + 331, + 640, + 331, + 640, + 363, + 301, + 363 + ], + "score": 0.897 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 815, + 76, + 815, + 104, + 300, + 104 + ], + "score": 0.886 + }, + { + "category_id": 1, + "poly": [ + 301, + 1719, + 1402, + 1719, + 1402, + 1811, + 301, + 1811 + ], + "score": 0.835 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 858, + 2088, + 858, + 2111, + 840, + 2111 + ], + "score": 0.799 + }, + { + "category_id": 0, + "poly": [ + 296, + 1659, + 1019, + 1659, + 1019, + 1692, + 296, + 1692 + ], + "score": 0.585 + }, + { + "category_id": 0, + "poly": [ + 312, + 1660, + 1011, + 1660, + 1011, + 1692, + 312, + 1692 + ], + "score": 0.331 + }, + { + "category_id": 13, + "poly": [ + 807, + 1857, + 1135, + 1857, + 1135, + 1891, + 807, + 1891 + ], + "score": 0.93, + "latex": "M \\in \\{ 1 0 0 , 5 0 0 , 1 0 0 0 , 5 0 0 0 \\}" + }, + { + "category_id": 13, + "poly": [ + 1194, + 1588, + 1287, + 1588, + 1287, + 1618, + 1194, + 1618 + ], + "score": 0.9, + "latex": "6 \\cdot \\mathrm { i 0 ^ { - 5 } }" + }, + { + "category_id": 13, + "poly": [ + 1304, + 932, + 1402, + 932, + 1402, + 961, + 1304, + 961 + ], + "score": 0.88, + "latex": "2 8 \\times 2 8" + }, + { + "category_id": 13, + "poly": [ + 1164, + 1221, + 1218, + 1221, + 1218, + 1251, + 1164, + 1251 + ], + "score": 0.88, + "latex": "1 0 \\%" + }, + { + "category_id": 13, + "poly": [ + 631, + 1859, + 664, + 1859, + 664, + 1885, + 631, + 1885 + ], + "score": 0.81, + "latex": "M" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 1912.0, + 1319.0, + 1912.0, + 1319.0, + 1951.0, + 331.0, + 1951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 1941.0, + 1288.0, + 1941.0, + 1288.0, + 1982.0, + 328.0, + 1982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 1971.0, + 1405.0, + 1971.0, + 1405.0, + 2013.0, + 328.0, + 2013.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2004.0, + 1403.0, + 2004.0, + 1403.0, + 2038.0, + 295.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 329.0, + 642.0, + 329.0, + 642.0, + 366.0, + 295.0, + 366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2087.0, + 860.0, + 2087.0, + 860.0, + 2117.0, + 839.0, + 2117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1658.0, + 1023.0, + 1658.0, + 1023.0, + 1697.0, + 293.0, + 1697.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 306.0, + 1660.0, + 1017.0, + 1660.0, + 1017.0, + 1696.0, + 306.0, + 1696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 392.0, + 1404.0, + 392.0, + 1404.0, + 422.0, + 296.0, + 422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 420.0, + 1405.0, + 420.0, + 1405.0, + 453.0, + 294.0, + 453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 452.0, + 1405.0, + 452.0, + 1405.0, + 486.0, + 294.0, + 486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 480.0, + 1407.0, + 480.0, + 1407.0, + 518.0, + 293.0, + 518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 512.0, + 1407.0, + 512.0, + 1407.0, + 547.0, + 292.0, + 547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 540.0, + 1407.0, + 540.0, + 1407.0, + 581.0, + 292.0, + 581.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 573.0, + 875.0, + 573.0, + 875.0, + 605.0, + 293.0, + 605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 620.0, + 1404.0, + 620.0, + 1404.0, + 654.0, + 294.0, + 654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 652.0, + 1405.0, + 652.0, + 1405.0, + 682.0, + 296.0, + 682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 680.0, + 1405.0, + 680.0, + 1405.0, + 713.0, + 293.0, + 713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 713.0, + 1404.0, + 713.0, + 1404.0, + 744.0, + 296.0, + 744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 741.0, + 1404.0, + 741.0, + 1404.0, + 774.0, + 293.0, + 774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 773.0, + 1405.0, + 773.0, + 1405.0, + 806.0, + 292.0, + 806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 801.0, + 936.0, + 801.0, + 936.0, + 838.0, + 293.0, + 838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1265.0, + 1404.0, + 1265.0, + 1404.0, + 1304.0, + 294.0, + 1304.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1298.0, + 1408.0, + 1298.0, + 1408.0, + 1335.0, + 294.0, + 1335.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1330.0, + 1405.0, + 1330.0, + 1405.0, + 1363.0, + 296.0, + 1363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1358.0, + 1407.0, + 1358.0, + 1407.0, + 1400.0, + 292.0, + 1400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1392.0, + 1319.0, + 1392.0, + 1319.0, + 1425.0, + 294.0, + 1425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1068.0, + 1406.0, + 1068.0, + 1406.0, + 1104.0, + 294.0, + 1104.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1098.0, + 1406.0, + 1098.0, + 1406.0, + 1137.0, + 293.0, + 1137.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1132.0, + 1404.0, + 1132.0, + 1404.0, + 1164.0, + 296.0, + 1164.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1161.0, + 1406.0, + 1161.0, + 1406.0, + 1197.0, + 296.0, + 1197.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1190.0, + 1408.0, + 1190.0, + 1408.0, + 1227.0, + 292.0, + 1227.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1221.0, + 1163.0, + 1221.0, + 1163.0, + 1255.0, + 293.0, + 1255.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1219.0, + 1221.0, + 1352.0, + 1221.0, + 1352.0, + 1255.0, + 1219.0, + 1255.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 869.0, + 1405.0, + 869.0, + 1405.0, + 905.0, + 296.0, + 905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 900.0, + 1407.0, + 900.0, + 1407.0, + 937.0, + 292.0, + 937.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 931.0, + 1303.0, + 931.0, + 1303.0, + 967.0, + 293.0, + 967.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 962.0, + 1406.0, + 962.0, + 1406.0, + 996.0, + 292.0, + 996.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 991.0, + 1404.0, + 991.0, + 1404.0, + 1026.0, + 294.0, + 1026.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1021.0, + 1268.0, + 1021.0, + 1268.0, + 1056.0, + 296.0, + 1056.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 1438.0, + 1404.0, + 1438.0, + 1404.0, + 1470.0, + 298.0, + 1470.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1469.0, + 1405.0, + 1469.0, + 1405.0, + 1501.0, + 297.0, + 1501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1497.0, + 1405.0, + 1497.0, + 1405.0, + 1534.0, + 294.0, + 1534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1528.0, + 1407.0, + 1528.0, + 1407.0, + 1564.0, + 295.0, + 1564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1560.0, + 1405.0, + 1560.0, + 1405.0, + 1592.0, + 297.0, + 1592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1585.0, + 1193.0, + 1585.0, + 1193.0, + 1625.0, + 290.0, + 1625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1288.0, + 1585.0, + 1300.0, + 1585.0, + 1300.0, + 1625.0, + 1288.0, + 1625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 230.0, + 1403.0, + 230.0, + 1403.0, + 265.0, + 295.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 262.0, + 1345.0, + 262.0, + 1345.0, + 297.0, + 296.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1825.0, + 1404.0, + 1825.0, + 1404.0, + 1863.0, + 295.0, + 1863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1855.0, + 630.0, + 1855.0, + 630.0, + 1893.0, + 294.0, + 1893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 665.0, + 1855.0, + 806.0, + 1855.0, + 806.0, + 1893.0, + 665.0, + 1893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1136.0, + 1855.0, + 1403.0, + 1855.0, + 1403.0, + 1893.0, + 1136.0, + 1893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1718.0, + 1408.0, + 1718.0, + 1408.0, + 1755.0, + 295.0, + 1755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1748.0, + 1406.0, + 1748.0, + 1406.0, + 1784.0, + 295.0, + 1784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1782.0, + 1318.0, + 1782.0, + 1318.0, + 1815.0, + 297.0, + 1815.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 8, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 616, + 1403, + 616, + 1403, + 922, + 297, + 922 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 1184, + 1404, + 1184, + 1404, + 1491, + 298, + 1491 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 1724, + 1403, + 1724, + 1403, + 1938, + 298, + 1938 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 1525, + 1402, + 1525, + 1402, + 1708, + 298, + 1708 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 937, + 1403, + 937, + 1403, + 1091, + 298, + 1091 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 398, + 1404, + 398, + 1404, + 583, + 298, + 583 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 229, + 1402, + 229, + 1402, + 384, + 298, + 384 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 297, + 1972, + 1400, + 1972, + 1400, + 2033, + 297, + 2033 + ], + "score": 0.94 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 815, + 76, + 815, + 104, + 300, + 104 + ], + "score": 0.894 + }, + { + "category_id": 2, + "poly": [ + 837, + 2089, + 865, + 2089, + 865, + 2112, + 837, + 2112 + ], + "score": 0.845 + }, + { + "category_id": 0, + "poly": [ + 301, + 1127, + 1198, + 1127, + 1198, + 1159, + 301, + 1159 + ], + "score": 0.839 + }, + { + "category_id": 13, + "poly": [ + 989, + 768, + 1105, + 768, + 1105, + 802, + 989, + 802 + ], + "score": 0.93, + "latex": "\\exp ( - x ^ { 2 } )" + }, + { + "category_id": 13, + "poly": [ + 656, + 799, + 802, + 799, + 802, + 833, + 656, + 833 + ], + "score": 0.93, + "latex": "( \\dot { n _ { i ^ { * } } } - n _ { i } ) / \\sigma" + }, + { + "category_id": 13, + "poly": [ + 896, + 429, + 1010, + 429, + 1010, + 458, + 896, + 458 + ], + "score": 0.92, + "latex": "\\delta = \\bar { 1 0 } ^ { - 8 }" + }, + { + "category_id": 13, + "poly": [ + 1296, + 769, + 1400, + 769, + 1400, + 802, + 1296, + 802 + ], + "score": 0.92, + "latex": "\\exp ( - x )" + }, + { + "category_id": 13, + "poly": [ + 680, + 399, + 741, + 399, + 741, + 432, + 680, + 432 + ], + "score": 0.91, + "latex": "( \\varepsilon , \\delta )" + }, + { + "category_id": 13, + "poly": [ + 744, + 1429, + 805, + 1429, + 805, + 1463, + 744, + 1463 + ], + "score": 0.91, + "latex": "( \\varepsilon , \\delta )" + }, + { + "category_id": 13, + "poly": [ + 967, + 1816, + 1043, + 1816, + 1043, + 1845, + 967, + 1845 + ], + "score": 0.9, + "latex": "7 3 . 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 877, + 829, + 1090, + 829, + 1090, + 862, + 877, + 862 + ], + "score": 0.9, + "latex": "\\tilde { q } \\approx e ^ { - 1 6 } \\approx 1 0 ^ { - 7 }" + }, + { + "category_id": 13, + "poly": [ + 949, + 804, + 1043, + 804, + 1043, + 829, + 949, + 829 + ], + "score": 0.89, + "latex": "n _ { i ^ { * } } - n _ { i }" + }, + { + "category_id": 13, + "poly": [ + 380, + 1429, + 456, + 1429, + 456, + 1459, + 380, + 1459 + ], + "score": 0.89, + "latex": "8 2 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 297, + 828, + 526, + 828, + 526, + 862, + 297, + 862 + ], + "score": 0.89, + "latex": "\\tilde { q } \\approx e ^ { - 4 } = 0 . 0 1 8 . . ." + }, + { + "category_id": 13, + "poly": [ + 618, + 429, + 662, + 429, + 662, + 458, + 618, + 458 + ], + "score": 0.88, + "latex": "\\bar { 1 0 } ^ { 8 }" + }, + { + "category_id": 13, + "poly": [ + 1227, + 1368, + 1303, + 1368, + 1303, + 1399, + 1227, + 1399 + ], + "score": 0.88, + "latex": "8 \\bar { 5 } . 0 \\%" + }, + { + "category_id": 13, + "poly": [ + 346, + 1848, + 456, + 1848, + 456, + 1876, + 346, + 1876 + ], + "score": 0.88, + "latex": "\\varepsilon = 1 . 0 2" + }, + { + "category_id": 13, + "poly": [ + 375, + 1816, + 451, + 1816, + 451, + 1845, + 375, + 1845 + ], + "score": 0.86, + "latex": "8 2 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 346, + 1620, + 378, + 1620, + 378, + 1647, + 346, + 1647 + ], + "score": 0.85, + "latex": "\\sigma _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 852, + 771, + 870, + 771, + 870, + 802, + 852, + 802 + ], + "score": 0.84, + "latex": "\\tilde { q }" + }, + { + "category_id": 13, + "poly": [ + 1096, + 1368, + 1172, + 1368, + 1172, + 1399, + 1096, + 1399 + ], + "score": 0.84, + "latex": "9 2 . 8 \\%" + }, + { + "category_id": 13, + "poly": [ + 1125, + 862, + 1144, + 862, + 1144, + 893, + 1125, + 893 + ], + "score": 0.83, + "latex": "\\tilde { q }" + }, + { + "category_id": 13, + "poly": [ + 1012, + 1368, + 1086, + 1368, + 1086, + 1399, + 1012, + 1399 + ], + "score": 0.83, + "latex": "9 9 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 1133, + 802, + 1167, + 802, + 1167, + 828, + 1133, + 828 + ], + "score": 0.82, + "latex": "4 \\sigma" + }, + { + "category_id": 13, + "poly": [ + 1137, + 740, + 1154, + 740, + 1154, + 770, + 1137, + 770 + ], + "score": 0.8, + "latex": "\\tilde { q }" + }, + { + "category_id": 13, + "poly": [ + 506, + 1461, + 523, + 1461, + 523, + 1487, + 506, + 1487 + ], + "score": 0.78, + "latex": "\\delta" + }, + { + "category_id": 13, + "poly": [ + 604, + 465, + 622, + 465, + 622, + 488, + 604, + 488 + ], + "score": 0.77, + "latex": "\\varepsilon" + }, + { + "category_id": 13, + "poly": [ + 882, + 1061, + 915, + 1061, + 915, + 1087, + 882, + 1087 + ], + "score": 0.76, + "latex": "M" + }, + { + "category_id": 13, + "poly": [ + 1369, + 1590, + 1400, + 1590, + 1400, + 1618, + 1369, + 1618 + ], + "score": 0.76, + "latex": "\\sigma _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 562, + 895, + 583, + 895, + 583, + 918, + 562, + 918 + ], + "score": 0.75, + "latex": "\\sigma" + }, + { + "category_id": 13, + "poly": [ + 511, + 805, + 530, + 805, + 530, + 827, + 511, + 827 + ], + "score": 0.75, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 1154, + 232, + 1187, + 232, + 1187, + 259, + 1154, + 259 + ], + "score": 0.73, + "latex": "M" + }, + { + "category_id": 13, + "poly": [ + 1368, + 938, + 1401, + 938, + 1401, + 966, + 1368, + 966 + ], + "score": 0.72, + "latex": "M" + }, + { + "category_id": 13, + "poly": [ + 1384, + 1434, + 1402, + 1434, + 1402, + 1457, + 1384, + 1457 + ], + "score": 0.71, + "latex": "\\varepsilon" + }, + { + "category_id": 13, + "poly": [ + 1130, + 1003, + 1151, + 1003, + 1151, + 1027, + 1130, + 1027 + ], + "score": 0.7, + "latex": "\\sigma" + }, + { + "category_id": 13, + "poly": [ + 298, + 683, + 317, + 683, + 317, + 705, + 298, + 705 + ], + "score": 0.7, + "latex": "\\sigma" + }, + { + "category_id": 13, + "poly": [ + 1353, + 435, + 1370, + 435, + 1370, + 458, + 1353, + 458 + ], + "score": 0.69, + "latex": "\\varepsilon" + }, + { + "category_id": 13, + "poly": [ + 1333, + 1588, + 1357, + 1588, + 1357, + 1614, + 1333, + 1614 + ], + "score": 0.64, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 1026, + 262, + 1059, + 262, + 1059, + 289, + 1026, + 289 + ], + "score": 0.63, + "latex": "M" + }, + { + "category_id": 13, + "poly": [ + 810, + 1760, + 826, + 1760, + 826, + 1783, + 810, + 1783 + ], + "score": 0.63, + "latex": "\\varepsilon" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2124.0, + 832.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1125.0, + 1204.0, + 1125.0, + 1204.0, + 1164.0, + 294.0, + 1164.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 612.0, + 1407.0, + 612.0, + 1407.0, + 655.0, + 294.0, + 655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 647.0, + 1405.0, + 647.0, + 1405.0, + 683.0, + 295.0, + 683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 678.0, + 297.0, + 678.0, + 297.0, + 712.0, + 292.0, + 712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 678.0, + 1406.0, + 678.0, + 1406.0, + 712.0, + 318.0, + 712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 708.0, + 1405.0, + 708.0, + 1405.0, + 742.0, + 292.0, + 742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 736.0, + 1136.0, + 736.0, + 1136.0, + 775.0, + 292.0, + 775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1155.0, + 736.0, + 1408.0, + 736.0, + 1408.0, + 775.0, + 1155.0, + 775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 769.0, + 851.0, + 769.0, + 851.0, + 805.0, + 293.0, + 805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 871.0, + 769.0, + 988.0, + 769.0, + 988.0, + 805.0, + 871.0, + 805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1106.0, + 769.0, + 1295.0, + 769.0, + 1295.0, + 805.0, + 1106.0, + 805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 769.0, + 1404.0, + 769.0, + 1404.0, + 805.0, + 1401.0, + 805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 797.0, + 510.0, + 797.0, + 510.0, + 835.0, + 292.0, + 835.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 531.0, + 797.0, + 655.0, + 797.0, + 655.0, + 835.0, + 531.0, + 835.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 803.0, + 797.0, + 948.0, + 797.0, + 948.0, + 835.0, + 803.0, + 835.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1044.0, + 797.0, + 1132.0, + 797.0, + 1132.0, + 835.0, + 1044.0, + 835.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1168.0, + 797.0, + 1405.0, + 797.0, + 1405.0, + 835.0, + 1168.0, + 835.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 822.0, + 296.0, + 822.0, + 296.0, + 869.0, + 288.0, + 869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 527.0, + 822.0, + 876.0, + 822.0, + 876.0, + 869.0, + 527.0, + 869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1091.0, + 822.0, + 1410.0, + 822.0, + 1410.0, + 869.0, + 1091.0, + 869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 859.0, + 1124.0, + 859.0, + 1124.0, + 895.0, + 293.0, + 895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1145.0, + 859.0, + 1407.0, + 859.0, + 1407.0, + 895.0, + 1145.0, + 895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 891.0, + 561.0, + 891.0, + 561.0, + 925.0, + 292.0, + 925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 584.0, + 891.0, + 1056.0, + 891.0, + 1056.0, + 925.0, + 584.0, + 925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1184.0, + 1405.0, + 1184.0, + 1405.0, + 1221.0, + 295.0, + 1221.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1218.0, + 1404.0, + 1218.0, + 1404.0, + 1250.0, + 296.0, + 1250.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1246.0, + 1404.0, + 1246.0, + 1404.0, + 1280.0, + 293.0, + 1280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1275.0, + 1403.0, + 1275.0, + 1403.0, + 1313.0, + 293.0, + 1313.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1302.0, + 1406.0, + 1302.0, + 1406.0, + 1346.0, + 292.0, + 1346.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1339.0, + 1406.0, + 1339.0, + 1406.0, + 1374.0, + 294.0, + 1374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1369.0, + 1011.0, + 1369.0, + 1011.0, + 1401.0, + 296.0, + 1401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1087.0, + 1369.0, + 1095.0, + 1369.0, + 1095.0, + 1401.0, + 1087.0, + 1401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1173.0, + 1369.0, + 1226.0, + 1369.0, + 1226.0, + 1401.0, + 1173.0, + 1401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1304.0, + 1369.0, + 1405.0, + 1369.0, + 1405.0, + 1401.0, + 1304.0, + 1401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1399.0, + 1405.0, + 1399.0, + 1405.0, + 1434.0, + 294.0, + 1434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1428.0, + 379.0, + 1428.0, + 379.0, + 1466.0, + 293.0, + 1466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 457.0, + 1428.0, + 743.0, + 1428.0, + 743.0, + 1466.0, + 457.0, + 1466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 806.0, + 1428.0, + 1383.0, + 1428.0, + 1383.0, + 1466.0, + 806.0, + 1466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1403.0, + 1428.0, + 1406.0, + 1428.0, + 1406.0, + 1466.0, + 1403.0, + 1466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1457.0, + 505.0, + 1457.0, + 505.0, + 1495.0, + 293.0, + 1495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 524.0, + 1457.0, + 1045.0, + 1457.0, + 1045.0, + 1495.0, + 524.0, + 1495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1721.0, + 1404.0, + 1721.0, + 1404.0, + 1760.0, + 292.0, + 1760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1754.0, + 809.0, + 1754.0, + 809.0, + 1792.0, + 293.0, + 1792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 827.0, + 1754.0, + 1404.0, + 1754.0, + 1404.0, + 1792.0, + 827.0, + 1792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1783.0, + 1405.0, + 1783.0, + 1405.0, + 1819.0, + 293.0, + 1819.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1816.0, + 374.0, + 1816.0, + 374.0, + 1851.0, + 293.0, + 1851.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 452.0, + 1816.0, + 966.0, + 1816.0, + 966.0, + 1851.0, + 452.0, + 1851.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1044.0, + 1816.0, + 1405.0, + 1816.0, + 1405.0, + 1851.0, + 1044.0, + 1851.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1847.0, + 345.0, + 1847.0, + 345.0, + 1881.0, + 293.0, + 1881.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 457.0, + 1847.0, + 1405.0, + 1847.0, + 1405.0, + 1881.0, + 457.0, + 1881.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1878.0, + 1405.0, + 1878.0, + 1405.0, + 1912.0, + 293.0, + 1912.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1907.0, + 435.0, + 1907.0, + 435.0, + 1939.0, + 293.0, + 1939.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1523.0, + 1406.0, + 1523.0, + 1406.0, + 1561.0, + 294.0, + 1561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1557.0, + 1404.0, + 1557.0, + 1404.0, + 1589.0, + 294.0, + 1589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1584.0, + 1332.0, + 1584.0, + 1332.0, + 1625.0, + 292.0, + 1625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1358.0, + 1584.0, + 1368.0, + 1584.0, + 1368.0, + 1625.0, + 1358.0, + 1625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 1584.0, + 1406.0, + 1584.0, + 1406.0, + 1625.0, + 1401.0, + 1625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1613.0, + 345.0, + 1613.0, + 345.0, + 1654.0, + 292.0, + 1654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 379.0, + 1613.0, + 1406.0, + 1613.0, + 1406.0, + 1654.0, + 379.0, + 1654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1646.0, + 1406.0, + 1646.0, + 1406.0, + 1681.0, + 294.0, + 1681.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1680.0, + 891.0, + 1680.0, + 891.0, + 1711.0, + 297.0, + 1711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 937.0, + 1367.0, + 937.0, + 1367.0, + 970.0, + 296.0, + 970.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 965.0, + 1405.0, + 965.0, + 1405.0, + 1005.0, + 293.0, + 1005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 997.0, + 1129.0, + 997.0, + 1129.0, + 1034.0, + 293.0, + 1034.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1152.0, + 997.0, + 1405.0, + 997.0, + 1405.0, + 1034.0, + 1152.0, + 1034.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1026.0, + 1405.0, + 1026.0, + 1405.0, + 1067.0, + 293.0, + 1067.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1056.0, + 881.0, + 1056.0, + 881.0, + 1096.0, + 293.0, + 1096.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 916.0, + 1056.0, + 1054.0, + 1056.0, + 1054.0, + 1096.0, + 916.0, + 1096.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 396.0, + 679.0, + 396.0, + 679.0, + 435.0, + 293.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 742.0, + 396.0, + 1406.0, + 396.0, + 1406.0, + 435.0, + 742.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 423.0, + 617.0, + 423.0, + 617.0, + 466.0, + 291.0, + 466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 663.0, + 423.0, + 895.0, + 423.0, + 895.0, + 466.0, + 663.0, + 466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1011.0, + 423.0, + 1352.0, + 423.0, + 1352.0, + 466.0, + 1011.0, + 466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1371.0, + 423.0, + 1408.0, + 423.0, + 1408.0, + 466.0, + 1371.0, + 466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 461.0, + 603.0, + 461.0, + 603.0, + 493.0, + 296.0, + 493.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 623.0, + 461.0, + 1404.0, + 461.0, + 1404.0, + 493.0, + 623.0, + 493.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 489.0, + 1406.0, + 489.0, + 1406.0, + 524.0, + 293.0, + 524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 522.0, + 1405.0, + 522.0, + 1405.0, + 554.0, + 296.0, + 554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 549.0, + 764.0, + 549.0, + 764.0, + 589.0, + 292.0, + 589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 231.0, + 1153.0, + 231.0, + 1153.0, + 264.0, + 296.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1188.0, + 231.0, + 1404.0, + 231.0, + 1404.0, + 264.0, + 1188.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 261.0, + 1025.0, + 261.0, + 1025.0, + 295.0, + 296.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1060.0, + 261.0, + 1404.0, + 261.0, + 1404.0, + 295.0, + 1060.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 289.0, + 1407.0, + 289.0, + 1407.0, + 328.0, + 292.0, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 321.0, + 1406.0, + 321.0, + 1406.0, + 356.0, + 293.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 350.0, + 1374.0, + 350.0, + 1374.0, + 389.0, + 293.0, + 389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1970.0, + 1404.0, + 1970.0, + 1404.0, + 2008.0, + 293.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 2002.0, + 1404.0, + 2002.0, + 1404.0, + 2038.0, + 296.0, + 2038.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 9, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 307, + 1277, + 1386, + 1277, + 1386, + 1740, + 307, + 1740 + ], + "score": 0.984, + "html": "
DatasetAggregatorQueriesansweredPrivacybound ε Accuracy Student Baseline
MNISTLNMax (Papernot et al., 2017)1002.0498.0%99.2%
LNMax (Papernot et al., 2017)1,0008.0398.1%
Confident-GNMax (T=200,σ1=150,σ2=40)2861.9798.5%
SVHNLNMax (Papernot et al., 2017)5005.0482.7%92.8%
LNMax (Papernot et al., 2017)1,0008.1990.7%
Confident-GNMax (T=300,σ1=200,σ2=40)3,0984.9691.6%
AdultLNMax (Papernot et al., 2017)5002.6683.0%85.0%
Confident-GNMax (T=300,σ1=200,σ2=40)5241.9083.7%
GlyphLNMax4,0004.372.4%82.2%
Confident-GNMax (T=1000,σ1=500,σ2=100)10,7622.0375.5%
Interactive-GNMax, two rounds4,3410.83773.2%
" + }, + { + "category_id": 4, + "poly": [ + 296, + 1035, + 1407, + 1035, + 1407, + 1161, + 296, + 1161 + ], + "score": 0.962 + }, + { + "category_id": 3, + "poly": [ + 315, + 275, + 1388, + 275, + 1388, + 396, + 315, + 396 + ], + "score": 0.935 + }, + { + "category_id": 4, + "poly": [ + 291, + 425, + 1401, + 425, + 1401, + 490, + 291, + 490 + ], + "score": 0.929 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 815, + 76, + 815, + 105, + 299, + 105 + ], + "score": 0.894 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 863, + 2088, + 863, + 2113, + 836, + 2113 + ], + "score": 0.851 + }, + { + "category_id": 3, + "poly": [ + 307, + 645, + 1355, + 645, + 1355, + 1015, + 307, + 1015 + ], + "score": 0.711 + }, + { + "category_id": 6, + "poly": [ + 296, + 1762, + 1405, + 1762, + 1405, + 1979, + 296, + 1979 + ], + "score": 0.354 + }, + { + "category_id": 13, + "poly": [ + 924, + 1945, + 1032, + 1945, + 1032, + 1975, + 924, + 1975 + ], + "score": 0.92, + "latex": "\\delta = 1 0 ^ { - 8 }" + }, + { + "category_id": 13, + "poly": [ + 334, + 1914, + 444, + 1914, + 444, + 1944, + 334, + 1944 + ], + "score": 0.91, + "latex": "\\delta = 1 0 ^ { - 5 }" + }, + { + "category_id": 13, + "poly": [ + 1076, + 1914, + 1187, + 1914, + 1187, + 1945, + 1076, + 1945 + ], + "score": 0.89, + "latex": "\\dot { \\delta _ { \\mathrm { } } } = 1 \\dot { 0 } ^ { - 6 }" + }, + { + "category_id": 13, + "poly": [ + 1252, + 988, + 1333, + 988, + 1333, + 1012, + 1252, + 1012 + ], + "score": 0.88, + "latex": "\\delta = 1 0 ^ { - 8 }" + }, + { + "category_id": 13, + "poly": [ + 1168, + 1646, + 1234, + 1646, + 1234, + 1664, + 1168, + 1664 + ], + "score": 0.87, + "latex": "7 2 . 4 \\%" + }, + { + "category_id": 13, + "poly": [ + 1169, + 1466, + 1233, + 1466, + 1233, + 1484, + 1169, + 1484 + ], + "score": 0.86, + "latex": "8 2 . 7 \\%" + }, + { + "category_id": 13, + "poly": [ + 1166, + 1533, + 1234, + 1533, + 1234, + 1551, + 1166, + 1551 + ], + "score": 0.85, + "latex": "9 1 . 6 \\%" + }, + { + "category_id": 13, + "poly": [ + 722, + 989, + 804, + 989, + 804, + 1013, + 722, + 1013 + ], + "score": 0.85, + "latex": "\\delta = 1 0 ^ { - 8 }" + }, + { + "category_id": 13, + "poly": [ + 1166, + 1426, + 1234, + 1426, + 1234, + 1445, + 1166, + 1445 + ], + "score": 0.84, + "latex": "9 8 . 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 1169, + 1573, + 1233, + 1573, + 1233, + 1592, + 1169, + 1592 + ], + "score": 0.83, + "latex": "8 3 . 0 \\%" + }, + { + "category_id": 13, + "poly": [ + 1168, + 1499, + 1234, + 1499, + 1234, + 1517, + 1168, + 1517 + ], + "score": 0.83, + "latex": "9 0 . 7 \\%" + }, + { + "category_id": 13, + "poly": [ + 1166, + 1606, + 1234, + 1606, + 1234, + 1624, + 1166, + 1624 + ], + "score": 0.82, + "latex": "8 3 . 7 \\%" + }, + { + "category_id": 13, + "poly": [ + 1168, + 1393, + 1234, + 1393, + 1234, + 1412, + 1168, + 1412 + ], + "score": 0.82, + "latex": "9 8 . 1 \\%" + }, + { + "category_id": 13, + "poly": [ + 1166, + 1676, + 1234, + 1676, + 1234, + 1698, + 1166, + 1698 + ], + "score": 0.81, + "latex": "7 5 . 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 1168, + 1356, + 1234, + 1356, + 1234, + 1379, + 1168, + 1379 + ], + "score": 0.8, + "latex": "9 8 . 0 \\%" + }, + { + "category_id": 13, + "poly": [ + 1167, + 1706, + 1235, + 1706, + 1235, + 1732, + 1167, + 1732 + ], + "score": 0.8, + "latex": "7 3 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 722, + 1952, + 739, + 1952, + 739, + 1974, + 722, + 1974 + ], + "score": 0.76, + "latex": "\\varepsilon" + }, + { + "category_id": 13, + "poly": [ + 786, + 1605, + 845, + 1605, + 845, + 1627, + 786, + 1627 + ], + "score": 0.75, + "latex": "\\sigma _ { 2 } { = } 4 0" + }, + { + "category_id": 13, + "poly": [ + 710, + 1604, + 779, + 1604, + 779, + 1628, + 710, + 1628 + ], + "score": 0.74, + "latex": "\\sigma _ { 1 } = 2 0 0" + }, + { + "category_id": 13, + "poly": [ + 710, + 1424, + 778, + 1424, + 778, + 1448, + 710, + 1448 + ], + "score": 0.73, + "latex": "\\sigma _ { 1 } { = } 1 5 0" + }, + { + "category_id": 13, + "poly": [ + 683, + 1920, + 699, + 1920, + 699, + 1943, + 683, + 1943 + ], + "score": 0.73, + "latex": "\\varepsilon" + }, + { + "category_id": 13, + "poly": [ + 710, + 1531, + 778, + 1531, + 778, + 1554, + 710, + 1554 + ], + "score": 0.72, + "latex": "\\sigma _ { 1 } = 2 0 0" + }, + { + "category_id": 13, + "poly": [ + 1384, + 1104, + 1401, + 1104, + 1401, + 1125, + 1384, + 1125 + ], + "score": 0.71, + "latex": "\\varepsilon" + }, + { + "category_id": 13, + "poly": [ + 786, + 1425, + 846, + 1425, + 846, + 1447, + 786, + 1447 + ], + "score": 0.7, + "latex": "\\sigma _ { 2 } { = } 4 0" + }, + { + "category_id": 13, + "poly": [ + 796, + 1133, + 815, + 1133, + 815, + 1155, + 796, + 1155 + ], + "score": 0.7, + "latex": "\\sigma" + }, + { + "category_id": 13, + "poly": [ + 640, + 1424, + 702, + 1424, + 702, + 1447, + 640, + 1447 + ], + "score": 0.67, + "latex": "\\scriptstyle { T = 2 0 0 }" + }, + { + "category_id": 13, + "poly": [ + 786, + 1532, + 845, + 1532, + 845, + 1554, + 786, + 1554 + ], + "score": 0.66, + "latex": "\\sigma _ { 2 } = 4 0" + }, + { + "category_id": 13, + "poly": [ + 721, + 1677, + 790, + 1677, + 790, + 1701, + 721, + 1701 + ], + "score": 0.65, + "latex": "\\sigma _ { 1 } { = } 5 0 0" + }, + { + "category_id": 13, + "poly": [ + 1286, + 1671, + 1354, + 1671, + 1354, + 1698, + 1286, + 1698 + ], + "score": 0.65, + "latex": "8 2 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 1287, + 1587, + 1353, + 1587, + 1353, + 1607, + 1287, + 1607 + ], + "score": 0.64, + "latex": "8 5 . 0 \\%" + }, + { + "category_id": 13, + "poly": [ + 641, + 1604, + 702, + 1604, + 702, + 1627, + 641, + 1627 + ], + "score": 0.63, + "latex": "\\scriptstyle { T = 3 0 0 }" + }, + { + "category_id": 13, + "poly": [ + 1285, + 1385, + 1354, + 1385, + 1354, + 1412, + 1285, + 1412 + ], + "score": 0.62, + "latex": "9 9 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 640, + 1531, + 701, + 1531, + 701, + 1554, + 640, + 1554 + ], + "score": 0.6, + "latex": "\\scriptstyle { T = 3 0 0 }" + }, + { + "category_id": 13, + "poly": [ + 371, + 1830, + 389, + 1830, + 389, + 1853, + 371, + 1853 + ], + "score": 0.55, + "latex": "\\varepsilon" + }, + { + "category_id": 13, + "poly": [ + 1287, + 1497, + 1353, + 1497, + 1353, + 1517, + 1287, + 1517 + ], + "score": 0.49, + "latex": "9 2 . 8 \\%" + }, + { + "category_id": 13, + "poly": [ + 798, + 1678, + 871, + 1678, + 871, + 1700, + 798, + 1700 + ], + "score": 0.44, + "latex": "\\sigma _ { 2 } { = } 1 0 0 )" + }, + { + "category_id": 13, + "poly": [ + 492, + 884, + 587, + 884, + 587, + 905, + 492, + 905 + ], + "score": 0.31, + "latex": "\\nsim \\_ 1 0 0 0" + }, + { + "category_id": 13, + "poly": [ + 640, + 1677, + 713, + 1677, + 713, + 1700, + 640, + 1700 + ], + "score": 0.31, + "latex": "\\scriptstyle { T = 1 0 0 0 }" + }, + { + "category_id": 13, + "poly": [ + 617, + 992, + 631, + 992, + 631, + 1011, + 617, + 1011 + ], + "score": 0.31, + "latex": "\\cdot \\varepsilon" + }, + { + "category_id": 13, + "poly": [ + 492, + 909, + 587, + 909, + 587, + 930, + 492, + 930 + ], + "score": 0.26, + "latex": "- \\ast - \\_ 1 0 0 0" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1036.0, + 1407.0, + 1036.0, + 1407.0, + 1072.0, + 294.0, + 1072.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1066.0, + 1404.0, + 1066.0, + 1404.0, + 1099.0, + 295.0, + 1099.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1098.0, + 1383.0, + 1098.0, + 1383.0, + 1134.0, + 291.0, + 1134.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 1098.0, + 1407.0, + 1098.0, + 1407.0, + 1134.0, + 1402.0, + 1134.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1130.0, + 795.0, + 1130.0, + 795.0, + 1163.0, + 295.0, + 1163.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 816.0, + 1130.0, + 1347.0, + 1130.0, + 1347.0, + 1163.0, + 816.0, + 1163.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 258.0, + 1404.0, + 258.0, + 1404.0, + 398.0, + 296.0, + 398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 423.0, + 1406.0, + 423.0, + 1406.0, + 464.0, + 293.0, + 464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 456.0, + 1223.0, + 456.0, + 1223.0, + 492.0, + 294.0, + 492.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 71.0, + 817.0, + 71.0, + 817.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2125.0, + 832.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 648.0, + 369.0, + 648.0, + 369.0, + 670.0, + 332.0, + 670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 893.0, + 648.0, + 929.0, + 648.0, + 929.0, + 670.0, + 893.0, + 670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 302.0, + 660.0, + 341.0, + 660.0, + 341.0, + 963.0, + 302.0, + 963.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 867.0, + 662.0, + 902.0, + 662.0, + 902.0, + 962.0, + 867.0, + 962.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 609.0, + 684.0, + 682.0, + 684.0, + 682.0, + 717.0, + 609.0, + 717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 763.0, + 684.0, + 823.0, + 684.0, + 823.0, + 713.0, + 763.0, + 713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 504.0, + 685.0, + 575.0, + 685.0, + 575.0, + 714.0, + 504.0, + 714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 975.0, + 700.0, + 1328.0, + 700.0, + 1328.0, + 716.0, + 975.0, + 716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1324.0, + 704.0, + 1336.0, + 704.0, + 1336.0, + 714.0, + 1324.0, + 714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 416.0, + 715.0, + 635.0, + 715.0, + 635.0, + 767.0, + 416.0, + 767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 726.0, + 717.0, + 790.0, + 717.0, + 790.0, + 747.0, + 726.0, + 747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 899.0, + 709.0, + 929.0, + 709.0, + 929.0, + 732.0, + 899.0, + 732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1015.0, + 738.0, + 1024.0, + 738.0, + 1024.0, + 748.0, + 1015.0, + 748.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1073.0, + 714.0, + 1085.0, + 714.0, + 1085.0, + 724.0, + 1073.0, + 724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1137.0, + 721.0, + 1149.0, + 721.0, + 1149.0, + 732.0, + 1137.0, + 732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1173.0, + 714.0, + 1184.0, + 714.0, + 1184.0, + 725.0, + 1173.0, + 725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1309.0, + 713.0, + 1321.0, + 713.0, + 1321.0, + 724.0, + 1309.0, + 724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 408.0, + 749.0, + 417.0, + 749.0, + 417.0, + 758.0, + 408.0, + 758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 337.0, + 770.0, + 369.0, + 770.0, + 369.0, + 793.0, + 337.0, + 793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 407.0, + 755.0, + 486.0, + 755.0, + 486.0, + 784.0, + 407.0, + 784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 899.0, + 771.0, + 933.0, + 771.0, + 933.0, + 793.0, + 899.0, + 793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 551.0, + 781.0, + 631.0, + 781.0, + 631.0, + 813.0, + 551.0, + 813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 545.0, + 795.0, + 562.0, + 795.0, + 562.0, + 808.0, + 545.0, + 808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 934.0, + 823.0, + 943.0, + 823.0, + 943.0, + 834.0, + 934.0, + 834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 337.0, + 832.0, + 369.0, + 832.0, + 369.0, + 856.0, + 337.0, + 856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 899.0, + 832.0, + 930.0, + 832.0, + 930.0, + 854.0, + 899.0, + 854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1099.0, + 830.0, + 1312.0, + 830.0, + 1312.0, + 861.0, + 1099.0, + 861.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 484.0, + 848.0, + 575.0, + 848.0, + 575.0, + 881.0, + 484.0, + 881.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1099.0, + 854.0, + 1313.0, + 854.0, + 1313.0, + 885.0, + 1099.0, + 885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 338.0, + 895.0, + 368.0, + 895.0, + 368.0, + 917.0, + 338.0, + 917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 588.0, + 879.0, + 760.0, + 879.0, + 760.0, + 934.0, + 588.0, + 934.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 902.0, + 896.0, + 928.0, + 896.0, + 928.0, + 914.0, + 902.0, + 914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1097.0, + 878.0, + 1323.0, + 878.0, + 1323.0, + 935.0, + 1097.0, + 935.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 496.0, + 929.0, + 777.0, + 929.0, + 777.0, + 956.0, + 496.0, + 956.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1075.0, + 938.0, + 1094.0, + 938.0, + 1094.0, + 946.0, + 1075.0, + 946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1099.0, + 929.0, + 1337.0, + 929.0, + 1337.0, + 956.0, + 1099.0, + 956.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 442.0, + 967.0, + 460.0, + 967.0, + 460.0, + 989.0, + 442.0, + 989.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 521.0, + 966.0, + 549.0, + 966.0, + 549.0, + 990.0, + 521.0, + 990.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 604.0, + 960.0, + 632.0, + 960.0, + 632.0, + 993.0, + 604.0, + 993.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 687.0, + 966.0, + 715.0, + 966.0, + 715.0, + 992.0, + 687.0, + 992.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 774.0, + 968.0, + 796.0, + 968.0, + 796.0, + 989.0, + 774.0, + 989.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 906.0, + 955.0, + 937.0, + 955.0, + 937.0, + 989.0, + 906.0, + 989.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1004.0, + 971.0, + 1019.0, + 971.0, + 1019.0, + 988.0, + 1004.0, + 988.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1082.0, + 966.0, + 1110.0, + 966.0, + 1110.0, + 992.0, + 1082.0, + 992.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1167.0, + 965.0, + 1192.0, + 965.0, + 1192.0, + 992.0, + 1167.0, + 992.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1250.0, + 966.0, + 1276.0, + 966.0, + 1276.0, + 992.0, + 1250.0, + 992.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1333.0, + 967.0, + 1358.0, + 967.0, + 1358.0, + 992.0, + 1333.0, + 992.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 335.0, + 985.0, + 616.0, + 985.0, + 616.0, + 1015.0, + 335.0, + 1015.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 632.0, + 985.0, + 721.0, + 985.0, + 721.0, + 1015.0, + 632.0, + 1015.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 805.0, + 985.0, + 815.0, + 985.0, + 815.0, + 1015.0, + 805.0, + 1015.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 928.0, + 986.0, + 1251.0, + 986.0, + 1251.0, + 1015.0, + 928.0, + 1015.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1334.0, + 986.0, + 1345.0, + 986.0, + 1345.0, + 1015.0, + 1334.0, + 1015.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 334.0, + 703.5, + 444.0, + 703.5, + 444.0, + 730.5, + 334.0, + 730.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 359.0, + 960.5, + 366.0, + 960.5, + 366.0, + 981.5, + 359.0, + 981.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1760.0, + 1405.0, + 1760.0, + 1405.0, + 1799.0, + 294.0, + 1799.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1794.0, + 1405.0, + 1794.0, + 1405.0, + 1828.0, + 294.0, + 1828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1823.0, + 370.0, + 1823.0, + 370.0, + 1858.0, + 294.0, + 1858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 390.0, + 1823.0, + 1405.0, + 1823.0, + 1405.0, + 1858.0, + 390.0, + 1858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1854.0, + 1405.0, + 1854.0, + 1405.0, + 1889.0, + 293.0, + 1889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1884.0, + 1405.0, + 1884.0, + 1405.0, + 1919.0, + 294.0, + 1919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1913.0, + 333.0, + 1913.0, + 333.0, + 1951.0, + 293.0, + 1951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 445.0, + 1913.0, + 682.0, + 1913.0, + 682.0, + 1951.0, + 445.0, + 1951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 700.0, + 1913.0, + 1075.0, + 1913.0, + 1075.0, + 1951.0, + 700.0, + 1951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1188.0, + 1913.0, + 1406.0, + 1913.0, + 1406.0, + 1951.0, + 1188.0, + 1951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1945.0, + 721.0, + 1945.0, + 721.0, + 1979.0, + 291.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 740.0, + 1945.0, + 923.0, + 1945.0, + 923.0, + 1979.0, + 740.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1033.0, + 1945.0, + 1043.0, + 1945.0, + 1043.0, + 1979.0, + 1033.0, + 1979.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 10, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1026, + 1404, + 1026, + 1404, + 1302, + 298, + 1302 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 1350, + 1404, + 1350, + 1404, + 1596, + 298, + 1596 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 1850, + 1402, + 1850, + 1402, + 2034, + 298, + 2034 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 299, + 1711, + 1402, + 1711, + 1402, + 1835, + 299, + 1835 + ], + "score": 0.974 + }, + { + "category_id": 3, + "poly": [ + 300, + 224, + 1386, + 224, + 1386, + 631, + 300, + 631 + ], + "score": 0.967 + }, + { + "category_id": 1, + "poly": [ + 299, + 918, + 1401, + 918, + 1401, + 1010, + 299, + 1010 + ], + "score": 0.96 + }, + { + "category_id": 4, + "poly": [ + 296, + 660, + 1404, + 660, + 1404, + 845, + 296, + 845 + ], + "score": 0.953 + }, + { + "category_id": 2, + "poly": [ + 298, + 76, + 814, + 76, + 814, + 104, + 298, + 104 + ], + "score": 0.889 + }, + { + "category_id": 0, + "poly": [ + 298, + 1648, + 964, + 1648, + 964, + 1680, + 298, + 1680 + ], + "score": 0.859 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2112, + 836, + 2112 + ], + "score": 0.841 + }, + { + "category_id": 4, + "poly": [ + 296, + 659, + 1405, + 659, + 1405, + 844, + 296, + 844 + ], + "score": 0.216 + }, + { + "category_id": 13, + "poly": [ + 861, + 754, + 956, + 754, + 956, + 783, + 861, + 783 + ], + "score": 0.9, + "latex": "\\sigma _ { 2 } { = } 1 0 0" + }, + { + "category_id": 13, + "poly": [ + 848, + 1241, + 1045, + 1241, + 1045, + 1270, + 848, + 1270 + ], + "score": 0.9, + "latex": "0 . 5 9 \\times 2 = 1 . 1 8" + }, + { + "category_id": 13, + "poly": [ + 473, + 1149, + 584, + 1149, + 584, + 1178, + 473, + 1178 + ], + "score": 0.89, + "latex": "\\varepsilon = 0 . 8 4" + }, + { + "category_id": 13, + "poly": [ + 409, + 723, + 512, + 723, + 512, + 754, + 409, + 754 + ], + "score": 0.87, + "latex": "\\sigma _ { 1 } { = } 1 5 0 0" + }, + { + "category_id": 13, + "poly": [ + 885, + 693, + 988, + 693, + 988, + 723, + 885, + 723 + ], + "score": 0.87, + "latex": "\\sigma _ { 1 } { = } 1 5 0 0" + }, + { + "category_id": 13, + "poly": [ + 437, + 981, + 539, + 981, + 539, + 1010, + 437, + 1010 + ], + "score": 0.87, + "latex": "\\varepsilon \\approx 0 . 5 9" + }, + { + "category_id": 13, + "poly": [ + 1045, + 1149, + 1121, + 1149, + 1121, + 1178, + 1045, + 1178 + ], + "score": 0.87, + "latex": "7 3 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 754, + 1058, + 842, + 1058, + 842, + 1089, + 754, + 1089 + ], + "score": 0.86, + "latex": "\\sigma _ { 2 } { = } 2 0 0" + }, + { + "category_id": 13, + "poly": [ + 859, + 1474, + 915, + 1474, + 915, + 1504, + 859, + 1504 + ], + "score": 0.86, + "latex": "7 7 \\%" + }, + { + "category_id": 13, + "poly": [ + 1337, + 1946, + 1369, + 1946, + 1369, + 1973, + 1337, + 1973 + ], + "score": 0.85, + "latex": "\\sigma _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 644, + 1058, + 745, + 1058, + 745, + 1089, + 644, + 1089 + ], + "score": 0.85, + "latex": "\\sigma _ { 1 } { = } 2 0 0 0" + }, + { + "category_id": 13, + "poly": [ + 1352, + 1884, + 1399, + 1884, + 1399, + 1913, + 1352, + 1913 + ], + "score": 0.84, + "latex": "( n _ { i ^ { * } }" + }, + { + "category_id": 13, + "poly": [ + 307, + 723, + 401, + 723, + 401, + 753, + 307, + 753 + ], + "score": 0.83, + "latex": "{ T } \\mathrm { { = } } 5 0 0 0" + }, + { + "category_id": 13, + "poly": [ + 783, + 692, + 877, + 692, + 877, + 722, + 783, + 722 + ], + "score": 0.83, + "latex": "\\scriptstyle { T = 3 5 0 0 }" + }, + { + "category_id": 13, + "poly": [ + 1256, + 1943, + 1281, + 1943, + 1281, + 1970, + 1256, + 1970 + ], + "score": 0.78, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 1076, + 950, + 1176, + 950, + 1176, + 981, + 1076, + 981 + ], + "score": 0.78, + "latex": "\\sigma _ { 1 } { = } 1 5 0 0" + }, + { + "category_id": 13, + "poly": [ + 974, + 950, + 1066, + 950, + 1066, + 980, + 974, + 980 + ], + "score": 0.78, + "latex": "\\scriptstyle { T = 3 5 0 0 }" + }, + { + "category_id": 13, + "poly": [ + 542, + 1058, + 635, + 1058, + 635, + 1088, + 542, + 1088 + ], + "score": 0.76, + "latex": "\\scriptstyle { T = 3 5 0 0 }" + }, + { + "category_id": 13, + "poly": [ + 1185, + 951, + 1274, + 951, + 1274, + 981, + 1185, + 981 + ], + "score": 0.75, + "latex": "\\sigma _ { 2 } { = } 1 0 0 " + }, + { + "category_id": 13, + "poly": [ + 692, + 1245, + 710, + 1245, + 710, + 1268, + 692, + 1268 + ], + "score": 0.74, + "latex": "\\varepsilon" + }, + { + "category_id": 13, + "poly": [ + 1354, + 1779, + 1371, + 1779, + 1371, + 1801, + 1354, + 1801 + ], + "score": 0.74, + "latex": "\\varepsilon" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 228.0, + 397.0, + 228.0, + 397.0, + 257.0, + 328.0, + 257.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 991.0, + 228.0, + 1044.0, + 228.0, + 1044.0, + 258.0, + 991.0, + 258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 648.0, + 246.0, + 656.0, + 246.0, + 656.0, + 256.0, + 648.0, + 256.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1089.0, + 249.0, + 1160.0, + 249.0, + 1160.0, + 282.0, + 1089.0, + 282.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 450.0, + 252.0, + 621.0, + 252.0, + 621.0, + 286.0, + 450.0, + 286.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 402.0, + 258.0, + 416.0, + 258.0, + 416.0, + 267.0, + 402.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 301.0, + 259.0, + 335.0, + 259.0, + 335.0, + 559.0, + 301.0, + 559.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1053.0, + 261.0, + 1069.0, + 261.0, + 1069.0, + 274.0, + 1053.0, + 274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1065.0, + 262.0, + 1081.0, + 262.0, + 1081.0, + 272.0, + 1065.0, + 272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 692.0, + 267.0, + 705.0, + 267.0, + 705.0, + 278.0, + 692.0, + 278.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 399.0, + 269.0, + 427.0, + 269.0, + 427.0, + 282.0, + 399.0, + 282.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1089.0, + 274.0, + 1347.0, + 274.0, + 1347.0, + 306.0, + 1089.0, + 306.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 453.0, + 280.0, + 641.0, + 280.0, + 641.0, + 314.0, + 453.0, + 314.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 960.0, + 281.0, + 985.0, + 281.0, + 985.0, + 307.0, + 960.0, + 307.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 282.0, + 387.0, + 282.0, + 387.0, + 313.0, + 329.0, + 313.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 917.0, + 286.0, + 941.0, + 286.0, + 941.0, + 307.0, + 917.0, + 307.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 990.0, + 293.0, + 1036.0, + 293.0, + 1036.0, + 324.0, + 990.0, + 324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 910.0, + 295.0, + 949.0, + 295.0, + 949.0, + 537.0, + 910.0, + 537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1090.0, + 299.0, + 1355.0, + 299.0, + 1355.0, + 329.0, + 1090.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 965.0, + 300.0, + 994.0, + 300.0, + 994.0, + 334.0, + 965.0, + 334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 453.0, + 306.0, + 664.0, + 306.0, + 664.0, + 336.0, + 453.0, + 336.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 742.0, + 321.0, + 752.0, + 321.0, + 752.0, + 330.0, + 742.0, + 330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 963.0, + 324.0, + 995.0, + 324.0, + 995.0, + 370.0, + 963.0, + 370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1046.0, + 331.0, + 1058.0, + 331.0, + 1058.0, + 341.0, + 1046.0, + 341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 455.0, + 332.0, + 640.0, + 332.0, + 640.0, + 364.0, + 455.0, + 364.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 336.0, + 337.0, + 388.0, + 337.0, + 388.0, + 368.0, + 336.0, + 368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1044.0, + 346.0, + 1054.0, + 346.0, + 1054.0, + 354.0, + 1044.0, + 354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 454.0, + 357.0, + 675.0, + 357.0, + 675.0, + 387.0, + 454.0, + 387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 967.0, + 358.0, + 1033.0, + 358.0, + 1033.0, + 393.0, + 967.0, + 393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1043.0, + 362.0, + 1053.0, + 362.0, + 1053.0, + 370.0, + 1043.0, + 370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 336.0, + 393.0, + 388.0, + 393.0, + 388.0, + 424.0, + 336.0, + 424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 965.0, + 387.0, + 1031.0, + 387.0, + 1031.0, + 460.0, + 965.0, + 460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 336.0, + 448.0, + 387.0, + 448.0, + 387.0, + 480.0, + 336.0, + 480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 970.0, + 447.0, + 998.0, + 447.0, + 998.0, + 538.0, + 970.0, + 538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 995.0, + 495.0, + 1030.0, + 495.0, + 1030.0, + 516.0, + 995.0, + 516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 336.0, + 504.0, + 387.0, + 504.0, + 387.0, + 534.0, + 336.0, + 534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 364.0, + 549.0, + 440.0, + 549.0, + 440.0, + 585.0, + 364.0, + 585.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 477.0, + 552.0, + 491.0, + 552.0, + 491.0, + 573.0, + 477.0, + 573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 574.0, + 554.0, + 584.0, + 554.0, + 584.0, + 565.0, + 574.0, + 565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 992.0, + 558.0, + 1033.0, + 558.0, + 1033.0, + 585.0, + 992.0, + 585.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 365.0, + 576.0, + 409.0, + 576.0, + 409.0, + 608.0, + 365.0, + 608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 455.0, + 575.0, + 512.0, + 575.0, + 512.0, + 609.0, + 455.0, + 609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 553.0, + 577.0, + 606.0, + 577.0, + 606.0, + 608.0, + 553.0, + 608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 647.0, + 575.0, + 703.0, + 575.0, + 703.0, + 609.0, + 647.0, + 609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 743.0, + 576.0, + 797.0, + 576.0, + 797.0, + 607.0, + 743.0, + 607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 834.0, + 576.0, + 900.0, + 576.0, + 900.0, + 609.0, + 834.0, + 609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1027.0, + 579.0, + 1046.0, + 579.0, + 1046.0, + 599.0, + 1027.0, + 599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1060.0, + 574.0, + 1393.0, + 574.0, + 1393.0, + 603.0, + 1060.0, + 603.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 452.0, + 599.0, + 801.0, + 599.0, + 801.0, + 632.0, + 452.0, + 632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1049.0, + 598.0, + 1355.0, + 598.0, + 1355.0, + 631.0, + 1049.0, + 631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.25, + 233.5, + 911.25, + 233.5, + 911.25, + 261.5, + 861.25, + 261.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 425.0, + 265.5, + 452.0, + 265.5, + 452.0, + 280.0, + 425.0, + 280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 865.0, + 312.0, + 918.0, + 312.0, + 918.0, + 338.0, + 865.0, + 338.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 863.25, + 392.5, + 923.25, + 392.5, + 923.25, + 422.0, + 863.25, + 422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 862.0, + 476.0, + 922.0, + 476.0, + 922.0, + 504.0, + 862.0, + 504.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 862.0, + 557.0, + 924.0, + 557.0, + 924.0, + 587.0, + 862.0, + 587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 662.0, + 1405.0, + 662.0, + 1405.0, + 694.0, + 295.0, + 694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 689.0, + 782.0, + 689.0, + 782.0, + 727.0, + 293.0, + 727.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 878.0, + 689.0, + 884.0, + 689.0, + 884.0, + 727.0, + 878.0, + 727.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 989.0, + 689.0, + 1405.0, + 689.0, + 1405.0, + 727.0, + 989.0, + 727.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 722.0, + 306.0, + 722.0, + 306.0, + 758.0, + 296.0, + 758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 402.0, + 722.0, + 408.0, + 722.0, + 408.0, + 758.0, + 402.0, + 758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 513.0, + 722.0, + 1406.0, + 722.0, + 1406.0, + 758.0, + 513.0, + 758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 753.0, + 860.0, + 753.0, + 860.0, + 787.0, + 293.0, + 787.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 957.0, + 753.0, + 1405.0, + 753.0, + 1405.0, + 787.0, + 957.0, + 787.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 779.0, + 1405.0, + 779.0, + 1405.0, + 823.0, + 291.0, + 823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 811.0, + 1356.0, + 811.0, + 1356.0, + 849.0, + 293.0, + 849.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 818.0, + 73.0, + 818.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1646.0, + 967.0, + 1646.0, + 967.0, + 1684.0, + 294.0, + 1684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2124.0, + 832.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 660.0, + 1406.0, + 660.0, + 1406.0, + 696.0, + 294.0, + 696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 688.0, + 782.0, + 688.0, + 782.0, + 729.0, + 291.0, + 729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 878.0, + 688.0, + 884.0, + 688.0, + 884.0, + 729.0, + 878.0, + 729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 989.0, + 688.0, + 1406.0, + 688.0, + 1406.0, + 729.0, + 989.0, + 729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 722.0, + 306.0, + 722.0, + 306.0, + 758.0, + 296.0, + 758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 402.0, + 722.0, + 408.0, + 722.0, + 408.0, + 758.0, + 402.0, + 758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 513.0, + 722.0, + 1405.0, + 722.0, + 1405.0, + 758.0, + 513.0, + 758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 753.0, + 860.0, + 753.0, + 860.0, + 788.0, + 294.0, + 788.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 957.0, + 753.0, + 1403.0, + 753.0, + 1403.0, + 788.0, + 957.0, + 788.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 779.0, + 1405.0, + 779.0, + 1405.0, + 823.0, + 291.0, + 823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 811.0, + 1357.0, + 811.0, + 1357.0, + 849.0, + 293.0, + 849.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1028.0, + 1402.0, + 1028.0, + 1402.0, + 1061.0, + 296.0, + 1061.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1056.0, + 541.0, + 1056.0, + 541.0, + 1094.0, + 293.0, + 1094.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 636.0, + 1056.0, + 643.0, + 1056.0, + 643.0, + 1094.0, + 636.0, + 1094.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 746.0, + 1056.0, + 753.0, + 1056.0, + 753.0, + 1094.0, + 746.0, + 1094.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 843.0, + 1056.0, + 1406.0, + 1056.0, + 1406.0, + 1094.0, + 843.0, + 1094.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1088.0, + 1406.0, + 1088.0, + 1406.0, + 1125.0, + 293.0, + 1125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1116.0, + 1408.0, + 1116.0, + 1408.0, + 1155.0, + 293.0, + 1155.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1148.0, + 472.0, + 1148.0, + 472.0, + 1184.0, + 293.0, + 1184.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 585.0, + 1148.0, + 1044.0, + 1148.0, + 1044.0, + 1184.0, + 585.0, + 1184.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1122.0, + 1148.0, + 1406.0, + 1148.0, + 1406.0, + 1184.0, + 1122.0, + 1184.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1178.0, + 1405.0, + 1178.0, + 1405.0, + 1214.0, + 292.0, + 1214.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1207.0, + 1404.0, + 1207.0, + 1404.0, + 1246.0, + 293.0, + 1246.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1240.0, + 691.0, + 1240.0, + 691.0, + 1276.0, + 293.0, + 1276.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 711.0, + 1240.0, + 847.0, + 1240.0, + 847.0, + 1276.0, + 711.0, + 1276.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1046.0, + 1240.0, + 1406.0, + 1240.0, + 1406.0, + 1276.0, + 1046.0, + 1276.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1271.0, + 518.0, + 1271.0, + 518.0, + 1304.0, + 296.0, + 1304.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1347.0, + 1405.0, + 1347.0, + 1405.0, + 1389.0, + 293.0, + 1389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1383.0, + 1405.0, + 1383.0, + 1405.0, + 1417.0, + 294.0, + 1417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1412.0, + 1405.0, + 1412.0, + 1405.0, + 1445.0, + 296.0, + 1445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1439.0, + 1406.0, + 1439.0, + 1406.0, + 1478.0, + 292.0, + 1478.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1471.0, + 858.0, + 1471.0, + 858.0, + 1510.0, + 292.0, + 1510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 916.0, + 1471.0, + 1405.0, + 1471.0, + 1405.0, + 1510.0, + 916.0, + 1510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1501.0, + 1408.0, + 1501.0, + 1408.0, + 1542.0, + 292.0, + 1542.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1534.0, + 1405.0, + 1534.0, + 1405.0, + 1569.0, + 293.0, + 1569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1563.0, + 443.0, + 1563.0, + 443.0, + 1602.0, + 294.0, + 1602.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1848.0, + 1403.0, + 1848.0, + 1403.0, + 1884.0, + 296.0, + 1884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1879.0, + 1351.0, + 1879.0, + 1351.0, + 1918.0, + 293.0, + 1918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1913.0, + 1404.0, + 1913.0, + 1404.0, + 1945.0, + 296.0, + 1945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1942.0, + 1255.0, + 1942.0, + 1255.0, + 1978.0, + 293.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1282.0, + 1942.0, + 1336.0, + 1942.0, + 1336.0, + 1978.0, + 1282.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1370.0, + 1942.0, + 1406.0, + 1942.0, + 1406.0, + 1978.0, + 1370.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1970.0, + 1406.0, + 1970.0, + 1406.0, + 2009.0, + 293.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 2005.0, + 392.0, + 2005.0, + 392.0, + 2039.0, + 291.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1711.0, + 1402.0, + 1711.0, + 1402.0, + 1746.0, + 294.0, + 1746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1741.0, + 1406.0, + 1741.0, + 1406.0, + 1778.0, + 293.0, + 1778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1774.0, + 1353.0, + 1774.0, + 1353.0, + 1810.0, + 294.0, + 1810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1372.0, + 1774.0, + 1408.0, + 1774.0, + 1408.0, + 1810.0, + 1372.0, + 1810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1806.0, + 1277.0, + 1806.0, + 1277.0, + 1838.0, + 295.0, + 1838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 917.0, + 1407.0, + 917.0, + 1407.0, + 953.0, + 293.0, + 953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 946.0, + 973.0, + 946.0, + 973.0, + 986.0, + 293.0, + 986.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1067.0, + 946.0, + 1075.0, + 946.0, + 1075.0, + 986.0, + 1067.0, + 986.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1177.0, + 946.0, + 1184.0, + 946.0, + 1184.0, + 986.0, + 1177.0, + 986.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1275.0, + 946.0, + 1405.0, + 946.0, + 1405.0, + 986.0, + 1275.0, + 986.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 981.0, + 436.0, + 981.0, + 436.0, + 1013.0, + 294.0, + 1013.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 540.0, + 981.0, + 551.0, + 981.0, + 551.0, + 1013.0, + 540.0, + 1013.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 11, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 230, + 1404, + 230, + 1404, + 536, + 298, + 536 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 649, + 1404, + 649, + 1404, + 895, + 298, + 895 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 299, + 1079, + 1403, + 1079, + 1403, + 1294, + 299, + 1294 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 299, + 910, + 1403, + 910, + 1403, + 1063, + 299, + 1063 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 297, + 1408, + 1401, + 1408, + 1401, + 1471, + 297, + 1471 + ], + "score": 0.932 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 815, + 76, + 815, + 104, + 300, + 104 + ], + "score": 0.887 + }, + { + "category_id": 0, + "poly": [ + 300, + 580, + 560, + 580, + 560, + 615, + 300, + 615 + ], + "score": 0.878 + }, + { + "category_id": 0, + "poly": [ + 301, + 1341, + 607, + 1341, + 607, + 1372, + 301, + 1372 + ], + "score": 0.85 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 864, + 2088, + 864, + 2112, + 836, + 2112 + ], + "score": 0.835 + }, + { + "category_id": 13, + "poly": [ + 644, + 322, + 740, + 322, + 740, + 350, + 644, + 350 + ], + "score": 0.89, + "latex": "5 0 \\mathrm { - } 7 0 \\%" + }, + { + "category_id": 13, + "poly": [ + 482, + 231, + 584, + 231, + 584, + 261, + 482, + 261 + ], + "score": 0.87, + "latex": "\\sigma _ { 1 } { = } 1 5 0 0" + }, + { + "category_id": 13, + "poly": [ + 380, + 230, + 474, + 230, + 474, + 261, + 380, + 261 + ], + "score": 0.83, + "latex": "\\scriptstyle { T = 3 5 0 0 }" + }, + { + "category_id": 13, + "poly": [ + 654, + 354, + 756, + 354, + 756, + 384, + 654, + 384 + ], + "score": 0.8, + "latex": "\\sigma _ { 1 } { = } 1 5 0 0" + }, + { + "category_id": 13, + "poly": [ + 552, + 353, + 645, + 353, + 645, + 383, + 552, + 383 + ], + "score": 0.79, + "latex": "\\scriptstyle { T = 5 0 0 0 }" + }, + { + "category_id": 13, + "poly": [ + 519, + 263, + 610, + 263, + 610, + 291, + 519, + 291 + ], + "score": 0.76, + "latex": "> 4 0 0 0" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 574.0, + 566.0, + 574.0, + 566.0, + 624.0, + 291.0, + 624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 299.0, + 1341.0, + 610.0, + 1341.0, + 610.0, + 1377.0, + 299.0, + 1377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 869.0, + 2085.0, + 869.0, + 2123.0, + 832.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 224.0, + 379.0, + 224.0, + 379.0, + 270.0, + 293.0, + 270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 475.0, + 224.0, + 481.0, + 224.0, + 481.0, + 270.0, + 475.0, + 270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 585.0, + 224.0, + 1406.0, + 224.0, + 1406.0, + 270.0, + 585.0, + 270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 260.0, + 518.0, + 260.0, + 518.0, + 298.0, + 292.0, + 298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 611.0, + 260.0, + 1406.0, + 260.0, + 1406.0, + 298.0, + 611.0, + 298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 289.0, + 1406.0, + 289.0, + 1406.0, + 327.0, + 293.0, + 327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 320.0, + 643.0, + 320.0, + 643.0, + 358.0, + 292.0, + 358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 741.0, + 320.0, + 1406.0, + 320.0, + 1406.0, + 358.0, + 741.0, + 358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 350.0, + 551.0, + 350.0, + 551.0, + 388.0, + 292.0, + 388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 646.0, + 350.0, + 653.0, + 350.0, + 653.0, + 388.0, + 646.0, + 388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 757.0, + 350.0, + 1405.0, + 350.0, + 1405.0, + 388.0, + 757.0, + 388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 378.0, + 1405.0, + 378.0, + 1405.0, + 422.0, + 292.0, + 422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 411.0, + 1404.0, + 411.0, + 1404.0, + 450.0, + 292.0, + 450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 443.0, + 1406.0, + 443.0, + 1406.0, + 479.0, + 293.0, + 479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 473.0, + 1406.0, + 473.0, + 1406.0, + 510.0, + 292.0, + 510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 504.0, + 1395.0, + 504.0, + 1395.0, + 542.0, + 292.0, + 542.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 648.0, + 1404.0, + 648.0, + 1404.0, + 687.0, + 295.0, + 687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 682.0, + 1406.0, + 682.0, + 1406.0, + 716.0, + 293.0, + 716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 711.0, + 1405.0, + 711.0, + 1405.0, + 747.0, + 293.0, + 747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 741.0, + 1406.0, + 741.0, + 1406.0, + 778.0, + 293.0, + 778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 772.0, + 1404.0, + 772.0, + 1404.0, + 808.0, + 293.0, + 808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 802.0, + 1406.0, + 802.0, + 1406.0, + 837.0, + 292.0, + 837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 834.0, + 1405.0, + 834.0, + 1405.0, + 867.0, + 292.0, + 867.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 865.0, + 1357.0, + 865.0, + 1357.0, + 898.0, + 294.0, + 898.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1079.0, + 1404.0, + 1079.0, + 1404.0, + 1114.0, + 294.0, + 1114.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1109.0, + 1402.0, + 1109.0, + 1402.0, + 1143.0, + 294.0, + 1143.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1141.0, + 1403.0, + 1141.0, + 1403.0, + 1175.0, + 294.0, + 1175.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1171.0, + 1405.0, + 1171.0, + 1405.0, + 1205.0, + 295.0, + 1205.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1200.0, + 1404.0, + 1200.0, + 1404.0, + 1238.0, + 293.0, + 1238.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1232.0, + 1403.0, + 1232.0, + 1403.0, + 1265.0, + 293.0, + 1265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1264.0, + 1402.0, + 1264.0, + 1402.0, + 1298.0, + 295.0, + 1298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 910.0, + 1404.0, + 910.0, + 1404.0, + 947.0, + 295.0, + 947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 940.0, + 1404.0, + 940.0, + 1404.0, + 976.0, + 294.0, + 976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 971.0, + 1404.0, + 971.0, + 1404.0, + 1008.0, + 293.0, + 1008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 998.0, + 1404.0, + 998.0, + 1404.0, + 1038.0, + 294.0, + 1038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1033.0, + 603.0, + 1033.0, + 603.0, + 1070.0, + 294.0, + 1070.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1404.0, + 1406.0, + 1404.0, + 1406.0, + 1445.0, + 293.0, + 1445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1436.0, + 645.0, + 1436.0, + 645.0, + 1474.0, + 294.0, + 1474.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 12, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 300, + 75, + 815, + 75, + 815, + 105, + 300, + 105 + ], + "score": 0.887 + }, + { + "category_id": 1, + "poly": [ + 304, + 279, + 1400, + 279, + 1400, + 373, + 304, + 373 + ], + "score": 0.863 + }, + { + "category_id": 1, + "poly": [ + 293, + 1571, + 1402, + 1571, + 1402, + 1637, + 293, + 1637 + ], + "score": 0.853 + }, + { + "category_id": 1, + "poly": [ + 292, + 1656, + 1403, + 1656, + 1403, + 1721, + 292, + 1721 + ], + "score": 0.846 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 864, + 2088, + 864, + 2112, + 836, + 2112 + ], + "score": 0.83 + }, + { + "category_id": 1, + "poly": [ + 298, + 397, + 1406, + 397, + 1406, + 522, + 298, + 522 + ], + "score": 0.828 + }, + { + "category_id": 1, + "poly": [ + 297, + 972, + 1405, + 972, + 1405, + 1098, + 297, + 1098 + ], + "score": 0.817 + }, + { + "category_id": 1, + "poly": [ + 298, + 741, + 1406, + 741, + 1406, + 836, + 298, + 836 + ], + "score": 0.812 + }, + { + "category_id": 1, + "poly": [ + 294, + 541, + 1400, + 541, + 1400, + 607, + 294, + 607 + ], + "score": 0.807 + }, + { + "category_id": 1, + "poly": [ + 297, + 626, + 1407, + 626, + 1407, + 721, + 297, + 721 + ], + "score": 0.791 + }, + { + "category_id": 1, + "poly": [ + 297, + 1119, + 1399, + 1119, + 1399, + 1184, + 297, + 1184 + ], + "score": 0.791 + }, + { + "category_id": 1, + "poly": [ + 296, + 1203, + 1398, + 1203, + 1398, + 1270, + 296, + 1270 + ], + "score": 0.787 + }, + { + "category_id": 1, + "poly": [ + 301, + 856, + 1401, + 856, + 1401, + 952, + 301, + 952 + ], + "score": 0.78 + }, + { + "category_id": 1, + "poly": [ + 297, + 1740, + 1404, + 1740, + 1404, + 1836, + 297, + 1836 + ], + "score": 0.779 + }, + { + "category_id": 1, + "poly": [ + 298, + 1488, + 1404, + 1488, + 1404, + 1551, + 298, + 1551 + ], + "score": 0.777 + }, + { + "category_id": 0, + "poly": [ + 300, + 227, + 488, + 227, + 488, + 261, + 300, + 261 + ], + "score": 0.774 + }, + { + "category_id": 1, + "poly": [ + 298, + 1288, + 1404, + 1288, + 1404, + 1383, + 298, + 1383 + ], + "score": 0.753 + }, + { + "category_id": 1, + "poly": [ + 296, + 1402, + 1403, + 1402, + 1403, + 1469, + 296, + 1469 + ], + "score": 0.749 + }, + { + "category_id": 1, + "poly": [ + 296, + 1971, + 1398, + 1971, + 1398, + 2035, + 296, + 2035 + ], + "score": 0.744 + }, + { + "category_id": 1, + "poly": [ + 295, + 1856, + 1400, + 1856, + 1400, + 1950, + 295, + 1950 + ], + "score": 0.722 + }, + { + "category_id": 1, + "poly": [ + 300, + 227, + 488, + 227, + 488, + 261, + 300, + 261 + ], + "score": 0.097 + }, + { + "category_id": 13, + "poly": [ + 575, + 545, + 593, + 545, + 593, + 571, + 575, + 571 + ], + "score": 0.82, + "latex": "k" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2123.0, + 832.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 227.0, + 490.0, + 227.0, + 490.0, + 264.0, + 296.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 299.0, + 280.0, + 1405.0, + 280.0, + 1405.0, + 314.0, + 299.0, + 314.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 309.0, + 1406.0, + 309.0, + 1406.0, + 347.0, + 321.0, + 347.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 339.0, + 1257.0, + 339.0, + 1257.0, + 381.0, + 323.0, + 381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1569.0, + 1405.0, + 1569.0, + 1405.0, + 1612.0, + 293.0, + 1612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1603.0, + 1096.0, + 1603.0, + 1096.0, + 1638.0, + 321.0, + 1638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1652.0, + 1405.0, + 1652.0, + 1405.0, + 1696.0, + 294.0, + 1696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1686.0, + 610.0, + 1686.0, + 610.0, + 1722.0, + 321.0, + 1722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 394.0, + 1406.0, + 394.0, + 1406.0, + 434.0, + 292.0, + 434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 429.0, + 1404.0, + 429.0, + 1404.0, + 462.0, + 324.0, + 462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 459.0, + 1406.0, + 459.0, + 1406.0, + 496.0, + 321.0, + 496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 489.0, + 707.0, + 489.0, + 707.0, + 524.0, + 321.0, + 524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 971.0, + 1406.0, + 971.0, + 1406.0, + 1011.0, + 292.0, + 1011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1006.0, + 1406.0, + 1006.0, + 1406.0, + 1041.0, + 321.0, + 1041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1035.0, + 1406.0, + 1035.0, + 1406.0, + 1071.0, + 320.0, + 1071.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1063.0, + 452.0, + 1063.0, + 452.0, + 1101.0, + 321.0, + 1101.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 742.0, + 1404.0, + 742.0, + 1404.0, + 776.0, + 295.0, + 776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 774.0, + 1404.0, + 774.0, + 1404.0, + 808.0, + 324.0, + 808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 803.0, + 1333.0, + 803.0, + 1333.0, + 837.0, + 323.0, + 837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 542.0, + 574.0, + 542.0, + 574.0, + 578.0, + 296.0, + 578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 594.0, + 542.0, + 1406.0, + 542.0, + 1406.0, + 578.0, + 594.0, + 578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 573.0, + 1357.0, + 573.0, + 1357.0, + 608.0, + 322.0, + 608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 624.0, + 1408.0, + 624.0, + 1408.0, + 665.0, + 292.0, + 665.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 659.0, + 1404.0, + 659.0, + 1404.0, + 693.0, + 323.0, + 693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 688.0, + 759.0, + 688.0, + 759.0, + 722.0, + 323.0, + 722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1113.0, + 1405.0, + 1113.0, + 1405.0, + 1163.0, + 293.0, + 1163.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1150.0, + 1072.0, + 1150.0, + 1072.0, + 1185.0, + 323.0, + 1185.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1204.0, + 1404.0, + 1204.0, + 1404.0, + 1240.0, + 295.0, + 1240.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1235.0, + 1235.0, + 1235.0, + 1235.0, + 1272.0, + 322.0, + 1272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 855.0, + 1406.0, + 855.0, + 1406.0, + 894.0, + 294.0, + 894.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 888.0, + 1406.0, + 888.0, + 1406.0, + 925.0, + 321.0, + 925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 917.0, + 1061.0, + 917.0, + 1061.0, + 955.0, + 322.0, + 955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1740.0, + 1405.0, + 1740.0, + 1405.0, + 1778.0, + 296.0, + 1778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1771.0, + 1405.0, + 1771.0, + 1405.0, + 1811.0, + 321.0, + 1811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1804.0, + 704.0, + 1804.0, + 704.0, + 1836.0, + 324.0, + 1836.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1486.0, + 1405.0, + 1486.0, + 1405.0, + 1526.0, + 293.0, + 1526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1518.0, + 678.0, + 1518.0, + 678.0, + 1553.0, + 323.0, + 1553.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1288.0, + 1403.0, + 1288.0, + 1403.0, + 1325.0, + 295.0, + 1325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1320.0, + 1405.0, + 1320.0, + 1405.0, + 1357.0, + 322.0, + 1357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1351.0, + 895.0, + 1351.0, + 895.0, + 1385.0, + 325.0, + 1385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1403.0, + 1404.0, + 1403.0, + 1404.0, + 1439.0, + 296.0, + 1439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1434.0, + 1295.0, + 1434.0, + 1295.0, + 1469.0, + 321.0, + 1469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1970.0, + 1402.0, + 1970.0, + 1402.0, + 2006.0, + 295.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 2003.0, + 1122.0, + 2003.0, + 1122.0, + 2036.0, + 321.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1856.0, + 1401.0, + 1856.0, + 1401.0, + 1893.0, + 295.0, + 1893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1882.0, + 1404.0, + 1882.0, + 1404.0, + 1929.0, + 320.0, + 1929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1916.0, + 478.0, + 1916.0, + 478.0, + 1951.0, + 322.0, + 1951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 227.0, + 490.0, + 227.0, + 490.0, + 264.0, + 296.0, + 264.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 13, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 299, + 75, + 815, + 75, + 815, + 105, + 299, + 105 + ], + "score": 0.89 + }, + { + "category_id": 1, + "poly": [ + 295, + 229, + 1401, + 229, + 1401, + 293, + 295, + 293 + ], + "score": 0.879 + }, + { + "category_id": 1, + "poly": [ + 297, + 996, + 1400, + 996, + 1400, + 1091, + 297, + 1091 + ], + "score": 0.864 + }, + { + "category_id": 1, + "poly": [ + 293, + 531, + 1402, + 531, + 1402, + 596, + 293, + 596 + ], + "score": 0.858 + }, + { + "category_id": 1, + "poly": [ + 297, + 420, + 1400, + 420, + 1400, + 515, + 297, + 515 + ], + "score": 0.85 + }, + { + "category_id": 1, + "poly": [ + 294, + 754, + 1402, + 754, + 1402, + 820, + 294, + 820 + ], + "score": 0.834 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 864, + 2088, + 864, + 2113, + 836, + 2113 + ], + "score": 0.828 + }, + { + "category_id": 1, + "poly": [ + 296, + 1717, + 1403, + 1717, + 1403, + 1812, + 296, + 1812 + ], + "score": 0.817 + }, + { + "category_id": 1, + "poly": [ + 289, + 1636, + 1403, + 1636, + 1403, + 1703, + 289, + 1703 + ], + "score": 0.814 + }, + { + "category_id": 1, + "poly": [ + 293, + 835, + 1401, + 835, + 1401, + 901, + 293, + 901 + ], + "score": 0.814 + }, + { + "category_id": 1, + "poly": [ + 294, + 915, + 1400, + 915, + 1400, + 981, + 294, + 981 + ], + "score": 0.812 + }, + { + "category_id": 1, + "poly": [ + 299, + 1188, + 1403, + 1188, + 1403, + 1285, + 299, + 1285 + ], + "score": 0.811 + }, + { + "category_id": 1, + "poly": [ + 288, + 1107, + 1403, + 1107, + 1403, + 1174, + 288, + 1174 + ], + "score": 0.81 + }, + { + "category_id": 1, + "poly": [ + 299, + 1299, + 1404, + 1299, + 1404, + 1395, + 299, + 1395 + ], + "score": 0.808 + }, + { + "category_id": 1, + "poly": [ + 298, + 1828, + 1402, + 1828, + 1402, + 1924, + 298, + 1924 + ], + "score": 0.805 + }, + { + "category_id": 1, + "poly": [ + 298, + 1525, + 1401, + 1525, + 1401, + 1619, + 298, + 1619 + ], + "score": 0.801 + }, + { + "category_id": 1, + "poly": [ + 299, + 1941, + 1402, + 1941, + 1402, + 2034, + 299, + 2034 + ], + "score": 0.797 + }, + { + "category_id": 1, + "poly": [ + 298, + 1413, + 1401, + 1413, + 1401, + 1511, + 298, + 1511 + ], + "score": 0.777 + }, + { + "category_id": 1, + "poly": [ + 299, + 612, + 1404, + 612, + 1404, + 737, + 299, + 737 + ], + "score": 0.771 + }, + { + "category_id": 1, + "poly": [ + 296, + 310, + 1400, + 310, + 1400, + 404, + 296, + 404 + ], + "score": 0.625 + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 818.0, + 73.0, + 818.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2124.0, + 832.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 229.0, + 1405.0, + 229.0, + 1405.0, + 265.0, + 297.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 260.0, + 696.0, + 260.0, + 696.0, + 294.0, + 323.0, + 294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 997.0, + 1402.0, + 997.0, + 1402.0, + 1031.0, + 296.0, + 1031.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1029.0, + 1405.0, + 1029.0, + 1405.0, + 1065.0, + 321.0, + 1065.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1058.0, + 613.0, + 1058.0, + 613.0, + 1091.0, + 321.0, + 1091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 530.0, + 1405.0, + 530.0, + 1405.0, + 570.0, + 293.0, + 570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 562.0, + 679.0, + 562.0, + 679.0, + 598.0, + 325.0, + 598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 416.0, + 1402.0, + 416.0, + 1402.0, + 463.0, + 292.0, + 463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 449.0, + 1404.0, + 449.0, + 1404.0, + 492.0, + 321.0, + 492.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 483.0, + 505.0, + 483.0, + 505.0, + 515.0, + 325.0, + 515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 753.0, + 1404.0, + 753.0, + 1404.0, + 792.0, + 293.0, + 792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 784.0, + 1249.0, + 784.0, + 1249.0, + 821.0, + 322.0, + 821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1716.0, + 1401.0, + 1716.0, + 1401.0, + 1754.0, + 295.0, + 1754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1747.0, + 1405.0, + 1747.0, + 1405.0, + 1785.0, + 321.0, + 1785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1779.0, + 575.0, + 1779.0, + 575.0, + 1813.0, + 320.0, + 1813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1633.0, + 1404.0, + 1633.0, + 1404.0, + 1676.0, + 295.0, + 1676.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1668.0, + 1340.0, + 1668.0, + 1340.0, + 1703.0, + 322.0, + 1703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 838.0, + 1401.0, + 838.0, + 1401.0, + 871.0, + 296.0, + 871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 865.0, + 1393.0, + 865.0, + 1393.0, + 902.0, + 324.0, + 902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 914.0, + 1404.0, + 914.0, + 1404.0, + 954.0, + 294.0, + 954.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 949.0, + 715.0, + 949.0, + 715.0, + 980.0, + 319.0, + 980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1185.0, + 1404.0, + 1185.0, + 1404.0, + 1228.0, + 294.0, + 1228.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1218.0, + 1404.0, + 1218.0, + 1404.0, + 1260.0, + 322.0, + 1260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1250.0, + 885.0, + 1250.0, + 885.0, + 1288.0, + 323.0, + 1288.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1107.0, + 1405.0, + 1107.0, + 1405.0, + 1144.0, + 295.0, + 1144.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1139.0, + 1375.0, + 1139.0, + 1375.0, + 1174.0, + 323.0, + 1174.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1297.0, + 1403.0, + 1297.0, + 1403.0, + 1337.0, + 294.0, + 1337.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1329.0, + 1408.0, + 1329.0, + 1408.0, + 1370.0, + 323.0, + 1370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 1360.0, + 751.0, + 1360.0, + 751.0, + 1398.0, + 326.0, + 1398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1828.0, + 1404.0, + 1828.0, + 1404.0, + 1866.0, + 293.0, + 1866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1859.0, + 1406.0, + 1859.0, + 1406.0, + 1899.0, + 322.0, + 1899.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1892.0, + 727.0, + 1892.0, + 727.0, + 1926.0, + 325.0, + 1926.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1523.0, + 1406.0, + 1523.0, + 1406.0, + 1564.0, + 293.0, + 1564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1557.0, + 1405.0, + 1557.0, + 1405.0, + 1591.0, + 323.0, + 1591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1584.0, + 400.0, + 1584.0, + 400.0, + 1622.0, + 321.0, + 1622.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1940.0, + 1406.0, + 1940.0, + 1406.0, + 1977.0, + 294.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1969.0, + 1407.0, + 1969.0, + 1407.0, + 2010.0, + 322.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 2003.0, + 547.0, + 2003.0, + 547.0, + 2034.0, + 321.0, + 2034.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1414.0, + 1406.0, + 1414.0, + 1406.0, + 1452.0, + 294.0, + 1452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1447.0, + 1405.0, + 1447.0, + 1405.0, + 1482.0, + 323.0, + 1482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1476.0, + 1185.0, + 1476.0, + 1185.0, + 1514.0, + 322.0, + 1514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 611.0, + 1405.0, + 611.0, + 1405.0, + 650.0, + 294.0, + 650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 644.0, + 1405.0, + 644.0, + 1405.0, + 680.0, + 321.0, + 680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 670.0, + 1408.0, + 670.0, + 1408.0, + 716.0, + 316.0, + 716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 704.0, + 398.0, + 704.0, + 398.0, + 739.0, + 319.0, + 739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 306.0, + 1404.0, + 306.0, + 1404.0, + 350.0, + 293.0, + 350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 338.0, + 1404.0, + 338.0, + 1404.0, + 380.0, + 320.0, + 380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 372.0, + 477.0, + 372.0, + 477.0, + 403.0, + 324.0, + 403.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 14, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 300, + 75, + 816, + 75, + 816, + 105, + 300, + 105 + ], + "score": 0.874 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2112, + 836, + 2112 + ], + "score": 0.837 + }, + { + "category_id": 1, + "poly": [ + 301, + 592, + 1400, + 592, + 1400, + 685, + 301, + 685 + ], + "score": 0.738 + }, + { + "category_id": 1, + "poly": [ + 294, + 508, + 1402, + 508, + 1402, + 573, + 294, + 573 + ], + "score": 0.617 + }, + { + "category_id": 1, + "poly": [ + 293, + 228, + 1403, + 228, + 1403, + 294, + 293, + 294 + ], + "score": 0.613 + }, + { + "category_id": 1, + "poly": [ + 292, + 425, + 1403, + 425, + 1403, + 490, + 292, + 490 + ], + "score": 0.553 + }, + { + "category_id": 1, + "poly": [ + 302, + 311, + 1400, + 311, + 1400, + 407, + 302, + 407 + ], + "score": 0.543 + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2084.0, + 871.0, + 2084.0, + 871.0, + 2123.0, + 832.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 591.0, + 1404.0, + 591.0, + 1404.0, + 629.0, + 296.0, + 629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 624.0, + 1403.0, + 624.0, + 1403.0, + 658.0, + 323.0, + 658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 654.0, + 872.0, + 654.0, + 872.0, + 687.0, + 322.0, + 687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 510.0, + 1404.0, + 510.0, + 1404.0, + 546.0, + 296.0, + 546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 541.0, + 1068.0, + 541.0, + 1068.0, + 573.0, + 325.0, + 573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 227.0, + 1405.0, + 227.0, + 1405.0, + 265.0, + 295.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 262.0, + 1404.0, + 262.0, + 1404.0, + 295.0, + 325.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 425.0, + 1405.0, + 425.0, + 1405.0, + 463.0, + 294.0, + 463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 456.0, + 1332.0, + 456.0, + 1332.0, + 491.0, + 321.0, + 491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 311.0, + 1404.0, + 311.0, + 1404.0, + 349.0, + 297.0, + 349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 344.0, + 1404.0, + 344.0, + 1404.0, + 379.0, + 322.0, + 379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 374.0, + 948.0, + 374.0, + 948.0, + 408.0, + 324.0, + 408.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 15, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 475, + 1405, + 475, + 1405, + 631, + 297, + 631 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 297, + 294, + 1405, + 294, + 1405, + 419, + 297, + 419 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 296, + 1381, + 1404, + 1381, + 1404, + 1531, + 296, + 1531 + ], + "score": 0.976 + }, + { + "category_id": 8, + "poly": [ + 464, + 1795, + 1232, + 1795, + 1232, + 1933, + 464, + 1933 + ], + "score": 0.967 + }, + { + "category_id": 8, + "poly": [ + 364, + 978, + 1331, + 978, + 1331, + 1225, + 364, + 1225 + ], + "score": 0.964 + }, + { + "category_id": 1, + "poly": [ + 291, + 1714, + 1403, + 1714, + 1403, + 1781, + 291, + 1781 + ], + "score": 0.953 + }, + { + "category_id": 8, + "poly": [ + 661, + 775, + 1035, + 775, + 1035, + 861, + 661, + 861 + ], + "score": 0.949 + }, + { + "category_id": 1, + "poly": [ + 295, + 896, + 1403, + 896, + 1403, + 964, + 295, + 964 + ], + "score": 0.948 + }, + { + "category_id": 1, + "poly": [ + 300, + 1239, + 1401, + 1239, + 1401, + 1306, + 300, + 1306 + ], + "score": 0.948 + }, + { + "category_id": 1, + "poly": [ + 297, + 1966, + 1402, + 1966, + 1402, + 2033, + 297, + 2033 + ], + "score": 0.945 + }, + { + "category_id": 1, + "poly": [ + 293, + 648, + 1400, + 648, + 1400, + 710, + 293, + 710 + ], + "score": 0.938 + }, + { + "category_id": 8, + "poly": [ + 694, + 710, + 1004, + 710, + 1004, + 749, + 694, + 749 + ], + "score": 0.924 + }, + { + "category_id": 1, + "poly": [ + 297, + 754, + 370, + 754, + 370, + 784, + 297, + 784 + ], + "score": 0.913 + }, + { + "category_id": 1, + "poly": [ + 297, + 1341, + 862, + 1341, + 862, + 1375, + 297, + 1375 + ], + "score": 0.909 + }, + { + "category_id": 2, + "poly": [ + 299, + 74, + 815, + 74, + 815, + 106, + 299, + 106 + ], + "score": 0.908 + }, + { + "category_id": 1, + "poly": [ + 297, + 426, + 1265, + 426, + 1265, + 465, + 297, + 465 + ], + "score": 0.896 + }, + { + "category_id": 0, + "poly": [ + 301, + 225, + 811, + 225, + 811, + 262, + 301, + 262 + ], + "score": 0.876 + }, + { + "category_id": 2, + "poly": [ + 836, + 2087, + 865, + 2087, + 865, + 2113, + 836, + 2113 + ], + "score": 0.866 + }, + { + "category_id": 9, + "poly": [ + 1365, + 1563, + 1401, + 1563, + 1401, + 1594, + 1365, + 1594 + ], + "score": 0.842 + }, + { + "category_id": 8, + "poly": [ + 363, + 1545, + 1329, + 1545, + 1329, + 1611, + 363, + 1611 + ], + "score": 0.664 + }, + { + "category_id": 8, + "poly": [ + 295, + 1626, + 1208, + 1626, + 1208, + 1685, + 295, + 1685 + ], + "score": 0.523 + }, + { + "category_id": 8, + "poly": [ + 329, + 1545, + 1329, + 1545, + 1329, + 1686, + 329, + 1686 + ], + "score": 0.249 + }, + { + "category_id": 13, + "poly": [ + 1176, + 898, + 1282, + 898, + 1282, + 933, + 1176, + 933 + ], + "score": 0.95, + "latex": "{ \\mathcal { N } } ( 0 , \\sigma ^ { 2 } )" + }, + { + "category_id": 13, + "poly": [ + 345, + 930, + 442, + 930, + 442, + 964, + 345, + 964 + ], + "score": 0.94, + "latex": "i ^ { * } \\in [ m ]" + }, + { + "category_id": 14, + "poly": [ + 357, + 977, + 1336, + 977, + 1336, + 1230, + 357, + 1230 + ], + "score": 0.94, + "latex": "\\begin{array} { r } { \\mathbf { P r } [ \\mathcal { M } _ { \\sigma } ( D ) \\neq i ^ { * } ] = \\mathbf { P r } \\left[ \\exists i , n _ { i } + Z _ { i } > n _ { i ^ { * } } + Z _ { i ^ { * } } \\right] \\leq \\displaystyle \\sum _ { i \\neq i ^ { * } } \\mathbf { P r } \\left[ n _ { i } + Z _ { i } > n _ { i ^ { * } } + Z _ { i ^ { * } } \\right] } \\\\ { = \\displaystyle \\sum _ { i \\neq i ^ { * } } \\mathbf { P r } \\left[ Z _ { i } - Z _ { i ^ { * } } > n _ { i ^ { * } } - n _ { i } \\right] } \\\\ { = \\displaystyle \\sum _ { i \\neq i ^ { * } } \\frac { 1 } { 2 } \\left( 1 - \\mathrm { e r f } \\left( \\frac { n _ { i ^ { * } } - n _ { i } } { 2 \\sigma } \\right) \\right) . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 842, + 1242, + 937, + 1242, + 937, + 1276, + 842, + 1276 + ], + "score": 0.93, + "latex": "Z _ { i } - Z _ { j }" + }, + { + "category_id": 14, + "poly": [ + 463, + 1793, + 1234, + 1793, + 1234, + 1935, + 463, + 1935 + ], + "score": 0.93, + "latex": "\\begin{array} { l } { \\displaystyle \\beta _ { \\mathcal { M } } ( \\lambda ; D , D ^ { \\prime } ) \\triangleq D _ { \\lambda } ( \\mathcal { M } ( D ) \\| \\mathcal { M } ( D ^ { \\prime } ) ) } \\\\ { \\displaystyle = \\frac { 1 } { \\lambda - 1 } \\log \\mathbb { E } _ { x \\sim \\mathcal { M } ( D ) } \\left[ \\left( \\frac { \\mathbf { P r } \\left[ \\mathcal { M } ( D ) = x \\right] } { \\mathbf { P r } \\left[ \\mathcal { M } ( D ^ { \\prime } ) = x \\right] } \\right) ^ { \\lambda - 1 } \\right] . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 832, + 537, + 955, + 537, + 955, + 571, + 832, + 571 + ], + "score": 0.92, + "latex": "( { \\bar { \\lambda } } , \\lambda / 2 \\sigma ^ { 2 } )" + }, + { + "category_id": 13, + "poly": [ + 1017, + 1446, + 1392, + 1446, + 1392, + 1501, + 1017, + 1501 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { \\tilde { q } \\le e ^ { ( \\mu _ { 2 } - 1 ) \\varepsilon _ { 2 } } / \\biggl ( \\frac { \\mu _ { 1 } } { \\mu _ { 1 } - 1 } \\cdot \\frac { \\mu _ { 2 } } { \\mu _ { 2 } - 1 } \\biggr ) ^ { \\mu _ { 2 } } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 432, + 681, + 530, + 681, + 530, + 714, + 432, + 714 + ], + "score": 0.92, + "latex": "i ^ { * } \\in [ m ]" + }, + { + "category_id": 13, + "poly": [ + 1181, + 650, + 1394, + 650, + 1394, + 684, + 1181, + 684 + ], + "score": 0.91, + "latex": "\\bar { n } = ( n _ { 1 } , \\ldots , n _ { m } ) " + }, + { + "category_id": 13, + "poly": [ + 935, + 427, + 1046, + 427, + 1046, + 466, + 935, + 466 + ], + "score": 0.91, + "latex": "\\left( \\lambda , \\lambda / \\sigma ^ { 2 } \\right)" + }, + { + "category_id": 13, + "poly": [ + 510, + 899, + 850, + 899, + 850, + 933, + 510, + 933 + ], + "score": 0.91, + "latex": "\\mathcal { M } _ { \\sigma } ( D ) = \\operatorname { a r g m a x } ( n _ { i } + Z _ { i } )" + }, + { + "category_id": 13, + "poly": [ + 866, + 1456, + 959, + 1456, + 959, + 1489, + 866, + 1489 + ], + "score": 0.91, + "latex": "\\lambda \\le \\mu _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1999, + 466, + 1999, + 466, + 2035, + 298, + 2035 + ], + "score": 0.91, + "latex": "\\zeta _ { 2 } \\triangleq e ^ { \\varepsilon _ { 2 } ( \\mu _ { 2 } - 1 ) }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1454, + 549, + 1454, + 549, + 1491, + 298, + 1491 + ], + "score": 0.91, + "latex": "\\tilde { q } \\geq \\mathbf { P r } \\left[ \\mathcal { M } ( D ) \\neq i ^ { * } \\right]" + }, + { + "category_id": 13, + "poly": [ + 823, + 479, + 873, + 479, + 873, + 508, + 823, + 508 + ], + "score": 0.91, + "latex": "\\mathcal { M } _ { \\sigma }" + }, + { + "category_id": 13, + "poly": [ + 499, + 1272, + 544, + 1272, + 544, + 1303, + 499, + 1303 + ], + "score": 0.9, + "latex": "2 \\sigma ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 776, + 652, + 825, + 652, + 825, + 681, + 776, + 681 + ], + "score": 0.9, + "latex": "\\mathcal { M } _ { \\sigma }" + }, + { + "category_id": 13, + "poly": [ + 830, + 1748, + 864, + 1748, + 864, + 1775, + 830, + 1775 + ], + "score": 0.89, + "latex": "D ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 939, + 901, + 970, + 901, + 970, + 931, + 939, + 931 + ], + "score": 0.89, + "latex": "Z _ { i }" + }, + { + "category_id": 13, + "poly": [ + 1175, + 1965, + 1352, + 1965, + 1352, + 2001, + 1175, + 2001 + ], + "score": 0.89, + "latex": "\\zeta _ { 1 } \\triangleq e ^ { \\varepsilon _ { 1 } ( \\mu _ { 1 } - 1 ) }" + }, + { + "category_id": 13, + "poly": [ + 747, + 430, + 798, + 430, + 798, + 460, + 747, + 460 + ], + "score": 0.88, + "latex": "\\mathcal { M } _ { \\sigma }" + }, + { + "category_id": 14, + "poly": [ + 364, + 1542, + 1332, + 1542, + 1332, + 1612, + 364, + 1612 + ], + "score": 0.88, + "latex": "D _ { \\lambda } ( \\mathcal { M } ( D ) \\| \\mathcal { M } ( D ^ { \\prime } ) ) \\le \\frac { 1 } { \\lambda - 1 } \\log \\left( ( 1 - \\tilde { q } ) \\cdot A ( \\tilde { q } , \\mu _ { 2 } , \\varepsilon _ { 2 } ) ^ { \\lambda - 1 } + \\tilde { q } \\cdot B ( \\tilde { q } , \\mu _ { 1 } , \\varepsilon _ { 1 } ) ^ { \\lambda - 1 } \\right)" + }, + { + "category_id": 13, + "poly": [ + 370, + 1626, + 851, + 1626, + 851, + 1686, + 370, + 1686 + ], + "score": 0.88, + "latex": "A ( \\tilde { q } , \\mu _ { 2 } , \\varepsilon _ { 2 } ) \\overset { \\Delta } { = } ( 1 - \\tilde { q } ) / \\left( 1 - ( \\tilde { q } e ^ { \\varepsilon _ { 2 } } ) ^ { \\frac { \\mu _ { 2 } - 1 } { \\mu _ { 2 } } } \\right)" + }, + { + "category_id": 13, + "poly": [ + 907, + 1383, + 995, + 1383, + 995, + 1417, + 907, + 1417 + ], + "score": 0.88, + "latex": "( \\mu _ { 1 } , \\varepsilon _ { 1 } )" + }, + { + "category_id": 13, + "poly": [ + 1217, + 1416, + 1290, + 1416, + 1290, + 1446, + 1217, + 1446 + ], + "score": 0.88, + "latex": "\\tilde { q } \\leq 1" + }, + { + "category_id": 13, + "poly": [ + 1117, + 1384, + 1206, + 1384, + 1206, + 1417, + 1117, + 1417 + ], + "score": 0.87, + "latex": "\\left( \\mu _ { 2 } , \\varepsilon _ { 2 } \\right)" + }, + { + "category_id": 13, + "poly": [ + 865, + 332, + 898, + 332, + 898, + 359, + 865, + 359 + ], + "score": 0.86, + "latex": "\\mu _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 953, + 332, + 986, + 332, + 986, + 359, + 953, + 359 + ], + "score": 0.85, + "latex": "\\mu _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 682, + 1497, + 716, + 1497, + 716, + 1525, + 682, + 1525 + ], + "score": 0.85, + "latex": "D ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 753, + 1749, + 780, + 1749, + 780, + 1775, + 753, + 1775 + ], + "score": 0.85, + "latex": "D" + }, + { + "category_id": 13, + "poly": [ + 431, + 1749, + 467, + 1749, + 467, + 1775, + 431, + 1775 + ], + "score": 0.85, + "latex": "\\mathcal { M }" + }, + { + "category_id": 13, + "poly": [ + 824, + 1417, + 850, + 1417, + 850, + 1443, + 824, + 1443 + ], + "score": 0.83, + "latex": "i ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 1190, + 429, + 1259, + 429, + 1259, + 461, + 1190, + 461 + ], + "score": 0.83, + "latex": "\\lambda \\geq 1" + }, + { + "category_id": 13, + "poly": [ + 1035, + 1416, + 1062, + 1416, + 1062, + 1442, + 1035, + 1442 + ], + "score": 0.78, + "latex": "D" + }, + { + "category_id": 13, + "poly": [ + 749, + 1499, + 775, + 1499, + 775, + 1525, + 749, + 1525 + ], + "score": 0.76, + "latex": "D" + }, + { + "category_id": 13, + "poly": [ + 494, + 1384, + 530, + 1384, + 530, + 1411, + 494, + 1411 + ], + "score": 0.68, + "latex": "\\mathcal { M }" + }, + { + "category_id": 14, + "poly": [ + 662, + 702, + 1041, + 702, + 1041, + 866, + 662, + 866 + ], + "score": 0.63, + "latex": "\\begin{array} { c l c r } { { \\displaystyle { \\bf P r } \\left[ \\mathcal { M } _ { \\sigma } ( D ) \\neq i ^ { * } \\right] \\le q ( \\bar { n } ) , } } \\\\ { { \\displaystyle } } \\\\ { { q ( \\bar { n } ) \\triangleq \\frac { 1 } { 2 } \\sum _ { i \\neq i ^ { * } } \\mathrm { e r f c } \\left( \\frac { n _ { i ^ { * } } - n _ { i } } { 2 \\sigma } \\right) . } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 904, + 1628, + 1199, + 1628, + 1199, + 1677, + 904, + 1677 + ], + "score": 0.52, + "latex": "B ( \\tilde { q } , \\mu _ { 1 } , \\varepsilon _ { 1 } ) \\triangleq e ^ { \\varepsilon _ { 1 } } / \\tilde { q } ^ { \\frac { 1 } { \\mu _ { 1 } - 1 } }" + }, + { + "category_id": 14, + "poly": [ + 370, + 1625, + 1207, + 1625, + 1207, + 1687, + 370, + 1687 + ], + "score": 0.39, + "latex": "\\begin{array} { r } { \\pmb { A } ( \\tilde { q } , \\mu _ { 2 } , \\varepsilon _ { 2 } ) \\triangleq ( 1 - \\tilde { q } ) / \\bigg ( 1 - \\big ( \\tilde { q } e ^ { \\varepsilon _ { 2 } } \\big ) ^ { \\frac { \\mu _ { 2 } - 1 } { \\mu _ { 2 } } } \\bigg ) a n d \\pmb { B } ( \\tilde { q } , \\mu _ { 1 } , \\varepsilon _ { 1 } ) \\triangleq e ^ { \\varepsilon _ { 1 } } / \\tilde { q } ^ { \\frac { 1 } { \\mu _ { 1 } - 1 } } . } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 691, + 707, + 1004, + 707, + 1004, + 748, + 691, + 748 + ], + "score": 0.37, + "latex": "\\mathbf { P r } \\left[ \\mathcal { M } _ { \\sigma } ( D ) \\neq i ^ { * } \\right] \\leq q ( \\bar { n } ) ," + }, + { + "category_id": 13, + "poly": [ + 1174, + 1967, + 1202, + 1967, + 1202, + 2001, + 1174, + 2001 + ], + "score": 0.35, + "latex": "\\zeta _ { 1 }" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 72.0, + 818.0, + 72.0, + 818.0, + 109.0, + 295.0, + 109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 222.0, + 815.0, + 222.0, + 815.0, + 268.0, + 293.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2125.0, + 832.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 474.0, + 822.0, + 474.0, + 822.0, + 513.0, + 294.0, + 513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 874.0, + 474.0, + 1406.0, + 474.0, + 1406.0, + 513.0, + 874.0, + 513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 506.0, + 1405.0, + 506.0, + 1405.0, + 542.0, + 292.0, + 542.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 538.0, + 831.0, + 538.0, + 831.0, + 572.0, + 292.0, + 572.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 956.0, + 538.0, + 1403.0, + 538.0, + 1403.0, + 572.0, + 956.0, + 572.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 566.0, + 1407.0, + 566.0, + 1407.0, + 604.0, + 292.0, + 604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 601.0, + 566.0, + 601.0, + 566.0, + 632.0, + 293.0, + 632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1381.0, + 600.0, + 1406.0, + 600.0, + 1406.0, + 630.0, + 1381.0, + 630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 294.0, + 1407.0, + 294.0, + 1407.0, + 332.0, + 292.0, + 332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 325.0, + 864.0, + 325.0, + 864.0, + 364.0, + 292.0, + 364.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 899.0, + 325.0, + 952.0, + 325.0, + 952.0, + 364.0, + 899.0, + 364.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 987.0, + 325.0, + 1406.0, + 325.0, + 1406.0, + 364.0, + 987.0, + 364.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 355.0, + 1406.0, + 355.0, + 1406.0, + 392.0, + 294.0, + 392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 384.0, + 444.0, + 384.0, + 444.0, + 421.0, + 293.0, + 421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1379.0, + 493.0, + 1379.0, + 493.0, + 1418.0, + 295.0, + 1418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 531.0, + 1379.0, + 906.0, + 1379.0, + 906.0, + 1418.0, + 531.0, + 1418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 996.0, + 1379.0, + 1116.0, + 1379.0, + 1116.0, + 1418.0, + 996.0, + 1418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1207.0, + 1379.0, + 1406.0, + 1379.0, + 1406.0, + 1418.0, + 1207.0, + 1418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1413.0, + 823.0, + 1413.0, + 823.0, + 1448.0, + 293.0, + 1448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 851.0, + 1413.0, + 1034.0, + 1413.0, + 1034.0, + 1448.0, + 851.0, + 1448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1063.0, + 1413.0, + 1216.0, + 1413.0, + 1216.0, + 1448.0, + 1063.0, + 1448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1291.0, + 1413.0, + 1407.0, + 1413.0, + 1407.0, + 1448.0, + 1291.0, + 1448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1448.0, + 297.0, + 1448.0, + 297.0, + 1494.0, + 290.0, + 1494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 550.0, + 1448.0, + 865.0, + 1448.0, + 865.0, + 1494.0, + 550.0, + 1494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 960.0, + 1448.0, + 1016.0, + 1448.0, + 1016.0, + 1494.0, + 960.0, + 1494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1393.0, + 1442.0, + 1397.0, + 1442.0, + 1397.0, + 1469.0, + 1393.0, + 1469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1496.0, + 681.0, + 1496.0, + 681.0, + 1533.0, + 296.0, + 1533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 717.0, + 1496.0, + 748.0, + 1496.0, + 748.0, + 1533.0, + 717.0, + 1533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 776.0, + 1496.0, + 893.0, + 1496.0, + 893.0, + 1533.0, + 776.0, + 1533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1204.0, + 1465.0, + 1296.0, + 1465.0, + 1296.0, + 1499.0, + 1204.0, + 1499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1715.0, + 1405.0, + 1715.0, + 1405.0, + 1751.0, + 295.0, + 1751.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1748.0, + 430.0, + 1748.0, + 430.0, + 1780.0, + 295.0, + 1780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 468.0, + 1748.0, + 752.0, + 1748.0, + 752.0, + 1780.0, + 468.0, + 1780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 781.0, + 1748.0, + 829.0, + 1748.0, + 829.0, + 1780.0, + 781.0, + 1780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 865.0, + 1748.0, + 988.0, + 1748.0, + 988.0, + 1780.0, + 865.0, + 1780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 895.0, + 509.0, + 895.0, + 509.0, + 935.0, + 293.0, + 935.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 851.0, + 895.0, + 938.0, + 895.0, + 938.0, + 935.0, + 851.0, + 935.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 971.0, + 895.0, + 1175.0, + 895.0, + 1175.0, + 935.0, + 971.0, + 935.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1283.0, + 895.0, + 1406.0, + 895.0, + 1406.0, + 935.0, + 1283.0, + 935.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 929.0, + 344.0, + 929.0, + 344.0, + 967.0, + 294.0, + 967.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 443.0, + 929.0, + 552.0, + 929.0, + 552.0, + 967.0, + 443.0, + 967.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1239.0, + 841.0, + 1239.0, + 841.0, + 1275.0, + 296.0, + 1275.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 938.0, + 1239.0, + 1406.0, + 1239.0, + 1406.0, + 1275.0, + 938.0, + 1275.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1271.0, + 498.0, + 1271.0, + 498.0, + 1305.0, + 294.0, + 1305.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 545.0, + 1271.0, + 554.0, + 1271.0, + 554.0, + 1305.0, + 545.0, + 1305.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1386.0, + 1279.0, + 1400.0, + 1279.0, + 1400.0, + 1303.0, + 1386.0, + 1303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1962.0, + 1173.0, + 1962.0, + 1173.0, + 2003.0, + 291.0, + 2003.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1353.0, + 1962.0, + 1408.0, + 1962.0, + 1408.0, + 2003.0, + 1353.0, + 2003.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1993.5, + 479.0, + 1993.5, + 479.0, + 2035.5, + 291.0, + 2035.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 642.0, + 775.0, + 642.0, + 775.0, + 690.0, + 292.0, + 690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 826.0, + 642.0, + 1180.0, + 642.0, + 1180.0, + 690.0, + 826.0, + 690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1395.0, + 642.0, + 1405.0, + 642.0, + 1405.0, + 690.0, + 1395.0, + 690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 678.0, + 431.0, + 678.0, + 431.0, + 714.0, + 295.0, + 714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 531.0, + 678.0, + 638.0, + 678.0, + 638.0, + 714.0, + 531.0, + 714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 751.0, + 375.0, + 751.0, + 375.0, + 788.0, + 293.0, + 788.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1341.0, + 862.0, + 1341.0, + 862.0, + 1378.0, + 297.0, + 1378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 426.0, + 746.0, + 426.0, + 746.0, + 467.0, + 294.0, + 467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 799.0, + 426.0, + 934.0, + 426.0, + 934.0, + 467.0, + 799.0, + 467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1047.0, + 426.0, + 1189.0, + 426.0, + 1189.0, + 467.0, + 1047.0, + 467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1260.0, + 426.0, + 1270.0, + 426.0, + 1270.0, + 467.0, + 1260.0, + 467.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 16, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 8, + "poly": [ + 504, + 272, + 1194, + 272, + 1194, + 427, + 504, + 427 + ], + "score": 0.97 + }, + { + "category_id": 8, + "poly": [ + 416, + 531, + 1283, + 531, + 1283, + 737, + 416, + 737 + ], + "score": 0.967 + }, + { + "category_id": 8, + "poly": [ + 418, + 1250, + 1282, + 1250, + 1282, + 1447, + 418, + 1447 + ], + "score": 0.967 + }, + { + "category_id": 8, + "poly": [ + 386, + 1778, + 1302, + 1778, + 1302, + 2034, + 386, + 2034 + ], + "score": 0.966 + }, + { + "category_id": 8, + "poly": [ + 499, + 804, + 1202, + 804, + 1202, + 1177, + 499, + 1177 + ], + "score": 0.964 + }, + { + "category_id": 8, + "poly": [ + 688, + 1505, + 1012, + 1505, + 1012, + 1579, + 688, + 1579 + ], + "score": 0.957 + }, + { + "category_id": 8, + "poly": [ + 738, + 1647, + 957, + 1647, + 957, + 1699, + 738, + 1699 + ], + "score": 0.948 + }, + { + "category_id": 1, + "poly": [ + 295, + 1733, + 871, + 1733, + 871, + 1768, + 295, + 1768 + ], + "score": 0.935 + }, + { + "category_id": 1, + "poly": [ + 298, + 1590, + 694, + 1590, + 694, + 1634, + 298, + 1634 + ], + "score": 0.932 + }, + { + "category_id": 1, + "poly": [ + 298, + 228, + 768, + 228, + 768, + 263, + 298, + 263 + ], + "score": 0.928 + }, + { + "category_id": 1, + "poly": [ + 295, + 1461, + 1007, + 1461, + 1007, + 1495, + 295, + 1495 + ], + "score": 0.928 + }, + { + "category_id": 1, + "poly": [ + 298, + 483, + 1095, + 483, + 1095, + 520, + 298, + 520 + ], + "score": 0.927 + }, + { + "category_id": 1, + "poly": [ + 296, + 438, + 522, + 438, + 522, + 471, + 296, + 471 + ], + "score": 0.925 + }, + { + "category_id": 1, + "poly": [ + 296, + 1205, + 755, + 1205, + 755, + 1238, + 296, + 1238 + ], + "score": 0.924 + }, + { + "category_id": 2, + "poly": [ + 297, + 73, + 816, + 73, + 816, + 106, + 297, + 106 + ], + "score": 0.921 + }, + { + "category_id": 1, + "poly": [ + 296, + 751, + 1337, + 751, + 1337, + 794, + 296, + 794 + ], + "score": 0.916 + }, + { + "category_id": 9, + "poly": [ + 1364, + 674, + 1402, + 674, + 1402, + 705, + 1364, + 705 + ], + "score": 0.869 + }, + { + "category_id": 9, + "poly": [ + 1364, + 1951, + 1402, + 1951, + 1402, + 1981, + 1364, + 1981 + ], + "score": 0.867 + }, + { + "category_id": 2, + "poly": [ + 836, + 2087, + 865, + 2087, + 865, + 2114, + 836, + 2114 + ], + "score": 0.861 + }, + { + "category_id": 9, + "poly": [ + 1364, + 1113, + 1402, + 1113, + 1402, + 1144, + 1364, + 1144 + ], + "score": 0.859 + }, + { + "category_id": 9, + "poly": [ + 1364, + 1660, + 1402, + 1660, + 1402, + 1692, + 1364, + 1692 + ], + "score": 0.858 + }, + { + "category_id": 14, + "poly": [ + 419, + 1247, + 1280, + 1247, + 1280, + 1455, + 419, + 1455 + ], + "score": 0.95, + "latex": "\\begin{array} { c } { { \\displaystyle \\exp \\left( \\beta _ { { \\mathcal M } } ( \\mu _ { 2 } ; D ^ { \\prime } , D ) \\right) = \\left( \\frac { ( 1 - p ) ^ { \\mu _ { 2 } } } { ( 1 - q ) ^ { \\mu _ { 2 } - 1 } } + \\sum _ { i \\neq i ^ { * } } \\frac { p _ { i } ^ { \\mu _ { 2 } } } { q _ { i } ^ { \\mu _ { 2 } - 1 } } \\right) ^ { 1 / ( \\mu _ { 2 } - 1 ) } \\leq \\exp ( \\varepsilon _ { 2 } ) } } \\\\ { { \\displaystyle \\implies \\frac { ( 1 - p ) ^ { \\mu _ { 2 } } } { ( 1 - q ) ^ { \\mu _ { 2 } - 1 } } + \\sum _ { i \\neq i ^ { * } } \\frac { p _ { i } ^ { \\mu _ { 2 } } } { q _ { i } ^ { \\mu _ { 2 } - 1 } } \\leq \\zeta _ { 2 } . } } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 491, + 801, + 1205, + 801, + 1205, + 1182, + 491, + 1182 + ], + "score": 0.95, + "latex": "\\begin{array} { r l } & { \\left( \\frac { \\sum _ { i \\neq j : i } \\cdot q _ { i } \\left( \\frac { q _ { i } } { p _ { i } } \\right) ^ { \\lambda - 1 } } { q } \\right) ^ { \\frac { n _ { 1 } - 1 } { \\lambda - 1 } } \\leq \\frac { \\sum _ { i \\neq i } \\cdot q _ { i } \\left( \\frac { q _ { i } } { p _ { i } } \\right) ^ { \\mu _ { 1 } - 1 } } { q } } \\\\ & { \\qquad \\implies \\sum _ { i \\neq i ^ { * } } q _ { i } \\left( \\frac { q _ { i } } { p _ { i } } \\right) ^ { \\lambda - 1 } \\leq q \\left( \\frac { \\sum _ { i \\neq i } \\cdot q _ { i } \\left( \\frac { q _ { i } } { p _ { i } } \\right) ^ { \\mu _ { 1 } - 1 } } { q } \\right) ^ { \\frac { \\lambda - 1 } { \\mu _ { 1 } - 1 } } } \\\\ & { \\qquad \\overset { ( 3 ) } { \\Longrightarrow } \\sum _ { i \\neq i ^ { * } } q _ { i } \\left( \\frac { q _ { i } } { p _ { i } } \\right) ^ { \\lambda - 1 } \\leq \\zeta _ { 1 } ^ { \\frac { \\lambda - 1 } { \\mu _ { 1 } - 1 } } \\cdot q ^ { 1 - \\frac { \\lambda - 1 } { \\mu _ { 1 } - 1 } } . } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 385, + 1776, + 1315, + 1776, + 1315, + 2033, + 385, + 2033 + ], + "score": 0.95, + "latex": "\\begin{array} { r l } & { \\exp \\left( \\beta _ { \\mathcal M } ( \\lambda , D , D ^ { \\prime } ) \\right) = \\left( \\frac { ( 1 - q ) ^ { \\lambda } } { ( 1 - p ) ^ { \\lambda - 1 } } + \\displaystyle \\sum _ { i \\neq i ^ { * } } \\frac { q _ { i } ^ { \\lambda } } { p _ { i } ^ { \\lambda - 1 } } \\right) ^ { 1 / ( \\lambda - 1 ) } } \\\\ & { \\quad \\le \\left( \\frac { ( 1 - q ) ^ { \\lambda } } { \\left( 1 - ( q ^ { \\mu _ { 2 } - 1 } \\zeta _ { 2 } ) ^ { \\frac { 1 } { \\mu _ { 2 } } } \\right) ^ { \\lambda - 1 } } + \\zeta _ { 1 } ^ { \\frac { \\lambda - 1 } { \\mu _ { 1 } - 1 } } \\cdot q ^ { 1 - \\frac { \\lambda - 1 } { \\mu _ { 1 } - 1 } } \\right) ^ { 1 / ( \\lambda - 1 ) } . } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 418, + 527, + 1282, + 527, + 1282, + 742, + 418, + 742 + ], + "score": 0.94, + "latex": "\\begin{array} { r l } & { \\exp \\left( \\beta _ { \\mathcal M } ( \\mu _ { 1 } ; D , D ^ { \\prime } ) \\right) = \\displaystyle \\left( \\frac { ( 1 - q ) ^ { \\mu _ { 1 } } } { ( 1 - p ) ^ { \\mu _ { 1 } - 1 } } + \\sum _ { i \\neq i * } \\frac { q _ { i } ^ { \\mu _ { 1 } } } { p _ { i } ^ { \\mu _ { 1 } - 1 } } \\right) ^ { 1 / ( \\mu _ { 1 } - 1 ) } \\leq \\exp ( \\varepsilon _ { 1 } ) } \\\\ & { \\qquad \\implies \\displaystyle \\sum _ { i > 1 } \\frac { q _ { i } ^ { \\mu _ { 1 } } } { p _ { i } ^ { \\mu _ { 1 } - 1 } } = \\sum _ { i > 1 } q _ { i } \\left( \\frac { q _ { i } } { p _ { i } } \\right) ^ { \\mu _ { 1 } - 1 } \\leq \\zeta _ { 1 } . } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 686, + 1504, + 1011, + 1504, + 1011, + 1579, + 686, + 1579 + ], + "score": 0.94, + "latex": "\\frac { ( 1 - p ) ^ { \\mu _ { 2 } } } { ( 1 - q ) ^ { \\mu _ { 2 } - 1 } } + \\frac { p ^ { \\mu _ { 2 } } } { q ^ { \\mu _ { 2 } - 1 } } \\leq \\zeta _ { 2 } ," + }, + { + "category_id": 13, + "poly": [ + 462, + 1589, + 590, + 1589, + 590, + 1636, + 462, + 1636 + ], + "score": 0.93, + "latex": "\\frac { p ^ { \\mu _ { 2 } } } { q ^ { \\mu _ { 2 } - 1 } } \\leq \\zeta _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 844, + 485, + 934, + 485, + 934, + 519, + 844, + 519 + ], + "score": 0.93, + "latex": "( \\mu _ { 1 } , \\varepsilon _ { 1 } )" + }, + { + "category_id": 14, + "poly": [ + 740, + 1644, + 960, + 1644, + 960, + 1698, + 740, + 1698 + ], + "score": 0.92, + "latex": "p \\leq \\left( q ^ { \\mu _ { 2 } - 1 } \\zeta _ { 2 } \\right) ^ { \\frac { 1 } { \\mu _ { 2 } } } ." + }, + { + "category_id": 13, + "poly": [ + 447, + 440, + 514, + 440, + 514, + 471, + 447, + 471 + ], + "score": 0.91, + "latex": "q \\leq \\tilde { q }" + }, + { + "category_id": 13, + "poly": [ + 608, + 1211, + 639, + 1211, + 639, + 1238, + 608, + 1238 + ], + "score": 0.85, + "latex": "\\mu _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 843, + 1737, + 862, + 1737, + 862, + 1763, + 843, + 1763 + ], + "score": 0.81, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 366, + 758, + 451, + 758, + 451, + 792, + 366, + 792 + ], + "score": 0.71, + "latex": "\\mu _ { 1 } \\geq \\lambda" + }, + { + "category_id": 14, + "poly": [ + 502, + 272, + 1187, + 272, + 1187, + 430, + 502, + 430 + ], + "score": 0.69, + "latex": "\\begin{array} { l } { q _ { i } \\triangleq \\mathbf { P r } \\left[ \\mathcal { M } ( D ) = i \\right] \\mathrm { ~ a n d ~ } q \\triangleq \\displaystyle \\sum _ { i \\neq i ^ { * } } q _ { i } = \\mathbf { P r } \\left[ \\mathcal { M } ( D ) \\neq i ^ { * } \\right] , } \\\\ { p _ { i } \\triangleq \\mathbf { P r } \\left[ \\mathcal { M } ( D ^ { \\prime } ) = i \\right] \\mathrm { ~ a n d ~ } p \\triangleq \\displaystyle \\sum _ { i \\neq i ^ { * } } p _ { i } = \\mathbf { P r } \\left[ \\mathcal { M } ( D ^ { \\prime } ) \\neq i ^ { * } \\right] , } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 366, + 750, + 624, + 750, + 624, + 793, + 366, + 793 + ], + "score": 0.67, + "latex": "\\mu _ { 1 } \\geq \\lambda , f ( x ) \\triangleq x ^ { \\frac { \\mu _ { 1 } - 1 } { \\lambda - 1 } }" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 72.0, + 818.0, + 72.0, + 818.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2121.0, + 832.0, + 2121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1734.0, + 842.0, + 1734.0, + 842.0, + 1771.0, + 297.0, + 1771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 863.0, + 1734.0, + 872.0, + 1734.0, + 872.0, + 1771.0, + 863.0, + 1771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1591.0, + 461.0, + 1591.0, + 461.0, + 1630.0, + 295.0, + 1630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 454.0, + 1586.5, + 698.0, + 1586.5, + 698.0, + 1640.5, + 454.0, + 1640.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 225.0, + 772.0, + 225.0, + 772.0, + 268.0, + 294.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1457.0, + 1009.0, + 1457.0, + 1009.0, + 1504.0, + 293.0, + 1504.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 482.0, + 843.0, + 482.0, + 843.0, + 523.0, + 294.0, + 523.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 935.0, + 482.0, + 1097.0, + 482.0, + 1097.0, + 523.0, + 935.0, + 523.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 436.0, + 446.0, + 436.0, + 446.0, + 475.0, + 294.0, + 475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 515.0, + 436.0, + 525.0, + 436.0, + 525.0, + 475.0, + 515.0, + 475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1200.0, + 607.0, + 1200.0, + 607.0, + 1242.0, + 293.0, + 1242.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 640.0, + 1200.0, + 757.0, + 1200.0, + 757.0, + 1242.0, + 640.0, + 1242.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 750.0, + 365.0, + 750.0, + 365.0, + 802.0, + 290.0, + 802.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 625.0, + 750.0, + 1342.0, + 750.0, + 1342.0, + 802.0, + 625.0, + 802.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 17, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 228, + 1404, + 228, + 1404, + 385, + 297, + 385 + ], + "score": 0.973 + }, + { + "category_id": 8, + "poly": [ + 333, + 668, + 1362, + 668, + 1362, + 955, + 333, + 955 + ], + "score": 0.973 + }, + { + "category_id": 8, + "poly": [ + 474, + 1338, + 1221, + 1338, + 1221, + 1512, + 474, + 1512 + ], + "score": 0.972 + }, + { + "category_id": 8, + "poly": [ + 394, + 1570, + 1411, + 1570, + 1411, + 2032, + 394, + 2032 + ], + "score": 0.957 + }, + { + "category_id": 8, + "poly": [ + 530, + 1168, + 1165, + 1168, + 1165, + 1248, + 530, + 1248 + ], + "score": 0.953 + }, + { + "category_id": 8, + "poly": [ + 593, + 1004, + 1101, + 1004, + 1101, + 1086, + 593, + 1086 + ], + "score": 0.949 + }, + { + "category_id": 1, + "poly": [ + 296, + 1101, + 1066, + 1101, + 1066, + 1160, + 296, + 1160 + ], + "score": 0.945 + }, + { + "category_id": 1, + "poly": [ + 296, + 1264, + 1406, + 1264, + 1406, + 1330, + 296, + 1330 + ], + "score": 0.944 + }, + { + "category_id": 1, + "poly": [ + 297, + 629, + 829, + 629, + 829, + 662, + 297, + 662 + ], + "score": 0.929 + }, + { + "category_id": 1, + "poly": [ + 299, + 969, + 563, + 969, + 563, + 1001, + 299, + 1001 + ], + "score": 0.927 + }, + { + "category_id": 1, + "poly": [ + 293, + 1529, + 1204, + 1529, + 1204, + 1564, + 293, + 1564 + ], + "score": 0.925 + }, + { + "category_id": 1, + "poly": [ + 297, + 397, + 1150, + 397, + 1150, + 432, + 297, + 432 + ], + "score": 0.918 + }, + { + "category_id": 2, + "poly": [ + 299, + 74, + 816, + 74, + 816, + 105, + 299, + 105 + ], + "score": 0.917 + }, + { + "category_id": 1, + "poly": [ + 300, + 543, + 1113, + 543, + 1113, + 600, + 300, + 600 + ], + "score": 0.902 + }, + { + "category_id": 8, + "poly": [ + 427, + 438, + 1273, + 438, + 1273, + 536, + 427, + 536 + ], + "score": 0.9 + }, + { + "category_id": 9, + "poly": [ + 1364, + 1030, + 1402, + 1030, + 1402, + 1062, + 1364, + 1062 + ], + "score": 0.867 + }, + { + "category_id": 2, + "poly": [ + 836, + 2087, + 866, + 2087, + 866, + 2113, + 836, + 2113 + ], + "score": 0.861 + }, + { + "category_id": 9, + "poly": [ + 1282, + 1846, + 1403, + 1846, + 1403, + 1880, + 1282, + 1880 + ], + "score": 0.816 + }, + { + "category_id": 14, + "poly": [ + 330, + 667, + 1370, + 667, + 1370, + 957, + 330, + 957 + ], + "score": 0.95, + "latex": "f _ { 1 } ^ { \\prime } ( x ) = \\frac { - \\lambda ( 1 - x ) ^ { \\lambda - 1 } ( 1 - ( x ^ { \\mu _ { 2 } - 1 } \\zeta _ { 2 } ) ^ { \\frac { 1 } { \\mu _ { 2 } } } ) ^ { \\lambda - 1 } } { ( 1 - ( x ^ { \\mu _ { 2 } - 1 } \\zeta _ { 2 } ) ^ { \\frac { 1 } { \\mu _ { 2 } } } ) ^ { 2 \\lambda - 2 } } \\\\ & { \\qquad + \\frac { ( 1 - x ) ^ { \\lambda } ( \\lambda - 1 ) ( 1 - ( x ^ { \\mu _ { 2 } - 1 } \\zeta _ { 2 } ) ^ { \\frac { 1 } { \\mu _ { 2 } } } ) ^ { \\lambda - 2 } \\zeta _ { 2 } ^ { \\frac { 1 } { \\mu _ { 2 } } } \\cdot \\frac { \\mu _ { 2 } - 1 } { \\mu _ { 2 } } \\cdot x ^ { - \\frac { 1 } { \\mu _ { 2 } } } } { ( 1 - ( x ^ { \\mu _ { 2 } - 1 } \\zeta _ { 2 } ) ^ { \\frac { 1 } { \\mu _ { 2 } } } ) ^ { 2 \\lambda - 2 } } } \\\\ & = \\frac { ( 1 - x ) ^ { \\lambda - 1 } } { ( 1 - ( x ^ { \\mu _ { 2 } - 1 } \\zeta _ { 2 } ) ^ { \\frac { 1 } { \\mu _ { 2 } } } ) ^ { \\lambda - 1 } } \\left( - \\lambda + ( \\lambda - 1 ) \\left( 1 - \\frac { 1 } { \\mu _ { 2 } } \\right) \\frac { 1 - x } { 1 - ( x ^ { \\mu _ { 2 } - 1 } \\zeta _ { 2 } ) ^ { \\frac { 1 } { \\mu _ { 2 } } } } \\left( \\frac { \\zeta _ { 2 } } { x } \\right) ^ { \\frac { 1 } { \\mu _ { 2 } } } \\right) ." + }, + { + "category_id": 14, + "poly": [ + 397, + 1570, + 1156, + 1570, + 1156, + 2035, + 397, + 2035 + ], + "score": 0.94, + "latex": "\\begin{array} { r l } { x \\leq \\zeta _ { 2 } \\Big / \\Big ( \\frac { \\mu _ { 1 } } { \\mu _ { 1 } - 1 } \\cdot \\frac { \\mu _ { 2 } } { \\mu _ { 2 } - 1 } \\Big ) ^ { \\mu _ { 2 } } \\implies x \\leq \\zeta _ { 2 } \\Big / \\Big ( \\frac { \\mu _ { 2 } } { \\mu _ { 2 } - 1 } \\Big ) ^ { \\mu _ { 2 } } } \\\\ & { \\implies 1 \\leq \\frac { \\zeta _ { 2 } } { x } \\cdot \\Big ( \\frac { \\mu _ { 2 } - 1 } { \\mu _ { 2 } } \\Big ) ^ { \\mu _ { 2 } } } \\\\ & { \\implies 1 \\leq \\frac { \\mu _ { 2 } - 1 } { \\mu _ { 2 } } \\Big ( \\frac { \\zeta _ { 2 } } { x } \\Big ) ^ { \\frac { 1 } { \\mu _ { 2 } } } } \\\\ & { \\implies 1 \\leq \\frac { \\mu _ { 2 } - 1 } { \\mu _ { 2 } } \\Big ( \\frac { \\zeta _ { 2 } } { x } \\Big ) ^ { \\frac { 1 } { \\mu _ { 2 } } } g } \\\\ & { \\implies 0 \\leq - 1 + \\frac { \\mu _ { 2 } - 1 } { \\mu _ { 2 } } \\Big ( \\frac { \\zeta _ { 2 } } { x } \\Big ) ^ { \\frac { 1 } { \\mu _ { 2 } } } g } \\\\ & { \\implies 0 \\leq - 1 + \\frac { \\mu _ { 2 } - 1 } { \\mu _ { 2 } } \\Big ( \\frac { \\zeta _ { 2 } } { x } \\Big ) ^ { \\frac { 1 } { \\mu _ { 2 } } } g } \\\\ & { \\implies 0 \\leq g _ { g } ^ { \\prime } ( x , y ) . } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 472, + 1331, + 1224, + 1331, + 1224, + 1514, + 472, + 1514 + ], + "score": 0.94, + "latex": "\\begin{array} { l } { { g _ { y } ^ { \\prime } ( x , y ) = - \\lambda ( \\lambda - 1 ) y ^ { \\lambda - 2 } + \\lambda ( \\lambda - 1 ) \\left( 1 - { \\frac { 1 } { \\mu _ { 2 } } } \\right) \\left( { \\frac { \\zeta _ { 2 } } { x } } \\right) ^ { \\frac { 1 } { \\mu _ { 2 } } } y ^ { \\lambda - 1 } } } \\\\ { { \\ = \\lambda ( \\lambda - 1 ) y ^ { \\lambda - 2 } \\left( - 1 + \\left( 1 - { \\frac { 1 } { \\mu _ { 2 } } } \\right) \\left( { \\frac { \\zeta _ { 2 } } { x } } \\right) ^ { \\frac { 1 } { \\mu _ { 2 } } } y \\right) . } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 342, + 1102, + 682, + 1102, + 682, + 1161, + 342, + 1161 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { x \\in \\left[ 0 , \\zeta _ { 2 } / \\left( \\frac { \\mu _ { 1 } } { \\mu _ { 1 } - 1 } \\cdot \\frac { \\mu _ { 2 } } { \\mu _ { 2 } - 1 } \\right) ^ { \\mu _ { 2 } } \\right] } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 888, + 1265, + 1083, + 1265, + 1083, + 1299, + 888, + 1299 + ], + "score": 0.93, + "latex": "g ( x , y ) \\geq g ( x , 1 )" + }, + { + "category_id": 13, + "poly": [ + 430, + 1530, + 523, + 1530, + 523, + 1568, + 430, + 1568 + ], + "score": 0.93, + "latex": "g _ { y } ^ { \\prime } ( x , y )" + }, + { + "category_id": 13, + "poly": [ + 521, + 1297, + 600, + 1297, + 600, + 1330, + 521, + 1330 + ], + "score": 0.93, + "latex": "g ( x , y )" + }, + { + "category_id": 13, + "poly": [ + 457, + 1266, + 536, + 1266, + 536, + 1298, + 457, + 1298 + ], + "score": 0.93, + "latex": "g ( x , y )" + }, + { + "category_id": 13, + "poly": [ + 943, + 1115, + 1024, + 1115, + 1024, + 1149, + 943, + 1149 + ], + "score": 0.93, + "latex": "g ( x , y )" + }, + { + "category_id": 14, + "poly": [ + 592, + 997, + 1107, + 997, + 1107, + 1085, + 592, + 1085 + ], + "score": 0.92, + "latex": "f _ { 1 } ^ { \\prime } ( x ) \\geq - \\lambda + ( \\lambda - 1 ) \\left( 1 - \\frac { 1 } { \\mu _ { 2 } } \\right) \\left( \\frac { \\zeta _ { 2 } } { x } \\right) ^ { \\frac { 1 } { \\mu _ { 2 } } } ." + }, + { + "category_id": 13, + "poly": [ + 360, + 554, + 523, + 554, + 523, + 588, + 360, + 588 + ], + "score": 0.92, + "latex": "f _ { 1 } ( x ) + f _ { 2 } ( x )" + }, + { + "category_id": 13, + "poly": [ + 650, + 630, + 714, + 630, + 714, + 664, + 650, + 664 + ], + "score": 0.92, + "latex": "f _ { 1 } ( x )" + }, + { + "category_id": 14, + "poly": [ + 532, + 1160, + 1167, + 1160, + 1167, + 1248, + 532, + 1248 + ], + "score": 0.91, + "latex": "g ( x , y ) \\triangleq - \\lambda \\cdot y ^ { \\lambda - 1 } + ( \\lambda - 1 ) \\left( 1 - { \\frac { 1 } { \\mu _ { 2 } } } \\right) \\left( { \\frac { \\zeta _ { 2 } } { x } } \\right) ^ { \\frac { 1 } { \\mu _ { 2 } } } y ^ { \\lambda } ." + }, + { + "category_id": 13, + "poly": [ + 734, + 1114, + 856, + 1114, + 856, + 1149, + 734, + 1149 + ], + "score": 0.91, + "latex": "y \\in [ 1 , \\infty )" + }, + { + "category_id": 13, + "poly": [ + 1050, + 261, + 1307, + 261, + 1307, + 294, + 1050, + 294 + ], + "score": 0.9, + "latex": "q = \\mathbf { P r } \\left[ \\mathcal { M } ( D ) \\neq i ^ { * } \\right]" + }, + { + "category_id": 13, + "poly": [ + 945, + 399, + 1002, + 399, + 1002, + 433, + 945, + 433 + ], + "score": 0.9, + "latex": "f _ { 1 } ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 1146, + 293, + 1340, + 293, + 1340, + 325, + 1146, + 325 + ], + "score": 0.88, + "latex": "\\mathbf { P r } \\left[ \\mathcal { M } ( D ) \\neq i ^ { * } \\right]" + }, + { + "category_id": 13, + "poly": [ + 1055, + 399, + 1113, + 399, + 1113, + 433, + 1055, + 433 + ], + "score": 0.83, + "latex": "f _ { 2 } ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 1090, + 295, + 1108, + 295, + 1108, + 323, + 1090, + 323 + ], + "score": 0.82, + "latex": "\\tilde { q }" + }, + { + "category_id": 13, + "poly": [ + 713, + 1271, + 732, + 1271, + 732, + 1297, + 713, + 1297 + ], + "score": 0.81, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 775, + 1302, + 794, + 1302, + 794, + 1329, + 775, + 1329 + ], + "score": 0.81, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 434, + 357, + 452, + 357, + 452, + 385, + 434, + 385 + ], + "score": 0.81, + "latex": "q" + }, + { + "category_id": 13, + "poly": [ + 1344, + 1303, + 1362, + 1303, + 1362, + 1329, + 1344, + 1329 + ], + "score": 0.81, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 1069, + 1537, + 1085, + 1537, + 1085, + 1563, + 1069, + 1563 + ], + "score": 0.8, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 999, + 1537, + 1017, + 1537, + 1017, + 1558, + 999, + 1558 + ], + "score": 0.8, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 1304, + 2000, + 1323, + 2000, + 1323, + 2020, + 1304, + 2020 + ], + "score": 0.77, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 1374, + 1998, + 1391, + 1998, + 1391, + 2024, + 1374, + 2024 + ], + "score": 0.75, + "latex": "y" + }, + { + "category_id": 14, + "poly": [ + 421, + 432, + 1269, + 432, + 1269, + 605, + 421, + 605 + ], + "score": 0.72, + "latex": "\\begin{array} { l } { { f _ { 1 } ( x ) \\triangleq \\displaystyle \\frac { ( 1 - x ) ^ { \\lambda } } { \\Big ( 1 - ( x ^ { \\mu _ { 2 } - 1 } \\zeta _ { 2 } ) ^ { \\frac { 1 } { \\mu _ { 2 } } } \\Big ) ^ { \\lambda - 1 } } \\qquad \\ a n d \\qquad f _ { 2 } ( x ) \\triangleq \\zeta _ { 1 } ^ { \\frac { \\lambda - 1 } { \\mu _ { 1 } - 1 } } \\cdot x ^ { 1 - \\frac { \\lambda - 1 } { \\mu _ { 1 } - 1 } } , } } \\\\ { { \\mathrm { } } } \\\\ { { \\mathrm { } } } \\\\ { { \\mathrm { } } { \\mathrm { } } { } \\\\ { \\mathrm { } { } \\mathrm { } + f _ { 2 } ( x ) \\ i s \\ i n c r e a s i n g \\ i n \\Big [ 0 , \\operatorname* { m i n } \\Big ( 1 , \\zeta _ { 2 } \\Big / \\Big ( \\frac { \\mu _ { 1 } } { \\mu _ { 1 } - 1 } \\cdot \\frac { \\mu _ { 2 } } { \\mu _ { 2 } - 1 } \\Big ) ^ { \\mu _ { 2 } } \\Big ) \\Big ] . } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 705, + 542, + 1107, + 542, + 1107, + 600, + 705, + 600 + ], + "score": 0.65, + "latex": "\\begin{array} { r } { \\Big [ 0 , \\operatorname* { m i n } \\left( 1 , \\zeta _ { 2 } / \\left( \\frac { \\mu _ { 1 } } { \\mu _ { 1 } - 1 } \\cdot \\frac { \\mu _ { 2 } } { \\mu _ { 2 } - 1 } \\right) ^ { \\mu _ { 2 } } \\right) \\Big ] . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1323, + 1847, + 1392, + 1847, + 1392, + 1878, + 1323, + 1878 + ], + "score": 0.63, + "latex": "y \\geq 1" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 72.0, + 817.0, + 72.0, + 817.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 869.0, + 2085.0, + 869.0, + 2125.0, + 832.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 228.0, + 1406.0, + 228.0, + 1406.0, + 266.0, + 294.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 258.0, + 1049.0, + 258.0, + 1049.0, + 296.0, + 295.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1308.0, + 258.0, + 1405.0, + 258.0, + 1405.0, + 296.0, + 1308.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 289.0, + 1089.0, + 289.0, + 1089.0, + 327.0, + 294.0, + 327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1109.0, + 289.0, + 1145.0, + 289.0, + 1145.0, + 327.0, + 1109.0, + 327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1341.0, + 289.0, + 1405.0, + 289.0, + 1405.0, + 327.0, + 1341.0, + 327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 316.0, + 1406.0, + 316.0, + 1406.0, + 361.0, + 291.0, + 361.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 352.0, + 433.0, + 352.0, + 433.0, + 385.0, + 295.0, + 385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 453.0, + 352.0, + 667.0, + 352.0, + 667.0, + 385.0, + 453.0, + 385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 277.0, + 1087.0, + 341.0, + 1087.0, + 341.0, + 1169.0, + 277.0, + 1169.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 683.0, + 1087.0, + 733.0, + 1087.0, + 733.0, + 1169.0, + 683.0, + 1169.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 857.0, + 1087.0, + 942.0, + 1087.0, + 942.0, + 1169.0, + 857.0, + 1169.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1025.0, + 1087.0, + 1083.0, + 1087.0, + 1083.0, + 1169.0, + 1025.0, + 1169.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1262.0, + 456.0, + 1262.0, + 456.0, + 1301.0, + 295.0, + 1301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 537.0, + 1262.0, + 712.0, + 1262.0, + 712.0, + 1301.0, + 537.0, + 1301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 733.0, + 1262.0, + 887.0, + 1262.0, + 887.0, + 1301.0, + 733.0, + 1301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1084.0, + 1262.0, + 1404.0, + 1262.0, + 1404.0, + 1301.0, + 1084.0, + 1301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1293.0, + 520.0, + 1293.0, + 520.0, + 1335.0, + 293.0, + 1335.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 601.0, + 1293.0, + 774.0, + 1293.0, + 774.0, + 1335.0, + 601.0, + 1335.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 795.0, + 1293.0, + 1343.0, + 1293.0, + 1343.0, + 1335.0, + 795.0, + 1335.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1363.0, + 1293.0, + 1406.0, + 1293.0, + 1406.0, + 1335.0, + 1363.0, + 1335.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 628.0, + 649.0, + 628.0, + 649.0, + 666.0, + 294.0, + 666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 715.0, + 628.0, + 832.0, + 628.0, + 832.0, + 666.0, + 715.0, + 666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 969.0, + 563.0, + 969.0, + 563.0, + 1001.0, + 298.0, + 1001.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1528.0, + 429.0, + 1528.0, + 429.0, + 1568.0, + 296.0, + 1568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 524.0, + 1528.0, + 998.0, + 1528.0, + 998.0, + 1568.0, + 524.0, + 1568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1018.0, + 1528.0, + 1068.0, + 1528.0, + 1068.0, + 1568.0, + 1018.0, + 1568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1086.0, + 1528.0, + 1208.0, + 1528.0, + 1208.0, + 1568.0, + 1086.0, + 1568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 396.0, + 944.0, + 396.0, + 944.0, + 439.0, + 294.0, + 439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1003.0, + 396.0, + 1054.0, + 396.0, + 1054.0, + 439.0, + 1003.0, + 439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1114.0, + 396.0, + 1150.0, + 396.0, + 1150.0, + 439.0, + 1114.0, + 439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 280.0, + 524.0, + 359.0, + 524.0, + 359.0, + 618.0, + 280.0, + 618.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 18, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 1228, + 1407, + 1228, + 1407, + 1370, + 296, + 1370 + ], + "score": 0.973 + }, + { + "category_id": 8, + "poly": [ + 516, + 813, + 1181, + 813, + 1181, + 992, + 516, + 992 + ], + "score": 0.971 + }, + { + "category_id": 8, + "poly": [ + 647, + 1053, + 1055, + 1053, + 1055, + 1217, + 647, + 1217 + ], + "score": 0.966 + }, + { + "category_id": 8, + "poly": [ + 542, + 1804, + 1155, + 1804, + 1155, + 2035, + 542, + 2035 + ], + "score": 0.965 + }, + { + "category_id": 1, + "poly": [ + 296, + 1468, + 1406, + 1468, + 1406, + 1563, + 296, + 1563 + ], + "score": 0.96 + }, + { + "category_id": 8, + "poly": [ + 603, + 285, + 1096, + 285, + 1096, + 367, + 603, + 367 + ], + "score": 0.957 + }, + { + "category_id": 1, + "poly": [ + 297, + 1720, + 1401, + 1720, + 1401, + 1793, + 297, + 1793 + ], + "score": 0.957 + }, + { + "category_id": 8, + "poly": [ + 593, + 481, + 1104, + 481, + 1104, + 565, + 593, + 565 + ], + "score": 0.953 + }, + { + "category_id": 8, + "poly": [ + 621, + 1650, + 1074, + 1650, + 1074, + 1694, + 621, + 1694 + ], + "score": 0.947 + }, + { + "category_id": 8, + "poly": [ + 358, + 669, + 1341, + 669, + 1341, + 757, + 358, + 757 + ], + "score": 0.945 + }, + { + "category_id": 1, + "poly": [ + 291, + 1571, + 1403, + 1571, + 1403, + 1635, + 291, + 1635 + ], + "score": 0.944 + }, + { + "category_id": 1, + "poly": [ + 296, + 394, + 1404, + 394, + 1404, + 466, + 296, + 466 + ], + "score": 0.942 + }, + { + "category_id": 1, + "poly": [ + 296, + 1003, + 728, + 1003, + 728, + 1037, + 296, + 1037 + ], + "score": 0.93 + }, + { + "category_id": 1, + "poly": [ + 293, + 225, + 1176, + 225, + 1176, + 272, + 293, + 272 + ], + "score": 0.929 + }, + { + "category_id": 1, + "poly": [ + 296, + 765, + 793, + 765, + 793, + 798, + 296, + 798 + ], + "score": 0.929 + }, + { + "category_id": 1, + "poly": [ + 298, + 619, + 747, + 619, + 747, + 655, + 298, + 655 + ], + "score": 0.925 + }, + { + "category_id": 2, + "poly": [ + 297, + 73, + 817, + 73, + 817, + 107, + 297, + 107 + ], + "score": 0.922 + }, + { + "category_id": 1, + "poly": [ + 297, + 573, + 504, + 573, + 504, + 607, + 297, + 607 + ], + "score": 0.919 + }, + { + "category_id": 2, + "poly": [ + 834, + 2087, + 867, + 2087, + 867, + 2114, + 834, + 2114 + ], + "score": 0.861 + }, + { + "category_id": 2, + "poly": [ + 1380, + 1401, + 1405, + 1401, + 1405, + 1436, + 1380, + 1436 + ], + "score": 0.757 + }, + { + "category_id": 13, + "poly": [ + 537, + 395, + 769, + 395, + 769, + 441, + 537, + 441 + ], + "score": 0.95, + "latex": "\\begin{array} { r } { y = \\frac { 1 - x } { 1 - ( x ^ { \\mu _ { 2 } - 1 } \\zeta _ { 2 } ) ^ { 1 / \\mu _ { 2 } } } } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 600, + 284, + 1096, + 284, + 1096, + 365, + 600, + 365 + ], + "score": 0.94, + "latex": "{ \\frac { 1 - x } { 1 - ( x ^ { \\mu _ { 2 } - 1 } \\zeta _ { 2 } ) ^ { \\frac { 1 } { \\mu _ { 2 } } } } } \\geq { \\frac { 1 - x } { 1 - ( x ^ { \\mu _ { 2 } - 1 } x ) ^ { \\frac { 1 } { \\mu _ { 2 } } } } } = 1 ." + }, + { + "category_id": 14, + "poly": [ + 516, + 810, + 1180, + 810, + 1180, + 993, + 516, + 993 + ], + "score": 0.94, + "latex": "\\begin{array} { c } { { f ^ { \\prime } ( x ) \\geq - \\lambda + ( \\lambda - 1 ) \\left( 1 - { \\frac { 1 } { \\mu _ { 2 } } } \\right) \\left( { \\frac { \\zeta _ { 2 } } { x } } \\right) ^ { \\frac { 1 } { \\mu _ { 2 } } } + 1 - { \\frac { \\lambda - 1 } { \\mu _ { 1 } - 1 } } } } \\\\ { { = ( \\lambda - 1 ) \\left( - { \\frac { \\mu _ { 1 } } { \\mu _ { 1 } - 1 } } + { \\frac { \\mu _ { 2 } - 1 } { \\mu _ { 2 } } } \\left( { \\frac { \\zeta _ { 2 } } { x } } \\right) ^ { \\frac { 1 } { \\mu _ { 2 } } } \\right) . } } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 541, + 1804, + 1152, + 1804, + 1152, + 2040, + 541, + 2040 + ], + "score": 0.94, + "latex": "\\begin{array} { r l } { \\log \\left\\{ \\big ( \\tilde { q } e ^ { \\varepsilon _ { 2 } } \\big ) ^ { 1 - 1 / \\mu _ { 2 } } \\right\\} = \\log \\Bigg \\{ \\tilde { q } ^ { 1 - \\frac { 1 } { \\mu _ { 2 } } } \\exp \\left( \\frac { \\mu _ { 2 } - 1 } { \\sigma ^ { 2 } } \\right) \\Bigg \\} } & { } \\\\ { \\quad \\quad \\quad \\quad \\quad = \\left( 1 - \\frac { 1 } { \\mu _ { 2 } } \\right) \\cdot \\log \\tilde { q } + \\frac { \\mu _ { 2 } - 1 } { \\sigma ^ { 2 } } } & { } \\\\ { \\quad \\quad \\quad \\quad = \\frac { 1 } { \\mu _ { 2 } } \\log \\frac { 1 } { \\tilde { q } } + \\frac { \\mu _ { 2 } } { \\sigma ^ { 2 } } - \\frac { 1 } { \\sigma ^ { 2 } } - \\log \\frac { 1 } { \\tilde { q } } , } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 410, + 1752, + 557, + 1752, + 557, + 1793, + 410, + 1793 + ], + "score": 0.94, + "latex": "\\left( \\tilde { q } e ^ { \\varepsilon _ { 2 } } \\right) ^ { 1 - 1 / \\mu _ { 2 } }" + }, + { + "category_id": 13, + "poly": [ + 406, + 227, + 585, + 227, + 585, + 273, + 406, + 273 + ], + "score": 0.93, + "latex": "\\frac { 1 - x } { 1 - ( x ^ { \\mu _ { 2 } - 1 } \\zeta _ { 2 } ) ^ { 1 / \\mu _ { 2 } } }" + }, + { + "category_id": 14, + "poly": [ + 636, + 1051, + 1055, + 1051, + 1055, + 1218, + 636, + 1218 + ], + "score": 0.93, + "latex": "\\begin{array} { r l } & { - \\frac { \\mu _ { 1 } } { \\mu _ { 1 } - 1 } + \\frac { \\mu _ { 2 } - 1 } { \\mu _ { 2 } } \\left( \\frac { \\zeta _ { 2 } } { x } \\right) ^ { \\frac { 1 } { \\mu _ { 2 } } } \\geq 0 } \\\\ & { \\iff \\left( \\frac { \\mu _ { 1 } } { \\mu _ { 1 } - 1 } \\cdot \\frac { \\mu _ { 2 } } { \\mu _ { 2 } - 1 } \\right) ^ { \\mu _ { 2 } } \\leq \\frac { \\zeta _ { 2 } } { x } . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1028, + 398, + 1224, + 398, + 1224, + 432, + 1028, + 432 + ], + "score": 0.93, + "latex": "g ( x , y ) \\geq g ( x , 1 )" + }, + { + "category_id": 14, + "poly": [ + 593, + 477, + 1102, + 477, + 1102, + 564, + 593, + 564 + ], + "score": 0.93, + "latex": "f _ { 1 } ^ { \\prime } ( x ) \\geq - \\lambda + ( \\lambda - 1 ) \\left( 1 - \\frac { 1 } { \\mu _ { 2 } } \\right) \\left( \\frac { \\zeta _ { 2 } } { x } \\right) ^ { \\frac { 1 } { \\mu _ { 2 } } } ," + }, + { + "category_id": 13, + "poly": [ + 627, + 1229, + 1004, + 1229, + 1004, + 1287, + 627, + 1287 + ], + "score": 0.93, + "latex": "\\begin{array} { r c l } { x } & { \\in } & { \\left[ 0 , \\zeta _ { 2 } / \\left( { \\frac { \\mu _ { 1 } } { \\mu _ { 1 } - 1 } } \\cdot { \\frac { \\mu _ { 2 } } { \\mu _ { 2 } - 1 } } \\right) ^ { \\mu _ { 2 } } \\right] } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 343, + 1004, + 406, + 1004, + 406, + 1038, + 343, + 1038 + ], + "score": 0.92, + "latex": "f ^ { \\prime } ( x )" + }, + { + "category_id": 13, + "poly": [ + 567, + 621, + 632, + 621, + 632, + 655, + 567, + 655 + ], + "score": 0.92, + "latex": "f _ { 2 } ( x )" + }, + { + "category_id": 13, + "poly": [ + 972, + 232, + 1052, + 232, + 1052, + 263, + 972, + 263 + ], + "score": 0.92, + "latex": "x \\leq \\zeta _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 652, + 1293, + 802, + 1293, + 802, + 1330, + 652, + 1330 + ], + "score": 0.92, + "latex": "f ( q ) \\leq f ( \\tilde { q } )" + }, + { + "category_id": 14, + "poly": [ + 355, + 666, + 1342, + 666, + 1342, + 756, + 355, + 756 + ], + "score": 0.92, + "latex": "f _ { 2 } ^ { \\prime } ( x ) = \\zeta _ { 1 } ^ { \\frac { \\lambda - 1 } { \\mu _ { 1 } - 1 } } \\cdot \\left( 1 - { \\frac { \\lambda - 1 } { \\mu _ { 1 } - 1 } } \\right) x ^ { - { \\frac { \\lambda - 1 } { \\mu _ { 1 } - 1 } } } = \\left( { \\frac { \\zeta _ { 1 } } { x } } \\right) ^ { { \\frac { \\lambda - 1 } { \\mu _ { 1 } - 1 } } } \\left( 1 - { \\frac { \\lambda - 1 } { \\mu _ { 1 } - 1 } } \\right) \\geq 1 - { \\frac { \\lambda - 1 } { \\mu _ { 1 } - 1 } } ." + }, + { + "category_id": 14, + "poly": [ + 622, + 1647, + 1075, + 1647, + 1075, + 1692, + 622, + 1692 + ], + "score": 0.91, + "latex": "\\mu _ { 2 } = \\sigma \\cdot \\sqrt { \\log ( 1 / \\tilde { q } ) } , a n d \\mu _ { 1 } = \\mu _ { 2 } + 1 ." + }, + { + "category_id": 13, + "poly": [ + 297, + 1282, + 535, + 1282, + 535, + 1340, + 297, + 1340 + ], + "score": 0.91, + "latex": "\\zeta _ { 2 } / { \\left( \\frac { \\mu _ { 1 } } { \\mu _ { 1 } - 1 } \\cdot \\frac { \\mu _ { 2 } } { \\mu _ { 2 } - 1 } \\right) } ^ { \\mu _ { 2 } }" + }, + { + "category_id": 13, + "poly": [ + 665, + 231, + 744, + 231, + 744, + 263, + 665, + 263 + ], + "score": 0.91, + "latex": "\\zeta _ { 2 } \\geq 1" + }, + { + "category_id": 13, + "poly": [ + 1303, + 400, + 1372, + 400, + 1372, + 431, + 1303, + 431 + ], + "score": 0.91, + "latex": "y \\geq 1" + }, + { + "category_id": 13, + "poly": [ + 343, + 1241, + 401, + 1241, + 401, + 1275, + 343, + 1275 + ], + "score": 0.91, + "latex": "f ( x )" + }, + { + "category_id": 13, + "poly": [ + 794, + 232, + 864, + 232, + 864, + 261, + 794, + 261 + ], + "score": 0.9, + "latex": "x \\leq 1" + }, + { + "category_id": 13, + "poly": [ + 847, + 1530, + 879, + 1530, + 879, + 1559, + 847, + 1559 + ], + "score": 0.87, + "latex": "\\sigma ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1218, + 1475, + 1250, + 1475, + 1250, + 1502, + 1218, + 1502 + ], + "score": 0.86, + "latex": "\\mu _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 1298, + 1475, + 1331, + 1475, + 1331, + 1503, + 1298, + 1503 + ], + "score": 0.85, + "latex": "\\mu _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 344, + 1536, + 376, + 1536, + 376, + 1564, + 344, + 1564 + ], + "score": 0.85, + "latex": "\\mu _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 297, + 1601, + 328, + 1601, + 328, + 1631, + 297, + 1631 + ], + "score": 0.83, + "latex": "\\sigma ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1368, + 1507, + 1400, + 1507, + 1400, + 1534, + 1368, + 1534 + ], + "score": 0.83, + "latex": "\\mu _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 1250, + 1239, + 1405, + 1239, + 1405, + 1277, + 1250, + 1277 + ], + "score": 0.83, + "latex": "q \\leq \\tilde { q } \\leq" + }, + { + "category_id": 13, + "poly": [ + 353, + 1503, + 372, + 1503, + 372, + 1529, + 353, + 1529 + ], + "score": 0.78, + "latex": "\\lambda" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 72.0, + 818.0, + 72.0, + 818.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 830.0, + 2084.0, + 870.0, + 2084.0, + 870.0, + 2122.0, + 830.0, + 2122.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1383.0, + 1407.0, + 1404.0, + 1407.0, + 1404.0, + 1437.0, + 1383.0, + 1437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 277.0, + 1217.0, + 342.0, + 1217.0, + 342.0, + 1292.0, + 277.0, + 1292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 402.0, + 1217.0, + 626.0, + 1217.0, + 626.0, + 1292.0, + 402.0, + 1292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1005.0, + 1217.0, + 1249.0, + 1217.0, + 1249.0, + 1292.0, + 1005.0, + 1292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1406.0, + 1217.0, + 1418.0, + 1217.0, + 1418.0, + 1292.0, + 1406.0, + 1292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 279.0, + 1267.0, + 296.0, + 1267.0, + 296.0, + 1358.0, + 279.0, + 1358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 536.0, + 1267.0, + 651.0, + 1267.0, + 651.0, + 1358.0, + 536.0, + 1358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 803.0, + 1267.0, + 1424.0, + 1267.0, + 1424.0, + 1358.0, + 803.0, + 1358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1333.0, + 446.0, + 1333.0, + 446.0, + 1374.0, + 293.0, + 1374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1379.0, + 1334.0, + 1408.0, + 1334.0, + 1408.0, + 1370.0, + 1379.0, + 1370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1464.0, + 1217.0, + 1464.0, + 1217.0, + 1509.0, + 294.0, + 1509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1251.0, + 1464.0, + 1297.0, + 1464.0, + 1297.0, + 1509.0, + 1251.0, + 1509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1332.0, + 1464.0, + 1406.0, + 1464.0, + 1406.0, + 1509.0, + 1332.0, + 1509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1495.0, + 352.0, + 1495.0, + 352.0, + 1542.0, + 293.0, + 1542.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 373.0, + 1495.0, + 1367.0, + 1495.0, + 1367.0, + 1542.0, + 373.0, + 1542.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 1495.0, + 1404.0, + 1495.0, + 1404.0, + 1542.0, + 1401.0, + 1542.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1530.0, + 343.0, + 1530.0, + 343.0, + 1563.0, + 295.0, + 1563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 377.0, + 1530.0, + 846.0, + 1530.0, + 846.0, + 1563.0, + 377.0, + 1563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 880.0, + 1530.0, + 890.0, + 1530.0, + 890.0, + 1563.0, + 880.0, + 1563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1719.0, + 1403.0, + 1719.0, + 1403.0, + 1756.0, + 295.0, + 1756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1744.0, + 409.0, + 1744.0, + 409.0, + 1800.0, + 291.0, + 1800.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 558.0, + 1744.0, + 869.0, + 1744.0, + 869.0, + 1800.0, + 558.0, + 1800.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1567.0, + 1406.0, + 1567.0, + 1406.0, + 1609.0, + 292.0, + 1609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1597.0, + 296.0, + 1597.0, + 296.0, + 1639.0, + 293.0, + 1639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 1597.0, + 807.0, + 1597.0, + 807.0, + 1639.0, + 329.0, + 1639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 285.0, + 383.0, + 536.0, + 383.0, + 536.0, + 456.0, + 285.0, + 456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 770.0, + 383.0, + 1027.0, + 383.0, + 1027.0, + 456.0, + 770.0, + 456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1225.0, + 383.0, + 1302.0, + 383.0, + 1302.0, + 456.0, + 1225.0, + 456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1373.0, + 383.0, + 1415.0, + 383.0, + 1415.0, + 456.0, + 1373.0, + 456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 431.0, + 343.0, + 431.0, + 343.0, + 473.0, + 291.0, + 473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1001.0, + 342.0, + 1001.0, + 342.0, + 1041.0, + 294.0, + 1041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 407.0, + 1001.0, + 727.0, + 1001.0, + 727.0, + 1041.0, + 407.0, + 1041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 282.0, + 205.0, + 405.0, + 205.0, + 405.0, + 283.0, + 282.0, + 283.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 586.0, + 205.0, + 664.0, + 205.0, + 664.0, + 283.0, + 586.0, + 283.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 745.0, + 205.0, + 793.0, + 205.0, + 793.0, + 283.0, + 745.0, + 283.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 865.0, + 205.0, + 971.0, + 205.0, + 971.0, + 283.0, + 865.0, + 283.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1053.0, + 205.0, + 1187.0, + 205.0, + 1187.0, + 283.0, + 1053.0, + 283.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 760.0, + 795.0, + 760.0, + 795.0, + 804.0, + 295.0, + 804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 616.0, + 566.0, + 616.0, + 566.0, + 658.0, + 295.0, + 658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 633.0, + 616.0, + 749.0, + 616.0, + 749.0, + 658.0, + 633.0, + 658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 571.0, + 506.0, + 571.0, + 506.0, + 614.0, + 294.0, + 614.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 19, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1679, + 1405, + 1679, + 1405, + 1868, + 297, + 1868 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 296, + 1323, + 1405, + 1323, + 1405, + 1489, + 296, + 1489 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 299, + 1880, + 1402, + 1880, + 1402, + 2035, + 299, + 2035 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 297, + 664, + 1405, + 664, + 1405, + 789, + 297, + 789 + ], + "score": 0.973 + }, + { + "category_id": 8, + "poly": [ + 557, + 350, + 1139, + 350, + 1139, + 572, + 557, + 572 + ], + "score": 0.969 + }, + { + "category_id": 1, + "poly": [ + 298, + 1194, + 1403, + 1194, + 1403, + 1288, + 298, + 1288 + ], + "score": 0.961 + }, + { + "category_id": 1, + "poly": [ + 299, + 1500, + 1404, + 1500, + 1404, + 1566, + 299, + 1566 + ], + "score": 0.944 + }, + { + "category_id": 1, + "poly": [ + 300, + 1119, + 1396, + 1119, + 1396, + 1184, + 300, + 1184 + ], + "score": 0.936 + }, + { + "category_id": 1, + "poly": [ + 299, + 589, + 1077, + 589, + 1077, + 629, + 299, + 629 + ], + "score": 0.935 + }, + { + "category_id": 1, + "poly": [ + 297, + 296, + 1141, + 296, + 1141, + 335, + 297, + 335 + ], + "score": 0.924 + }, + { + "category_id": 8, + "poly": [ + 356, + 806, + 1336, + 806, + 1336, + 880, + 356, + 880 + ], + "score": 0.923 + }, + { + "category_id": 0, + "poly": [ + 292, + 1609, + 1316, + 1609, + 1316, + 1647, + 292, + 1647 + ], + "score": 0.92 + }, + { + "category_id": 2, + "poly": [ + 298, + 73, + 816, + 73, + 816, + 106, + 298, + 106 + ], + "score": 0.918 + }, + { + "category_id": 1, + "poly": [ + 296, + 894, + 1407, + 894, + 1407, + 1107, + 296, + 1107 + ], + "score": 0.915 + }, + { + "category_id": 1, + "poly": [ + 301, + 226, + 790, + 226, + 790, + 265, + 301, + 265 + ], + "score": 0.909 + }, + { + "category_id": 2, + "poly": [ + 1379, + 589, + 1405, + 589, + 1405, + 625, + 1379, + 625 + ], + "score": 0.798 + }, + { + "category_id": 2, + "poly": [ + 834, + 2088, + 863, + 2088, + 863, + 2113, + 834, + 2113 + ], + "score": 0.576 + }, + { + "category_id": 2, + "poly": [ + 834, + 2088, + 863, + 2088, + 863, + 2113, + 834, + 2113 + ], + "score": 0.234 + }, + { + "category_id": 14, + "poly": [ + 556, + 349, + 1137, + 349, + 1137, + 576, + 556, + 576 + ], + "score": 0.95, + "latex": "\\begin{array} { r l } { \\log \\left\\{ \\displaystyle \\frac { e ^ { \\varepsilon _ { 1 } } } { \\tilde { q } ^ { 1 / ( \\mu _ { 1 } - 1 ) } } \\right\\} = \\log \\left\\{ \\tilde { q } ^ { - 1 / ( \\mu _ { 1 } - 1 ) } \\exp \\left( \\frac { \\mu _ { 1 } } { \\sigma ^ { 2 } } \\right) \\right\\} } & { { } } \\\\ { = \\displaystyle \\frac { \\mu _ { 1 } } { \\sigma ^ { 2 } } + \\frac { 1 } { \\mu _ { 1 } - 1 } \\log \\frac { 1 } { \\tilde { q } } } & { { } } \\\\ { = \\displaystyle \\frac { 1 } { \\sigma ^ { 2 } } + \\frac { \\mu _ { 1 } - 1 } { \\sigma ^ { 2 } } + \\frac { 1 } { \\mu _ { 1 } - 1 } \\log \\frac { 1 } { \\tilde { q } } , } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 663, + 927, + 799, + 927, + 799, + 964, + 663, + 964 + ], + "score": 0.93, + "latex": "\\varepsilon _ { 1 } \\triangleq \\mu _ { 1 } / \\sigma ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 551, + 589, + 830, + 589, + 830, + 628, + 551, + 628 + ], + "score": 0.93, + "latex": "\\mu _ { 1 } = 1 + \\sigma \\cdot \\sqrt { \\log ( 1 / \\tilde { q } ) }" + }, + { + "category_id": 13, + "poly": [ + 852, + 298, + 1010, + 298, + 1010, + 335, + 852, + 335 + ], + "score": 0.93, + "latex": "e ^ { \\varepsilon _ { 1 } } / \\tilde { q } ^ { 1 / ( \\mu _ { 1 } - 1 ) }" + }, + { + "category_id": 13, + "poly": [ + 850, + 927, + 986, + 927, + 986, + 964, + 850, + 964 + ], + "score": 0.93, + "latex": "\\varepsilon _ { 2 } \\triangleq \\mu _ { 2 } / \\sigma ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1020, + 961, + 1393, + 961, + 1393, + 1018, + 1020, + 1018 + ], + "score": 0.93, + "latex": "q \\leq e ^ { ( \\mu _ { 2 } - 1 ) \\varepsilon _ { 2 } } / \\left( \\frac { \\mu _ { 1 } } { \\mu _ { 1 } - 1 } \\cdot \\frac { \\mu _ { 2 } } { \\mu _ { 2 } - 1 } \\right) ^ { \\mu _ { 2 } }" + }, + { + "category_id": 13, + "poly": [ + 697, + 1326, + 939, + 1326, + 939, + 1360, + 697, + 1360 + ], + "score": 0.92, + "latex": "\\tilde { n } _ { i } = n _ { i } + \\mathcal { N } ( 0 , \\sigma ^ { 2 } )" + }, + { + "category_id": 13, + "poly": [ + 297, + 1254, + 494, + 1254, + 494, + 1288, + 297, + 1288 + ], + "score": 0.92, + "latex": "\\lambda = ( n _ { 1 } - n _ { 2 } ) / 4" + }, + { + "category_id": 13, + "poly": [ + 699, + 1501, + 889, + 1501, + 889, + 1535, + 699, + 1535 + ], + "score": 0.92, + "latex": "A ( \\tilde { q } , \\mu _ { 2 } , \\varepsilon _ { 2 } ) \\approx 1" + }, + { + "category_id": 14, + "poly": [ + 361, + 803, + 1336, + 803, + 1336, + 881, + 361, + 881 + ], + "score": 0.92, + "latex": "\\beta _ { \\sigma } ( q ) \\triangleq \\operatorname* { m i n } \\left\\{ \\frac { 1 } { \\lambda - 1 } \\log \\left\\{ ( 1 - q ) \\cdot A ( q , \\mu _ { 2 } , \\varepsilon _ { 2 } ) ^ { \\lambda - 1 } + q \\cdot B ( q , \\mu _ { 1 } , \\varepsilon _ { 1 } ) ^ { \\lambda - 1 } \\right\\} , \\lambda / \\sigma ^ { 2 } \\right\\} ," + }, + { + "category_id": 13, + "poly": [ + 916, + 1357, + 1165, + 1357, + 1165, + 1391, + 916, + 1391 + ], + "score": 0.92, + "latex": "q = \\mathbf { \\bar { P r } } \\left[ \\mathcal { \\bar { M } } ( D ) \\right] \\neq 1 ]" + }, + { + "category_id": 13, + "poly": [ + 298, + 1454, + 495, + 1454, + 495, + 1489, + 298, + 1489 + ], + "score": 0.92, + "latex": "\\lambda < ( n _ { 1 } - n _ { 2 } ) / 2" + }, + { + "category_id": 13, + "poly": [ + 550, + 226, + 781, + 226, + 781, + 266, + 550, + 266 + ], + "score": 0.91, + "latex": "\\mu _ { 2 } = \\sigma \\cdot \\sqrt { \\log ( 1 / \\tilde { q } ) }" + }, + { + "category_id": 13, + "poly": [ + 1205, + 1357, + 1403, + 1357, + 1403, + 1391, + 1205, + 1391 + ], + "score": 0.91, + "latex": "\\mathbf { P r } [ \\tilde { n } _ { 1 } ~ < ~ \\tilde { n } _ { 2 } ] ~ =" + }, + { + "category_id": 13, + "poly": [ + 411, + 1501, + 604, + 1501, + 604, + 1533, + 411, + 1533 + ], + "score": 0.9, + "latex": "\\lambda = ( n _ { 1 } - n _ { 2 } ) / 4" + }, + { + "category_id": 13, + "poly": [ + 296, + 1389, + 914, + 1389, + 914, + 1425, + 296, + 1425 + ], + "score": 0.9, + "latex": "{ \\bf P r } [ N ( 0 , 2 \\sigma ^ { 2 } ) > n _ { 1 } - n _ { 2 } ] < \\exp { \\left( - ( n _ { 1 } - n _ { 2 } ) ^ { 2 } / 4 \\sigma ^ { 2 } \\right) }" + }, + { + "category_id": 13, + "poly": [ + 491, + 1426, + 819, + 1426, + 819, + 1458, + 491, + 1458 + ], + "score": 0.89, + "latex": "\\mu _ { 1 } - 1 = \\mu _ { 2 } = ( n _ { 1 } - n _ { 2 } ) / 2" + }, + { + "category_id": 13, + "poly": [ + 297, + 1533, + 615, + 1533, + 615, + 1567, + 297, + 1567 + ], + "score": 0.88, + "latex": "\\tilde { q } \\cdot B ( \\tilde { q } , \\mu _ { 1 } , \\varepsilon _ { 1 } ) ^ { \\lambda - 1 } / ( \\lambda - 1 )" + }, + { + "category_id": 13, + "poly": [ + 847, + 1197, + 1040, + 1197, + 1040, + 1224, + 847, + 1224 + ], + "score": 0.88, + "latex": "n _ { 1 } ~ > ~ n _ { 2 } ~ > ~ n _ { 3 }" + }, + { + "category_id": 13, + "poly": [ + 397, + 695, + 429, + 695, + 429, + 725, + 397, + 725 + ], + "score": 0.87, + "latex": "\\sigma ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 924, + 1225, + 956, + 1225, + 956, + 1252, + 924, + 1252 + ], + "score": 0.87, + "latex": "\\sigma ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1058, + 1225, + 1293, + 1225, + 1293, + 1258, + 1058, + 1258 + ], + "score": 0.86, + "latex": "( \\lambda , \\exp ( - 2 \\lambda / \\sigma ^ { 2 } ) / \\lambda )" + }, + { + "category_id": 13, + "poly": [ + 1150, + 902, + 1182, + 902, + 1182, + 929, + 1150, + 929 + ], + "score": 0.86, + "latex": "\\mu _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 1233, + 901, + 1264, + 901, + 1264, + 929, + 1233, + 929 + ], + "score": 0.85, + "latex": "\\mu _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 440, + 1047, + 468, + 1047, + 468, + 1076, + 440, + 1076 + ], + "score": 0.85, + "latex": "q _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 1253, + 1394, + 1271, + 1394, + 1271, + 1424, + 1253, + 1424 + ], + "score": 0.83, + "latex": "\\tilde { q }" + }, + { + "category_id": 13, + "poly": [ + 1345, + 1685, + 1360, + 1685, + 1360, + 1714, + 1345, + 1714 + ], + "score": 0.81, + "latex": "\\tilde { q }" + }, + { + "category_id": 13, + "poly": [ + 449, + 897, + 477, + 897, + 477, + 925, + 449, + 925 + ], + "score": 0.81, + "latex": "\\textbf { { B } }" + }, + { + "category_id": 13, + "poly": [ + 637, + 698, + 663, + 698, + 663, + 724, + 637, + 724 + ], + "score": 0.8, + "latex": "D" + }, + { + "category_id": 13, + "poly": [ + 974, + 702, + 992, + 702, + 992, + 729, + 974, + 729 + ], + "score": 0.8, + "latex": "q" + }, + { + "category_id": 13, + "poly": [ + 687, + 974, + 759, + 974, + 759, + 1007, + 687, + 1007 + ], + "score": 0.8, + "latex": "q < 1" + }, + { + "category_id": 13, + "poly": [ + 756, + 1075, + 775, + 1075, + 775, + 1101, + 756, + 1101 + ], + "score": 0.79, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 1218, + 1197, + 1393, + 1197, + 1393, + 1224, + 1218, + 1224 + ], + "score": 0.78, + "latex": "n _ { 2 } \\mathrm { ~ - ~ } n _ { 3 } \\mathrm { ~ } \\gg \\sigma" + }, + { + "category_id": 13, + "poly": [ + 685, + 1079, + 706, + 1079, + 706, + 1101, + 685, + 1101 + ], + "score": 0.78, + "latex": "\\sigma" + }, + { + "category_id": 13, + "poly": [ + 373, + 897, + 399, + 897, + 399, + 925, + 373, + 925 + ], + "score": 0.77, + "latex": "\\pmb { A }" + }, + { + "category_id": 13, + "poly": [ + 1181, + 668, + 1201, + 668, + 1201, + 694, + 1181, + 694 + ], + "score": 0.76, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 1101, + 1197, + 1201, + 1197, + 1201, + 1224, + 1101, + 1224 + ], + "score": 0.76, + "latex": "n _ { 1 } \\mathrm { ~ - ~ } n _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1115, + 1394, + 1132, + 1394, + 1132, + 1424, + 1115, + 1424 + ], + "score": 0.76, + "latex": "\\tilde { q }" + }, + { + "category_id": 13, + "poly": [ + 872, + 974, + 959, + 974, + 959, + 1006, + 872, + 1006 + ], + "score": 0.7, + "latex": "\\mu _ { 2 } > 1" + }, + { + "category_id": 13, + "poly": [ + 656, + 1158, + 675, + 1158, + 675, + 1179, + 656, + 1179 + ], + "score": 0.69, + "latex": "\\sigma" + }, + { + "category_id": 13, + "poly": [ + 770, + 973, + 859, + 973, + 859, + 1007, + 770, + 1007 + ], + "score": 0.63, + "latex": "\\mu _ { 1 } \\geq \\lambda" + }, + { + "category_id": 13, + "poly": [ + 689, + 973, + 960, + 973, + 960, + 1008, + 689, + 1008 + ], + "score": 0.32, + "latex": "q < 1 , \\mu _ { 1 } \\geq \\lambda , \\mu _ { 2 } > 1" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1606.0, + 1322.0, + 1606.0, + 1322.0, + 1650.0, + 291.0, + 1650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 72.0, + 818.0, + 72.0, + 818.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1383.0, + 595.0, + 1405.0, + 595.0, + 1405.0, + 626.0, + 1383.0, + 626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 830.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2124.0, + 830.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 830.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2124.0, + 830.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1681.0, + 1344.0, + 1681.0, + 1344.0, + 1717.0, + 295.0, + 1717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1361.0, + 1681.0, + 1405.0, + 1681.0, + 1405.0, + 1717.0, + 1361.0, + 1717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1712.0, + 1407.0, + 1712.0, + 1407.0, + 1749.0, + 292.0, + 1749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1737.0, + 1406.0, + 1737.0, + 1406.0, + 1783.0, + 292.0, + 1783.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1771.0, + 1406.0, + 1771.0, + 1406.0, + 1810.0, + 294.0, + 1810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1802.0, + 1406.0, + 1802.0, + 1406.0, + 1838.0, + 294.0, + 1838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1834.0, + 1348.0, + 1834.0, + 1348.0, + 1870.0, + 294.0, + 1870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1325.0, + 696.0, + 1325.0, + 696.0, + 1362.0, + 294.0, + 1362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 940.0, + 1325.0, + 1405.0, + 1325.0, + 1405.0, + 1362.0, + 940.0, + 1362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1354.0, + 915.0, + 1354.0, + 915.0, + 1393.0, + 293.0, + 1393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1166.0, + 1354.0, + 1204.0, + 1354.0, + 1204.0, + 1393.0, + 1166.0, + 1393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 915.0, + 1387.0, + 1114.0, + 1387.0, + 1114.0, + 1427.0, + 915.0, + 1427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1133.0, + 1387.0, + 1252.0, + 1387.0, + 1252.0, + 1427.0, + 1133.0, + 1427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1272.0, + 1387.0, + 1405.0, + 1387.0, + 1405.0, + 1427.0, + 1272.0, + 1427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1419.0, + 490.0, + 1419.0, + 490.0, + 1463.0, + 290.0, + 1463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 820.0, + 1419.0, + 1407.0, + 1419.0, + 1407.0, + 1463.0, + 820.0, + 1463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1451.0, + 297.0, + 1451.0, + 297.0, + 1489.0, + 293.0, + 1489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 496.0, + 1451.0, + 506.0, + 1451.0, + 506.0, + 1489.0, + 496.0, + 1489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1882.0, + 1404.0, + 1882.0, + 1404.0, + 1915.0, + 297.0, + 1915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1912.0, + 1403.0, + 1912.0, + 1403.0, + 1946.0, + 297.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1940.0, + 1406.0, + 1940.0, + 1406.0, + 1979.0, + 293.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1973.0, + 1404.0, + 1973.0, + 1404.0, + 2007.0, + 297.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2003.0, + 1121.0, + 2003.0, + 1121.0, + 2037.0, + 294.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 664.0, + 1180.0, + 664.0, + 1180.0, + 701.0, + 292.0, + 701.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1202.0, + 664.0, + 1405.0, + 664.0, + 1405.0, + 701.0, + 1202.0, + 701.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 695.0, + 396.0, + 695.0, + 396.0, + 730.0, + 295.0, + 730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 430.0, + 695.0, + 636.0, + 695.0, + 636.0, + 730.0, + 430.0, + 730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 664.0, + 695.0, + 973.0, + 695.0, + 973.0, + 730.0, + 664.0, + 730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 993.0, + 695.0, + 1405.0, + 695.0, + 1405.0, + 730.0, + 993.0, + 730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 725.0, + 1405.0, + 725.0, + 1405.0, + 760.0, + 294.0, + 760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 755.0, + 394.0, + 755.0, + 394.0, + 790.0, + 291.0, + 790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1189.0, + 846.0, + 1189.0, + 846.0, + 1230.0, + 293.0, + 1230.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1041.0, + 1189.0, + 1100.0, + 1189.0, + 1100.0, + 1230.0, + 1041.0, + 1230.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1202.0, + 1189.0, + 1217.0, + 1189.0, + 1217.0, + 1230.0, + 1202.0, + 1230.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 1189.0, + 1404.0, + 1189.0, + 1404.0, + 1230.0, + 1394.0, + 1230.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1223.0, + 923.0, + 1223.0, + 923.0, + 1260.0, + 293.0, + 1260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 957.0, + 1223.0, + 1057.0, + 1223.0, + 1057.0, + 1260.0, + 957.0, + 1260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1294.0, + 1223.0, + 1404.0, + 1223.0, + 1404.0, + 1260.0, + 1294.0, + 1260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1251.0, + 296.0, + 1251.0, + 296.0, + 1292.0, + 292.0, + 1292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 495.0, + 1251.0, + 506.0, + 1251.0, + 506.0, + 1292.0, + 495.0, + 1292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1498.0, + 410.0, + 1498.0, + 410.0, + 1537.0, + 294.0, + 1537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 605.0, + 1498.0, + 698.0, + 1498.0, + 698.0, + 1537.0, + 605.0, + 1537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 890.0, + 1498.0, + 1406.0, + 1498.0, + 1406.0, + 1537.0, + 890.0, + 1537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1527.0, + 296.0, + 1527.0, + 296.0, + 1571.0, + 293.0, + 1571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 616.0, + 1527.0, + 1183.0, + 1527.0, + 1183.0, + 1571.0, + 616.0, + 1571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1384.0, + 1536.0, + 1403.0, + 1536.0, + 1403.0, + 1559.0, + 1384.0, + 1559.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1117.0, + 1401.0, + 1117.0, + 1401.0, + 1158.0, + 295.0, + 1158.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1150.0, + 655.0, + 1150.0, + 655.0, + 1186.0, + 296.0, + 1186.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 676.0, + 1150.0, + 1174.0, + 1150.0, + 1174.0, + 1186.0, + 676.0, + 1186.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 587.0, + 550.0, + 587.0, + 550.0, + 632.0, + 295.0, + 632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 587.0, + 1078.0, + 587.0, + 1078.0, + 632.0, + 831.0, + 632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 295.0, + 851.0, + 295.0, + 851.0, + 339.0, + 294.0, + 339.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1011.0, + 295.0, + 1143.0, + 295.0, + 1143.0, + 339.0, + 1011.0, + 339.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 895.0, + 372.0, + 895.0, + 372.0, + 930.0, + 298.0, + 930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 400.0, + 895.0, + 448.0, + 895.0, + 448.0, + 930.0, + 400.0, + 930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 478.0, + 895.0, + 1149.0, + 895.0, + 1149.0, + 930.0, + 478.0, + 930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1183.0, + 895.0, + 1232.0, + 895.0, + 1232.0, + 930.0, + 1183.0, + 930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1265.0, + 895.0, + 1405.0, + 895.0, + 1405.0, + 930.0, + 1265.0, + 930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 927.0, + 662.0, + 927.0, + 662.0, + 965.0, + 293.0, + 965.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 800.0, + 927.0, + 849.0, + 927.0, + 849.0, + 965.0, + 800.0, + 965.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 987.0, + 927.0, + 1408.0, + 927.0, + 1408.0, + 965.0, + 987.0, + 965.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 971.0, + 686.0, + 971.0, + 686.0, + 1008.0, + 291.0, + 1008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 961.0, + 971.0, + 1019.0, + 971.0, + 1019.0, + 1008.0, + 961.0, + 1008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 959.0, + 1398.0, + 959.0, + 1398.0, + 1016.0, + 1394.0, + 1016.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1008.0, + 1407.0, + 1008.0, + 1407.0, + 1048.0, + 293.0, + 1048.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1043.0, + 439.0, + 1043.0, + 439.0, + 1078.0, + 294.0, + 1078.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 469.0, + 1043.0, + 1405.0, + 1043.0, + 1405.0, + 1078.0, + 469.0, + 1078.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1074.0, + 684.0, + 1074.0, + 684.0, + 1108.0, + 295.0, + 1108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 707.0, + 1074.0, + 755.0, + 1074.0, + 755.0, + 1108.0, + 707.0, + 1108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 776.0, + 1074.0, + 1399.0, + 1074.0, + 1399.0, + 1108.0, + 776.0, + 1108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 224.0, + 549.0, + 224.0, + 549.0, + 268.0, + 294.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 782.0, + 224.0, + 790.0, + 224.0, + 790.0, + 268.0, + 782.0, + 268.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 20, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 299, + 791, + 1406, + 791, + 1406, + 886, + 299, + 886 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 371, + 1675, + 1404, + 1675, + 1404, + 2035, + 371, + 2035 + ], + "score": 0.962 + }, + { + "category_id": 1, + "poly": [ + 297, + 285, + 1406, + 285, + 1406, + 446, + 297, + 446 + ], + "score": 0.961 + }, + { + "category_id": 8, + "poly": [ + 515, + 1016, + 1183, + 1016, + 1183, + 1172, + 515, + 1172 + ], + "score": 0.953 + }, + { + "category_id": 8, + "poly": [ + 636, + 672, + 1064, + 672, + 1064, + 729, + 636, + 729 + ], + "score": 0.952 + }, + { + "category_id": 1, + "poly": [ + 297, + 1590, + 1402, + 1590, + 1402, + 1654, + 297, + 1654 + ], + "score": 0.95 + }, + { + "category_id": 8, + "poly": [ + 595, + 569, + 1100, + 569, + 1100, + 627, + 595, + 627 + ], + "score": 0.95 + }, + { + "category_id": 1, + "poly": [ + 297, + 899, + 1402, + 899, + 1402, + 965, + 297, + 965 + ], + "score": 0.946 + }, + { + "category_id": 1, + "poly": [ + 300, + 737, + 760, + 737, + 760, + 770, + 300, + 770 + ], + "score": 0.922 + }, + { + "category_id": 1, + "poly": [ + 298, + 636, + 369, + 636, + 369, + 666, + 298, + 666 + ], + "score": 0.917 + }, + { + "category_id": 2, + "poly": [ + 299, + 74, + 816, + 74, + 816, + 105, + 299, + 105 + ], + "score": 0.909 + }, + { + "category_id": 0, + "poly": [ + 301, + 1533, + 714, + 1533, + 714, + 1566, + 301, + 1566 + ], + "score": 0.909 + }, + { + "category_id": 1, + "poly": [ + 293, + 977, + 1293, + 977, + 1293, + 1010, + 293, + 1010 + ], + "score": 0.908 + }, + { + "category_id": 0, + "poly": [ + 300, + 229, + 790, + 229, + 790, + 262, + 300, + 262 + ], + "score": 0.887 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 865, + 2088, + 865, + 2113, + 835, + 2113 + ], + "score": 0.859 + }, + { + "category_id": 1, + "poly": [ + 299, + 498, + 1404, + 498, + 1404, + 560, + 299, + 560 + ], + "score": 0.754 + }, + { + "category_id": 1, + "poly": [ + 296, + 458, + 1265, + 458, + 1265, + 494, + 296, + 494 + ], + "score": 0.714 + }, + { + "category_id": 1, + "poly": [ + 297, + 1210, + 1401, + 1210, + 1401, + 1275, + 297, + 1275 + ], + "score": 0.659 + }, + { + "category_id": 5, + "poly": [ + 306, + 1283, + 1403, + 1283, + 1403, + 1483, + 306, + 1483 + ], + "score": 0.569, + "html": "
procedure LS(q)
2: if q1≤q≤ qo then q1 = BL(qo). Interpolate the middle part.
3: q↑q1 end if
4: 5:return max{β(Bu(q))-β(q),β(q)-β(BL(q))}
6: end procedure
" + }, + { + "category_id": 1, + "poly": [ + 306, + 1283, + 1403, + 1283, + 1403, + 1483, + 306, + 1483 + ], + "score": 0.189 + }, + { + "category_id": 6, + "poly": [ + 297, + 1210, + 1401, + 1210, + 1401, + 1275, + 297, + 1275 + ], + "score": 0.181 + }, + { + "category_id": 14, + "poly": [ + 514, + 1015, + 1181, + 1015, + 1181, + 1175, + 514, + 1175 + ], + "score": 0.94, + "latex": "\\begin{array} { l } { { \\displaystyle { \\mathrm { B } } _ { \\mathrm { U } } ( q ) \\triangleq \\operatorname* { m i n } \\left\\{ \\frac { m - 1 } { 2 } \\mathrm { e r f c } \\left( \\mathrm { e r f c } ^ { - 1 } \\left( \\frac { 2 q } { m - 1 } \\right) - \\frac { 1 } { \\sigma } \\right) , 1 \\right\\} , } } \\\\ { { \\displaystyle { \\mathrm { B } } _ { \\mathrm { L } } ( q ) \\triangleq \\frac { m - 1 } { 2 } \\mathrm { e r f c } \\left( \\mathrm { e r f c } ^ { - 1 } \\left( \\frac { 2 q } { m - 1 } \\right) + \\frac { 1 } { \\sigma } \\right) , } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1077, + 792, + 1166, + 792, + 1166, + 825, + 1077, + 825 + ], + "score": 0.94, + "latex": "\\beta \\left( q ( \\cdot ) \\right)" + }, + { + "category_id": 13, + "poly": [ + 704, + 287, + 1004, + 287, + 1004, + 321, + 704, + 321 + ], + "score": 0.93, + "latex": "\\bar { n } = ( n _ { 1 } , \\ldots , n _ { m } ) \\in \\mathbb { N } ^ { m }" + }, + { + "category_id": 13, + "poly": [ + 802, + 460, + 901, + 460, + 901, + 494, + 802, + 494 + ], + "score": 0.92, + "latex": "\\beta \\left( q ( \\bar { n } ) \\right)" + }, + { + "category_id": 14, + "poly": [ + 631, + 670, + 1067, + 670, + 1067, + 729, + 631, + 729 + ], + "score": 0.92, + "latex": "\\tilde { \\mathrm { L S } } ( \\bar { n } ) \\geq \\operatorname* { m a x } _ { \\bar { n } ^ { \\prime } : \\mathrm { d i s t } ( \\bar { n } , \\bar { n } ^ { \\prime } ) = 1 } | f ( n ) - f ( n ^ { \\prime } ) |" + }, + { + "category_id": 14, + "poly": [ + 598, + 566, + 1098, + 566, + 1098, + 627, + 598, + 627 + ], + "score": 0.92, + "latex": "\\mathrm { S S } _ { \\beta } ( \\bar { n } ) \\triangleq \\operatorname* { m a x } _ { d \\geq 0 } e ^ { - \\beta d } \\cdot \\operatorname* { m a x } _ { \\bar { n } ^ { \\prime } : \\mathrm { d i s t } ( \\bar { n } , \\bar { n } ^ { \\prime } ) \\leq d } \\tilde { \\mathrm { L S } } ( \\bar { n } ^ { \\prime } ) ," + }, + { + "category_id": 13, + "poly": [ + 675, + 932, + 746, + 932, + 746, + 965, + 675, + 965 + ], + "score": 0.92, + "latex": "[ 0 , q _ { 0 } )" + }, + { + "category_id": 13, + "poly": [ + 1206, + 350, + 1261, + 350, + 1261, + 382, + 1206, + 382 + ], + "score": 0.92, + "latex": "q ( { \\bar { n } } )" + }, + { + "category_id": 13, + "poly": [ + 298, + 529, + 355, + 529, + 355, + 563, + 298, + 563 + ], + "score": 0.91, + "latex": "f ( n )" + }, + { + "category_id": 13, + "poly": [ + 564, + 932, + 618, + 932, + 618, + 965, + 564, + 965 + ], + "score": 0.91, + "latex": "q ( { \\bar { n } } )" + }, + { + "category_id": 13, + "poly": [ + 1020, + 1241, + 1076, + 1241, + 1076, + 1275, + 1020, + 1275 + ], + "score": 0.91, + "latex": "\\beta \\left( \\cdot \\right)" + }, + { + "category_id": 13, + "poly": [ + 441, + 1779, + 715, + 1779, + 715, + 1813, + 441, + 1813 + ], + "score": 0.91, + "latex": "\\bar { n } = [ n _ { 1 } , \\dots , n _ { m } ] \\in \\mathbb { R } ^ { m }" + }, + { + "category_id": 13, + "poly": [ + 1223, + 318, + 1400, + 318, + 1400, + 351, + 1223, + 351 + ], + "score": 0.9, + "latex": "q \\colon \\mathbb { N } ^ { m } [ 0 , 1 ]" + }, + { + "category_id": 13, + "poly": [ + 977, + 379, + 1022, + 379, + 1022, + 410, + 977, + 410 + ], + "score": 0.9, + "latex": "\\boldsymbol { n } ^ { ( i ) }" + }, + { + "category_id": 13, + "poly": [ + 920, + 1322, + 1083, + 1322, + 1083, + 1357, + 920, + 1357 + ], + "score": 0.9, + "latex": "\\triangleright q q _ { 1 } = \\mathrm { B _ { L } } ( q _ { 0 } )" + }, + { + "category_id": 13, + "poly": [ + 1077, + 1777, + 1123, + 1777, + 1123, + 1808, + 1077, + 1808 + ], + "score": 0.9, + "latex": "\\boldsymbol { n } ^ { ( i ) }" + }, + { + "category_id": 13, + "poly": [ + 911, + 824, + 1079, + 824, + 1079, + 857, + 911, + 857 + ], + "score": 0.89, + "latex": "q \\colon \\mathbb { N } ^ { m } [ 0 , 1 ]" + }, + { + "category_id": 13, + "poly": [ + 725, + 1781, + 806, + 1781, + 806, + 1812, + 725, + 1812 + ], + "score": 0.88, + "latex": "n _ { i } \\geq 0" + }, + { + "category_id": 13, + "poly": [ + 457, + 979, + 495, + 979, + 495, + 1009, + 457, + 1009 + ], + "score": 0.88, + "latex": "\\mathrm { B _ { L } }" + }, + { + "category_id": 13, + "poly": [ + 668, + 902, + 706, + 902, + 706, + 931, + 668, + 931 + ], + "score": 0.87, + "latex": "\\mathrm { B _ { L } }" + }, + { + "category_id": 13, + "poly": [ + 922, + 318, + 1044, + 318, + 1044, + 351, + 922, + 351 + ], + "score": 0.87, + "latex": "\\operatorname { d i s t } ( \\bar { n } , \\bar { n } ^ { \\prime } )" + }, + { + "category_id": 13, + "poly": [ + 965, + 1214, + 1003, + 1214, + 1003, + 1242, + 965, + 1242 + ], + "score": 0.86, + "latex": "\\mathrm { B _ { L } }" + }, + { + "category_id": 13, + "poly": [ + 545, + 979, + 586, + 979, + 586, + 1010, + 545, + 1010 + ], + "score": 0.86, + "latex": "\\mathrm { B _ { U } }" + }, + { + "category_id": 13, + "poly": [ + 1093, + 824, + 1347, + 824, + 1347, + 857, + 1093, + 857 + ], + "score": 0.85, + "latex": "\\mathrm { B _ { L } } , \\mathrm { B _ { U } } \\colon [ 0 , 1 ] \\to [ 0 , 1 ]" + }, + { + "category_id": 13, + "poly": [ + 416, + 859, + 443, + 859, + 443, + 886, + 416, + 886 + ], + "score": 0.85, + "latex": "q _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 577, + 901, + 618, + 901, + 618, + 931, + 577, + 931 + ], + "score": 0.84, + "latex": "\\mathrm { B _ { U } }" + }, + { + "category_id": 13, + "poly": [ + 329, + 384, + 346, + 384, + 346, + 415, + 329, + 415 + ], + "score": 0.83, + "latex": "\\tilde { q }" + }, + { + "category_id": 13, + "poly": [ + 1139, + 500, + 1159, + 500, + 1159, + 530, + 1139, + 530 + ], + "score": 0.82, + "latex": "\\beta" + }, + { + "category_id": 13, + "poly": [ + 1246, + 906, + 1263, + 906, + 1263, + 933, + 1246, + 933 + ], + "score": 0.81, + "latex": "q" + }, + { + "category_id": 13, + "poly": [ + 476, + 934, + 496, + 934, + 496, + 959, + 476, + 959 + ], + "score": 0.79, + "latex": "\\bar { n }" + }, + { + "category_id": 13, + "poly": [ + 1084, + 500, + 1104, + 500, + 1104, + 530, + 1084, + 530 + ], + "score": 0.76, + "latex": "\\beta" + }, + { + "category_id": 13, + "poly": [ + 465, + 1411, + 988, + 1411, + 988, + 1448, + 465, + 1448 + ], + "score": 0.75, + "latex": "\\mathrm { m a x } \\{ \\beta \\left( \\mathrm { B _ { U } } ( q ) \\right) - \\beta \\left( q \\right) , \\beta \\left( q \\right) - \\beta \\left( \\mathrm { B _ { L } } ( q ) \\right) \\}" + }, + { + "category_id": 13, + "poly": [ + 1153, + 385, + 1166, + 385, + 1166, + 410, + 1153, + 410 + ], + "score": 0.75, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 441, + 289, + 468, + 289, + 468, + 315, + 441, + 315 + ], + "score": 0.74, + "latex": "D" + }, + { + "category_id": 13, + "poly": [ + 591, + 1247, + 609, + 1247, + 609, + 1274, + 591, + 1274 + ], + "score": 0.74, + "latex": "q" + }, + { + "category_id": 13, + "poly": [ + 1248, + 1783, + 1260, + 1783, + 1260, + 1808, + 1248, + 1808 + ], + "score": 0.74, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 875, + 1213, + 915, + 1213, + 915, + 1242, + 875, + 1242 + ], + "score": 0.73, + "latex": "\\mathrm { B _ { U } }" + }, + { + "category_id": 13, + "poly": [ + 410, + 1324, + 549, + 1324, + 549, + 1355, + 410, + 1355 + ], + "score": 0.7, + "latex": "q _ { 1 } \\leq q \\leq q _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 1343, + 1973, + 1400, + 1973, + 1400, + 2006, + 1343, + 2006 + ], + "score": 0.58, + "latex": "[ 0 , 1 ]" + }, + { + "category_id": 13, + "poly": [ + 710, + 1882, + 767, + 1882, + 767, + 1915, + 710, + 1915 + ], + "score": 0.49, + "latex": "[ 0 , 1 ]" + }, + { + "category_id": 13, + "poly": [ + 1091, + 825, + 1128, + 825, + 1128, + 855, + 1091, + 855 + ], + "score": 0.46, + "latex": "\\mathrm { B _ { L } }" + }, + { + "category_id": 13, + "poly": [ + 427, + 1358, + 512, + 1358, + 512, + 1385, + 427, + 1385 + ], + "score": 0.33, + "latex": "q q _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 1027, + 1850, + 1083, + 1850, + 1083, + 1884, + 1027, + 1884 + ], + "score": 0.3, + "latex": "[ 0 , 1 ]" + }, + { + "category_id": 13, + "poly": [ + 471, + 1287, + 540, + 1287, + 540, + 1323, + 471, + 1323 + ], + "score": 0.28, + "latex": "\\tilde { \\mathrm { L S } } ( q )" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 72.0, + 817.0, + 72.0, + 817.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1529.0, + 718.0, + 1529.0, + 718.0, + 1570.0, + 293.0, + 1570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 229.0, + 793.0, + 229.0, + 793.0, + 264.0, + 294.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 869.0, + 2085.0, + 869.0, + 2124.0, + 831.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1209.0, + 874.0, + 1209.0, + 874.0, + 1245.0, + 296.0, + 1245.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 916.0, + 1209.0, + 964.0, + 1209.0, + 964.0, + 1245.0, + 916.0, + 1245.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1004.0, + 1209.0, + 1405.0, + 1209.0, + 1405.0, + 1245.0, + 1004.0, + 1245.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1240.0, + 590.0, + 1240.0, + 590.0, + 1276.0, + 293.0, + 1276.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 610.0, + 1240.0, + 1019.0, + 1240.0, + 1019.0, + 1276.0, + 610.0, + 1276.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1077.0, + 1240.0, + 1361.0, + 1240.0, + 1361.0, + 1276.0, + 1077.0, + 1276.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 791.0, + 1076.0, + 791.0, + 1076.0, + 829.0, + 296.0, + 829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1167.0, + 791.0, + 1404.0, + 791.0, + 1404.0, + 829.0, + 1167.0, + 829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 820.0, + 910.0, + 820.0, + 910.0, + 862.0, + 293.0, + 862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1080.0, + 820.0, + 1090.0, + 820.0, + 1090.0, + 862.0, + 1080.0, + 862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1348.0, + 820.0, + 1407.0, + 820.0, + 1407.0, + 862.0, + 1348.0, + 862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 852.0, + 415.0, + 852.0, + 415.0, + 891.0, + 292.0, + 891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 444.0, + 852.0, + 456.0, + 852.0, + 456.0, + 891.0, + 444.0, + 891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 1670.0, + 1407.0, + 1670.0, + 1407.0, + 1715.0, + 367.0, + 1715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1704.0, + 1403.0, + 1704.0, + 1403.0, + 1744.0, + 394.0, + 1744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1739.0, + 699.0, + 1739.0, + 699.0, + 1772.0, + 394.0, + 1772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 1775.0, + 440.0, + 1775.0, + 440.0, + 1820.0, + 367.0, + 1820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 716.0, + 1775.0, + 724.0, + 1775.0, + 724.0, + 1820.0, + 716.0, + 1820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 807.0, + 1775.0, + 1076.0, + 1775.0, + 1076.0, + 1820.0, + 807.0, + 1820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1124.0, + 1775.0, + 1247.0, + 1775.0, + 1247.0, + 1820.0, + 1124.0, + 1820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1261.0, + 1775.0, + 1408.0, + 1775.0, + 1408.0, + 1820.0, + 1261.0, + 1820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1812.0, + 597.0, + 1812.0, + 597.0, + 1843.0, + 394.0, + 1843.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 374.0, + 1847.0, + 1026.0, + 1847.0, + 1026.0, + 1886.0, + 374.0, + 1886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1084.0, + 1847.0, + 1407.0, + 1847.0, + 1407.0, + 1886.0, + 1084.0, + 1886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1880.0, + 709.0, + 1880.0, + 709.0, + 1916.0, + 393.0, + 1916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 768.0, + 1880.0, + 1407.0, + 1880.0, + 1407.0, + 1916.0, + 768.0, + 1916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1910.0, + 1407.0, + 1910.0, + 1407.0, + 1947.0, + 394.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1941.0, + 1406.0, + 1941.0, + 1406.0, + 1978.0, + 393.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1970.0, + 1342.0, + 1970.0, + 1342.0, + 2011.0, + 392.0, + 2011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 1970.0, + 1407.0, + 1970.0, + 1407.0, + 2011.0, + 1401.0, + 2011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 2005.0, + 585.0, + 2005.0, + 585.0, + 2036.0, + 395.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 283.0, + 440.0, + 283.0, + 440.0, + 323.0, + 292.0, + 323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 469.0, + 283.0, + 703.0, + 283.0, + 703.0, + 323.0, + 469.0, + 323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1005.0, + 283.0, + 1409.0, + 283.0, + 1409.0, + 323.0, + 1005.0, + 323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 312.0, + 921.0, + 312.0, + 921.0, + 356.0, + 291.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1045.0, + 312.0, + 1222.0, + 312.0, + 1222.0, + 356.0, + 1045.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 312.0, + 1407.0, + 312.0, + 1407.0, + 356.0, + 1401.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 348.0, + 1205.0, + 348.0, + 1205.0, + 382.0, + 295.0, + 382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1262.0, + 348.0, + 1404.0, + 348.0, + 1404.0, + 382.0, + 1262.0, + 382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 378.0, + 328.0, + 378.0, + 328.0, + 420.0, + 291.0, + 420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 378.0, + 976.0, + 378.0, + 976.0, + 420.0, + 347.0, + 420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1023.0, + 378.0, + 1152.0, + 378.0, + 1152.0, + 420.0, + 1023.0, + 420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1167.0, + 378.0, + 1407.0, + 378.0, + 1407.0, + 420.0, + 1167.0, + 420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 412.0, + 423.0, + 412.0, + 423.0, + 451.0, + 292.0, + 451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1589.0, + 1404.0, + 1589.0, + 1404.0, + 1626.0, + 293.0, + 1626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1618.0, + 1229.0, + 1618.0, + 1229.0, + 1657.0, + 292.0, + 1657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 900.0, + 576.0, + 900.0, + 576.0, + 936.0, + 295.0, + 936.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 619.0, + 900.0, + 667.0, + 900.0, + 667.0, + 936.0, + 619.0, + 936.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 707.0, + 900.0, + 1245.0, + 900.0, + 1245.0, + 936.0, + 707.0, + 936.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1264.0, + 900.0, + 1406.0, + 900.0, + 1406.0, + 936.0, + 1264.0, + 936.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 932.0, + 475.0, + 932.0, + 475.0, + 968.0, + 295.0, + 968.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 497.0, + 932.0, + 563.0, + 932.0, + 563.0, + 968.0, + 497.0, + 968.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 619.0, + 932.0, + 674.0, + 932.0, + 674.0, + 968.0, + 619.0, + 968.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 747.0, + 932.0, + 1404.0, + 932.0, + 1404.0, + 968.0, + 747.0, + 968.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 735.0, + 762.0, + 735.0, + 762.0, + 774.0, + 295.0, + 774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 633.0, + 375.0, + 633.0, + 375.0, + 670.0, + 294.0, + 670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 976.0, + 456.0, + 976.0, + 456.0, + 1014.0, + 295.0, + 1014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 496.0, + 976.0, + 544.0, + 976.0, + 544.0, + 1014.0, + 496.0, + 1014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 587.0, + 976.0, + 1295.0, + 976.0, + 1295.0, + 1014.0, + 587.0, + 1014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 494.0, + 1083.0, + 494.0, + 1083.0, + 535.0, + 293.0, + 535.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1105.0, + 494.0, + 1138.0, + 494.0, + 1138.0, + 535.0, + 1105.0, + 535.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1160.0, + 494.0, + 1408.0, + 494.0, + 1408.0, + 535.0, + 1160.0, + 535.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 528.0, + 297.0, + 528.0, + 297.0, + 564.0, + 294.0, + 564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 528.0, + 505.0, + 528.0, + 505.0, + 564.0, + 356.0, + 564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 457.0, + 801.0, + 457.0, + 801.0, + 496.0, + 296.0, + 496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 902.0, + 457.0, + 1264.0, + 457.0, + 1264.0, + 496.0, + 902.0, + 496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1209.0, + 874.0, + 1209.0, + 874.0, + 1245.0, + 296.0, + 1245.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 916.0, + 1209.0, + 964.0, + 1209.0, + 964.0, + 1245.0, + 916.0, + 1245.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1004.0, + 1209.0, + 1405.0, + 1209.0, + 1405.0, + 1245.0, + 1004.0, + 1245.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1240.0, + 590.0, + 1240.0, + 590.0, + 1276.0, + 293.0, + 1276.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 610.0, + 1240.0, + 1019.0, + 1240.0, + 1019.0, + 1276.0, + 610.0, + 1276.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1077.0, + 1240.0, + 1361.0, + 1240.0, + 1361.0, + 1276.0, + 1077.0, + 1276.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 304.0, + 1287.0, + 470.0, + 1287.0, + 470.0, + 1325.0, + 304.0, + 1325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 541.0, + 1287.0, + 546.0, + 1287.0, + 546.0, + 1325.0, + 541.0, + 1325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 1321.0, + 338.0, + 1321.0, + 338.0, + 1354.0, + 308.0, + 1354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 378.0, + 1314.0, + 409.0, + 1314.0, + 409.0, + 1363.0, + 378.0, + 1363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 550.0, + 1314.0, + 617.0, + 1314.0, + 617.0, + 1363.0, + 550.0, + 1363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 913.0, + 1321.0, + 919.0, + 1321.0, + 919.0, + 1357.0, + 913.0, + 1357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1084.0, + 1321.0, + 1403.0, + 1321.0, + 1403.0, + 1357.0, + 1084.0, + 1357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 306.0, + 1350.0, + 341.0, + 1350.0, + 341.0, + 1385.0, + 306.0, + 1385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 418.0, + 1351.0, + 426.0, + 1351.0, + 426.0, + 1389.0, + 418.0, + 1389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 513.0, + 1351.0, + 517.0, + 1351.0, + 517.0, + 1389.0, + 513.0, + 1389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 1383.0, + 338.0, + 1383.0, + 338.0, + 1413.0, + 307.0, + 1413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 382.0, + 1378.0, + 467.0, + 1378.0, + 467.0, + 1413.0, + 382.0, + 1413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 305.0, + 1412.0, + 341.0, + 1412.0, + 341.0, + 1446.0, + 305.0, + 1446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 381.0, + 1408.0, + 464.0, + 1408.0, + 464.0, + 1450.0, + 381.0, + 1450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 306.0, + 1444.0, + 522.0, + 1444.0, + 522.0, + 1478.0, + 306.0, + 1478.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 21, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 8, + "poly": [ + 566, + 1947, + 1229, + 1947, + 1229, + 2053, + 566, + 2053 + ], + "score": 0.941 + }, + { + "category_id": 1, + "poly": [ + 371, + 1907, + 1396, + 1907, + 1396, + 1943, + 371, + 1943 + ], + "score": 0.921 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 815, + 75, + 815, + 105, + 299, + 105 + ], + "score": 0.892 + }, + { + "category_id": 2, + "poly": [ + 834, + 2087, + 865, + 2087, + 865, + 2113, + 834, + 2113 + ], + "score": 0.866 + }, + { + "category_id": 1, + "poly": [ + 307, + 1575, + 954, + 1575, + 954, + 1855, + 307, + 1855 + ], + "score": 0.833 + }, + { + "category_id": 5, + "poly": [ + 293, + 304, + 1404, + 304, + 1404, + 1463, + 293, + 1463 + ], + "score": 0.767, + "html": "
case analysis that finds the neighbor at distance d with the maximum sensitivity.
1: procedure ATDISTANCED(n, d)
2: q←q(n)> q is in the flat region.
3: 4:if q1 ≤q≤ go then
return LS(q), STOP
5: end if
6:if q<qithen Need to increase q.
7:if n(1)-n(2)< 2d then n(i) is the ith largest element.
8:return LS(qi), STOP
9:else
10:n'← SORT(n)+[-d,d,O,...,0]
11:q'←q(n')
12:if q' >qi then
13:return LS(qo), STOP
14:else
15:return LS(q'),CONTINUE
16:end if
17:end if
18:else Need to decrease q.
19:
20:n↑[n,0,...,0]
21:q'←q(n')
22:return LS(q'), STOP
23:else
24:n' ← SORT(n)+[d,0,...,0]
25:for d' =1,...,d do
26:n'(2) ←n(2)-1 The index of n'(2) may change.
27:end for
28:q'←q(n')
29:if q'<qo then
30:return LS(qo), STOP
31:else
32:return LS(q'), CONTINUE
33:end if
34:end if
35: end if 36: end procedure
" + }, + { + "category_id": 1, + "poly": [ + 297, + 228, + 1406, + 228, + 1406, + 330, + 297, + 330 + ], + "score": 0.514 + }, + { + "category_id": 0, + "poly": [ + 298, + 1502, + 1398, + 1502, + 1398, + 1567, + 298, + 1567 + ], + "score": 0.379 + }, + { + "category_id": 6, + "poly": [ + 297, + 228, + 1406, + 228, + 1406, + 330, + 297, + 330 + ], + "score": 0.121 + }, + { + "category_id": 13, + "poly": [ + 1118, + 266, + 1262, + 266, + 1262, + 300, + 1118, + 300 + ], + "score": 0.93, + "latex": "q _ { 1 } = \\mathrm { B _ { L } } ( q _ { 0 } )" + }, + { + "category_id": 13, + "poly": [ + 1149, + 1908, + 1362, + 1908, + 1362, + 1943, + 1149, + 1943 + ], + "score": 0.91, + "latex": "\\hat { n } ^ { \\prime } = ( n _ { 1 } ^ { \\prime } , \\dots , n _ { m } ^ { \\prime } )" + }, + { + "category_id": 13, + "poly": [ + 1316, + 232, + 1372, + 232, + 1372, + 265, + 1316, + 265 + ], + "score": 0.9, + "latex": "\\beta \\left( \\cdot \\right)" + }, + { + "category_id": 13, + "poly": [ + 892, + 1909, + 1098, + 1909, + 1098, + 1943, + 892, + 1943 + ], + "score": 0.89, + "latex": "\\bar { n } = ( n _ { 1 } , \\dots , n _ { m } )" + }, + { + "category_id": 13, + "poly": [ + 873, + 265, + 919, + 265, + 919, + 300, + 873, + 300 + ], + "score": 0.89, + "latex": "q ( \\cdot )" + }, + { + "category_id": 14, + "poly": [ + 565, + 1943, + 1227, + 1943, + 1227, + 2053, + 565, + 2053 + ], + "score": 0.89, + "latex": "d ( \\bar { n } , \\bar { n } ^ { \\prime } ) \\triangleq \\operatorname* { m a x } \\left\\{ \\sum _ { \\substack { i : n _ { i } > n _ { i } ^ { \\prime } } } \\lceil n _ { i } - n _ { i } ^ { \\prime } \\rceil , \\quad \\sum _ { \\substack { i : n _ { i } < n _ { i } ^ { \\prime } } } \\lceil n _ { i } ^ { \\prime } - n _ { i } \\rceil \\right\\} ," + }, + { + "category_id": 13, + "poly": [ + 1198, + 1118, + 1253, + 1118, + 1253, + 1149, + 1198, + 1149 + ], + "score": 0.89, + "latex": "n ^ { \\prime ( 2 ) }" + }, + { + "category_id": 13, + "poly": [ + 410, + 498, + 486, + 498, + 486, + 527, + 410, + 527 + ], + "score": 0.88, + "latex": "q < q _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 1116, + 1503, + 1172, + 1503, + 1172, + 1536, + 1116, + 1536 + ], + "score": 0.88, + "latex": "\\beta \\left( \\cdot \\right)" + }, + { + "category_id": 13, + "poly": [ + 451, + 523, + 648, + 523, + 648, + 555, + 451, + 555 + ], + "score": 0.86, + "latex": "n ^ { \\mathrm { ( 1 ) } } - n ^ { ( 2 ) } < 2 d" + }, + { + "category_id": 13, + "poly": [ + 1234, + 1531, + 1293, + 1531, + 1293, + 1561, + 1234, + 1561 + ], + "score": 0.86, + "latex": "e ^ { - \\beta d }" + }, + { + "category_id": 13, + "poly": [ + 1039, + 271, + 1067, + 271, + 1067, + 299, + 1039, + 299 + ], + "score": 0.85, + "latex": "q _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 410, + 403, + 549, + 403, + 549, + 437, + 410, + 437 + ], + "score": 0.84, + "latex": "q _ { 1 } \\leq q \\leq q _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 493, + 684, + 578, + 684, + 578, + 715, + 493, + 715 + ], + "score": 0.83, + "latex": "q ^ { \\prime } > q _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 854, + 1505, + 876, + 1505, + 876, + 1535, + 854, + 1535 + ], + "score": 0.81, + "latex": "\\beta" + }, + { + "category_id": 13, + "poly": [ + 493, + 1214, + 579, + 1214, + 579, + 1245, + 493, + 1245 + ], + "score": 0.78, + "latex": "q ^ { \\prime } < q _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 828, + 299, + 847, + 299, + 847, + 325, + 828, + 325 + ], + "score": 0.77, + "latex": "d" + }, + { + "category_id": 13, + "poly": [ + 385, + 370, + 497, + 370, + 497, + 403, + 385, + 403 + ], + "score": 0.75, + "latex": "q q ( \\bar { n } )" + }, + { + "category_id": 13, + "poly": [ + 593, + 771, + 670, + 771, + 670, + 810, + 593, + 810 + ], + "score": 0.75, + "latex": "\\mathrm { L } \\mathrm { \\tilde { S } } ( q ^ { \\prime } )" + }, + { + "category_id": 13, + "poly": [ + 552, + 558, + 633, + 558, + 633, + 593, + 552, + 593 + ], + "score": 0.73, + "latex": "\\tilde { \\mathrm { L S } } ( q _ { 1 } )" + }, + { + "category_id": 13, + "poly": [ + 1377, + 503, + 1394, + 503, + 1394, + 528, + 1377, + 528 + ], + "score": 0.73, + "latex": "q" + }, + { + "category_id": 13, + "poly": [ + 985, + 236, + 1003, + 236, + 1003, + 260, + 985, + 260 + ], + "score": 0.71, + "latex": "\\bar { n }" + }, + { + "category_id": 13, + "poly": [ + 482, + 268, + 501, + 268, + 501, + 295, + 482, + 295 + ], + "score": 0.69, + "latex": "d" + }, + { + "category_id": 13, + "poly": [ + 1377, + 876, + 1394, + 876, + 1394, + 901, + 1377, + 901 + ], + "score": 0.65, + "latex": "q" + }, + { + "category_id": 13, + "poly": [ + 592, + 1243, + 674, + 1243, + 674, + 1280, + 592, + 1280 + ], + "score": 0.65, + "latex": "\\tilde { \\mathrm { L S } } ( q _ { 0 } )" + }, + { + "category_id": 13, + "poly": [ + 551, + 998, + 629, + 998, + 629, + 1033, + 551, + 1033 + ], + "score": 0.64, + "latex": "\\mathrm { \\tilde { L S } } ( q ^ { \\prime } )" + }, + { + "category_id": 13, + "poly": [ + 593, + 712, + 674, + 712, + 674, + 749, + 593, + 749 + ], + "score": 0.63, + "latex": "\\tilde { \\mathrm { L S } } ( q _ { 0 } )" + }, + { + "category_id": 13, + "poly": [ + 667, + 1702, + 704, + 1702, + 704, + 1726, + 667, + 1726 + ], + "score": 0.63, + "latex": "" + }, + { + "category_id": 13, + "poly": [ + 593, + 1302, + 670, + 1302, + 670, + 1341, + 593, + 1341 + ], + "score": 0.6, + "latex": "\\mathrm { L } \\mathrm { \\tilde { S } } ( q ^ { \\prime } )" + }, + { + "category_id": 13, + "poly": [ + 1044, + 523, + 1114, + 523, + 1114, + 555, + 1044, + 555 + ], + "score": 0.58, + "latex": "\\triangleright n ^ { ( i ) }" + }, + { + "category_id": 13, + "poly": [ + 469, + 1181, + 595, + 1181, + 595, + 1215, + 469, + 1215 + ], + "score": 0.52, + "latex": "q ^ { \\prime } \\gets q ( \\bar { n } ^ { \\prime } )" + }, + { + "category_id": 13, + "poly": [ + 663, + 1793, + 695, + 1793, + 695, + 1817, + 663, + 1817 + ], + "score": 0.52, + "latex": "=" + }, + { + "category_id": 14, + "poly": [ + 462, + 1056, + 811, + 1056, + 811, + 1153, + 462, + 1153 + ], + "score": 0.48, + "latex": "\\begin{array} { r l } & { \\bar { n } ^ { \\prime } \\gets \\mathrm { S o R T } ( \\bar { n } ) + [ d , 0 , \\dots , 0 ] } \\\\ & { \\mathbf { f o r } d ^ { \\prime } = 1 , \\dots , d \\mathbf { d o } } \\\\ & { \\qquad n ^ { \\prime ( 2 ) } \\gets n ^ { \\prime ( 2 ) } - 1 } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 509, + 435, + 580, + 435, + 580, + 469, + 509, + 469 + ], + "score": 0.43, + "latex": "\\tilde { \\mathrm { L S } } ( q )" + }, + { + "category_id": 14, + "poly": [ + 465, + 618, + 858, + 618, + 858, + 655, + 465, + 655 + ], + "score": 0.42, + "latex": "\\bar { n } ^ { \\prime } \\mathrm { S o R T } ( \\bar { n } ) + [ - d , d , 0 , \\dotsc , 0 ]" + }, + { + "category_id": 13, + "poly": [ + 652, + 340, + 716, + 340, + 716, + 371, + 652, + 371 + ], + "score": 0.38, + "latex": "( \\bar { n } , d )" + }, + { + "category_id": 13, + "poly": [ + 1162, + 500, + 1184, + 500, + 1184, + 523, + 1162, + 523 + ], + "score": 0.37, + "latex": "\\triangleright" + }, + { + "category_id": 13, + "poly": [ + 1026, + 1125, + 1048, + 1125, + 1048, + 1150, + 1026, + 1150 + ], + "score": 0.36, + "latex": "\\triangleright" + }, + { + "category_id": 13, + "poly": [ + 427, + 1704, + 444, + 1704, + 444, + 1726, + 427, + 1726 + ], + "score": 0.35, + "latex": "c" + }, + { + "category_id": 13, + "poly": [ + 1139, + 405, + 1180, + 405, + 1180, + 433, + 1139, + 433 + ], + "score": 0.32, + "latex": "\\triangleright q" + }, + { + "category_id": 13, + "poly": [ + 468, + 1058, + 808, + 1058, + 808, + 1094, + 468, + 1094 + ], + "score": 0.31, + "latex": "\\bar { n } ^ { \\prime } \\mathrm { S o R T } ( \\bar { n } ) + [ d , 0 , \\dotsc , 0 ]" + }, + { + "category_id": 13, + "poly": [ + 732, + 1577, + 799, + 1577, + 799, + 1609, + 732, + 1609 + ], + "score": 0.29, + "latex": "( \\bar { n } , \\beta )" + }, + { + "category_id": 13, + "poly": [ + 885, + 1698, + 951, + 1698, + 951, + 1732, + 885, + 1732 + ], + "score": 0.27, + "latex": "( \\bar { n } , d )" + }, + { + "category_id": 14, + "poly": [ + 446, + 892, + 689, + 892, + 689, + 1007, + 446, + 1007 + ], + "score": 0.26, + "latex": "\\begin{array} { r } { \\sum _ { i = 2 } ^ { d } n ^ { ( i ) } \\le d \\mathrm { \\bf ~ t h e n } } \\\\ { \\bar { n } ^ { \\prime } [ n , 0 , \\dots , 0 ] } \\\\ { q ^ { \\prime } q ( \\bar { n } ^ { \\prime } ) } \\\\ { \\dotsm q ^ { \\prime } \\tilde { \\dots } \\dotsm } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 465, + 1058, + 809, + 1058, + 809, + 1094, + 465, + 1094 + ], + "score": 0.25, + "latex": "\\bar { n } ^ { \\prime } \\mathrm { S o R T } ( \\bar { n } ) + [ d , 0 , \\dotsc , 0 ]" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 818.0, + 73.0, + 818.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 830.0, + 2084.0, + 870.0, + 2084.0, + 870.0, + 2123.0, + 830.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1500.0, + 853.0, + 1500.0, + 853.0, + 1541.0, + 293.0, + 1541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 877.0, + 1500.0, + 1115.0, + 1500.0, + 1115.0, + 1541.0, + 877.0, + 1541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1173.0, + 1500.0, + 1404.0, + 1500.0, + 1404.0, + 1541.0, + 1173.0, + 1541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 1526.0, + 1233.0, + 1526.0, + 1233.0, + 1573.0, + 288.0, + 1573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1294.0, + 1526.0, + 1305.0, + 1526.0, + 1305.0, + 1573.0, + 1294.0, + 1573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 228.0, + 984.0, + 228.0, + 984.0, + 268.0, + 296.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1004.0, + 228.0, + 1315.0, + 228.0, + 1315.0, + 268.0, + 1004.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1373.0, + 228.0, + 1406.0, + 228.0, + 1406.0, + 268.0, + 1373.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 264.0, + 481.0, + 264.0, + 481.0, + 303.0, + 295.0, + 303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 502.0, + 264.0, + 872.0, + 264.0, + 872.0, + 303.0, + 502.0, + 303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 920.0, + 264.0, + 1038.0, + 264.0, + 1038.0, + 303.0, + 920.0, + 303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1068.0, + 264.0, + 1117.0, + 264.0, + 1117.0, + 303.0, + 1068.0, + 303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1263.0, + 264.0, + 1406.0, + 264.0, + 1406.0, + 303.0, + 1263.0, + 303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 294.0, + 827.0, + 294.0, + 827.0, + 335.0, + 292.0, + 335.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 848.0, + 294.0, + 1192.0, + 294.0, + 1192.0, + 335.0, + 848.0, + 335.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 364.0, + 1902.0, + 891.0, + 1902.0, + 891.0, + 1948.0, + 364.0, + 1948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1099.0, + 1902.0, + 1148.0, + 1902.0, + 1148.0, + 1948.0, + 1099.0, + 1948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1363.0, + 1902.0, + 1399.0, + 1902.0, + 1399.0, + 1948.0, + 1363.0, + 1948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 1573.0, + 731.0, + 1573.0, + 731.0, + 1610.0, + 307.0, + 1610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 310.0, + 1606.0, + 338.0, + 1606.0, + 338.0, + 1639.0, + 310.0, + 1639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 382.0, + 1604.0, + 472.0, + 1604.0, + 472.0, + 1638.0, + 382.0, + 1638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 1636.0, + 339.0, + 1636.0, + 339.0, + 1670.0, + 308.0, + 1670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 378.0, + 1634.0, + 468.0, + 1634.0, + 468.0, + 1668.0, + 378.0, + 1668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 309.0, + 1668.0, + 338.0, + 1668.0, + 338.0, + 1699.0, + 309.0, + 1699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 379.0, + 1668.0, + 471.0, + 1668.0, + 471.0, + 1701.0, + 379.0, + 1701.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 309.0, + 1699.0, + 338.0, + 1699.0, + 338.0, + 1731.0, + 309.0, + 1731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 422.0, + 1696.0, + 426.0, + 1696.0, + 426.0, + 1734.0, + 422.0, + 1734.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 445.0, + 1696.0, + 666.0, + 1696.0, + 666.0, + 1734.0, + 445.0, + 1734.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 705.0, + 1696.0, + 884.0, + 1696.0, + 884.0, + 1734.0, + 705.0, + 1734.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 1728.0, + 339.0, + 1728.0, + 339.0, + 1762.0, + 307.0, + 1762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 420.0, + 1723.0, + 697.0, + 1723.0, + 697.0, + 1761.0, + 420.0, + 1761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 1759.0, + 339.0, + 1759.0, + 339.0, + 1792.0, + 307.0, + 1792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 425.0, + 1758.0, + 556.0, + 1758.0, + 556.0, + 1790.0, + 425.0, + 1790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 1790.0, + 339.0, + 1790.0, + 339.0, + 1820.0, + 308.0, + 1820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 382.0, + 1788.0, + 662.0, + 1788.0, + 662.0, + 1821.0, + 382.0, + 1821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 696.0, + 1788.0, + 764.0, + 1788.0, + 764.0, + 1821.0, + 696.0, + 1821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 306.0, + 1819.0, + 523.0, + 1819.0, + 523.0, + 1854.0, + 306.0, + 1854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 228.0, + 984.0, + 228.0, + 984.0, + 268.0, + 296.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1004.0, + 228.0, + 1315.0, + 228.0, + 1315.0, + 268.0, + 1004.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1373.0, + 228.0, + 1406.0, + 228.0, + 1406.0, + 268.0, + 1373.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 264.0, + 481.0, + 264.0, + 481.0, + 303.0, + 295.0, + 303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 502.0, + 264.0, + 872.0, + 264.0, + 872.0, + 303.0, + 502.0, + 303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 920.0, + 264.0, + 1038.0, + 264.0, + 1038.0, + 303.0, + 920.0, + 303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1068.0, + 264.0, + 1117.0, + 264.0, + 1117.0, + 303.0, + 1068.0, + 303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1263.0, + 264.0, + 1406.0, + 264.0, + 1406.0, + 303.0, + 1263.0, + 303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 294.0, + 827.0, + 294.0, + 827.0, + 335.0, + 292.0, + 335.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 848.0, + 294.0, + 1192.0, + 294.0, + 1192.0, + 335.0, + 848.0, + 335.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 22, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 1560, + 1405, + 1560, + 1405, + 1810, + 296, + 1810 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 396, + 229, + 1404, + 229, + 1404, + 323, + 396, + 323 + ], + "score": 0.947 + }, + { + "category_id": 8, + "poly": [ + 664, + 1234, + 1130, + 1234, + 1130, + 1303, + 664, + 1303 + ], + "score": 0.945 + }, + { + "category_id": 8, + "poly": [ + 705, + 481, + 1092, + 481, + 1092, + 520, + 705, + 520 + ], + "score": 0.939 + }, + { + "category_id": 1, + "poly": [ + 390, + 530, + 1402, + 530, + 1402, + 593, + 390, + 593 + ], + "score": 0.93 + }, + { + "category_id": 1, + "poly": [ + 343, + 1316, + 1102, + 1316, + 1102, + 1349, + 343, + 1349 + ], + "score": 0.927 + }, + { + "category_id": 1, + "poly": [ + 297, + 1899, + 1399, + 1899, + 1399, + 1965, + 297, + 1965 + ], + "score": 0.925 + }, + { + "category_id": 1, + "poly": [ + 373, + 431, + 1273, + 431, + 1273, + 470, + 373, + 470 + ], + "score": 0.914 + }, + { + "category_id": 1, + "poly": [ + 395, + 1502, + 1007, + 1502, + 1007, + 1540, + 395, + 1540 + ], + "score": 0.913 + }, + { + "category_id": 0, + "poly": [ + 301, + 1843, + 806, + 1843, + 806, + 1875, + 301, + 1875 + ], + "score": 0.909 + }, + { + "category_id": 1, + "poly": [ + 298, + 1971, + 1397, + 1971, + 1397, + 2037, + 298, + 2037 + ], + "score": 0.906 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 815, + 75, + 815, + 105, + 300, + 105 + ], + "score": 0.903 + }, + { + "category_id": 1, + "poly": [ + 374, + 602, + 1399, + 602, + 1399, + 635, + 374, + 635 + ], + "score": 0.897 + }, + { + "category_id": 1, + "poly": [ + 310, + 665, + 1398, + 665, + 1398, + 701, + 310, + 701 + ], + "score": 0.895 + }, + { + "category_id": 8, + "poly": [ + 641, + 1361, + 1155, + 1361, + 1155, + 1399, + 641, + 1399 + ], + "score": 0.88 + }, + { + "category_id": 2, + "poly": [ + 834, + 2088, + 865, + 2088, + 865, + 2112, + 834, + 2112 + ], + "score": 0.861 + }, + { + "category_id": 1, + "poly": [ + 388, + 362, + 1399, + 362, + 1399, + 426, + 388, + 426 + ], + "score": 0.85 + }, + { + "category_id": 8, + "poly": [ + 636, + 1455, + 1156, + 1455, + 1156, + 1491, + 636, + 1491 + ], + "score": 0.838 + }, + { + "category_id": 1, + "poly": [ + 396, + 327, + 1119, + 327, + 1119, + 360, + 396, + 360 + ], + "score": 0.745 + }, + { + "category_id": 1, + "poly": [ + 394, + 1408, + 948, + 1408, + 948, + 1442, + 394, + 1442 + ], + "score": 0.704 + }, + { + "category_id": 1, + "poly": [ + 339, + 723, + 1407, + 723, + 1407, + 1221, + 339, + 1221 + ], + "score": 0.701 + }, + { + "category_id": 13, + "poly": [ + 964, + 1114, + 1087, + 1114, + 1087, + 1149, + 964, + 1149 + ], + "score": 0.94, + "latex": "[ 0 , \\mathrm { B _ { L } } ( q _ { 0 } ) ]" + }, + { + "category_id": 13, + "poly": [ + 684, + 1561, + 925, + 1561, + 925, + 1596, + 684, + 1596 + ], + "score": 0.94, + "latex": "q _ { 0 } \\ \\ge \\ q ( [ n , 0 , \\ldots , 0 ] )" + }, + { + "category_id": 13, + "poly": [ + 398, + 1111, + 728, + 1111, + 728, + 1149, + 398, + 1149 + ], + "score": 0.93, + "latex": "\\Delta \\beta ( q ) \\triangleq \\beta ( \\mathrm { B } _ { \\mathrm { U } } ( q ) ) - \\beta ( q )" + }, + { + "category_id": 14, + "poly": [ + 664, + 1232, + 1132, + 1232, + 1132, + 1302, + 664, + 1302 + ], + "score": 0.93, + "latex": "\\forall i > j \\ge 2 \\quad \\frac { \\partial q } { \\partial n ^ { ( j ) } } ( \\bar { n } ) \\ge \\frac { \\partial q } { \\partial n ^ { ( i ) } } ( \\bar { n } ) \\ge 0 ." + }, + { + "category_id": 13, + "poly": [ + 475, + 938, + 598, + 938, + 598, + 971, + 475, + 971 + ], + "score": 0.93, + "latex": "q \\in [ 0 , q _ { 0 } ]" + }, + { + "category_id": 13, + "poly": [ + 553, + 1039, + 621, + 1039, + 621, + 1072, + 553, + 1072 + ], + "score": 0.92, + "latex": "[ 0 , q _ { 0 } ]" + }, + { + "category_id": 13, + "poly": [ + 753, + 432, + 933, + 432, + 933, + 472, + 753, + 472 + ], + "score": 0.92, + "latex": "\\mathcal { M } : \\mathbb { R } _ { \\ge 0 } ^ { m } [ m ]" + }, + { + "category_id": 13, + "poly": [ + 683, + 1746, + 851, + 1746, + 851, + 1779, + 683, + 1779 + ], + "score": 0.92, + "latex": "q ( [ n , 0 , \\ldots , 0 ] )" + }, + { + "category_id": 13, + "poly": [ + 397, + 795, + 759, + 795, + 759, + 829, + 397, + 829 + ], + "score": 0.92, + "latex": "\\mathrm { B } _ { \\mathrm { L } } ( q ( \\bar { n } ) ) \\leq q ( \\bar { n } ^ { \\prime } ) \\leq \\mathrm { B } _ { \\mathrm { U } } ( q ( \\bar { n } ) )" + }, + { + "category_id": 13, + "poly": [ + 673, + 1039, + 911, + 1039, + 911, + 1074, + 673, + 1074 + ], + "score": 0.92, + "latex": "\\bar { \\beta ( q ) } = \\beta ^ { * } \\ge \\beta ( q _ { 0 } )" + }, + { + "category_id": 13, + "poly": [ + 883, + 1506, + 998, + 1506, + 998, + 1540, + 883, + 1540 + ], + "score": 0.92, + "latex": "q ( { \\bar { n } } ) \\geq q _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 547, + 1318, + 600, + 1318, + 600, + 1351, + 547, + 1351 + ], + "score": 0.92, + "latex": "q ( { \\bar { n } } )" + }, + { + "category_id": 13, + "poly": [ + 1280, + 1009, + 1342, + 1009, + 1342, + 1043, + 1280, + 1043 + ], + "score": 0.92, + "latex": "\\beta \\left( q \\right)" + }, + { + "category_id": 13, + "poly": [ + 452, + 1190, + 505, + 1190, + 505, + 1223, + 452, + 1223 + ], + "score": 0.92, + "latex": "q ( { \\bar { n } } )" + }, + { + "category_id": 13, + "poly": [ + 444, + 1409, + 498, + 1409, + 498, + 1443, + 444, + 1443 + ], + "score": 0.92, + "latex": "q ( { \\bar { n } } )" + }, + { + "category_id": 13, + "poly": [ + 1124, + 1901, + 1288, + 1901, + 1288, + 1935, + 1124, + 1935 + ], + "score": 0.92, + "latex": "f ( D ) - f ( D ^ { \\prime } )" + }, + { + "category_id": 13, + "poly": [ + 684, + 1502, + 815, + 1502, + 815, + 1535, + 684, + 1535 + ], + "score": 0.91, + "latex": "n ^ { ( 1 ) } = n ^ { ( 2 ) }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1624, + 433, + 1624, + 433, + 1657, + 298, + 1657 + ], + "score": 0.91, + "latex": "[ n , 0 , \\ldots , 0 ]" + }, + { + "category_id": 13, + "poly": [ + 396, + 969, + 502, + 969, + 502, + 1002, + 396, + 1002 + ], + "score": 0.91, + "latex": "q \\in [ 0 , 1 ]" + }, + { + "category_id": 13, + "poly": [ + 360, + 2002, + 458, + 2002, + 458, + 2037, + 360, + 2037 + ], + "score": 0.91, + "latex": "\\beta ( q ( \\bar { n } ) )" + }, + { + "category_id": 13, + "poly": [ + 978, + 432, + 1155, + 432, + 1155, + 472, + 978, + 472 + ], + "score": 0.91, + "latex": "q \\colon \\mathbb { R } _ { \\geq 0 } ^ { m } [ 0 , 1 ]" + }, + { + "category_id": 13, + "poly": [ + 1213, + 1158, + 1393, + 1158, + 1393, + 1193, + 1213, + 1193 + ], + "score": 0.91, + "latex": "q ( \\bar { n } ) \\leq \\mathrm { B _ { U } } ( q _ { 0 } )" + }, + { + "category_id": 13, + "poly": [ + 1076, + 937, + 1323, + 937, + 1323, + 972, + 1076, + 972 + ], + "score": 0.91, + "latex": "\\mathrm { B } _ { \\mathrm { L } } ( \\bar { q } ) \\leq q \\bar { \\leq } \\mathrm { B } _ { \\mathrm { U } } ( q )" + }, + { + "category_id": 13, + "poly": [ + 1213, + 1113, + 1350, + 1113, + 1350, + 1149, + 1213, + 1149 + ], + "score": 0.91, + "latex": "\\mathrm { B _ { U } } ( q ) \\le q _ { 0 }" + }, + { + "category_id": 14, + "poly": [ + 705, + 481, + 1093, + 481, + 1093, + 519, + 705, + 519 + ], + "score": 0.9, + "latex": "q ( \\bar { n } ) \\geq \\mathbf { P r } [ \\mathcal { M } ( \\bar { n } ) \\neq \\operatorname { a r g m a x } ( \\bar { n } ) ] ." + }, + { + "category_id": 13, + "poly": [ + 527, + 1155, + 572, + 1155, + 572, + 1187, + 527, + 1187 + ], + "score": 0.9, + "latex": "\\boldsymbol { n } ^ { ( i ) }" + }, + { + "category_id": 13, + "poly": [ + 1337, + 666, + 1392, + 666, + 1392, + 701, + 1337, + 701 + ], + "score": 0.9, + "latex": "\\beta \\left( \\cdot \\right)" + }, + { + "category_id": 13, + "poly": [ + 396, + 865, + 469, + 865, + 469, + 901, + 396, + 901 + ], + "score": 0.9, + "latex": "\\operatorname { B _ { L } } ( q )" + }, + { + "category_id": 13, + "poly": [ + 1242, + 668, + 1287, + 668, + 1287, + 701, + 1242, + 701 + ], + "score": 0.9, + "latex": "q ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 546, + 724, + 591, + 724, + 591, + 759, + 546, + 759 + ], + "score": 0.9, + "latex": "q ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 955, + 1044, + 1034, + 1044, + 1034, + 1072, + 955, + 1072 + ], + "score": 0.9, + "latex": "q > q _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 396, + 1008, + 452, + 1008, + 452, + 1042, + 396, + 1042 + ], + "score": 0.9, + "latex": "\\beta \\left( \\cdot \\right)" + }, + { + "category_id": 13, + "poly": [ + 641, + 763, + 900, + 763, + 900, + 797, + 641, + 797 + ], + "score": 0.9, + "latex": "\\mathrm { B _ { U } , B _ { L } \\colon [ 0 , 1 ] \\to [ 0 , 1 ] }" + }, + { + "category_id": 13, + "poly": [ + 1198, + 1041, + 1230, + 1041, + 1230, + 1071, + 1198, + 1071 + ], + "score": 0.9, + "latex": "\\beta ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 1058, + 1011, + 1161, + 1011, + 1161, + 1041, + 1058, + 1041 + ], + "score": 0.89, + "latex": "q _ { 0 } \\leq 0 . 5" + }, + { + "category_id": 13, + "poly": [ + 1218, + 907, + 1399, + 907, + 1399, + 940, + 1218, + 940 + ], + "score": 0.89, + "latex": "q = \\mathrm { B _ { L } } ( \\mathrm { B _ { U } } ( q ) )" + }, + { + "category_id": 13, + "poly": [ + 441, + 601, + 594, + 601, + 594, + 636, + 441, + 636 + ], + "score": 0.89, + "latex": "\\beta \\colon [ 0 , 1 ] \\mathbb { R }" + }, + { + "category_id": 13, + "poly": [ + 973, + 1011, + 1005, + 1011, + 1005, + 1041, + 973, + 1041 + ], + "score": 0.89, + "latex": "\\beta ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 915, + 796, + 953, + 796, + 953, + 827, + 915, + 827 + ], + "score": 0.88, + "latex": "\\mathrm { B _ { L } }" + }, + { + "category_id": 13, + "poly": [ + 1077, + 1365, + 1147, + 1365, + 1147, + 1394, + 1077, + 1394 + ], + "score": 0.88, + "latex": "x \\geq 0" + }, + { + "category_id": 13, + "poly": [ + 489, + 908, + 527, + 908, + 527, + 938, + 489, + 938 + ], + "score": 0.87, + "latex": "\\mathrm { B _ { L } }" + }, + { + "category_id": 13, + "poly": [ + 344, + 1932, + 378, + 1932, + 378, + 1961, + 344, + 1961 + ], + "score": 0.87, + "latex": "D ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 1109, + 1456, + 1150, + 1456, + 1150, + 1489, + 1109, + 1489 + ], + "score": 0.86, + "latex": "[ m ]" + }, + { + "category_id": 13, + "poly": [ + 1209, + 765, + 1237, + 765, + 1237, + 792, + 1209, + 792 + ], + "score": 0.86, + "latex": "\\bar { n } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 902, + 1903, + 921, + 1903, + 921, + 1933, + 902, + 1933 + ], + "score": 0.86, + "latex": "f" + }, + { + "category_id": 13, + "poly": [ + 946, + 731, + 975, + 731, + 975, + 755, + 946, + 755 + ], + "score": 0.85, + "latex": "n _ { i }" + }, + { + "category_id": 13, + "poly": [ + 688, + 942, + 717, + 942, + 717, + 970, + 688, + 970 + ], + "score": 0.85, + "latex": "q _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 639, + 1455, + 819, + 1455, + 819, + 1491, + 639, + 1491 + ], + "score": 0.85, + "latex": "q ( { \\bar { n } } ) = q ( \\pi ( { \\bar { n } } ) )" + }, + { + "category_id": 13, + "poly": [ + 682, + 564, + 699, + 564, + 699, + 594, + 682, + 594 + ], + "score": 0.84, + "latex": "\\tilde { q }" + }, + { + "category_id": 13, + "poly": [ + 696, + 830, + 714, + 830, + 714, + 853, + 696, + 853 + ], + "score": 0.83, + "latex": "\\bar { n }" + }, + { + "category_id": 13, + "poly": [ + 788, + 537, + 807, + 537, + 807, + 563, + 788, + 563 + ], + "score": 0.83, + "latex": "q" + }, + { + "category_id": 13, + "poly": [ + 904, + 609, + 921, + 609, + 921, + 634, + 904, + 634 + ], + "score": 0.81, + "latex": "q" + }, + { + "category_id": 13, + "poly": [ + 1273, + 768, + 1292, + 768, + 1292, + 792, + 1273, + 792 + ], + "score": 0.79, + "latex": "\\bar { n }" + }, + { + "category_id": 13, + "poly": [ + 1374, + 1902, + 1401, + 1902, + 1401, + 1929, + 1374, + 1929 + ], + "score": 0.78, + "latex": "D" + }, + { + "category_id": 13, + "poly": [ + 643, + 1361, + 928, + 1361, + 928, + 1398, + 643, + 1398 + ], + "score": 0.77, + "latex": "q ( \\bar { n } ) = q ( \\bar { n } + [ x , \\ldots , x ] )" + }, + { + "category_id": 13, + "poly": [ + 1046, + 329, + 1064, + 329, + 1064, + 355, + 1046, + 355 + ], + "score": 0.76, + "latex": "d" + }, + { + "category_id": 13, + "poly": [ + 1076, + 1163, + 1096, + 1163, + 1096, + 1187, + 1076, + 1187 + ], + "score": 0.76, + "latex": "\\bar { n }" + }, + { + "category_id": 13, + "poly": [ + 397, + 832, + 414, + 832, + 414, + 858, + 397, + 858 + ], + "score": 0.76, + "latex": "q" + }, + { + "category_id": 13, + "poly": [ + 872, + 1413, + 891, + 1413, + 891, + 1437, + 872, + 1437 + ], + "score": 0.75, + "latex": "\\bar { n }" + }, + { + "category_id": 13, + "poly": [ + 699, + 1720, + 727, + 1720, + 727, + 1743, + 699, + 1743 + ], + "score": 0.74, + "latex": "m" + }, + { + "category_id": 13, + "poly": [ + 1006, + 1366, + 1027, + 1366, + 1027, + 1391, + 1006, + 1391 + ], + "score": 0.74, + "latex": "\\bar { n }" + }, + { + "category_id": 13, + "poly": [ + 1049, + 1463, + 1070, + 1463, + 1070, + 1484, + 1049, + 1484 + ], + "score": 0.74, + "latex": "\\pi" + }, + { + "category_id": 13, + "poly": [ + 647, + 1162, + 661, + 1162, + 661, + 1187, + 647, + 1187 + ], + "score": 0.72, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 648, + 873, + 664, + 873, + 664, + 899, + 648, + 899 + ], + "score": 0.72, + "latex": "q" + }, + { + "category_id": 13, + "poly": [ + 1237, + 1721, + 1257, + 1721, + 1257, + 1743, + 1237, + 1743 + ], + "score": 0.69, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 395, + 907, + 438, + 907, + 438, + 938, + 395, + 938 + ], + "score": 0.67, + "latex": "\\mathrm { B _ { U } }" + }, + { + "category_id": 13, + "poly": [ + 821, + 798, + 862, + 798, + 862, + 827, + 821, + 827 + ], + "score": 0.51, + "latex": "\\mathrm { B _ { U } }" + }, + { + "category_id": 13, + "poly": [ + 898, + 1977, + 914, + 1977, + 914, + 2000, + 898, + 2000 + ], + "score": 0.49, + "latex": "^ 3" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1841.0, + 809.0, + 1841.0, + 809.0, + 1878.0, + 294.0, + 1878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 829.0, + 2084.0, + 872.0, + 2084.0, + 872.0, + 2124.0, + 829.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1561.0, + 683.0, + 1561.0, + 683.0, + 1599.0, + 295.0, + 1599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 926.0, + 1561.0, + 1405.0, + 1561.0, + 1405.0, + 1599.0, + 926.0, + 1599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1591.0, + 1396.0, + 1591.0, + 1396.0, + 1628.0, + 294.0, + 1628.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 434.0, + 1624.0, + 1406.0, + 1624.0, + 1406.0, + 1658.0, + 434.0, + 1658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1655.0, + 1405.0, + 1655.0, + 1405.0, + 1689.0, + 294.0, + 1689.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1684.0, + 1405.0, + 1684.0, + 1405.0, + 1719.0, + 291.0, + 1719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1715.0, + 698.0, + 1715.0, + 698.0, + 1749.0, + 294.0, + 1749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 728.0, + 1715.0, + 1236.0, + 1715.0, + 1236.0, + 1749.0, + 728.0, + 1749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1258.0, + 1715.0, + 1405.0, + 1715.0, + 1405.0, + 1749.0, + 1258.0, + 1749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1746.0, + 682.0, + 1746.0, + 682.0, + 1780.0, + 294.0, + 1780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 852.0, + 1746.0, + 1405.0, + 1746.0, + 1405.0, + 1780.0, + 852.0, + 1780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1776.0, + 789.0, + 1776.0, + 789.0, + 1811.0, + 293.0, + 1811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 225.0, + 1404.0, + 225.0, + 1404.0, + 266.0, + 393.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 258.0, + 1404.0, + 258.0, + 1404.0, + 299.0, + 392.0, + 299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 292.0, + 512.0, + 292.0, + 512.0, + 322.0, + 392.0, + 322.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 527.0, + 787.0, + 527.0, + 787.0, + 565.0, + 396.0, + 565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 808.0, + 527.0, + 1405.0, + 527.0, + 1405.0, + 565.0, + 808.0, + 565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 562.0, + 681.0, + 562.0, + 681.0, + 595.0, + 392.0, + 595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 700.0, + 562.0, + 1036.0, + 562.0, + 1036.0, + 595.0, + 700.0, + 595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 341.0, + 1311.0, + 546.0, + 1311.0, + 546.0, + 1356.0, + 341.0, + 1356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 601.0, + 1311.0, + 1105.0, + 1311.0, + 1105.0, + 1356.0, + 601.0, + 1356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1897.0, + 901.0, + 1897.0, + 901.0, + 1937.0, + 293.0, + 1937.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 922.0, + 1897.0, + 1123.0, + 1897.0, + 1123.0, + 1937.0, + 922.0, + 1937.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1289.0, + 1897.0, + 1373.0, + 1897.0, + 1373.0, + 1937.0, + 1289.0, + 1937.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1931.0, + 343.0, + 1931.0, + 343.0, + 1967.0, + 295.0, + 1967.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 379.0, + 1931.0, + 546.0, + 1931.0, + 546.0, + 1967.0, + 379.0, + 1967.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 426.0, + 752.0, + 426.0, + 752.0, + 477.0, + 367.0, + 477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 934.0, + 426.0, + 977.0, + 426.0, + 977.0, + 477.0, + 934.0, + 477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1156.0, + 426.0, + 1275.0, + 426.0, + 1275.0, + 477.0, + 1156.0, + 477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 389.0, + 1493.0, + 683.0, + 1493.0, + 683.0, + 1551.0, + 389.0, + 1551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 816.0, + 1493.0, + 882.0, + 1493.0, + 882.0, + 1551.0, + 816.0, + 1551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 999.0, + 1493.0, + 1014.0, + 1493.0, + 1014.0, + 1551.0, + 999.0, + 1551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1970.0, + 897.0, + 1970.0, + 897.0, + 2007.0, + 294.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 915.0, + 1970.0, + 1401.0, + 1970.0, + 1401.0, + 2007.0, + 915.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1999.0, + 359.0, + 1999.0, + 359.0, + 2040.0, + 293.0, + 2040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 459.0, + 1999.0, + 473.0, + 1999.0, + 473.0, + 2040.0, + 459.0, + 2040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 369.0, + 599.0, + 440.0, + 599.0, + 440.0, + 639.0, + 369.0, + 639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 595.0, + 599.0, + 903.0, + 599.0, + 903.0, + 639.0, + 595.0, + 639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 922.0, + 599.0, + 1401.0, + 599.0, + 1401.0, + 639.0, + 922.0, + 639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 303.0, + 660.0, + 1241.0, + 660.0, + 1241.0, + 707.0, + 303.0, + 707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1288.0, + 660.0, + 1336.0, + 660.0, + 1336.0, + 707.0, + 1288.0, + 707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1393.0, + 660.0, + 1405.0, + 660.0, + 1405.0, + 707.0, + 1393.0, + 707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 363.0, + 1402.0, + 363.0, + 1402.0, + 395.0, + 396.0, + 395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 393.0, + 1382.0, + 393.0, + 1382.0, + 429.0, + 394.0, + 429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 325.0, + 1045.0, + 325.0, + 1045.0, + 362.0, + 395.0, + 362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1065.0, + 325.0, + 1121.0, + 325.0, + 1121.0, + 362.0, + 1065.0, + 362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1403.0, + 443.0, + 1403.0, + 443.0, + 1448.0, + 393.0, + 1448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 499.0, + 1403.0, + 871.0, + 1403.0, + 871.0, + 1448.0, + 499.0, + 1448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 892.0, + 1403.0, + 951.0, + 1403.0, + 951.0, + 1448.0, + 892.0, + 1448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 341.0, + 723.0, + 545.0, + 723.0, + 545.0, + 760.0, + 341.0, + 760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 592.0, + 723.0, + 945.0, + 723.0, + 945.0, + 760.0, + 592.0, + 760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 976.0, + 723.0, + 985.0, + 723.0, + 985.0, + 760.0, + 976.0, + 760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 340.0, + 760.0, + 640.0, + 760.0, + 640.0, + 801.0, + 340.0, + 801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 901.0, + 760.0, + 1208.0, + 760.0, + 1208.0, + 801.0, + 901.0, + 801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1238.0, + 760.0, + 1272.0, + 760.0, + 1272.0, + 801.0, + 1238.0, + 801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1293.0, + 760.0, + 1405.0, + 760.0, + 1405.0, + 801.0, + 1293.0, + 801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 793.0, + 396.0, + 793.0, + 396.0, + 832.0, + 392.0, + 832.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 760.0, + 793.0, + 820.0, + 793.0, + 820.0, + 832.0, + 760.0, + 832.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 863.0, + 793.0, + 914.0, + 793.0, + 914.0, + 832.0, + 863.0, + 832.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 954.0, + 793.0, + 1405.0, + 793.0, + 1405.0, + 832.0, + 954.0, + 832.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 826.0, + 396.0, + 826.0, + 396.0, + 861.0, + 392.0, + 861.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 415.0, + 826.0, + 695.0, + 826.0, + 695.0, + 861.0, + 415.0, + 861.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 715.0, + 826.0, + 726.0, + 826.0, + 726.0, + 861.0, + 715.0, + 861.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 343.0, + 865.0, + 395.0, + 865.0, + 395.0, + 905.0, + 343.0, + 905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 470.0, + 865.0, + 647.0, + 865.0, + 647.0, + 905.0, + 470.0, + 905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 665.0, + 865.0, + 676.0, + 865.0, + 676.0, + 905.0, + 665.0, + 905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 340.0, + 902.0, + 394.0, + 902.0, + 394.0, + 945.0, + 340.0, + 945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 439.0, + 902.0, + 488.0, + 902.0, + 488.0, + 945.0, + 439.0, + 945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 528.0, + 902.0, + 1217.0, + 902.0, + 1217.0, + 945.0, + 528.0, + 945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 391.0, + 936.0, + 474.0, + 936.0, + 474.0, + 974.0, + 391.0, + 974.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 599.0, + 936.0, + 687.0, + 936.0, + 687.0, + 974.0, + 599.0, + 974.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 718.0, + 936.0, + 1075.0, + 936.0, + 1075.0, + 974.0, + 718.0, + 974.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1324.0, + 936.0, + 1405.0, + 936.0, + 1405.0, + 974.0, + 1324.0, + 974.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 391.0, + 968.0, + 395.0, + 968.0, + 395.0, + 1003.0, + 391.0, + 1003.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 503.0, + 968.0, + 513.0, + 968.0, + 513.0, + 1003.0, + 503.0, + 1003.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 341.0, + 1006.0, + 395.0, + 1006.0, + 395.0, + 1044.0, + 341.0, + 1044.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 453.0, + 1006.0, + 972.0, + 1006.0, + 972.0, + 1044.0, + 453.0, + 1044.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1006.0, + 1006.0, + 1057.0, + 1006.0, + 1057.0, + 1044.0, + 1006.0, + 1044.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1162.0, + 1006.0, + 1279.0, + 1006.0, + 1279.0, + 1044.0, + 1162.0, + 1044.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1343.0, + 1006.0, + 1402.0, + 1006.0, + 1402.0, + 1044.0, + 1343.0, + 1044.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1038.0, + 552.0, + 1038.0, + 552.0, + 1077.0, + 394.0, + 1077.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 622.0, + 1038.0, + 672.0, + 1038.0, + 672.0, + 1077.0, + 622.0, + 1077.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 912.0, + 1038.0, + 954.0, + 1038.0, + 954.0, + 1077.0, + 912.0, + 1077.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1035.0, + 1038.0, + 1197.0, + 1038.0, + 1197.0, + 1077.0, + 1035.0, + 1077.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1231.0, + 1038.0, + 1406.0, + 1038.0, + 1406.0, + 1077.0, + 1231.0, + 1077.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1070.0, + 697.0, + 1070.0, + 697.0, + 1105.0, + 394.0, + 1105.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 340.0, + 1110.0, + 397.0, + 1110.0, + 397.0, + 1153.0, + 340.0, + 1153.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 729.0, + 1110.0, + 963.0, + 1110.0, + 963.0, + 1153.0, + 729.0, + 1153.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1088.0, + 1110.0, + 1212.0, + 1110.0, + 1212.0, + 1153.0, + 1088.0, + 1153.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1351.0, + 1110.0, + 1361.0, + 1110.0, + 1361.0, + 1153.0, + 1351.0, + 1153.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 340.0, + 1154.0, + 526.0, + 1154.0, + 526.0, + 1198.0, + 340.0, + 1198.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 573.0, + 1154.0, + 646.0, + 1154.0, + 646.0, + 1198.0, + 573.0, + 1198.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 662.0, + 1154.0, + 1075.0, + 1154.0, + 1075.0, + 1198.0, + 662.0, + 1198.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1097.0, + 1154.0, + 1212.0, + 1154.0, + 1212.0, + 1198.0, + 1097.0, + 1198.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 1154.0, + 1405.0, + 1154.0, + 1405.0, + 1198.0, + 1394.0, + 1198.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 1189.0, + 451.0, + 1189.0, + 451.0, + 1224.0, + 396.0, + 1224.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 506.0, + 1189.0, + 935.0, + 1189.0, + 935.0, + 1224.0, + 506.0, + 1224.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 23, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 8, + "poly": [ + 342, + 302, + 1354, + 302, + 1354, + 451, + 342, + 451 + ], + "score": 0.965 + }, + { + "category_id": 1, + "poly": [ + 298, + 504, + 1401, + 504, + 1401, + 599, + 298, + 599 + ], + "score": 0.96 + }, + { + "category_id": 8, + "poly": [ + 699, + 1863, + 999, + 1863, + 999, + 1952, + 699, + 1952 + ], + "score": 0.956 + }, + { + "category_id": 1, + "poly": [ + 290, + 228, + 1402, + 228, + 1402, + 295, + 290, + 295 + ], + "score": 0.95 + }, + { + "category_id": 1, + "poly": [ + 296, + 1023, + 1402, + 1023, + 1402, + 1089, + 296, + 1089 + ], + "score": 0.95 + }, + { + "category_id": 8, + "poly": [ + 493, + 1098, + 1201, + 1098, + 1201, + 1175, + 493, + 1175 + ], + "score": 0.949 + }, + { + "category_id": 1, + "poly": [ + 296, + 1244, + 1401, + 1244, + 1401, + 1312, + 296, + 1312 + ], + "score": 0.946 + }, + { + "category_id": 1, + "poly": [ + 292, + 611, + 1399, + 611, + 1399, + 677, + 292, + 677 + ], + "score": 0.943 + }, + { + "category_id": 1, + "poly": [ + 300, + 1701, + 1408, + 1701, + 1408, + 1766, + 300, + 1766 + ], + "score": 0.938 + }, + { + "category_id": 8, + "poly": [ + 422, + 880, + 1276, + 880, + 1276, + 950, + 422, + 950 + ], + "score": 0.932 + }, + { + "category_id": 1, + "poly": [ + 367, + 1404, + 1405, + 1404, + 1405, + 1610, + 367, + 1610 + ], + "score": 0.929 + }, + { + "category_id": 8, + "poly": [ + 626, + 785, + 1070, + 785, + 1070, + 824, + 626, + 824 + ], + "score": 0.929 + }, + { + "category_id": 8, + "poly": [ + 625, + 682, + 1071, + 682, + 1071, + 720, + 625, + 720 + ], + "score": 0.925 + }, + { + "category_id": 1, + "poly": [ + 297, + 1961, + 1010, + 1961, + 1010, + 1995, + 297, + 1995 + ], + "score": 0.925 + }, + { + "category_id": 1, + "poly": [ + 298, + 1341, + 774, + 1341, + 774, + 1375, + 298, + 1375 + ], + "score": 0.925 + }, + { + "category_id": 1, + "poly": [ + 296, + 457, + 1006, + 457, + 1006, + 492, + 296, + 492 + ], + "score": 0.923 + }, + { + "category_id": 2, + "poly": [ + 298, + 73, + 816, + 73, + 816, + 106, + 298, + 106 + ], + "score": 0.92 + }, + { + "category_id": 1, + "poly": [ + 295, + 838, + 1099, + 838, + 1099, + 872, + 295, + 872 + ], + "score": 0.919 + }, + { + "category_id": 1, + "poly": [ + 296, + 1202, + 980, + 1202, + 980, + 1236, + 296, + 1236 + ], + "score": 0.917 + }, + { + "category_id": 1, + "poly": [ + 299, + 1636, + 509, + 1636, + 509, + 1669, + 299, + 1669 + ], + "score": 0.914 + }, + { + "category_id": 1, + "poly": [ + 296, + 961, + 415, + 961, + 415, + 992, + 296, + 992 + ], + "score": 0.914 + }, + { + "category_id": 1, + "poly": [ + 303, + 1778, + 1171, + 1778, + 1171, + 1814, + 303, + 1814 + ], + "score": 0.909 + }, + { + "category_id": 1, + "poly": [ + 297, + 1817, + 936, + 1817, + 936, + 1851, + 297, + 1851 + ], + "score": 0.905 + }, + { + "category_id": 8, + "poly": [ + 597, + 2000, + 1099, + 2000, + 1099, + 2038, + 597, + 2038 + ], + "score": 0.892 + }, + { + "category_id": 1, + "poly": [ + 290, + 724, + 1402, + 724, + 1402, + 785, + 290, + 785 + ], + "score": 0.89 + }, + { + "category_id": 2, + "poly": [ + 834, + 2087, + 865, + 2087, + 865, + 2113, + 834, + 2113 + ], + "score": 0.883 + }, + { + "category_id": 9, + "poly": [ + 1366, + 687, + 1399, + 687, + 1399, + 716, + 1366, + 716 + ], + "score": 0.875 + }, + { + "category_id": 9, + "poly": [ + 1365, + 788, + 1400, + 788, + 1400, + 817, + 1365, + 817 + ], + "score": 0.867 + }, + { + "category_id": 2, + "poly": [ + 1381, + 958, + 1404, + 958, + 1404, + 993, + 1381, + 993 + ], + "score": 0.749 + }, + { + "category_id": 2, + "poly": [ + 1381, + 1635, + 1404, + 1635, + 1404, + 1669, + 1381, + 1669 + ], + "score": 0.746 + }, + { + "category_id": 14, + "poly": [ + 698, + 1857, + 1000, + 1857, + 1000, + 1955, + 698, + 1955 + ], + "score": 0.95, + "latex": "S _ { i } ( \\bar { n } ) \\triangleq \\sum _ { j = 1 } ^ { i } ( n ^ { ( 1 ) } - n ^ { ( j ) } ) ." + }, + { + "category_id": 14, + "poly": [ + 418, + 875, + 1277, + 875, + 1277, + 954, + 418, + 954 + ], + "score": 0.94, + "latex": "\\begin{array} { r } { \\operatorname* { m a x } \\bigg \\{ \\Delta \\beta \\Big ( q ( \\bar { n } ) \\Big ) , ~ \\Delta \\beta \\Big ( \\mathrm { B } _ { \\mathrm { L } } ( q ( \\bar { n } ) ) \\Big ) \\bigg \\} \\leq \\Delta \\beta \\left( \\mathrm { B } _ { \\mathrm { L } } ( q _ { 0 } ) \\right) \\mathrm { i f } ~ \\mathrm { B } _ { \\mathrm { L } } ( q _ { 0 } ) \\leq q \\leq q _ { 0 } , } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1020, + 505, + 1247, + 505, + 1247, + 539, + 1020, + 539 + ], + "score": 0.93, + "latex": "q ( \\bar { n } ) \\in ( \\mathrm { B _ { L } } ( q _ { 0 } ) , q _ { 0 } )" + }, + { + "category_id": 14, + "poly": [ + 492, + 1095, + 1198, + 1095, + 1198, + 1174, + 492, + 1174 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { \\tilde { \\mathrm { L S } } ( q ) \\triangleq \\left\\{ \\begin{array} { l l } { \\Delta \\beta \\left( \\mathrm { B } _ { \\mathrm { L } } ( q _ { 0 } ) \\right) } & { \\mathrm { i f ~ } q \\in ( \\mathrm { B } _ { \\mathrm { L } } ( q _ { 0 } ) , q _ { 0 } ) , } \\\\ { \\operatorname* { m a x } \\left\\{ \\Delta \\beta \\left( q \\right) , \\Delta \\beta \\left( \\mathrm { B } _ { \\mathrm { L } } ( q ) \\right) \\right\\} } & { \\mathrm { o t h e r w i s e } . } \\end{array} \\right. } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 915, + 2001, + 1089, + 2001, + 1089, + 2036, + 915, + 2036 + ], + "score": 0.93, + "latex": "S _ { i } ( \\bar { n } ) \\geq S _ { i } ( \\bar { n } ^ { \\prime } )" + }, + { + "category_id": 13, + "poly": [ + 764, + 1460, + 898, + 1460, + 898, + 1495, + 764, + 1495 + ], + "score": 0.93, + "latex": "\\Delta \\beta \\left( \\mathrm { B _ { L } } ( \\cdot ) \\right)" + }, + { + "category_id": 14, + "poly": [ + 341, + 299, + 1356, + 299, + 1356, + 454, + 341, + 454 + ], + "score": 0.93, + "latex": "\\begin{array} { r l } & { | \\beta \\left( q ( \\bar { n } ) \\right) - \\beta \\left( q ( \\bar { n } ^ { \\prime } ) \\right) | \\leq \\operatorname* { m a x } \\bigg \\{ \\beta \\Big ( \\mathrm { B } _ { \\mathrm { U } } { \\left( q ( \\bar { n } ) \\right) } \\Big ) - \\beta \\Big ( q ( \\bar { n } ) \\Big ) , \\beta \\Big ( q ( \\bar { n } ) \\Big ) - \\beta \\Big ( \\mathrm { B } _ { \\mathrm { L } } { \\left( q ( \\bar { n } ) \\right) } \\Big ) \\bigg \\} } \\\\ & { \\quad \\quad \\quad \\quad = \\operatorname* { m a x } \\bigg \\{ \\Delta \\beta \\Big ( q ( \\bar { n } ) \\Big ) , \\Delta \\beta \\Big ( \\mathrm { B } _ { \\mathrm { L } } { \\left( q ( \\bar { n } ) \\right) } \\Big ) \\bigg \\} } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 429, + 1276, + 563, + 1276, + 563, + 1310, + 429, + 1310 + ], + "score": 0.93, + "latex": "[ \\mathrm { B _ { L } } ( q _ { 0 } ) , q _ { 0 } ]" + }, + { + "category_id": 13, + "poly": [ + 648, + 644, + 709, + 644, + 709, + 678, + 648, + 678 + ], + "score": 0.93, + "latex": "\\beta \\left( q \\right)" + }, + { + "category_id": 13, + "poly": [ + 604, + 1817, + 671, + 1817, + 671, + 1852, + 604, + 1852 + ], + "score": 0.92, + "latex": "S _ { i } ( \\bar { n } )" + }, + { + "category_id": 13, + "poly": [ + 393, + 725, + 532, + 725, + 532, + 759, + 393, + 759 + ], + "score": 0.92, + "latex": "\\Delta \\beta \\left( \\mathrm { B } _ { \\mathrm { L } } ( q ) \\right)" + }, + { + "category_id": 13, + "poly": [ + 997, + 613, + 1117, + 613, + 1117, + 647, + 997, + 647 + ], + "score": 0.92, + "latex": "\\beta \\left( \\mathrm { B } _ { \\mathrm { U } } ( q ) \\right)" + }, + { + "category_id": 13, + "poly": [ + 934, + 1543, + 1076, + 1543, + 1076, + 1576, + 934, + 1576 + ], + "score": 0.92, + "latex": "\\Delta \\beta ( q ) = 0" + }, + { + "category_id": 13, + "poly": [ + 1317, + 537, + 1370, + 537, + 1370, + 570, + 1317, + 570 + ], + "score": 0.92, + "latex": "q ( { \\bar { n } } )" + }, + { + "category_id": 13, + "poly": [ + 1003, + 725, + 1075, + 725, + 1075, + 759, + 1003, + 759 + ], + "score": 0.92, + "latex": "\\operatorname { B _ { L } } ( q )" + }, + { + "category_id": 13, + "poly": [ + 1130, + 1542, + 1405, + 1542, + 1405, + 1578, + 1130, + 1578 + ], + "score": 0.92, + "latex": "\\Delta \\beta ( \\mathrm { B } _ { \\mathrm { L } } ( q ) ) = \\beta ( q ) -" + }, + { + "category_id": 13, + "poly": [ + 396, + 1574, + 514, + 1574, + 514, + 1608, + 396, + 1608 + ], + "score": 0.92, + "latex": "\\beta \\left( \\mathrm { B _ { L } } ( q ) \\right)" + }, + { + "category_id": 13, + "poly": [ + 982, + 1575, + 1121, + 1575, + 1121, + 1608, + 982, + 1608 + ], + "score": 0.91, + "latex": "\\Delta \\beta \\left( \\mathrm { B _ { L } } ( q ) \\right)" + }, + { + "category_id": 13, + "poly": [ + 633, + 1461, + 711, + 1461, + 711, + 1495, + 633, + 1495 + ], + "score": 0.91, + "latex": "\\Delta \\beta \\left( \\cdot \\right)" + }, + { + "category_id": 13, + "poly": [ + 793, + 458, + 882, + 458, + 882, + 493, + 793, + 493 + ], + "score": 0.91, + "latex": "\\beta \\left( q ( \\cdot ) \\right)" + }, + { + "category_id": 13, + "poly": [ + 870, + 725, + 938, + 725, + 938, + 759, + 870, + 759 + ], + "score": 0.91, + "latex": "[ 0 , q _ { 0 } ]" + }, + { + "category_id": 13, + "poly": [ + 879, + 1962, + 958, + 1962, + 958, + 1994, + 879, + 1994 + ], + "score": 0.91, + "latex": "\\bar { n } \\succeq \\bar { n } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 795, + 612, + 920, + 612, + 920, + 647, + 795, + 647 + ], + "score": 0.91, + "latex": "( \\mathrm { B _ { L } } ( q _ { 0 } ) , 1 ]" + }, + { + "category_id": 13, + "poly": [ + 1120, + 538, + 1269, + 538, + 1269, + 570, + 1120, + 570 + ], + "score": 0.91, + "latex": "\\Delta \\beta \\left( \\mathrm { B _ { L } } ( q _ { 0 } ) \\right)" + }, + { + "category_id": 13, + "poly": [ + 298, + 646, + 502, + 646, + 502, + 678, + 298, + 678 + ], + "score": 0.9, + "latex": "\\mathrm { B _ { U } } ( \\mathrm { B _ { L } } ( q _ { 0 } ) ) = q _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 346, + 261, + 699, + 261, + 699, + 295, + 346, + 295 + ], + "score": 0.9, + "latex": "\\mathrm { B } _ { \\mathrm { L } } ( q ( \\bar { n } ) ) \\leq q ( \\bar { n } ^ { \\prime } ) \\leq \\mathrm { B } _ { \\mathrm { U } } ( q ( \\bar { n } ) )" + }, + { + "category_id": 13, + "poly": [ + 1208, + 1461, + 1334, + 1461, + 1334, + 1495, + 1208, + 1495 + ], + "score": 0.9, + "latex": "[ 0 , \\mathrm { B _ { L } } ( q _ { 0 } ) )" + }, + { + "category_id": 13, + "poly": [ + 1270, + 1246, + 1393, + 1246, + 1393, + 1281, + 1270, + 1281 + ], + "score": 0.9, + "latex": "[ 0 , \\mathrm { B _ { L } } ( q _ { 0 } ) ]" + }, + { + "category_id": 13, + "poly": [ + 781, + 1408, + 915, + 1408, + 915, + 1444, + 781, + 1444 + ], + "score": 0.9, + "latex": "[ \\mathrm { B _ { L } } ( q _ { 0 } ) , q _ { 0 } ]" + }, + { + "category_id": 13, + "poly": [ + 901, + 1198, + 971, + 1198, + 971, + 1237, + 901, + 1237 + ], + "score": 0.9, + "latex": "\\tilde { \\mathrm { L S } } ( q )" + }, + { + "category_id": 13, + "poly": [ + 364, + 613, + 448, + 613, + 448, + 646, + 364, + 646 + ], + "score": 0.9, + "latex": "\\Delta \\beta \\left( q \\right)" + }, + { + "category_id": 14, + "poly": [ + 624, + 783, + 1076, + 783, + 1076, + 822, + 624, + 822 + ], + "score": 0.89, + "latex": "\\Delta \\beta ( \\mathrm { B _ { L } } ( q ) ) \\leq \\Delta \\beta ( \\mathrm { B _ { L } } ( q _ { 0 } ) ) { \\mathrm { ~ i f ~ } } q \\leq q _ { 0 } ." + }, + { + "category_id": 13, + "poly": [ + 449, + 230, + 505, + 230, + 505, + 262, + 449, + 262 + ], + "score": 0.89, + "latex": "\\beta \\left( \\cdot \\right)" + }, + { + "category_id": 13, + "poly": [ + 825, + 1277, + 893, + 1277, + 893, + 1310, + 825, + 1310 + ], + "score": 0.89, + "latex": "[ q _ { 0 } , 1 ]" + }, + { + "category_id": 13, + "poly": [ + 1294, + 612, + 1403, + 612, + 1403, + 648, + 1294, + 648 + ], + "score": 0.88, + "latex": "\\operatorname { B _ { U } } ( q ) \\geq" + }, + { + "category_id": 13, + "poly": [ + 1174, + 1021, + 1243, + 1021, + 1243, + 1059, + 1174, + 1059 + ], + "score": 0.88, + "latex": "\\tilde { \\mathrm { L S } } ( q )" + }, + { + "category_id": 13, + "poly": [ + 715, + 1963, + 740, + 1963, + 740, + 1990, + 715, + 1990 + ], + "score": 0.87, + "latex": "\\bar { n } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 1268, + 1705, + 1291, + 1705, + 1291, + 1735, + 1268, + 1735 + ], + "score": 0.87, + "latex": "\\beta" + }, + { + "category_id": 13, + "poly": [ + 1281, + 231, + 1309, + 231, + 1309, + 258, + 1281, + 258 + ], + "score": 0.87, + "latex": "\\bar { n } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 960, + 1242, + 1030, + 1242, + 1030, + 1280, + 960, + 1280 + ], + "score": 0.84, + "latex": "\\tilde { \\mathrm { L S } } ( q )" + }, + { + "category_id": 14, + "poly": [ + 625, + 682, + 1073, + 682, + 1073, + 721, + 625, + 721 + ], + "score": 0.81, + "latex": "\\Delta \\beta ( q ) \\leq \\Delta \\beta ( \\mathrm { B } _ { \\mathrm { L } } ( q _ { 0 } ) ) { \\mathrm { ~ i f ~ } } q \\geq \\mathrm { B } _ { \\mathrm { L } } ( q _ { 0 } ) ." + }, + { + "category_id": 13, + "poly": [ + 1208, + 234, + 1228, + 234, + 1228, + 258, + 1208, + 258 + ], + "score": 0.79, + "latex": "\\bar { n }" + }, + { + "category_id": 13, + "poly": [ + 571, + 1967, + 590, + 1967, + 590, + 1990, + 571, + 1990 + ], + "score": 0.79, + "latex": "\\bar { n }" + }, + { + "category_id": 13, + "poly": [ + 978, + 462, + 997, + 462, + 997, + 486, + 978, + 486 + ], + "score": 0.76, + "latex": "\\bar { n }" + }, + { + "category_id": 13, + "poly": [ + 600, + 2001, + 765, + 2001, + 765, + 2037, + 600, + 2037 + ], + "score": 0.76, + "latex": "\\forall ( 1 < i \\leq m )" + }, + { + "category_id": 13, + "poly": [ + 586, + 1404, + 624, + 1404, + 624, + 1438, + 586, + 1438 + ], + "score": 0.69, + "latex": "\\tilde { \\mathrm { L S } }" + }, + { + "category_id": 13, + "poly": [ + 564, + 1543, + 709, + 1543, + 709, + 1577, + 564, + 1577 + ], + "score": 0.66, + "latex": "( q _ { 0 } , 1 ] , \\beta ( q )" + }, + { + "category_id": 13, + "poly": [ + 930, + 683, + 1065, + 683, + 1065, + 720, + 930, + 720 + ], + "score": 0.53, + "latex": "q \\geq \\mathrm { B _ { L } } ( q _ { 0 } )" + }, + { + "category_id": 13, + "poly": [ + 728, + 1246, + 812, + 1246, + 812, + 1276, + 728, + 1276 + ], + "score": 0.49, + "latex": "C 2 { - } C 6 ," + }, + { + "category_id": 13, + "poly": [ + 647, + 1543, + 710, + 1543, + 710, + 1577, + 647, + 1577 + ], + "score": 0.27, + "latex": "\\beta \\left( q \\right)" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 72.0, + 818.0, + 72.0, + 818.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 829.0, + 2083.0, + 871.0, + 2083.0, + 871.0, + 2125.0, + 829.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1383.0, + 962.0, + 1404.0, + 962.0, + 1404.0, + 997.0, + 1383.0, + 997.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1385.0, + 1643.0, + 1403.0, + 1643.0, + 1403.0, + 1670.0, + 1385.0, + 1670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 502.0, + 1019.0, + 502.0, + 1019.0, + 543.0, + 293.0, + 543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1248.0, + 502.0, + 1406.0, + 502.0, + 1406.0, + 543.0, + 1248.0, + 543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 533.0, + 1119.0, + 533.0, + 1119.0, + 573.0, + 292.0, + 573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1270.0, + 533.0, + 1316.0, + 533.0, + 1316.0, + 573.0, + 1270.0, + 573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1371.0, + 533.0, + 1407.0, + 533.0, + 1407.0, + 573.0, + 1371.0, + 573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 565.0, + 1089.0, + 565.0, + 1089.0, + 602.0, + 293.0, + 602.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 228.0, + 448.0, + 228.0, + 448.0, + 268.0, + 294.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 506.0, + 228.0, + 1207.0, + 228.0, + 1207.0, + 268.0, + 506.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1229.0, + 228.0, + 1280.0, + 228.0, + 1280.0, + 268.0, + 1229.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1310.0, + 228.0, + 1405.0, + 228.0, + 1405.0, + 268.0, + 1310.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 256.0, + 345.0, + 256.0, + 345.0, + 301.0, + 293.0, + 301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 700.0, + 256.0, + 1057.0, + 256.0, + 1057.0, + 301.0, + 700.0, + 301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1018.0, + 1173.0, + 1018.0, + 1173.0, + 1064.0, + 294.0, + 1064.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1244.0, + 1018.0, + 1406.0, + 1018.0, + 1406.0, + 1064.0, + 1244.0, + 1064.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1055.0, + 877.0, + 1055.0, + 877.0, + 1092.0, + 293.0, + 1092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1240.0, + 727.0, + 1240.0, + 727.0, + 1285.0, + 293.0, + 1285.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 813.0, + 1240.0, + 959.0, + 1240.0, + 959.0, + 1285.0, + 813.0, + 1285.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1031.0, + 1240.0, + 1269.0, + 1240.0, + 1269.0, + 1285.0, + 1031.0, + 1285.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 1240.0, + 1403.0, + 1240.0, + 1403.0, + 1285.0, + 1394.0, + 1285.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1274.0, + 428.0, + 1274.0, + 428.0, + 1315.0, + 294.0, + 1315.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 564.0, + 1274.0, + 824.0, + 1274.0, + 824.0, + 1315.0, + 564.0, + 1315.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 894.0, + 1274.0, + 904.0, + 1274.0, + 904.0, + 1315.0, + 894.0, + 1315.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 605.0, + 363.0, + 605.0, + 363.0, + 654.0, + 291.0, + 654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 449.0, + 605.0, + 794.0, + 605.0, + 794.0, + 654.0, + 449.0, + 654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 921.0, + 605.0, + 996.0, + 605.0, + 996.0, + 654.0, + 921.0, + 654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1118.0, + 605.0, + 1293.0, + 605.0, + 1293.0, + 654.0, + 1118.0, + 654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 640.0, + 297.0, + 640.0, + 297.0, + 682.0, + 292.0, + 682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 503.0, + 640.0, + 647.0, + 640.0, + 647.0, + 682.0, + 503.0, + 682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 710.0, + 640.0, + 1303.0, + 640.0, + 1303.0, + 682.0, + 710.0, + 682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1701.0, + 1267.0, + 1701.0, + 1267.0, + 1737.0, + 297.0, + 1737.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1292.0, + 1701.0, + 1405.0, + 1701.0, + 1405.0, + 1737.0, + 1292.0, + 1737.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1731.0, + 405.0, + 1731.0, + 405.0, + 1769.0, + 293.0, + 1769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 372.0, + 1403.0, + 585.0, + 1403.0, + 585.0, + 1447.0, + 372.0, + 1447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 625.0, + 1403.0, + 780.0, + 1403.0, + 780.0, + 1447.0, + 625.0, + 1447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 916.0, + 1403.0, + 928.0, + 1403.0, + 928.0, + 1447.0, + 916.0, + 1447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 368.0, + 1454.0, + 632.0, + 1454.0, + 632.0, + 1499.0, + 368.0, + 1499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 712.0, + 1454.0, + 763.0, + 1454.0, + 763.0, + 1499.0, + 712.0, + 1499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 899.0, + 1454.0, + 1207.0, + 1454.0, + 1207.0, + 1499.0, + 899.0, + 1499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1335.0, + 1454.0, + 1405.0, + 1454.0, + 1405.0, + 1499.0, + 1335.0, + 1499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1490.0, + 516.0, + 1490.0, + 516.0, + 1525.0, + 393.0, + 1525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 369.0, + 1538.0, + 563.0, + 1538.0, + 563.0, + 1581.0, + 369.0, + 1581.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 711.0, + 1538.0, + 933.0, + 1538.0, + 933.0, + 1581.0, + 711.0, + 1581.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1077.0, + 1538.0, + 1129.0, + 1538.0, + 1129.0, + 1581.0, + 1077.0, + 1581.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 391.0, + 1572.0, + 395.0, + 1572.0, + 395.0, + 1613.0, + 391.0, + 1613.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 515.0, + 1572.0, + 981.0, + 1572.0, + 981.0, + 1613.0, + 515.0, + 1613.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1122.0, + 1572.0, + 1335.0, + 1572.0, + 1335.0, + 1613.0, + 1122.0, + 1613.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1959.0, + 570.0, + 1959.0, + 570.0, + 1999.0, + 297.0, + 1999.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 591.0, + 1959.0, + 714.0, + 1959.0, + 714.0, + 1999.0, + 591.0, + 1999.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 741.0, + 1959.0, + 878.0, + 1959.0, + 878.0, + 1999.0, + 741.0, + 1999.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 959.0, + 1959.0, + 1008.0, + 1959.0, + 1008.0, + 1999.0, + 959.0, + 1999.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1339.0, + 776.0, + 1339.0, + 776.0, + 1379.0, + 295.0, + 1379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 454.0, + 792.0, + 454.0, + 792.0, + 497.0, + 292.0, + 497.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 883.0, + 454.0, + 977.0, + 454.0, + 977.0, + 497.0, + 883.0, + 497.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 998.0, + 454.0, + 1009.0, + 454.0, + 1009.0, + 497.0, + 998.0, + 497.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 835.0, + 1101.0, + 835.0, + 1101.0, + 876.0, + 293.0, + 876.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1197.0, + 900.0, + 1197.0, + 900.0, + 1242.0, + 294.0, + 1242.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 972.0, + 1197.0, + 981.0, + 1197.0, + 981.0, + 1242.0, + 972.0, + 1242.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1633.0, + 513.0, + 1633.0, + 513.0, + 1672.0, + 295.0, + 1672.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 959.0, + 418.0, + 959.0, + 418.0, + 993.0, + 293.0, + 993.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1777.0, + 1174.0, + 1777.0, + 1174.0, + 1817.0, + 297.0, + 1817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1814.0, + 603.0, + 1814.0, + 603.0, + 1856.0, + 294.0, + 1856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 672.0, + 1814.0, + 932.0, + 1814.0, + 932.0, + 1856.0, + 672.0, + 1856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 721.0, + 392.0, + 721.0, + 392.0, + 763.0, + 293.0, + 763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 533.0, + 721.0, + 869.0, + 721.0, + 869.0, + 763.0, + 533.0, + 763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 939.0, + 721.0, + 1002.0, + 721.0, + 1002.0, + 763.0, + 939.0, + 763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1076.0, + 721.0, + 1404.0, + 721.0, + 1404.0, + 763.0, + 1076.0, + 763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 753.0, + 493.0, + 753.0, + 493.0, + 789.0, + 296.0, + 789.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 24, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 1333, + 1405, + 1333, + 1405, + 1507, + 296, + 1507 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 296, + 1076, + 1405, + 1076, + 1405, + 1245, + 296, + 1245 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 297, + 1519, + 1405, + 1519, + 1405, + 1645, + 297, + 1645 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 296, + 964, + 1405, + 964, + 1405, + 1064, + 296, + 1064 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 297, + 381, + 1405, + 381, + 1405, + 481, + 297, + 481 + ], + "score": 0.969 + }, + { + "category_id": 1, + "poly": [ + 299, + 645, + 1406, + 645, + 1406, + 739, + 299, + 739 + ], + "score": 0.967 + }, + { + "category_id": 1, + "poly": [ + 299, + 753, + 1401, + 753, + 1401, + 848, + 299, + 848 + ], + "score": 0.962 + }, + { + "category_id": 1, + "poly": [ + 298, + 1753, + 1402, + 1753, + 1402, + 1825, + 298, + 1825 + ], + "score": 0.952 + }, + { + "category_id": 1, + "poly": [ + 298, + 861, + 1399, + 861, + 1399, + 936, + 298, + 936 + ], + "score": 0.949 + }, + { + "category_id": 8, + "poly": [ + 580, + 543, + 1115, + 543, + 1115, + 633, + 580, + 633 + ], + "score": 0.948 + }, + { + "category_id": 1, + "poly": [ + 298, + 1255, + 1398, + 1255, + 1398, + 1322, + 298, + 1322 + ], + "score": 0.946 + }, + { + "category_id": 1, + "poly": [ + 296, + 1970, + 1404, + 1970, + 1404, + 2037, + 296, + 2037 + ], + "score": 0.945 + }, + { + "category_id": 8, + "poly": [ + 448, + 1654, + 1248, + 1654, + 1248, + 1696, + 448, + 1696 + ], + "score": 0.943 + }, + { + "category_id": 1, + "poly": [ + 297, + 228, + 1391, + 228, + 1391, + 304, + 297, + 304 + ], + "score": 0.943 + }, + { + "category_id": 8, + "poly": [ + 359, + 1836, + 1336, + 1836, + 1336, + 1943, + 359, + 1943 + ], + "score": 0.939 + }, + { + "category_id": 8, + "poly": [ + 707, + 313, + 988, + 313, + 988, + 354, + 707, + 354 + ], + "score": 0.938 + }, + { + "category_id": 1, + "poly": [ + 296, + 1704, + 815, + 1704, + 815, + 1738, + 296, + 1738 + ], + "score": 0.925 + }, + { + "category_id": 2, + "poly": [ + 298, + 73, + 816, + 73, + 816, + 106, + 298, + 106 + ], + "score": 0.923 + }, + { + "category_id": 1, + "poly": [ + 299, + 493, + 922, + 493, + 922, + 527, + 299, + 527 + ], + "score": 0.917 + }, + { + "category_id": 9, + "poly": [ + 1351, + 569, + 1400, + 569, + 1400, + 601, + 1351, + 601 + ], + "score": 0.897 + }, + { + "category_id": 2, + "poly": [ + 834, + 2087, + 866, + 2087, + 866, + 2113, + 834, + 2113 + ], + "score": 0.864 + }, + { + "category_id": 13, + "poly": [ + 624, + 382, + 770, + 382, + 770, + 415, + 624, + 415 + ], + "score": 0.95, + "latex": "n ^ { ( 1 ) } = n ^ { \\prime ( 1 ) }" + }, + { + "category_id": 14, + "poly": [ + 581, + 538, + 1117, + 538, + 1117, + 637, + 581, + 637 + ], + "score": 0.94, + "latex": "\\forall i \\in [ m ] \\mathrm { i t } \\mathrm { h o l d s ~ t h a t } \\sum _ { j = 1 } ^ { i } ( n ^ { ( 1 ) } - n _ { j } ) \\geq S _ { i } ( \\bar { n } ) ." + }, + { + "category_id": 14, + "poly": [ + 356, + 1833, + 1337, + 1833, + 1337, + 1946, + 356, + 1946 + ], + "score": 0.94, + "latex": "\\sum _ { j = 1 } ^ { t } ( n _ { 1 } ^ { \\prime \\prime \\prime } - n _ { j } ^ { \\prime \\prime \\prime } ) = \\sum _ { j = 1 } ^ { t } ( n _ { 1 } ^ { \\prime \\prime } - n _ { j } ^ { \\prime \\prime } ) - x \\leq \\left( \\sum _ { j = 1 } ^ { t } ( n _ { 1 } ^ { \\prime } - n _ { j } ^ { \\prime } ) + x \\right) - x = S _ { t } ( n ^ { \\prime } ) \\leq S _ { t } ( \\bar { n } ) ." + }, + { + "category_id": 13, + "poly": [ + 743, + 1369, + 1044, + 1369, + 1044, + 1416, + 743, + 1416 + ], + "score": 0.94, + "latex": "\\textstyle \\sum _ { j = 1 } ^ { i ^ { \\prime } } ( n _ { 1 } ^ { \\prime \\prime } - n _ { j } ^ { \\prime \\prime } ) > S _ { i ^ { \\prime } } ( \\bar { n } )" + }, + { + "category_id": 13, + "poly": [ + 298, + 1211, + 435, + 1211, + 435, + 1247, + 298, + 1247 + ], + "score": 0.93, + "latex": "x \\leq n _ { i } ^ { \\prime } - n _ { i }" + }, + { + "category_id": 13, + "poly": [ + 806, + 1443, + 967, + 1443, + 967, + 1478, + 806, + 1478 + ], + "score": 0.93, + "latex": "n _ { i ^ { \\prime } } ^ { \\prime \\prime \\prime } = n _ { i ^ { \\prime } } ^ { \\prime \\prime } + x" + }, + { + "category_id": 13, + "poly": [ + 1225, + 1078, + 1400, + 1078, + 1400, + 1112, + 1225, + 1112 + ], + "score": 0.93, + "latex": "S _ { i } ( \\bar { n } ) > S _ { i } ( \\bar { n } ^ { \\prime } )" + }, + { + "category_id": 13, + "poly": [ + 1164, + 2002, + 1393, + 2002, + 1393, + 2036, + 1164, + 2036 + ], + "score": 0.93, + "latex": "\\bar { \\ell } ( \\bar { n } , \\bar { n } ^ { \\prime } ) > \\ell ( \\bar { n } , \\bar { n } ^ { \\prime \\prime \\prime } )" + }, + { + "category_id": 13, + "poly": [ + 625, + 1146, + 922, + 1146, + 922, + 1182, + 625, + 1182 + ], + "score": 0.93, + "latex": "n _ { i } < n _ { i } ^ { \\prime } \\le n _ { i - 1 } = n _ { i - 1 } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 348, + 1582, + 587, + 1582, + 587, + 1616, + 348, + 1616 + ], + "score": 0.93, + "latex": "n _ { 1 } ^ { \\prime \\prime } - n _ { i ^ { \\prime } } ^ { \\prime \\prime } > n _ { 1 } - n _ { i ^ { \\prime } }" + }, + { + "category_id": 13, + "poly": [ + 1283, + 1336, + 1361, + 1336, + 1361, + 1371, + 1283, + 1371 + ], + "score": 0.93, + "latex": "S _ { j } ( \\bar { n } ^ { \\prime } )" + }, + { + "category_id": 13, + "poly": [ + 481, + 1972, + 645, + 1972, + 645, + 2006, + 481, + 2006 + ], + "score": 0.93, + "latex": "d ( \\bar { n } ^ { \\prime } , \\bar { n } ^ { \\prime \\prime \\prime } ) = 1" + }, + { + "category_id": 13, + "poly": [ + 348, + 1146, + 452, + 1146, + 452, + 1183, + 348, + 1183 + ], + "score": 0.93, + "latex": "n _ { j } = n _ { j } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 940, + 1582, + 1049, + 1582, + 1049, + 1616, + 940, + 1616 + ], + "score": 0.93, + "latex": "n _ { i ^ { \\prime } } > n _ { i ^ { \\prime } } ^ { \\prime \\prime }" + }, + { + "category_id": 13, + "poly": [ + 515, + 900, + 672, + 900, + 672, + 934, + 515, + 934 + ], + "score": 0.92, + "latex": "\\bar { n } _ { i - 1 } = \\pi ( \\bar { n } _ { i } )" + }, + { + "category_id": 13, + "poly": [ + 446, + 230, + 492, + 230, + 492, + 265, + 446, + 265 + ], + "score": 0.92, + "latex": "q ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 673, + 1581, + 776, + 1581, + 776, + 1615, + 673, + 1615 + ], + "score": 0.92, + "latex": "n _ { 1 } ^ { \\prime \\prime } = n _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 987, + 1145, + 1232, + 1145, + 1232, + 1181, + 987, + 1181 + ], + "score": 0.92, + "latex": "x \\triangleq \\operatorname* { m i n } ( n _ { i } ^ { \\prime } - n _ { i } , 1 )" + }, + { + "category_id": 13, + "poly": [ + 1007, + 1257, + 1176, + 1257, + 1176, + 1292, + 1007, + 1292 + ], + "score": 0.92, + "latex": "d ( \\bar { n } ^ { \\prime \\prime } , \\bar { n } ^ { \\prime } ) = 1" + }, + { + "category_id": 13, + "poly": [ + 1179, + 382, + 1334, + 382, + 1334, + 420, + 1179, + 420 + ], + "score": 0.92, + "latex": "| n ^ { ( 1 ) } - n ^ { \\prime ( 1 ) } |" + }, + { + "category_id": 13, + "poly": [ + 463, + 1751, + 775, + 1751, + 775, + 1794, + 463, + 1794 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { \\sum _ { j = 1 } ^ { t } ( n _ { 1 } ^ { \\prime \\prime \\prime } - n _ { j } ^ { \\prime \\prime \\prime } ) \\le S _ { t } ( \\bar { n } ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1227, + 1521, + 1341, + 1521, + 1341, + 1555, + 1227, + 1555 + ], + "score": 0.92, + "latex": "n _ { 1 } ^ { \\prime \\prime \\prime } > n _ { i \\prime } ^ { \\prime \\prime \\prime }" + }, + { + "category_id": 13, + "poly": [ + 515, + 999, + 955, + 999, + 955, + 1036, + 515, + 1036 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { \\ell ( \\bar { n } , \\bar { n } ^ { \\prime } ) \\stackrel { \\Delta } { = } \\sum _ { i } \\lceil n _ { i } - n _ { i } ^ { \\prime } \\rceil \\leq 2 d ( \\bar { n } , \\bar { n } ^ { \\prime } ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 663, + 1108, + 805, + 1108, + 805, + 1141, + 663, + 1141 + ], + "score": 0.92, + "latex": "n ^ { ( 1 ) } = n ^ { \\prime ( 1 ) }" + }, + { + "category_id": 13, + "poly": [ + 891, + 2003, + 995, + 2003, + 995, + 2033, + 891, + 2033 + ], + "score": 0.91, + "latex": "\\bar { n } ^ { \\prime \\prime \\prime } \\succeq \\bar { n } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 399, + 1334, + 487, + 1334, + 487, + 1371, + 399, + 1371 + ], + "score": 0.91, + "latex": "\\bar { n } \\not \\subset \\bar { n } ^ { \\prime \\prime }" + }, + { + "category_id": 13, + "poly": [ + 939, + 268, + 1113, + 268, + 1113, + 304, + 939, + 304 + ], + "score": 0.91, + "latex": "q ( \\bar { n } ) < \\mathrm { B _ { U } } ( q _ { 0 } )" + }, + { + "category_id": 13, + "poly": [ + 1185, + 895, + 1385, + 895, + 1385, + 936, + 1185, + 936 + ], + "score": 0.91, + "latex": "n _ { 0 } ^ { ( 1 ) } = \\cdot \\cdot \\cdot = n _ { d } ^ { ( 1 ) }" + }, + { + "category_id": 13, + "poly": [ + 678, + 862, + 1046, + 862, + 1046, + 895, + 678, + 895 + ], + "score": 0.91, + "latex": "{ \\bar { n } } = { \\bar { n } } _ { 0 } \\succeq { \\bar { n } } _ { 1 } \\succeq \\cdot \\cdot \\cdot \\succeq { \\bar { n } } _ { d } = { \\bar { n } } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 298, + 899, + 480, + 899, + 480, + 934, + 298, + 934 + ], + "score": 0.91, + "latex": "d ( \\bar { n } _ { i - 1 } , \\bar { n } _ { i } ) = 1" + }, + { + "category_id": 13, + "poly": [ + 393, + 1258, + 494, + 1258, + 494, + 1289, + 393, + 1289 + ], + "score": 0.91, + "latex": "\\bar { n } \\succeq \\bar { n } ^ { \\prime \\prime }" + }, + { + "category_id": 13, + "poly": [ + 1247, + 862, + 1327, + 862, + 1327, + 894, + 1247, + 894 + ], + "score": 0.91, + "latex": "i \\in [ d ]" + }, + { + "category_id": 13, + "poly": [ + 393, + 1708, + 492, + 1708, + 492, + 1737, + 393, + 1737 + ], + "score": 0.91, + "latex": "n _ { i ^ { \\prime } } \\leq n _ { i }" + }, + { + "category_id": 13, + "poly": [ + 1063, + 447, + 1121, + 447, + 1121, + 481, + 1063, + 481 + ], + "score": 0.91, + "latex": "S _ { i } ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 599, + 1182, + 758, + 1182, + 758, + 1214, + 599, + 1214 + ], + "score": 0.91, + "latex": "n _ { i } ^ { \\prime \\prime } = n _ { i } ^ { \\prime } - x" + }, + { + "category_id": 13, + "poly": [ + 432, + 1443, + 472, + 1443, + 472, + 1471, + 432, + 1471 + ], + "score": 0.91, + "latex": "\\bar { n } ^ { \\prime \\prime \\prime }" + }, + { + "category_id": 13, + "poly": [ + 484, + 1213, + 565, + 1213, + 565, + 1243, + 484, + 1243 + ], + "score": 0.91, + "latex": "n _ { i } \\geq 0" + }, + { + "category_id": 13, + "poly": [ + 500, + 1147, + 571, + 1147, + 571, + 1179, + 500, + 1179 + ], + "score": 0.9, + "latex": "j < i" + }, + { + "category_id": 13, + "poly": [ + 1098, + 1756, + 1197, + 1756, + 1197, + 1787, + 1098, + 1787 + ], + "score": 0.9, + "latex": "\\bar { n } \\succeq \\bar { n } ^ { \\prime \\prime \\prime }" + }, + { + "category_id": 13, + "poly": [ + 1364, + 1582, + 1399, + 1582, + 1399, + 1616, + 1364, + 1616 + ], + "score": 0.9, + "latex": "n _ { i ^ { \\prime } } ^ { \\prime \\prime }" + }, + { + "category_id": 14, + "poly": [ + 707, + 313, + 989, + 313, + 989, + 353, + 707, + 353 + ], + "score": 0.89, + "latex": "\\bar { n } \\succeq \\bar { n } ^ { \\prime } \\Rightarrow q ( \\bar { n } ) \\leq q ( \\bar { n } ^ { \\prime } ) ." + }, + { + "category_id": 13, + "poly": [ + 610, + 1521, + 645, + 1521, + 645, + 1555, + 610, + 1555 + ], + "score": 0.89, + "latex": "n _ { i ^ { \\prime } } ^ { \\prime \\prime }" + }, + { + "category_id": 13, + "poly": [ + 297, + 1377, + 363, + 1377, + 363, + 1410, + 297, + 1410 + ], + "score": 0.89, + "latex": "j \\geq i" + }, + { + "category_id": 13, + "poly": [ + 457, + 2006, + 532, + 2006, + 532, + 2033, + 457, + 2033 + ], + "score": 0.89, + "latex": "x \\leq 1" + }, + { + "category_id": 13, + "poly": [ + 765, + 1791, + 832, + 1791, + 832, + 1823, + 765, + 1823 + ], + "score": 0.89, + "latex": "t \\geq i ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 1036, + 1552, + 1069, + 1552, + 1069, + 1579, + 1036, + 1579 + ], + "score": 0.89, + "latex": "\\bar { n } ^ { \\prime \\prime }" + }, + { + "category_id": 13, + "poly": [ + 1003, + 1337, + 1036, + 1337, + 1036, + 1364, + 1003, + 1364 + ], + "score": 0.88, + "latex": "\\bar { n } ^ { \\prime \\prime }" + }, + { + "category_id": 13, + "poly": [ + 1041, + 1112, + 1128, + 1112, + 1128, + 1141, + 1041, + 1141 + ], + "score": 0.88, + "latex": "\\bar { n } = \\bar { n } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 1155, + 1444, + 1195, + 1444, + 1195, + 1472, + 1155, + 1472 + ], + "score": 0.88, + "latex": "\\bar { n } ^ { \\prime \\prime \\prime }" + }, + { + "category_id": 13, + "poly": [ + 730, + 1705, + 797, + 1705, + 797, + 1734, + 730, + 1734 + ], + "score": 0.88, + "latex": "i ^ { \\prime } > i" + }, + { + "category_id": 13, + "poly": [ + 641, + 1793, + 707, + 1793, + 707, + 1821, + 641, + 1821 + ], + "score": 0.88, + "latex": "t < i ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 640, + 1444, + 674, + 1444, + 674, + 1472, + 640, + 1472 + ], + "score": 0.87, + "latex": "\\bar { n } ^ { \\prime \\prime }" + }, + { + "category_id": 13, + "poly": [ + 1334, + 1146, + 1369, + 1146, + 1369, + 1175, + 1334, + 1175 + ], + "score": 0.87, + "latex": "\\bar { n } ^ { \\prime \\prime }" + }, + { + "category_id": 13, + "poly": [ + 1137, + 1377, + 1172, + 1377, + 1172, + 1406, + 1137, + 1406 + ], + "score": 0.87, + "latex": "\\bar { n } ^ { \\prime \\prime }" + }, + { + "category_id": 13, + "poly": [ + 1135, + 1521, + 1168, + 1521, + 1168, + 1550, + 1135, + 1550 + ], + "score": 0.87, + "latex": "\\bar { n } ^ { \\prime \\prime }" + }, + { + "category_id": 13, + "poly": [ + 685, + 1214, + 718, + 1214, + 718, + 1239, + 685, + 1239 + ], + "score": 0.87, + "latex": "\\bar { n } ^ { \\prime \\prime }" + }, + { + "category_id": 14, + "poly": [ + 450, + 1654, + 1246, + 1654, + 1246, + 1694, + 450, + 1694 + ], + "score": 0.86, + "latex": "n _ { i ^ { \\prime } } ^ { \\prime \\prime \\prime } = n _ { i ^ { \\prime } } ^ { \\prime \\prime } + x \\leq n _ { i ^ { \\prime } } + ( n _ { i } ^ { \\prime } - n _ { i } ) = n _ { i } ^ { \\prime } + ( n _ { i ^ { \\prime } } - n _ { i } ) \\leq n _ { i } ^ { \\prime } \\leq n _ { 1 } ^ { \\prime } = n _ { 1 } ^ { \\prime \\prime \\prime } ," + }, + { + "category_id": 13, + "poly": [ + 805, + 967, + 832, + 967, + 832, + 994, + 805, + 994 + ], + "score": 0.86, + "latex": "\\bar { n } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 497, + 785, + 524, + 785, + 524, + 812, + 497, + 812 + ], + "score": 0.86, + "latex": "\\bar { n } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 1339, + 1444, + 1365, + 1444, + 1365, + 1471, + 1339, + 1471 + ], + "score": 0.85, + "latex": "\\bar { n } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 391, + 1618, + 426, + 1618, + 426, + 1643, + 391, + 1643 + ], + "score": 0.85, + "latex": "n _ { i ^ { \\prime } }" + }, + { + "category_id": 13, + "poly": [ + 588, + 1257, + 695, + 1257, + 695, + 1289, + 588, + 1289 + ], + "score": 0.85, + "latex": "\\bar { n } ^ { \\prime \\prime } \\succeq \\bar { n } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 406, + 1552, + 425, + 1552, + 425, + 1579, + 406, + 1579 + ], + "score": 0.85, + "latex": "i ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 433, + 1183, + 461, + 1183, + 461, + 1209, + 433, + 1209 + ], + "score": 0.84, + "latex": "\\bar { n } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 695, + 450, + 723, + 450, + 723, + 478, + 695, + 478 + ], + "score": 0.84, + "latex": "\\succeq" + }, + { + "category_id": 13, + "poly": [ + 981, + 900, + 1022, + 900, + 1022, + 934, + 981, + 934 + ], + "score": 0.84, + "latex": "[ m ]" + }, + { + "category_id": 13, + "poly": [ + 765, + 1475, + 785, + 1475, + 785, + 1502, + 765, + 1502 + ], + "score": 0.83, + "latex": "i ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 1381, + 1757, + 1400, + 1757, + 1400, + 1784, + 1381, + 1784 + ], + "score": 0.83, + "latex": "i ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 635, + 1377, + 656, + 1377, + 656, + 1405, + 635, + 1405 + ], + "score": 0.83, + "latex": "i ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 1191, + 1413, + 1213, + 1413, + 1213, + 1441, + 1191, + 1441 + ], + "score": 0.82, + "latex": "i ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 1286, + 1557, + 1305, + 1557, + 1305, + 1579, + 1286, + 1579 + ], + "score": 0.81, + "latex": "\\bar { n }" + }, + { + "category_id": 13, + "poly": [ + 1354, + 791, + 1371, + 791, + 1371, + 817, + 1354, + 817 + ], + "score": 0.79, + "latex": "q" + }, + { + "category_id": 13, + "poly": [ + 513, + 269, + 558, + 269, + 558, + 304, + 513, + 304 + ], + "score": 0.79, + "latex": "q ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 710, + 1256, + 941, + 1256, + 941, + 1292, + 710, + 1292 + ], + "score": 0.79, + "latex": "\\ell ( \\bar { n } , \\bar { n } ^ { \\prime \\prime } ) < \\ell ( \\bar { n } , \\bar { n } ^ { \\prime } )" + }, + { + "category_id": 13, + "poly": [ + 733, + 970, + 754, + 970, + 754, + 994, + 733, + 994 + ], + "score": 0.79, + "latex": "\\bar { n }" + }, + { + "category_id": 13, + "poly": [ + 1381, + 650, + 1401, + 650, + 1401, + 674, + 1381, + 674 + ], + "score": 0.78, + "latex": "\\bar { n }" + }, + { + "category_id": 13, + "poly": [ + 596, + 1477, + 609, + 1477, + 609, + 1502, + 596, + 1502 + ], + "score": 0.78, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 1069, + 1417, + 1089, + 1417, + 1089, + 1441, + 1069, + 1441 + ], + "score": 0.76, + "latex": "\\bar { n }" + }, + { + "category_id": 13, + "poly": [ + 389, + 1480, + 408, + 1480, + 408, + 1502, + 389, + 1502 + ], + "score": 0.76, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 685, + 1527, + 704, + 1527, + 704, + 1549, + 685, + 1549 + ], + "score": 0.75, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 298, + 454, + 315, + 454, + 315, + 480, + 298, + 480 + ], + "score": 0.75, + "latex": "q" + }, + { + "category_id": 13, + "poly": [ + 1231, + 1589, + 1251, + 1589, + 1251, + 1610, + 1231, + 1610 + ], + "score": 0.75, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 425, + 788, + 446, + 788, + 446, + 812, + 425, + 812 + ], + "score": 0.74, + "latex": "\\bar { n }" + }, + { + "category_id": 13, + "poly": [ + 857, + 1759, + 871, + 1759, + 871, + 1784, + 857, + 1784 + ], + "score": 0.71, + "latex": "t" + }, + { + "category_id": 13, + "poly": [ + 1131, + 1081, + 1143, + 1081, + 1143, + 1107, + 1131, + 1107 + ], + "score": 0.68, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 922, + 906, + 943, + 906, + 943, + 928, + 922, + 928 + ], + "score": 0.55, + "latex": "\\pi" + }, + { + "category_id": 13, + "poly": [ + 653, + 1290, + 716, + 1290, + 716, + 1319, + 653, + 1319 + ], + "score": 0.48, + "latex": "\\bar { n } , \\bar { n } ^ { \\prime \\prime }" + }, + { + "category_id": 13, + "poly": [ + 845, + 271, + 880, + 271, + 880, + 299, + 845, + 299 + ], + "score": 0.48, + "latex": "C 8 _ { \\mathrm { : } }" + }, + { + "category_id": 13, + "poly": [ + 654, + 1292, + 673, + 1292, + 673, + 1317, + 654, + 1317 + ], + "score": 0.29, + "latex": "\\bar { n }" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 72.0, + 818.0, + 72.0, + 818.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 829.0, + 2084.0, + 871.0, + 2084.0, + 871.0, + 2122.0, + 829.0, + 2122.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1334.0, + 398.0, + 1334.0, + 398.0, + 1372.0, + 296.0, + 1372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 488.0, + 1334.0, + 1002.0, + 1334.0, + 1002.0, + 1372.0, + 488.0, + 1372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1037.0, + 1334.0, + 1282.0, + 1334.0, + 1282.0, + 1372.0, + 1037.0, + 1372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1362.0, + 1334.0, + 1406.0, + 1334.0, + 1406.0, + 1372.0, + 1362.0, + 1372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1372.0, + 296.0, + 1372.0, + 296.0, + 1419.0, + 290.0, + 1419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 364.0, + 1372.0, + 634.0, + 1372.0, + 634.0, + 1419.0, + 364.0, + 1419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 657.0, + 1372.0, + 742.0, + 1372.0, + 742.0, + 1419.0, + 657.0, + 1419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1045.0, + 1372.0, + 1136.0, + 1372.0, + 1136.0, + 1419.0, + 1045.0, + 1419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1173.0, + 1372.0, + 1408.0, + 1372.0, + 1408.0, + 1419.0, + 1173.0, + 1419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1413.0, + 1068.0, + 1413.0, + 1068.0, + 1447.0, + 295.0, + 1447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1090.0, + 1413.0, + 1190.0, + 1413.0, + 1190.0, + 1447.0, + 1090.0, + 1447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1214.0, + 1413.0, + 1403.0, + 1413.0, + 1403.0, + 1447.0, + 1214.0, + 1447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1438.0, + 431.0, + 1438.0, + 431.0, + 1480.0, + 293.0, + 1480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 473.0, + 1438.0, + 639.0, + 1438.0, + 639.0, + 1480.0, + 473.0, + 1480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 675.0, + 1438.0, + 805.0, + 1438.0, + 805.0, + 1480.0, + 675.0, + 1480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 968.0, + 1438.0, + 1154.0, + 1438.0, + 1154.0, + 1480.0, + 968.0, + 1480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1196.0, + 1438.0, + 1338.0, + 1438.0, + 1338.0, + 1480.0, + 1196.0, + 1480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1366.0, + 1438.0, + 1406.0, + 1438.0, + 1406.0, + 1480.0, + 1366.0, + 1480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1474.0, + 388.0, + 1474.0, + 388.0, + 1508.0, + 296.0, + 1508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 409.0, + 1474.0, + 595.0, + 1474.0, + 595.0, + 1508.0, + 409.0, + 1508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 610.0, + 1474.0, + 764.0, + 1474.0, + 764.0, + 1508.0, + 610.0, + 1508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 786.0, + 1474.0, + 798.0, + 1474.0, + 798.0, + 1508.0, + 786.0, + 1508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1074.0, + 1130.0, + 1074.0, + 1130.0, + 1112.0, + 291.0, + 1112.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1144.0, + 1074.0, + 1224.0, + 1074.0, + 1224.0, + 1112.0, + 1144.0, + 1112.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1108.0, + 662.0, + 1108.0, + 662.0, + 1147.0, + 293.0, + 1147.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 806.0, + 1108.0, + 1040.0, + 1108.0, + 1040.0, + 1147.0, + 806.0, + 1147.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1129.0, + 1108.0, + 1406.0, + 1108.0, + 1406.0, + 1147.0, + 1129.0, + 1147.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1144.0, + 347.0, + 1144.0, + 347.0, + 1185.0, + 293.0, + 1185.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 453.0, + 1144.0, + 499.0, + 1144.0, + 499.0, + 1185.0, + 453.0, + 1185.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 572.0, + 1144.0, + 624.0, + 1144.0, + 624.0, + 1185.0, + 572.0, + 1185.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 923.0, + 1144.0, + 986.0, + 1144.0, + 986.0, + 1185.0, + 923.0, + 1185.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1233.0, + 1144.0, + 1333.0, + 1144.0, + 1333.0, + 1185.0, + 1233.0, + 1185.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1370.0, + 1144.0, + 1407.0, + 1144.0, + 1407.0, + 1185.0, + 1370.0, + 1185.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1177.0, + 432.0, + 1177.0, + 432.0, + 1218.0, + 293.0, + 1218.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 462.0, + 1177.0, + 598.0, + 1177.0, + 598.0, + 1218.0, + 462.0, + 1218.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 759.0, + 1177.0, + 1405.0, + 1177.0, + 1405.0, + 1218.0, + 759.0, + 1218.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1211.0, + 297.0, + 1211.0, + 297.0, + 1247.0, + 291.0, + 1247.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 436.0, + 1211.0, + 483.0, + 1211.0, + 483.0, + 1247.0, + 436.0, + 1247.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 566.0, + 1211.0, + 684.0, + 1211.0, + 684.0, + 1247.0, + 566.0, + 1247.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 719.0, + 1211.0, + 1405.0, + 1211.0, + 1405.0, + 1247.0, + 719.0, + 1247.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1517.0, + 609.0, + 1517.0, + 609.0, + 1557.0, + 294.0, + 1557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 646.0, + 1517.0, + 684.0, + 1517.0, + 684.0, + 1557.0, + 646.0, + 1557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 705.0, + 1517.0, + 1134.0, + 1517.0, + 1134.0, + 1557.0, + 705.0, + 1557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1169.0, + 1517.0, + 1226.0, + 1517.0, + 1226.0, + 1557.0, + 1169.0, + 1557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1342.0, + 1517.0, + 1407.0, + 1517.0, + 1407.0, + 1557.0, + 1342.0, + 1557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1550.0, + 405.0, + 1550.0, + 405.0, + 1583.0, + 296.0, + 1583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 426.0, + 1550.0, + 1035.0, + 1550.0, + 1035.0, + 1583.0, + 426.0, + 1583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1070.0, + 1550.0, + 1285.0, + 1550.0, + 1285.0, + 1583.0, + 1070.0, + 1583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1306.0, + 1550.0, + 1403.0, + 1550.0, + 1403.0, + 1583.0, + 1306.0, + 1583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1577.0, + 347.0, + 1577.0, + 347.0, + 1621.0, + 291.0, + 1621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 588.0, + 1577.0, + 672.0, + 1577.0, + 672.0, + 1621.0, + 588.0, + 1621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 777.0, + 1577.0, + 939.0, + 1577.0, + 939.0, + 1621.0, + 777.0, + 1621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1050.0, + 1577.0, + 1230.0, + 1577.0, + 1230.0, + 1621.0, + 1050.0, + 1621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1252.0, + 1577.0, + 1363.0, + 1577.0, + 1363.0, + 1621.0, + 1252.0, + 1621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1400.0, + 1577.0, + 1403.0, + 1577.0, + 1403.0, + 1621.0, + 1400.0, + 1621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1610.0, + 390.0, + 1610.0, + 390.0, + 1647.0, + 294.0, + 1647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 427.0, + 1610.0, + 603.0, + 1610.0, + 603.0, + 1647.0, + 427.0, + 1647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 965.0, + 732.0, + 965.0, + 732.0, + 1000.0, + 295.0, + 1000.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 755.0, + 965.0, + 804.0, + 965.0, + 804.0, + 1000.0, + 755.0, + 1000.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 833.0, + 965.0, + 1405.0, + 965.0, + 1405.0, + 1000.0, + 833.0, + 1000.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 999.0, + 514.0, + 999.0, + 514.0, + 1038.0, + 293.0, + 1038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 956.0, + 999.0, + 1405.0, + 999.0, + 1405.0, + 1038.0, + 956.0, + 1038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1032.0, + 614.0, + 1032.0, + 614.0, + 1066.0, + 294.0, + 1066.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 382.0, + 623.0, + 382.0, + 623.0, + 420.0, + 292.0, + 420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 771.0, + 382.0, + 1178.0, + 382.0, + 1178.0, + 420.0, + 771.0, + 420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1335.0, + 382.0, + 1405.0, + 382.0, + 1405.0, + 420.0, + 1335.0, + 420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 419.0, + 1402.0, + 419.0, + 1402.0, + 450.0, + 296.0, + 450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 447.0, + 297.0, + 447.0, + 297.0, + 483.0, + 292.0, + 483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 447.0, + 694.0, + 447.0, + 694.0, + 483.0, + 316.0, + 483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 724.0, + 447.0, + 1062.0, + 447.0, + 1062.0, + 483.0, + 724.0, + 483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1122.0, + 447.0, + 1343.0, + 447.0, + 1343.0, + 483.0, + 1122.0, + 483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 645.0, + 1380.0, + 645.0, + 1380.0, + 682.0, + 294.0, + 682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 645.0, + 1407.0, + 645.0, + 1407.0, + 682.0, + 1402.0, + 682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 675.0, + 1404.0, + 675.0, + 1404.0, + 711.0, + 293.0, + 711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 703.0, + 482.0, + 703.0, + 482.0, + 746.0, + 294.0, + 746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 751.0, + 1405.0, + 751.0, + 1405.0, + 791.0, + 293.0, + 791.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 782.0, + 424.0, + 782.0, + 424.0, + 821.0, + 293.0, + 821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 447.0, + 782.0, + 496.0, + 782.0, + 496.0, + 821.0, + 447.0, + 821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 525.0, + 782.0, + 1353.0, + 782.0, + 1353.0, + 821.0, + 525.0, + 821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1372.0, + 782.0, + 1406.0, + 782.0, + 1406.0, + 821.0, + 1372.0, + 821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 816.0, + 744.0, + 816.0, + 744.0, + 847.0, + 297.0, + 847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 1739.0, + 462.0, + 1739.0, + 462.0, + 1806.0, + 288.0, + 1806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 776.0, + 1739.0, + 856.0, + 1739.0, + 856.0, + 1806.0, + 776.0, + 1806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 872.0, + 1739.0, + 1097.0, + 1739.0, + 1097.0, + 1806.0, + 872.0, + 1806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1198.0, + 1739.0, + 1380.0, + 1739.0, + 1380.0, + 1806.0, + 1198.0, + 1806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 1739.0, + 1413.0, + 1739.0, + 1413.0, + 1806.0, + 1401.0, + 1806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1792.0, + 640.0, + 1792.0, + 640.0, + 1825.0, + 297.0, + 1825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 708.0, + 1792.0, + 764.0, + 1792.0, + 764.0, + 1825.0, + 708.0, + 1825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 833.0, + 1792.0, + 1063.0, + 1792.0, + 1063.0, + 1825.0, + 833.0, + 1825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 857.0, + 677.0, + 857.0, + 677.0, + 900.0, + 293.0, + 900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1047.0, + 857.0, + 1246.0, + 857.0, + 1246.0, + 900.0, + 1047.0, + 900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1328.0, + 857.0, + 1405.0, + 857.0, + 1405.0, + 900.0, + 1328.0, + 900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 284.0, + 877.0, + 297.0, + 877.0, + 297.0, + 953.0, + 284.0, + 953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 481.0, + 877.0, + 514.0, + 877.0, + 514.0, + 953.0, + 481.0, + 953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 673.0, + 877.0, + 921.0, + 877.0, + 921.0, + 953.0, + 673.0, + 953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 944.0, + 877.0, + 980.0, + 877.0, + 980.0, + 953.0, + 944.0, + 953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1023.0, + 877.0, + 1184.0, + 877.0, + 1184.0, + 953.0, + 1023.0, + 953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1386.0, + 892.0, + 1391.0, + 892.0, + 1391.0, + 922.0, + 1386.0, + 922.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1231.0, + 893.0, + 1394.0, + 893.0, + 1394.0, + 942.5, + 1231.0, + 942.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1251.0, + 392.0, + 1251.0, + 392.0, + 1295.0, + 294.0, + 1295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 495.0, + 1251.0, + 587.0, + 1251.0, + 587.0, + 1295.0, + 495.0, + 1295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 696.0, + 1251.0, + 709.0, + 1251.0, + 709.0, + 1295.0, + 696.0, + 1295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 942.0, + 1251.0, + 1006.0, + 1251.0, + 1006.0, + 1295.0, + 942.0, + 1295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1177.0, + 1251.0, + 1404.0, + 1251.0, + 1404.0, + 1295.0, + 1177.0, + 1295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1283.0, + 652.0, + 1283.0, + 652.0, + 1325.0, + 294.0, + 1325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 717.0, + 1283.0, + 728.0, + 1283.0, + 728.0, + 1325.0, + 717.0, + 1325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1971.0, + 480.0, + 1971.0, + 480.0, + 2007.0, + 296.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 646.0, + 1971.0, + 1405.0, + 1971.0, + 1405.0, + 2007.0, + 646.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1997.0, + 456.0, + 1997.0, + 456.0, + 2040.0, + 294.0, + 2040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 533.0, + 1997.0, + 890.0, + 1997.0, + 890.0, + 2040.0, + 533.0, + 2040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 996.0, + 1997.0, + 1163.0, + 1997.0, + 1163.0, + 2040.0, + 996.0, + 2040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 1997.0, + 1405.0, + 1997.0, + 1405.0, + 2040.0, + 1394.0, + 2040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 226.0, + 445.0, + 226.0, + 445.0, + 266.0, + 296.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 493.0, + 226.0, + 1389.0, + 226.0, + 1389.0, + 266.0, + 493.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 269.0, + 512.0, + 269.0, + 512.0, + 307.0, + 296.0, + 307.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 559.0, + 269.0, + 844.0, + 269.0, + 844.0, + 307.0, + 559.0, + 307.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 881.0, + 269.0, + 938.0, + 269.0, + 938.0, + 307.0, + 881.0, + 307.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1114.0, + 269.0, + 1180.0, + 269.0, + 1180.0, + 307.0, + 1114.0, + 307.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1701.0, + 392.0, + 1701.0, + 392.0, + 1744.0, + 296.0, + 1744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 493.0, + 1701.0, + 729.0, + 1701.0, + 729.0, + 1744.0, + 493.0, + 1744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 798.0, + 1701.0, + 818.0, + 1701.0, + 818.0, + 1744.0, + 798.0, + 1744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 490.0, + 923.0, + 490.0, + 923.0, + 531.0, + 295.0, + 531.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 25, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1179, + 1405, + 1179, + 1405, + 1310, + 297, + 1310 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 297, + 553, + 1407, + 553, + 1407, + 649, + 297, + 649 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 299, + 1941, + 1402, + 1941, + 1402, + 2035, + 299, + 2035 + ], + "score": 0.97 + }, + { + "category_id": 8, + "poly": [ + 422, + 892, + 1276, + 892, + 1276, + 1089, + 422, + 1089 + ], + "score": 0.97 + }, + { + "category_id": 1, + "poly": [ + 295, + 227, + 1402, + 227, + 1402, + 298, + 295, + 298 + ], + "score": 0.954 + }, + { + "category_id": 1, + "poly": [ + 297, + 407, + 1406, + 407, + 1406, + 472, + 297, + 472 + ], + "score": 0.949 + }, + { + "category_id": 1, + "poly": [ + 299, + 1389, + 1404, + 1389, + 1404, + 1456, + 299, + 1456 + ], + "score": 0.949 + }, + { + "category_id": 1, + "poly": [ + 298, + 1485, + 1403, + 1485, + 1403, + 1549, + 298, + 1549 + ], + "score": 0.947 + }, + { + "category_id": 1, + "poly": [ + 298, + 1103, + 1402, + 1103, + 1402, + 1168, + 298, + 1168 + ], + "score": 0.943 + }, + { + "category_id": 1, + "poly": [ + 298, + 661, + 1397, + 661, + 1397, + 725, + 298, + 725 + ], + "score": 0.942 + }, + { + "category_id": 1, + "poly": [ + 294, + 310, + 1402, + 310, + 1402, + 375, + 294, + 375 + ], + "score": 0.938 + }, + { + "category_id": 1, + "poly": [ + 296, + 1558, + 1400, + 1558, + 1400, + 1622, + 296, + 1622 + ], + "score": 0.936 + }, + { + "category_id": 1, + "poly": [ + 350, + 1793, + 1404, + 1793, + 1404, + 1860, + 350, + 1860 + ], + "score": 0.934 + }, + { + "category_id": 1, + "poly": [ + 355, + 1642, + 1403, + 1642, + 1403, + 1710, + 355, + 1710 + ], + "score": 0.93 + }, + { + "category_id": 2, + "poly": [ + 298, + 74, + 816, + 74, + 816, + 106, + 298, + 106 + ], + "score": 0.921 + }, + { + "category_id": 1, + "poly": [ + 287, + 739, + 1378, + 739, + 1378, + 776, + 287, + 776 + ], + "score": 0.918 + }, + { + "category_id": 1, + "poly": [ + 301, + 1324, + 734, + 1324, + 734, + 1356, + 301, + 1356 + ], + "score": 0.916 + }, + { + "category_id": 1, + "poly": [ + 298, + 847, + 366, + 847, + 366, + 878, + 298, + 878 + ], + "score": 0.912 + }, + { + "category_id": 8, + "poly": [ + 451, + 795, + 1250, + 795, + 1250, + 834, + 451, + 834 + ], + "score": 0.91 + }, + { + "category_id": 2, + "poly": [ + 834, + 2087, + 865, + 2087, + 865, + 2112, + 834, + 2112 + ], + "score": 0.878 + }, + { + "category_id": 8, + "poly": [ + 523, + 1722, + 1274, + 1722, + 1274, + 1763, + 523, + 1763 + ], + "score": 0.823 + }, + { + "category_id": 8, + "poly": [ + 289, + 483, + 1309, + 483, + 1309, + 525, + 289, + 525 + ], + "score": 0.668 + }, + { + "category_id": 2, + "poly": [ + 1381, + 1323, + 1404, + 1323, + 1404, + 1356, + 1381, + 1356 + ], + "score": 0.633 + }, + { + "category_id": 8, + "poly": [ + 511, + 1872, + 1284, + 1872, + 1284, + 1911, + 511, + 1911 + ], + "score": 0.503 + }, + { + "category_id": 1, + "poly": [ + 511, + 1872, + 1284, + 1872, + 1284, + 1911, + 511, + 1911 + ], + "score": 0.489 + }, + { + "category_id": 1, + "poly": [ + 289, + 483, + 1309, + 483, + 1309, + 525, + 289, + 525 + ], + "score": 0.33 + }, + { + "category_id": 1, + "poly": [ + 523, + 1722, + 1274, + 1722, + 1274, + 1763, + 523, + 1763 + ], + "score": 0.103 + }, + { + "category_id": 14, + "poly": [ + 423, + 891, + 1275, + 891, + 1275, + 1093, + 423, + 1093 + ], + "score": 0.93, + "latex": "\\begin{array} { l l } { \\displaystyle q ( \\bar { n } ^ { \\prime } ) - q ( \\bar { n } ) = q ( \\bar { n } ( 1 ) ) - q ( \\bar { n } ( 0 ) ) = \\int _ { t = 0 } ^ { 1 } ( q \\circ \\bar { n } ) ^ { \\prime } ( t ) \\mathrm { d } t } \\\\ { \\displaystyle \\qquad = \\int _ { t = 0 } ^ { 1 } \\left\\{ - x \\frac { \\partial q } { \\partial n _ { i } } \\bar { n } ( t ) + y \\frac { \\partial q } { \\partial n _ { j } } \\bar { n } ( t ) \\right\\} \\mathrm { d } t } \\\\ { \\displaystyle \\qquad \\leq 0 . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1132, + 1874, + 1275, + 1874, + 1275, + 1909, + 1132, + 1909 + ], + "score": 0.93, + "latex": "d ( \\bar { n } , \\bar { n } ^ { \\prime } ) = d" + }, + { + "category_id": 13, + "poly": [ + 844, + 1421, + 994, + 1421, + 994, + 1455, + 844, + 1455 + ], + "score": 0.93, + "latex": "q ( \\bar { n } ) \\leq q ( \\bar { n } ^ { \\prime } )" + }, + { + "category_id": 13, + "poly": [ + 577, + 230, + 702, + 230, + 702, + 268, + 577, + 268 + ], + "score": 0.93, + "latex": "\\lceil n _ { j } - n _ { j } ^ { \\prime \\prime \\prime } \\rceil" + }, + { + "category_id": 13, + "poly": [ + 844, + 586, + 936, + 586, + 936, + 620, + 844, + 620 + ], + "score": 0.93, + "latex": "n _ { i } ^ { \\prime } < n _ { i }" + }, + { + "category_id": 13, + "poly": [ + 535, + 555, + 687, + 555, + 687, + 589, + 535, + 589 + ], + "score": 0.93, + "latex": "d ( \\bar { n } , \\bar { n } ^ { \\prime } ) = 1" + }, + { + "category_id": 13, + "poly": [ + 400, + 1180, + 499, + 1180, + 499, + 1218, + 400, + 1218 + ], + "score": 0.93, + "latex": "n _ { i } ^ { \\prime } \\leq n _ { j } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 1120, + 1725, + 1264, + 1725, + 1264, + 1760, + 1120, + 1760 + ], + "score": 0.92, + "latex": "d ( \\bar { n } , \\bar { n } ^ { \\prime } ) = d" + }, + { + "category_id": 13, + "poly": [ + 749, + 230, + 846, + 230, + 846, + 263, + 749, + 263 + ], + "score": 0.92, + "latex": "j = i , i ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 347, + 1134, + 552, + 1134, + 552, + 1169, + 347, + 1169 + ], + "score": 0.92, + "latex": "q ( \\bar { n } ( t ) ) \\overset { \\cdot } { \\leq } \\dot { \\mathrm { B } _ { \\mathrm { U } } } ( q _ { 0 } )" + }, + { + "category_id": 13, + "poly": [ + 1065, + 1104, + 1221, + 1104, + 1221, + 1139, + 1065, + 1139 + ], + "score": 0.92, + "latex": "n _ { i } ( t ) > n _ { j } ( t )" + }, + { + "category_id": 13, + "poly": [ + 403, + 230, + 520, + 230, + 520, + 267, + 403, + 267 + ], + "score": 0.92, + "latex": "\\lceil n _ { j } - n _ { j } ^ { \\prime } \\rceil" + }, + { + "category_id": 13, + "poly": [ + 298, + 587, + 388, + 587, + 388, + 620, + 298, + 620 + ], + "score": 0.92, + "latex": "n _ { i } ^ { \\prime } < n _ { i }" + }, + { + "category_id": 13, + "poly": [ + 515, + 1792, + 693, + 1792, + 693, + 1832, + 515, + 1832 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { \\sum _ { i = 2 } ^ { m } n ^ { ( i ) } \\geq d } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 571, + 1215, + 672, + 1215, + 672, + 1254, + 571, + 1254 + ], + "score": 0.92, + "latex": "\\bar { n } _ { j \\_ } ^ { \\prime \\prime } = \\bar { n } _ { i } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 528, + 663, + 669, + 663, + 669, + 701, + 528, + 701 + ], + "score": 0.92, + "latex": "n _ { j } ^ { \\prime } = n _ { j } + y" + }, + { + "category_id": 13, + "poly": [ + 388, + 741, + 481, + 741, + 481, + 779, + 388, + 779 + ], + "score": 0.92, + "latex": "n _ { i } ^ { \\prime } \\geq n _ { j } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 1180, + 666, + 1273, + 666, + 1273, + 698, + 1180, + 698 + ], + "score": 0.92, + "latex": "n _ { i } \\geq n _ { j }" + }, + { + "category_id": 13, + "poly": [ + 778, + 1215, + 947, + 1215, + 947, + 1250, + 778, + 1250 + ], + "score": 0.92, + "latex": "q ( \\bar { n } ^ { \\prime \\prime } ) = q ( \\bar { n } ^ { \\prime } )" + }, + { + "category_id": 13, + "poly": [ + 742, + 555, + 832, + 555, + 832, + 585, + 742, + 585 + ], + "score": 0.92, + "latex": "\\bar { n } \\succeq \\bar { n } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 1127, + 1215, + 1221, + 1215, + 1221, + 1247, + 1127, + 1247 + ], + "score": 0.91, + "latex": "\\bar { n } ^ { \\prime \\prime } \\succeq \\bar { n }" + }, + { + "category_id": 13, + "poly": [ + 986, + 586, + 1082, + 586, + 1082, + 622, + 986, + 622 + ], + "score": 0.91, + "latex": "n _ { j } ^ { \\prime } > n _ { j }" + }, + { + "category_id": 13, + "poly": [ + 341, + 663, + 478, + 663, + 478, + 697, + 341, + 697 + ], + "score": 0.91, + "latex": "n _ { i } ^ { \\prime } = n _ { i } - x" + }, + { + "category_id": 13, + "poly": [ + 898, + 232, + 966, + 232, + 966, + 263, + 898, + 263 + ], + "score": 0.91, + "latex": "j = i" + }, + { + "category_id": 13, + "poly": [ + 413, + 1218, + 517, + 1218, + 517, + 1253, + 413, + 1253 + ], + "score": 0.91, + "latex": "\\bar { n } _ { i } ^ { \\prime \\prime } = \\bar { n } _ { j } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 930, + 663, + 1009, + 663, + 1009, + 694, + 930, + 694 + ], + "score": 0.91, + "latex": "\\bar { n } \\succeq \\bar { n } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 931, + 1135, + 1112, + 1135, + 1112, + 1168, + 931, + 1168 + ], + "score": 0.91, + "latex": "d ( \\bar { n } ^ { \\prime } , \\bar { n } ( t ) ) \\leq 1 ." + }, + { + "category_id": 13, + "poly": [ + 753, + 665, + 849, + 665, + 849, + 696, + 753, + 696 + ], + "score": 0.9, + "latex": "x , y > 0" + }, + { + "category_id": 13, + "poly": [ + 515, + 1644, + 725, + 1644, + 725, + 1677, + 515, + 1677 + ], + "score": 0.9, + "latex": "n ^ { ( 1 ) } - n ^ { ( 2 ) } \\geq 2 d ," + }, + { + "category_id": 13, + "poly": [ + 893, + 1106, + 1014, + 1106, + 1014, + 1135, + 893, + 1135 + ], + "score": 0.9, + "latex": "x > y > 0" + }, + { + "category_id": 13, + "poly": [ + 1323, + 667, + 1393, + 667, + 1393, + 696, + 1323, + 696 + ], + "score": 0.9, + "latex": "x > y" + }, + { + "category_id": 13, + "poly": [ + 728, + 1725, + 890, + 1725, + 890, + 1760, + 728, + 1760 + ], + "score": 0.9, + "latex": "q ( \\bar { n } ^ { * } ) \\geq q ( \\bar { n } ^ { \\prime } )" + }, + { + "category_id": 13, + "poly": [ + 424, + 268, + 494, + 268, + 494, + 298, + 424, + 298 + ], + "score": 0.9, + "latex": "j = i ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 497, + 1422, + 542, + 1422, + 542, + 1455, + 497, + 1455 + ], + "score": 0.9, + "latex": "q ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 1261, + 1559, + 1306, + 1559, + 1306, + 1593, + 1261, + 1593 + ], + "score": 0.89, + "latex": "q ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 1153, + 488, + 1302, + 488, + 1302, + 523, + 1153, + 523 + ], + "score": 0.89, + "latex": "q ( \\bar { n } ) \\leq q ( \\bar { n } ^ { \\prime } )" + }, + { + "category_id": 13, + "poly": [ + 993, + 312, + 1032, + 312, + 1032, + 340, + 993, + 340 + ], + "score": 0.89, + "latex": "\\bar { n } ^ { \\prime \\prime \\prime }" + }, + { + "category_id": 13, + "poly": [ + 729, + 1874, + 902, + 1874, + 902, + 1909, + 729, + 1909 + ], + "score": 0.89, + "latex": "q ( \\bar { n } ^ { * * } ) \\leq q ( \\bar { n } ^ { \\prime } )" + }, + { + "category_id": 13, + "poly": [ + 963, + 1944, + 1006, + 1944, + 1006, + 1970, + 963, + 1970 + ], + "score": 0.88, + "latex": "\\bar { n } ^ { * * }" + }, + { + "category_id": 13, + "poly": [ + 1035, + 1277, + 1068, + 1277, + 1068, + 1305, + 1035, + 1305 + ], + "score": 0.88, + "latex": "\\bar { n } ^ { \\prime \\prime }" + }, + { + "category_id": 13, + "poly": [ + 1240, + 1644, + 1289, + 1644, + 1289, + 1676, + 1240, + 1676 + ], + "score": 0.88, + "latex": "{ \\boldsymbol n } ^ { ( 1 ) }" + }, + { + "category_id": 13, + "poly": [ + 744, + 1798, + 788, + 1798, + 788, + 1825, + 744, + 1825 + ], + "score": 0.87, + "latex": "\\bar { n } ^ { * * }" + }, + { + "category_id": 13, + "poly": [ + 1211, + 1181, + 1245, + 1181, + 1245, + 1210, + 1211, + 1210 + ], + "score": 0.87, + "latex": "\\bar { n } ^ { \\prime \\prime }" + }, + { + "category_id": 13, + "poly": [ + 874, + 1944, + 907, + 1944, + 907, + 1970, + 874, + 1970 + ], + "score": 0.87, + "latex": "\\bar { n } ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 1093, + 1391, + 1120, + 1391, + 1120, + 1419, + 1093, + 1419 + ], + "score": 0.87, + "latex": "\\bar { n } ^ { \\prime }" + }, + { + "category_id": 14, + "poly": [ + 448, + 793, + 1249, + 793, + 1249, + 834, + 448, + 834 + ], + "score": 0.87, + "latex": "\\bar { n } ( t ) \\triangleq ( 1 - t ) \\bar { n } + t \\cdot \\bar { n } ^ { \\prime } = [ n _ { 1 } , \\ldots , n _ { i } - t \\cdot x , \\ldots , n _ { j } + t \\cdot y , \\ldots , n _ { m } ] ." + }, + { + "category_id": 13, + "poly": [ + 1044, + 1182, + 1072, + 1182, + 1072, + 1210, + 1044, + 1210 + ], + "score": 0.86, + "latex": "\\bar { n } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 948, + 748, + 979, + 748, + 979, + 775, + 948, + 775 + ], + "score": 0.86, + "latex": "n _ { j }" + }, + { + "category_id": 13, + "poly": [ + 775, + 1649, + 808, + 1649, + 808, + 1675, + 775, + 1675 + ], + "score": 0.85, + "latex": "\\bar { n } ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 737, + 747, + 765, + 747, + 765, + 772, + 737, + 772 + ], + "score": 0.85, + "latex": "n _ { i }" + }, + { + "category_id": 13, + "poly": [ + 981, + 1726, + 1008, + 1726, + 1008, + 1754, + 981, + 1754 + ], + "score": 0.84, + "latex": "\\bar { n } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 549, + 1676, + 598, + 1676, + 598, + 1706, + 549, + 1706 + ], + "score": 0.84, + "latex": "n ^ { ( 2 ) }" + }, + { + "category_id": 13, + "poly": [ + 745, + 589, + 762, + 589, + 762, + 619, + 745, + 619 + ], + "score": 0.84, + "latex": "j" + }, + { + "category_id": 13, + "poly": [ + 948, + 485, + 1086, + 485, + 1086, + 518, + 948, + 518 + ], + "score": 0.83, + "latex": "\\bar { n } ^ { ( 1 ) } = \\bar { n } ^ { \\prime ( 1 ) }" + }, + { + "category_id": 13, + "poly": [ + 1214, + 1801, + 1246, + 1801, + 1246, + 1827, + 1214, + 1827 + ], + "score": 0.83, + "latex": "n _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 361, + 624, + 378, + 624, + 378, + 649, + 361, + 649 + ], + "score": 0.83, + "latex": "q" + }, + { + "category_id": 13, + "poly": [ + 467, + 489, + 547, + 489, + 547, + 521, + 467, + 521 + ], + "score": 0.82, + "latex": "\\bar { n } ^ { \\prime } \\succeq \\bar { n }" + }, + { + "category_id": 13, + "poly": [ + 993, + 1875, + 1019, + 1875, + 1019, + 1903, + 993, + 1903 + ], + "score": 0.82, + "latex": "\\bar { n } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 1147, + 415, + 1164, + 415, + 1164, + 440, + 1147, + 440 + ], + "score": 0.81, + "latex": "q" + }, + { + "category_id": 13, + "poly": [ + 923, + 316, + 943, + 316, + 943, + 340, + 923, + 340 + ], + "score": 0.81, + "latex": "\\bar { n }" + }, + { + "category_id": 13, + "poly": [ + 898, + 748, + 917, + 748, + 917, + 774, + 898, + 774 + ], + "score": 0.79, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 964, + 1280, + 984, + 1280, + 984, + 1305, + 964, + 1305 + ], + "score": 0.79, + "latex": "\\bar { n }" + }, + { + "category_id": 13, + "poly": [ + 682, + 590, + 695, + 590, + 695, + 614, + 682, + 614 + ], + "score": 0.78, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 1023, + 1394, + 1043, + 1394, + 1043, + 1418, + 1023, + 1418 + ], + "score": 0.78, + "latex": "\\bar { n }" + }, + { + "category_id": 13, + "poly": [ + 653, + 748, + 672, + 748, + 672, + 769, + 653, + 769 + ], + "score": 0.77, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 395, + 2004, + 413, + 2004, + 413, + 2030, + 395, + 2030 + ], + "score": 0.77, + "latex": "d" + }, + { + "category_id": 13, + "poly": [ + 885, + 1185, + 900, + 1185, + 900, + 1213, + 885, + 1213 + ], + "score": 0.74, + "latex": "j" + }, + { + "category_id": 13, + "poly": [ + 1289, + 1798, + 1306, + 1798, + 1306, + 1825, + 1289, + 1825 + ], + "score": 0.72, + "latex": "d" + }, + { + "category_id": 13, + "poly": [ + 1332, + 1649, + 1350, + 1649, + 1350, + 1675, + 1332, + 1675 + ], + "score": 0.69, + "latex": "d" + }, + { + "category_id": 13, + "poly": [ + 547, + 487, + 896, + 487, + 896, + 523, + 547, + 523 + ], + "score": 0.69, + "latex": ", q ( \\bar { n } ^ { \\prime } ) \\leq \\mathrm { B _ { U } } ( q _ { 0 } ) , d ( \\bar { n } , \\bar { n } ^ { \\prime } ) = 1" + }, + { + "category_id": 13, + "poly": [ + 1303, + 558, + 1317, + 558, + 1317, + 583, + 1303, + 583 + ], + "score": 0.67, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 477, + 2006, + 496, + 2006, + 496, + 2030, + 477, + 2030 + ], + "score": 0.66, + "latex": "\\bar { n }" + }, + { + "category_id": 13, + "poly": [ + 527, + 1725, + 677, + 1725, + 677, + 1760, + 527, + 1760 + ], + "score": 0.63, + "latex": "d ( \\bar { n } , \\bar { n } ^ { * } ) = d" + }, + { + "category_id": 13, + "poly": [ + 635, + 1679, + 654, + 1679, + 654, + 1706, + 635, + 1706 + ], + "score": 0.6, + "latex": "d ." + }, + { + "category_id": 13, + "poly": [ + 1249, + 1828, + 1268, + 1828, + 1268, + 1854, + 1249, + 1854 + ], + "score": 0.54, + "latex": "d" + }, + { + "category_id": 13, + "poly": [ + 997, + 1800, + 1018, + 1800, + 1018, + 1824, + 997, + 1824 + ], + "score": 0.43, + "latex": "\\bar { n }" + }, + { + "category_id": 13, + "poly": [ + 1018, + 1651, + 1039, + 1651, + 1039, + 1675, + 1018, + 1675 + ], + "score": 0.41, + "latex": "\\bar { n }" + }, + { + "category_id": 13, + "poly": [ + 798, + 1186, + 810, + 1186, + 810, + 1209, + 798, + 1209 + ], + "score": 0.4, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 515, + 1874, + 677, + 1874, + 677, + 1910, + 515, + 1910 + ], + "score": 0.33, + "latex": "d ( \\bar { n } , \\bar { n } ^ { * * } ) = d" + }, + { + "category_id": 13, + "poly": [ + 753, + 488, + 896, + 488, + 896, + 523, + 753, + 523 + ], + "score": 0.3, + "latex": "d ( \\bar { n } , \\bar { n } ^ { \\prime } ) = 1" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 72.0, + 818.0, + 72.0, + 818.0, + 109.0, + 296.0, + 109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 830.0, + 2085.0, + 869.0, + 2085.0, + 869.0, + 2124.0, + 830.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1383.0, + 1326.0, + 1404.0, + 1326.0, + 1404.0, + 1358.0, + 1383.0, + 1358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1180.0, + 399.0, + 1180.0, + 399.0, + 1217.0, + 297.0, + 1217.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 500.0, + 1180.0, + 797.0, + 1180.0, + 797.0, + 1217.0, + 500.0, + 1217.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 811.0, + 1180.0, + 884.0, + 1180.0, + 884.0, + 1217.0, + 811.0, + 1217.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 901.0, + 1180.0, + 1043.0, + 1180.0, + 1043.0, + 1217.0, + 901.0, + 1217.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1073.0, + 1180.0, + 1210.0, + 1180.0, + 1210.0, + 1217.0, + 1073.0, + 1217.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1246.0, + 1180.0, + 1405.0, + 1180.0, + 1405.0, + 1217.0, + 1246.0, + 1217.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1213.0, + 412.0, + 1213.0, + 412.0, + 1254.0, + 294.0, + 1254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 518.0, + 1213.0, + 570.0, + 1213.0, + 570.0, + 1254.0, + 518.0, + 1254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 673.0, + 1213.0, + 777.0, + 1213.0, + 777.0, + 1254.0, + 673.0, + 1254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 948.0, + 1213.0, + 1126.0, + 1213.0, + 1126.0, + 1254.0, + 948.0, + 1254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1222.0, + 1213.0, + 1406.0, + 1213.0, + 1406.0, + 1254.0, + 1222.0, + 1254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1246.0, + 1406.0, + 1246.0, + 1406.0, + 1279.0, + 294.0, + 1279.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1275.0, + 963.0, + 1275.0, + 963.0, + 1313.0, + 295.0, + 1313.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 985.0, + 1275.0, + 1034.0, + 1275.0, + 1034.0, + 1313.0, + 985.0, + 1313.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1069.0, + 1275.0, + 1280.0, + 1275.0, + 1280.0, + 1313.0, + 1069.0, + 1313.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 551.0, + 534.0, + 551.0, + 534.0, + 590.0, + 295.0, + 590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 688.0, + 551.0, + 741.0, + 551.0, + 741.0, + 590.0, + 688.0, + 590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 833.0, + 551.0, + 1302.0, + 551.0, + 1302.0, + 590.0, + 833.0, + 590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1318.0, + 551.0, + 1407.0, + 551.0, + 1407.0, + 590.0, + 1318.0, + 590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 389.0, + 585.0, + 681.0, + 585.0, + 681.0, + 623.0, + 389.0, + 623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 696.0, + 585.0, + 744.0, + 585.0, + 744.0, + 623.0, + 696.0, + 623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 763.0, + 585.0, + 843.0, + 585.0, + 843.0, + 623.0, + 763.0, + 623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 937.0, + 585.0, + 985.0, + 585.0, + 985.0, + 623.0, + 937.0, + 623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1083.0, + 585.0, + 1407.0, + 585.0, + 1407.0, + 623.0, + 1083.0, + 623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 616.0, + 360.0, + 616.0, + 360.0, + 650.0, + 294.0, + 650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 379.0, + 616.0, + 1057.0, + 616.0, + 1057.0, + 650.0, + 379.0, + 650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1942.0, + 873.0, + 1942.0, + 873.0, + 1976.0, + 297.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 908.0, + 1942.0, + 962.0, + 1942.0, + 962.0, + 1976.0, + 908.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1007.0, + 1942.0, + 1404.0, + 1942.0, + 1404.0, + 1976.0, + 1007.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1971.0, + 1406.0, + 1971.0, + 1406.0, + 2007.0, + 294.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2003.0, + 394.0, + 2003.0, + 394.0, + 2037.0, + 295.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 414.0, + 2003.0, + 476.0, + 2003.0, + 476.0, + 2037.0, + 414.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 497.0, + 2003.0, + 921.0, + 2003.0, + 921.0, + 2037.0, + 497.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 226.0, + 402.0, + 226.0, + 402.0, + 266.0, + 294.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 521.0, + 226.0, + 576.0, + 226.0, + 576.0, + 266.0, + 521.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 703.0, + 226.0, + 748.0, + 226.0, + 748.0, + 266.0, + 703.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 847.0, + 226.0, + 897.0, + 226.0, + 897.0, + 266.0, + 847.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 967.0, + 226.0, + 1405.0, + 226.0, + 1405.0, + 266.0, + 967.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 264.0, + 423.0, + 264.0, + 423.0, + 301.0, + 295.0, + 301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 495.0, + 264.0, + 1036.0, + 264.0, + 1036.0, + 301.0, + 495.0, + 301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 407.0, + 1146.0, + 407.0, + 1146.0, + 443.0, + 296.0, + 443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1165.0, + 407.0, + 1404.0, + 407.0, + 1404.0, + 443.0, + 1165.0, + 443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 438.0, + 1083.0, + 438.0, + 1083.0, + 473.0, + 294.0, + 473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1387.0, + 1022.0, + 1387.0, + 1022.0, + 1426.0, + 294.0, + 1426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1044.0, + 1387.0, + 1092.0, + 1387.0, + 1092.0, + 1426.0, + 1044.0, + 1426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1121.0, + 1387.0, + 1408.0, + 1387.0, + 1408.0, + 1426.0, + 1121.0, + 1426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1420.0, + 496.0, + 1420.0, + 496.0, + 1455.0, + 293.0, + 1455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 543.0, + 1420.0, + 843.0, + 1420.0, + 843.0, + 1455.0, + 543.0, + 1455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 995.0, + 1420.0, + 1136.0, + 1420.0, + 1136.0, + 1455.0, + 995.0, + 1455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1384.0, + 1423.0, + 1403.0, + 1423.0, + 1403.0, + 1449.0, + 1384.0, + 1449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1486.0, + 1405.0, + 1486.0, + 1405.0, + 1522.0, + 296.0, + 1522.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1518.0, + 701.0, + 1518.0, + 701.0, + 1550.0, + 293.0, + 1550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1101.0, + 892.0, + 1101.0, + 892.0, + 1141.0, + 294.0, + 1141.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1015.0, + 1101.0, + 1064.0, + 1101.0, + 1064.0, + 1141.0, + 1015.0, + 1141.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1222.0, + 1101.0, + 1406.0, + 1101.0, + 1406.0, + 1141.0, + 1222.0, + 1141.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1130.0, + 346.0, + 1130.0, + 346.0, + 1172.0, + 292.0, + 1172.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 553.0, + 1130.0, + 930.0, + 1130.0, + 930.0, + 1172.0, + 553.0, + 1172.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1113.0, + 1130.0, + 1126.0, + 1130.0, + 1126.0, + 1172.0, + 1113.0, + 1172.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 655.0, + 340.0, + 655.0, + 340.0, + 706.0, + 289.0, + 706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 479.0, + 655.0, + 527.0, + 655.0, + 527.0, + 706.0, + 479.0, + 706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 670.0, + 655.0, + 752.0, + 655.0, + 752.0, + 706.0, + 670.0, + 706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 850.0, + 655.0, + 929.0, + 655.0, + 929.0, + 706.0, + 850.0, + 706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1010.0, + 655.0, + 1179.0, + 655.0, + 1179.0, + 706.0, + 1010.0, + 706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1274.0, + 655.0, + 1322.0, + 655.0, + 1322.0, + 706.0, + 1274.0, + 706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 655.0, + 1407.0, + 655.0, + 1407.0, + 706.0, + 1394.0, + 706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 693.0, + 524.0, + 693.0, + 524.0, + 728.0, + 296.0, + 728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 308.0, + 922.0, + 308.0, + 922.0, + 348.0, + 294.0, + 348.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 944.0, + 308.0, + 992.0, + 308.0, + 992.0, + 348.0, + 944.0, + 348.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1033.0, + 308.0, + 1405.0, + 308.0, + 1405.0, + 348.0, + 1033.0, + 348.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 338.0, + 389.0, + 338.0, + 389.0, + 378.0, + 293.0, + 378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1385.0, + 349.0, + 1400.0, + 349.0, + 1400.0, + 367.0, + 1385.0, + 367.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1554.0, + 1260.0, + 1554.0, + 1260.0, + 1596.0, + 292.0, + 1596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1307.0, + 1554.0, + 1405.0, + 1554.0, + 1405.0, + 1596.0, + 1307.0, + 1596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1589.0, + 721.0, + 1589.0, + 721.0, + 1625.0, + 296.0, + 1625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 1776.0, + 514.0, + 1776.0, + 514.0, + 1862.0, + 348.0, + 1862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 694.0, + 1776.0, + 743.0, + 1776.0, + 743.0, + 1862.0, + 694.0, + 1862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 789.0, + 1776.0, + 996.0, + 1776.0, + 996.0, + 1862.0, + 789.0, + 1862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1019.0, + 1776.0, + 1213.0, + 1776.0, + 1213.0, + 1862.0, + 1019.0, + 1862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1269.0, + 1776.0, + 1288.0, + 1776.0, + 1288.0, + 1862.0, + 1269.0, + 1862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1307.0, + 1776.0, + 1414.0, + 1776.0, + 1414.0, + 1862.0, + 1307.0, + 1862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 1635.0, + 514.0, + 1635.0, + 514.0, + 1687.0, + 356.0, + 1687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 726.0, + 1635.0, + 774.0, + 1635.0, + 774.0, + 1687.0, + 726.0, + 1687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 809.0, + 1635.0, + 1017.0, + 1635.0, + 1017.0, + 1687.0, + 809.0, + 1687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1040.0, + 1635.0, + 1239.0, + 1635.0, + 1239.0, + 1687.0, + 1040.0, + 1687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1290.0, + 1635.0, + 1331.0, + 1635.0, + 1331.0, + 1687.0, + 1290.0, + 1687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1351.0, + 1635.0, + 1408.0, + 1635.0, + 1408.0, + 1687.0, + 1351.0, + 1687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1672.0, + 548.0, + 1672.0, + 548.0, + 1714.0, + 393.0, + 1714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 599.0, + 1672.0, + 634.0, + 1672.0, + 634.0, + 1714.0, + 599.0, + 1714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 655.0, + 1672.0, + 730.0, + 1672.0, + 730.0, + 1714.0, + 655.0, + 1714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 736.0, + 387.0, + 736.0, + 387.0, + 780.0, + 297.0, + 780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 482.0, + 736.0, + 652.0, + 736.0, + 652.0, + 780.0, + 482.0, + 780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 673.0, + 736.0, + 736.0, + 736.0, + 736.0, + 780.0, + 673.0, + 780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 766.0, + 736.0, + 897.0, + 736.0, + 897.0, + 780.0, + 766.0, + 780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 918.0, + 736.0, + 947.0, + 736.0, + 947.0, + 780.0, + 918.0, + 780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 980.0, + 736.0, + 1381.0, + 736.0, + 1381.0, + 780.0, + 980.0, + 780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1320.0, + 737.0, + 1320.0, + 737.0, + 1360.0, + 296.0, + 1360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 843.0, + 373.0, + 843.0, + 373.0, + 887.0, + 293.0, + 887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 678.0, + 1870.0, + 728.0, + 1870.0, + 728.0, + 1914.0, + 678.0, + 1914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 903.0, + 1870.0, + 992.0, + 1870.0, + 992.0, + 1914.0, + 903.0, + 1914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1020.0, + 1870.0, + 1131.0, + 1870.0, + 1131.0, + 1914.0, + 1020.0, + 1914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1276.0, + 1870.0, + 1287.0, + 1870.0, + 1287.0, + 1914.0, + 1276.0, + 1914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 477.0, + 466.0, + 477.0, + 466.0, + 532.0, + 289.0, + 532.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 897.0, + 477.0, + 947.0, + 477.0, + 947.0, + 532.0, + 897.0, + 532.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1087.0, + 477.0, + 1152.0, + 477.0, + 1152.0, + 532.0, + 1087.0, + 532.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1303.0, + 477.0, + 1316.0, + 477.0, + 1316.0, + 532.0, + 1303.0, + 532.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 523.0, + 1720.0, + 526.0, + 1720.0, + 526.0, + 1765.0, + 523.0, + 1765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 678.0, + 1720.0, + 727.0, + 1720.0, + 727.0, + 1765.0, + 678.0, + 1765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 891.0, + 1720.0, + 980.0, + 1720.0, + 980.0, + 1765.0, + 891.0, + 1765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1009.0, + 1720.0, + 1119.0, + 1720.0, + 1119.0, + 1765.0, + 1009.0, + 1765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1265.0, + 1720.0, + 1275.0, + 1720.0, + 1275.0, + 1765.0, + 1265.0, + 1765.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 26, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 364, + 227, + 1405, + 227, + 1405, + 375, + 364, + 375 + ], + "score": 0.976 + }, + { + "category_id": 8, + "poly": [ + 421, + 1545, + 1379, + 1545, + 1379, + 1679, + 421, + 1679 + ], + "score": 0.968 + }, + { + "category_id": 8, + "poly": [ + 673, + 1204, + 1122, + 1204, + 1122, + 1316, + 673, + 1316 + ], + "score": 0.961 + }, + { + "category_id": 8, + "poly": [ + 650, + 964, + 1145, + 964, + 1145, + 1072, + 650, + 1072 + ], + "score": 0.961 + }, + { + "category_id": 1, + "poly": [ + 397, + 1328, + 1404, + 1328, + 1404, + 1425, + 397, + 1425 + ], + "score": 0.957 + }, + { + "category_id": 1, + "poly": [ + 395, + 1965, + 1402, + 1965, + 1402, + 2037, + 395, + 2037 + ], + "score": 0.951 + }, + { + "category_id": 1, + "poly": [ + 395, + 1081, + 1399, + 1081, + 1399, + 1144, + 395, + 1144 + ], + "score": 0.949 + }, + { + "category_id": 1, + "poly": [ + 395, + 1688, + 1401, + 1688, + 1401, + 1752, + 395, + 1752 + ], + "score": 0.947 + }, + { + "category_id": 8, + "poly": [ + 554, + 1844, + 1241, + 1844, + 1241, + 1935, + 554, + 1935 + ], + "score": 0.947 + }, + { + "category_id": 1, + "poly": [ + 365, + 889, + 1401, + 889, + 1401, + 954, + 365, + 954 + ], + "score": 0.947 + }, + { + "category_id": 8, + "poly": [ + 667, + 384, + 1126, + 384, + 1126, + 527, + 667, + 527 + ], + "score": 0.946 + }, + { + "category_id": 1, + "poly": [ + 395, + 808, + 1398, + 808, + 1398, + 873, + 395, + 873 + ], + "score": 0.945 + }, + { + "category_id": 1, + "poly": [ + 398, + 1762, + 1399, + 1762, + 1399, + 1830, + 398, + 1830 + ], + "score": 0.943 + }, + { + "category_id": 1, + "poly": [ + 395, + 1158, + 967, + 1158, + 967, + 1191, + 395, + 1191 + ], + "score": 0.93 + }, + { + "category_id": 1, + "poly": [ + 394, + 538, + 971, + 538, + 971, + 572, + 394, + 572 + ], + "score": 0.928 + }, + { + "category_id": 1, + "poly": [ + 400, + 1437, + 1223, + 1437, + 1223, + 1477, + 400, + 1477 + ], + "score": 0.927 + }, + { + "category_id": 2, + "poly": [ + 298, + 74, + 816, + 74, + 816, + 106, + 298, + 106 + ], + "score": 0.919 + }, + { + "category_id": 8, + "poly": [ + 421, + 591, + 1376, + 591, + 1376, + 797, + 421, + 797 + ], + "score": 0.915 + }, + { + "category_id": 1, + "poly": [ + 396, + 1489, + 987, + 1489, + 987, + 1525, + 396, + 1525 + ], + "score": 0.903 + }, + { + "category_id": 2, + "poly": [ + 834, + 2087, + 865, + 2087, + 865, + 2113, + 834, + 2113 + ], + "score": 0.875 + }, + { + "category_id": 8, + "poly": [ + 422, + 591, + 1376, + 591, + 1376, + 797, + 422, + 797 + ], + "score": 0.251 + }, + { + "category_id": 8, + "poly": [ + 714, + 384, + 955, + 384, + 955, + 424, + 714, + 424 + ], + "score": 0.105 + }, + { + "category_id": 13, + "poly": [ + 875, + 1966, + 1004, + 1966, + 1004, + 1997, + 875, + 1997 + ], + "score": 0.95, + "latex": "n ^ { * * ( i ) } = u" + }, + { + "category_id": 14, + "poly": [ + 651, + 962, + 1147, + 962, + 1147, + 1074, + 651, + 1074 + ], + "score": 0.94, + "latex": "u \\triangleq \\operatorname* { m i n } \\left\\{ x \\in { \\mathbb { N } } \\colon \\sum _ { i : i > 1 , n _ { i } \\geq x } n _ { i } - x \\leq d \\right\\} ." + }, + { + "category_id": 14, + "poly": [ + 675, + 1203, + 1119, + 1203, + 1119, + 1317, + 675, + 1317 + ], + "score": 0.94, + "latex": "n _ { i } ^ { * * } = \\left\\{ { \\begin{array} { l l } { n _ { 1 } + d } & { { \\mathrm { i f ~ } } i = 1 , } \\\\ { u } & { { \\mathrm { i f ~ } } i > 1 { \\mathrm { ~ a n d ~ } } n _ { i } \\geq u , } \\\\ { n _ { i } } & { { \\mathrm { o t h e r w i s e } } . } \\end{array} } \\right." + }, + { + "category_id": 14, + "poly": [ + 421, + 1539, + 1378, + 1539, + 1378, + 1685, + 421, + 1685 + ], + "score": 0.94, + "latex": "\\begin{array} { r } { S _ { i } ( \\bar { n } ^ { \\prime } ) = \\displaystyle \\sum _ { j = 2 } ^ { i } ( n ^ { \\prime ( 1 ) } - n ^ { \\prime ( j ) } ) = \\displaystyle \\sum _ { j = 2 } ^ { i } \\Big ( ( n ^ { \\prime ( 1 ) } - n ^ { ( 1 ) } ) + ( n ^ { ( 1 ) } - n ^ { ( j ) } ) + ( n ^ { ( j ) } - n ^ { \\prime ( j ) } ) \\Big ) } \\\\ { \\le ( i - 1 ) d + S _ { i } ( \\bar { n } ) + d = S _ { i } ( \\bar { n } ^ { * * } ) . } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 554, + 1839, + 1245, + 1839, + 1245, + 1937, + 554, + 1937 + ], + "score": 0.93, + "latex": "S _ { i } ( \\bar { n } ^ { \\prime } ) = \\sum _ { j = 2 } ^ { i } ( n ^ { \\prime ( 1 ) } - n ^ { \\prime ( j ) } ) \\le ( i - 1 ) ( n ^ { \\prime ( 1 ) } - u ) = S _ { i } ( \\bar { n } ^ { * * } ) ." + }, + { + "category_id": 14, + "poly": [ + 423, + 588, + 1375, + 588, + 1375, + 802, + 423, + 802 + ], + "score": 0.93, + "latex": "\\begin{array} { l } { S _ { i } ( \\bar { n } ^ { \\prime } ) = \\displaystyle \\sum _ { j = 2 } ^ { i } ( n ^ { \\prime ( 1 ) } - n ^ { \\prime ( j ) } ) = ( i - 1 ) \\cdot n ^ { \\prime ( 1 ) } - \\displaystyle \\sum _ { j = 2 } ^ { i } n ^ { \\prime ( j ) } } \\\\ { \\geq ( i - 1 ) \\cdot ( n ^ { ( 1 ) } - d ) - \\displaystyle \\left( \\sum _ { j = 2 } ^ { i } n ^ { ( j ) } + d \\right) = S _ { i } ( \\bar { n } ^ { * } ) . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 723, + 840, + 871, + 840, + 871, + 873, + 723, + 873 + ], + "score": 0.93, + "latex": "d ( \\bar { n } , \\bar { n } ^ { * } ) = d" + }, + { + "category_id": 13, + "poly": [ + 589, + 2001, + 794, + 2001, + 794, + 2036, + 589, + 2036 + ], + "score": 0.93, + "latex": "S _ { i } ( { \\bar { n } } ^ { * * } ) < S _ { i } ( { \\bar { n } } ^ { \\prime } )" + }, + { + "category_id": 13, + "poly": [ + 632, + 1438, + 880, + 1438, + 880, + 1475, + 632, + 1475 + ], + "score": 0.93, + "latex": "n ^ { \\prime ( 1 ) } = n _ { 1 } ^ { * * } = n _ { 1 } + d" + }, + { + "category_id": 13, + "poly": [ + 511, + 1489, + 633, + 1489, + 633, + 1521, + 511, + 1521 + ], + "score": 0.92, + "latex": "n ^ { * * ( i ) } < u" + }, + { + "category_id": 13, + "poly": [ + 1220, + 808, + 1393, + 808, + 1393, + 843, + 1220, + 843 + ], + "score": 0.92, + "latex": "q ( \\bar { n } ^ { \\prime } ) \\leq q ( \\bar { n } ^ { * } )" + }, + { + "category_id": 13, + "poly": [ + 715, + 1762, + 829, + 1762, + 829, + 1797, + 715, + 1797 + ], + "score": 0.92, + "latex": "n ^ { \\prime { ( i ) } } \\geq u" + }, + { + "category_id": 13, + "poly": [ + 1100, + 1766, + 1308, + 1766, + 1308, + 1800, + 1100, + 1800 + ], + "score": 0.92, + "latex": "S _ { i } ( \\bar { n } ^ { * * } ) < S _ { i } ( \\bar { n } ^ { \\prime } )" + }, + { + "category_id": 13, + "poly": [ + 653, + 809, + 757, + 809, + 757, + 840, + 653, + 840 + ], + "score": 0.92, + "latex": "\\bar { n } ^ { \\prime } \\succeq \\bar { n } ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 529, + 1762, + 660, + 1762, + 660, + 1795, + 529, + 1795 + ], + "score": 0.92, + "latex": "n ^ { * * ( i ) } = u" + }, + { + "category_id": 13, + "poly": [ + 716, + 1361, + 828, + 1361, + 828, + 1391, + 716, + 1391 + ], + "score": 0.92, + "latex": "\\bar { n } ^ { * * } \\succeq \\bar { n } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 1058, + 1966, + 1230, + 1966, + 1230, + 1998, + 1058, + 1998 + ], + "score": 0.91, + "latex": "v \\ \\triangleq n ^ { \\prime ( i ) } < u" + }, + { + "category_id": 13, + "poly": [ + 494, + 1330, + 591, + 1330, + 591, + 1362, + 494, + 1362 + ], + "score": 0.9, + "latex": "i \\in [ m ]" + }, + { + "category_id": 13, + "poly": [ + 960, + 1999, + 1399, + 1999, + 1399, + 2033, + 960, + 2033 + ], + "score": 0.9, + "latex": "n ^ { * * ( i + 1 ) } < n ^ { \\prime ( i + 1 ) } \\leq v < u = n ^ { * * ( i ) }" + }, + { + "category_id": 13, + "poly": [ + 896, + 261, + 963, + 261, + 963, + 295, + 896, + 295 + ], + "score": 0.89, + "latex": "d ( \\cdot , \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 1181, + 1691, + 1224, + 1691, + 1224, + 1717, + 1181, + 1717 + ], + "score": 0.89, + "latex": "\\bar { n } ^ { * * }" + }, + { + "category_id": 13, + "poly": [ + 398, + 1393, + 597, + 1393, + 597, + 1425, + 398, + 1425 + ], + "score": 0.89, + "latex": "S _ { i } ( { \\bar { n } } ^ { * * } ) < S _ { i } ( { \\bar { n } } ^ { \\prime } )" + }, + { + "category_id": 13, + "poly": [ + 912, + 1160, + 954, + 1160, + 954, + 1187, + 912, + 1187 + ], + "score": 0.88, + "latex": "\\bar { n } ^ { * * }" + }, + { + "category_id": 13, + "poly": [ + 1268, + 261, + 1402, + 261, + 1402, + 296, + 1268, + 296 + ], + "score": 0.88, + "latex": "d ( \\bar { n } , \\bar { n } ^ { \\prime } ) ~ =" + }, + { + "category_id": 13, + "poly": [ + 814, + 540, + 841, + 540, + 841, + 567, + 814, + 567 + ], + "score": 0.87, + "latex": "\\bar { n } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 398, + 1361, + 605, + 1361, + 605, + 1392, + 398, + 1392 + ], + "score": 0.87, + "latex": "S _ { i } ( \\bar { n } ^ { * * } ) \\geq S _ { i } ^ { \\bar { ( n ^ { \\prime } ) } }" + }, + { + "category_id": 13, + "poly": [ + 818, + 1331, + 846, + 1331, + 846, + 1358, + 818, + 1358 + ], + "score": 0.87, + "latex": "\\bar { n } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 1326, + 230, + 1402, + 230, + 1402, + 261, + 1326, + 261 + ], + "score": 0.86, + "latex": "\\bar { n } ^ { \\prime } \\succeq" + }, + { + "category_id": 13, + "poly": [ + 457, + 293, + 939, + 293, + 939, + 347, + 457, + 347 + ], + "score": 0.85, + "latex": "\\begin{array} { r l } { \\bigg \\{ \\sum _ { i : n _ { i } > n _ { i } ^ { \\prime } } \\lceil n _ { i } - n _ { i } ^ { \\prime } \\rceil , \\sum _ { i : n _ { i } < n _ { i } ^ { \\prime } } \\lceil n _ { i } ^ { \\prime } - n _ { i } \\rceil \\bigg \\} } & { { } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 648, + 231, + 677, + 231, + 677, + 259, + 648, + 259 + ], + "score": 0.84, + "latex": "\\bar { n } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 670, + 1115, + 703, + 1115, + 703, + 1143, + 670, + 1143 + ], + "score": 0.84, + "latex": "n _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 397, + 262, + 428, + 262, + 428, + 290, + 397, + 290 + ], + "score": 0.83, + "latex": "\\bar { n } ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 829, + 1113, + 846, + 1113, + 846, + 1139, + 829, + 1139 + ], + "score": 0.83, + "latex": "d" + }, + { + "category_id": 13, + "poly": [ + 600, + 924, + 617, + 924, + 617, + 950, + 600, + 950 + ], + "score": 0.82, + "latex": "d" + }, + { + "category_id": 14, + "poly": [ + 668, + 430, + 1127, + 430, + 1127, + 528, + 668, + 528 + ], + "score": 0.81, + "latex": "\\sum _ { j = 2 } ^ { i } n ^ { \\prime ( j ) } \\leq \\sum _ { j = 2 } ^ { i } n ^ { ( j ) } + d \\quad { \\mathrm { ~ f o r ~ a l l ~ } } i > 2 ." + }, + { + "category_id": 13, + "poly": [ + 614, + 895, + 634, + 895, + 634, + 919, + 614, + 919 + ], + "score": 0.81, + "latex": "\\bar { n }" + }, + { + "category_id": 13, + "poly": [ + 1107, + 1693, + 1127, + 1693, + 1127, + 1717, + 1107, + 1717 + ], + "score": 0.81, + "latex": "\\bar { n }" + }, + { + "category_id": 13, + "poly": [ + 428, + 1115, + 447, + 1115, + 447, + 1139, + 428, + 1139 + ], + "score": 0.81, + "latex": "\\bar { n }" + }, + { + "category_id": 13, + "poly": [ + 529, + 926, + 549, + 926, + 549, + 950, + 529, + 950 + ], + "score": 0.8, + "latex": "\\bar { n }" + }, + { + "category_id": 13, + "poly": [ + 544, + 1088, + 563, + 1088, + 563, + 1109, + 544, + 1109 + ], + "score": 0.8, + "latex": "u" + }, + { + "category_id": 13, + "poly": [ + 1318, + 1972, + 1331, + 1972, + 1331, + 1996, + 1318, + 1996 + ], + "score": 0.79, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 983, + 1332, + 1002, + 1332, + 1002, + 1358, + 983, + 1358 + ], + "score": 0.79, + "latex": "d" + }, + { + "category_id": 13, + "poly": [ + 1272, + 304, + 1289, + 304, + 1289, + 330, + 1272, + 330 + ], + "score": 0.79, + "latex": "d" + }, + { + "category_id": 13, + "poly": [ + 1278, + 1363, + 1291, + 1363, + 1291, + 1388, + 1278, + 1388 + ], + "score": 0.79, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 522, + 1117, + 542, + 1117, + 542, + 1139, + 522, + 1139 + ], + "score": 0.79, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 781, + 1088, + 800, + 1088, + 800, + 1109, + 781, + 1109 + ], + "score": 0.78, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 715, + 1722, + 728, + 1722, + 728, + 1747, + 715, + 1747 + ], + "score": 0.75, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 832, + 232, + 853, + 232, + 853, + 259, + 832, + 259 + ], + "score": 0.75, + "latex": "d" + }, + { + "category_id": 13, + "poly": [ + 1072, + 1334, + 1091, + 1334, + 1091, + 1358, + 1072, + 1358 + ], + "score": 0.73, + "latex": "\\bar { n }" + }, + { + "category_id": 13, + "poly": [ + 933, + 234, + 953, + 234, + 953, + 258, + 933, + 258 + ], + "score": 0.73, + "latex": "\\bar { n }" + }, + { + "category_id": 13, + "poly": [ + 717, + 385, + 907, + 385, + 907, + 423, + 717, + 423 + ], + "score": 0.51, + "latex": "n ^ { \\prime ( 1 ) } \\geq n ^ { ( 1 ) } - d" + }, + { + "category_id": 13, + "poly": [ + 462, + 1766, + 488, + 1766, + 488, + 1794, + 462, + 1794 + ], + "score": 0.31, + "latex": "\\mathbf { I I }" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 72.0, + 818.0, + 72.0, + 818.0, + 109.0, + 296.0, + 109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 830.0, + 2084.0, + 870.0, + 2084.0, + 870.0, + 2122.0, + 830.0, + 2122.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 358.0, + 218.0, + 647.0, + 218.0, + 647.0, + 273.0, + 358.0, + 273.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 678.0, + 218.0, + 831.0, + 218.0, + 831.0, + 273.0, + 678.0, + 273.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 854.0, + 218.0, + 932.0, + 218.0, + 932.0, + 273.0, + 854.0, + 273.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 954.0, + 218.0, + 1325.0, + 218.0, + 1325.0, + 273.0, + 954.0, + 273.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1403.0, + 218.0, + 1408.0, + 218.0, + 1408.0, + 273.0, + 1403.0, + 273.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 391.0, + 257.0, + 396.0, + 257.0, + 396.0, + 297.0, + 391.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 429.0, + 257.0, + 895.0, + 257.0, + 895.0, + 297.0, + 429.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 964.0, + 257.0, + 1267.0, + 257.0, + 1267.0, + 297.0, + 964.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 388.0, + 288.0, + 456.0, + 288.0, + 456.0, + 354.0, + 388.0, + 354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 940.0, + 288.0, + 1271.0, + 288.0, + 1271.0, + 354.0, + 940.0, + 354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1290.0, + 288.0, + 1412.0, + 288.0, + 1412.0, + 354.0, + 1290.0, + 354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 339.0, + 595.0, + 339.0, + 595.0, + 377.0, + 392.0, + 377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1326.0, + 493.0, + 1326.0, + 493.0, + 1365.0, + 392.0, + 1365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 592.0, + 1326.0, + 817.0, + 1326.0, + 817.0, + 1365.0, + 592.0, + 1365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 847.0, + 1326.0, + 982.0, + 1326.0, + 982.0, + 1365.0, + 847.0, + 1365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1003.0, + 1326.0, + 1071.0, + 1326.0, + 1071.0, + 1365.0, + 1003.0, + 1365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1092.0, + 1326.0, + 1407.0, + 1326.0, + 1407.0, + 1365.0, + 1092.0, + 1365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1356.0, + 397.0, + 1356.0, + 397.0, + 1396.0, + 393.0, + 1396.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 606.0, + 1356.0, + 715.0, + 1356.0, + 715.0, + 1396.0, + 606.0, + 1396.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 829.0, + 1356.0, + 1277.0, + 1356.0, + 1277.0, + 1396.0, + 829.0, + 1396.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1292.0, + 1356.0, + 1407.0, + 1356.0, + 1407.0, + 1396.0, + 1292.0, + 1396.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1388.0, + 397.0, + 1388.0, + 397.0, + 1427.0, + 394.0, + 1427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 598.0, + 1388.0, + 610.0, + 1388.0, + 610.0, + 1427.0, + 598.0, + 1427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 391.0, + 1958.0, + 874.0, + 1958.0, + 874.0, + 2006.0, + 391.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1005.0, + 1958.0, + 1057.0, + 1958.0, + 1057.0, + 2006.0, + 1005.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1231.0, + 1958.0, + 1317.0, + 1958.0, + 1317.0, + 2006.0, + 1231.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1332.0, + 1958.0, + 1409.0, + 1958.0, + 1409.0, + 2006.0, + 1332.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 389.0, + 1994.0, + 588.0, + 1994.0, + 588.0, + 2039.0, + 389.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 795.0, + 1994.0, + 959.0, + 1994.0, + 959.0, + 2039.0, + 795.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1400.0, + 1994.0, + 1407.0, + 1994.0, + 1407.0, + 2039.0, + 1400.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 1079.0, + 543.0, + 1079.0, + 543.0, + 1115.0, + 396.0, + 1115.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 564.0, + 1079.0, + 780.0, + 1079.0, + 780.0, + 1115.0, + 564.0, + 1115.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 801.0, + 1079.0, + 1404.0, + 1079.0, + 1404.0, + 1115.0, + 801.0, + 1115.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1110.0, + 427.0, + 1110.0, + 427.0, + 1144.0, + 393.0, + 1144.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 448.0, + 1110.0, + 521.0, + 1110.0, + 521.0, + 1144.0, + 448.0, + 1144.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 543.0, + 1110.0, + 669.0, + 1110.0, + 669.0, + 1144.0, + 543.0, + 1144.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 704.0, + 1110.0, + 828.0, + 1110.0, + 828.0, + 1144.0, + 704.0, + 1144.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 847.0, + 1110.0, + 857.0, + 1110.0, + 857.0, + 1144.0, + 847.0, + 1144.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1684.0, + 1106.0, + 1684.0, + 1106.0, + 1725.0, + 393.0, + 1725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1128.0, + 1684.0, + 1180.0, + 1684.0, + 1180.0, + 1725.0, + 1128.0, + 1725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1225.0, + 1684.0, + 1406.0, + 1684.0, + 1406.0, + 1725.0, + 1225.0, + 1725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 1720.0, + 714.0, + 1720.0, + 714.0, + 1752.0, + 396.0, + 1752.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 729.0, + 1720.0, + 739.0, + 1720.0, + 739.0, + 1752.0, + 729.0, + 1752.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 887.0, + 613.0, + 887.0, + 613.0, + 928.0, + 356.0, + 928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 635.0, + 887.0, + 1406.0, + 887.0, + 1406.0, + 928.0, + 635.0, + 928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 922.0, + 528.0, + 922.0, + 528.0, + 955.0, + 393.0, + 955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 550.0, + 922.0, + 599.0, + 922.0, + 599.0, + 955.0, + 550.0, + 955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 618.0, + 922.0, + 630.0, + 922.0, + 630.0, + 955.0, + 618.0, + 955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 804.0, + 652.0, + 804.0, + 652.0, + 847.0, + 394.0, + 847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 758.0, + 804.0, + 1219.0, + 804.0, + 1219.0, + 847.0, + 758.0, + 847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 804.0, + 1404.0, + 804.0, + 1404.0, + 847.0, + 1394.0, + 847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 837.0, + 722.0, + 837.0, + 722.0, + 875.0, + 393.0, + 875.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 872.0, + 837.0, + 1100.0, + 837.0, + 1100.0, + 875.0, + 872.0, + 875.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 389.0, + 1756.0, + 461.0, + 1756.0, + 461.0, + 1803.0, + 389.0, + 1803.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 489.0, + 1756.0, + 528.0, + 1756.0, + 528.0, + 1803.0, + 489.0, + 1803.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 661.0, + 1756.0, + 714.0, + 1756.0, + 714.0, + 1803.0, + 661.0, + 1803.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 830.0, + 1756.0, + 1099.0, + 1756.0, + 1099.0, + 1803.0, + 830.0, + 1803.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1309.0, + 1756.0, + 1408.0, + 1756.0, + 1408.0, + 1803.0, + 1309.0, + 1803.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1793.0, + 606.0, + 1793.0, + 606.0, + 1833.0, + 393.0, + 1833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1157.0, + 911.0, + 1157.0, + 911.0, + 1193.0, + 395.0, + 1193.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 955.0, + 1157.0, + 968.0, + 1157.0, + 968.0, + 1193.0, + 955.0, + 1193.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 537.0, + 813.0, + 537.0, + 813.0, + 574.0, + 395.0, + 574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 842.0, + 537.0, + 972.0, + 537.0, + 972.0, + 574.0, + 842.0, + 574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1431.0, + 631.0, + 1431.0, + 631.0, + 1484.0, + 392.0, + 1484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 881.0, + 1431.0, + 1228.0, + 1431.0, + 1228.0, + 1484.0, + 881.0, + 1484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1486.0, + 510.0, + 1486.0, + 510.0, + 1529.0, + 395.0, + 1529.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 634.0, + 1486.0, + 988.0, + 1486.0, + 988.0, + 1529.0, + 634.0, + 1529.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 27, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1910, + 1404, + 1910, + 1404, + 2035, + 297, + 2035 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 298, + 1328, + 1405, + 1328, + 1405, + 1461, + 298, + 1461 + ], + "score": 0.964 + }, + { + "category_id": 1, + "poly": [ + 297, + 1475, + 1406, + 1475, + 1406, + 1574, + 297, + 1574 + ], + "score": 0.956 + }, + { + "category_id": 1, + "poly": [ + 299, + 1639, + 1406, + 1639, + 1406, + 1737, + 299, + 1737 + ], + "score": 0.953 + }, + { + "category_id": 8, + "poly": [ + 519, + 333, + 1123, + 333, + 1123, + 609, + 519, + 609 + ], + "score": 0.945 + }, + { + "category_id": 1, + "poly": [ + 296, + 961, + 1403, + 961, + 1403, + 1026, + 296, + 1026 + ], + "score": 0.933 + }, + { + "category_id": 1, + "poly": [ + 391, + 226, + 1400, + 226, + 1400, + 295, + 391, + 295 + ], + "score": 0.93 + }, + { + "category_id": 1, + "poly": [ + 362, + 1158, + 1403, + 1158, + 1403, + 1226, + 362, + 1226 + ], + "score": 0.929 + }, + { + "category_id": 1, + "poly": [ + 395, + 643, + 1032, + 643, + 1032, + 679, + 395, + 679 + ], + "score": 0.923 + }, + { + "category_id": 1, + "poly": [ + 298, + 910, + 960, + 910, + 960, + 944, + 298, + 944 + ], + "score": 0.918 + }, + { + "category_id": 1, + "poly": [ + 291, + 1748, + 1329, + 1748, + 1329, + 1783, + 291, + 1783 + ], + "score": 0.917 + }, + { + "category_id": 2, + "poly": [ + 298, + 74, + 816, + 74, + 816, + 106, + 298, + 106 + ], + "score": 0.909 + }, + { + "category_id": 1, + "poly": [ + 300, + 1587, + 1165, + 1587, + 1165, + 1625, + 300, + 1625 + ], + "score": 0.905 + }, + { + "category_id": 0, + "poly": [ + 296, + 1841, + 855, + 1841, + 855, + 1876, + 296, + 1876 + ], + "score": 0.897 + }, + { + "category_id": 2, + "poly": [ + 834, + 2087, + 865, + 2087, + 865, + 2113, + 834, + 2113 + ], + "score": 0.859 + }, + { + "category_id": 9, + "poly": [ + 1298, + 360, + 1401, + 360, + 1401, + 395, + 1298, + 395 + ], + "score": 0.857 + }, + { + "category_id": 9, + "poly": [ + 1206, + 461, + 1403, + 461, + 1403, + 498, + 1206, + 498 + ], + "score": 0.825 + }, + { + "category_id": 1, + "poly": [ + 362, + 1062, + 952, + 1062, + 952, + 1104, + 362, + 1104 + ], + "score": 0.801 + }, + { + "category_id": 2, + "poly": [ + 1379, + 770, + 1406, + 770, + 1406, + 806, + 1379, + 806 + ], + "score": 0.745 + }, + { + "category_id": 2, + "poly": [ + 1382, + 1751, + 1403, + 1751, + 1403, + 1781, + 1382, + 1781 + ], + "score": 0.164 + }, + { + "category_id": 8, + "poly": [ + 362, + 1062, + 952, + 1062, + 952, + 1104, + 362, + 1104 + ], + "score": 0.129 + }, + { + "category_id": 14, + "poly": [ + 518, + 331, + 1122, + 331, + 1122, + 614, + 518, + 614 + ], + "score": 0.95, + "latex": "\\begin{array} { l } { { S _ { i } ( \\bar { n } ^ { * * } ) - S _ { i } ( \\bar { n } ^ { \\prime } ) \\geq \\displaystyle \\sum _ { j = 2 } ^ { i } ( n _ { 1 } ^ { * * } - n _ { j } ^ { * * } ) - \\displaystyle \\sum _ { j = 2 } ^ { i } ( n _ { 1 } ^ { \\prime } - n _ { j } ^ { \\prime } ) } } \\\\ { { \\mathrm { ~ } = \\displaystyle \\sum _ { j = 2 } ^ { i } ( ( n _ { j } - n _ { j } ^ { * * } ) + ( n _ { j } ^ { \\prime } - n _ { j } ) ) } } \\\\ { { \\mathrm { ~ } \\geq d - d ( \\bar { n } , \\bar { n } ^ { \\prime } ) } } \\\\ { { \\mathrm { ~ } \\geq 0 , } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 934, + 1398, + 1092, + 1398, + 1092, + 1432, + 934, + 1432 + ], + "score": 0.93, + "latex": "d ( \\bar { n } , \\bar { n } ^ { \\prime } ) = d" + }, + { + "category_id": 13, + "poly": [ + 323, + 1637, + 492, + 1637, + 492, + 1676, + 323, + 1676 + ], + "score": 0.92, + "latex": "q _ { 0 } < \\tilde { \\mathrm { L S } } ( q ( \\bar { n } ) )" + }, + { + "category_id": 13, + "poly": [ + 823, + 645, + 1022, + 645, + 1022, + 679, + 823, + 679 + ], + "score": 0.92, + "latex": "S _ { i } ( { \\bar { n } } ^ { * * } ) < S _ { i } ( { \\bar { n } } ^ { \\prime } )" + }, + { + "category_id": 13, + "poly": [ + 1060, + 1363, + 1128, + 1363, + 1128, + 1396, + 1060, + 1396 + ], + "score": 0.92, + "latex": "[ q _ { 0 } , 1 ]" + }, + { + "category_id": 13, + "poly": [ + 717, + 1364, + 796, + 1364, + 796, + 1396, + 717, + 1396 + ], + "score": 0.92, + "latex": "[ q _ { 1 } , q _ { 0 } ]" + }, + { + "category_id": 13, + "poly": [ + 425, + 1191, + 515, + 1191, + 515, + 1225, + 425, + 1225 + ], + "score": 0.92, + "latex": "\\beta \\left( q ( \\cdot ) \\right)" + }, + { + "category_id": 13, + "poly": [ + 323, + 1585, + 555, + 1585, + 555, + 1626, + 323, + 1626 + ], + "score": 0.92, + "latex": "q _ { 1 } \\leq \\tilde { \\mathrm { L S } } ( q ( \\bar { n } ) ) \\leq q _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 624, + 1332, + 775, + 1332, + 775, + 1365, + 624, + 1365 + ], + "score": 0.92, + "latex": "q _ { 1 } = \\mathrm { B _ { L } } ( q _ { 0 } )" + }, + { + "category_id": 13, + "poly": [ + 658, + 1160, + 744, + 1160, + 744, + 1195, + 658, + 1195 + ], + "score": 0.91, + "latex": "\\mathrm { S S } _ { \\beta } ( \\bar { n } )" + }, + { + "category_id": 13, + "poly": [ + 497, + 227, + 743, + 227, + 743, + 261, + 497, + 261 + ], + "score": 0.91, + "latex": "n ^ { * * ( i ) } - n ^ { * * ( i + 1 ) } \\geq 2" + }, + { + "category_id": 13, + "poly": [ + 1266, + 262, + 1318, + 262, + 1318, + 295, + 1266, + 295 + ], + "score": 0.91, + "latex": "[ 1 , i ]" + }, + { + "category_id": 13, + "poly": [ + 323, + 1474, + 491, + 1474, + 491, + 1513, + 323, + 1513 + ], + "score": 0.9, + "latex": "\\tilde { \\mathrm { L S } } ( q ( \\bar { n } ) ) < q _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 505, + 1362, + 573, + 1362, + 573, + 1397, + 505, + 1397 + ], + "score": 0.9, + "latex": "[ 0 , q _ { 1 } ]" + }, + { + "category_id": 13, + "poly": [ + 1302, + 1327, + 1373, + 1327, + 1373, + 1366, + 1302, + 1366 + ], + "score": 0.89, + "latex": "\\tilde { \\mathrm { L S } } ( q )" + }, + { + "category_id": 13, + "poly": [ + 609, + 963, + 655, + 963, + 655, + 997, + 609, + 997 + ], + "score": 0.89, + "latex": "q ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 501, + 1397, + 617, + 1397, + 617, + 1432, + 501, + 1432 + ], + "score": 0.89, + "latex": "\\tilde { \\mathrm { L S } } ( q ( \\bar { n } ^ { \\prime } ) )" + }, + { + "category_id": 13, + "poly": [ + 714, + 1586, + 822, + 1586, + 822, + 1625, + 714, + 1625 + ], + "score": 0.89, + "latex": "\\tilde { \\mathrm { L S } } ( q ( n ) )" + }, + { + "category_id": 13, + "poly": [ + 891, + 262, + 934, + 262, + 934, + 290, + 891, + 290 + ], + "score": 0.89, + "latex": "\\bar { n } ^ { * * }" + }, + { + "category_id": 13, + "poly": [ + 981, + 1511, + 1013, + 1511, + 1013, + 1538, + 981, + 1538 + ], + "score": 0.86, + "latex": "\\bar { n } ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 1070, + 1637, + 1135, + 1637, + 1135, + 1676, + 1070, + 1676 + ], + "score": 0.84, + "latex": "\\mathrm { \\tilde { L S } ( \\cdot ) }" + }, + { + "category_id": 13, + "poly": [ + 888, + 1162, + 909, + 1162, + 909, + 1193, + 888, + 1193 + ], + "score": 0.84, + "latex": "\\beta" + }, + { + "category_id": 13, + "poly": [ + 1347, + 1709, + 1374, + 1709, + 1374, + 1736, + 1347, + 1736 + ], + "score": 0.82, + "latex": "q _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 820, + 265, + 841, + 265, + 841, + 289, + 820, + 289 + ], + "score": 0.82, + "latex": "\\bar { n }" + }, + { + "category_id": 13, + "poly": [ + 328, + 1516, + 344, + 1516, + 344, + 1542, + 328, + 1542 + ], + "score": 0.8, + "latex": "q" + }, + { + "category_id": 13, + "poly": [ + 1201, + 1515, + 1219, + 1515, + 1219, + 1542, + 1201, + 1542 + ], + "score": 0.8, + "latex": "q" + }, + { + "category_id": 13, + "poly": [ + 644, + 1678, + 660, + 1678, + 660, + 1705, + 644, + 1705 + ], + "score": 0.79, + "latex": "q" + }, + { + "category_id": 13, + "poly": [ + 1346, + 1511, + 1364, + 1511, + 1364, + 1537, + 1346, + 1537 + ], + "score": 0.78, + "latex": "d" + }, + { + "category_id": 13, + "poly": [ + 1080, + 1709, + 1097, + 1709, + 1097, + 1735, + 1080, + 1735 + ], + "score": 0.73, + "latex": "q" + }, + { + "category_id": 13, + "poly": [ + 736, + 1475, + 800, + 1475, + 800, + 1513, + 736, + 1513 + ], + "score": 0.71, + "latex": "\\mathrm { \\tilde { L S } ( \\cdot ) }" + }, + { + "category_id": 13, + "poly": [ + 774, + 1942, + 819, + 1942, + 819, + 1976, + 774, + 1976 + ], + "score": 0.7, + "latex": "q ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 912, + 1942, + 978, + 1942, + 978, + 1976, + 912, + 1976 + ], + "score": 0.64, + "latex": "\\mathrm { B _ { L } } ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 646, + 1061, + 949, + 1061, + 949, + 1103, + 646, + 1103 + ], + "score": 0.64, + "latex": "\\begin{array} { r } { \\operatorname* { m a x } _ { \\bar { n } ^ { \\prime } : \\mathrm { d i s t } ( \\bar { n } , \\bar { n } ^ { \\prime } ) \\leq d } \\tilde { \\mathrm { L S } } ( \\bar { n } ^ { \\prime } ) . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1020, + 967, + 1041, + 967, + 1041, + 991, + 1020, + 991 + ], + "score": 0.52, + "latex": "\\bar { n }" + }, + { + "category_id": 13, + "poly": [ + 883, + 964, + 966, + 964, + 966, + 993, + 883, + 993 + ], + "score": 0.49, + "latex": "C l { - } C 8" + }, + { + "category_id": 13, + "poly": [ + 1206, + 461, + 1401, + 461, + 1401, + 497, + 1206, + 497 + ], + "score": 0.31, + "latex": "( { \\mathrm { s i n c e ~ } } n _ { 1 } ^ { * * } = n _ { 1 } ^ { \\prime } )" + }, + { + "category_id": 13, + "poly": [ + 883, + 965, + 917, + 965, + 917, + 992, + 883, + 992 + ], + "score": 0.31, + "latex": "C I" + }, + { + "category_id": 13, + "poly": [ + 777, + 1942, + 977, + 1942, + 977, + 1976, + 777, + 1976 + ], + "score": 0.3, + "latex": "q ( \\cdot ) , \\mathrm { B _ { U } ( \\cdot ) , B _ { L } ( \\cdot ) }" + }, + { + "category_id": 13, + "poly": [ + 648, + 1071, + 723, + 1071, + 723, + 1100, + 648, + 1100 + ], + "score": 0.26, + "latex": "\\mathrm { m a x } _ { \\bar { n } ^ { \\prime } }" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 72.0, + 818.0, + 72.0, + 818.0, + 109.0, + 296.0, + 109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1842.0, + 854.0, + 1842.0, + 854.0, + 1879.0, + 295.0, + 1879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 830.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2123.0, + 830.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1385.0, + 777.0, + 1403.0, + 777.0, + 1403.0, + 806.0, + 1385.0, + 806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1382.0, + 1752.0, + 1406.0, + 1752.0, + 1406.0, + 1788.0, + 1382.0, + 1788.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1910.0, + 1406.0, + 1910.0, + 1406.0, + 1947.0, + 295.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1941.0, + 773.0, + 1941.0, + 773.0, + 1978.0, + 292.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 979.0, + 1941.0, + 1406.0, + 1941.0, + 1406.0, + 1978.0, + 979.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1974.0, + 1404.0, + 1974.0, + 1404.0, + 2006.0, + 296.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2003.0, + 908.0, + 2003.0, + 908.0, + 2036.0, + 295.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1330.0, + 623.0, + 1330.0, + 623.0, + 1368.0, + 295.0, + 1368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 776.0, + 1330.0, + 1301.0, + 1330.0, + 1301.0, + 1368.0, + 776.0, + 1368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1374.0, + 1330.0, + 1406.0, + 1330.0, + 1406.0, + 1368.0, + 1374.0, + 1368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1362.0, + 504.0, + 1362.0, + 504.0, + 1399.0, + 293.0, + 1399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 574.0, + 1362.0, + 716.0, + 1362.0, + 716.0, + 1399.0, + 574.0, + 1399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 797.0, + 1362.0, + 1059.0, + 1362.0, + 1059.0, + 1399.0, + 797.0, + 1399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1129.0, + 1362.0, + 1406.0, + 1362.0, + 1406.0, + 1399.0, + 1129.0, + 1399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1397.0, + 500.0, + 1397.0, + 500.0, + 1435.0, + 293.0, + 1435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 618.0, + 1397.0, + 933.0, + 1397.0, + 933.0, + 1435.0, + 618.0, + 1435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1093.0, + 1397.0, + 1405.0, + 1397.0, + 1405.0, + 1435.0, + 1093.0, + 1435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1426.0, + 485.0, + 1426.0, + 485.0, + 1465.0, + 294.0, + 1465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1475.0, + 322.0, + 1475.0, + 322.0, + 1516.0, + 292.0, + 1516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 492.0, + 1475.0, + 735.0, + 1475.0, + 735.0, + 1516.0, + 492.0, + 1516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 801.0, + 1475.0, + 1406.0, + 1475.0, + 1406.0, + 1516.0, + 801.0, + 1516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1510.0, + 327.0, + 1510.0, + 327.0, + 1544.0, + 295.0, + 1544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 345.0, + 1510.0, + 980.0, + 1510.0, + 980.0, + 1544.0, + 345.0, + 1544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1014.0, + 1510.0, + 1200.0, + 1510.0, + 1200.0, + 1544.0, + 1014.0, + 1544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1220.0, + 1510.0, + 1345.0, + 1510.0, + 1345.0, + 1544.0, + 1220.0, + 1544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1365.0, + 1510.0, + 1404.0, + 1510.0, + 1404.0, + 1544.0, + 1365.0, + 1544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1541.0, + 1344.0, + 1541.0, + 1344.0, + 1575.0, + 295.0, + 1575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1640.0, + 322.0, + 1640.0, + 322.0, + 1678.0, + 293.0, + 1678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 493.0, + 1640.0, + 1069.0, + 1640.0, + 1069.0, + 1678.0, + 493.0, + 1678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1136.0, + 1640.0, + 1404.0, + 1640.0, + 1404.0, + 1678.0, + 1136.0, + 1678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1673.0, + 643.0, + 1673.0, + 643.0, + 1708.0, + 293.0, + 1708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 661.0, + 1673.0, + 1403.0, + 1673.0, + 1403.0, + 1708.0, + 661.0, + 1708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1700.0, + 1079.0, + 1700.0, + 1079.0, + 1742.0, + 293.0, + 1742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1098.0, + 1700.0, + 1346.0, + 1700.0, + 1346.0, + 1742.0, + 1098.0, + 1742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1375.0, + 1700.0, + 1386.0, + 1700.0, + 1386.0, + 1742.0, + 1375.0, + 1742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 960.0, + 608.0, + 960.0, + 608.0, + 999.0, + 295.0, + 999.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 656.0, + 960.0, + 882.0, + 960.0, + 882.0, + 999.0, + 656.0, + 999.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 967.0, + 960.0, + 1019.0, + 960.0, + 1019.0, + 999.0, + 967.0, + 999.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1042.0, + 960.0, + 1401.0, + 960.0, + 1401.0, + 999.0, + 1042.0, + 999.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 992.0, + 740.0, + 992.0, + 740.0, + 1028.0, + 296.0, + 1028.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 391.0, + 220.0, + 496.0, + 220.0, + 496.0, + 268.0, + 391.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 744.0, + 220.0, + 1405.0, + 220.0, + 1405.0, + 268.0, + 744.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 391.0, + 255.0, + 819.0, + 255.0, + 819.0, + 299.0, + 391.0, + 299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 842.0, + 255.0, + 890.0, + 255.0, + 890.0, + 299.0, + 842.0, + 299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 935.0, + 255.0, + 1265.0, + 255.0, + 1265.0, + 299.0, + 935.0, + 299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1319.0, + 255.0, + 1405.0, + 255.0, + 1405.0, + 299.0, + 1319.0, + 299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 357.0, + 1154.0, + 657.0, + 1154.0, + 657.0, + 1197.0, + 357.0, + 1197.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 745.0, + 1154.0, + 887.0, + 1154.0, + 887.0, + 1197.0, + 745.0, + 1197.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 910.0, + 1154.0, + 1404.0, + 1154.0, + 1404.0, + 1197.0, + 910.0, + 1197.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1187.0, + 424.0, + 1187.0, + 424.0, + 1229.0, + 393.0, + 1229.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 516.0, + 1187.0, + 527.0, + 1187.0, + 527.0, + 1229.0, + 516.0, + 1229.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 642.0, + 822.0, + 642.0, + 822.0, + 682.0, + 395.0, + 682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1023.0, + 642.0, + 1031.0, + 642.0, + 1031.0, + 682.0, + 1023.0, + 682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 910.0, + 961.0, + 910.0, + 961.0, + 947.0, + 298.0, + 947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1748.0, + 1329.0, + 1748.0, + 1329.0, + 1786.0, + 294.0, + 1786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1582.0, + 322.0, + 1582.0, + 322.0, + 1632.0, + 291.0, + 1632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 556.0, + 1582.0, + 713.0, + 1582.0, + 713.0, + 1632.0, + 556.0, + 1632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 823.0, + 1582.0, + 1166.0, + 1582.0, + 1166.0, + 1632.0, + 823.0, + 1632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 358.0, + 1060.0, + 645.0, + 1060.0, + 645.0, + 1108.0, + 358.0, + 1108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 950.0, + 1060.0, + 957.0, + 1060.0, + 957.0, + 1108.0, + 950.0, + 1108.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 28, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 8, + "poly": [ + 513, + 993, + 1182, + 993, + 1182, + 1148, + 513, + 1148 + ], + "score": 0.969 + }, + { + "category_id": 8, + "poly": [ + 475, + 1861, + 1223, + 1861, + 1223, + 2030, + 475, + 2030 + ], + "score": 0.968 + }, + { + "category_id": 8, + "poly": [ + 562, + 359, + 1132, + 359, + 1132, + 688, + 562, + 688 + ], + "score": 0.965 + }, + { + "category_id": 8, + "poly": [ + 450, + 1689, + 1248, + 1689, + 1248, + 1773, + 450, + 1773 + ], + "score": 0.952 + }, + { + "category_id": 8, + "poly": [ + 534, + 1474, + 1160, + 1474, + 1160, + 1560, + 534, + 1560 + ], + "score": 0.952 + }, + { + "category_id": 1, + "poly": [ + 297, + 1289, + 1400, + 1289, + 1400, + 1356, + 297, + 1356 + ], + "score": 0.951 + }, + { + "category_id": 1, + "poly": [ + 297, + 1612, + 1400, + 1612, + 1400, + 1677, + 297, + 1677 + ], + "score": 0.949 + }, + { + "category_id": 1, + "poly": [ + 297, + 1785, + 1401, + 1785, + 1401, + 1850, + 297, + 1850 + ], + "score": 0.949 + }, + { + "category_id": 1, + "poly": [ + 294, + 699, + 1403, + 699, + 1403, + 763, + 294, + 763 + ], + "score": 0.949 + }, + { + "category_id": 8, + "poly": [ + 575, + 1367, + 1120, + 1367, + 1120, + 1445, + 575, + 1445 + ], + "score": 0.948 + }, + { + "category_id": 1, + "poly": [ + 297, + 916, + 1403, + 916, + 1403, + 982, + 297, + 982 + ], + "score": 0.947 + }, + { + "category_id": 1, + "poly": [ + 293, + 280, + 1404, + 280, + 1404, + 347, + 293, + 347 + ], + "score": 0.945 + }, + { + "category_id": 8, + "poly": [ + 666, + 1217, + 1032, + 1217, + 1032, + 1260, + 666, + 1260 + ], + "score": 0.941 + }, + { + "category_id": 1, + "poly": [ + 292, + 776, + 1401, + 776, + 1401, + 840, + 292, + 840 + ], + "score": 0.937 + }, + { + "category_id": 1, + "poly": [ + 295, + 1566, + 1043, + 1566, + 1043, + 1600, + 295, + 1600 + ], + "score": 0.932 + }, + { + "category_id": 1, + "poly": [ + 292, + 853, + 1280, + 853, + 1280, + 888, + 292, + 888 + ], + "score": 0.925 + }, + { + "category_id": 2, + "poly": [ + 298, + 73, + 816, + 73, + 816, + 106, + 298, + 106 + ], + "score": 0.917 + }, + { + "category_id": 1, + "poly": [ + 297, + 1454, + 358, + 1454, + 358, + 1485, + 297, + 1485 + ], + "score": 0.916 + }, + { + "category_id": 1, + "poly": [ + 296, + 1158, + 1399, + 1158, + 1399, + 1219, + 296, + 1219 + ], + "score": 0.909 + }, + { + "category_id": 2, + "poly": [ + 835, + 2087, + 866, + 2087, + 866, + 2113, + 835, + 2113 + ], + "score": 0.867 + }, + { + "category_id": 0, + "poly": [ + 299, + 228, + 792, + 228, + 792, + 262, + 299, + 262 + ], + "score": 0.846 + }, + { + "category_id": 14, + "poly": [ + 560, + 356, + 1136, + 356, + 1136, + 692, + 560, + 692 + ], + "score": 0.95, + "latex": "\\begin{array} { r l } & { q ( \\bar { n } ) \\triangleq \\operatorname* { m i n } \\left\\{ \\underset { i \\neq i ^ { * } } { \\sum } \\mathbf { P r } ( Z _ { i } - Z _ { i ^ { * } } \\geq n _ { i ^ { * } } - n _ { i } ) , 1 \\right\\} } \\\\ & { \\quad = \\operatorname* { m i n } \\left\\{ \\underset { i \\neq i ^ { * } } { \\sum } \\frac { 1 } { 2 } \\left( 1 - \\mathrm { e r f } \\left( \\frac { n _ { i ^ { * } } - n _ { i } } { 2 \\sigma } \\right) \\right) , 1 \\right\\} } \\\\ & { \\quad = \\operatorname* { m i n } \\left\\{ \\underset { i \\neq i ^ { * } } { \\sum } \\frac { 1 } { 2 } \\mathrm { e r f c } \\left( \\frac { n _ { i ^ { * } } - n _ { i } } { 2 \\sigma } \\right) , 1 \\right\\} , } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 514, + 992, + 1184, + 992, + 1184, + 1150, + 514, + 1150 + ], + "score": 0.94, + "latex": "\\begin{array} { l } { { \\displaystyle { \\mathrm { B } } _ { \\mathrm { U } } ( q ) \\triangleq \\operatorname* { m i n } \\left\\{ \\frac { m - 1 } { 2 } \\mathrm { e r f c } \\left( \\mathrm { e r f c } ^ { - 1 } \\left( \\frac { 2 q } { m - 1 } \\right) - \\frac { 1 } { \\sigma } \\right) , 1 \\right\\} , } } \\\\ { { \\displaystyle { \\mathrm { B } } _ { \\mathrm { L } } ( q ) \\triangleq \\frac { m - 1 } { 2 } \\mathrm { e r f c } \\left( \\mathrm { e r f c } ^ { - 1 } \\left( \\frac { 2 q } { m - 1 } \\right) + \\frac { 1 } { \\sigma } \\right) , } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 556, + 1323, + 701, + 1323, + 701, + 1356, + 556, + 1356 + ], + "score": 0.93, + "latex": "| x _ { i } - x _ { i } ^ { \\prime } | \\leq 2" + }, + { + "category_id": 13, + "poly": [ + 653, + 1614, + 714, + 1614, + 714, + 1648, + 653, + 1648 + ], + "score": 0.92, + "latex": "q ( \\bar { n } ^ { \\prime } )" + }, + { + "category_id": 13, + "poly": [ + 1008, + 1160, + 1151, + 1160, + 1151, + 1194, + 1008, + 1194 + ], + "score": 0.92, + "latex": "d ( \\bar { n } ^ { \\prime } , \\bar { n } ) = 1" + }, + { + "category_id": 14, + "poly": [ + 469, + 1859, + 1226, + 1859, + 1226, + 2034, + 469, + 2034 + ], + "score": 0.92, + "latex": "\\begin{array} { c } { \\displaystyle - \\exp \\left( - \\left( \\frac { x _ { i } - 2 } { 2 \\sigma } \\right) ^ { 2 } \\right) + \\lambda \\exp \\left( - \\left( \\frac { x _ { i } } { 2 \\sigma } \\right) ^ { 2 } \\right) = 0 } \\\\ { \\displaystyle \\Leftrightarrow \\lambda = \\exp \\left( \\frac { x _ { i } - 1 } { \\sigma ^ { 2 } } \\right) . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 942, + 1614, + 995, + 1614, + 995, + 1648, + 942, + 1648 + ], + "score": 0.92, + "latex": "q ( { \\bar { n } } )" + }, + { + "category_id": 13, + "poly": [ + 937, + 1290, + 1164, + 1290, + 1164, + 1326, + 937, + 1326 + ], + "score": 0.92, + "latex": "q _ { i } \\triangleq \\mathrm { e r f c } ( x _ { i } / 2 \\sigma ) / 2" + }, + { + "category_id": 13, + "poly": [ + 1222, + 283, + 1401, + 283, + 1401, + 322, + 1222, + 322 + ], + "score": 0.92, + "latex": "q \\colon \\mathbb { R } _ { \\geq 0 } ^ { m } [ 0 , 1 ]" + }, + { + "category_id": 13, + "poly": [ + 885, + 701, + 988, + 701, + 988, + 731, + 885, + 731 + ], + "score": 0.92, + "latex": "n _ { i ^ { * } } \\geq n _ { i }" + }, + { + "category_id": 13, + "poly": [ + 658, + 777, + 712, + 777, + 712, + 810, + 658, + 810 + ], + "score": 0.92, + "latex": "q ( { \\bar { n } } )" + }, + { + "category_id": 14, + "poly": [ + 535, + 1475, + 1164, + 1475, + 1164, + 1562, + 535, + 1562 + ], + "score": 0.91, + "latex": "\\frac { 1 } { 2 } \\sum _ { i > 1 } \\mathrm { e r f c } \\left( \\frac { x _ { i } + 2 } { 2 \\sigma } \\right) \\leq q ( \\bar { n } ^ { \\prime } ) \\leq \\frac { 1 } { 2 } \\sum _ { i > 1 } \\mathrm { e r f c } \\left( \\frac { x _ { i } - 2 } { 2 \\sigma } \\right) ." + }, + { + "category_id": 14, + "poly": [ + 574, + 1366, + 1121, + 1366, + 1121, + 1444, + 574, + 1444 + ], + "score": 0.91, + "latex": "{ \\frac { 1 } { 2 } } \\operatorname { e r f c } \\left( { \\frac { x _ { i } + 2 } { 2 \\sigma } } \\right) \\leq q _ { i } ( { \\bar { n } } ^ { \\prime } ) \\leq { \\frac { 1 } { 2 } } \\operatorname { e r f c } \\left( { \\frac { x _ { i } - 2 } { 2 \\sigma } } \\right) ." + }, + { + "category_id": 14, + "poly": [ + 449, + 1688, + 1248, + 1688, + 1248, + 1776, + 449, + 1776 + ], + "score": 0.9, + "latex": "\\operatorname* { m a x } _ { \\{ x _ { i } \\} } { \\frac { 1 } { 2 } } \\sum _ { i > 1 } { \\mathrm { e r f c } } \\left( { \\frac { x _ { i } - 2 } { 2 \\sigma } } \\right) { \\mathrm { ~ s u c h ~ t h a t ~ } } { \\frac { 1 } { 2 } } \\sum _ { i > 1 } { \\mathrm { e r f c } } \\left( { \\frac { x _ { i } } { 2 \\sigma } } \\right) = q { \\mathrm { ~ a n d ~ } } x _ { i } \\geq 0 ." + }, + { + "category_id": 13, + "poly": [ + 728, + 1289, + 885, + 1289, + 885, + 1324, + 728, + 1324 + ], + "score": 0.9, + "latex": "x _ { i } \\triangleq n _ { 1 } - n _ { i }" + }, + { + "category_id": 13, + "poly": [ + 589, + 1294, + 668, + 1294, + 668, + 1320, + 589, + 1320 + ], + "score": 0.9, + "latex": "i ^ { * } = 1" + }, + { + "category_id": 13, + "poly": [ + 1107, + 921, + 1144, + 921, + 1144, + 951, + 1107, + 951 + ], + "score": 0.89, + "latex": "\\mathrm { B _ { L } }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1324, + 325, + 1324, + 325, + 1355, + 298, + 1355 + ], + "score": 0.89, + "latex": "\\boldsymbol { x } _ { i } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 1198, + 920, + 1239, + 920, + 1239, + 952, + 1198, + 952 + ], + "score": 0.88, + "latex": "\\mathrm { B _ { U } }" + }, + { + "category_id": 13, + "poly": [ + 1191, + 1818, + 1228, + 1818, + 1228, + 1847, + 1191, + 1847 + ], + "score": 0.88, + "latex": "x _ { i } { } ^ { \\ ' }" + }, + { + "category_id": 14, + "poly": [ + 666, + 1216, + 1033, + 1216, + 1033, + 1258, + 666, + 1258 + ], + "score": 0.88, + "latex": "\\mathrm { B } _ { \\mathrm { L } } ( q ( \\bar { n } ) ) \\leq q ( \\bar { n } ^ { \\prime } ) \\leq \\mathrm { B } _ { \\mathrm { U } } ( q ( \\bar { n } ) ) ." + }, + { + "category_id": 13, + "poly": [ + 756, + 1568, + 783, + 1568, + 783, + 1595, + 756, + 1595 + ], + "score": 0.86, + "latex": "\\bar { n } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 371, + 701, + 396, + 701, + 396, + 727, + 371, + 727 + ], + "score": 0.86, + "latex": "i ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 868, + 1161, + 894, + 1161, + 894, + 1188, + 868, + 1188 + ], + "score": 0.85, + "latex": "\\bar { n } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 330, + 732, + 356, + 732, + 356, + 758, + 330, + 758 + ], + "score": 0.85, + "latex": "i ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 369, + 1323, + 395, + 1323, + 395, + 1350, + 369, + 1350 + ], + "score": 0.84, + "latex": "\\bar { n } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 418, + 1569, + 443, + 1569, + 443, + 1595, + 418, + 1595 + ], + "score": 0.83, + "latex": "i ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 580, + 703, + 600, + 703, + 600, + 727, + 580, + 727 + ], + "score": 0.81, + "latex": "\\bar { n }" + }, + { + "category_id": 13, + "poly": [ + 686, + 1571, + 706, + 1571, + 706, + 1595, + 686, + 1595 + ], + "score": 0.81, + "latex": "\\bar { n }" + }, + { + "category_id": 13, + "poly": [ + 904, + 858, + 932, + 858, + 932, + 887, + 904, + 887 + ], + "score": 0.78, + "latex": "( q _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 806, + 320, + 826, + 320, + 826, + 342, + 806, + 342 + ], + "score": 0.77, + "latex": "\\sigma" + }, + { + "category_id": 13, + "poly": [ + 1063, + 702, + 1076, + 702, + 1076, + 727, + 1063, + 727 + ], + "score": 0.76, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 422, + 920, + 460, + 920, + 460, + 951, + 422, + 951 + ], + "score": 0.72, + "latex": "\\mathrm { B _ { L } }" + }, + { + "category_id": 13, + "poly": [ + 404, + 289, + 423, + 289, + 423, + 316, + 404, + 316 + ], + "score": 0.71, + "latex": "q" + }, + { + "category_id": 13, + "poly": [ + 929, + 1164, + 947, + 1164, + 947, + 1188, + 929, + 1188 + ], + "score": 0.66, + "latex": "\\bar { n }" + }, + { + "category_id": 13, + "poly": [ + 451, + 1689, + 752, + 1689, + 752, + 1775, + 451, + 1775 + ], + "score": 0.65, + "latex": "\\operatorname* { m a x } _ { \\{ x _ { i } \\} } { \\frac { 1 } { 2 } } \\sum _ { i > 1 } \\operatorname { e r f c } \\left( { \\frac { x _ { i } - 2 } { 2 \\sigma } } \\right)" + }, + { + "category_id": 13, + "poly": [ + 868, + 1691, + 1217, + 1691, + 1217, + 1775, + 868, + 1775 + ], + "score": 0.64, + "latex": "{ \\frac { 1 } { 2 } } \\sum _ { i > 1 } \\operatorname { e r f c } \\left( { \\frac { x _ { i } } { 2 \\sigma } } \\right) = q \\operatorname { a n d } x _ { i } \\geq" + }, + { + "category_id": 13, + "poly": [ + 1158, + 1708, + 1239, + 1708, + 1239, + 1743, + 1158, + 1743 + ], + "score": 0.55, + "latex": "x _ { i } \\geq 0 ." + }, + { + "category_id": 13, + "poly": [ + 472, + 920, + 513, + 920, + 513, + 951, + 472, + 951 + ], + "score": 0.5, + "latex": "\\mathrm { B _ { U } }" + }, + { + "category_id": 13, + "poly": [ + 422, + 920, + 513, + 920, + 513, + 952, + 422, + 952 + ], + "score": 0.38, + "latex": "\\mathrm { B } _ { \\mathrm { L } } , \\mathrm { B } _ { \\mathrm { U } }" + }, + { + "category_id": 13, + "poly": [ + 413, + 953, + 435, + 953, + 435, + 978, + 413, + 978 + ], + "score": 0.28, + "latex": "\\mathbf { B }" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 72.0, + 818.0, + 72.0, + 818.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 830.0, + 2084.0, + 871.0, + 2084.0, + 871.0, + 2121.0, + 830.0, + 2121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 226.0, + 794.0, + 226.0, + 794.0, + 266.0, + 294.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1287.0, + 588.0, + 1287.0, + 588.0, + 1328.0, + 295.0, + 1328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 669.0, + 1287.0, + 727.0, + 1287.0, + 727.0, + 1328.0, + 669.0, + 1328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 886.0, + 1287.0, + 936.0, + 1287.0, + 936.0, + 1328.0, + 886.0, + 1328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1165.0, + 1287.0, + 1405.0, + 1287.0, + 1405.0, + 1328.0, + 1165.0, + 1328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1320.0, + 297.0, + 1320.0, + 297.0, + 1358.0, + 293.0, + 1358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 1320.0, + 368.0, + 1320.0, + 368.0, + 1358.0, + 326.0, + 1358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 1320.0, + 555.0, + 1320.0, + 555.0, + 1358.0, + 396.0, + 1358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 702.0, + 1320.0, + 1209.0, + 1320.0, + 1209.0, + 1358.0, + 702.0, + 1358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1610.0, + 652.0, + 1610.0, + 652.0, + 1652.0, + 293.0, + 1652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 715.0, + 1610.0, + 941.0, + 1610.0, + 941.0, + 1652.0, + 715.0, + 1652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 996.0, + 1610.0, + 1405.0, + 1610.0, + 1405.0, + 1652.0, + 996.0, + 1652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1647.0, + 556.0, + 1647.0, + 556.0, + 1678.0, + 295.0, + 1678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1785.0, + 1401.0, + 1785.0, + 1401.0, + 1821.0, + 296.0, + 1821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1815.0, + 1190.0, + 1815.0, + 1190.0, + 1852.0, + 293.0, + 1852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1229.0, + 1815.0, + 1239.0, + 1815.0, + 1239.0, + 1852.0, + 1229.0, + 1852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 699.0, + 370.0, + 699.0, + 370.0, + 735.0, + 296.0, + 735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 397.0, + 699.0, + 579.0, + 699.0, + 579.0, + 735.0, + 397.0, + 735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 601.0, + 699.0, + 884.0, + 699.0, + 884.0, + 735.0, + 601.0, + 735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 989.0, + 699.0, + 1062.0, + 699.0, + 1062.0, + 735.0, + 989.0, + 735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1077.0, + 699.0, + 1404.0, + 699.0, + 1404.0, + 735.0, + 1077.0, + 735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 728.0, + 329.0, + 728.0, + 329.0, + 766.0, + 294.0, + 766.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 357.0, + 728.0, + 1405.0, + 728.0, + 1405.0, + 766.0, + 357.0, + 766.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 914.0, + 421.0, + 914.0, + 421.0, + 955.0, + 294.0, + 955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 514.0, + 914.0, + 1106.0, + 914.0, + 1106.0, + 955.0, + 514.0, + 955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1145.0, + 914.0, + 1197.0, + 914.0, + 1197.0, + 955.0, + 1145.0, + 955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1240.0, + 914.0, + 1404.0, + 914.0, + 1404.0, + 955.0, + 1240.0, + 955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 949.0, + 412.0, + 949.0, + 412.0, + 985.0, + 293.0, + 985.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 436.0, + 949.0, + 567.0, + 949.0, + 567.0, + 985.0, + 436.0, + 985.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 285.0, + 267.0, + 403.0, + 267.0, + 403.0, + 336.0, + 285.0, + 336.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 424.0, + 267.0, + 1221.0, + 267.0, + 1221.0, + 336.0, + 424.0, + 336.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 267.0, + 1407.0, + 267.0, + 1407.0, + 336.0, + 1402.0, + 336.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 313.0, + 805.0, + 313.0, + 805.0, + 349.0, + 295.0, + 349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 827.0, + 313.0, + 866.0, + 313.0, + 866.0, + 349.0, + 827.0, + 349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 769.0, + 657.0, + 769.0, + 657.0, + 818.0, + 292.0, + 818.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 713.0, + 769.0, + 1404.0, + 769.0, + 1404.0, + 818.0, + 713.0, + 818.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 805.0, + 850.0, + 805.0, + 850.0, + 844.0, + 294.0, + 844.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1563.0, + 417.0, + 1563.0, + 417.0, + 1604.0, + 294.0, + 1604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 444.0, + 1563.0, + 685.0, + 1563.0, + 685.0, + 1604.0, + 444.0, + 1604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 707.0, + 1563.0, + 755.0, + 1563.0, + 755.0, + 1604.0, + 707.0, + 1604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 784.0, + 1563.0, + 1045.0, + 1563.0, + 1045.0, + 1604.0, + 784.0, + 1604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 852.0, + 903.0, + 852.0, + 903.0, + 891.0, + 295.0, + 891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 933.0, + 852.0, + 1281.0, + 852.0, + 1281.0, + 891.0, + 933.0, + 891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1451.0, + 362.0, + 1451.0, + 362.0, + 1489.0, + 293.0, + 1489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1156.0, + 867.0, + 1156.0, + 867.0, + 1197.0, + 292.0, + 1197.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 895.0, + 1156.0, + 928.0, + 1156.0, + 928.0, + 1197.0, + 895.0, + 1197.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 948.0, + 1156.0, + 1007.0, + 1156.0, + 1007.0, + 1197.0, + 948.0, + 1197.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1152.0, + 1156.0, + 1404.0, + 1156.0, + 1404.0, + 1197.0, + 1152.0, + 1197.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1184.0, + 366.0, + 1184.0, + 366.0, + 1227.0, + 292.0, + 1227.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 29, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1227, + 1405, + 1227, + 1405, + 1351, + 297, + 1351 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 297, + 615, + 1404, + 615, + 1404, + 742, + 297, + 742 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 296, + 824, + 1405, + 824, + 1405, + 953, + 296, + 953 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 1041, + 1404, + 1041, + 1404, + 1136, + 298, + 1136 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 297, + 228, + 1401, + 228, + 1401, + 323, + 297, + 323 + ], + "score": 0.964 + }, + { + "category_id": 8, + "poly": [ + 582, + 463, + 1113, + 463, + 1113, + 539, + 582, + 539 + ], + "score": 0.954 + }, + { + "category_id": 1, + "poly": [ + 298, + 1766, + 1402, + 1766, + 1402, + 1833, + 298, + 1833 + ], + "score": 0.951 + }, + { + "category_id": 8, + "poly": [ + 635, + 1618, + 1061, + 1618, + 1061, + 1692, + 635, + 1692 + ], + "score": 0.95 + }, + { + "category_id": 8, + "poly": [ + 582, + 335, + 1114, + 335, + 1114, + 410, + 582, + 410 + ], + "score": 0.949 + }, + { + "category_id": 8, + "poly": [ + 448, + 1967, + 1252, + 1967, + 1252, + 2043, + 448, + 2043 + ], + "score": 0.948 + }, + { + "category_id": 1, + "poly": [ + 294, + 1358, + 1403, + 1358, + 1403, + 1422, + 294, + 1422 + ], + "score": 0.946 + }, + { + "category_id": 1, + "poly": [ + 297, + 964, + 1401, + 964, + 1401, + 1028, + 297, + 1028 + ], + "score": 0.946 + }, + { + "category_id": 8, + "poly": [ + 629, + 1436, + 1068, + 1436, + 1068, + 1478, + 629, + 1478 + ], + "score": 0.939 + }, + { + "category_id": 1, + "poly": [ + 300, + 1893, + 1402, + 1893, + 1402, + 1957, + 300, + 1957 + ], + "score": 0.937 + }, + { + "category_id": 1, + "poly": [ + 301, + 420, + 796, + 420, + 796, + 452, + 301, + 452 + ], + "score": 0.933 + }, + { + "category_id": 2, + "poly": [ + 298, + 74, + 816, + 74, + 816, + 106, + 298, + 106 + ], + "score": 0.92 + }, + { + "category_id": 0, + "poly": [ + 300, + 771, + 691, + 771, + 691, + 804, + 300, + 804 + ], + "score": 0.918 + }, + { + "category_id": 1, + "poly": [ + 295, + 1700, + 566, + 1700, + 566, + 1736, + 295, + 1736 + ], + "score": 0.918 + }, + { + "category_id": 1, + "poly": [ + 297, + 1502, + 1403, + 1502, + 1403, + 1568, + 297, + 1568 + ], + "score": 0.917 + }, + { + "category_id": 1, + "poly": [ + 296, + 1572, + 1072, + 1572, + 1072, + 1608, + 296, + 1608 + ], + "score": 0.906 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1990, + 1400, + 1990, + 1400, + 2021, + 1351, + 2021 + ], + "score": 0.888 + }, + { + "category_id": 2, + "poly": [ + 834, + 2088, + 863, + 2088, + 863, + 2113, + 834, + 2113 + ], + "score": 0.84 + }, + { + "category_id": 1, + "poly": [ + 304, + 1843, + 1386, + 1843, + 1386, + 1885, + 304, + 1885 + ], + "score": 0.812 + }, + { + "category_id": 2, + "poly": [ + 1380, + 549, + 1405, + 549, + 1405, + 584, + 1380, + 584 + ], + "score": 0.785 + }, + { + "category_id": 0, + "poly": [ + 298, + 1170, + 1075, + 1170, + 1075, + 1204, + 298, + 1204 + ], + "score": 0.784 + }, + { + "category_id": 1, + "poly": [ + 298, + 1170, + 1075, + 1170, + 1075, + 1204, + 298, + 1204 + ], + "score": 0.165 + }, + { + "category_id": 8, + "poly": [ + 304, + 1843, + 1386, + 1843, + 1386, + 1885, + 304, + 1885 + ], + "score": 0.093 + }, + { + "category_id": 13, + "poly": [ + 1150, + 1074, + 1218, + 1074, + 1218, + 1107, + 1150, + 1107 + ], + "score": 0.94, + "latex": "[ 0 , q _ { 0 } ]" + }, + { + "category_id": 14, + "poly": [ + 583, + 333, + 1117, + 333, + 1117, + 411, + 583, + 411 + ], + "score": 0.94, + "latex": "q ( \\bar { n } ^ { \\prime } ) \\leq \\frac { m - 1 } { 2 } \\mathrm { e r f c } \\left( \\mathrm { e r f c ^ { - 1 } } \\left( \\frac { 2 q } { m - 1 } \\right) - \\frac { 1 } { \\sigma } \\right) ." + }, + { + "category_id": 14, + "poly": [ + 583, + 461, + 1117, + 461, + 1117, + 539, + 583, + 539 + ], + "score": 0.93, + "latex": "q ( \\bar { n } ^ { \\prime } ) \\geq \\frac { m - 1 } { 2 } \\mathrm { e r f c } \\left( \\mathrm { e r f c ^ { - 1 } } \\left( \\frac { 2 q } { m - 1 } \\right) + \\frac { 1 } { \\sigma } \\right) ." + }, + { + "category_id": 13, + "poly": [ + 521, + 617, + 593, + 617, + 593, + 650, + 521, + 650 + ], + "score": 0.93, + "latex": "\\operatorname { B _ { L } } ( q )" + }, + { + "category_id": 14, + "poly": [ + 635, + 1617, + 1062, + 1617, + 1062, + 1692, + 635, + 1692 + ], + "score": 0.93, + "latex": "\\varepsilon \\triangleq { \\frac { \\lambda \\cdot e ^ { 2 \\beta } } { \\sigma ^ { 2 } } } + { \\frac { \\beta \\lambda - 0 . 5 \\ln ( 1 - 2 \\lambda \\beta ) } { \\lambda - 1 } }" + }, + { + "category_id": 13, + "poly": [ + 591, + 648, + 660, + 648, + 660, + 681, + 591, + 681 + ], + "score": 0.93, + "latex": "[ 0 , q _ { 0 } ]" + }, + { + "category_id": 13, + "poly": [ + 913, + 919, + 1036, + 919, + 1036, + 952, + 913, + 952 + ], + "score": 0.92, + "latex": "[ 0 , \\mathrm { B _ { L } } ( q _ { 0 } ) ]" + }, + { + "category_id": 13, + "poly": [ + 796, + 1361, + 915, + 1361, + 915, + 1393, + 796, + 1393 + ], + "score": 0.92, + "latex": "f \\colon { \\mathcal { D } } \\mathbb { R }" + }, + { + "category_id": 13, + "poly": [ + 1269, + 1073, + 1393, + 1073, + 1393, + 1107, + 1269, + 1107 + ], + "score": 0.92, + "latex": "[ 0 , \\mathrm { B _ { L } } ( q _ { 0 } ) ]" + }, + { + "category_id": 13, + "poly": [ + 1251, + 1768, + 1319, + 1768, + 1319, + 1802, + 1251, + 1802 + ], + "score": 0.92, + "latex": "( \\beta , \\sigma )" + }, + { + "category_id": 13, + "poly": [ + 373, + 1702, + 559, + 1702, + 559, + 1736, + 373, + 1736 + ], + "score": 0.92, + "latex": "1 < \\lambda < 1 / ( 2 \\beta )" + }, + { + "category_id": 13, + "poly": [ + 719, + 680, + 835, + 680, + 835, + 711, + 719, + 711 + ], + "score": 0.92, + "latex": "q \\in [ 0 , q _ { 0 } ]" + }, + { + "category_id": 14, + "poly": [ + 448, + 1966, + 1249, + 1966, + 1249, + 2044, + 448, + 2044 + ], + "score": 0.91, + "latex": "D _ { \\lambda } ( P \\| Q ) = \\lambda { \\frac { ( f ( D ) - f ( D ^ { \\prime } ) ) ^ { 2 } } { 2 \\sigma ^ { 2 } s ^ { 2 } } } + { \\frac { 1 } { 1 - \\lambda } } \\ln { \\frac { s } { { \\mathrm { S S } } _ { \\beta } ( D ) ^ { 1 - \\lambda } \\cdot { \\mathrm { S S } } _ { \\beta } ( D ^ { \\prime } ) ^ { \\lambda } } } ," + }, + { + "category_id": 13, + "poly": [ + 510, + 1574, + 578, + 1574, + 578, + 1608, + 510, + 1608 + ], + "score": 0.91, + "latex": "( \\beta , \\sigma )" + }, + { + "category_id": 13, + "poly": [ + 1030, + 1042, + 1108, + 1042, + 1108, + 1076, + 1030, + 1076 + ], + "score": 0.91, + "latex": "\\Delta \\beta \\left( \\cdot \\right)" + }, + { + "category_id": 13, + "poly": [ + 840, + 825, + 1008, + 825, + 1008, + 860, + 840, + 860 + ], + "score": 0.91, + "latex": "\\beta ( q ) \\triangleq \\beta _ { \\sigma } ( q )" + }, + { + "category_id": 13, + "poly": [ + 299, + 1391, + 367, + 1391, + 367, + 1425, + 299, + 1425 + ], + "score": 0.91, + "latex": "( \\beta , \\sigma )" + }, + { + "category_id": 13, + "poly": [ + 851, + 859, + 912, + 859, + 912, + 890, + 851, + 890 + ], + "score": 0.91, + "latex": "\\beta \\left( q \\right)" + }, + { + "category_id": 13, + "poly": [ + 976, + 679, + 1050, + 679, + 1050, + 711, + 976, + 711 + ], + "score": 0.91, + "latex": "\\operatorname { B _ { U } } ( q )" + }, + { + "category_id": 13, + "poly": [ + 922, + 1042, + 979, + 1042, + 979, + 1076, + 922, + 1076 + ], + "score": 0.91, + "latex": "\\beta \\left( \\cdot \\right)" + }, + { + "category_id": 13, + "poly": [ + 1062, + 648, + 1179, + 648, + 1179, + 680, + 1062, + 680 + ], + "score": 0.91, + "latex": "q \\in [ 0 , 1 ]" + }, + { + "category_id": 13, + "poly": [ + 981, + 888, + 1128, + 888, + 1128, + 920, + 981, + 920 + ], + "score": 0.9, + "latex": "\\mathrm { B _ { U } } ( q _ { 0 } ) < 1 )" + }, + { + "category_id": 14, + "poly": [ + 628, + 1434, + 1070, + 1434, + 1070, + 1478, + 628, + 1478 + ], + "score": 0.9, + "latex": "{ \\mathcal { F } } _ { \\sigma } ( D ) \\triangleq f ( D ) + \\operatorname { S S } _ { \\beta } ( D ) \\cdot { \\mathcal { N } } ( 0 , \\sigma ^ { 2 } ) ." + }, + { + "category_id": 13, + "poly": [ + 1265, + 859, + 1393, + 859, + 1393, + 889, + 1265, + 889 + ], + "score": 0.9, + "latex": "0 \\leq q \\leq q _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 347, + 919, + 677, + 919, + 677, + 953, + 347, + 953 + ], + "score": 0.9, + "latex": "\\Delta \\beta ( q ) = \\beta ( \\mathrm { B } _ { \\mathrm { U } } ( q ) ) - \\beta ( q )" + }, + { + "category_id": 13, + "poly": [ + 858, + 1575, + 922, + 1575, + 922, + 1608, + 858, + 1608 + ], + "score": 0.9, + "latex": "( \\lambda , \\varepsilon )" + }, + { + "category_id": 13, + "poly": [ + 625, + 709, + 693, + 709, + 693, + 742, + 625, + 742 + ], + "score": 0.9, + "latex": "\\operatorname { B _ { U } } ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 486, + 889, + 626, + 889, + 626, + 919, + 486, + 919 + ], + "score": 0.9, + "latex": "q _ { 0 } < q \\leq 1" + }, + { + "category_id": 13, + "poly": [ + 725, + 232, + 799, + 232, + 799, + 260, + 725, + 260 + ], + "score": 0.9, + "latex": "i > 1" + }, + { + "category_id": 13, + "poly": [ + 718, + 647, + 974, + 647, + 974, + 680, + 718, + 680 + ], + "score": 0.89, + "latex": "\\mathrm { B } _ { \\mathrm { L } } ( { \\dot { q } } ) \\leq q \\leq \\mathbf { \\bar { B } } _ { \\mathrm { U } } ( { \\dot { q } } )" + }, + { + "category_id": 13, + "poly": [ + 790, + 1576, + 827, + 1576, + 827, + 1606, + 790, + 1606 + ], + "score": 0.89, + "latex": "{ \\mathcal { F } } _ { \\sigma }" + }, + { + "category_id": 13, + "poly": [ + 543, + 1800, + 577, + 1800, + 577, + 1827, + 543, + 1827 + ], + "score": 0.88, + "latex": "D ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 1110, + 619, + 1148, + 619, + 1148, + 648, + 1110, + 648 + ], + "score": 0.88, + "latex": "\\mathrm { B _ { L } }" + }, + { + "category_id": 13, + "poly": [ + 301, + 292, + 520, + 292, + 520, + 325, + 301, + 325 + ], + "score": 0.88, + "latex": "1 ) \\operatorname { e r f c } ( x / 2 \\sigma ) = 2 q" + }, + { + "category_id": 13, + "poly": [ + 853, + 1769, + 887, + 1769, + 887, + 1796, + 853, + 1796 + ], + "score": 0.88, + "latex": "D ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 1199, + 619, + 1240, + 619, + 1240, + 648, + 1199, + 648 + ], + "score": 0.87, + "latex": "\\mathrm { B _ { U } }" + }, + { + "category_id": 13, + "poly": [ + 298, + 264, + 416, + 264, + 416, + 292, + 298, + 292 + ], + "score": 0.85, + "latex": "\\cdots = x _ { m }" + }, + { + "category_id": 13, + "poly": [ + 1335, + 264, + 1404, + 264, + 1404, + 295, + 1335, + 295 + ], + "score": 0.85, + "latex": "( m -" + }, + { + "category_id": 14, + "poly": [ + 309, + 1842, + 1382, + 1842, + 1382, + 1884, + 309, + 1884 + ], + "score": 0.85, + "latex": "P \\triangleq f ( D ) + \\mathrm { S S } _ { \\beta } ( D ) \\cdot { \\mathcal { N } } ( 0 , \\sigma ^ { 2 } ) = { \\mathcal { N } } ( f ( D ) , ( \\mathrm { S S } _ { \\beta } ( D ) \\sigma ) ^ { 2 } ) { \\mathrm { ~ a n d ~ } } Q \\triangleq { \\mathcal { N } } ( f ( D ^ { \\prime } ) , ( \\mathrm { S S } _ { \\beta } ( D ^ { \\prime } ) \\sigma ) ^ { 2 } ) ." + }, + { + "category_id": 13, + "poly": [ + 1335, + 234, + 1403, + 234, + 1403, + 262, + 1335, + 262 + ], + "score": 0.84, + "latex": "x _ { 2 } =" + }, + { + "category_id": 13, + "poly": [ + 774, + 1770, + 801, + 1770, + 801, + 1796, + 774, + 1796 + ], + "score": 0.84, + "latex": "D" + }, + { + "category_id": 13, + "poly": [ + 988, + 1362, + 1008, + 1362, + 1008, + 1392, + 988, + 1392 + ], + "score": 0.83, + "latex": "\\beta" + }, + { + "category_id": 13, + "poly": [ + 465, + 1801, + 492, + 1801, + 492, + 1827, + 465, + 1827 + ], + "score": 0.83, + "latex": "D" + }, + { + "category_id": 13, + "poly": [ + 372, + 426, + 400, + 426, + 400, + 448, + 372, + 448 + ], + "score": 0.78, + "latex": "m" + }, + { + "category_id": 13, + "poly": [ + 1381, + 967, + 1401, + 967, + 1401, + 993, + 1381, + 993 + ], + "score": 0.78, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 941, + 624, + 957, + 624, + 957, + 649, + 941, + 649 + ], + "score": 0.78, + "latex": "q" + }, + { + "category_id": 13, + "poly": [ + 1312, + 971, + 1332, + 971, + 1332, + 993, + 1312, + 993 + ], + "score": 0.77, + "latex": "\\sigma" + }, + { + "category_id": 13, + "poly": [ + 1381, + 1296, + 1401, + 1296, + 1401, + 1318, + 1381, + 1318 + ], + "score": 0.73, + "latex": "\\sigma" + }, + { + "category_id": 13, + "poly": [ + 1040, + 1845, + 1376, + 1845, + 1376, + 1884, + 1040, + 1884 + ], + "score": 0.53, + "latex": "Q \\triangleq \\mathcal { N } ( f ( D ^ { \\prime } ) , ( \\mathrm { S S } _ { \\beta } ( D ^ { \\prime } ) \\sigma ) ^ { 2 } )" + }, + { + "category_id": 13, + "poly": [ + 1296, + 1359, + 1358, + 1359, + 1358, + 1394, + 1296, + 1394 + ], + "score": 0.35, + "latex": "\\operatorname { S S } ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 1015, + 619, + 1051, + 619, + 1051, + 646, + 1015, + 646 + ], + "score": 0.27, + "latex": "\\mathrm { C 4 }" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 72.0, + 818.0, + 72.0, + 818.0, + 109.0, + 296.0, + 109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 769.0, + 695.0, + 769.0, + 695.0, + 808.0, + 294.0, + 808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 830.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2123.0, + 830.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1383.0, + 553.0, + 1404.0, + 553.0, + 1404.0, + 589.0, + 1383.0, + 589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1170.0, + 1078.0, + 1170.0, + 1078.0, + 1206.0, + 295.0, + 1206.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1227.0, + 1406.0, + 1227.0, + 1406.0, + 1265.0, + 292.0, + 1265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1257.0, + 1405.0, + 1257.0, + 1405.0, + 1295.0, + 292.0, + 1295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1290.0, + 1380.0, + 1290.0, + 1380.0, + 1325.0, + 292.0, + 1325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1322.0, + 660.0, + 1322.0, + 660.0, + 1354.0, + 295.0, + 1354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 613.0, + 520.0, + 613.0, + 520.0, + 653.0, + 294.0, + 653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 594.0, + 613.0, + 940.0, + 613.0, + 940.0, + 653.0, + 594.0, + 653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 958.0, + 613.0, + 1014.0, + 613.0, + 1014.0, + 653.0, + 958.0, + 653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1052.0, + 613.0, + 1109.0, + 613.0, + 1109.0, + 653.0, + 1052.0, + 653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1149.0, + 613.0, + 1198.0, + 613.0, + 1198.0, + 653.0, + 1149.0, + 653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1241.0, + 613.0, + 1405.0, + 613.0, + 1405.0, + 653.0, + 1241.0, + 653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 647.0, + 590.0, + 647.0, + 590.0, + 683.0, + 294.0, + 683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 661.0, + 647.0, + 717.0, + 647.0, + 717.0, + 683.0, + 661.0, + 683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 975.0, + 647.0, + 1061.0, + 647.0, + 1061.0, + 683.0, + 975.0, + 683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1180.0, + 647.0, + 1406.0, + 647.0, + 1406.0, + 683.0, + 1180.0, + 683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 679.0, + 718.0, + 679.0, + 718.0, + 713.0, + 292.0, + 713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 836.0, + 679.0, + 975.0, + 679.0, + 975.0, + 713.0, + 836.0, + 713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1051.0, + 679.0, + 1405.0, + 679.0, + 1405.0, + 713.0, + 1051.0, + 713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 706.0, + 624.0, + 706.0, + 624.0, + 746.0, + 292.0, + 746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 694.0, + 706.0, + 1185.0, + 706.0, + 1185.0, + 746.0, + 694.0, + 746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 824.0, + 839.0, + 824.0, + 839.0, + 865.0, + 294.0, + 865.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1009.0, + 824.0, + 1407.0, + 824.0, + 1407.0, + 865.0, + 1009.0, + 865.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 853.0, + 850.0, + 853.0, + 850.0, + 897.0, + 291.0, + 897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 913.0, + 853.0, + 1264.0, + 853.0, + 1264.0, + 897.0, + 913.0, + 897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 853.0, + 1407.0, + 853.0, + 1407.0, + 897.0, + 1394.0, + 897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 888.0, + 485.0, + 888.0, + 485.0, + 922.0, + 295.0, + 922.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 627.0, + 888.0, + 980.0, + 888.0, + 980.0, + 922.0, + 627.0, + 922.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1129.0, + 888.0, + 1403.0, + 888.0, + 1403.0, + 922.0, + 1129.0, + 922.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 916.0, + 346.0, + 916.0, + 346.0, + 955.0, + 293.0, + 955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 678.0, + 916.0, + 912.0, + 916.0, + 912.0, + 955.0, + 678.0, + 955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1037.0, + 916.0, + 1048.0, + 916.0, + 1048.0, + 955.0, + 1037.0, + 955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1039.0, + 921.0, + 1039.0, + 921.0, + 1079.0, + 291.0, + 1079.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 980.0, + 1039.0, + 1029.0, + 1039.0, + 1029.0, + 1079.0, + 980.0, + 1079.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1109.0, + 1039.0, + 1404.0, + 1039.0, + 1404.0, + 1079.0, + 1109.0, + 1079.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1071.0, + 1149.0, + 1071.0, + 1149.0, + 1113.0, + 292.0, + 1113.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1219.0, + 1071.0, + 1268.0, + 1071.0, + 1268.0, + 1113.0, + 1219.0, + 1113.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 1071.0, + 1405.0, + 1071.0, + 1405.0, + 1113.0, + 1394.0, + 1113.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1102.0, + 977.0, + 1102.0, + 977.0, + 1138.0, + 295.0, + 1138.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 227.0, + 724.0, + 227.0, + 724.0, + 268.0, + 293.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 800.0, + 227.0, + 1334.0, + 227.0, + 1334.0, + 268.0, + 800.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 417.0, + 260.0, + 1334.0, + 260.0, + 1334.0, + 297.0, + 417.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 291.0, + 300.0, + 291.0, + 300.0, + 325.0, + 297.0, + 325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 521.0, + 291.0, + 621.0, + 291.0, + 621.0, + 325.0, + 521.0, + 325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1764.0, + 773.0, + 1764.0, + 773.0, + 1805.0, + 294.0, + 1805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 802.0, + 1764.0, + 852.0, + 1764.0, + 852.0, + 1805.0, + 802.0, + 1805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 888.0, + 1764.0, + 1250.0, + 1764.0, + 1250.0, + 1805.0, + 888.0, + 1805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1320.0, + 1764.0, + 1404.0, + 1764.0, + 1404.0, + 1805.0, + 1320.0, + 1805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1797.0, + 464.0, + 1797.0, + 464.0, + 1836.0, + 293.0, + 1836.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 493.0, + 1797.0, + 542.0, + 1797.0, + 542.0, + 1836.0, + 493.0, + 1836.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 578.0, + 1797.0, + 772.0, + 1797.0, + 772.0, + 1836.0, + 578.0, + 1836.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1354.0, + 795.0, + 1354.0, + 795.0, + 1398.0, + 292.0, + 1398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 916.0, + 1354.0, + 987.0, + 1354.0, + 987.0, + 1398.0, + 916.0, + 1398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1009.0, + 1354.0, + 1295.0, + 1354.0, + 1295.0, + 1398.0, + 1009.0, + 1398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1359.0, + 1354.0, + 1405.0, + 1354.0, + 1405.0, + 1398.0, + 1359.0, + 1398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 368.0, + 1391.0, + 612.0, + 1391.0, + 612.0, + 1427.0, + 368.0, + 1427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 963.0, + 1311.0, + 963.0, + 1311.0, + 999.0, + 295.0, + 999.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1333.0, + 963.0, + 1380.0, + 963.0, + 1380.0, + 999.0, + 1333.0, + 999.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 995.0, + 893.0, + 995.0, + 893.0, + 1031.0, + 295.0, + 1031.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1893.0, + 1404.0, + 1893.0, + 1404.0, + 1929.0, + 296.0, + 1929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1924.0, + 540.0, + 1924.0, + 540.0, + 1960.0, + 295.0, + 1960.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 414.0, + 371.0, + 414.0, + 371.0, + 458.0, + 295.0, + 458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 401.0, + 414.0, + 797.0, + 414.0, + 797.0, + 458.0, + 401.0, + 458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1698.0, + 372.0, + 1698.0, + 372.0, + 1741.0, + 291.0, + 1741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 560.0, + 1698.0, + 569.0, + 1698.0, + 569.0, + 1741.0, + 560.0, + 1741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1500.0, + 1404.0, + 1500.0, + 1404.0, + 1539.0, + 294.0, + 1539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1532.0, + 376.0, + 1532.0, + 376.0, + 1574.0, + 289.0, + 1574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1570.0, + 509.0, + 1570.0, + 509.0, + 1611.0, + 295.0, + 1611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 579.0, + 1570.0, + 789.0, + 1570.0, + 789.0, + 1611.0, + 579.0, + 1611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 828.0, + 1570.0, + 857.0, + 1570.0, + 857.0, + 1611.0, + 828.0, + 1611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 923.0, + 1570.0, + 1066.0, + 1570.0, + 1066.0, + 1611.0, + 923.0, + 1611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1383.0, + 1840.0, + 1389.0, + 1840.0, + 1389.0, + 1890.0, + 1383.0, + 1890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1170.0, + 1078.0, + 1170.0, + 1078.0, + 1206.0, + 295.0, + 1206.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 30, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1106, + 1404, + 1106, + 1404, + 1292, + 297, + 1292 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 296, + 1306, + 1404, + 1306, + 1404, + 1491, + 296, + 1491 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 296, + 1505, + 1405, + 1505, + 1405, + 1700, + 296, + 1700 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 297, + 888, + 1404, + 888, + 1404, + 1016, + 297, + 1016 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 297, + 1713, + 1404, + 1713, + 1404, + 1839, + 297, + 1839 + ], + "score": 0.975 + }, + { + "category_id": 8, + "poly": [ + 557, + 1899, + 1140, + 1899, + 1140, + 1987, + 557, + 1987 + ], + "score": 0.956 + }, + { + "category_id": 1, + "poly": [ + 297, + 618, + 1404, + 618, + 1404, + 682, + 297, + 682 + ], + "score": 0.951 + }, + { + "category_id": 8, + "poly": [ + 361, + 737, + 1335, + 737, + 1335, + 816, + 361, + 816 + ], + "score": 0.942 + }, + { + "category_id": 1, + "poly": [ + 298, + 469, + 1063, + 469, + 1063, + 505, + 298, + 505 + ], + "score": 0.938 + }, + { + "category_id": 8, + "poly": [ + 610, + 318, + 1089, + 318, + 1089, + 361, + 610, + 361 + ], + "score": 0.929 + }, + { + "category_id": 1, + "poly": [ + 299, + 1845, + 1236, + 1845, + 1236, + 1888, + 299, + 1888 + ], + "score": 0.927 + }, + { + "category_id": 1, + "poly": [ + 297, + 825, + 425, + 825, + 425, + 857, + 297, + 857 + ], + "score": 0.927 + }, + { + "category_id": 1, + "poly": [ + 300, + 695, + 789, + 695, + 789, + 728, + 300, + 728 + ], + "score": 0.926 + }, + { + "category_id": 1, + "poly": [ + 294, + 2000, + 1328, + 2000, + 1328, + 2038, + 294, + 2038 + ], + "score": 0.924 + }, + { + "category_id": 1, + "poly": [ + 296, + 276, + 1015, + 276, + 1015, + 310, + 296, + 310 + ], + "score": 0.923 + }, + { + "category_id": 8, + "poly": [ + 577, + 406, + 1119, + 406, + 1119, + 448, + 577, + 448 + ], + "score": 0.919 + }, + { + "category_id": 8, + "poly": [ + 320, + 519, + 1324, + 519, + 1324, + 608, + 320, + 608 + ], + "score": 0.917 + }, + { + "category_id": 2, + "poly": [ + 298, + 73, + 816, + 73, + 816, + 106, + 298, + 106 + ], + "score": 0.916 + }, + { + "category_id": 1, + "poly": [ + 296, + 368, + 344, + 368, + 344, + 398, + 296, + 398 + ], + "score": 0.899 + }, + { + "category_id": 9, + "poly": [ + 1352, + 325, + 1401, + 325, + 1401, + 356, + 1352, + 356 + ], + "score": 0.898 + }, + { + "category_id": 9, + "poly": [ + 1351, + 412, + 1401, + 412, + 1401, + 443, + 1351, + 443 + ], + "score": 0.892 + }, + { + "category_id": 0, + "poly": [ + 300, + 1049, + 1118, + 1049, + 1118, + 1083, + 300, + 1083 + ], + "score": 0.886 + }, + { + "category_id": 2, + "poly": [ + 835, + 2087, + 865, + 2087, + 865, + 2113, + 835, + 2113 + ], + "score": 0.871 + }, + { + "category_id": 1, + "poly": [ + 296, + 225, + 918, + 225, + 918, + 265, + 296, + 265 + ], + "score": 0.865 + }, + { + "category_id": 9, + "poly": [ + 1353, + 572, + 1400, + 572, + 1400, + 602, + 1353, + 602 + ], + "score": 0.829 + }, + { + "category_id": 2, + "poly": [ + 1381, + 824, + 1404, + 824, + 1404, + 857, + 1381, + 857 + ], + "score": 0.711 + }, + { + "category_id": 9, + "poly": [ + 1353, + 572, + 1400, + 572, + 1400, + 603, + 1353, + 603 + ], + "score": 0.119 + }, + { + "category_id": 13, + "poly": [ + 568, + 1998, + 756, + 1998, + 756, + 2038, + 568, + 2038 + ], + "score": 0.94, + "latex": "F ( \\cdot ) i f \\tilde { \\mathrm { L S } } _ { f _ { i } } ( D ^ { \\prime } )" + }, + { + "category_id": 13, + "poly": [ + 786, + 471, + 921, + 471, + 921, + 505, + 786, + 505 + ], + "score": 0.93, + "latex": "\\lambda \\le 1 / ( 2 \\beta )" + }, + { + "category_id": 13, + "poly": [ + 1247, + 2002, + 1323, + 2002, + 1323, + 2036, + 1247, + 2036 + ], + "score": 0.93, + "latex": "f _ { i } ( D ^ { \\prime } )" + }, + { + "category_id": 13, + "poly": [ + 645, + 891, + 786, + 891, + 786, + 924, + 645, + 924 + ], + "score": 0.92, + "latex": "\\beta \\ll 1 / ( 2 \\lambda )" + }, + { + "category_id": 14, + "poly": [ + 324, + 518, + 1330, + 518, + 1330, + 612, + 324, + 612 + ], + "score": 0.92, + "latex": "\\begin{array} { r l } & { s ^ { 2 } = ( 1 - \\lambda ) \\cdot \\operatorname { S S } _ { \\beta } ( D ) ^ { 2 } + \\lambda \\cdot \\operatorname { S S } _ { \\beta } ( D ^ { \\prime } ) ^ { 2 } = \\operatorname { S S } _ { \\beta } ( D ) ^ { 2 } + \\lambda ( \\operatorname { S S } _ { \\beta } ( D ^ { \\prime } ) ^ { 2 } - \\operatorname { S S } _ { \\beta } ( D ) ^ { 2 } ) } \\\\ & { \\qquad \\geq \\operatorname { S S } _ { \\beta } ( D ) ^ { 2 } ( 1 + \\lambda ( e ^ { - 2 \\beta } - 1 ) ) \\geq \\operatorname { S S } _ { \\beta } ( D ) ^ { 2 } ( 1 - 2 \\lambda \\beta ) > 0 . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1281, + 921, + 1390, + 921, + 1390, + 956, + 1281, + 956 + ], + "score": 0.92, + "latex": "( \\lambda , \\lambda / \\sigma ^ { 2 } )" + }, + { + "category_id": 14, + "poly": [ + 359, + 736, + 1339, + 736, + 1339, + 817, + 359, + 817 + ], + "score": 0.92, + "latex": "D _ { \\lambda } ( P \\| Q ) \\le \\frac { \\lambda \\cdot e ^ { 2 \\beta } } { \\sigma ^ { 2 } } + \\frac { 1 } { 1 - \\lambda } \\ln \\left\\{ \\frac { s } { \\mathrm { S S } _ { \\beta } ( D ) } e ^ { - \\lambda \\beta } \\right\\} \\le \\frac { \\lambda \\cdot e ^ { 2 \\beta } } { \\sigma ^ { 2 } } + \\frac { \\beta \\lambda - 0 . 5 \\ln ( 1 - 2 \\lambda \\beta ) } { \\lambda - 1 }" + }, + { + "category_id": 14, + "poly": [ + 558, + 1895, + 1139, + 1895, + 1139, + 1988, + 558, + 1988 + ], + "score": 0.92, + "latex": "\\mathrm { S S } ( D ) \\triangleq \\operatorname* { m a x } _ { d \\geq 0 } e ^ { - \\beta d } \\cdot \\sum _ { i = 1 } ^ { \\ell } \\operatorname* { m a x } _ { D ^ { \\prime } : \\mathrm { d i s t } ( D , D ^ { \\prime } ) \\leq d } \\tilde { \\mathrm { L S } } _ { f _ { i } } ( D ^ { \\prime } ) ," + }, + { + "category_id": 13, + "poly": [ + 1133, + 1540, + 1349, + 1540, + 1349, + 1577, + 1133, + 1577 + ], + "score": 0.92, + "latex": "\\beta _ { \\sigma } ( q ( \\bar { n } _ { i } ) ) \\leq \\lambda / \\sigma ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1124, + 1576, + 1185, + 1576, + 1185, + 1609, + 1124, + 1609 + ], + "score": 0.91, + "latex": "\\lambda / \\sigma ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 851, + 891, + 920, + 891, + 920, + 925, + 851, + 925 + ], + "score": 0.91, + "latex": "( \\beta , \\sigma )" + }, + { + "category_id": 13, + "poly": [ + 707, + 1539, + 972, + 1539, + 972, + 1578, + 707, + 1578 + ], + "score": 0.91, + "latex": "\\begin{array} { r } { B _ { \\sigma } = \\sum _ { i = 1 } ^ { \\ell } \\beta _ { \\sigma } ( q ( \\bar { n } _ { i } ) ) } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 578, + 404, + 1120, + 404, + 1120, + 447, + 578, + 447 + ], + "score": 0.91, + "latex": "| f ( D ) - f ( D ^ { \\prime } ) | \\leq e ^ { \\beta } \\cdot \\operatorname * { m i n } ( \\mathrm { S S } _ { \\beta } ( D ) , \\mathrm { S S } _ { \\beta } ( D ^ { \\prime } ) ) ." + }, + { + "category_id": 13, + "poly": [ + 809, + 1510, + 931, + 1510, + 931, + 1538, + 809, + 1538 + ], + "score": 0.9, + "latex": "\\bar { n } _ { 1 } , \\ldots , \\bar { n } _ { \\ell }" + }, + { + "category_id": 13, + "poly": [ + 1097, + 890, + 1263, + 890, + 1263, + 925, + 1097, + 925 + ], + "score": 0.9, + "latex": "( \\lambda , ( \\lambda { + } 1 ) / \\sigma ^ { 2 } )" + }, + { + "category_id": 14, + "poly": [ + 607, + 316, + 1089, + 316, + 1089, + 360, + 607, + 360 + ], + "score": 0.89, + "latex": "e ^ { - \\beta } \\cdot \\mathrm { S S } _ { \\beta } ( D ) \\leq \\mathrm { S S } _ { \\beta } ( D ^ { \\prime } ) \\leq e ^ { \\beta } \\cdot \\mathrm { S S } _ { \\beta } ( D ) ," + }, + { + "category_id": 13, + "poly": [ + 784, + 1777, + 822, + 1777, + 822, + 1807, + 784, + 1807 + ], + "score": 0.89, + "latex": "B _ { \\sigma }" + }, + { + "category_id": 13, + "poly": [ + 504, + 1852, + 625, + 1852, + 625, + 1883, + 504, + 1883 + ], + "score": 0.89, + "latex": "f _ { i } { : } \\mathcal { D } \\mathbb { R }" + }, + { + "category_id": 13, + "poly": [ + 402, + 227, + 915, + 227, + 915, + 266, + 402, + 266 + ], + "score": 0.89, + "latex": "s ^ { 2 } \\triangleq ( 1 - \\lambda ) \\cdot \\mathrm { S S } _ { \\beta } ( D ) ^ { 2 } + \\lambda \\cdot \\mathrm { S S } _ { \\beta } ( D ^ { \\prime } ) ^ { 2 } > 0 ." + }, + { + "category_id": 13, + "poly": [ + 765, + 1717, + 804, + 1717, + 804, + 1746, + 765, + 1746 + ], + "score": 0.89, + "latex": "B _ { \\sigma }" + }, + { + "category_id": 13, + "poly": [ + 1090, + 1851, + 1160, + 1851, + 1160, + 1883, + 1090, + 1883 + ], + "score": 0.88, + "latex": "\\beta > 0" + }, + { + "category_id": 13, + "poly": [ + 698, + 618, + 726, + 618, + 726, + 647, + 698, + 647 + ], + "score": 0.88, + "latex": "s ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 609, + 1638, + 642, + 1638, + 642, + 1665, + 609, + 1665 + ], + "score": 0.88, + "latex": "D ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 929, + 1638, + 963, + 1638, + 963, + 1665, + 929, + 1665 + ], + "score": 0.86, + "latex": "D ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 345, + 2004, + 364, + 2004, + 364, + 2035, + 345, + 2035 + ], + "score": 0.82, + "latex": "\\beta" + }, + { + "category_id": 13, + "poly": [ + 532, + 1639, + 559, + 1639, + 559, + 1665, + 532, + 1665 + ], + "score": 0.81, + "latex": "D" + }, + { + "category_id": 13, + "poly": [ + 870, + 1639, + 897, + 1639, + 897, + 1665, + 870, + 1665 + ], + "score": 0.8, + "latex": "D" + }, + { + "category_id": 13, + "poly": [ + 792, + 1844, + 1036, + 1844, + 1036, + 1886, + 792, + 1886 + ], + "score": 0.8, + "latex": "\\begin{array} { r } { F ( D ) \\triangleq \\sum _ { i = 1 } ^ { \\ell } f _ { i } ( D ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 658, + 1544, + 678, + 1544, + 678, + 1572, + 658, + 1572 + ], + "score": 0.78, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 426, + 892, + 501, + 892, + 501, + 921, + 426, + 921 + ], + "score": 0.78, + "latex": "\\lambda \\gg 1" + }, + { + "category_id": 13, + "poly": [ + 511, + 892, + 590, + 892, + 590, + 921, + 511, + 921 + ], + "score": 0.76, + "latex": "\\sigma \\ll \\lambda" + }, + { + "category_id": 13, + "poly": [ + 1222, + 1370, + 1242, + 1370, + 1242, + 1397, + 1222, + 1397 + ], + "score": 0.71, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 669, + 1849, + 781, + 1849, + 781, + 1883, + 669, + 1883 + ], + "score": 0.6, + "latex": "1 \\leq i \\leq \\ell _ { \\mathrm { { i } } }" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 72.0, + 818.0, + 72.0, + 818.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1049.0, + 1121.0, + 1049.0, + 1121.0, + 1085.0, + 295.0, + 1085.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 830.0, + 2083.0, + 871.0, + 2083.0, + 871.0, + 2125.0, + 830.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1383.0, + 827.0, + 1404.0, + 827.0, + 1404.0, + 859.0, + 1383.0, + 859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1104.0, + 1404.0, + 1104.0, + 1404.0, + 1145.0, + 292.0, + 1145.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1139.0, + 1404.0, + 1139.0, + 1404.0, + 1175.0, + 294.0, + 1175.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1171.0, + 1402.0, + 1171.0, + 1402.0, + 1203.0, + 296.0, + 1203.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1199.0, + 1404.0, + 1199.0, + 1404.0, + 1235.0, + 295.0, + 1235.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1231.0, + 1406.0, + 1231.0, + 1406.0, + 1267.0, + 294.0, + 1267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1259.0, + 555.0, + 1259.0, + 555.0, + 1291.0, + 295.0, + 1291.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1308.0, + 1404.0, + 1308.0, + 1404.0, + 1340.0, + 296.0, + 1340.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1337.0, + 1404.0, + 1337.0, + 1404.0, + 1373.0, + 294.0, + 1373.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1367.0, + 1221.0, + 1367.0, + 1221.0, + 1404.0, + 291.0, + 1404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1243.0, + 1367.0, + 1406.0, + 1367.0, + 1406.0, + 1404.0, + 1243.0, + 1404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1401.0, + 1402.0, + 1401.0, + 1402.0, + 1433.0, + 295.0, + 1433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1429.0, + 1406.0, + 1429.0, + 1406.0, + 1465.0, + 295.0, + 1465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1460.0, + 835.0, + 1460.0, + 835.0, + 1493.0, + 294.0, + 1493.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1504.0, + 808.0, + 1504.0, + 808.0, + 1545.0, + 294.0, + 1545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 932.0, + 1504.0, + 1407.0, + 1504.0, + 1407.0, + 1545.0, + 932.0, + 1545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1530.0, + 657.0, + 1530.0, + 657.0, + 1588.0, + 289.0, + 1588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 679.0, + 1530.0, + 706.0, + 1530.0, + 706.0, + 1588.0, + 679.0, + 1588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 973.0, + 1530.0, + 1132.0, + 1530.0, + 1132.0, + 1588.0, + 973.0, + 1588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1350.0, + 1530.0, + 1411.0, + 1530.0, + 1411.0, + 1588.0, + 1350.0, + 1588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1572.0, + 1123.0, + 1572.0, + 1123.0, + 1613.0, + 291.0, + 1613.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1186.0, + 1572.0, + 1407.0, + 1572.0, + 1407.0, + 1613.0, + 1186.0, + 1613.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1608.0, + 1405.0, + 1608.0, + 1405.0, + 1641.0, + 295.0, + 1641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1635.0, + 531.0, + 1635.0, + 531.0, + 1674.0, + 291.0, + 1674.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 560.0, + 1635.0, + 608.0, + 1635.0, + 608.0, + 1674.0, + 560.0, + 1674.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 643.0, + 1635.0, + 869.0, + 1635.0, + 869.0, + 1674.0, + 643.0, + 1674.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 898.0, + 1635.0, + 928.0, + 1635.0, + 928.0, + 1674.0, + 898.0, + 1674.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 964.0, + 1635.0, + 1407.0, + 1635.0, + 1407.0, + 1674.0, + 964.0, + 1674.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1668.0, + 476.0, + 1668.0, + 476.0, + 1703.0, + 295.0, + 1703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 889.0, + 425.0, + 889.0, + 425.0, + 926.0, + 294.0, + 926.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 502.0, + 889.0, + 510.0, + 889.0, + 510.0, + 926.0, + 502.0, + 926.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 591.0, + 889.0, + 644.0, + 889.0, + 644.0, + 926.0, + 591.0, + 926.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 787.0, + 889.0, + 850.0, + 889.0, + 850.0, + 926.0, + 787.0, + 926.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 921.0, + 889.0, + 1096.0, + 889.0, + 1096.0, + 926.0, + 921.0, + 926.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1264.0, + 889.0, + 1404.0, + 889.0, + 1404.0, + 926.0, + 1264.0, + 926.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 920.0, + 1280.0, + 920.0, + 1280.0, + 957.0, + 292.0, + 957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1391.0, + 920.0, + 1404.0, + 920.0, + 1404.0, + 957.0, + 1391.0, + 957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 950.0, + 1406.0, + 950.0, + 1406.0, + 989.0, + 292.0, + 989.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 982.0, + 833.0, + 982.0, + 833.0, + 1019.0, + 294.0, + 1019.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1716.0, + 764.0, + 1716.0, + 764.0, + 1749.0, + 294.0, + 1749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 805.0, + 1716.0, + 1404.0, + 1716.0, + 1404.0, + 1749.0, + 805.0, + 1749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1745.0, + 1405.0, + 1745.0, + 1405.0, + 1782.0, + 294.0, + 1782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1776.0, + 783.0, + 1776.0, + 783.0, + 1812.0, + 294.0, + 1812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 823.0, + 1776.0, + 1407.0, + 1776.0, + 1407.0, + 1812.0, + 823.0, + 1812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1808.0, + 1084.0, + 1808.0, + 1084.0, + 1841.0, + 295.0, + 1841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 615.0, + 697.0, + 615.0, + 697.0, + 655.0, + 294.0, + 655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 727.0, + 615.0, + 1405.0, + 615.0, + 1405.0, + 655.0, + 727.0, + 655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 645.0, + 393.0, + 645.0, + 393.0, + 687.0, + 291.0, + 687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 468.0, + 785.0, + 468.0, + 785.0, + 508.0, + 295.0, + 508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 922.0, + 468.0, + 1064.0, + 468.0, + 1064.0, + 508.0, + 922.0, + 508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1841.0, + 503.0, + 1841.0, + 503.0, + 1893.0, + 292.0, + 1893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 626.0, + 1841.0, + 668.0, + 1841.0, + 668.0, + 1893.0, + 626.0, + 1893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 782.0, + 1841.0, + 791.0, + 1841.0, + 791.0, + 1893.0, + 782.0, + 1893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1037.0, + 1841.0, + 1089.0, + 1841.0, + 1089.0, + 1893.0, + 1037.0, + 1893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1161.0, + 1841.0, + 1240.0, + 1841.0, + 1240.0, + 1893.0, + 1161.0, + 1893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 825.0, + 427.0, + 825.0, + 427.0, + 859.0, + 295.0, + 859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 695.0, + 790.0, + 695.0, + 790.0, + 731.0, + 298.0, + 731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1999.0, + 344.0, + 1999.0, + 344.0, + 2039.0, + 294.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 365.0, + 1999.0, + 567.0, + 1999.0, + 567.0, + 2039.0, + 365.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 757.0, + 1999.0, + 1246.0, + 1999.0, + 1246.0, + 2039.0, + 757.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1324.0, + 1999.0, + 1332.0, + 1999.0, + 1332.0, + 2039.0, + 1324.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 274.0, + 1013.0, + 274.0, + 1013.0, + 314.0, + 296.0, + 314.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 368.0, + 344.0, + 368.0, + 344.0, + 398.0, + 294.0, + 398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 223.0, + 401.0, + 223.0, + 401.0, + 269.0, + 292.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 916.0, + 223.0, + 920.0, + 223.0, + 920.0, + 269.0, + 916.0, + 269.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 31, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1558, + 1404, + 1558, + 1404, + 1776, + 297, + 1776 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 1788, + 1404, + 1788, + 1404, + 2035, + 298, + 2035 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 1451, + 1402, + 1451, + 1402, + 1545, + 298, + 1545 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 298, + 227, + 1404, + 227, + 1404, + 326, + 298, + 326 + ], + "score": 0.972 + }, + { + "category_id": 8, + "poly": [ + 532, + 505, + 1167, + 505, + 1167, + 835, + 532, + 835 + ], + "score": 0.966 + }, + { + "category_id": 8, + "poly": [ + 576, + 944, + 1125, + 944, + 1125, + 1273, + 576, + 1273 + ], + "score": 0.964 + }, + { + "category_id": 1, + "poly": [ + 295, + 1355, + 1401, + 1355, + 1401, + 1419, + 295, + 1419 + ], + "score": 0.955 + }, + { + "category_id": 8, + "poly": [ + 548, + 381, + 1151, + 381, + 1151, + 440, + 548, + 440 + ], + "score": 0.954 + }, + { + "category_id": 1, + "poly": [ + 299, + 1289, + 600, + 1289, + 600, + 1321, + 299, + 1321 + ], + "score": 0.931 + }, + { + "category_id": 1, + "poly": [ + 299, + 338, + 811, + 338, + 811, + 369, + 299, + 369 + ], + "score": 0.928 + }, + { + "category_id": 1, + "poly": [ + 290, + 453, + 1275, + 453, + 1275, + 488, + 290, + 488 + ], + "score": 0.925 + }, + { + "category_id": 1, + "poly": [ + 297, + 848, + 617, + 848, + 617, + 879, + 297, + 879 + ], + "score": 0.923 + }, + { + "category_id": 1, + "poly": [ + 287, + 893, + 1368, + 893, + 1368, + 929, + 287, + 929 + ], + "score": 0.922 + }, + { + "category_id": 2, + "poly": [ + 299, + 74, + 816, + 74, + 816, + 105, + 299, + 105 + ], + "score": 0.918 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 865, + 2088, + 865, + 2113, + 835, + 2113 + ], + "score": 0.864 + }, + { + "category_id": 2, + "poly": [ + 1380, + 1287, + 1405, + 1287, + 1405, + 1321, + 1380, + 1321 + ], + "score": 0.763 + }, + { + "category_id": 14, + "poly": [ + 531, + 500, + 1168, + 500, + 1168, + 838, + 531, + 838 + ], + "score": 0.95, + "latex": "\\begin{array} { r l } & { \\displaystyle \\mathrm { S S } ( D _ { 1 } ) = \\operatorname* { m a x } _ { d \\geq 0 } e ^ { - \\beta d } \\cdot \\sum _ { i = 1 } ^ { \\ell } \\operatorname* { m a x } _ { D : \\mathrm { d i s t } ( D _ { 1 } , D ) \\leq d } \\mathrm { I } \\tilde { \\mathrm { S } S } _ { f _ { i } } ( D ) , } \\\\ & { \\qquad \\leq \\displaystyle \\operatorname* { m a x } _ { d \\geq 0 } e ^ { - \\beta d } \\cdot \\sum _ { i = 1 } ^ { \\ell } \\operatorname* { m a x } _ { D : \\mathrm { d i s t } ( D _ { 2 } , D ) \\leq d + 1 } \\mathrm { I } \\tilde { \\mathrm { S } S } _ { f _ { i } } ( D ) } \\\\ & { \\qquad = \\displaystyle \\operatorname* { m a x } _ { d \\geq 1 } e ^ { - \\beta ( d ^ { \\prime } - 1 ) } \\cdot \\sum _ { i = 1 } ^ { \\ell } \\operatorname* { m a x } _ { D : \\mathrm { d i s t } ( D _ { 2 } , D ) \\leq d ^ { \\prime } } \\mathrm { I } \\tilde { \\mathrm { S } S } _ { f _ { i } } ( D ) } \\\\ & { \\qquad \\leq e ^ { \\beta } \\cdot \\mathrm { S S } ( D _ { 2 } ) } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 574, + 942, + 1127, + 942, + 1127, + 1273, + 574, + 1273 + ], + "score": 0.95, + "latex": "\\begin{array} { r l } { \\displaystyle | F ( D _ { 1 } ) - F ( D _ { 2 } ) | = \\left| \\displaystyle \\sum _ { i = 1 } ^ { \\ell } f _ { i } ( D _ { 1 } ) - \\displaystyle \\sum _ { i = 1 } ^ { \\ell } f _ { i } ( D _ { 2 } ) \\right| } & { } \\\\ { \\displaystyle } & { \\le \\displaystyle \\sum _ { i = 1 } ^ { \\ell } | f _ { i } ( D _ { 1 } ) - f _ { i } ( D _ { 2 } ) | } \\\\ { \\displaystyle } & { \\le \\displaystyle \\sum _ { i = 1 } ^ { \\ell } \\mathrm { I } \\tilde { \\mathrm { S } } f _ { i } ( D _ { 1 } ) } \\\\ { \\displaystyle } & { \\le \\mathrm { S S } ( D _ { 1 } ) , } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1123, + 263, + 1203, + 263, + 1203, + 295, + 1123, + 295 + ], + "score": 0.93, + "latex": "F ( D _ { 1 } )" + }, + { + "category_id": 13, + "poly": [ + 551, + 1912, + 644, + 1912, + 644, + 1945, + 551, + 1945 + ], + "score": 0.92, + "latex": "( \\beta , \\sigma _ { \\mathrm { S S } } )" + }, + { + "category_id": 13, + "poly": [ + 1002, + 896, + 1055, + 896, + 1055, + 929, + 1002, + 929 + ], + "score": 0.91, + "latex": "F ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 914, + 228, + 1192, + 228, + 1192, + 264, + 914, + 264 + ], + "score": 0.91, + "latex": "\\mathrm { S S } ( D _ { 1 } ) \\le e ^ { \\beta } \\cdot \\mathrm { S S } ( D _ { 2 } )" + }, + { + "category_id": 13, + "poly": [ + 737, + 1652, + 850, + 1652, + 850, + 1682, + 737, + 1682 + ], + "score": 0.9, + "latex": "\\sigma _ { 1 } = 1 5 0" + }, + { + "category_id": 13, + "poly": [ + 901, + 1652, + 1000, + 1652, + 1000, + 1682, + 901, + 1682 + ], + "score": 0.9, + "latex": "\\sigma _ { 2 } = 4 0 " + }, + { + "category_id": 13, + "poly": [ + 624, + 1713, + 715, + 1713, + 715, + 1741, + 624, + 1741 + ], + "score": 0.9, + "latex": "\\lambda = 1 4" + }, + { + "category_id": 13, + "poly": [ + 812, + 1913, + 957, + 1913, + 957, + 1943, + 812, + 1943 + ], + "score": 0.9, + "latex": "\\sigma _ { \\mathrm { S S } } ~ = ~ 6 . 2 3" + }, + { + "category_id": 13, + "poly": [ + 297, + 1882, + 434, + 1882, + 434, + 1912, + 297, + 1912 + ], + "score": 0.9, + "latex": "\\sigma _ { \\mathrm { S S } } = 6 . 2 3" + }, + { + "category_id": 14, + "poly": [ + 548, + 378, + 1151, + 378, + 1151, + 440, + 548, + 440 + ], + "score": 0.9, + "latex": "\\operatorname* { m a x } _ { D : \\mathrm { d i s t } ( D _ { 1 } , D ) \\leq d } \\tilde { \\mathrm { L S } } _ { f _ { i } } ( D ) \\leq \\operatorname* { m a x } _ { D : \\mathrm { d i s t } ( D _ { 2 } , D ) \\leq d + 1 } \\tilde { \\mathrm { L S } } _ { f _ { i } } ( D )" + }, + { + "category_id": 13, + "poly": [ + 520, + 1851, + 667, + 1851, + 667, + 1882, + 520, + 1882 + ], + "score": 0.89, + "latex": "\\beta = 0 . 0 3 2 9" + }, + { + "category_id": 13, + "poly": [ + 607, + 456, + 644, + 456, + 644, + 485, + 607, + 485 + ], + "score": 0.89, + "latex": "D _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 905, + 1972, + 1306, + 1972, + 1306, + 2003, + 905, + 2003 + ], + "score": 0.89, + "latex": "2 . { \\bar { 5 } } 2 = 1 . 1 8 + 0 . 5 2 { \\stackrel { - } { - } } \\mathrm { l n } ( 1 { \\bar { 0 } } ^ { - 5 } ) / 1 4" + }, + { + "category_id": 13, + "poly": [ + 413, + 1713, + 524, + 1713, + 524, + 1741, + 413, + 1741 + ], + "score": 0.89, + "latex": "\\varepsilon = 1 . 1 8" + }, + { + "category_id": 13, + "poly": [ + 696, + 456, + 734, + 456, + 734, + 485, + 696, + 485 + ], + "score": 0.89, + "latex": "D _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 298, + 293, + 507, + 293, + 507, + 325, + 298, + 325 + ], + "score": 0.89, + "latex": "| F ( D _ { 1 } ) - F ( D _ { 2 } ) |" + }, + { + "category_id": 13, + "poly": [ + 344, + 261, + 501, + 261, + 501, + 292, + 344, + 292 + ], + "score": 0.88, + "latex": "D _ { 1 } , D _ { 2 } \\ \\in \\ { \\mathcal { D } }" + }, + { + "category_id": 13, + "poly": [ + 1273, + 261, + 1403, + 261, + 1403, + 296, + 1273, + 296 + ], + "score": 0.88, + "latex": "\\mathrm { S S } ( D _ { 1 } ) \\ \\geq" + }, + { + "category_id": 13, + "poly": [ + 1128, + 1710, + 1265, + 1710, + 1265, + 1745, + 1128, + 1745 + ], + "score": 0.87, + "latex": "( 2 . 0 0 , 1 0 ^ { - 5 } )" + }, + { + "category_id": 13, + "poly": [ + 1037, + 2004, + 1288, + 2004, + 1288, + 2035, + 1037, + 2035 + ], + "score": 0.87, + "latex": "\\sigma _ { \\mathrm { S S } } \\cdot 0 . 0 6 1 8 = 0 . 3 8 5" + }, + { + "category_id": 13, + "poly": [ + 738, + 232, + 759, + 232, + 759, + 262, + 738, + 262 + ], + "score": 0.86, + "latex": "\\beta" + }, + { + "category_id": 13, + "poly": [ + 452, + 851, + 472, + 851, + 472, + 881, + 452, + 881 + ], + "score": 0.86, + "latex": "\\beta" + }, + { + "category_id": 13, + "poly": [ + 1104, + 1826, + 1122, + 1826, + 1122, + 1848, + 1104, + 1848 + ], + "score": 0.68, + "latex": "\\varepsilon" + }, + { + "category_id": 13, + "poly": [ + 997, + 1749, + 1013, + 1749, + 1013, + 1770, + 997, + 1770 + ], + "score": 0.66, + "latex": "\\varepsilon" + }, + { + "category_id": 13, + "poly": [ + 641, + 230, + 704, + 230, + 704, + 264, + 641, + 264 + ], + "score": 0.5, + "latex": "\\operatorname { S S } ( { \\mathord { \\cdot } } )" + }, + { + "category_id": 13, + "poly": [ + 444, + 895, + 507, + 895, + 507, + 929, + 444, + 929 + ], + "score": 0.41, + "latex": "\\operatorname { S S } ( { \\mathord { \\cdot } } )" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 72.0, + 817.0, + 72.0, + 817.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 830.0, + 2085.0, + 869.0, + 2085.0, + 869.0, + 2122.0, + 830.0, + 2122.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1385.0, + 1295.0, + 1403.0, + 1295.0, + 1403.0, + 1322.0, + 1385.0, + 1322.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1561.0, + 1402.0, + 1561.0, + 1402.0, + 1592.0, + 297.0, + 1592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1590.0, + 1407.0, + 1590.0, + 1407.0, + 1625.0, + 292.0, + 1625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1620.0, + 1405.0, + 1620.0, + 1405.0, + 1655.0, + 294.0, + 1655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1653.0, + 736.0, + 1653.0, + 736.0, + 1684.0, + 296.0, + 1684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 851.0, + 1653.0, + 900.0, + 1653.0, + 900.0, + 1684.0, + 851.0, + 1684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1001.0, + 1653.0, + 1404.0, + 1653.0, + 1404.0, + 1684.0, + 1001.0, + 1684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1682.0, + 1405.0, + 1682.0, + 1405.0, + 1714.0, + 292.0, + 1714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1711.0, + 412.0, + 1711.0, + 412.0, + 1746.0, + 291.0, + 1746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 525.0, + 1711.0, + 623.0, + 1711.0, + 623.0, + 1746.0, + 525.0, + 1746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 716.0, + 1711.0, + 1127.0, + 1711.0, + 1127.0, + 1746.0, + 716.0, + 1746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1266.0, + 1711.0, + 1405.0, + 1711.0, + 1405.0, + 1746.0, + 1266.0, + 1746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1742.0, + 996.0, + 1742.0, + 996.0, + 1780.0, + 294.0, + 1780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1014.0, + 1742.0, + 1027.0, + 1742.0, + 1027.0, + 1780.0, + 1014.0, + 1780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1787.0, + 1404.0, + 1787.0, + 1404.0, + 1824.0, + 295.0, + 1824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1819.0, + 1103.0, + 1819.0, + 1103.0, + 1855.0, + 293.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1123.0, + 1819.0, + 1405.0, + 1819.0, + 1405.0, + 1855.0, + 1123.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1850.0, + 519.0, + 1850.0, + 519.0, + 1884.0, + 294.0, + 1884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 668.0, + 1850.0, + 1405.0, + 1850.0, + 1405.0, + 1884.0, + 668.0, + 1884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1880.0, + 296.0, + 1880.0, + 296.0, + 1918.0, + 293.0, + 1918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 435.0, + 1880.0, + 1402.0, + 1880.0, + 1402.0, + 1918.0, + 435.0, + 1918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1910.0, + 550.0, + 1910.0, + 550.0, + 1948.0, + 293.0, + 1948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 645.0, + 1910.0, + 811.0, + 1910.0, + 811.0, + 1948.0, + 645.0, + 1948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 958.0, + 1910.0, + 1405.0, + 1910.0, + 1405.0, + 1948.0, + 958.0, + 1948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1940.0, + 1405.0, + 1940.0, + 1405.0, + 1977.0, + 292.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1968.0, + 904.0, + 1968.0, + 904.0, + 2009.0, + 292.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1307.0, + 1968.0, + 1406.0, + 1968.0, + 1406.0, + 2009.0, + 1307.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2003.0, + 1036.0, + 2003.0, + 1036.0, + 2037.0, + 294.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1289.0, + 2003.0, + 1405.0, + 2003.0, + 1405.0, + 2037.0, + 1289.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1452.0, + 1403.0, + 1452.0, + 1403.0, + 1486.0, + 296.0, + 1486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1483.0, + 1402.0, + 1483.0, + 1402.0, + 1517.0, + 296.0, + 1517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1514.0, + 1093.0, + 1514.0, + 1093.0, + 1548.0, + 296.0, + 1548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 227.0, + 640.0, + 227.0, + 640.0, + 265.0, + 294.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 705.0, + 227.0, + 737.0, + 227.0, + 737.0, + 265.0, + 705.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 760.0, + 227.0, + 913.0, + 227.0, + 913.0, + 265.0, + 760.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1193.0, + 227.0, + 1402.0, + 227.0, + 1402.0, + 265.0, + 1193.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 255.0, + 343.0, + 255.0, + 343.0, + 300.0, + 292.0, + 300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 502.0, + 255.0, + 1122.0, + 255.0, + 1122.0, + 300.0, + 502.0, + 300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1204.0, + 255.0, + 1272.0, + 255.0, + 1272.0, + 300.0, + 1204.0, + 300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 289.0, + 297.0, + 289.0, + 297.0, + 329.0, + 294.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 508.0, + 289.0, + 518.0, + 289.0, + 518.0, + 329.0, + 508.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1356.0, + 1405.0, + 1356.0, + 1405.0, + 1392.0, + 297.0, + 1392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1383.0, + 1193.0, + 1383.0, + 1193.0, + 1425.0, + 292.0, + 1425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1284.0, + 604.0, + 1284.0, + 604.0, + 1326.0, + 295.0, + 1326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 337.0, + 813.0, + 337.0, + 813.0, + 372.0, + 296.0, + 372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 453.0, + 606.0, + 453.0, + 606.0, + 492.0, + 293.0, + 492.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 645.0, + 453.0, + 695.0, + 453.0, + 695.0, + 492.0, + 645.0, + 492.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 735.0, + 453.0, + 1278.0, + 453.0, + 1278.0, + 492.0, + 735.0, + 492.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 847.0, + 451.0, + 847.0, + 451.0, + 883.0, + 294.0, + 883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 473.0, + 847.0, + 621.0, + 847.0, + 621.0, + 883.0, + 473.0, + 883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 887.0, + 443.0, + 887.0, + 443.0, + 937.0, + 294.0, + 937.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 508.0, + 887.0, + 1001.0, + 887.0, + 1001.0, + 937.0, + 508.0, + 937.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1056.0, + 887.0, + 1373.0, + 887.0, + 1373.0, + 937.0, + 1056.0, + 937.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 32, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 296, + 224, + 1409, + 224, + 1409, + 507, + 296, + 507 + ], + "score": 0.984, + "html": "
DatasetConfident GNMax parametersDPE[e] 8Smooth Sensitivity入 B E[SSB] UssSanitized DPE[e]±noise
E[e]BE[SSB]
MNISTT=200,01=150,σ2=402.0010-514.0329.06186.232.52±0.385
SVHNT=300,01=200,02=404.9610-67.5.0533.07174.885.45± 0.350
AdultT=300,σ1=200,02=401.6810-515.5.03100.03327.922.09±0.263
GlyphT=1000,σ1=500,02=1002.0710-820.5.0205.012811.92.29±0.152
Two-round interactive0.83710-850.009.0027826.41.00± .081
.008.0008838.7
" + }, + { + "category_id": 1, + "poly": [ + 296, + 988, + 1404, + 988, + 1404, + 1211, + 296, + 1211 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 850, + 1404, + 850, + 1404, + 973, + 298, + 973 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 297, + 774, + 1400, + 774, + 1400, + 836, + 297, + 836 + ], + "score": 0.946 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 815, + 75, + 815, + 105, + 298, + 105 + ], + "score": 0.898 + }, + { + "category_id": 6, + "poly": [ + 296, + 528, + 1405, + 528, + 1405, + 714, + 296, + 714 + ], + "score": 0.897 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 865, + 2088, + 865, + 2112, + 835, + 2112 + ], + "score": 0.845 + }, + { + "category_id": 13, + "poly": [ + 989, + 1050, + 1253, + 1050, + 1253, + 1084, + 989, + 1084 + ], + "score": 0.92, + "latex": "\\log ( 1 / \\delta ) \\approx ( \\lambda - 1 ) \\varepsilon / 2" + }, + { + "category_id": 13, + "poly": [ + 845, + 1143, + 1024, + 1143, + 1024, + 1183, + 845, + 1183 + ], + "score": 0.91, + "latex": "4 \\cdot \\sqrt { ( \\lambda + 1 ) / \\varepsilon }" + }, + { + "category_id": 13, + "poly": [ + 810, + 406, + 864, + 406, + 864, + 430, + 810, + 430 + ], + "score": 0.9, + "latex": "1 0 ^ { - 8 }" + }, + { + "category_id": 13, + "poly": [ + 365, + 1111, + 434, + 1111, + 434, + 1145, + 365, + 1145 + ], + "score": 0.9, + "latex": "0 . 4 / \\lambda" + }, + { + "category_id": 13, + "poly": [ + 1205, + 1178, + 1264, + 1178, + 1264, + 1212, + 1205, + 1212 + ], + "score": 0.89, + "latex": "\\varepsilon / 1 6" + }, + { + "category_id": 13, + "poly": [ + 810, + 338, + 864, + 338, + 864, + 361, + 810, + 361 + ], + "score": 0.89, + "latex": "1 0 ^ { - 6 }" + }, + { + "category_id": 13, + "poly": [ + 615, + 1143, + 790, + 1143, + 790, + 1182, + 615, + 1182 + ], + "score": 0.89, + "latex": "2 \\cdot \\sqrt { ( \\lambda + 1 ) / \\varepsilon }" + }, + { + "category_id": 13, + "poly": [ + 810, + 457, + 864, + 457, + 864, + 479, + 810, + 479 + ], + "score": 0.89, + "latex": "1 0 ^ { - 8 }" + }, + { + "category_id": 13, + "poly": [ + 792, + 1112, + 841, + 1112, + 841, + 1145, + 792, + 1145 + ], + "score": 0.89, + "latex": "{ \\mathrm { S S } } _ { \\beta }" + }, + { + "category_id": 13, + "poly": [ + 810, + 373, + 863, + 373, + 863, + 395, + 810, + 395 + ], + "score": 0.89, + "latex": "1 0 ^ { - 5 }" + }, + { + "category_id": 13, + "poly": [ + 810, + 303, + 864, + 303, + 864, + 327, + 810, + 327 + ], + "score": 0.88, + "latex": "1 0 ^ { - 5 }" + }, + { + "category_id": 13, + "poly": [ + 1314, + 1179, + 1358, + 1179, + 1358, + 1212, + 1314, + 1212 + ], + "score": 0.87, + "latex": "\\varepsilon / 4" + }, + { + "category_id": 13, + "poly": [ + 1046, + 1084, + 1067, + 1084, + 1067, + 1113, + 1046, + 1113 + ], + "score": 0.85, + "latex": "\\beta" + }, + { + "category_id": 13, + "poly": [ + 456, + 916, + 503, + 916, + 503, + 944, + 456, + 944 + ], + "score": 0.84, + "latex": "\\sigma _ { \\mathrm { S S } }" + }, + { + "category_id": 13, + "poly": [ + 1164, + 684, + 1210, + 684, + 1210, + 714, + 1164, + 714 + ], + "score": 0.83, + "latex": "\\sigma _ { \\mathrm { S S } }" + }, + { + "category_id": 13, + "poly": [ + 1276, + 1117, + 1321, + 1117, + 1321, + 1143, + 1276, + 1143 + ], + "score": 0.83, + "latex": "\\sigma _ { \\mathrm { S S } }" + }, + { + "category_id": 13, + "poly": [ + 597, + 374, + 664, + 374, + 664, + 398, + 597, + 398 + ], + "score": 0.83, + "latex": "\\sigma _ { 2 } { = } 4 0" + }, + { + "category_id": 13, + "poly": [ + 508, + 338, + 588, + 338, + 588, + 364, + 508, + 364 + ], + "score": 0.83, + "latex": "\\sigma _ { 1 } = 2 0 0" + }, + { + "category_id": 13, + "poly": [ + 597, + 342, + 664, + 342, + 664, + 364, + 597, + 364 + ], + "score": 0.82, + "latex": "\\sigma _ { 2 } { = } 4 0" + }, + { + "category_id": 13, + "poly": [ + 1051, + 682, + 1114, + 682, + 1114, + 717, + 1051, + 717 + ], + "score": 0.82, + "latex": "[ \\mathrm { S S } _ { \\beta } ]" + }, + { + "category_id": 13, + "poly": [ + 723, + 267, + 775, + 267, + 775, + 294, + 723, + 294 + ], + "score": 0.79, + "latex": "\\mathbb { E } \\left[ \\varepsilon \\right]" + }, + { + "category_id": 13, + "poly": [ + 722, + 1052, + 743, + 1052, + 743, + 1078, + 722, + 1078 + ], + "score": 0.77, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 508, + 305, + 588, + 305, + 588, + 331, + 508, + 331 + ], + "score": 0.76, + "latex": "\\sigma _ { 1 } { = } 1 5 0" + }, + { + "category_id": 13, + "poly": [ + 368, + 1082, + 385, + 1082, + 385, + 1109, + 368, + 1109 + ], + "score": 0.76, + "latex": "\\delta" + }, + { + "category_id": 13, + "poly": [ + 597, + 308, + 663, + 308, + 663, + 330, + 597, + 330 + ], + "score": 0.74, + "latex": "\\sigma _ { 2 } { = } 4 0" + }, + { + "category_id": 13, + "poly": [ + 602, + 658, + 619, + 658, + 619, + 680, + 602, + 680 + ], + "score": 0.73, + "latex": "\\varepsilon" + }, + { + "category_id": 13, + "poly": [ + 589, + 1056, + 605, + 1056, + 605, + 1079, + 589, + 1079 + ], + "score": 0.72, + "latex": "\\varepsilon" + }, + { + "category_id": 13, + "poly": [ + 451, + 623, + 471, + 623, + 471, + 653, + 451, + 653 + ], + "score": 0.7, + "latex": "\\beta" + }, + { + "category_id": 13, + "poly": [ + 482, + 624, + 527, + 624, + 527, + 653, + 482, + 653 + ], + "score": 0.68, + "latex": "\\sigma _ { \\mathrm { S S } }" + }, + { + "category_id": 13, + "poly": [ + 1256, + 309, + 1385, + 309, + 1385, + 329, + 1256, + 329 + ], + "score": 0.67, + "latex": "2 . 5 2 \\pm 0 . 3 8 5" + }, + { + "category_id": 13, + "poly": [ + 508, + 373, + 588, + 373, + 588, + 399, + 508, + 399 + ], + "score": 0.64, + "latex": "\\sigma _ { 1 } = 2 0 0" + }, + { + "category_id": 13, + "poly": [ + 779, + 1022, + 797, + 1022, + 797, + 1048, + 779, + 1048 + ], + "score": 0.6, + "latex": "\\delta" + }, + { + "category_id": 13, + "poly": [ + 428, + 406, + 690, + 406, + 690, + 435, + 428, + 435 + ], + "score": 0.59, + "latex": "T \\mathrm { = } 1 0 0 0 , \\sigma _ { 1 } \\mathrm { = } 5 0 0 , \\sigma _ { 2 } \\mathrm { = } 1 0 0" + }, + { + "category_id": 13, + "poly": [ + 830, + 269, + 844, + 269, + 844, + 287, + 830, + 287 + ], + "score": 0.59, + "latex": "\\pmb { \\delta }" + }, + { + "category_id": 13, + "poly": [ + 1261, + 453, + 1380, + 453, + 1380, + 483, + 1261, + 483 + ], + "score": 0.58, + "latex": "1 . 0 0 \\pm . 0 8 1" + }, + { + "category_id": 13, + "poly": [ + 992, + 269, + 1012, + 269, + 1012, + 292, + 992, + 292 + ], + "score": 0.58, + "latex": "\\beta" + }, + { + "category_id": 13, + "poly": [ + 1188, + 592, + 1208, + 592, + 1208, + 619, + 1188, + 619 + ], + "score": 0.56, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 1256, + 341, + 1386, + 341, + 1386, + 364, + 1256, + 364 + ], + "score": 0.56, + "latex": "5 . 4 5 \\pm 0 . 3 5 0" + }, + { + "category_id": 13, + "poly": [ + 1255, + 407, + 1386, + 407, + 1386, + 434, + 1255, + 434 + ], + "score": 0.55, + "latex": "2 . 2 9 \\pm 0 . 1 5 2" + }, + { + "category_id": 13, + "poly": [ + 428, + 337, + 500, + 337, + 500, + 364, + 428, + 364 + ], + "score": 0.51, + "latex": "T { = } 3 0 0" + }, + { + "category_id": 13, + "poly": [ + 1251, + 265, + 1389, + 265, + 1389, + 294, + 1251, + 294 + ], + "score": 0.51, + "latex": "\\mathbb { E } \\left[ \\pm \\right] \\pm \\mathrm { \\mathbf { n o i s e } }" + }, + { + "category_id": 13, + "poly": [ + 1255, + 373, + 1386, + 373, + 1386, + 398, + 1255, + 398 + ], + "score": 0.46, + "latex": "2 . 0 9 \\pm 0 . 2 6 3" + }, + { + "category_id": 13, + "poly": [ + 609, + 408, + 690, + 408, + 690, + 434, + 609, + 434 + ], + "score": 0.4, + "latex": "\\sigma _ { 2 } { = } 1 0 0" + }, + { + "category_id": 13, + "poly": [ + 428, + 304, + 499, + 304, + 499, + 330, + 428, + 330 + ], + "score": 0.37, + "latex": "T { = } 2 0 0" + }, + { + "category_id": 13, + "poly": [ + 1025, + 682, + 1047, + 682, + 1047, + 710, + 1025, + 710 + ], + "score": 0.35, + "latex": "\\mathbb { E }" + }, + { + "category_id": 13, + "poly": [ + 521, + 407, + 601, + 407, + 601, + 434, + 521, + 434 + ], + "score": 0.34, + "latex": "\\sigma _ { 1 } { = } 5 0 0" + }, + { + "category_id": 13, + "poly": [ + 1061, + 263, + 1142, + 263, + 1142, + 294, + 1061, + 294 + ], + "score": 0.31, + "latex": "\\mathbb { E } \\left[ \\mathrm { S S } _ { \\beta } \\right]" + }, + { + "category_id": 13, + "poly": [ + 909, + 269, + 928, + 269, + 928, + 288, + 909, + 288 + ], + "score": 0.3, + "latex": "\\pmb { \\lambda }" + }, + { + "category_id": 13, + "poly": [ + 1175, + 274, + 1218, + 274, + 1218, + 291, + 1175, + 291 + ], + "score": 0.29, + "latex": "\\sigma _ { \\mathrm { S S } }" + }, + { + "category_id": 13, + "poly": [ + 427, + 372, + 668, + 372, + 668, + 400, + 427, + 400 + ], + "score": 0.26, + "latex": "T = 3 0 0 , \\sigma _ { 1 } = 2 0 0 , \\sigma _ { 2 } = 4 0" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 818.0, + 73.0, + 818.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 525.0, + 1406.0, + 525.0, + 1406.0, + 567.0, + 293.0, + 567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 562.0, + 1403.0, + 562.0, + 1403.0, + 594.0, + 295.0, + 594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 590.0, + 1187.0, + 590.0, + 1187.0, + 626.0, + 294.0, + 626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1209.0, + 590.0, + 1405.0, + 590.0, + 1405.0, + 626.0, + 1209.0, + 626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 621.0, + 450.0, + 621.0, + 450.0, + 655.0, + 294.0, + 655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 472.0, + 621.0, + 481.0, + 621.0, + 481.0, + 655.0, + 472.0, + 655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 528.0, + 621.0, + 1405.0, + 621.0, + 1405.0, + 655.0, + 528.0, + 655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 652.0, + 601.0, + 652.0, + 601.0, + 685.0, + 293.0, + 685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 620.0, + 652.0, + 1406.0, + 652.0, + 1406.0, + 685.0, + 620.0, + 685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 676.0, + 1024.0, + 676.0, + 1024.0, + 719.0, + 291.0, + 719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1115.0, + 676.0, + 1163.0, + 676.0, + 1163.0, + 719.0, + 1115.0, + 719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1211.0, + 676.0, + 1231.0, + 676.0, + 1231.0, + 719.0, + 1211.0, + 719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 829.0, + 2084.0, + 871.0, + 2084.0, + 871.0, + 2123.0, + 829.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 987.0, + 1405.0, + 987.0, + 1405.0, + 1025.0, + 294.0, + 1025.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1017.0, + 778.0, + 1017.0, + 778.0, + 1058.0, + 293.0, + 1058.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 798.0, + 1017.0, + 1405.0, + 1017.0, + 1405.0, + 1058.0, + 798.0, + 1058.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1049.0, + 588.0, + 1049.0, + 588.0, + 1084.0, + 294.0, + 1084.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 606.0, + 1049.0, + 721.0, + 1049.0, + 721.0, + 1084.0, + 606.0, + 1084.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 744.0, + 1049.0, + 988.0, + 1049.0, + 988.0, + 1084.0, + 744.0, + 1084.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1254.0, + 1049.0, + 1406.0, + 1049.0, + 1406.0, + 1084.0, + 1254.0, + 1084.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1079.0, + 367.0, + 1079.0, + 367.0, + 1116.0, + 293.0, + 1116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 386.0, + 1079.0, + 1045.0, + 1079.0, + 1045.0, + 1116.0, + 386.0, + 1116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1068.0, + 1079.0, + 1404.0, + 1079.0, + 1404.0, + 1116.0, + 1068.0, + 1116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1111.0, + 364.0, + 1111.0, + 364.0, + 1146.0, + 294.0, + 1146.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 435.0, + 1111.0, + 791.0, + 1111.0, + 791.0, + 1146.0, + 435.0, + 1146.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 842.0, + 1111.0, + 1275.0, + 1111.0, + 1275.0, + 1146.0, + 842.0, + 1146.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1322.0, + 1111.0, + 1404.0, + 1111.0, + 1404.0, + 1146.0, + 1322.0, + 1146.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1146.0, + 614.0, + 1146.0, + 614.0, + 1185.0, + 293.0, + 1185.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 791.0, + 1146.0, + 844.0, + 1146.0, + 844.0, + 1185.0, + 791.0, + 1185.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1025.0, + 1146.0, + 1407.0, + 1146.0, + 1407.0, + 1185.0, + 1025.0, + 1185.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1178.0, + 1204.0, + 1178.0, + 1204.0, + 1213.0, + 294.0, + 1213.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1265.0, + 1178.0, + 1313.0, + 1178.0, + 1313.0, + 1213.0, + 1265.0, + 1213.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1359.0, + 1178.0, + 1377.0, + 1178.0, + 1377.0, + 1213.0, + 1359.0, + 1213.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 850.0, + 1407.0, + 850.0, + 1407.0, + 885.0, + 292.0, + 885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 881.0, + 1403.0, + 881.0, + 1403.0, + 916.0, + 295.0, + 916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 912.0, + 455.0, + 912.0, + 455.0, + 948.0, + 293.0, + 948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 504.0, + 912.0, + 1405.0, + 912.0, + 1405.0, + 948.0, + 504.0, + 948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 942.0, + 550.0, + 942.0, + 550.0, + 974.0, + 295.0, + 974.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 772.0, + 1404.0, + 772.0, + 1404.0, + 808.0, + 295.0, + 808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 805.0, + 768.0, + 805.0, + 768.0, + 839.0, + 293.0, + 839.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 33, + "width": 1700, + "height": 2200 + } + } +] \ No newline at end of file diff --git a/vlm/train/0HW7A5YZjq7/0.png b/vlm/train/0HW7A5YZjq7/0.png new file mode 100644 index 0000000000000000000000000000000000000000..07095edbe67e41238927c4f65ab2d7012a1c842a --- /dev/null +++ b/vlm/train/0HW7A5YZjq7/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b46b9c915e53eace62dce22a33e3e768efd8a608d25c40814639a64983ee9f0 +size 416444 diff --git a/vlm/train/0HW7A5YZjq7/1.png b/vlm/train/0HW7A5YZjq7/1.png new file mode 100644 index 0000000000000000000000000000000000000000..4f71097eb86210e447ff32d817cc42b1c5c3a065 --- /dev/null +++ b/vlm/train/0HW7A5YZjq7/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0872876ba3bd1f6677dc3fb340148136a2a4b2c2971caba2fcf923fb6c6b568 +size 676518 diff --git a/vlm/train/0HW7A5YZjq7/10.png b/vlm/train/0HW7A5YZjq7/10.png new file mode 100644 index 0000000000000000000000000000000000000000..72c4e71811c96b907d242f70ab73cfaed825c27b --- /dev/null +++ b/vlm/train/0HW7A5YZjq7/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9823d9e252234c7a133bb009e35ffaef6ba381976c88c1a0f48c105a34ed21ab +size 609211 diff --git a/vlm/train/0HW7A5YZjq7/11.png b/vlm/train/0HW7A5YZjq7/11.png new file mode 100644 index 0000000000000000000000000000000000000000..020303a30147e3bd42ef9f3f526b8f63e3fc9cd8 --- /dev/null +++ b/vlm/train/0HW7A5YZjq7/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ea215fcc02632c66af870b574f74fbebfd392a10a91b5fcbc7fefbdae17c899 +size 622391 diff --git a/vlm/train/0HW7A5YZjq7/12.png b/vlm/train/0HW7A5YZjq7/12.png new file mode 100644 index 0000000000000000000000000000000000000000..c6d9d0c201c0a2a41c3163ee121ed197b3f6d8b1 --- /dev/null +++ b/vlm/train/0HW7A5YZjq7/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec5b66c2fd95fb061132e09549352dd876a33ee6230f09f4d2e84de799bcea83 +size 610588 diff --git a/vlm/train/0HW7A5YZjq7/13.png b/vlm/train/0HW7A5YZjq7/13.png new file mode 100644 index 0000000000000000000000000000000000000000..4abc5a047f657a0d7a1e010e8262595fb86ca312 --- /dev/null +++ b/vlm/train/0HW7A5YZjq7/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd9f3e18fe4050d717561bd8cec83cf76ad18b14151ab83d5f9b2fd196ac245d +size 257338 diff --git a/vlm/train/0HW7A5YZjq7/2.png b/vlm/train/0HW7A5YZjq7/2.png new file mode 100644 index 0000000000000000000000000000000000000000..aa3d56aedb8382b3f2c8c7f8685fd449684c3067 --- /dev/null +++ b/vlm/train/0HW7A5YZjq7/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0a0444c8ecb0d3cfc2fa31b26680ea831ad43971f5435ac561788ad67c865f3 +size 588572 diff --git a/vlm/train/0HW7A5YZjq7/3.png b/vlm/train/0HW7A5YZjq7/3.png new file mode 100644 index 0000000000000000000000000000000000000000..924a05969135c6f621b80d5b976014a491325577 --- /dev/null +++ b/vlm/train/0HW7A5YZjq7/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91a1e3480d561497b37ddaa7ac69bc97fd95acd35b541708a961d7482b40e7a1 +size 547195 diff --git a/vlm/train/0HW7A5YZjq7/4.png b/vlm/train/0HW7A5YZjq7/4.png new file mode 100644 index 0000000000000000000000000000000000000000..fad5cffa4c09fc95a2b771e1c946683e1c32c50c --- /dev/null +++ b/vlm/train/0HW7A5YZjq7/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac4c3c41c836d6127cfaf2f60c72680616372a563ed2c476fe7e48e6d2e8c800 +size 510290 diff --git a/vlm/train/0HW7A5YZjq7/5.png b/vlm/train/0HW7A5YZjq7/5.png new file mode 100644 index 0000000000000000000000000000000000000000..c270031b997fe235042656f49c53a4fa4a7892ef --- /dev/null +++ b/vlm/train/0HW7A5YZjq7/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b75351a5a757ce9ef78703b2b179259b07c93a4e52f39ff75c3480c7324d02db +size 555784 diff --git a/vlm/train/0HW7A5YZjq7/6.png b/vlm/train/0HW7A5YZjq7/6.png new file mode 100644 index 0000000000000000000000000000000000000000..9ad640fdad2e51ee414144d338098950a6953e83 --- /dev/null +++ b/vlm/train/0HW7A5YZjq7/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d15cdc1ebf8b5873d272820df2a6b2a73472138bc55bbf9bf4272c9ea958f0fe +size 617769 diff --git a/vlm/train/0HW7A5YZjq7/7.png b/vlm/train/0HW7A5YZjq7/7.png new file mode 100644 index 0000000000000000000000000000000000000000..83a58de67a4ef2dcc8702c5b949d5561d6da9bee --- /dev/null +++ b/vlm/train/0HW7A5YZjq7/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2b57c71bad6f763ce8001f2847ea60de9dd4e1b32574896955d43c2095bf104 +size 597162 diff --git a/vlm/train/0HW7A5YZjq7/8.png b/vlm/train/0HW7A5YZjq7/8.png new file mode 100644 index 0000000000000000000000000000000000000000..84ad67290651ed4ad03d932be4cec613f3fdd8a0 --- /dev/null +++ b/vlm/train/0HW7A5YZjq7/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f01aafccd2977d4835dfb82c8a1092927ed436db0d0dc5b77b714ad9546d31e +size 582319 diff --git a/vlm/train/0HW7A5YZjq7/9.png b/vlm/train/0HW7A5YZjq7/9.png new file mode 100644 index 0000000000000000000000000000000000000000..23ef119a5e5e7668ddbf3c91526234190ea9035c --- /dev/null +++ b/vlm/train/0HW7A5YZjq7/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b463c022a1f39aaae23a3e21f447ce3f6b46f2357bcdc41de41bbdd2f9a8fcdb +size 487752 diff --git a/vlm/train/784_F-WCW46/0.png b/vlm/train/784_F-WCW46/0.png new file mode 100644 index 0000000000000000000000000000000000000000..5b85cf7fbc0cd39072c4e5be5a083796a81fc495 --- /dev/null +++ b/vlm/train/784_F-WCW46/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8226f467d2d5e3cd42a0cebcb0397768c785c2f403569f0a2598caad95a41ef +size 536925 diff --git a/vlm/train/784_F-WCW46/1.png b/vlm/train/784_F-WCW46/1.png new file mode 100644 index 0000000000000000000000000000000000000000..fd308bfc12715f1fb28dfcc3c1d33690967628a6 --- /dev/null +++ b/vlm/train/784_F-WCW46/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67a8b23bc2b71afb3e9514d3887cdde676dc5686e53b570395410a4e904cf563 +size 668006 diff --git a/vlm/train/784_F-WCW46/10.png b/vlm/train/784_F-WCW46/10.png new file mode 100644 index 0000000000000000000000000000000000000000..08638ad2c0ea9969120c7f37316cbd201035eb1e --- /dev/null +++ b/vlm/train/784_F-WCW46/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dda8927e4a0de82614dd2d93d980b20098d1b97ba20cb53b16613c0ec68afc1d +size 192754 diff --git a/vlm/train/784_F-WCW46/2.png b/vlm/train/784_F-WCW46/2.png new file mode 100644 index 0000000000000000000000000000000000000000..cfb6afac50262fdede8a97b95990460eed798910 --- /dev/null +++ b/vlm/train/784_F-WCW46/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e68af6f9c18f531377bece94dcc4169b133bdc46bea5417f5c02a18a271fb758 +size 683195 diff --git a/vlm/train/784_F-WCW46/3.png b/vlm/train/784_F-WCW46/3.png new file mode 100644 index 0000000000000000000000000000000000000000..ff9b653882864dba7ee31614cae20f90de5780e3 --- /dev/null +++ b/vlm/train/784_F-WCW46/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be7689584ab22b4a4bdcc1ffd98e093c05717c41b3f60b817a15f60fbd25a43d +size 630456 diff --git a/vlm/train/784_F-WCW46/4.png b/vlm/train/784_F-WCW46/4.png new file mode 100644 index 0000000000000000000000000000000000000000..282446b1fa742243e885f740d2c2163ce534c701 --- /dev/null +++ b/vlm/train/784_F-WCW46/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66442a80a2cf931b323fdb8594db9fda5099577e6da05e6b4311a8959b59bb70 +size 595670 diff --git a/vlm/train/784_F-WCW46/5.png b/vlm/train/784_F-WCW46/5.png new file mode 100644 index 0000000000000000000000000000000000000000..8affe66aad04dff14e54b7b6792d49c1854d7d29 --- /dev/null +++ b/vlm/train/784_F-WCW46/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd9ebd70f766f5c20e41775a313e1086b01dcc81b8b830f4a095984929ac06a6 +size 620173 diff --git a/vlm/train/784_F-WCW46/6.png b/vlm/train/784_F-WCW46/6.png new file mode 100644 index 0000000000000000000000000000000000000000..3cb268cd6f89b13443dd089ae427045308678ec9 --- /dev/null +++ b/vlm/train/784_F-WCW46/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:191a32f8b701e986911659b93979ca6ebce19eb4da93341c69f999c29286b723 +size 602206 diff --git a/vlm/train/784_F-WCW46/7.png b/vlm/train/784_F-WCW46/7.png new file mode 100644 index 0000000000000000000000000000000000000000..edc41a9c69f6a84becf2923c9bb9721a0fff3d7f --- /dev/null +++ b/vlm/train/784_F-WCW46/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee2df8dc5da2489dfe288972b93e0539b7cdefe6503bad31ec332bd4f5168991 +size 1104501 diff --git a/vlm/train/784_F-WCW46/8.png b/vlm/train/784_F-WCW46/8.png new file mode 100644 index 0000000000000000000000000000000000000000..04451ff6a2d736974926da17a221c86d5beba807 --- /dev/null +++ b/vlm/train/784_F-WCW46/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7816177193a29b8a78bcce82b2b4fe24ec8d26b025101e1c4e136ae58e2a591a +size 359889 diff --git a/vlm/train/784_F-WCW46/9.png b/vlm/train/784_F-WCW46/9.png new file mode 100644 index 0000000000000000000000000000000000000000..9e5831067f9aed07afac23c4c3b3bac4eb84ce5f --- /dev/null +++ b/vlm/train/784_F-WCW46/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ac56b92cfa1fa10d37f7e26e74b3b7265d061c9493edf24e69592abe64ee34a +size 577798 diff --git a/vlm/train/9BpjtPMyDQ/0.png b/vlm/train/9BpjtPMyDQ/0.png new file mode 100644 index 0000000000000000000000000000000000000000..17eb8d4ec383ad326d4ceb899933abc660002242 --- /dev/null +++ b/vlm/train/9BpjtPMyDQ/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be31cea86f632859930a38b85f82f52bf96a307e580779c0fd200aef0c003d5b +size 436505 diff --git a/vlm/train/9BpjtPMyDQ/1.png b/vlm/train/9BpjtPMyDQ/1.png new file mode 100644 index 0000000000000000000000000000000000000000..1818ad50a0ece646c062294e82e52e122442eebd --- /dev/null +++ b/vlm/train/9BpjtPMyDQ/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6dcff4ec7cc6a0c98a0e51984b02936eaecd713b46b40e8ee529d656af3a037f +size 632745 diff --git a/vlm/train/9BpjtPMyDQ/10.png b/vlm/train/9BpjtPMyDQ/10.png new file mode 100644 index 0000000000000000000000000000000000000000..6592b4bfbf5af4d46766986113dfc2df88d3656f --- /dev/null +++ b/vlm/train/9BpjtPMyDQ/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:602380ac2f418a67dd85df57e5e9c967957c1dde6cf387a00b5a903f1e776403 +size 507945 diff --git a/vlm/train/9BpjtPMyDQ/11.png b/vlm/train/9BpjtPMyDQ/11.png new file mode 100644 index 0000000000000000000000000000000000000000..f8680d87c4d64d39be4d5bdf5b1859a305ea1ee1 --- /dev/null +++ b/vlm/train/9BpjtPMyDQ/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a9fad6e9119eadae6822ca26a7d78f35302a9e83428b23a0912e9461fd59435 +size 528152 diff --git a/vlm/train/9BpjtPMyDQ/12.png b/vlm/train/9BpjtPMyDQ/12.png new file mode 100644 index 0000000000000000000000000000000000000000..b0b115e0363da7ab596cafc4bf75edeff5031b93 --- /dev/null +++ b/vlm/train/9BpjtPMyDQ/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6ef2771c18d390b3756dae3b8642a9b57bdfd3233b175a3de90407c6642eadb +size 77241 diff --git a/vlm/train/9BpjtPMyDQ/2.png b/vlm/train/9BpjtPMyDQ/2.png new file mode 100644 index 0000000000000000000000000000000000000000..bda860fd73ce7dc08c051b42acffdf9c1fd96b85 --- /dev/null +++ b/vlm/train/9BpjtPMyDQ/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b932afe56ea37de5c31243a0f02f659e5c9d23fd48a1b627a80d07f2c1fe236b +size 516030 diff --git a/vlm/train/9BpjtPMyDQ/3.png b/vlm/train/9BpjtPMyDQ/3.png new file mode 100644 index 0000000000000000000000000000000000000000..0d9f17f985bd7f6263a68c0705b7522e4730ad73 --- /dev/null +++ b/vlm/train/9BpjtPMyDQ/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c39ff15d1ffa0fa44c5fd09963432680de77d24c92980f32024db8c36afc6290 +size 571295 diff --git a/vlm/train/9BpjtPMyDQ/4.png b/vlm/train/9BpjtPMyDQ/4.png new file mode 100644 index 0000000000000000000000000000000000000000..adddc1c51ff0e263fde9f85ad8af12c14b8a93a2 --- /dev/null +++ b/vlm/train/9BpjtPMyDQ/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e1cf14f5399d73376a5f0cb0feff96b2d16187f6d4cbcf510d8ab420a0f03b2 +size 556806 diff --git a/vlm/train/9BpjtPMyDQ/5.png b/vlm/train/9BpjtPMyDQ/5.png new file mode 100644 index 0000000000000000000000000000000000000000..aa71c7d9b61e157134a211f065d4a00c6fb88779 --- /dev/null +++ b/vlm/train/9BpjtPMyDQ/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b7eb14172785b00190bc1aa67a45a5c2ce1587fcf4e47c4bb7cf7ebd1330e01 +size 529269 diff --git a/vlm/train/9BpjtPMyDQ/6.png b/vlm/train/9BpjtPMyDQ/6.png new file mode 100644 index 0000000000000000000000000000000000000000..bf9d5d1350d6f0073c3b35d73a37248caebc0739 --- /dev/null +++ b/vlm/train/9BpjtPMyDQ/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c7bad61f7ee68e852f59e8aca4d788eb73e0effdcf92e2c8544038208eb37bf +size 1293982 diff --git a/vlm/train/9BpjtPMyDQ/7.png b/vlm/train/9BpjtPMyDQ/7.png new file mode 100644 index 0000000000000000000000000000000000000000..aa9c842d485fa282fd848f5d822c2cba954eee86 --- /dev/null +++ b/vlm/train/9BpjtPMyDQ/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b40a6097fda8c7a5bab6813c8e14f3b130bdfd0ec9b454ac93ff925f8daa94c7 +size 527651 diff --git a/vlm/train/9BpjtPMyDQ/8.png b/vlm/train/9BpjtPMyDQ/8.png new file mode 100644 index 0000000000000000000000000000000000000000..e8b7101de6505652e62e3b015f8e7ecb1f97a936 --- /dev/null +++ b/vlm/train/9BpjtPMyDQ/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f56f1bbd2ac787170c6dc83a776f61c604b07b180af174365ac8e7a763559bd9 +size 565334 diff --git a/vlm/train/9BpjtPMyDQ/9.png b/vlm/train/9BpjtPMyDQ/9.png new file mode 100644 index 0000000000000000000000000000000000000000..fc6455c4a4cb7fcacb1fb7c7b52e9f9240e3b0c3 --- /dev/null +++ b/vlm/train/9BpjtPMyDQ/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9353bd38223848bf9fd549904682c1c1bb629d3b84b2a98563c80605b6dead67 +size 999526 diff --git a/vlm/train/ALvt7nXa2q/0.png b/vlm/train/ALvt7nXa2q/0.png new file mode 100644 index 0000000000000000000000000000000000000000..b09aa0f46de2d3fa74faa692e1bed10acb41601c --- /dev/null +++ b/vlm/train/ALvt7nXa2q/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e79435f52a0ec22478667ff31e5a2618bb0f13f78f105690dbcf2cac611acb43 +size 445550 diff --git a/vlm/train/ALvt7nXa2q/1.png b/vlm/train/ALvt7nXa2q/1.png new file mode 100644 index 0000000000000000000000000000000000000000..19d26feffff041bc2780bc784867bd69b549fa1a --- /dev/null +++ b/vlm/train/ALvt7nXa2q/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f662bdac8e937e847fb101e999d607e00ae0062bc6ab7b2de0755a681af54fd3 +size 576019 diff --git a/vlm/train/ALvt7nXa2q/10.png b/vlm/train/ALvt7nXa2q/10.png new file mode 100644 index 0000000000000000000000000000000000000000..06d8a309e37b386092823437f6679254f7be60e1 --- /dev/null +++ b/vlm/train/ALvt7nXa2q/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ce88b5d4decb1c8c3600dd1a74b8932e9f1c4160a48a17bb04603f9dc33a7fc +size 530380 diff --git a/vlm/train/ALvt7nXa2q/11.png b/vlm/train/ALvt7nXa2q/11.png new file mode 100644 index 0000000000000000000000000000000000000000..b8a6c571d0d0b14b8b3dfeb66d7451a11a62efde --- /dev/null +++ b/vlm/train/ALvt7nXa2q/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8d75b1c997d1cc59d5cdc5c2cb4f169ee5e2b8d947f747fed6c7b3a8cd73623 +size 591568 diff --git a/vlm/train/ALvt7nXa2q/12.png b/vlm/train/ALvt7nXa2q/12.png new file mode 100644 index 0000000000000000000000000000000000000000..e144015c4f80af88495f4bae6c4e341a493e5f16 --- /dev/null +++ b/vlm/train/ALvt7nXa2q/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04bc4ac2c0cf57f6d18c6d9d2cc24af0dd5aaaa3d87b33147153df815b5d7a64 +size 560104 diff --git a/vlm/train/ALvt7nXa2q/13.png b/vlm/train/ALvt7nXa2q/13.png new file mode 100644 index 0000000000000000000000000000000000000000..829779cbe720cd0065d372081081735936dc830b --- /dev/null +++ b/vlm/train/ALvt7nXa2q/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d135d9a4a528dbb128a44aeec702c1e7505b66cda7571a825875ca0afdaec90 +size 521702 diff --git a/vlm/train/ALvt7nXa2q/14.png b/vlm/train/ALvt7nXa2q/14.png new file mode 100644 index 0000000000000000000000000000000000000000..8c632222474302a59afa549e1a09313285fd2630 --- /dev/null +++ b/vlm/train/ALvt7nXa2q/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aeca7ba859e9c5326b9fbac73a4cc20894d98ac24b39c251cab4a220bd3dcfdd +size 276985 diff --git a/vlm/train/ALvt7nXa2q/2.png b/vlm/train/ALvt7nXa2q/2.png new file mode 100644 index 0000000000000000000000000000000000000000..04e83894310c1957b2a1fdb9fbc029162f9961e5 --- /dev/null +++ b/vlm/train/ALvt7nXa2q/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:105d9a2073614ed8cb29f429b6a26fbf9882bde35ab770aab8bf9a4540fd3e92 +size 538853 diff --git a/vlm/train/ALvt7nXa2q/3.png b/vlm/train/ALvt7nXa2q/3.png new file mode 100644 index 0000000000000000000000000000000000000000..77bd786a803c89700f42401357d6611b245d1212 --- /dev/null +++ b/vlm/train/ALvt7nXa2q/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16ea661ab4c9a624cb10696d251b341551a254a849e7e0c71adb168270891ecc +size 485454 diff --git a/vlm/train/ALvt7nXa2q/4.png b/vlm/train/ALvt7nXa2q/4.png new file mode 100644 index 0000000000000000000000000000000000000000..71fad187e69657e7b922cb44acff4393d3ecccda --- /dev/null +++ b/vlm/train/ALvt7nXa2q/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc738359eaa6277aeddab044b767b721de3c5e18e48bef4ab66b65e8ad7a864e +size 479946 diff --git a/vlm/train/ALvt7nXa2q/5.png b/vlm/train/ALvt7nXa2q/5.png new file mode 100644 index 0000000000000000000000000000000000000000..e3dc15314b31e784c53631888e69cbc26f40a729 --- /dev/null +++ b/vlm/train/ALvt7nXa2q/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed4913ea89d810af5ff9516050b754104cbd3f66a44bfc721c8e0ba8ee50fb88 +size 456661 diff --git a/vlm/train/ALvt7nXa2q/6.png b/vlm/train/ALvt7nXa2q/6.png new file mode 100644 index 0000000000000000000000000000000000000000..9e5f4ef940cf3881d89012f31757fb816ab7398f --- /dev/null +++ b/vlm/train/ALvt7nXa2q/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:471b1d65f984e76fd1ec674c4c45daa92abc0ac1061e9f4cb95397c69f4914ad +size 455518 diff --git a/vlm/train/ALvt7nXa2q/7.png b/vlm/train/ALvt7nXa2q/7.png new file mode 100644 index 0000000000000000000000000000000000000000..c505f3465913fce73e70fc021ba9169f6da54cc5 --- /dev/null +++ b/vlm/train/ALvt7nXa2q/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9eb44f54bb521169febef58e5310563ccdb59e0307735bc4bf5c3185231cd16f +size 532450 diff --git a/vlm/train/ALvt7nXa2q/8.png b/vlm/train/ALvt7nXa2q/8.png new file mode 100644 index 0000000000000000000000000000000000000000..70458c2c4300166f8b800386993781ad73eeb790 --- /dev/null +++ b/vlm/train/ALvt7nXa2q/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a23af798aaefad09587f3e24b99cb936f143d1474341fe7628f1d0c96eb1475 +size 518272 diff --git a/vlm/train/ALvt7nXa2q/9.png b/vlm/train/ALvt7nXa2q/9.png new file mode 100644 index 0000000000000000000000000000000000000000..a23f7e8e724c9835e42b69479a7c0484c81f735c --- /dev/null +++ b/vlm/train/ALvt7nXa2q/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d47ba8353332c710020abf1e7ef9528fc7a720e3e179730ba8c5072276b28ec1 +size 505602 diff --git a/vlm/train/BJedHRVtPB/0.png b/vlm/train/BJedHRVtPB/0.png new file mode 100644 index 0000000000000000000000000000000000000000..9152b5e643a0f88f3d5b3735f50e8f7c98461448 --- /dev/null +++ b/vlm/train/BJedHRVtPB/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3785a64121e1eaa1b39a09075f3d4e3082c339753d58444752b3c9c54879841 +size 631089 diff --git a/vlm/train/BJedHRVtPB/1.png b/vlm/train/BJedHRVtPB/1.png new file mode 100644 index 0000000000000000000000000000000000000000..be1eb40c9d3ee479fa1568bc4ea8fa9f3ee635bf --- /dev/null +++ b/vlm/train/BJedHRVtPB/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc9a387cd6ee2ca3e6b1ccee179d602dcb324e9935a3e2aa2cbc5121066bc010 +size 629201 diff --git a/vlm/train/BJedHRVtPB/10.png b/vlm/train/BJedHRVtPB/10.png new file mode 100644 index 0000000000000000000000000000000000000000..03a8bdd6b8ae70febe5d974b291ec4cc0a408b0f --- /dev/null +++ b/vlm/train/BJedHRVtPB/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa0acf60fc5ccd35d2e1684a06fb9bc7aa140b26505a034e891e0e035d74bfe2 +size 492080 diff --git a/vlm/train/BJedHRVtPB/11.png b/vlm/train/BJedHRVtPB/11.png new file mode 100644 index 0000000000000000000000000000000000000000..b812c71bef5a62495f45e8b9b833ffd408a339ca --- /dev/null +++ b/vlm/train/BJedHRVtPB/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7f9b1766a727b8c3c9aa4f574e51cab749275141909d3d3f2da9d3864461cff +size 505523 diff --git a/vlm/train/BJedHRVtPB/14.png b/vlm/train/BJedHRVtPB/14.png new file mode 100644 index 0000000000000000000000000000000000000000..3e0e5c4d476ef7b12daf7429e24e5d9e483ed05d --- /dev/null +++ b/vlm/train/BJedHRVtPB/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb252c6442a967592be51f188fd66d5e6c214bd77ee3f625d3c872158277755b +size 520700 diff --git a/vlm/train/BJedHRVtPB/15.png b/vlm/train/BJedHRVtPB/15.png new file mode 100644 index 0000000000000000000000000000000000000000..191ffc721dcc40afc080fc2522c1382213297f04 --- /dev/null +++ b/vlm/train/BJedHRVtPB/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06b79f46332919208cbc6fc730adde55004deb7757e416a4efd04110f27846f3 +size 495616 diff --git a/vlm/train/BJedHRVtPB/17.png b/vlm/train/BJedHRVtPB/17.png new file mode 100644 index 0000000000000000000000000000000000000000..4f1965643b65779d976f288ecb6a1664ae828f29 --- /dev/null +++ b/vlm/train/BJedHRVtPB/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a052c61d1571473acfa556c638542e4eac07bdfa84521f5eacf767ba9edf55be +size 462678 diff --git a/vlm/train/BJedHRVtPB/2.png b/vlm/train/BJedHRVtPB/2.png new file mode 100644 index 0000000000000000000000000000000000000000..9f27510dcf163d5cae1b11030c4d98179f5634d0 --- /dev/null +++ b/vlm/train/BJedHRVtPB/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fb1ddd106c798fc5d9cfc137578a202a6d24bc077d37afd0d8de5010b8f80b8 +size 633490 diff --git a/vlm/train/BJedHRVtPB/21.png b/vlm/train/BJedHRVtPB/21.png new file mode 100644 index 0000000000000000000000000000000000000000..662ce78eb6e3a2164dbf986c129da094ef2ca112 --- /dev/null +++ b/vlm/train/BJedHRVtPB/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f529e62fafa87811ae437cb878408a1b186089b0bfe5aae143e546ec85043515 +size 536443 diff --git a/vlm/train/BJedHRVtPB/3.png b/vlm/train/BJedHRVtPB/3.png new file mode 100644 index 0000000000000000000000000000000000000000..8f8fd8d6e2a747cef4249c8a2be7faa521a68427 --- /dev/null +++ b/vlm/train/BJedHRVtPB/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d05f780d1cbb9f66985d636558dd6e5adcf5c2275f7c73f2bfa275116e90d57 +size 537336 diff --git a/vlm/train/BJedHRVtPB/6.png b/vlm/train/BJedHRVtPB/6.png new file mode 100644 index 0000000000000000000000000000000000000000..1088a913e539481819eb185442c194b27ceb910e --- /dev/null +++ b/vlm/train/BJedHRVtPB/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40fa11394a7a8fabab7aaa3fc549b82b7d516ea3257ea165da340707fd76e0e7 +size 611153 diff --git a/vlm/train/BJedHRVtPB/9.png b/vlm/train/BJedHRVtPB/9.png new file mode 100644 index 0000000000000000000000000000000000000000..fe3d0709bca295289b70704d44575b34c659246c --- /dev/null +++ b/vlm/train/BJedHRVtPB/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:842c9c993e4d1356d600ea7ef30304b6f214e6268a4aa260a52f6994d478e3ef +size 530706 diff --git a/vlm/train/BJij4yg0Z/0.png b/vlm/train/BJij4yg0Z/0.png new file mode 100644 index 0000000000000000000000000000000000000000..bbf7f35258fb58168b604ef6af16c89f65ec4ce7 --- /dev/null +++ b/vlm/train/BJij4yg0Z/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6305ea81a778328d38e93d898f96c1c2ff85f389a242cf6375cae91191770ec +size 500854 diff --git a/vlm/train/BJij4yg0Z/1.png b/vlm/train/BJij4yg0Z/1.png new file mode 100644 index 0000000000000000000000000000000000000000..e43c2f0f8bf05a53ccf66049d11dbf11ae6dfe5f --- /dev/null +++ b/vlm/train/BJij4yg0Z/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0841ae5ada529173e9e2075f6cc4e5fb67f32668e512efcd05de6cc39a6aaac1 +size 508889 diff --git a/vlm/train/BJij4yg0Z/10.png b/vlm/train/BJij4yg0Z/10.png new file mode 100644 index 0000000000000000000000000000000000000000..983260d7208c082706583493da8720bf78bf7bfb --- /dev/null +++ b/vlm/train/BJij4yg0Z/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1624917b6f3ed69bd9e51ceaa97869f4858fab2fbeef3d6225127a43084724a1 +size 458276 diff --git a/vlm/train/BJij4yg0Z/11.png b/vlm/train/BJij4yg0Z/11.png new file mode 100644 index 0000000000000000000000000000000000000000..345e066fd6739ef435ea7b213845fd111ee54aa6 --- /dev/null +++ b/vlm/train/BJij4yg0Z/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cd8636ff696ec2e4e32dcfa38529b434804584f3d4f6ede1f3f471db4318079 +size 435419 diff --git a/vlm/train/BJij4yg0Z/12.png b/vlm/train/BJij4yg0Z/12.png new file mode 100644 index 0000000000000000000000000000000000000000..fe23a37c77def504c939b5ac288b8c2370bc95a7 --- /dev/null +++ b/vlm/train/BJij4yg0Z/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4c544f67b34e3d864c146cb1194968e2d2c20f109ba9f0b0c5a82de3c10bb18 +size 416380 diff --git a/vlm/train/BJij4yg0Z/2.png b/vlm/train/BJij4yg0Z/2.png new file mode 100644 index 0000000000000000000000000000000000000000..413c3de173f02a088d17c3c0a1841861fc7f71af --- /dev/null +++ b/vlm/train/BJij4yg0Z/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e87025cdba7c4e10807bad82ac7334d812450367b452a0f120bd6057967acc89 +size 588519 diff --git a/vlm/train/BJij4yg0Z/3.png b/vlm/train/BJij4yg0Z/3.png new file mode 100644 index 0000000000000000000000000000000000000000..d9b535b52f78c8d3da3de541b299237efc5378bf --- /dev/null +++ b/vlm/train/BJij4yg0Z/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d17aa878a4d6d303d99b2e93ff43932c4a82b4b19993f876701dedb83cf24f0 +size 440560 diff --git a/vlm/train/BJij4yg0Z/4.png b/vlm/train/BJij4yg0Z/4.png new file mode 100644 index 0000000000000000000000000000000000000000..dc6af353cb4f20918c02269a7a0609d678600402 --- /dev/null +++ b/vlm/train/BJij4yg0Z/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:954607ea76a63fd9b1c7e6143b9b32d2d78f2726eebceba5ec5f1eabd09a9984 +size 511361 diff --git a/vlm/train/BJij4yg0Z/5.png b/vlm/train/BJij4yg0Z/5.png new file mode 100644 index 0000000000000000000000000000000000000000..b987435761564d99401b94655d15e66343732ef6 --- /dev/null +++ b/vlm/train/BJij4yg0Z/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07c046cf007cd44d1d380eeee23cc9f4ece114d141270effe83adc28ea8e2e1c +size 412742 diff --git a/vlm/train/BJij4yg0Z/6.png b/vlm/train/BJij4yg0Z/6.png new file mode 100644 index 0000000000000000000000000000000000000000..6eeb2029ee82f8709985632ee5e4ff068aeea2ec --- /dev/null +++ b/vlm/train/BJij4yg0Z/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d708a064e891bf4bb92258ee1ff5299f53835d5f6a3d9a7169b4fa614da21543 +size 509170 diff --git a/vlm/train/BJij4yg0Z/7.png b/vlm/train/BJij4yg0Z/7.png new file mode 100644 index 0000000000000000000000000000000000000000..21e3595dcca753026de2d78ad6b570858bae257e --- /dev/null +++ b/vlm/train/BJij4yg0Z/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f20d9ab5152177fd85365319ca08c2300ff311d483291df94416d11698728e49 +size 524529 diff --git a/vlm/train/BJij4yg0Z/8.png b/vlm/train/BJij4yg0Z/8.png new file mode 100644 index 0000000000000000000000000000000000000000..21285d5f7a916533254939712bdd42202d4d9d88 --- /dev/null +++ b/vlm/train/BJij4yg0Z/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:121f8b2387d95df6498ef5feec25a310497187cef76052e94fe78193f5e985c7 +size 513746 diff --git a/vlm/train/BJij4yg0Z/9.png b/vlm/train/BJij4yg0Z/9.png new file mode 100644 index 0000000000000000000000000000000000000000..a48a4f4d506b95fa0c9e39ac7968cc4514fbc649 --- /dev/null +++ b/vlm/train/BJij4yg0Z/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10dcf0cd66b98e4d17b43927390ee85e0d3b74a35cc631a1c3e5d5861c9fc580 +size 469412 diff --git a/vlm/train/BJlguT4YPr/0.png b/vlm/train/BJlguT4YPr/0.png new file mode 100644 index 0000000000000000000000000000000000000000..3adf95ff62203ace9eec7e534be198256e8a9e70 --- /dev/null +++ b/vlm/train/BJlguT4YPr/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b00f6540e7fbaf27855645db9214a20b48a5fc6c5abafdae9acb93f9da8bc247 +size 532213 diff --git a/vlm/train/BJlguT4YPr/1.png b/vlm/train/BJlguT4YPr/1.png new file mode 100644 index 0000000000000000000000000000000000000000..f0d2899568fcd289dd61a5c88711b5e24666a8a6 --- /dev/null +++ b/vlm/train/BJlguT4YPr/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2525e01763f4a8f5b00258b740bdbd7da7886dff4bd4d660c986077e8e5c8c7 +size 597109 diff --git a/vlm/train/BJlguT4YPr/10.png b/vlm/train/BJlguT4YPr/10.png new file mode 100644 index 0000000000000000000000000000000000000000..04b82aef9e7e8ea4b8dd4defc23dcdcbd91eafac --- /dev/null +++ b/vlm/train/BJlguT4YPr/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b968785cd8fb89b3f78259a26466af09523e5fd4c2b9d6d5b5bdfc05e05321b5 +size 586765 diff --git a/vlm/train/BJlguT4YPr/11.png b/vlm/train/BJlguT4YPr/11.png new file mode 100644 index 0000000000000000000000000000000000000000..8935deac801cef77e28273e8ec3f8f8dbf9ce13a --- /dev/null +++ b/vlm/train/BJlguT4YPr/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2b112b42f5086da3cf77bacb2b838b464213a69d88d4f371771839f24cea8ed +size 562584 diff --git a/vlm/train/BJlguT4YPr/12.png b/vlm/train/BJlguT4YPr/12.png new file mode 100644 index 0000000000000000000000000000000000000000..af671af4681c47382eb46f678ad6dbb5c2fdc7d2 --- /dev/null +++ b/vlm/train/BJlguT4YPr/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f2d5ad4128e9473f05f5ba68d5f3a175fe37a94bbf938ca29353895ef8812b6 +size 177324 diff --git a/vlm/train/BJlguT4YPr/13.png b/vlm/train/BJlguT4YPr/13.png new file mode 100644 index 0000000000000000000000000000000000000000..da8d3d8df10000df3760349a20b6af5f2810b65e --- /dev/null +++ b/vlm/train/BJlguT4YPr/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:918286be1b4bbe93ed82232db49278dd70abb1ab57b04c764d0b9fee04576f7e +size 511853 diff --git a/vlm/train/BJlguT4YPr/14.png b/vlm/train/BJlguT4YPr/14.png new file mode 100644 index 0000000000000000000000000000000000000000..ef5f33063397d2c69e15c9b5ec2ab8087eaad447 --- /dev/null +++ b/vlm/train/BJlguT4YPr/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d762629445a598db393ab6afe2e95cdab80defcd2accf7ea40fca8dc95f87a37 +size 409933 diff --git a/vlm/train/BJlguT4YPr/15.png b/vlm/train/BJlguT4YPr/15.png new file mode 100644 index 0000000000000000000000000000000000000000..2abf98a37598bba0b2fce0ef414231df82610598 --- /dev/null +++ b/vlm/train/BJlguT4YPr/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad692007d900524c680d5f5a1848b3751aa3f89ade786d797d08cf3be9f40b85 +size 466582 diff --git a/vlm/train/BJlguT4YPr/16.png b/vlm/train/BJlguT4YPr/16.png new file mode 100644 index 0000000000000000000000000000000000000000..4fc2225064e7bce1cd6c6cabe7ea2b48cf0e2a8d --- /dev/null +++ b/vlm/train/BJlguT4YPr/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:901b894a472df78ebd508c523bd9ccb8fe14bc0407b359591b2cf13fd832ddd0 +size 129270 diff --git a/vlm/train/BJlguT4YPr/2.png b/vlm/train/BJlguT4YPr/2.png new file mode 100644 index 0000000000000000000000000000000000000000..0a8a5240d350f3200ba90494a78e1f2ed501fedb --- /dev/null +++ b/vlm/train/BJlguT4YPr/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e30dbb65415f9258d75e5c3d3c06c80251d6f8d350253cbfa0b4805a5ff2faa +size 542833 diff --git a/vlm/train/BJlguT4YPr/3.png b/vlm/train/BJlguT4YPr/3.png new file mode 100644 index 0000000000000000000000000000000000000000..5e0be53e9ddf3417f15d1cf3fd18b9e26f2823f5 --- /dev/null +++ b/vlm/train/BJlguT4YPr/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb79596b5dbab002a81c7835d516a531c08fd7f2aa839986d0c8db37e7803621 +size 521295 diff --git a/vlm/train/BJlguT4YPr/4.png b/vlm/train/BJlguT4YPr/4.png new file mode 100644 index 0000000000000000000000000000000000000000..a8a489e8730329757e610faa390a93b8e2335573 --- /dev/null +++ b/vlm/train/BJlguT4YPr/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:843339d395d30aaf78e47249acad0155c83df7fdb9921fc20c8ff262f7bd382d +size 543704 diff --git a/vlm/train/BJlguT4YPr/5.png b/vlm/train/BJlguT4YPr/5.png new file mode 100644 index 0000000000000000000000000000000000000000..207b4dc575280db9f8c086df7ca87f09f63a2f45 --- /dev/null +++ b/vlm/train/BJlguT4YPr/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:191c0cd2291875a4b1a3f35e1995b2ee2e735a0dfcfe9c797f94500369597190 +size 595184 diff --git a/vlm/train/BJlguT4YPr/6.png b/vlm/train/BJlguT4YPr/6.png new file mode 100644 index 0000000000000000000000000000000000000000..f4ddb70d605c4b2fa3ea1854e0a2a63683195094 --- /dev/null +++ b/vlm/train/BJlguT4YPr/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca407f93720970b05059cbd7ace30fb0a065ae365518b9dc28d9067cf8d07ffc +size 635308 diff --git a/vlm/train/BJlguT4YPr/7.png b/vlm/train/BJlguT4YPr/7.png new file mode 100644 index 0000000000000000000000000000000000000000..6ef63ec641b2431397be119bfeaf9c19261364c3 --- /dev/null +++ b/vlm/train/BJlguT4YPr/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eedd0ae1665b8d7476933d5abddf2bd7ff49a27f74b9b96111a2000653545b1d +size 573674 diff --git a/vlm/train/BJlguT4YPr/8.png b/vlm/train/BJlguT4YPr/8.png new file mode 100644 index 0000000000000000000000000000000000000000..eb9c98e085f610e4364046fc1570172f6c291ba8 --- /dev/null +++ b/vlm/train/BJlguT4YPr/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f1180bd9faccc8846e6ac09a67d45a547b8cd0b9f4eca9cf3df7bf63332930b +size 587519 diff --git a/vlm/train/BJlguT4YPr/9.png b/vlm/train/BJlguT4YPr/9.png new file mode 100644 index 0000000000000000000000000000000000000000..5f3c6735262725e129558244edf43b869a5ec0f4 --- /dev/null +++ b/vlm/train/BJlguT4YPr/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b99176986ce0565b40f2d23eedaf48e4bb22f66ca87080c73fecfa8fd6de3c96 +size 451692 diff --git a/vlm/train/BJlo91BYPr/0.png b/vlm/train/BJlo91BYPr/0.png new file mode 100644 index 0000000000000000000000000000000000000000..94c922d959b2956321092695d74a6bfc940599c3 --- /dev/null +++ b/vlm/train/BJlo91BYPr/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31daf8cbbab9208923f1faa51218bf0ae86bbf16b894de90a13a58eaef1b14aa +size 515002 diff --git a/vlm/train/BJlo91BYPr/1.png b/vlm/train/BJlo91BYPr/1.png new file mode 100644 index 0000000000000000000000000000000000000000..d267489dc5a15359f65b9ad15e8194836a7fd5e3 --- /dev/null +++ b/vlm/train/BJlo91BYPr/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ada4e7a5dc31827bb070c6fc8e13b8e4c45badfb59c1828f58576b2b6bea4590 +size 506631 diff --git a/vlm/train/BJlo91BYPr/10.png b/vlm/train/BJlo91BYPr/10.png new file mode 100644 index 0000000000000000000000000000000000000000..27d5cfda141eef95054d6b5bc0bf7fbc86dd9a90 --- /dev/null +++ b/vlm/train/BJlo91BYPr/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57d098ac1ba3ebb34808c37bf46afb62d6e1b9c893efbcfff7d3ed862395e6e7 +size 308576 diff --git a/vlm/train/BJlo91BYPr/11.png b/vlm/train/BJlo91BYPr/11.png new file mode 100644 index 0000000000000000000000000000000000000000..07ea4c7e61c29589f432caf52ca9178293df9daa --- /dev/null +++ b/vlm/train/BJlo91BYPr/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7237edacbf08a29c8461ac6e3be702e486e47f0d52b1c939d9fa23e23630d81 +size 356495 diff --git a/vlm/train/BJlo91BYPr/12.png b/vlm/train/BJlo91BYPr/12.png new file mode 100644 index 0000000000000000000000000000000000000000..1f899d19f6192236643b5c3bedbd9c0b45aa38bd --- /dev/null +++ b/vlm/train/BJlo91BYPr/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6a99a3c292e8f42d7d8a5c9b7d0ca8bac5b5f16dfee13d393c9d46107585274 +size 315593 diff --git a/vlm/train/BJlo91BYPr/13.png b/vlm/train/BJlo91BYPr/13.png new file mode 100644 index 0000000000000000000000000000000000000000..bcecb3d69b426eceb6a95debec308aa33c48fc52 --- /dev/null +++ b/vlm/train/BJlo91BYPr/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4390586b1118f99279c3bcbfd405495d354e94eb6260aa4a441ce5379449270 +size 251831 diff --git a/vlm/train/BJlo91BYPr/14.png b/vlm/train/BJlo91BYPr/14.png new file mode 100644 index 0000000000000000000000000000000000000000..a0c91ae0f2d0ac7b80fce7a17ab5d15658bf6850 --- /dev/null +++ b/vlm/train/BJlo91BYPr/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4478a86a5c34aad998c0f6f97b00ab4c0cc752dac61e093d50ab640908c32f9b +size 82273 diff --git a/vlm/train/BJlo91BYPr/2.png b/vlm/train/BJlo91BYPr/2.png new file mode 100644 index 0000000000000000000000000000000000000000..105c771b49f9857843c8f3e5b686751ce4181f70 --- /dev/null +++ b/vlm/train/BJlo91BYPr/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfad66cf9617e1e70fc0432f1c62277348dbaacf474cafd61734266fc6605e8e +size 420012 diff --git a/vlm/train/BJlo91BYPr/3.png b/vlm/train/BJlo91BYPr/3.png new file mode 100644 index 0000000000000000000000000000000000000000..d80de95fb53c54a84f8d20d989485429880b56f7 --- /dev/null +++ b/vlm/train/BJlo91BYPr/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8b01e77cd73903b4c76a30c2b52e09cf1840fc04f1a7d8f103c03437c04e2ef +size 420750 diff --git a/vlm/train/BJlo91BYPr/4.png b/vlm/train/BJlo91BYPr/4.png new file mode 100644 index 0000000000000000000000000000000000000000..7a2f8e9b4101a06f9b22c47ab6e6272ee1b90456 --- /dev/null +++ b/vlm/train/BJlo91BYPr/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:030e1deffc904bd159bfdc257a216a20009534600c28e3206a1f66e811ea6c5e +size 464988 diff --git a/vlm/train/BJlo91BYPr/5.png b/vlm/train/BJlo91BYPr/5.png new file mode 100644 index 0000000000000000000000000000000000000000..cd5b2d5aa3f70fb30fae37a838be7be5a1902198 --- /dev/null +++ b/vlm/train/BJlo91BYPr/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85e97889cd054be5fd1bd8c3a772dd7c852b8821de868dcf69602c645370022c +size 527075 diff --git a/vlm/train/BJlo91BYPr/6.png b/vlm/train/BJlo91BYPr/6.png new file mode 100644 index 0000000000000000000000000000000000000000..3dd4fe2879eb9a52e44141c00d0eb632fb93e2a0 --- /dev/null +++ b/vlm/train/BJlo91BYPr/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05a27f2406cf8123ca24d1c77ed0c44f4d4c330d65bb1ab36b29892aac7bcf0a +size 378044 diff --git a/vlm/train/BJlo91BYPr/7.png b/vlm/train/BJlo91BYPr/7.png new file mode 100644 index 0000000000000000000000000000000000000000..cee4d273e0fd06948db2789e4a1dd82095100db5 --- /dev/null +++ b/vlm/train/BJlo91BYPr/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:202a3f2c8244a09e221d7b5a2fa6c849d6ce3a296cf9f6d40c33fe076e30a848 +size 471384 diff --git a/vlm/train/BJlo91BYPr/8.png b/vlm/train/BJlo91BYPr/8.png new file mode 100644 index 0000000000000000000000000000000000000000..f1c8bbfcafa434262c9698be5b41355fa136d40e --- /dev/null +++ b/vlm/train/BJlo91BYPr/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40a819fe06913e6b7f6be2eebddb9e5aabb6c62ee3f47589cd411aaae38ef9d2 +size 550478 diff --git a/vlm/train/BJlo91BYPr/9.png b/vlm/train/BJlo91BYPr/9.png new file mode 100644 index 0000000000000000000000000000000000000000..c2140e4e841a64548633446aeb05f078cd9e2553 --- /dev/null +++ b/vlm/train/BJlo91BYPr/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53529f6389d0dc26d264139b9d69d916e4cab24aa42354b9494a04c55fde73f3 +size 560609 diff --git a/vlm/train/H1x-x309tm/13.png b/vlm/train/H1x-x309tm/13.png new file mode 100644 index 0000000000000000000000000000000000000000..7fce6f1b653cc38ecfb4cfaefca3e711a326a78c --- /dev/null +++ b/vlm/train/H1x-x309tm/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f504ea270965862053bf9d236b7ea1c8f5335c8caf2792995288e4e048a68a55 +size 439506 diff --git a/vlm/train/H1x-x309tm/16.png b/vlm/train/H1x-x309tm/16.png new file mode 100644 index 0000000000000000000000000000000000000000..643e3ca463748e2d86c06db7b2f94990bab56ae6 --- /dev/null +++ b/vlm/train/H1x-x309tm/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4ed70f1e1403d205522a9a879f5c53b245f9e7cb5c6977f0c7d14738eacbb14 +size 290727 diff --git a/vlm/train/H1x-x309tm/18.png b/vlm/train/H1x-x309tm/18.png new file mode 100644 index 0000000000000000000000000000000000000000..ba8c6c315ab896ea7c7203012a4cc856c578f8ec --- /dev/null +++ b/vlm/train/H1x-x309tm/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b723b045a1fb8ef46201d364843ca87e21a21e99091e16b371a0569dd39a5c6a +size 325775 diff --git a/vlm/train/H1x-x309tm/19.png b/vlm/train/H1x-x309tm/19.png new file mode 100644 index 0000000000000000000000000000000000000000..a788693fbf076a6fbf361239f538afc3c733a1d4 --- /dev/null +++ b/vlm/train/H1x-x309tm/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f18403b437647532c0baec63aafb4ef5537c4b90bc2674b607b33eb7391462eb +size 285668 diff --git a/vlm/train/H1x-x309tm/26.png b/vlm/train/H1x-x309tm/26.png new file mode 100644 index 0000000000000000000000000000000000000000..c831140728f549d6bb56e6aa6c4ac5e66ec20324 --- /dev/null +++ b/vlm/train/H1x-x309tm/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c85addab8ef75938e8fc62bd64dae651f76576f0916ba8339f729fc494c9a53a +size 261181 diff --git a/vlm/train/H1x-x309tm/4.png b/vlm/train/H1x-x309tm/4.png new file mode 100644 index 0000000000000000000000000000000000000000..e30cdc2adfc9b0fe68d91ba3497531fb3be57ac5 --- /dev/null +++ b/vlm/train/H1x-x309tm/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f40b7a40a3c93b71645689537f88fa19065eb8fc29508c8382c1805b3eec6671 +size 555698 diff --git a/vlm/train/HJMHpjC9Ym/0.png b/vlm/train/HJMHpjC9Ym/0.png new file mode 100644 index 0000000000000000000000000000000000000000..ba58bd0b8633729c5c54c37bdd63b1ea9e8e64ad --- /dev/null +++ b/vlm/train/HJMHpjC9Ym/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf6f6a713c7cff5eb0505f377a9daa35447a305868110d84e453e1007f2a2ab4 +size 524658 diff --git a/vlm/train/HJMHpjC9Ym/1.png b/vlm/train/HJMHpjC9Ym/1.png new file mode 100644 index 0000000000000000000000000000000000000000..dd460b860e541c7f5312e2ff6ae23c4c0053d16e --- /dev/null +++ b/vlm/train/HJMHpjC9Ym/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aadd48045f041627f0f41aa6406274171d21dcc96d4aa321bf096fae1bfa3bdc +size 541412 diff --git a/vlm/train/HJMHpjC9Ym/10.png b/vlm/train/HJMHpjC9Ym/10.png new file mode 100644 index 0000000000000000000000000000000000000000..c63dc9ed80c919df2113d38f904bb74fda061578 --- /dev/null +++ b/vlm/train/HJMHpjC9Ym/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:863d5c421cdd91b859b012197f7b8305bcc2c75991a240cc302068daea42c613 +size 602822 diff --git a/vlm/train/HJMHpjC9Ym/11.png b/vlm/train/HJMHpjC9Ym/11.png new file mode 100644 index 0000000000000000000000000000000000000000..c9b87982063f16b532aec62a7db7635d599bb7b9 --- /dev/null +++ b/vlm/train/HJMHpjC9Ym/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4e4ed68154c8d6b592c1c63c5c531bd83b776aa6b98cd3ac1c3f44ca7044e0a +size 291239 diff --git a/vlm/train/HJMHpjC9Ym/12.png b/vlm/train/HJMHpjC9Ym/12.png new file mode 100644 index 0000000000000000000000000000000000000000..84a594cee1f04cfe90b3e5df7b1a1ac218e2dd53 --- /dev/null +++ b/vlm/train/HJMHpjC9Ym/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de658bcc9dd9a57a14893157f6d9160dfce860f652217a9f8ec908613def96be +size 456366 diff --git a/vlm/train/HJMHpjC9Ym/13.png b/vlm/train/HJMHpjC9Ym/13.png new file mode 100644 index 0000000000000000000000000000000000000000..c77211d7b38dd28ef7f90ea843c4afef5f342bc4 --- /dev/null +++ b/vlm/train/HJMHpjC9Ym/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f5f26ac97548690800049f7f2bda3c2d572b8cd5f97b33d57c6ace230b9cd75 +size 446764 diff --git a/vlm/train/HJMHpjC9Ym/14.png b/vlm/train/HJMHpjC9Ym/14.png new file mode 100644 index 0000000000000000000000000000000000000000..f4204d7ab47be3f68a979d1fa001b6ea36df280d --- /dev/null +++ b/vlm/train/HJMHpjC9Ym/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1143ba5f7cc1badc3f3f7731deb944a4548205370a843265f06400fbed91cfcc +size 623563 diff --git a/vlm/train/HJMHpjC9Ym/15.png b/vlm/train/HJMHpjC9Ym/15.png new file mode 100644 index 0000000000000000000000000000000000000000..891a8a2eeca5a9a4df308c15207e6b0e282cf272 --- /dev/null +++ b/vlm/train/HJMHpjC9Ym/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e79cf5754e8d09273cf3d64ce6b9350349b900400d024667aa93b0a124ee26ba +size 465513 diff --git a/vlm/train/HJMHpjC9Ym/16.png b/vlm/train/HJMHpjC9Ym/16.png new file mode 100644 index 0000000000000000000000000000000000000000..6e7875a3d23dd6b55cd9ad2c5c072ac754d73080 --- /dev/null +++ b/vlm/train/HJMHpjC9Ym/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:138feb670c4b1392402007a87c508f9aacbc72fe7923dc4f7a92f20a03b7a563 +size 466178 diff --git a/vlm/train/HJMHpjC9Ym/17.png b/vlm/train/HJMHpjC9Ym/17.png new file mode 100644 index 0000000000000000000000000000000000000000..f18a7c3e83162fe74d731e131bd4b5303e232d39 --- /dev/null +++ b/vlm/train/HJMHpjC9Ym/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99f725a541e8ca318894a1806f3088d68515cd787e17ed95a53690bd3207deb8 +size 574647 diff --git a/vlm/train/HJMHpjC9Ym/18.png b/vlm/train/HJMHpjC9Ym/18.png new file mode 100644 index 0000000000000000000000000000000000000000..6ab1f58d2350d09227c95d648cd45daf65162677 --- /dev/null +++ b/vlm/train/HJMHpjC9Ym/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57172f06277ff1ce2d4e83757692c62f9165f36f19dbca07a8dba04aa2ea32b1 +size 502842 diff --git a/vlm/train/HJMHpjC9Ym/19.png b/vlm/train/HJMHpjC9Ym/19.png new file mode 100644 index 0000000000000000000000000000000000000000..6d6eff674cc737ef0555844bc314fdcbb210881c --- /dev/null +++ b/vlm/train/HJMHpjC9Ym/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8220c561ae14f4eb13c60c343c38d244251eb0412e02868e9d0612abeecd6a6a +size 143699 diff --git a/vlm/train/HJMHpjC9Ym/2.png b/vlm/train/HJMHpjC9Ym/2.png new file mode 100644 index 0000000000000000000000000000000000000000..4e6eb3acc36d2952ce094ac9e13834fb70fba511 --- /dev/null +++ b/vlm/train/HJMHpjC9Ym/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ade9f21dff02190a8a39557a4b5f092ddb4bf4be5d42a739e6495796e10c3aa5 +size 547771 diff --git a/vlm/train/HJMHpjC9Ym/3.png b/vlm/train/HJMHpjC9Ym/3.png new file mode 100644 index 0000000000000000000000000000000000000000..8657e00eaf8a65f49b3bdb7a47d4ae0fd591462f --- /dev/null +++ b/vlm/train/HJMHpjC9Ym/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4a22b8e0160ce4adb2fccd1fdefa75360b5b55d78566501ed49ffa4ff422da4 +size 557343 diff --git a/vlm/train/HJMHpjC9Ym/4.png b/vlm/train/HJMHpjC9Ym/4.png new file mode 100644 index 0000000000000000000000000000000000000000..1067c3667d5a24083d453f048f350e3fc1653836 --- /dev/null +++ b/vlm/train/HJMHpjC9Ym/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ba3534efd4c8d6835cb3299ec7bdb8a76d569318b6f58e2b442bf54a0dc8b4f +size 619923 diff --git a/vlm/train/HJMHpjC9Ym/5.png b/vlm/train/HJMHpjC9Ym/5.png new file mode 100644 index 0000000000000000000000000000000000000000..b83d19897f2a9bde6a3a3174654e1b54f0e417b1 --- /dev/null +++ b/vlm/train/HJMHpjC9Ym/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3fb16202f072c1b4cf3808f35c8d306909a5adc2e957838e8eb2a0f96797d76a +size 630443 diff --git a/vlm/train/HJMHpjC9Ym/6.png b/vlm/train/HJMHpjC9Ym/6.png new file mode 100644 index 0000000000000000000000000000000000000000..c900b9e905f1a35156e352d0cf9753c32d544842 --- /dev/null +++ b/vlm/train/HJMHpjC9Ym/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54f0a7a35ecc6eab55c0c78a6bea881083744a7cce2539fba1d24d0a8712b51b +size 602406 diff --git a/vlm/train/HJMHpjC9Ym/7.png b/vlm/train/HJMHpjC9Ym/7.png new file mode 100644 index 0000000000000000000000000000000000000000..1698026e0bc106e46949f77d46a25a8298514e0a --- /dev/null +++ b/vlm/train/HJMHpjC9Ym/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62e19c388509290d4c7927d02843808ac32f646c2aae54b7a2cab30c247631f1 +size 562972 diff --git a/vlm/train/HJMHpjC9Ym/8.png b/vlm/train/HJMHpjC9Ym/8.png new file mode 100644 index 0000000000000000000000000000000000000000..167fcdc21bf74bf43852fcfc9f2a8acaf721171b --- /dev/null +++ b/vlm/train/HJMHpjC9Ym/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24617ee08b3dec8cfa2d6bc7c5f51310074d39502cab2f2e93a13d1003264914 +size 565190 diff --git a/vlm/train/HJMHpjC9Ym/9.png b/vlm/train/HJMHpjC9Ym/9.png new file mode 100644 index 0000000000000000000000000000000000000000..92137e767385b1eaf3dc9bb7abd02b247fe38f74 --- /dev/null +++ b/vlm/train/HJMHpjC9Ym/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a983c1d0a039f7e7d6e42fb7e9aed21217cc40d945a24afe25fdd129c1e175ae +size 570922 diff --git a/vlm/train/HyBbjW-RW/0.png b/vlm/train/HyBbjW-RW/0.png new file mode 100644 index 0000000000000000000000000000000000000000..bb4d7fa7f6baaf9efa6fa99ba75ac1c3aacc4aba --- /dev/null +++ b/vlm/train/HyBbjW-RW/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8773dc50dfd2da717c4f3d3f04db931b54787eaf927536a2446b7c71a1822eb0 +size 492123 diff --git a/vlm/train/HyBbjW-RW/1.png b/vlm/train/HyBbjW-RW/1.png new file mode 100644 index 0000000000000000000000000000000000000000..9cef6515ec094d3b0beed7637e2cd8c247024913 --- /dev/null +++ b/vlm/train/HyBbjW-RW/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a8d168a45e0afbbeba9d5b84052e86eb95d42ab8e3706da21881f14d6e836b1 +size 510693 diff --git a/vlm/train/HyBbjW-RW/2.png b/vlm/train/HyBbjW-RW/2.png new file mode 100644 index 0000000000000000000000000000000000000000..6126a4d224902ff31c1a5a27db4cd6d426217963 --- /dev/null +++ b/vlm/train/HyBbjW-RW/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66ad32f4d637b196b26bc067c4dd1495336d16e87c0c88d2c6f776db78caf740 +size 553710 diff --git a/vlm/train/HyBbjW-RW/3.png b/vlm/train/HyBbjW-RW/3.png new file mode 100644 index 0000000000000000000000000000000000000000..1e70099ad82f168dfe4392660fa2a421530a8565 --- /dev/null +++ b/vlm/train/HyBbjW-RW/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a8bad669875027599cf86b3af0ce6f33ec5d594a7d0b3c678a8d2d7a9d0feff +size 556941 diff --git a/vlm/train/HyBbjW-RW/4.png b/vlm/train/HyBbjW-RW/4.png new file mode 100644 index 0000000000000000000000000000000000000000..eb133fffe1e2f5209066a773bb2f42d0bf148ee3 --- /dev/null +++ b/vlm/train/HyBbjW-RW/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecdae624efcda40adf504325586251587abe0ea9aa9b1d89799fef8ef406f581 +size 485593 diff --git a/vlm/train/HyBbjW-RW/5.png b/vlm/train/HyBbjW-RW/5.png new file mode 100644 index 0000000000000000000000000000000000000000..6633beef6eded005986adf1d6ce907d5ceaf165e --- /dev/null +++ b/vlm/train/HyBbjW-RW/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a25cddb714daf0316b586c39d0e1731655bc642765029f8d19452d424fd75ae9 +size 423429 diff --git a/vlm/train/HyBbjW-RW/6.png b/vlm/train/HyBbjW-RW/6.png new file mode 100644 index 0000000000000000000000000000000000000000..c25cd0ad09cbc58499a466771137e9e323493f3f --- /dev/null +++ b/vlm/train/HyBbjW-RW/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9e7bfe2777b686a24698c87a860fe08e7c22bd52abc01adabb3401b54595f6b +size 534797 diff --git a/vlm/train/HyBbjW-RW/7.png b/vlm/train/HyBbjW-RW/7.png new file mode 100644 index 0000000000000000000000000000000000000000..394e3653a0543815f9e4e45d5e864a9195bb26db --- /dev/null +++ b/vlm/train/HyBbjW-RW/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4268a81c0b91d21c9671ebbf4cbe3b03e65544d05249faae0f0267109a2ccd36 +size 426064 diff --git a/vlm/train/HyBbjW-RW/8.png b/vlm/train/HyBbjW-RW/8.png new file mode 100644 index 0000000000000000000000000000000000000000..f4511f7e8fdf717f5e97a30b913831af75ebb1fd --- /dev/null +++ b/vlm/train/HyBbjW-RW/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:966dc95963d1f96e9dc8d4886c7e98e81d289ff617eb02e6c6fc77816b5886d5 +size 477011 diff --git a/vlm/train/HyBbjW-RW/9.png b/vlm/train/HyBbjW-RW/9.png new file mode 100644 index 0000000000000000000000000000000000000000..af83c62fcb9c4b7cef80d317239146f5ebd854c5 --- /dev/null +++ b/vlm/train/HyBbjW-RW/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb7ca5ba284f01a6de889e8d9de85c2caae7f2e6f14ebd34a68f30206ff25610 +size 348213 diff --git a/vlm/train/M_lkFOwVdYc/0.png b/vlm/train/M_lkFOwVdYc/0.png new file mode 100644 index 0000000000000000000000000000000000000000..021b69fb1f1f3f29d7ba61b7bd62abfe2db6fb07 --- /dev/null +++ b/vlm/train/M_lkFOwVdYc/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a365f28c14b6cc5932b5a26204150f0a412646ef1398174f9dfb632353444380 +size 439723 diff --git a/vlm/train/M_lkFOwVdYc/1.png b/vlm/train/M_lkFOwVdYc/1.png new file mode 100644 index 0000000000000000000000000000000000000000..681edd660f913b4d86b1b0854e281739e052773a --- /dev/null +++ b/vlm/train/M_lkFOwVdYc/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f967a86086ea35b71cbf953d407fea3c05d0b3e127a0a2b8e3b4fb8012dea873 +size 563040 diff --git a/vlm/train/M_lkFOwVdYc/10.png b/vlm/train/M_lkFOwVdYc/10.png new file mode 100644 index 0000000000000000000000000000000000000000..021c020d5dc2d5380ae0cac12ffca558dde9998d --- /dev/null +++ b/vlm/train/M_lkFOwVdYc/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df3ae3aaa9d59550e39d60fdd8193faad41ea463eb4b0335bf7cd18f81cc1395 +size 531648 diff --git a/vlm/train/M_lkFOwVdYc/11.png b/vlm/train/M_lkFOwVdYc/11.png new file mode 100644 index 0000000000000000000000000000000000000000..046c05a0a4cef21704ea728d5615a5f777e87132 --- /dev/null +++ b/vlm/train/M_lkFOwVdYc/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e5423e9ac414f1f20d1543ec70aa40949a6ec2b24a0dbaeaa3a9bb58cd6602d +size 497575 diff --git a/vlm/train/M_lkFOwVdYc/12.png b/vlm/train/M_lkFOwVdYc/12.png new file mode 100644 index 0000000000000000000000000000000000000000..b53d26dc8b64d0587b097040e1d90e3c61226b4c --- /dev/null +++ b/vlm/train/M_lkFOwVdYc/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bfc4da64fc908aaa89d484e23023867b8e6c3b5665383850ff459593f593766 +size 523752 diff --git a/vlm/train/M_lkFOwVdYc/13.png b/vlm/train/M_lkFOwVdYc/13.png new file mode 100644 index 0000000000000000000000000000000000000000..d287a3cb698b978f68d4e8f7211fbf424a5654ec --- /dev/null +++ b/vlm/train/M_lkFOwVdYc/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffd8adfe80587e8c9869e210daac769ac9f461b4c163e618e6296fa81563f43e +size 147332 diff --git a/vlm/train/M_lkFOwVdYc/2.png b/vlm/train/M_lkFOwVdYc/2.png new file mode 100644 index 0000000000000000000000000000000000000000..9830c8f816c14c5becb2e8b727156333544a76a8 --- /dev/null +++ b/vlm/train/M_lkFOwVdYc/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cc5e9efb5ed09d6af4cf2b99659a617151a53388b79e88fdb4adb6b20475d3b +size 579902 diff --git a/vlm/train/M_lkFOwVdYc/3.png b/vlm/train/M_lkFOwVdYc/3.png new file mode 100644 index 0000000000000000000000000000000000000000..48950ab9f03efdf8e0e21924742f0f2388b6b3e9 --- /dev/null +++ b/vlm/train/M_lkFOwVdYc/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3e75e8c27fc534aa03122e6fbadc03c2c5d338193115d8ffea891d99b1e178d +size 555786 diff --git a/vlm/train/M_lkFOwVdYc/4.png b/vlm/train/M_lkFOwVdYc/4.png new file mode 100644 index 0000000000000000000000000000000000000000..8043ff2f8a7e123fadf65d178e7436f52e060145 --- /dev/null +++ b/vlm/train/M_lkFOwVdYc/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f9879c1959f21a9f96c34ad2716deeee8fff1291c050924de8f156c7dab309c +size 531879 diff --git a/vlm/train/M_lkFOwVdYc/5.png b/vlm/train/M_lkFOwVdYc/5.png new file mode 100644 index 0000000000000000000000000000000000000000..e314f2f4385eecc71417fd99100e547e7b81d3a7 --- /dev/null +++ b/vlm/train/M_lkFOwVdYc/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7da22727ee294e3a12d06421d3cd729ea2c04a7f97866f7caf89d036cc3d9d5 +size 531909 diff --git a/vlm/train/M_lkFOwVdYc/6.png b/vlm/train/M_lkFOwVdYc/6.png new file mode 100644 index 0000000000000000000000000000000000000000..55835819cbc259976a754c51d2f15ef8bc57c370 --- /dev/null +++ b/vlm/train/M_lkFOwVdYc/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78198731347206e7e597b987a39384aa38b4664f90607ffb6dcd7058100abf4e +size 522146 diff --git a/vlm/train/M_lkFOwVdYc/7.png b/vlm/train/M_lkFOwVdYc/7.png new file mode 100644 index 0000000000000000000000000000000000000000..b2eababa768a87b924a67c634a6928e006adb155 --- /dev/null +++ b/vlm/train/M_lkFOwVdYc/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33c14bf94bc1032a70ecaa98bec91a210e364f3d44f40cdb8f0273c0defd7074 +size 542609 diff --git a/vlm/train/M_lkFOwVdYc/8.png b/vlm/train/M_lkFOwVdYc/8.png new file mode 100644 index 0000000000000000000000000000000000000000..fd696ad06a691dee375950cb473f0a21bcf29cad --- /dev/null +++ b/vlm/train/M_lkFOwVdYc/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f41b2db4d2b0612dcd0215a5ba4f0661fe66a93035ccab8913af473b1004dee1 +size 498406 diff --git a/vlm/train/M_lkFOwVdYc/9.png b/vlm/train/M_lkFOwVdYc/9.png new file mode 100644 index 0000000000000000000000000000000000000000..1816164d06da0223ba032fced7565a6e55be5733 --- /dev/null +++ b/vlm/train/M_lkFOwVdYc/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7197b17012e4c36ef7f448dbe75b677e556aaeb9e80fab8cba224ccb4161b88 +size 593676 diff --git a/vlm/train/PbEHqvFtcS/0.png b/vlm/train/PbEHqvFtcS/0.png new file mode 100644 index 0000000000000000000000000000000000000000..8dc1e47918bbaa1ecf087c9be2754b954cca4e45 --- /dev/null +++ b/vlm/train/PbEHqvFtcS/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9dc5af957be52f52fb34b0958b6880bc527956602d13d71bc81b486f496663d +size 540744 diff --git a/vlm/train/PbEHqvFtcS/1.png b/vlm/train/PbEHqvFtcS/1.png new file mode 100644 index 0000000000000000000000000000000000000000..794a826a4ad22c38db3977ce22f223f0cfbf82fc --- /dev/null +++ b/vlm/train/PbEHqvFtcS/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:376547a40a6be6826355cd752ccf2f25edb10a60079d0921570469b40924d40f +size 621172 diff --git a/vlm/train/PbEHqvFtcS/10.png b/vlm/train/PbEHqvFtcS/10.png new file mode 100644 index 0000000000000000000000000000000000000000..422965b06f8e71ef9115ee6357ba0ba3a9c3c271 --- /dev/null +++ b/vlm/train/PbEHqvFtcS/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1398d4a28fda0303f0acf3b21d5a811d10607f5fb939505748a0f2ffe41795a1 +size 269806 diff --git a/vlm/train/PbEHqvFtcS/11.png b/vlm/train/PbEHqvFtcS/11.png new file mode 100644 index 0000000000000000000000000000000000000000..fd0b379c08cfa53578a6b741be7744a9c12ce077 --- /dev/null +++ b/vlm/train/PbEHqvFtcS/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eca87cc61f29026887ad4105c8b0cbc990f51468110b0a981475e075e2dc2b00 +size 448033 diff --git a/vlm/train/PbEHqvFtcS/12.png b/vlm/train/PbEHqvFtcS/12.png new file mode 100644 index 0000000000000000000000000000000000000000..a1d316bc4a7043f68d955559bcdf9dcaa7a76498 --- /dev/null +++ b/vlm/train/PbEHqvFtcS/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27b850421aaece39209ff9b5107227a901c616ced5fdeb0d27e5c483d13cefc5 +size 278588 diff --git a/vlm/train/PbEHqvFtcS/13.png b/vlm/train/PbEHqvFtcS/13.png new file mode 100644 index 0000000000000000000000000000000000000000..6823edd3a3ebd8d8a9aeaa9a6a63beb83a3bb8bf --- /dev/null +++ b/vlm/train/PbEHqvFtcS/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4b1775eaadd7b4b4ffab2c6ed5e277fee4e1f066097687312d2d0539a4e0cc5 +size 291784 diff --git a/vlm/train/PbEHqvFtcS/14.png b/vlm/train/PbEHqvFtcS/14.png new file mode 100644 index 0000000000000000000000000000000000000000..5a57a8a50000bd0624066456edc19fc6edb55b53 --- /dev/null +++ b/vlm/train/PbEHqvFtcS/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb02d2a547dc8a92760bea4c546596e0102e98b4dff0cc3ffd5c34750e484208 +size 421114 diff --git a/vlm/train/PbEHqvFtcS/15.png b/vlm/train/PbEHqvFtcS/15.png new file mode 100644 index 0000000000000000000000000000000000000000..c614e701a4c76445d9943730f774881143253899 --- /dev/null +++ b/vlm/train/PbEHqvFtcS/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d43d2410a66c4a37856a7c307dc2c78dfe2fb292c4f82ba2d562bd6fb79aa858 +size 396906 diff --git a/vlm/train/PbEHqvFtcS/16.png b/vlm/train/PbEHqvFtcS/16.png new file mode 100644 index 0000000000000000000000000000000000000000..9846e2fd557241ed5a80bd174e2f298dc911059a --- /dev/null +++ b/vlm/train/PbEHqvFtcS/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1223664bc017eff1c4c06a3c9e8056e012ae3d52d69c206ebb1e6e4f50beb25b +size 421003 diff --git a/vlm/train/PbEHqvFtcS/17.png b/vlm/train/PbEHqvFtcS/17.png new file mode 100644 index 0000000000000000000000000000000000000000..24408e81db148a9467b749fcd0883d98578fb46c --- /dev/null +++ b/vlm/train/PbEHqvFtcS/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d84b26a9fd0485c6e9dc6e2fc2c162dc187ddfd3b8f97007f0776b70383b1ef +size 380204 diff --git a/vlm/train/PbEHqvFtcS/18.png b/vlm/train/PbEHqvFtcS/18.png new file mode 100644 index 0000000000000000000000000000000000000000..9ea2d196da957bcd9ddcee8b584860237eb00e03 --- /dev/null +++ b/vlm/train/PbEHqvFtcS/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0afb08c3cc541331b0dc3af299e9f856b2a92c6415f212993fa190476c1cb7d7 +size 525483 diff --git a/vlm/train/PbEHqvFtcS/19.png b/vlm/train/PbEHqvFtcS/19.png new file mode 100644 index 0000000000000000000000000000000000000000..411fa71c72f40a9ed2beaaa3cf3efec7a3c87237 --- /dev/null +++ b/vlm/train/PbEHqvFtcS/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92162ac59f209406c45c0b473c9d6035c185be273c560ba6643f3b4c5eca34e7 +size 534631 diff --git a/vlm/train/PbEHqvFtcS/2.png b/vlm/train/PbEHqvFtcS/2.png new file mode 100644 index 0000000000000000000000000000000000000000..e0d60cce86ac2f663b2402056d7d0db729fd5fb1 --- /dev/null +++ b/vlm/train/PbEHqvFtcS/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c05e210d5324ed6d2a7180b3f9bdb576fe88098fb8c0db6b7f8560fa4287a2a +size 647548 diff --git a/vlm/train/PbEHqvFtcS/20.png b/vlm/train/PbEHqvFtcS/20.png new file mode 100644 index 0000000000000000000000000000000000000000..6a1676ce8cf4e3479a81eb9973127ab1c58b2d65 --- /dev/null +++ b/vlm/train/PbEHqvFtcS/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bee0bbce9cb22b5b0cc76f50baadec26b58b4dd09dabc7b250f65da5db4e667b +size 546808 diff --git a/vlm/train/PbEHqvFtcS/21.png b/vlm/train/PbEHqvFtcS/21.png new file mode 100644 index 0000000000000000000000000000000000000000..1d4288295ddd49e98c81ae9581296ce417394a36 --- /dev/null +++ b/vlm/train/PbEHqvFtcS/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56b62ea86715e7418c5c840ef3b476f1e010eb6b6822ba8317120d0c3198dc0a +size 509989 diff --git a/vlm/train/PbEHqvFtcS/22.png b/vlm/train/PbEHqvFtcS/22.png new file mode 100644 index 0000000000000000000000000000000000000000..bf1e4b0093cc6485cdf76b6546dbd61cf8a93ca8 --- /dev/null +++ b/vlm/train/PbEHqvFtcS/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcaf25838d119c9f9d6dde33690098b3303e365d96056f448aedf4779f6cf10a +size 509633 diff --git a/vlm/train/PbEHqvFtcS/23.png b/vlm/train/PbEHqvFtcS/23.png new file mode 100644 index 0000000000000000000000000000000000000000..f039b0c98f2b9c68a9fd02e5bc079816c77a11ea --- /dev/null +++ b/vlm/train/PbEHqvFtcS/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b87377bced27b9ffb637f0161b6842cbd1bcb74d1f28c768f5c9afd9ec1f076d +size 210888 diff --git a/vlm/train/PbEHqvFtcS/3.png b/vlm/train/PbEHqvFtcS/3.png new file mode 100644 index 0000000000000000000000000000000000000000..b214610986d8078421d9deff746d2d9a85c7cd71 --- /dev/null +++ b/vlm/train/PbEHqvFtcS/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:171e9c366506fb2a98af83b15d3658bd5f8e34a7164f5f1256cf1e77dca8f011 +size 547221 diff --git a/vlm/train/PbEHqvFtcS/4.png b/vlm/train/PbEHqvFtcS/4.png new file mode 100644 index 0000000000000000000000000000000000000000..0070e2de6f9cc286a08f29344bef80a970cd6bf8 --- /dev/null +++ b/vlm/train/PbEHqvFtcS/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f669e914b5174aa90d4bff07472a1e19d8a83079e9f764d022bb8434e50e0bde +size 648027 diff --git a/vlm/train/PbEHqvFtcS/5.png b/vlm/train/PbEHqvFtcS/5.png new file mode 100644 index 0000000000000000000000000000000000000000..993d59e715ccfafa95c9321482822e7eb5a8b459 --- /dev/null +++ b/vlm/train/PbEHqvFtcS/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e1d53bc7c427d4bd59fc67315232e5ce4d81a45d7c84b3d40a1a99bf46f87a6 +size 491239 diff --git a/vlm/train/PbEHqvFtcS/6.png b/vlm/train/PbEHqvFtcS/6.png new file mode 100644 index 0000000000000000000000000000000000000000..3bd9e49ee06d3005d7a79de67bc95c135d0c17ad --- /dev/null +++ b/vlm/train/PbEHqvFtcS/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93db09f99a453d2a409e23a81590ba82a762d6fb4d58bbf965b78924bf8aa01d +size 603934 diff --git a/vlm/train/PbEHqvFtcS/7.png b/vlm/train/PbEHqvFtcS/7.png new file mode 100644 index 0000000000000000000000000000000000000000..bfac7fe71c38fa6966ae24603dd662f71ea22ff8 --- /dev/null +++ b/vlm/train/PbEHqvFtcS/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d18269fa865a09b474fc1072e11faf33ff1974fd11f44e3bf77d4d44ef871160 +size 668309 diff --git a/vlm/train/PbEHqvFtcS/8.png b/vlm/train/PbEHqvFtcS/8.png new file mode 100644 index 0000000000000000000000000000000000000000..37df27312c9279014e97b84fe39a87f6ec629346 --- /dev/null +++ b/vlm/train/PbEHqvFtcS/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbe70aad04a637c66317081aed51b451e83d7e175453893711c06f1fc82ba5d4 +size 650705 diff --git a/vlm/train/PbEHqvFtcS/9.png b/vlm/train/PbEHqvFtcS/9.png new file mode 100644 index 0000000000000000000000000000000000000000..caebe1c7596849a5951a5dfd191687ef2ba810b9 --- /dev/null +++ b/vlm/train/PbEHqvFtcS/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9e4fe5b5ad762b78a119373b19fc9e05bfe03e52512eee95f20f3fa6c17ebc9 +size 598380 diff --git a/vlm/train/S1EHOsC9tX/0.png b/vlm/train/S1EHOsC9tX/0.png new file mode 100644 index 0000000000000000000000000000000000000000..0d766999bb23f29db22db6d0afe35fb81773cf2c --- /dev/null +++ b/vlm/train/S1EHOsC9tX/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:871a6c28960713b84416a057ea569336bb0949c2902ca53471fe6ae3922ffe62 +size 491632 diff --git a/vlm/train/S1EHOsC9tX/1.png b/vlm/train/S1EHOsC9tX/1.png new file mode 100644 index 0000000000000000000000000000000000000000..4dd8cd5a0e0a6e99f023cb3b4fdb35e81f2e69bf --- /dev/null +++ b/vlm/train/S1EHOsC9tX/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41c59e273e4c681ebc8ad375dfb1b5efd0747259b8db650bf88ec87f97e5240a +size 567986 diff --git a/vlm/train/S1EHOsC9tX/10.png b/vlm/train/S1EHOsC9tX/10.png new file mode 100644 index 0000000000000000000000000000000000000000..64b50e673e510fecf51d360d12ee35b1898ab372 --- /dev/null +++ b/vlm/train/S1EHOsC9tX/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:415a1ff50843df61d3379683a95b2ce595365b5291c484492352e95af920f308 +size 399722 diff --git a/vlm/train/S1EHOsC9tX/11.png b/vlm/train/S1EHOsC9tX/11.png new file mode 100644 index 0000000000000000000000000000000000000000..563c0aa70f9eb91538b1595dbe74602d7be24910 --- /dev/null +++ b/vlm/train/S1EHOsC9tX/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5dd3051fb3800df3271bd9219ebef4b5c83ab680801ca95712d47e20b09ad779 +size 396078 diff --git a/vlm/train/S1EHOsC9tX/12.png b/vlm/train/S1EHOsC9tX/12.png new file mode 100644 index 0000000000000000000000000000000000000000..4247708302cc6aedb6b333761e66ad5188235932 --- /dev/null +++ b/vlm/train/S1EHOsC9tX/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13ec59a6808f735c99e6bb5a7b7d9376a66e20b1c4ac0da8f0163b9e1d4b7043 +size 679504 diff --git a/vlm/train/S1EHOsC9tX/13.png b/vlm/train/S1EHOsC9tX/13.png new file mode 100644 index 0000000000000000000000000000000000000000..e57fadcce9d514bc096edabd8721aa4dba4de55b --- /dev/null +++ b/vlm/train/S1EHOsC9tX/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da92c43edbd12b1773b458084361b244e7b9a70abee96235729f1c805df1fb05 +size 111601 diff --git a/vlm/train/S1EHOsC9tX/14.png b/vlm/train/S1EHOsC9tX/14.png new file mode 100644 index 0000000000000000000000000000000000000000..bef08ba48fa1dc5130ac51832487e1a7bb5a267e --- /dev/null +++ b/vlm/train/S1EHOsC9tX/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:757641c72fea671295120ac53e5489adc88707c6e648049dacd226ee58a36782 +size 323927 diff --git a/vlm/train/S1EHOsC9tX/15.png b/vlm/train/S1EHOsC9tX/15.png new file mode 100644 index 0000000000000000000000000000000000000000..076b372d55c1e8f0a342d3e2cb5119f30feff1f1 --- /dev/null +++ b/vlm/train/S1EHOsC9tX/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4e06e861792850875ec0b0900fbfdffee93bed01b0e78c916589064f76257c4 +size 479059 diff --git a/vlm/train/S1EHOsC9tX/16.png b/vlm/train/S1EHOsC9tX/16.png new file mode 100644 index 0000000000000000000000000000000000000000..1b2db728a3837f956ef9fbbcf1a17b7e8101f744 --- /dev/null +++ b/vlm/train/S1EHOsC9tX/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4711199d834d458ce9063512917b5d911505db99414ac573bc979ee64fb36b62 +size 130470 diff --git a/vlm/train/S1EHOsC9tX/2.png b/vlm/train/S1EHOsC9tX/2.png new file mode 100644 index 0000000000000000000000000000000000000000..eb0ba6ef56c9f719564cbd489c43e6df729d66d0 --- /dev/null +++ b/vlm/train/S1EHOsC9tX/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8690ce496d4a1d04e5dd3bd835c025fc028338fbd0dd8e82315f62fba9875573 +size 583880 diff --git a/vlm/train/S1EHOsC9tX/3.png b/vlm/train/S1EHOsC9tX/3.png new file mode 100644 index 0000000000000000000000000000000000000000..74fd9a9eb5ffe9f4c87a53c335dcb9470fe123f5 --- /dev/null +++ b/vlm/train/S1EHOsC9tX/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:120740c81e14f07c6f1512d754b5f528b9c739a589741a6d2da8849ac851aad7 +size 597260 diff --git a/vlm/train/S1EHOsC9tX/4.png b/vlm/train/S1EHOsC9tX/4.png new file mode 100644 index 0000000000000000000000000000000000000000..4a05ceab667285b459ac2840969c2b0a22addb64 --- /dev/null +++ b/vlm/train/S1EHOsC9tX/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ffcd165a2066bcfe559d614ba747a6bed3002115d0f565f41e7180e1b993531 +size 504446 diff --git a/vlm/train/S1EHOsC9tX/5.png b/vlm/train/S1EHOsC9tX/5.png new file mode 100644 index 0000000000000000000000000000000000000000..46bfca2bb235eea069224aebad41fc43237559d0 --- /dev/null +++ b/vlm/train/S1EHOsC9tX/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53d6ee3d2e13d823db617cb8d1ea0b5ee5f51fa992f745163f18ba2da3f9230d +size 548313 diff --git a/vlm/train/S1EHOsC9tX/6.png b/vlm/train/S1EHOsC9tX/6.png new file mode 100644 index 0000000000000000000000000000000000000000..68c9ee7795f9d8ebc73d97ecef5c17c91b324915 --- /dev/null +++ b/vlm/train/S1EHOsC9tX/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2ae8ea609ef26563f05496c5dfb5e317bdf90b618acac732135c40ba670467c +size 498312 diff --git a/vlm/train/S1EHOsC9tX/7.png b/vlm/train/S1EHOsC9tX/7.png new file mode 100644 index 0000000000000000000000000000000000000000..3d1ad4c9852b378b8cf42ba4e81f20bc4679dce5 --- /dev/null +++ b/vlm/train/S1EHOsC9tX/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e5e6f7ba60954855a56d12e77a89176f6f94c0f5e5b4c332fe7c3380658a9f7 +size 604624 diff --git a/vlm/train/S1EHOsC9tX/8.png b/vlm/train/S1EHOsC9tX/8.png new file mode 100644 index 0000000000000000000000000000000000000000..bca4ca7a94d117d58aa624fe3fb2a7be20077d27 --- /dev/null +++ b/vlm/train/S1EHOsC9tX/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6dfd358ef0ab199aec85c151c38fc295ac63340d8b3ccaec8a4658e5a8f08b70 +size 576711 diff --git a/vlm/train/S1EHOsC9tX/9.png b/vlm/train/S1EHOsC9tX/9.png new file mode 100644 index 0000000000000000000000000000000000000000..8ea4e49e2c3620ae15d081e5630cd051032d685c --- /dev/null +++ b/vlm/train/S1EHOsC9tX/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:498659dcb47964d8db8452487948eaa5ceb37eba4bd1f86a6f49fa23dae8d438 +size 560174 diff --git a/vlm/train/S1x2PCNKDB/0.png b/vlm/train/S1x2PCNKDB/0.png new file mode 100644 index 0000000000000000000000000000000000000000..55fe9fdf30f21e63f6fd4d496ba9e5b1f1ff31c9 --- /dev/null +++ b/vlm/train/S1x2PCNKDB/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57484b2ce1c3620806d598db1c06477722da2909abfd0f4b046d001e2a46dfc1 +size 533555 diff --git a/vlm/train/S1x2PCNKDB/1.png b/vlm/train/S1x2PCNKDB/1.png new file mode 100644 index 0000000000000000000000000000000000000000..2bc2d3fe1038d86643a00a0ce0905fad2e59ab42 --- /dev/null +++ b/vlm/train/S1x2PCNKDB/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c36d9fa8326f807c15ae5c766922b2b844de8cc589210fa07a2a24e652f0406d +size 602259 diff --git a/vlm/train/S1x2PCNKDB/10.png b/vlm/train/S1x2PCNKDB/10.png new file mode 100644 index 0000000000000000000000000000000000000000..ef59d6e27b94fe7cc4ac1bb88f5e7b9ddd649e34 --- /dev/null +++ b/vlm/train/S1x2PCNKDB/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5f00976f6f25500b9ddba0e13c3edeee57bbb5fb99993be61b398774e7087f7 +size 308147 diff --git a/vlm/train/S1x2PCNKDB/11.png b/vlm/train/S1x2PCNKDB/11.png new file mode 100644 index 0000000000000000000000000000000000000000..672a2478d23f58d5dad3b480e9fcc8e6d9301485 --- /dev/null +++ b/vlm/train/S1x2PCNKDB/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:380ebb4578614baa1d9cdef0a252e42b6feed4d1a2a3bdb0765303a701eb54d4 +size 586255 diff --git a/vlm/train/S1x2PCNKDB/12.png b/vlm/train/S1x2PCNKDB/12.png new file mode 100644 index 0000000000000000000000000000000000000000..f6d636bcf8c83a0401ad2c15ab8a594361469d22 --- /dev/null +++ b/vlm/train/S1x2PCNKDB/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5111902fba09c447980d0e87079706e42c24d4af9af3a48c4e3d9a9c21a8589e +size 574622 diff --git a/vlm/train/S1x2PCNKDB/13.png b/vlm/train/S1x2PCNKDB/13.png new file mode 100644 index 0000000000000000000000000000000000000000..7b8acab82cb46c16e5f0f46a3df47a1b6d83ecd9 --- /dev/null +++ b/vlm/train/S1x2PCNKDB/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21b42369d6499894d6d02e29a828268c017a88f484d295c09c5c044c81ffcf42 +size 562557 diff --git a/vlm/train/S1x2PCNKDB/14.png b/vlm/train/S1x2PCNKDB/14.png new file mode 100644 index 0000000000000000000000000000000000000000..f6bc859bf406b21648b948c331eeda1516c26d2c --- /dev/null +++ b/vlm/train/S1x2PCNKDB/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab9512511f716b1cd197dbf00feb5feba5d7738494c66f4011652cab8d19dfc5 +size 384141 diff --git a/vlm/train/S1x2PCNKDB/15.png b/vlm/train/S1x2PCNKDB/15.png new file mode 100644 index 0000000000000000000000000000000000000000..a642bed52a60b0e758796daf704e86b77fbdf47c --- /dev/null +++ b/vlm/train/S1x2PCNKDB/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0117c0296ba9eddba4452e30552a70ae2e442c433d38902215c333c5e12a01cb +size 350330 diff --git a/vlm/train/S1x2PCNKDB/16.png b/vlm/train/S1x2PCNKDB/16.png new file mode 100644 index 0000000000000000000000000000000000000000..2589a2807547cafd8270c3dd32d47b34106a40ba --- /dev/null +++ b/vlm/train/S1x2PCNKDB/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b431d03339d48514371d2785fe413bea4359e92b7b8b0f4d5c5361f4bd2bdce7 +size 148668 diff --git a/vlm/train/S1x2PCNKDB/2.png b/vlm/train/S1x2PCNKDB/2.png new file mode 100644 index 0000000000000000000000000000000000000000..e422cc2fe15873e6ca3dd792c2db9b59b384b566 --- /dev/null +++ b/vlm/train/S1x2PCNKDB/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f77b069493b84407fbbddefaa9b6fa48ae035117edafb8496a65dabb2927ea0 +size 537796 diff --git a/vlm/train/S1x2PCNKDB/3.png b/vlm/train/S1x2PCNKDB/3.png new file mode 100644 index 0000000000000000000000000000000000000000..fda9f757416d29f78e0640ae4115ba0a160d1a55 --- /dev/null +++ b/vlm/train/S1x2PCNKDB/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9dda06f0a67519cb22c27ad411575f599ba7760335f4a7066b721e557c8988e +size 488900 diff --git a/vlm/train/S1x2PCNKDB/4.png b/vlm/train/S1x2PCNKDB/4.png new file mode 100644 index 0000000000000000000000000000000000000000..2468ce41e11b2adf6abbe5fa50dd6c1f74d39090 --- /dev/null +++ b/vlm/train/S1x2PCNKDB/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d116c11727974dbaa8713c68e4bc7adce6f3dcefcdee59a7a86c2095bf658fe +size 634614 diff --git a/vlm/train/S1x2PCNKDB/5.png b/vlm/train/S1x2PCNKDB/5.png new file mode 100644 index 0000000000000000000000000000000000000000..c6e7f34446038367f8c87c5d1626fb89bb2f2496 --- /dev/null +++ b/vlm/train/S1x2PCNKDB/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a398cdb8f1875b51ec925ab734b26b4d0fe3aab299a28d1ea7eeda9b0221d0f6 +size 637206 diff --git a/vlm/train/S1x2PCNKDB/6.png b/vlm/train/S1x2PCNKDB/6.png new file mode 100644 index 0000000000000000000000000000000000000000..3178a794dab8ea136fe4df0290a82c3e3c5726f1 --- /dev/null +++ b/vlm/train/S1x2PCNKDB/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b473025e1acbd11a67ac686e907dee31409fb58d549920215f34b07fead2c443 +size 532962 diff --git a/vlm/train/S1x2PCNKDB/7.png b/vlm/train/S1x2PCNKDB/7.png new file mode 100644 index 0000000000000000000000000000000000000000..229770534fd49b6fd4387c27de17eeb3b355943d --- /dev/null +++ b/vlm/train/S1x2PCNKDB/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8adf9e67848d6b5d69e6da5060bbbf91a25dd760f88f4da05942ce76c506ce5a +size 627299 diff --git a/vlm/train/S1x2PCNKDB/8.png b/vlm/train/S1x2PCNKDB/8.png new file mode 100644 index 0000000000000000000000000000000000000000..eedc6bf24d6ff7cd2205b7b48271e358ec3d1ea1 --- /dev/null +++ b/vlm/train/S1x2PCNKDB/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:faa6e4662d8acdad133af1337aff1b44fc8dfb7a98410379fb47e024594878dd +size 489938 diff --git a/vlm/train/S1x2PCNKDB/9.png b/vlm/train/S1x2PCNKDB/9.png new file mode 100644 index 0000000000000000000000000000000000000000..7f9099cab5c9fca037b23f17094277c4c51e90be --- /dev/null +++ b/vlm/train/S1x2PCNKDB/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2c0958a1e80132d414815b75eb95f0469f8c50ff662b2d06fd3511def8d0a75 +size 545764 diff --git a/vlm/train/S1xNEhR9KX/0.png b/vlm/train/S1xNEhR9KX/0.png new file mode 100644 index 0000000000000000000000000000000000000000..96827d48e108fa42f8420c6f8e0c5b69c4e615b8 --- /dev/null +++ b/vlm/train/S1xNEhR9KX/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4ecc91021bbed76c03ddcf04ceec790d2da4bebb356cda8860b7989ba2df5b9 +size 499872 diff --git a/vlm/train/S1xNEhR9KX/1.png b/vlm/train/S1xNEhR9KX/1.png new file mode 100644 index 0000000000000000000000000000000000000000..9b8f91507bc6e28abc1b6375af8b3fa32043b7a0 --- /dev/null +++ b/vlm/train/S1xNEhR9KX/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:999df998e5b9dae72740868af6f92d8fe5111bea502531568689bd6d970726d4 +size 639825 diff --git a/vlm/train/S1xNEhR9KX/10.png b/vlm/train/S1xNEhR9KX/10.png new file mode 100644 index 0000000000000000000000000000000000000000..045f6d8e07cc5795d4870e925cd8688d1dcc7759 --- /dev/null +++ b/vlm/train/S1xNEhR9KX/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0cc8b06228d719b3c150ca25e639f4017cd818e6ddbb2475197e974939a6f8ab +size 522931 diff --git a/vlm/train/S1xNEhR9KX/11.png b/vlm/train/S1xNEhR9KX/11.png new file mode 100644 index 0000000000000000000000000000000000000000..d509def378faf59b797867efd68bdb8924a43caa --- /dev/null +++ b/vlm/train/S1xNEhR9KX/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef6197f4e9c55e9c387cc16176148ef1d71c1a5a2497dd0d0f597edca9a53bf6 +size 233116 diff --git a/vlm/train/S1xNEhR9KX/12.png b/vlm/train/S1xNEhR9KX/12.png new file mode 100644 index 0000000000000000000000000000000000000000..7b600d5d78aeecab8e7b724c21fc8f631c24aa9e --- /dev/null +++ b/vlm/train/S1xNEhR9KX/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:911e36fd0143a914bbbb271e059c26c77eb93c93d6483aed9553ca44e812659b +size 326080 diff --git a/vlm/train/S1xNEhR9KX/13.png b/vlm/train/S1xNEhR9KX/13.png new file mode 100644 index 0000000000000000000000000000000000000000..507cdc90ffa8d836f4bcea6107025a33ec707b80 --- /dev/null +++ b/vlm/train/S1xNEhR9KX/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5542d0c0e6055a2986ca82251476b532ce9117bdad4dc8c087fb23d2ca26a53d +size 336260 diff --git a/vlm/train/S1xNEhR9KX/14.png b/vlm/train/S1xNEhR9KX/14.png new file mode 100644 index 0000000000000000000000000000000000000000..0b778880d6aea02e3a06807e3e36c173bd90a067 --- /dev/null +++ b/vlm/train/S1xNEhR9KX/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c519f6f1dad5793637f97c670c4c6ab1ad72f27d57fa9428aec755ccd50d20c +size 400411 diff --git a/vlm/train/S1xNEhR9KX/15.png b/vlm/train/S1xNEhR9KX/15.png new file mode 100644 index 0000000000000000000000000000000000000000..614346d8be114758761719ab6f5a5ac22e9b4f56 --- /dev/null +++ b/vlm/train/S1xNEhR9KX/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98c5737ef829d18baf27fc76c3081c1bcf1e34aaa57b64825fbb98a85e0dc0ae +size 509124 diff --git a/vlm/train/S1xNEhR9KX/16.png b/vlm/train/S1xNEhR9KX/16.png new file mode 100644 index 0000000000000000000000000000000000000000..38cb62dd035a0dcbb6d9c7afa54755e1aa94e89b --- /dev/null +++ b/vlm/train/S1xNEhR9KX/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9439abcd4a103352bdb2d94a4fae599e353c1ae84aa7ccd3dc21adb68bf8abb6 +size 444329 diff --git a/vlm/train/S1xNEhR9KX/17.png b/vlm/train/S1xNEhR9KX/17.png new file mode 100644 index 0000000000000000000000000000000000000000..52a705d2f4e3fbafe9715b346042049935a44064 --- /dev/null +++ b/vlm/train/S1xNEhR9KX/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8186fd185d230cee7f92e41446369f5636f6cc25772129ebd11ec48308d42443 +size 538825 diff --git a/vlm/train/S1xNEhR9KX/18.png b/vlm/train/S1xNEhR9KX/18.png new file mode 100644 index 0000000000000000000000000000000000000000..30aa0aaf733608dce21fe21337641ee0e2c49032 --- /dev/null +++ b/vlm/train/S1xNEhR9KX/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9edd8c722465d6fd1bd89e482497af6c43be42c90d01216c4c9c5bb07c9f2b9 +size 459260 diff --git a/vlm/train/S1xNEhR9KX/2.png b/vlm/train/S1xNEhR9KX/2.png new file mode 100644 index 0000000000000000000000000000000000000000..43b4fd54dac0e929b4b0dcc9e37e89d460d830e9 --- /dev/null +++ b/vlm/train/S1xNEhR9KX/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2baa4956916053229086fb0e319120823d3ed954ef6168362913f5a12242c9b2 +size 573323 diff --git a/vlm/train/S1xNEhR9KX/3.png b/vlm/train/S1xNEhR9KX/3.png new file mode 100644 index 0000000000000000000000000000000000000000..4f03b68de069967f51364bcaedd2c4faa10b6e88 --- /dev/null +++ b/vlm/train/S1xNEhR9KX/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59c23d3ad69de7fda755eac9ad6c64858dfd84cd5320446359fcbc365e41e9b1 +size 589833 diff --git a/vlm/train/S1xNEhR9KX/4.png b/vlm/train/S1xNEhR9KX/4.png new file mode 100644 index 0000000000000000000000000000000000000000..b28b019e1606da128a4ebafb6bf503c299fdc252 --- /dev/null +++ b/vlm/train/S1xNEhR9KX/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25403a945ff2f7f134ec0a348e677dfb5e0e6b101248dc2efacef5395756dc26 +size 603955 diff --git a/vlm/train/S1xNEhR9KX/5.png b/vlm/train/S1xNEhR9KX/5.png new file mode 100644 index 0000000000000000000000000000000000000000..10cd7f3b59b0204fca2b23a2651b4d2ff20dbf75 --- /dev/null +++ b/vlm/train/S1xNEhR9KX/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33e2b176e19f1920b825b5e8c374265c9c2890e6d59be68d0ae4077422af657c +size 560696 diff --git a/vlm/train/S1xNEhR9KX/6.png b/vlm/train/S1xNEhR9KX/6.png new file mode 100644 index 0000000000000000000000000000000000000000..28f24dd74247bc730bf2a013721aac3327bf5c5a --- /dev/null +++ b/vlm/train/S1xNEhR9KX/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd3e3319a15c0ac57d678593182ae997214e5b205e36900f82aebeb9f3d8b0c2 +size 603490 diff --git a/vlm/train/S1xNEhR9KX/7.png b/vlm/train/S1xNEhR9KX/7.png new file mode 100644 index 0000000000000000000000000000000000000000..c9dbbb50c8d4c1869c8584cf93cfd8952c47fbb6 --- /dev/null +++ b/vlm/train/S1xNEhR9KX/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e445e7f5cb177a3c5beb18e467bdb551329a6e306151382f3b2a10556fac8f21 +size 542687 diff --git a/vlm/train/S1xNEhR9KX/8.png b/vlm/train/S1xNEhR9KX/8.png new file mode 100644 index 0000000000000000000000000000000000000000..09d9bef667948e34cdab187352674f2167701eba --- /dev/null +++ b/vlm/train/S1xNEhR9KX/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85996a583988d1bf18e29a3a1d8e0414b32aa31916df57785eb587130f45d5ab +size 597388 diff --git a/vlm/train/S1xNEhR9KX/9.png b/vlm/train/S1xNEhR9KX/9.png new file mode 100644 index 0000000000000000000000000000000000000000..4c4507bbae104ab843df7b1543be5c09c9f063f8 --- /dev/null +++ b/vlm/train/S1xNEhR9KX/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a0427c15d9ac9f84fc26c3ded2c473c93ba2ce1f5ea8296d8d7a2750956e78e +size 558365 diff --git a/vlm/train/S9ZyhWC17wJ/0.png b/vlm/train/S9ZyhWC17wJ/0.png new file mode 100644 index 0000000000000000000000000000000000000000..415a12d9ebe0cdbb3ebf70c0c6fbb2613537ebb4 --- /dev/null +++ b/vlm/train/S9ZyhWC17wJ/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f267375cdb0c715d8f1a6f7e77a6589578f813f2532149d6c9430af7bc295e01 +size 361288 diff --git a/vlm/train/S9ZyhWC17wJ/1.png b/vlm/train/S9ZyhWC17wJ/1.png new file mode 100644 index 0000000000000000000000000000000000000000..30fd4909f8ddd47bc81ec119169634636440a8c6 --- /dev/null +++ b/vlm/train/S9ZyhWC17wJ/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f24dccf58b8ca7abf4417fc589c6783826b081b03d6ae3ab657be2567d6b8c4 +size 634376 diff --git a/vlm/train/S9ZyhWC17wJ/10.png b/vlm/train/S9ZyhWC17wJ/10.png new file mode 100644 index 0000000000000000000000000000000000000000..a2a481dfd24c147ba2fc41ac86f1a060f5830809 --- /dev/null +++ b/vlm/train/S9ZyhWC17wJ/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ffccc76ffab13f0bf27ceba17851e2f99ea07294062f76a0ad6a8182f171a29 +size 539780 diff --git a/vlm/train/S9ZyhWC17wJ/11.png b/vlm/train/S9ZyhWC17wJ/11.png new file mode 100644 index 0000000000000000000000000000000000000000..cb34e5c6193212a9db1cba2af874eebd0cc69c90 --- /dev/null +++ b/vlm/train/S9ZyhWC17wJ/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bf785f5c2edb7b17a32cf30c25b1375264a4eede7662e6ed7d48f91e8522727 +size 577163 diff --git a/vlm/train/S9ZyhWC17wJ/12.png b/vlm/train/S9ZyhWC17wJ/12.png new file mode 100644 index 0000000000000000000000000000000000000000..4ff6fb2a6fbbf1ccb4b2062f5cf71449247d8071 --- /dev/null +++ b/vlm/train/S9ZyhWC17wJ/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c580928951492347a7e30fdcc0be369c5c47d1d5698b7b2cd45893219a5675ac +size 566315 diff --git a/vlm/train/S9ZyhWC17wJ/13.png b/vlm/train/S9ZyhWC17wJ/13.png new file mode 100644 index 0000000000000000000000000000000000000000..b8cf9bf188b2120635152eca2d5063d9daf6bb78 --- /dev/null +++ b/vlm/train/S9ZyhWC17wJ/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:850ec60bccf385797c876d2e23a0a287a599d0ebd10126fb50c7304c94c9fd71 +size 53149 diff --git a/vlm/train/S9ZyhWC17wJ/2.png b/vlm/train/S9ZyhWC17wJ/2.png new file mode 100644 index 0000000000000000000000000000000000000000..f2b8e6df35640bd2520d7c84f8f01575ce4cada4 --- /dev/null +++ b/vlm/train/S9ZyhWC17wJ/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26739f85eeb527392999b9ca24a04b97faeeab89773c16de13e659141eaa51fb +size 572237 diff --git a/vlm/train/S9ZyhWC17wJ/3.png b/vlm/train/S9ZyhWC17wJ/3.png new file mode 100644 index 0000000000000000000000000000000000000000..bacddf4ba75992c99f757025df4ffdf21bf6f7ef --- /dev/null +++ b/vlm/train/S9ZyhWC17wJ/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d896b1a933dc75af6f841558e663b59a505302e1d3bdf03b4cd5bd12817ba41 +size 564892 diff --git a/vlm/train/S9ZyhWC17wJ/4.png b/vlm/train/S9ZyhWC17wJ/4.png new file mode 100644 index 0000000000000000000000000000000000000000..c87034d0afa6e82ee7d18bf4d7d18b70e242b7b8 --- /dev/null +++ b/vlm/train/S9ZyhWC17wJ/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db32784f156890b9598c101a77b3cabc1145cf58317b5c7244d7156be5a6a431 +size 515292 diff --git a/vlm/train/S9ZyhWC17wJ/5.png b/vlm/train/S9ZyhWC17wJ/5.png new file mode 100644 index 0000000000000000000000000000000000000000..a97864fe0f70c3cd7f8271d243fdcd477da90665 --- /dev/null +++ b/vlm/train/S9ZyhWC17wJ/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e20ed84a88ccc1146a94898e2ccbfa73a35f6a6487b9134ce689cfac1aaf20c2 +size 485972 diff --git a/vlm/train/S9ZyhWC17wJ/6.png b/vlm/train/S9ZyhWC17wJ/6.png new file mode 100644 index 0000000000000000000000000000000000000000..232bc6708c03bfac9754d3de42cde95aaad92620 --- /dev/null +++ b/vlm/train/S9ZyhWC17wJ/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5de0432c143f09857e53ff0ec182844a9b449a1e7f912fc9f09ade8efa4068d5 +size 548174 diff --git a/vlm/train/S9ZyhWC17wJ/7.png b/vlm/train/S9ZyhWC17wJ/7.png new file mode 100644 index 0000000000000000000000000000000000000000..1f7cdf0097a7cc697243d9d1500d5756d9547c77 --- /dev/null +++ b/vlm/train/S9ZyhWC17wJ/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9b89e4746b2088ffa21261510152b4f86d0e276cea7a2930a1eb806102205b4 +size 567175 diff --git a/vlm/train/S9ZyhWC17wJ/8.png b/vlm/train/S9ZyhWC17wJ/8.png new file mode 100644 index 0000000000000000000000000000000000000000..358a59069086449241f386c6ace97aa6b09a3210 --- /dev/null +++ b/vlm/train/S9ZyhWC17wJ/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6665f14f3ae92510c374fcb4d8d9f3c73dd55cdc49bdafc9acc87683eceed5d +size 517852 diff --git a/vlm/train/S9ZyhWC17wJ/9.png b/vlm/train/S9ZyhWC17wJ/9.png new file mode 100644 index 0000000000000000000000000000000000000000..1f17bb2734961e05527429018b508d1e986d83a8 --- /dev/null +++ b/vlm/train/S9ZyhWC17wJ/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cf38d1edcbfbcaf98dcb1778db876f99ff934a83b720e9e649c20a01700b6c5 +size 498124 diff --git a/vlm/train/SOVSJZ9PTO7/0.png b/vlm/train/SOVSJZ9PTO7/0.png new file mode 100644 index 0000000000000000000000000000000000000000..dcc6498c3d675a353b0d4d187c1d5fbed8b8c60f --- /dev/null +++ b/vlm/train/SOVSJZ9PTO7/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f372c76f2f8d867abe68c0bc9c596c7d60015fd972369f08e3d719e11f12d4e6 +size 511572 diff --git a/vlm/train/SOVSJZ9PTO7/1.png b/vlm/train/SOVSJZ9PTO7/1.png new file mode 100644 index 0000000000000000000000000000000000000000..91adca1d8d907a81c6b3905640a57e2f2502810b --- /dev/null +++ b/vlm/train/SOVSJZ9PTO7/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d75f4e0193dc59d3793d3750f5ca8fac8ab5fff95676ce7e43da5354b418936c +size 491296 diff --git a/vlm/train/SOVSJZ9PTO7/10.png b/vlm/train/SOVSJZ9PTO7/10.png new file mode 100644 index 0000000000000000000000000000000000000000..3433cd8cc49c8c6d8756fcaf40f4a952cae2a1ec --- /dev/null +++ b/vlm/train/SOVSJZ9PTO7/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a082b67e31976f2a116acbe9cc26310df7c4f8c390ebc7d5d40d35d7ffcf3c7e +size 475871 diff --git a/vlm/train/SOVSJZ9PTO7/2.png b/vlm/train/SOVSJZ9PTO7/2.png new file mode 100644 index 0000000000000000000000000000000000000000..8f49bb7e53a14e636c7e3a3dd670b998d97663cc --- /dev/null +++ b/vlm/train/SOVSJZ9PTO7/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c0919c8982ed24c248833c2c7269ab9efc463e8bc2acbb56508e6b54d90dd04 +size 525881 diff --git a/vlm/train/SOVSJZ9PTO7/3.png b/vlm/train/SOVSJZ9PTO7/3.png new file mode 100644 index 0000000000000000000000000000000000000000..46acc90abbb62346c6409ff09c764f6699707267 --- /dev/null +++ b/vlm/train/SOVSJZ9PTO7/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:554dc2ef369b2efd77a740c28563716583eceb2910c14dfc42a8d5cecbe8f79d +size 511698 diff --git a/vlm/train/SOVSJZ9PTO7/4.png b/vlm/train/SOVSJZ9PTO7/4.png new file mode 100644 index 0000000000000000000000000000000000000000..df8d7c11c4a7fd81cb06bed4dbd86ac4a9eae94a --- /dev/null +++ b/vlm/train/SOVSJZ9PTO7/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:827cbb8f8d2dc529f6d6df42b6a39647bf411ebc4f7bb0d3e67b48a8813a9a0f +size 515591 diff --git a/vlm/train/SOVSJZ9PTO7/5.png b/vlm/train/SOVSJZ9PTO7/5.png new file mode 100644 index 0000000000000000000000000000000000000000..90158da1e4b235787f46685cce241d8cde71ae31 --- /dev/null +++ b/vlm/train/SOVSJZ9PTO7/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:570866c9821a9d4bd8dfef85a0540507187b50d3719632c27da7a00b33c77723 +size 497720 diff --git a/vlm/train/SOVSJZ9PTO7/6.png b/vlm/train/SOVSJZ9PTO7/6.png new file mode 100644 index 0000000000000000000000000000000000000000..d89efd18f7ed7a01f552be810cb338ea2c9adffa --- /dev/null +++ b/vlm/train/SOVSJZ9PTO7/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd5429fd3f375d805c9a6b843186609df1e411738607dc30784278b9d8798558 +size 576833 diff --git a/vlm/train/SOVSJZ9PTO7/7.png b/vlm/train/SOVSJZ9PTO7/7.png new file mode 100644 index 0000000000000000000000000000000000000000..c18d04e73c4760a2630ba6b2f6e655ef2bf4cf9a --- /dev/null +++ b/vlm/train/SOVSJZ9PTO7/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93b1f7ee97ed7c1d0056aed4b14b799e2b5925b8e61cfede33a6c881e138e12e +size 593011 diff --git a/vlm/train/SOVSJZ9PTO7/8.png b/vlm/train/SOVSJZ9PTO7/8.png new file mode 100644 index 0000000000000000000000000000000000000000..70a556aec47920ed6bb5b629c0e1482e91f41196 --- /dev/null +++ b/vlm/train/SOVSJZ9PTO7/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df6a999a46e83285c6b9f627cf208563e9514f000c6bced2c6cc5cfc7599d8ce +size 521927 diff --git a/vlm/train/SOVSJZ9PTO7/9.png b/vlm/train/SOVSJZ9PTO7/9.png new file mode 100644 index 0000000000000000000000000000000000000000..2e17abe3fad5014d85029e9bccd1e9ef7f1385b0 --- /dev/null +++ b/vlm/train/SOVSJZ9PTO7/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a1fa8285046c658ef14411da329da2a392e116c39307a75517bf28fb0b696e7 +size 544084 diff --git a/vlm/train/SkqMSCHxe/4.png b/vlm/train/SkqMSCHxe/4.png new file mode 100644 index 0000000000000000000000000000000000000000..8ff128c62e0a6ba6f8fe422d8fd842892e1391e6 --- /dev/null +++ b/vlm/train/SkqMSCHxe/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b99f985c0bd9d71bc074cf7ba399548f9156640c297cfc7967288bc1d7b39803 +size 533467 diff --git a/vlm/train/SypU81Ole/0.png b/vlm/train/SypU81Ole/0.png new file mode 100644 index 0000000000000000000000000000000000000000..c90f8cc7135a2e096a88fbdfa641085da23ebc90 --- /dev/null +++ b/vlm/train/SypU81Ole/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1af7bb4cb66736eb3671354461e5f0d4bfb9ffa6e760e012f2ebd13378590719 +size 403776 diff --git a/vlm/train/SypU81Ole/1.png b/vlm/train/SypU81Ole/1.png new file mode 100644 index 0000000000000000000000000000000000000000..a36750a26d202d1c265d511c8de533fa054b7248 --- /dev/null +++ b/vlm/train/SypU81Ole/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e173ede4beaffac251864117287bbb4c0f386175b15780b2789739622bcd050e +size 517742 diff --git a/vlm/train/SypU81Ole/10.png b/vlm/train/SypU81Ole/10.png new file mode 100644 index 0000000000000000000000000000000000000000..921db9278505a26c61f984e3dc1947e2a399c706 --- /dev/null +++ b/vlm/train/SypU81Ole/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:803cde9dd32efe678b6f45dc2726f019a76e12391a4bbb196068be2285c9a662 +size 257037 diff --git a/vlm/train/SypU81Ole/2.png b/vlm/train/SypU81Ole/2.png new file mode 100644 index 0000000000000000000000000000000000000000..17e8b7e0d62d739e437af8615d807697b6eb1153 --- /dev/null +++ b/vlm/train/SypU81Ole/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5e24af23a1ff81125aa97ef41a8920ed9075c8979c55ba90fe19733f0c42b53 +size 775926 diff --git a/vlm/train/SypU81Ole/3.png b/vlm/train/SypU81Ole/3.png new file mode 100644 index 0000000000000000000000000000000000000000..12e4c39a7cb7662b25477f9b1d3d3c09373581c7 --- /dev/null +++ b/vlm/train/SypU81Ole/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee7650e06541dce9c3ca80c58f89676ea0ee4017e74874fecf255a6922eaf3e3 +size 1080163 diff --git a/vlm/train/SypU81Ole/4.png b/vlm/train/SypU81Ole/4.png new file mode 100644 index 0000000000000000000000000000000000000000..ddd293871a4370ad4bb8b6ad9bc1f6d921d896fb --- /dev/null +++ b/vlm/train/SypU81Ole/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aaf7481a3f774694b421377e8a189c6ed7d44234f2e4af8bb144e1aeb4d7cf9c +size 1503463 diff --git a/vlm/train/SypU81Ole/5.png b/vlm/train/SypU81Ole/5.png new file mode 100644 index 0000000000000000000000000000000000000000..6f451c6d185d58cf63719d2103f7b5725c0a827a --- /dev/null +++ b/vlm/train/SypU81Ole/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b37a32bb898b864f3d1934cf26e726dc294f4922601193954958b1dea96a8fab +size 939776 diff --git a/vlm/train/SypU81Ole/6.png b/vlm/train/SypU81Ole/6.png new file mode 100644 index 0000000000000000000000000000000000000000..c71f4123cccf18da8b68844cd0615b43556f6dd1 --- /dev/null +++ b/vlm/train/SypU81Ole/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1eab1835119fa665047dbfad759f217d9fe889653f27f40cf95d65bd0ba7ece +size 929990 diff --git a/vlm/train/SypU81Ole/7.png b/vlm/train/SypU81Ole/7.png new file mode 100644 index 0000000000000000000000000000000000000000..b7798a52250e1d4d74e7a1cb424dcfa0c935ec52 --- /dev/null +++ b/vlm/train/SypU81Ole/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5909130d998519947241e56e9b257a9be25e30c0d7827ed745deab41e3ff18b0 +size 1508814 diff --git a/vlm/train/SypU81Ole/8.png b/vlm/train/SypU81Ole/8.png new file mode 100644 index 0000000000000000000000000000000000000000..e0a64f177fbd54f00930cbb087366520eb18ce7c --- /dev/null +++ b/vlm/train/SypU81Ole/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca39a3ebd0770ac67a6f7e588c77848f2db00d06afc680624620233be0c6bc1d +size 426117 diff --git a/vlm/train/SypU81Ole/9.png b/vlm/train/SypU81Ole/9.png new file mode 100644 index 0000000000000000000000000000000000000000..f11702867b4fb2f40256f8291d5ff1f8c09286a1 --- /dev/null +++ b/vlm/train/SypU81Ole/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:972859927855d390e00b6ea208f36f6af1cef4db24ea2e23890b1531199c611e +size 459890 diff --git a/vlm/train/Syx6bz-Ab/0.png b/vlm/train/Syx6bz-Ab/0.png new file mode 100644 index 0000000000000000000000000000000000000000..2df4586a868328e6825ef6722f1810d6a42d35fe --- /dev/null +++ b/vlm/train/Syx6bz-Ab/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:540ab0205e8bddf2ed2815006fe4d532c8060a76b8b071b1eac30c9323c843e3 +size 516468 diff --git a/vlm/train/Syx6bz-Ab/1.png b/vlm/train/Syx6bz-Ab/1.png new file mode 100644 index 0000000000000000000000000000000000000000..1e7d78403cb63a2ab4f54b8947e57e890f46d4eb --- /dev/null +++ b/vlm/train/Syx6bz-Ab/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77d42dc44ab3ef575da446a9ed9db53bfb82f247cd88d72db6bab031daa98733 +size 483229 diff --git a/vlm/train/Syx6bz-Ab/10.png b/vlm/train/Syx6bz-Ab/10.png new file mode 100644 index 0000000000000000000000000000000000000000..8db95acdc774e18dd89495962e25885a9657d6b0 --- /dev/null +++ b/vlm/train/Syx6bz-Ab/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82b8474329c068eea9f97aef8702ea2fb1746839320a319506b1f50debe68a3c +size 405096 diff --git a/vlm/train/Syx6bz-Ab/11.png b/vlm/train/Syx6bz-Ab/11.png new file mode 100644 index 0000000000000000000000000000000000000000..f8a9058d67d3582928ca34e6114e682a49192c35 --- /dev/null +++ b/vlm/train/Syx6bz-Ab/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fd9414dbd0d5342f7734c72f8ce17a6b2664410780559c99ef2e8be0175d8a9 +size 420964 diff --git a/vlm/train/Syx6bz-Ab/2.png b/vlm/train/Syx6bz-Ab/2.png new file mode 100644 index 0000000000000000000000000000000000000000..c8b23406b80d50dd275d9e0b7f3441ce9776d367 --- /dev/null +++ b/vlm/train/Syx6bz-Ab/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9c4f33758be7930c82b40b96a07e25989af1dcf585d7a0f521df7fd1ea29339 +size 582004 diff --git a/vlm/train/Syx6bz-Ab/3.png b/vlm/train/Syx6bz-Ab/3.png new file mode 100644 index 0000000000000000000000000000000000000000..d606da480f1b90179a8cf6c53da9ecb2f202fa14 --- /dev/null +++ b/vlm/train/Syx6bz-Ab/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85e80c1b6ae34165d2619d24f3357a2f30b1482bffdb84e17c2cc04e917f8937 +size 505094 diff --git a/vlm/train/Syx6bz-Ab/4.png b/vlm/train/Syx6bz-Ab/4.png new file mode 100644 index 0000000000000000000000000000000000000000..306b3538e043daf007842bccb1ed9505d499c4ba --- /dev/null +++ b/vlm/train/Syx6bz-Ab/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb0785022fe7ac0215b62bef09036d0ecce036c6a54e873315ce941918267e80 +size 439159 diff --git a/vlm/train/Syx6bz-Ab/5.png b/vlm/train/Syx6bz-Ab/5.png new file mode 100644 index 0000000000000000000000000000000000000000..95520b3952b2ad8c829816d4577adc22d41591e8 --- /dev/null +++ b/vlm/train/Syx6bz-Ab/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11f4bf07d02f1e38ba9a7848a22df34155156e53fcd723d50a129c7381316459 +size 609474 diff --git a/vlm/train/Syx6bz-Ab/6.png b/vlm/train/Syx6bz-Ab/6.png new file mode 100644 index 0000000000000000000000000000000000000000..f6490d60702328a8fc68a65c8af104369ec6fe1e --- /dev/null +++ b/vlm/train/Syx6bz-Ab/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1456c2d07b76f2ea75894f5a31321fbf07b2b8cc35ead14867c8cb4584854d9 +size 569033 diff --git a/vlm/train/Syx6bz-Ab/7.png b/vlm/train/Syx6bz-Ab/7.png new file mode 100644 index 0000000000000000000000000000000000000000..bd10b7d9b45b9dd1488ac63e7e60990f0c56448a --- /dev/null +++ b/vlm/train/Syx6bz-Ab/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85b26a0feeabb8e30928c395ac76995d805d688f097ef18f215deb8386b21a6c +size 633758 diff --git a/vlm/train/Syx6bz-Ab/8.png b/vlm/train/Syx6bz-Ab/8.png new file mode 100644 index 0000000000000000000000000000000000000000..536b5664a0008a72eaf7af4e39c9716b2fd00a74 --- /dev/null +++ b/vlm/train/Syx6bz-Ab/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:add97e1beded92126d28974db78281bb630f69e356071efaaa589d2ecadc47cc +size 492692 diff --git a/vlm/train/Syx6bz-Ab/9.png b/vlm/train/Syx6bz-Ab/9.png new file mode 100644 index 0000000000000000000000000000000000000000..68ce16e1125fda37788adc48ec6c8f1074680a9f --- /dev/null +++ b/vlm/train/Syx6bz-Ab/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2acf300674ba8aa5b9c02ba12431c5f8bccff000f699fc2bfc8899e9a6943fca +size 403220 diff --git a/vlm/train/Wua2zjxJdYo/0.png b/vlm/train/Wua2zjxJdYo/0.png new file mode 100644 index 0000000000000000000000000000000000000000..54847c02837b5013596669f87e7e9fff89f0ce89 --- /dev/null +++ b/vlm/train/Wua2zjxJdYo/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53dde6f4d3ee9cd63682ea829de6f61ce6920ae0f2f1182e6ce46c43653e29ac +size 487089 diff --git a/vlm/train/Wua2zjxJdYo/1.png b/vlm/train/Wua2zjxJdYo/1.png new file mode 100644 index 0000000000000000000000000000000000000000..0bf23bd555d31fec0562fb34664612e7b1a8ebd2 --- /dev/null +++ b/vlm/train/Wua2zjxJdYo/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90054745a67382b193cacdef32ba0fcc2c2445dde31b7b42004d0df3dc5339ba +size 641828 diff --git a/vlm/train/Wua2zjxJdYo/10.png b/vlm/train/Wua2zjxJdYo/10.png new file mode 100644 index 0000000000000000000000000000000000000000..4a1b4717eab3949435353ea38c09bde798fc13eb --- /dev/null +++ b/vlm/train/Wua2zjxJdYo/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:feafffec2d02e9391bf1ecee0e6177a19aae2d24a2f133b69648981446683b29 +size 554019 diff --git a/vlm/train/Wua2zjxJdYo/11.png b/vlm/train/Wua2zjxJdYo/11.png new file mode 100644 index 0000000000000000000000000000000000000000..323b625fb89fcd976c04d7e1666f76136bd6c3e8 --- /dev/null +++ b/vlm/train/Wua2zjxJdYo/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc583f7a7dcd1ef6891f1d2122eb33d0c39536f8916482b0ba2df07ec1fc96c8 +size 348772 diff --git a/vlm/train/Wua2zjxJdYo/2.png b/vlm/train/Wua2zjxJdYo/2.png new file mode 100644 index 0000000000000000000000000000000000000000..5c991488294de7e4c520595405af50bd1fc2e480 --- /dev/null +++ b/vlm/train/Wua2zjxJdYo/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18b6ac69b0d6c2a6577ffe33914aa0317c50edaf1209094183a2bb784207eb8c +size 734201 diff --git a/vlm/train/Wua2zjxJdYo/3.png b/vlm/train/Wua2zjxJdYo/3.png new file mode 100644 index 0000000000000000000000000000000000000000..e2e6f5aaffae3bb99edc3c4b5bece7772129fb4c --- /dev/null +++ b/vlm/train/Wua2zjxJdYo/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be470a94f3ee76cf0c7fd1370fa6f032d04cdfe2a565622bcb374602b9da5193 +size 609873 diff --git a/vlm/train/Wua2zjxJdYo/4.png b/vlm/train/Wua2zjxJdYo/4.png new file mode 100644 index 0000000000000000000000000000000000000000..0522b83f8745517d89b0402b6111846556128d8f --- /dev/null +++ b/vlm/train/Wua2zjxJdYo/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e10dfb0ad0ff2811c64f8374400e26232531ab64a98026bed9366040858470e3 +size 622492 diff --git a/vlm/train/Wua2zjxJdYo/5.png b/vlm/train/Wua2zjxJdYo/5.png new file mode 100644 index 0000000000000000000000000000000000000000..60286ee56caa342039cc373b9e0a0c8b2fb2a4e5 --- /dev/null +++ b/vlm/train/Wua2zjxJdYo/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57e93c75f9eebdd1edd8bcb46d1f9e4d2b6c370c9c59917ecc21424f4b334243 +size 542342 diff --git a/vlm/train/Wua2zjxJdYo/6.png b/vlm/train/Wua2zjxJdYo/6.png new file mode 100644 index 0000000000000000000000000000000000000000..7160f01c2d060a0b17ddb8c9c8d2dbf29da67174 --- /dev/null +++ b/vlm/train/Wua2zjxJdYo/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41d1d26550fbeb6e192df6bcaca1036c85cf514ecbded13b105dbe6992a9b216 +size 680000 diff --git a/vlm/train/Wua2zjxJdYo/7.png b/vlm/train/Wua2zjxJdYo/7.png new file mode 100644 index 0000000000000000000000000000000000000000..0206e1363fce67132f38966a324bcc1b30f7e828 --- /dev/null +++ b/vlm/train/Wua2zjxJdYo/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fed0521d07b3040de49855319f964b3cd275596779a9662f53b9543217a72be +size 1141004 diff --git a/vlm/train/Wua2zjxJdYo/8.png b/vlm/train/Wua2zjxJdYo/8.png new file mode 100644 index 0000000000000000000000000000000000000000..ea04591000fdc230fcf1792f2bd2d849a7c6da64 --- /dev/null +++ b/vlm/train/Wua2zjxJdYo/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36db6021500aa24ce4e2bc78860b9564f7e83c851b9d6ab2a34b63c8f026bc3a +size 970666 diff --git a/vlm/train/Wua2zjxJdYo/9.png b/vlm/train/Wua2zjxJdYo/9.png new file mode 100644 index 0000000000000000000000000000000000000000..21ea5498c7c7f1044e3f2e39cb719b86161001a7 --- /dev/null +++ b/vlm/train/Wua2zjxJdYo/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6e38bb99ee4a5995076bca059a99b622657c16f6400d611658f33d5fc17fcaf +size 494842 diff --git a/vlm/train/_WnAQKse_uK/0.png b/vlm/train/_WnAQKse_uK/0.png new file mode 100644 index 0000000000000000000000000000000000000000..3ba810ba102172a989000d1a681a908e344c05f2 --- /dev/null +++ b/vlm/train/_WnAQKse_uK/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:170347048edbbad19d2d9903596ef8aae494cadd154024b50efe07412a53d17b +size 467484 diff --git a/vlm/train/_WnAQKse_uK/1.png b/vlm/train/_WnAQKse_uK/1.png new file mode 100644 index 0000000000000000000000000000000000000000..1158b8190678d7aa3475255b098349aa93d62c27 --- /dev/null +++ b/vlm/train/_WnAQKse_uK/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0632810a2ac8df2deed569e2af873be3329b7adb685a5f5d7f0a74bd0d8591b1 +size 642454 diff --git a/vlm/train/_WnAQKse_uK/10.png b/vlm/train/_WnAQKse_uK/10.png new file mode 100644 index 0000000000000000000000000000000000000000..c011a2d5fde2e856f4251687c3843269d365293d --- /dev/null +++ b/vlm/train/_WnAQKse_uK/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:641658434bbcb75eef7aed9875d8ba461edda985229d035493cc4a8e963efbd6 +size 750239 diff --git a/vlm/train/_WnAQKse_uK/11.png b/vlm/train/_WnAQKse_uK/11.png new file mode 100644 index 0000000000000000000000000000000000000000..c2d6c2f9e1e469776cebfc667c12d941c60a7c40 --- /dev/null +++ b/vlm/train/_WnAQKse_uK/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e980fafa340695c0e3737365957a4a39d7e57a506d06ff54a89dde1d0c3327a +size 763945 diff --git a/vlm/train/_WnAQKse_uK/12.png b/vlm/train/_WnAQKse_uK/12.png new file mode 100644 index 0000000000000000000000000000000000000000..445d13f31d1fd997c3d6bc5fb8592cfc0b2f322f --- /dev/null +++ b/vlm/train/_WnAQKse_uK/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95b5384a761b752b72bca570928a2f11a9678474150d245b98af49e35d69e894 +size 724708 diff --git a/vlm/train/_WnAQKse_uK/13.png b/vlm/train/_WnAQKse_uK/13.png new file mode 100644 index 0000000000000000000000000000000000000000..90ce39fbbe60a519e6a31697459817216ed3e1b7 --- /dev/null +++ b/vlm/train/_WnAQKse_uK/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2eb159d8c24187a87c6cdcaed323791396ad5610c87b2e33d2b5a653978affc8 +size 269306 diff --git a/vlm/train/_WnAQKse_uK/2.png b/vlm/train/_WnAQKse_uK/2.png new file mode 100644 index 0000000000000000000000000000000000000000..97339b6baf86189010c985b26428e46076f08e93 --- /dev/null +++ b/vlm/train/_WnAQKse_uK/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ec2f674dd6541c2b90ab13c80a6a97076ee88c450cb940e456cd8d8326c9831 +size 550676 diff --git a/vlm/train/_WnAQKse_uK/3.png b/vlm/train/_WnAQKse_uK/3.png new file mode 100644 index 0000000000000000000000000000000000000000..425760390008c89ec6f77d745d6b89659408fe77 --- /dev/null +++ b/vlm/train/_WnAQKse_uK/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36f7fee8794df2137da5eddfa7980ff923866e9e22973c3945de4d2f160ca5a3 +size 537355 diff --git a/vlm/train/_WnAQKse_uK/4.png b/vlm/train/_WnAQKse_uK/4.png new file mode 100644 index 0000000000000000000000000000000000000000..46d56219f221e0688549f285e6d96aa56d8d48a3 --- /dev/null +++ b/vlm/train/_WnAQKse_uK/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a370b0589010c6fc4a7490dfe49b4e095bb29390fb884ca920399c8255417072 +size 545511 diff --git a/vlm/train/_WnAQKse_uK/5.png b/vlm/train/_WnAQKse_uK/5.png new file mode 100644 index 0000000000000000000000000000000000000000..756d3d6be830cba722e3a80df7735f0ddeb7867e --- /dev/null +++ b/vlm/train/_WnAQKse_uK/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8267ac358e72d4a125c1e0dbf82ae295830044c290287894eac355a4621d3e4 +size 564984 diff --git a/vlm/train/_WnAQKse_uK/6.png b/vlm/train/_WnAQKse_uK/6.png new file mode 100644 index 0000000000000000000000000000000000000000..f9cca8256378ab6c4448f14bf15616c15c6ae003 --- /dev/null +++ b/vlm/train/_WnAQKse_uK/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ead0c1aa02abcf09ff76cc8d4cff6f9af2547f3fc14fe8d62dfa014df632ff9 +size 346006 diff --git a/vlm/train/_WnAQKse_uK/7.png b/vlm/train/_WnAQKse_uK/7.png new file mode 100644 index 0000000000000000000000000000000000000000..9cf480fafa77775906a75d32750fafcfdb482e81 --- /dev/null +++ b/vlm/train/_WnAQKse_uK/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcbb4756c8644cd414f657ada012c8d85081a273317602a547ba618a146ddb29 +size 621548 diff --git a/vlm/train/_WnAQKse_uK/8.png b/vlm/train/_WnAQKse_uK/8.png new file mode 100644 index 0000000000000000000000000000000000000000..d066002e6d3e70835fdce580471bcfcd3394c99b --- /dev/null +++ b/vlm/train/_WnAQKse_uK/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:055a99df28bfc495a1151b1e02cff5886fc2cbeb4ba469e4cad30686fdaffa17 +size 493976 diff --git a/vlm/train/_WnAQKse_uK/9.png b/vlm/train/_WnAQKse_uK/9.png new file mode 100644 index 0000000000000000000000000000000000000000..24e57ba669079a6b20a52a4df9260fd19264a016 --- /dev/null +++ b/vlm/train/_WnAQKse_uK/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd69c897d282b4f42ee36529bd98facffe025783c9db7cb2178d56babb0bb030 +size 899107 diff --git a/vlm/train/_mQp5cr_iNy/10.png b/vlm/train/_mQp5cr_iNy/10.png new file mode 100644 index 0000000000000000000000000000000000000000..7fa979ff75c0f5e8c75ce7bac835ee624e366da1 --- /dev/null +++ b/vlm/train/_mQp5cr_iNy/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f631d53abc6654dbc3313db3ba77cebd903b58daf618bd7f529ba1590b38821 +size 555032 diff --git a/vlm/train/_mQp5cr_iNy/11.png b/vlm/train/_mQp5cr_iNy/11.png new file mode 100644 index 0000000000000000000000000000000000000000..ca34127ec5d2f893429b03c7b46f84ebd14d64c3 --- /dev/null +++ b/vlm/train/_mQp5cr_iNy/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:344eb45acdbd92c21436c3b3c603898e44d828bf0f994093444226a9e285e2d9 +size 575084 diff --git a/vlm/train/_mQp5cr_iNy/14.png b/vlm/train/_mQp5cr_iNy/14.png new file mode 100644 index 0000000000000000000000000000000000000000..70bd639e2d83e4e9fa62581aa704b45cb172d515 --- /dev/null +++ b/vlm/train/_mQp5cr_iNy/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90ad2e90610f4e76a05386b2730bc539353e117119964ccb3334555efff0c11b +size 384156 diff --git a/vlm/train/_mQp5cr_iNy/15.png b/vlm/train/_mQp5cr_iNy/15.png new file mode 100644 index 0000000000000000000000000000000000000000..1667f84107b314058e56172119ef30454fa3c275 --- /dev/null +++ b/vlm/train/_mQp5cr_iNy/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c707ea9b0e1b2481a56e5d84beeaca8a4b8e8d68b0ed7ea8e11ca554ebef06dc +size 335759 diff --git a/vlm/train/_mQp5cr_iNy/17.png b/vlm/train/_mQp5cr_iNy/17.png new file mode 100644 index 0000000000000000000000000000000000000000..d58a2b2be911d1c00b712c748672e340a71b0bda --- /dev/null +++ b/vlm/train/_mQp5cr_iNy/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:353fb5375bbb6c856af527b24c1cec917b39491a06bba71b016ddba62c6026a5 +size 70921 diff --git a/vlm/train/_mQp5cr_iNy/2.png b/vlm/train/_mQp5cr_iNy/2.png new file mode 100644 index 0000000000000000000000000000000000000000..c1ea7609934c956890fd97d25da32d0947f2dbc4 --- /dev/null +++ b/vlm/train/_mQp5cr_iNy/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8b684be18e17abed5fb88767c3aacb42dc28c748832d6e10bc11a16b4e0b540 +size 551062 diff --git a/vlm/train/_mQp5cr_iNy/3.png b/vlm/train/_mQp5cr_iNy/3.png new file mode 100644 index 0000000000000000000000000000000000000000..ced75fbad18cb618f35ad09acccbc63ebc628cbd --- /dev/null +++ b/vlm/train/_mQp5cr_iNy/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b57cff2abb353b52a6ac0cdfa7d7f6003b36edc2d783dd4c730320277be09853 +size 491031 diff --git a/vlm/train/_mQp5cr_iNy/6.png b/vlm/train/_mQp5cr_iNy/6.png new file mode 100644 index 0000000000000000000000000000000000000000..fd0008cb6404368e737450cfccfacdee979f4a25 --- /dev/null +++ b/vlm/train/_mQp5cr_iNy/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf97ca245658c5ac03f664b3c66efd59c6a3c5f033566f35b45c036e3ce3c0c9 +size 515149 diff --git a/vlm/train/_mQp5cr_iNy/9.png b/vlm/train/_mQp5cr_iNy/9.png new file mode 100644 index 0000000000000000000000000000000000000000..e7a81a8bf03493fb197b24045f5b2f4a480f29f7 --- /dev/null +++ b/vlm/train/_mQp5cr_iNy/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88620d53c83b64ec9fada688ffa3664b85c1917d28c672e9bb07c3c00b0ee805 +size 534975 diff --git a/vlm/train/aExAsh1UHZo/0.png b/vlm/train/aExAsh1UHZo/0.png new file mode 100644 index 0000000000000000000000000000000000000000..cc473a8eac4595f9d648a9c2e6cebe5cb78ee55b --- /dev/null +++ b/vlm/train/aExAsh1UHZo/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39bb7dd5759d44c973351e2eb09bc4a41fbf41dc9e97e869da8a4ef6e2a95ed5 +size 460205 diff --git a/vlm/train/aExAsh1UHZo/1.png b/vlm/train/aExAsh1UHZo/1.png new file mode 100644 index 0000000000000000000000000000000000000000..7e1a6ddbc7fa3b10bbfe476f95859d07e499c962 --- /dev/null +++ b/vlm/train/aExAsh1UHZo/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84a54446f6788e135a85268ce6e4a48c8abed03a99c36ae76e52484b112777ca +size 599570 diff --git a/vlm/train/aExAsh1UHZo/10.png b/vlm/train/aExAsh1UHZo/10.png new file mode 100644 index 0000000000000000000000000000000000000000..ad77fd992ea68610f82e2219422f78680e71cc8f --- /dev/null +++ b/vlm/train/aExAsh1UHZo/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9be19da619dc73ce7a9fb46c59ebb6c859d596f31fd4a150371a5e4d1b187718 +size 523814 diff --git a/vlm/train/aExAsh1UHZo/11.png b/vlm/train/aExAsh1UHZo/11.png new file mode 100644 index 0000000000000000000000000000000000000000..c5c6ee8335e48f0a549749e54f05e62950f6cef7 --- /dev/null +++ b/vlm/train/aExAsh1UHZo/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84822af33b4d4e5e2a1da89ed8ffe8ea5d535ecda0c20b49562a67961cde1706 +size 539769 diff --git a/vlm/train/aExAsh1UHZo/12.png b/vlm/train/aExAsh1UHZo/12.png new file mode 100644 index 0000000000000000000000000000000000000000..99e63b8201469ce154fa2b9b62c4f205dce60ded --- /dev/null +++ b/vlm/train/aExAsh1UHZo/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:098ea016fbb2c0dcc2488c178738e5e5085d782b1d5bafc849ad5357cb861374 +size 545919 diff --git a/vlm/train/aExAsh1UHZo/13.png b/vlm/train/aExAsh1UHZo/13.png new file mode 100644 index 0000000000000000000000000000000000000000..cdb7a710055410222dd1f61eb6c8c96552ef23f4 --- /dev/null +++ b/vlm/train/aExAsh1UHZo/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:722bba04a9cf240ca41dbaaf6135eec5edce7f29d8df193d7c303d3fcd18768d +size 531100 diff --git a/vlm/train/aExAsh1UHZo/14.png b/vlm/train/aExAsh1UHZo/14.png new file mode 100644 index 0000000000000000000000000000000000000000..5e397e23dee7507c5737379a454296aed68bb1ba --- /dev/null +++ b/vlm/train/aExAsh1UHZo/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5b5ae60f725239fac6b0970ee12615122811d85cf023db0dee265dd308e4f54 +size 550250 diff --git a/vlm/train/aExAsh1UHZo/15.png b/vlm/train/aExAsh1UHZo/15.png new file mode 100644 index 0000000000000000000000000000000000000000..74f97000d179a66af2862bc6b9e1fb44f6143343 --- /dev/null +++ b/vlm/train/aExAsh1UHZo/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e25920e3b2966012ffa6ca55c0e8508ea1150a91746f7c902709d0dfe373fb2 +size 530610 diff --git a/vlm/train/aExAsh1UHZo/16.png b/vlm/train/aExAsh1UHZo/16.png new file mode 100644 index 0000000000000000000000000000000000000000..0e07416c74048ee86fbbeb579c4b3860165fa538 --- /dev/null +++ b/vlm/train/aExAsh1UHZo/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f454c36b2dbbc5ce053ac0685f9d68cc347952289cab726331014231f39970b8 +size 104055 diff --git a/vlm/train/aExAsh1UHZo/2.png b/vlm/train/aExAsh1UHZo/2.png new file mode 100644 index 0000000000000000000000000000000000000000..421536627f73c8221cad685a1080fed8eae34b91 --- /dev/null +++ b/vlm/train/aExAsh1UHZo/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5be588a87e5725b59eb8a03ffcc461ba34da7e440534775a66903550621f67df +size 535772 diff --git a/vlm/train/aExAsh1UHZo/3.png b/vlm/train/aExAsh1UHZo/3.png new file mode 100644 index 0000000000000000000000000000000000000000..463db65a8e13f3aa362cc67a956984b74746ea48 --- /dev/null +++ b/vlm/train/aExAsh1UHZo/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94f5e5b1432ee48d07609963c47867dbe76a813ced173b3b09f15a713c0e79e0 +size 471782 diff --git a/vlm/train/aExAsh1UHZo/4.png b/vlm/train/aExAsh1UHZo/4.png new file mode 100644 index 0000000000000000000000000000000000000000..c29b469936eda3679dc09a92a30c26bdeeb9cd05 --- /dev/null +++ b/vlm/train/aExAsh1UHZo/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9cb372e5151570c19c78182bc417e3de144cc5d1591bd9c7ad78ab56417092a +size 452239 diff --git a/vlm/train/aExAsh1UHZo/5.png b/vlm/train/aExAsh1UHZo/5.png new file mode 100644 index 0000000000000000000000000000000000000000..c3aae1b335c453f1194501b2de897cb872506dca --- /dev/null +++ b/vlm/train/aExAsh1UHZo/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f5f07ae4d24de26d8ec4b285a114979859fd97ff199b6990c1ec37694ae772b +size 545885 diff --git a/vlm/train/aExAsh1UHZo/6.png b/vlm/train/aExAsh1UHZo/6.png new file mode 100644 index 0000000000000000000000000000000000000000..15890d29858eb564bd60e9376a273b11cc601835 --- /dev/null +++ b/vlm/train/aExAsh1UHZo/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28e884b1a850a25ffa63dc3d1fda1ca9478050d2246834054caecb1b21490b84 +size 595135 diff --git a/vlm/train/aExAsh1UHZo/7.png b/vlm/train/aExAsh1UHZo/7.png new file mode 100644 index 0000000000000000000000000000000000000000..c60a16e673c519f453870661af579f922a078c70 --- /dev/null +++ b/vlm/train/aExAsh1UHZo/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7ca2936a135944c01a02ee430b4162de90de2cee9e838cb8875bab9983113fd +size 565488 diff --git a/vlm/train/aExAsh1UHZo/8.png b/vlm/train/aExAsh1UHZo/8.png new file mode 100644 index 0000000000000000000000000000000000000000..f4a39ebadc51cfdb659c4342bd7a16a5fbbda09d --- /dev/null +++ b/vlm/train/aExAsh1UHZo/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5384400483b617fe811315e9493729cd8dbc04ae15a425b16e03a87e5761eb83 +size 577680 diff --git a/vlm/train/aExAsh1UHZo/9.png b/vlm/train/aExAsh1UHZo/9.png new file mode 100644 index 0000000000000000000000000000000000000000..bddd7fe2feeaeda693084a8f6ee01e906736cb2b --- /dev/null +++ b/vlm/train/aExAsh1UHZo/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f89d3091f941b08b3cf088e66e451e88e50f5996ef646eea64488b35fc52fc5c +size 564489 diff --git a/vlm/train/eVuMspr9cu5/0.png b/vlm/train/eVuMspr9cu5/0.png new file mode 100644 index 0000000000000000000000000000000000000000..7a70d2941552449c717b626e39863dc4f76a2ba8 --- /dev/null +++ b/vlm/train/eVuMspr9cu5/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4db5e385694648bb7a4308c00af1ba310a2ff9551de1c45a56d91ff7bd8d87d1 +size 412344 diff --git a/vlm/train/eVuMspr9cu5/1.png b/vlm/train/eVuMspr9cu5/1.png new file mode 100644 index 0000000000000000000000000000000000000000..bf249351a653fe72ed7d279ee9f5ebd9ca10a6f9 --- /dev/null +++ b/vlm/train/eVuMspr9cu5/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d949682539148a80715494c981604f134fe7ab00d388e9039d27cb732632d036 +size 584673 diff --git a/vlm/train/eVuMspr9cu5/10.png b/vlm/train/eVuMspr9cu5/10.png new file mode 100644 index 0000000000000000000000000000000000000000..ce6028e2113b3a4aec6b0c368d24d87018a278f3 --- /dev/null +++ b/vlm/train/eVuMspr9cu5/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75581f8b27290c7de7dcb7fa29ddc183b48d915ab80517c8126581be2286f215 +size 501493 diff --git a/vlm/train/eVuMspr9cu5/11.png b/vlm/train/eVuMspr9cu5/11.png new file mode 100644 index 0000000000000000000000000000000000000000..f72e82ab2c13d9c612444d0afc24e64b10e90f03 --- /dev/null +++ b/vlm/train/eVuMspr9cu5/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acece1d0364020b211b0d14f62d384d400a9db374914b9e619ca01b8196e7739 +size 477934 diff --git a/vlm/train/eVuMspr9cu5/12.png b/vlm/train/eVuMspr9cu5/12.png new file mode 100644 index 0000000000000000000000000000000000000000..28ee16d9451a0c21a3d5a9cb74b629adb69b2aa2 --- /dev/null +++ b/vlm/train/eVuMspr9cu5/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c4c59a67bb38f5a2db230e8ceda95dae86821b996d46b09a4ba5f4a40b401e1 +size 405898 diff --git a/vlm/train/eVuMspr9cu5/2.png b/vlm/train/eVuMspr9cu5/2.png new file mode 100644 index 0000000000000000000000000000000000000000..275ba5b156236d9435429d930284b2e9427330b0 --- /dev/null +++ b/vlm/train/eVuMspr9cu5/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ca89122c4919f87abe31d4082680ae7234be7b061bde03c1e1f4df489de87d2 +size 507434 diff --git a/vlm/train/eVuMspr9cu5/3.png b/vlm/train/eVuMspr9cu5/3.png new file mode 100644 index 0000000000000000000000000000000000000000..e9c02f6bba5ffbb8c4193bfad401550d0d9f0d0f --- /dev/null +++ b/vlm/train/eVuMspr9cu5/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15fb02060b80410504c2422bfe9bd936f7e9f617eda3136196bcf3bcdec7c1c2 +size 706816 diff --git a/vlm/train/eVuMspr9cu5/4.png b/vlm/train/eVuMspr9cu5/4.png new file mode 100644 index 0000000000000000000000000000000000000000..7a24e6cc285f5663cedb4a21595c7b2f3924d1f0 --- /dev/null +++ b/vlm/train/eVuMspr9cu5/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:107e8aa8aced4d102fa1eeb433ac39711a68a694abd348c591fb0c98bf8772c2 +size 523144 diff --git a/vlm/train/eVuMspr9cu5/5.png b/vlm/train/eVuMspr9cu5/5.png new file mode 100644 index 0000000000000000000000000000000000000000..54e293b76dab34bd83f4726df5c35e2855be4d40 --- /dev/null +++ b/vlm/train/eVuMspr9cu5/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca02c8fdc033b408e9c7de91152d71e9e1b4f6057fc36c2e0120fb15b8ce04c6 +size 715928 diff --git a/vlm/train/eVuMspr9cu5/6.png b/vlm/train/eVuMspr9cu5/6.png new file mode 100644 index 0000000000000000000000000000000000000000..4541698e36e389fe02c5a002361f20588c2f96d3 --- /dev/null +++ b/vlm/train/eVuMspr9cu5/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5500c24afd66d0346f9d6ababb7e34517b1b7476f2f9363f6f620dd2ac64af2 +size 583166 diff --git a/vlm/train/eVuMspr9cu5/7.png b/vlm/train/eVuMspr9cu5/7.png new file mode 100644 index 0000000000000000000000000000000000000000..33ab01211e0c586202f155c35b0262c3fd2883c7 --- /dev/null +++ b/vlm/train/eVuMspr9cu5/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a13b2fd2363553be9874640307db1074faac42b6d7e448012b9d8c3da299d0a +size 1259083 diff --git a/vlm/train/eVuMspr9cu5/8.png b/vlm/train/eVuMspr9cu5/8.png new file mode 100644 index 0000000000000000000000000000000000000000..1fde9eb68be63ced74f56163b4523ee9da562264 --- /dev/null +++ b/vlm/train/eVuMspr9cu5/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a0e2ad3b61d0a2434dce98432c5cb87adad6a094781ff5470bb8e54c523a05a +size 628183 diff --git a/vlm/train/eVuMspr9cu5/9.png b/vlm/train/eVuMspr9cu5/9.png new file mode 100644 index 0000000000000000000000000000000000000000..fa5cb78019f9782ef3892337a37f4a7395c95573 --- /dev/null +++ b/vlm/train/eVuMspr9cu5/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee0550ee42e5dee7390be745b7984a4d44ee194c96b61338846d1c81d7c9a0f0 +size 694832 diff --git a/vlm/train/hXWPpJedrVP/0.png b/vlm/train/hXWPpJedrVP/0.png new file mode 100644 index 0000000000000000000000000000000000000000..76509359a51aff3856173c31a4814147f0707b82 --- /dev/null +++ b/vlm/train/hXWPpJedrVP/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92b9a10c3360e2d59594747407270e5c39a49b87f6b54ce06d20324492174cfc +size 443435 diff --git a/vlm/train/hXWPpJedrVP/1.png b/vlm/train/hXWPpJedrVP/1.png new file mode 100644 index 0000000000000000000000000000000000000000..c278e3428fda9dd33e502084dbb0b2ca7d9ab699 --- /dev/null +++ b/vlm/train/hXWPpJedrVP/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0a6d49612bb04c04e91e7fc86ce648b699c615f71b8bc8980399027b873fa2a +size 590748 diff --git a/vlm/train/hXWPpJedrVP/10.png b/vlm/train/hXWPpJedrVP/10.png new file mode 100644 index 0000000000000000000000000000000000000000..ff07b64a0a4a5a940e660d15fe2a6d68712a17f9 --- /dev/null +++ b/vlm/train/hXWPpJedrVP/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c00cdc44b1b691897601c1a1fc7663940dbe04f23fcd5d638527b8ae3dee8d0e +size 523582 diff --git a/vlm/train/hXWPpJedrVP/11.png b/vlm/train/hXWPpJedrVP/11.png new file mode 100644 index 0000000000000000000000000000000000000000..6e5c310d28634ad97d53f93b7667158b94899026 --- /dev/null +++ b/vlm/train/hXWPpJedrVP/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f9e9002ce2891b44917ec0254fbd8e49855424ef670cd2f56749a99fa9dd5a1 +size 534342 diff --git a/vlm/train/hXWPpJedrVP/12.png b/vlm/train/hXWPpJedrVP/12.png new file mode 100644 index 0000000000000000000000000000000000000000..e367de3bcfffd55f4cc4b2a3dfadea48b6b50c70 --- /dev/null +++ b/vlm/train/hXWPpJedrVP/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6bf5cc2e4a4bcdf41764524b125fb6b9b131f02c9295869e7130530fb12e2ea +size 451054 diff --git a/vlm/train/hXWPpJedrVP/2.png b/vlm/train/hXWPpJedrVP/2.png new file mode 100644 index 0000000000000000000000000000000000000000..89a136bc7f74c26735b6f38485ecdc7d0a4e6939 --- /dev/null +++ b/vlm/train/hXWPpJedrVP/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9eb188b687a238ab49cb5b084670f5f16fca8678d06d0801eb93f565ea14cdad +size 526882 diff --git a/vlm/train/hXWPpJedrVP/3.png b/vlm/train/hXWPpJedrVP/3.png new file mode 100644 index 0000000000000000000000000000000000000000..8356fc2ed6ccc504ebab27e824eb1e93f2cd696a --- /dev/null +++ b/vlm/train/hXWPpJedrVP/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b015d05080efd2efefafacc443bd7c867d2563bb5e4defbe1f4e9075d791ffe +size 521981 diff --git a/vlm/train/hXWPpJedrVP/4.png b/vlm/train/hXWPpJedrVP/4.png new file mode 100644 index 0000000000000000000000000000000000000000..93291d7408c333d03cadc7725655ae858772c0e5 --- /dev/null +++ b/vlm/train/hXWPpJedrVP/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a2a4d9ac3f1d441bd35f23b7501a44f31bf4245463f6ec8d1fd132294206c23 +size 528544 diff --git a/vlm/train/hXWPpJedrVP/5.png b/vlm/train/hXWPpJedrVP/5.png new file mode 100644 index 0000000000000000000000000000000000000000..fb43d63054501fb8a943ef3b44c96fd28cc974f8 --- /dev/null +++ b/vlm/train/hXWPpJedrVP/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a0c5e527267d9ac6c6613038c0cd9ec442fb00e7be846f31705dc9a0daa3453 +size 531034 diff --git a/vlm/train/hXWPpJedrVP/6.png b/vlm/train/hXWPpJedrVP/6.png new file mode 100644 index 0000000000000000000000000000000000000000..0c8bf5c372cd3c5522678583d5534cf28d3a266b --- /dev/null +++ b/vlm/train/hXWPpJedrVP/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a374a66d2f20ad6a8d130e62e4cbb4867d8824ab002f0546ed459527a7005c97 +size 636095 diff --git a/vlm/train/hXWPpJedrVP/7.png b/vlm/train/hXWPpJedrVP/7.png new file mode 100644 index 0000000000000000000000000000000000000000..9b718c7debf275676e29e988b24e1867d453e4c4 --- /dev/null +++ b/vlm/train/hXWPpJedrVP/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51949f4d68155ba1807d12c28ec55aaa4ce0b6c2b24817cb46ca597ad6ee5985 +size 692186 diff --git a/vlm/train/hXWPpJedrVP/8.png b/vlm/train/hXWPpJedrVP/8.png new file mode 100644 index 0000000000000000000000000000000000000000..a15c8c8637b38553db9991014816ba56f2f34486 --- /dev/null +++ b/vlm/train/hXWPpJedrVP/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4871565b42b7640b479faaabe43608f23e5ce935a86b84e6ab93623797c8c2e +size 480856 diff --git a/vlm/train/hXWPpJedrVP/9.png b/vlm/train/hXWPpJedrVP/9.png new file mode 100644 index 0000000000000000000000000000000000000000..416ba4986986024878ddfb1558adc4a40ee25048 --- /dev/null +++ b/vlm/train/hXWPpJedrVP/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41a9d79afeef8cfbb1ef0e7a171f98f540414dd224afe970ecf926146e7b652c +size 481319 diff --git a/vlm/train/r1f78iAcFm/0.png b/vlm/train/r1f78iAcFm/0.png new file mode 100644 index 0000000000000000000000000000000000000000..6872bc0c461441f595b35ea31b9657bf88382ff5 --- /dev/null +++ b/vlm/train/r1f78iAcFm/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:003fc4dcd7ebd55572bb350da79c765e0f3380eabae9d95d59bc723b462c57ab +size 515442 diff --git a/vlm/train/r1f78iAcFm/1.png b/vlm/train/r1f78iAcFm/1.png new file mode 100644 index 0000000000000000000000000000000000000000..15c2af60f7cafffea14fc7ea8eb0b23c01f13d31 --- /dev/null +++ b/vlm/train/r1f78iAcFm/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a3d24306a332d4c8334f777a69f3bde50b3eaa55657f31b2419d686bd00c30c +size 523343 diff --git a/vlm/train/r1f78iAcFm/10.png b/vlm/train/r1f78iAcFm/10.png new file mode 100644 index 0000000000000000000000000000000000000000..b4b8a5fbdbe81e086d986c7f61760bc6f6a2575d --- /dev/null +++ b/vlm/train/r1f78iAcFm/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ee2db92d29d04909ed06d8aeb9726991d15caf1abb689ea03062898f7e805eb +size 538760 diff --git a/vlm/train/r1f78iAcFm/11.png b/vlm/train/r1f78iAcFm/11.png new file mode 100644 index 0000000000000000000000000000000000000000..f80173b21cfa88eb9e44b8923ee7cf15e7bc9186 --- /dev/null +++ b/vlm/train/r1f78iAcFm/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28c9086d41d0adc30bd09a64d180f408a0d62c4b3792ac318d93dc2986ef142a +size 564714 diff --git a/vlm/train/r1f78iAcFm/12.png b/vlm/train/r1f78iAcFm/12.png new file mode 100644 index 0000000000000000000000000000000000000000..4427ab90ce84b858ec3d1b0a5f3e35b4e3f15b71 --- /dev/null +++ b/vlm/train/r1f78iAcFm/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94bffa860f5d4c48bf4319e988bdd2704b39da5e4e0a7c3994610a218b5b1ce9 +size 325067 diff --git a/vlm/train/r1f78iAcFm/13.png b/vlm/train/r1f78iAcFm/13.png new file mode 100644 index 0000000000000000000000000000000000000000..504b3ae56e82ede2a9feb99c5ae0046c65ed1e85 --- /dev/null +++ b/vlm/train/r1f78iAcFm/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03e3e2fa0f965d0b008048b3f8b37f874d53630e6d6e9e6dd88c113e4c5cc364 +size 428756 diff --git a/vlm/train/r1f78iAcFm/14.png b/vlm/train/r1f78iAcFm/14.png new file mode 100644 index 0000000000000000000000000000000000000000..3a09de0f20c10ea248d0fa24cfbc2785054fa9a4 --- /dev/null +++ b/vlm/train/r1f78iAcFm/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d385ad15a9e01fb9b615657c1abc62d7bbc93e6bd1baa46f4f1f917be0aa3e03 +size 495816 diff --git a/vlm/train/r1f78iAcFm/15.png b/vlm/train/r1f78iAcFm/15.png new file mode 100644 index 0000000000000000000000000000000000000000..38151285d78efc2c1fa8cba8f7b37642acc6a4a5 --- /dev/null +++ b/vlm/train/r1f78iAcFm/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:961b6249d2225e5e09e579473cb372e750e426e29f11f6b17be1c4a0318d08c0 +size 419826 diff --git a/vlm/train/r1f78iAcFm/16.png b/vlm/train/r1f78iAcFm/16.png new file mode 100644 index 0000000000000000000000000000000000000000..4eacbd0f116544e5ac4b5557fc69552b1b43f0e2 --- /dev/null +++ b/vlm/train/r1f78iAcFm/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1354185a50a6b0d6f5e9bbdb3fe3acf4b77970ff94fdc3e11c2eda9b54d4cff +size 401485 diff --git a/vlm/train/r1f78iAcFm/17.png b/vlm/train/r1f78iAcFm/17.png new file mode 100644 index 0000000000000000000000000000000000000000..cf52c06eb8043a08582b9bb643e17fffc1be8518 --- /dev/null +++ b/vlm/train/r1f78iAcFm/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:415be771872221673d900b4322f14b7aa8580412dc7415522adc8c7c9c89fdea +size 307264 diff --git a/vlm/train/r1f78iAcFm/18.png b/vlm/train/r1f78iAcFm/18.png new file mode 100644 index 0000000000000000000000000000000000000000..7d1a86ad11708041b0ddbeb570ae4fc324b38a79 --- /dev/null +++ b/vlm/train/r1f78iAcFm/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52440f774a76b3c95451814d7f9d48832d013514e0c222eec3e362e6508a9d18 +size 442846 diff --git a/vlm/train/r1f78iAcFm/19.png b/vlm/train/r1f78iAcFm/19.png new file mode 100644 index 0000000000000000000000000000000000000000..688333c7a95fd3f77871552f6639dae0efe99feb --- /dev/null +++ b/vlm/train/r1f78iAcFm/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b264ff1f928588ae4df89398601ebf4983aec11b301bd3efc7e95156a44154f +size 201712 diff --git a/vlm/train/r1f78iAcFm/2.png b/vlm/train/r1f78iAcFm/2.png new file mode 100644 index 0000000000000000000000000000000000000000..e2866d59eebdd287b7c84549ca65b06ea2c188ad --- /dev/null +++ b/vlm/train/r1f78iAcFm/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:637b3f5b4fe83a676d683408f6d791b6d62657422cdd1e09fcdbc2bb364bfa65 +size 458634 diff --git a/vlm/train/r1f78iAcFm/20.png b/vlm/train/r1f78iAcFm/20.png new file mode 100644 index 0000000000000000000000000000000000000000..96f7088c44fff7a5154cb1222d62dcd0be1101a1 --- /dev/null +++ b/vlm/train/r1f78iAcFm/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c215bc5ab7f329975452870c79a7119bf4d94c13480d7c171d72cd7f71112ed1 +size 425412 diff --git a/vlm/train/r1f78iAcFm/3.png b/vlm/train/r1f78iAcFm/3.png new file mode 100644 index 0000000000000000000000000000000000000000..64292149e8dce53d48d2b5731e90dfc6da530c48 --- /dev/null +++ b/vlm/train/r1f78iAcFm/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32e3339fba162c0554cd68088e14953680d13d39e08de73824fbd5f880812d64 +size 475521 diff --git a/vlm/train/r1f78iAcFm/4.png b/vlm/train/r1f78iAcFm/4.png new file mode 100644 index 0000000000000000000000000000000000000000..a4347782997d4c213852bc42819f617b578c4fc0 --- /dev/null +++ b/vlm/train/r1f78iAcFm/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e20d844c03a58ea20005466d83d69c7e17fb7defdb22a8e8d70be63e20e45cd9 +size 411234 diff --git a/vlm/train/r1f78iAcFm/5.png b/vlm/train/r1f78iAcFm/5.png new file mode 100644 index 0000000000000000000000000000000000000000..f61833c1ba848fa31873c523a4104a1f7e6c1252 --- /dev/null +++ b/vlm/train/r1f78iAcFm/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80155362c42aa1388de6e17b67623566af7a051947eb522494eda6473f8bcea0 +size 394850 diff --git a/vlm/train/r1f78iAcFm/6.png b/vlm/train/r1f78iAcFm/6.png new file mode 100644 index 0000000000000000000000000000000000000000..d625e4074897c7081e299309f5b3b708f48700d5 --- /dev/null +++ b/vlm/train/r1f78iAcFm/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ee84705e130f59e639aacf9e0b00b358e80d0a6f84a372d6ae0f09aca7ad0f1 +size 416108 diff --git a/vlm/train/r1f78iAcFm/7.png b/vlm/train/r1f78iAcFm/7.png new file mode 100644 index 0000000000000000000000000000000000000000..e863f475e4493384fa8049316836cb05ceeb48f6 --- /dev/null +++ b/vlm/train/r1f78iAcFm/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9368ee405e37ce8de96e0798e631fda0fd1521897dad1507276de61b0a9cb024 +size 425087 diff --git a/vlm/train/r1f78iAcFm/8.png b/vlm/train/r1f78iAcFm/8.png new file mode 100644 index 0000000000000000000000000000000000000000..10487550490f248904baebae221e1dfe86128c41 --- /dev/null +++ b/vlm/train/r1f78iAcFm/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:154d785bfa039f09696e20cc560264eba08a7dd407d6d92f49897ba2b725c023 +size 547896 diff --git a/vlm/train/r1f78iAcFm/9.png b/vlm/train/r1f78iAcFm/9.png new file mode 100644 index 0000000000000000000000000000000000000000..8d7697c52f1f03b3359024df5b161322346a859f --- /dev/null +++ b/vlm/train/r1f78iAcFm/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e0372de06980347ede0804d2d0e59ac4bb687a7bccc8feba65b8c47769e9bc6 +size 563508 diff --git a/vlm/train/rC8sJ4i6kaH/0.png b/vlm/train/rC8sJ4i6kaH/0.png new file mode 100644 index 0000000000000000000000000000000000000000..6f7235d6f7a1386b3d1130f4593703df984f390f --- /dev/null +++ b/vlm/train/rC8sJ4i6kaH/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37436365390f9ee77a9c547353013554cd57ae5767c8bbeff38c0de068216530 +size 519990 diff --git a/vlm/train/rC8sJ4i6kaH/1.png b/vlm/train/rC8sJ4i6kaH/1.png new file mode 100644 index 0000000000000000000000000000000000000000..6e4fba8a12bd88387a33bf016f057e68a440ca4e --- /dev/null +++ b/vlm/train/rC8sJ4i6kaH/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec220f80f47198e8fc269f8829990d80aa17e8894385ffd0cceb5937b851dc90 +size 631490 diff --git a/vlm/train/rC8sJ4i6kaH/10.png b/vlm/train/rC8sJ4i6kaH/10.png new file mode 100644 index 0000000000000000000000000000000000000000..4b552f8fa3d20ea2b53dbb7a8a578c6de908b897 --- /dev/null +++ b/vlm/train/rC8sJ4i6kaH/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:884fef66546ee4b00dcd44a9bd73c05e554b39b00ced7945d41ef04af26f6810 +size 548312 diff --git a/vlm/train/rC8sJ4i6kaH/11.png b/vlm/train/rC8sJ4i6kaH/11.png new file mode 100644 index 0000000000000000000000000000000000000000..cd75e4aecd28428fa1661492479ec5d514157d84 --- /dev/null +++ b/vlm/train/rC8sJ4i6kaH/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23d942ba3722daa1d7a004df77ac3ef5e69ff1b192a93da538625a2b09f49801 +size 524145 diff --git a/vlm/train/rC8sJ4i6kaH/12.png b/vlm/train/rC8sJ4i6kaH/12.png new file mode 100644 index 0000000000000000000000000000000000000000..ed02befc7462e6b80ff79d9c0cbe663bf3cf1dc3 --- /dev/null +++ b/vlm/train/rC8sJ4i6kaH/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:faf8f4f6d136aa8f291f972960ea4cd329a1540b24a24e08d77bc50e385feae0 +size 542997 diff --git a/vlm/train/rC8sJ4i6kaH/13.png b/vlm/train/rC8sJ4i6kaH/13.png new file mode 100644 index 0000000000000000000000000000000000000000..d9833760973bf734414e7658ff373d53b66d5a56 --- /dev/null +++ b/vlm/train/rC8sJ4i6kaH/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab723fb43de332a3be42fd0de6056a7e47ae0b3ce0510b3546cf36ac1cf09cc1 +size 128510 diff --git a/vlm/train/rC8sJ4i6kaH/14.png b/vlm/train/rC8sJ4i6kaH/14.png new file mode 100644 index 0000000000000000000000000000000000000000..58f7033420b48b841bfd207ccedda6c4f786df72 --- /dev/null +++ b/vlm/train/rC8sJ4i6kaH/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f69d0f23f8bcd0da3c756e44edea40e894a2694696317439d325c58a61c97d3 +size 491274 diff --git a/vlm/train/rC8sJ4i6kaH/15.png b/vlm/train/rC8sJ4i6kaH/15.png new file mode 100644 index 0000000000000000000000000000000000000000..d7aa062a27bb21d1ada60b18ec1d652fdbee55d1 --- /dev/null +++ b/vlm/train/rC8sJ4i6kaH/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bc97cbaf40b66389efb262c4635f0422f4f8e43c8430b052b750186cd2932c7 +size 511045 diff --git a/vlm/train/rC8sJ4i6kaH/16.png b/vlm/train/rC8sJ4i6kaH/16.png new file mode 100644 index 0000000000000000000000000000000000000000..a337fdd335fdf6b6a3eda237ac268608ee08e5b3 --- /dev/null +++ b/vlm/train/rC8sJ4i6kaH/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ef739ff744689020a3aa6024e9afa58cf2b784b9c75447de398def139fdfab2 +size 473914 diff --git a/vlm/train/rC8sJ4i6kaH/17.png b/vlm/train/rC8sJ4i6kaH/17.png new file mode 100644 index 0000000000000000000000000000000000000000..983f4f5b1b825df91d1ac60990033f625d1f0bf1 --- /dev/null +++ b/vlm/train/rC8sJ4i6kaH/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:701cc0aebeda9f0ecba800a6331248a377075aa977e4fac0790b73ab886d6619 +size 379664 diff --git a/vlm/train/rC8sJ4i6kaH/18.png b/vlm/train/rC8sJ4i6kaH/18.png new file mode 100644 index 0000000000000000000000000000000000000000..400ce795cbc4b06707a89c3aaf9c011230607e5d --- /dev/null +++ b/vlm/train/rC8sJ4i6kaH/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e435d7ffee0b603b8a1f3a149e21b15848b5379f560545de5a7dd2bc125e4cd +size 419445 diff --git a/vlm/train/rC8sJ4i6kaH/19.png b/vlm/train/rC8sJ4i6kaH/19.png new file mode 100644 index 0000000000000000000000000000000000000000..185990fac0bbb6f9c0c4984928dcf8f2afb3b0ec --- /dev/null +++ b/vlm/train/rC8sJ4i6kaH/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b27ad856b5444cca63011befb7da3e5269d65b34aff801f8f75edacb8cfb4d28 +size 471246 diff --git a/vlm/train/rC8sJ4i6kaH/2.png b/vlm/train/rC8sJ4i6kaH/2.png new file mode 100644 index 0000000000000000000000000000000000000000..68a5006b231e2699b2bc6a523f7107f16a3792ef --- /dev/null +++ b/vlm/train/rC8sJ4i6kaH/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8dae96f83391efedd5355877dd99955498d3c7478296a10197de0ca2ec521f89 +size 750025 diff --git a/vlm/train/rC8sJ4i6kaH/20.png b/vlm/train/rC8sJ4i6kaH/20.png new file mode 100644 index 0000000000000000000000000000000000000000..0ce6576a019288aa6619246d817a9932fd897c94 --- /dev/null +++ b/vlm/train/rC8sJ4i6kaH/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4578b3fc023bfcaca8616686c7369fa456610783826fc6e13f483bdc36518764 +size 461725 diff --git a/vlm/train/rC8sJ4i6kaH/21.png b/vlm/train/rC8sJ4i6kaH/21.png new file mode 100644 index 0000000000000000000000000000000000000000..92f88a50ed8b20f8c94ea6a7b6e6aa19aa2fe015 --- /dev/null +++ b/vlm/train/rC8sJ4i6kaH/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ce7de96fd1376988422984545ec8ca0e6e557e737657d563cf859b4c0d90d04 +size 385893 diff --git a/vlm/train/rC8sJ4i6kaH/22.png b/vlm/train/rC8sJ4i6kaH/22.png new file mode 100644 index 0000000000000000000000000000000000000000..3bded0d21cd5bbc91e6046525c8894e29675b678 --- /dev/null +++ b/vlm/train/rC8sJ4i6kaH/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0eddd9aa1a763465842b728b7951a165ed451fcdce40eab763b368fe61fa6b03 +size 421684 diff --git a/vlm/train/rC8sJ4i6kaH/23.png b/vlm/train/rC8sJ4i6kaH/23.png new file mode 100644 index 0000000000000000000000000000000000000000..9789ea15a496ef5d732be18ca65ff16a9e6506c1 --- /dev/null +++ b/vlm/train/rC8sJ4i6kaH/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a95f732b025198ef2431029c223593088785fc9e6c44ea33b7e8fe99aa0b009 +size 447326 diff --git a/vlm/train/rC8sJ4i6kaH/24.png b/vlm/train/rC8sJ4i6kaH/24.png new file mode 100644 index 0000000000000000000000000000000000000000..a0928416747ded1c2ac27cb1309b0ff062412f60 --- /dev/null +++ b/vlm/train/rC8sJ4i6kaH/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a242144e2caa6a7d73b71e657cdb26171285d42f8d54c27c1d201491cfa6798f +size 453064 diff --git a/vlm/train/rC8sJ4i6kaH/25.png b/vlm/train/rC8sJ4i6kaH/25.png new file mode 100644 index 0000000000000000000000000000000000000000..4702f0fa4a347f66017efbcc21f66c56ef53d645 --- /dev/null +++ b/vlm/train/rC8sJ4i6kaH/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58cb313cdcf66813a9b4685e96e6976a89c12581c3ed334512612375a9fd274a +size 475877 diff --git a/vlm/train/rC8sJ4i6kaH/26.png b/vlm/train/rC8sJ4i6kaH/26.png new file mode 100644 index 0000000000000000000000000000000000000000..8f6cb8d1b670d6d1348c1a39a03a278bf72d3447 --- /dev/null +++ b/vlm/train/rC8sJ4i6kaH/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8cc3c627d837c11508205a69e7d183019b720e75e83e61c68bc72dda7be712c +size 509234 diff --git a/vlm/train/rC8sJ4i6kaH/27.png b/vlm/train/rC8sJ4i6kaH/27.png new file mode 100644 index 0000000000000000000000000000000000000000..49962578f0bb87dad2ed0a36ff8323a87e6df8da --- /dev/null +++ b/vlm/train/rC8sJ4i6kaH/27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa4ed1a882d6c9d51ad8a6797c9773af343427474b5a7dc0f0bb22753a8edd7c +size 433367 diff --git a/vlm/train/rC8sJ4i6kaH/28.png b/vlm/train/rC8sJ4i6kaH/28.png new file mode 100644 index 0000000000000000000000000000000000000000..6d7b590d750c6bc24fb84c4b0f8c503bec044d5f --- /dev/null +++ b/vlm/train/rC8sJ4i6kaH/28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9c3e2abe0fe12872f78bf19420801b791bce88c3b41aae56678ce0f2dc1d1d4 +size 632768 diff --git a/vlm/train/rC8sJ4i6kaH/29.png b/vlm/train/rC8sJ4i6kaH/29.png new file mode 100644 index 0000000000000000000000000000000000000000..a0347be8fbf537aacdff27170c7b3fbbaa41abbd --- /dev/null +++ b/vlm/train/rC8sJ4i6kaH/29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c7fa1ad6ffdcce0c16e6edb29e0813accc70fb8995c9ba4e349351eb898cced +size 118305 diff --git a/vlm/train/rC8sJ4i6kaH/3.png b/vlm/train/rC8sJ4i6kaH/3.png new file mode 100644 index 0000000000000000000000000000000000000000..25d900be8bf72e6e8e616e6dbc95f44e041f68b5 --- /dev/null +++ b/vlm/train/rC8sJ4i6kaH/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c964933cd803080c38ae9a8a529ed78e7c0971b15db838bb6480a110c31f33c +size 630380 diff --git a/vlm/train/rC8sJ4i6kaH/4.png b/vlm/train/rC8sJ4i6kaH/4.png new file mode 100644 index 0000000000000000000000000000000000000000..fc2dec04bc127db3fdd1b0f3581cab0f981880bf --- /dev/null +++ b/vlm/train/rC8sJ4i6kaH/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:051ac6860419dfebae5a22d552329b642aee0cc1170973678596e6456e98fb0f +size 595286 diff --git a/vlm/train/rC8sJ4i6kaH/5.png b/vlm/train/rC8sJ4i6kaH/5.png new file mode 100644 index 0000000000000000000000000000000000000000..5746eb48a3e7277f05f4d69c2202af39444d815b --- /dev/null +++ b/vlm/train/rC8sJ4i6kaH/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e8e325a9f00de6dace684de8caad1049febebb736d9f4a6d6a9017060f9fc74 +size 579668 diff --git a/vlm/train/rC8sJ4i6kaH/6.png b/vlm/train/rC8sJ4i6kaH/6.png new file mode 100644 index 0000000000000000000000000000000000000000..a1ef97fc83ed40da678b0236df2b5f845a9c4c1d --- /dev/null +++ b/vlm/train/rC8sJ4i6kaH/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81260c7e3a74482c0d53ff8ab05d5bd5e08443ad694268c804f9d18393177513 +size 545337 diff --git a/vlm/train/rC8sJ4i6kaH/7.png b/vlm/train/rC8sJ4i6kaH/7.png new file mode 100644 index 0000000000000000000000000000000000000000..4e220a3701768afe6c809d09a40703434a02890e --- /dev/null +++ b/vlm/train/rC8sJ4i6kaH/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f6989a936eceebe7cc52226ec54fff4288e87fe32ba0738392d60d16bcdcecc +size 593210 diff --git a/vlm/train/rC8sJ4i6kaH/8.png b/vlm/train/rC8sJ4i6kaH/8.png new file mode 100644 index 0000000000000000000000000000000000000000..9ca46af527f603c9ff026bdc275f5fa7bb220bca --- /dev/null +++ b/vlm/train/rC8sJ4i6kaH/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fb43ab7785b092d15739bd333172d9a96d28fc179c7a122d7e74acf61c0a2e6 +size 571305 diff --git a/vlm/train/rC8sJ4i6kaH/9.png b/vlm/train/rC8sJ4i6kaH/9.png new file mode 100644 index 0000000000000000000000000000000000000000..e1f31d5179e6b8967ccbfb5b0626de7d2185cd0e --- /dev/null +++ b/vlm/train/rC8sJ4i6kaH/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5005e8921c9cc93a0e6599a7c4d9a3de1b2d3308282da0f801a1b66b4af6261a +size 549436 diff --git a/vlm/train/rJY0-Kcll/0.png b/vlm/train/rJY0-Kcll/0.png new file mode 100644 index 0000000000000000000000000000000000000000..632f6aad75234da3f2e5672931493368cb55f1d0 --- /dev/null +++ b/vlm/train/rJY0-Kcll/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96828eac072fb039765401672a93f0dd5590c6550a67078c66201b9058a98a3a +size 498947 diff --git a/vlm/train/rJY0-Kcll/1.png b/vlm/train/rJY0-Kcll/1.png new file mode 100644 index 0000000000000000000000000000000000000000..73bbf7c429a62cbcf819ba97425e73f76eab4e36 --- /dev/null +++ b/vlm/train/rJY0-Kcll/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dce3033ee9a1ea97fd8726b90671afdebd83e6cec35649cb239e84811e58a800 +size 481929 diff --git a/vlm/train/rJY0-Kcll/10.png b/vlm/train/rJY0-Kcll/10.png new file mode 100644 index 0000000000000000000000000000000000000000..026f48eb6b1b87cdd45ebb5d9317159f27715fc1 --- /dev/null +++ b/vlm/train/rJY0-Kcll/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0636f448f12cd5a993d5990cf1a7871d4b0630289af59e7f19a686da4b97610 +size 322583 diff --git a/vlm/train/rJY0-Kcll/2.png b/vlm/train/rJY0-Kcll/2.png new file mode 100644 index 0000000000000000000000000000000000000000..9c6a498bf66aedb8f18a28300cfe061acc4e595f --- /dev/null +++ b/vlm/train/rJY0-Kcll/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66768d5d40c233a7bc11c36e607cdd2c0e9faa19ff4c2fd4dd8f5069ef1a6452 +size 668185 diff --git a/vlm/train/rJY0-Kcll/3.png b/vlm/train/rJY0-Kcll/3.png new file mode 100644 index 0000000000000000000000000000000000000000..a740145488d308f8d6044423aa825b088bd5b15d --- /dev/null +++ b/vlm/train/rJY0-Kcll/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9da14f44ab25189edf05b15e08200db82140739f0f0e25902cee19e21f8a9b63 +size 504344 diff --git a/vlm/train/rJY0-Kcll/4.png b/vlm/train/rJY0-Kcll/4.png new file mode 100644 index 0000000000000000000000000000000000000000..1204f642cdb1ad23f66ff4c12d70614c07b6a830 --- /dev/null +++ b/vlm/train/rJY0-Kcll/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef5a47f43c05bdfb7d81a9978dd476f8efa292fed12696097193d5dfd2d7b7b6 +size 556702 diff --git a/vlm/train/rJY0-Kcll/5.png b/vlm/train/rJY0-Kcll/5.png new file mode 100644 index 0000000000000000000000000000000000000000..7d5d4db62a743f0cb8f60a956c4df58e34f7420a --- /dev/null +++ b/vlm/train/rJY0-Kcll/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:608cfbbafbfd1e02fdf74497a51e3929c06b96008b200d9ac26d46b82e961056 +size 444792 diff --git a/vlm/train/rJY0-Kcll/6.png b/vlm/train/rJY0-Kcll/6.png new file mode 100644 index 0000000000000000000000000000000000000000..a38313149143e6a12d9ca4d6b0e44cc555aed1e9 --- /dev/null +++ b/vlm/train/rJY0-Kcll/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e11fe8d917931943d35610d76cacb0f4fbe80fd6b9ab2694694459ad85160e3 +size 577633 diff --git a/vlm/train/rJY0-Kcll/7.png b/vlm/train/rJY0-Kcll/7.png new file mode 100644 index 0000000000000000000000000000000000000000..5d9959da0227a3f5cfbc57ae85de5f54b4fc8b09 --- /dev/null +++ b/vlm/train/rJY0-Kcll/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:696e338774cc7bde795b4d84fe92ee9ad5bd912477a62989783f3fdc70dd6474 +size 506663 diff --git a/vlm/train/rJY0-Kcll/8.png b/vlm/train/rJY0-Kcll/8.png new file mode 100644 index 0000000000000000000000000000000000000000..4b67e2ceab0bb1ef86237ec56203660ace9e5369 --- /dev/null +++ b/vlm/train/rJY0-Kcll/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc2904d3c87482119e2650bcfee5d3e7a5ae0ae44ee940eed07b747a81f1c920 +size 426403 diff --git a/vlm/train/rJY0-Kcll/9.png b/vlm/train/rJY0-Kcll/9.png new file mode 100644 index 0000000000000000000000000000000000000000..fad878b63a3cc021cee826f3aa32a4a97280f1c0 --- /dev/null +++ b/vlm/train/rJY0-Kcll/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e863e27e3522fb42aef3df4e1981e4757d475c39b7580d25d8b2b0823ab920f5 +size 526503 diff --git a/vlm/train/rJehllrtDS/0.png b/vlm/train/rJehllrtDS/0.png new file mode 100644 index 0000000000000000000000000000000000000000..71a529e733f3cba07078e86339857108a8889837 --- /dev/null +++ b/vlm/train/rJehllrtDS/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11e844dc9db25ac55f5bd71b9bf8b23210523a13d76467e07d76d9684787643f +size 496326 diff --git a/vlm/train/rJehllrtDS/1.png b/vlm/train/rJehllrtDS/1.png new file mode 100644 index 0000000000000000000000000000000000000000..0fcf31e414437a035cf0569a042400373e21fc77 --- /dev/null +++ b/vlm/train/rJehllrtDS/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a19df6932fa66051728ae3b844f88f2d069bf88f2c9f17f5acf99bde4eb667bd +size 647782 diff --git a/vlm/train/rJehllrtDS/10.png b/vlm/train/rJehllrtDS/10.png new file mode 100644 index 0000000000000000000000000000000000000000..2c22b89193e37a7059b0fb9264bbfc2cf558aee7 --- /dev/null +++ b/vlm/train/rJehllrtDS/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e33ec0a60e2c4ab0b08cc3b6b4cac1263b42cf6777fc5aebf1dd65be61153768 +size 416462 diff --git a/vlm/train/rJehllrtDS/11.png b/vlm/train/rJehllrtDS/11.png new file mode 100644 index 0000000000000000000000000000000000000000..be3a27fbc6ff68b88361be0e101a831f7da3609c --- /dev/null +++ b/vlm/train/rJehllrtDS/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed2ef8f1cf7cef81ee9b830c7bf6f31fa6aa559998451b9dd7c9cfc201e1a948 +size 494457 diff --git a/vlm/train/rJehllrtDS/12.png b/vlm/train/rJehllrtDS/12.png new file mode 100644 index 0000000000000000000000000000000000000000..23bb646081fa767fccc5326c22a75afc5acc4941 --- /dev/null +++ b/vlm/train/rJehllrtDS/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e8f41b1de532a363b1eaaffb56ff5bbc675c4cad6f4f06c9c4c0cf6624c2f30 +size 519452 diff --git a/vlm/train/rJehllrtDS/13.png b/vlm/train/rJehllrtDS/13.png new file mode 100644 index 0000000000000000000000000000000000000000..e294d834d896f5d8b08025cd3b05c56bcd4cd6c7 --- /dev/null +++ b/vlm/train/rJehllrtDS/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf3eb4c34313039ab93d72a70aeb22f9a0c04f164ecbe5485e3df243cc369949 +size 363026 diff --git a/vlm/train/rJehllrtDS/2.png b/vlm/train/rJehllrtDS/2.png new file mode 100644 index 0000000000000000000000000000000000000000..2d2b61eb67d1b43d74016da0a0e63811878edaca --- /dev/null +++ b/vlm/train/rJehllrtDS/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:289f2123ca2141cb00bc0758c02227546387eab2d4f1e5d28bf8183f3fa8fc52 +size 590325 diff --git a/vlm/train/rJehllrtDS/3.png b/vlm/train/rJehllrtDS/3.png new file mode 100644 index 0000000000000000000000000000000000000000..4aeca37085a58d095e7a5dafecf6c31e37553bf6 --- /dev/null +++ b/vlm/train/rJehllrtDS/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b16bdc565fd189f14f69d54e09c16d564212ec27815762c3d49c79ee78ab67dd +size 540075 diff --git a/vlm/train/rJehllrtDS/4.png b/vlm/train/rJehllrtDS/4.png new file mode 100644 index 0000000000000000000000000000000000000000..84165f093f12ae9edf69ab7fd7102925dfd78ada --- /dev/null +++ b/vlm/train/rJehllrtDS/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6eb9a742ac5c257553fdf7f120d8ce96830e6c87d93750e97162d94b3590d56 +size 592692 diff --git a/vlm/train/rJehllrtDS/5.png b/vlm/train/rJehllrtDS/5.png new file mode 100644 index 0000000000000000000000000000000000000000..a61deefbd8262037afa818f73d49afef3149e854 --- /dev/null +++ b/vlm/train/rJehllrtDS/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:721f376f6c7c6b0a49e0d0595d500b1ad858164ee7bb8e167e5d5f9f8f568e7d +size 521182 diff --git a/vlm/train/rJehllrtDS/6.png b/vlm/train/rJehllrtDS/6.png new file mode 100644 index 0000000000000000000000000000000000000000..1d0c320430dc7afe0424a8a9fd94a546fb4a47a2 --- /dev/null +++ b/vlm/train/rJehllrtDS/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f1a30e5b37c872f19d2ab20f25f374fb9e4d4376f3caac72cd7b349b311fd44 +size 598543 diff --git a/vlm/train/rJehllrtDS/7.png b/vlm/train/rJehllrtDS/7.png new file mode 100644 index 0000000000000000000000000000000000000000..14ca27b8ba9aa995001bc22e3e7b2870024f9681 --- /dev/null +++ b/vlm/train/rJehllrtDS/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c932eadd0852be985048a99ff6f979beca2f95a47aec51880cbb53803e2f1497 +size 524378 diff --git a/vlm/train/rJehllrtDS/8.png b/vlm/train/rJehllrtDS/8.png new file mode 100644 index 0000000000000000000000000000000000000000..97e8a3a5edcd04b5d815eac593150293eee74a6d --- /dev/null +++ b/vlm/train/rJehllrtDS/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afb09081125e86111a22f81c7e92e221af9d057975cbf3fc84d2dd8d7f76ef40 +size 544789 diff --git a/vlm/train/rJehllrtDS/9.png b/vlm/train/rJehllrtDS/9.png new file mode 100644 index 0000000000000000000000000000000000000000..8c96e1c2674e1708e507dd3dc298e70258aad843 --- /dev/null +++ b/vlm/train/rJehllrtDS/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8542f31174b80d4ad871f9324b99453b6f2b18f196650220e4cb2c9fd7d52b6 +size 485076 diff --git a/vlm/train/rJgVwTVtvS/0.png b/vlm/train/rJgVwTVtvS/0.png new file mode 100644 index 0000000000000000000000000000000000000000..59d694d95ec96695c6e1ae51ce6cb76961f6312f --- /dev/null +++ b/vlm/train/rJgVwTVtvS/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d6d6b6d942c1b5bbdcf753942eb1f8c7a27fbad28f9a3015fae61e1aa80c9a3 +size 519666 diff --git a/vlm/train/rJgVwTVtvS/1.png b/vlm/train/rJgVwTVtvS/1.png new file mode 100644 index 0000000000000000000000000000000000000000..71112f98f66a5ca7c19079926a52f160b8358604 --- /dev/null +++ b/vlm/train/rJgVwTVtvS/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f95ba0aa9fe2d1c11e534bb99771e3f29c8cff02bf527c1295b60bb1b5dee3fd +size 526973 diff --git a/vlm/train/rJgVwTVtvS/10.png b/vlm/train/rJgVwTVtvS/10.png new file mode 100644 index 0000000000000000000000000000000000000000..ee49f0e43760b6670f57b570d824397528770959 --- /dev/null +++ b/vlm/train/rJgVwTVtvS/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abf36b2532e11b68eabb966a3daf235c960444ac1a6d9ddba522a02db4a86a1c +size 403811 diff --git a/vlm/train/rJgVwTVtvS/11.png b/vlm/train/rJgVwTVtvS/11.png new file mode 100644 index 0000000000000000000000000000000000000000..2faf97cd3214d672028f98e277ebeebab02a8028 --- /dev/null +++ b/vlm/train/rJgVwTVtvS/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fcfd8d9c0e0da6007d8eda08bac14ebe681efcbcbeb743465400f5e131f2bfc7 +size 291157 diff --git a/vlm/train/rJgVwTVtvS/12.png b/vlm/train/rJgVwTVtvS/12.png new file mode 100644 index 0000000000000000000000000000000000000000..1d6f6a0fb03907b6e01d2317badd0ac4c0a220a5 --- /dev/null +++ b/vlm/train/rJgVwTVtvS/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97750a6ff9e54d2db8c80cde57838195c82fd31bb7417466c6ab370f6ee2df27 +size 271268 diff --git a/vlm/train/rJgVwTVtvS/13.png b/vlm/train/rJgVwTVtvS/13.png new file mode 100644 index 0000000000000000000000000000000000000000..77e794051eff48fbb1280b8d111c5d5bc46131e6 --- /dev/null +++ b/vlm/train/rJgVwTVtvS/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d9545f1836cf958abc414fdaee21cff9205d5e323c94661d6e96f6009e5ca62 +size 295094 diff --git a/vlm/train/rJgVwTVtvS/14.png b/vlm/train/rJgVwTVtvS/14.png new file mode 100644 index 0000000000000000000000000000000000000000..0736388419cfc1f9e2dbd830d0fd1c34e40fe952 --- /dev/null +++ b/vlm/train/rJgVwTVtvS/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ba9b16b00b5a5de90df3f27560f3fa114e94763527a76e983105996c1be3d72 +size 258410 diff --git a/vlm/train/rJgVwTVtvS/15.png b/vlm/train/rJgVwTVtvS/15.png new file mode 100644 index 0000000000000000000000000000000000000000..0bfed1f95fc6c9358e0b5291328a6f43fcecdf02 --- /dev/null +++ b/vlm/train/rJgVwTVtvS/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d56ac54c76fe9835c2230d853f51e9e01ba4208d8063440ed58f595a464ffddf +size 248888 diff --git a/vlm/train/rJgVwTVtvS/16.png b/vlm/train/rJgVwTVtvS/16.png new file mode 100644 index 0000000000000000000000000000000000000000..160e55365d658fa3c10dad73310607b0e7958eec --- /dev/null +++ b/vlm/train/rJgVwTVtvS/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65f36a09e3cd58960cb017a26d9b9cddc9f76354fc265ef190aaf3ec433ca0b6 +size 81032 diff --git a/vlm/train/rJgVwTVtvS/2.png b/vlm/train/rJgVwTVtvS/2.png new file mode 100644 index 0000000000000000000000000000000000000000..97ceb0cdd70e924a57edaa19b3f1ef11bc46952a --- /dev/null +++ b/vlm/train/rJgVwTVtvS/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:314a1faf81ec3bd9321165d506c37b340dc6d1810e9f932632ae0bd8d8f03fdb +size 499925 diff --git a/vlm/train/rJgVwTVtvS/3.png b/vlm/train/rJgVwTVtvS/3.png new file mode 100644 index 0000000000000000000000000000000000000000..3249db9095c3eaa64b42c6ac8b2c2a402174a6d0 --- /dev/null +++ b/vlm/train/rJgVwTVtvS/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0dbcce1a1907efcb4ae925dc64806f1d3b6b5e9d69f2c6b728a76e2d0e200b03 +size 504490 diff --git a/vlm/train/rJgVwTVtvS/4.png b/vlm/train/rJgVwTVtvS/4.png new file mode 100644 index 0000000000000000000000000000000000000000..ec11a5ec8dbd9c622c7cd4aeac3d7dfc4db94f8e --- /dev/null +++ b/vlm/train/rJgVwTVtvS/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be8996219c94d335f0cf65326f7c8d0dfb7cf2a50cd9ef7a563c379bbe190767 +size 536073 diff --git a/vlm/train/rJgVwTVtvS/5.png b/vlm/train/rJgVwTVtvS/5.png new file mode 100644 index 0000000000000000000000000000000000000000..6e3c179ea3a92b7398e4c8dae74dd6a58282d221 --- /dev/null +++ b/vlm/train/rJgVwTVtvS/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4943eeb06f64831b371d2f316dd09a077bc39fb54c8fed14f6c7a32ab8b9f76 +size 481221 diff --git a/vlm/train/rJgVwTVtvS/6.png b/vlm/train/rJgVwTVtvS/6.png new file mode 100644 index 0000000000000000000000000000000000000000..e6ce91c66507a6a820d56372d3709a6262a33440 --- /dev/null +++ b/vlm/train/rJgVwTVtvS/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae6373967534a364b67f3c075617f519cbdd0323fe27d4aedadbde0ae898a2d7 +size 534199 diff --git a/vlm/train/rJgVwTVtvS/7.png b/vlm/train/rJgVwTVtvS/7.png new file mode 100644 index 0000000000000000000000000000000000000000..f6acefc18fbf46dd885c2ace02ced48c256d0f98 --- /dev/null +++ b/vlm/train/rJgVwTVtvS/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c1fe5c6e89d7cb01b1b78916069c0291120456ea757f95cae613e1fb46cb164 +size 553278 diff --git a/vlm/train/rJgVwTVtvS/8.png b/vlm/train/rJgVwTVtvS/8.png new file mode 100644 index 0000000000000000000000000000000000000000..5ece05343bb1df9cbc7075b6d6ee290cf97261dd --- /dev/null +++ b/vlm/train/rJgVwTVtvS/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21e17aee8d0840ba858f65c0eebcb8f492b3956a2c0becca70d36f41c02103d7 +size 78523 diff --git a/vlm/train/rJgVwTVtvS/9.png b/vlm/train/rJgVwTVtvS/9.png new file mode 100644 index 0000000000000000000000000000000000000000..02b8ccbb41a36bf10a7673e6b2bc3aa36e72f620 --- /dev/null +++ b/vlm/train/rJgVwTVtvS/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56a483abd3da3b42c70070edd6ae3cfc5d55ecaffeffeed737ef6686b7cfb7ad +size 555969 diff --git a/vlm/train/rkGG6s0qKQ/0.png b/vlm/train/rkGG6s0qKQ/0.png new file mode 100644 index 0000000000000000000000000000000000000000..809983d688508daff17bab7a0b2163f72f607959 --- /dev/null +++ b/vlm/train/rkGG6s0qKQ/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:310dcda6aa21167559929b36514fdfebfa3217f52c7fe4ee286cc9d3db222491 +size 515978 diff --git a/vlm/train/rkGG6s0qKQ/1.png b/vlm/train/rkGG6s0qKQ/1.png new file mode 100644 index 0000000000000000000000000000000000000000..e54b0df762d696f26584f79787100aae9e2d7139 --- /dev/null +++ b/vlm/train/rkGG6s0qKQ/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5b94a59fb07d306601790625e7c92ce90eec7ce70ecc42cc5d1d77c066698dc +size 581562 diff --git a/vlm/train/rkGG6s0qKQ/10.png b/vlm/train/rkGG6s0qKQ/10.png new file mode 100644 index 0000000000000000000000000000000000000000..aff658bc7c45d4a6dad9cbdb2c8ff191473cdf04 --- /dev/null +++ b/vlm/train/rkGG6s0qKQ/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a7f8ff477b53541ee5121b81f16dfcf6f6948b2f1244a25552c707aac7bb32d +size 363150 diff --git a/vlm/train/rkGG6s0qKQ/11.png b/vlm/train/rkGG6s0qKQ/11.png new file mode 100644 index 0000000000000000000000000000000000000000..2b576ce6a1b92c08fca259b8534c718d3319d512 --- /dev/null +++ b/vlm/train/rkGG6s0qKQ/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d0ac8d882deca9497296d7182b0fed6f94d325f036a6730842380aca03e249d +size 312510 diff --git a/vlm/train/rkGG6s0qKQ/12.png b/vlm/train/rkGG6s0qKQ/12.png new file mode 100644 index 0000000000000000000000000000000000000000..2d3a6cfd23422fd0748749c4d477b4a32065baac --- /dev/null +++ b/vlm/train/rkGG6s0qKQ/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8da81385b26eb3f5093cdfabd88e8e0e1e5bb21a0955113716b087dc49a85e25 +size 274210 diff --git a/vlm/train/rkGG6s0qKQ/13.png b/vlm/train/rkGG6s0qKQ/13.png new file mode 100644 index 0000000000000000000000000000000000000000..0b37b103a625cc14c98d6ff223f97d9048e32d1c --- /dev/null +++ b/vlm/train/rkGG6s0qKQ/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84d591aa9af25ddab5fe91bb66243ea5740957b1b2ad52529d9ffe199fbc271a +size 456610 diff --git a/vlm/train/rkGG6s0qKQ/14.png b/vlm/train/rkGG6s0qKQ/14.png new file mode 100644 index 0000000000000000000000000000000000000000..5d09b89aede7d7e5b1fa1102a39592c62cbaac82 --- /dev/null +++ b/vlm/train/rkGG6s0qKQ/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2db6c1bb784ab5a69073e7ac2785e2afbcf76d935054858d8ad64880d159d328 +size 394045 diff --git a/vlm/train/rkGG6s0qKQ/15.png b/vlm/train/rkGG6s0qKQ/15.png new file mode 100644 index 0000000000000000000000000000000000000000..276c5327ad5bab5beff8dd2ff5594fa0e4b76dd5 --- /dev/null +++ b/vlm/train/rkGG6s0qKQ/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1f546697917e8a14d263aa3a063690ff08c2cc44710a08a95a46e14ddd218a9 +size 2310319 diff --git a/vlm/train/rkGG6s0qKQ/16.png b/vlm/train/rkGG6s0qKQ/16.png new file mode 100644 index 0000000000000000000000000000000000000000..8f8a38133239e5abb5082e872f7082e723f0d221 --- /dev/null +++ b/vlm/train/rkGG6s0qKQ/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef427b109e98218d8d01862763d73a4f5e33b25e8c7856bf94904d85a32f7b81 +size 276175 diff --git a/vlm/train/rkGG6s0qKQ/2.png b/vlm/train/rkGG6s0qKQ/2.png new file mode 100644 index 0000000000000000000000000000000000000000..c22f49ba0f72d96f2f7d5ef1eb8fae1618494805 --- /dev/null +++ b/vlm/train/rkGG6s0qKQ/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bed792e75bd7b58c34ff8d35d54c07c416e4a49cde9837dc26a2a6823caed51d +size 626849 diff --git a/vlm/train/rkGG6s0qKQ/3.png b/vlm/train/rkGG6s0qKQ/3.png new file mode 100644 index 0000000000000000000000000000000000000000..146dc7e2056a885a50a4f1ba6591a22e259b4109 --- /dev/null +++ b/vlm/train/rkGG6s0qKQ/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:959e932ac9a38b90b84943510c754237b989b625daf2ef11aaad587d5647cd35 +size 583204 diff --git a/vlm/train/rkGG6s0qKQ/4.png b/vlm/train/rkGG6s0qKQ/4.png new file mode 100644 index 0000000000000000000000000000000000000000..dda61296ea2ee010675fc673d928e85f50104abc --- /dev/null +++ b/vlm/train/rkGG6s0qKQ/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4e08f9b63783c60c876bf44026bbc9a32879c5afeef0d73e32746d1aea4004e +size 513408 diff --git a/vlm/train/rkGG6s0qKQ/5.png b/vlm/train/rkGG6s0qKQ/5.png new file mode 100644 index 0000000000000000000000000000000000000000..421446685592707294a25c4d0433416a5932a020 --- /dev/null +++ b/vlm/train/rkGG6s0qKQ/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee427d30a2d105b07ed60ffbdb8ce58d9356a99754b41a6f74ff6271d5250335 +size 478274 diff --git a/vlm/train/rkGG6s0qKQ/6.png b/vlm/train/rkGG6s0qKQ/6.png new file mode 100644 index 0000000000000000000000000000000000000000..c42374e39e89d0275449e0d37360639a5d35c2ca --- /dev/null +++ b/vlm/train/rkGG6s0qKQ/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de196982ca72e198d4858dfc5520a56be45f6705e0f7e7a78c99e34acce59da7 +size 531640 diff --git a/vlm/train/rkGG6s0qKQ/7.png b/vlm/train/rkGG6s0qKQ/7.png new file mode 100644 index 0000000000000000000000000000000000000000..709d9f029ca8edc6aeae61ffa267f8cb5ee5910e --- /dev/null +++ b/vlm/train/rkGG6s0qKQ/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22a9fcaf46820d1cd44c7bc08697ee1752895cdec1a67d35610305198fad976e +size 578475 diff --git a/vlm/train/rkGG6s0qKQ/8.png b/vlm/train/rkGG6s0qKQ/8.png new file mode 100644 index 0000000000000000000000000000000000000000..f2273928fdd3e5b2a0cacf7c802cc1fe6ebadc94 --- /dev/null +++ b/vlm/train/rkGG6s0qKQ/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb6c8dda7bc561565d92ea97d04ff8bc9aa427272c8d86a31d702e9e3e7de6a5 +size 559095 diff --git a/vlm/train/rkGG6s0qKQ/9.png b/vlm/train/rkGG6s0qKQ/9.png new file mode 100644 index 0000000000000000000000000000000000000000..92215e96bd03fdd81442bbcf8c28f15a771e4d6e --- /dev/null +++ b/vlm/train/rkGG6s0qKQ/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7229d9597bbbe5675b26a17db2e0ab45a1abbbf798a2581ecaa600dec1034d8 +size 276846 diff --git a/vlm/train/rke3TJrtPS/0.png b/vlm/train/rke3TJrtPS/0.png new file mode 100644 index 0000000000000000000000000000000000000000..eece26ba61f43fd46678f342ed6c672a1f5e3e0d --- /dev/null +++ b/vlm/train/rke3TJrtPS/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:315d523d09f7f56468dbc1907d155f97a583862dab15181ff50a1ac6c82acd8d +size 469485 diff --git a/vlm/train/rke3TJrtPS/10.png b/vlm/train/rke3TJrtPS/10.png new file mode 100644 index 0000000000000000000000000000000000000000..2a2c3cdb55f7cb223535d6470464ba671dd8f541 --- /dev/null +++ b/vlm/train/rke3TJrtPS/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5da1baa11b3075e2fd3b2ac6660bc946b77057f8dc77bca8ca9781adb641da1 +size 381024 diff --git a/vlm/train/rke3TJrtPS/11.png b/vlm/train/rke3TJrtPS/11.png new file mode 100644 index 0000000000000000000000000000000000000000..77dab7e84f27c9dd1730f75ef0130a8f92b11edd --- /dev/null +++ b/vlm/train/rke3TJrtPS/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:701b75bedfbf15cfc9768dbeb5ff0e26a7e5079469588f52da54774936c0c72f +size 370222 diff --git a/vlm/train/rke3TJrtPS/14.png b/vlm/train/rke3TJrtPS/14.png new file mode 100644 index 0000000000000000000000000000000000000000..470fc03f9f07c800cd118a08ae06797512bb2ca3 --- /dev/null +++ b/vlm/train/rke3TJrtPS/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1eacb48cb9280e5dd5bf054ef58bf0dcb76bf419aec458b91a5b03af24829f0 +size 338029 diff --git a/vlm/train/rke3TJrtPS/15.png b/vlm/train/rke3TJrtPS/15.png new file mode 100644 index 0000000000000000000000000000000000000000..b605a13f5b1cf9b4438adf0a583000ddb178082a --- /dev/null +++ b/vlm/train/rke3TJrtPS/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e03d1d3ebfeb10b7de945dc7712a00988c3d4a283104e481db5bf2367896707 +size 338802 diff --git a/vlm/train/rke3TJrtPS/17.png b/vlm/train/rke3TJrtPS/17.png new file mode 100644 index 0000000000000000000000000000000000000000..5155175778bc4648ded205fa4d9b33d09c365159 --- /dev/null +++ b/vlm/train/rke3TJrtPS/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:233b0440af39dcd053afb5fff5928c3d098c7204c92bc96e6f0969f57dfcb1b5 +size 278427 diff --git a/vlm/train/rke3TJrtPS/2.png b/vlm/train/rke3TJrtPS/2.png new file mode 100644 index 0000000000000000000000000000000000000000..24af0c518efd2e51fb1553729b0faee805d91d1c --- /dev/null +++ b/vlm/train/rke3TJrtPS/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40ff11eb4c7a16743342f1eb35eee4525479ab4653754d3f42619e155ed8abe4 +size 522768 diff --git a/vlm/train/rke3TJrtPS/21.png b/vlm/train/rke3TJrtPS/21.png new file mode 100644 index 0000000000000000000000000000000000000000..c16e558f0ab74006f245b0983b42bb3c14fcb30f --- /dev/null +++ b/vlm/train/rke3TJrtPS/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96688f7d3b80548f18e8bcb8cfdf050f92be19605e687589e8748a0e34a32a88 +size 651149 diff --git a/vlm/train/rke3TJrtPS/23.png b/vlm/train/rke3TJrtPS/23.png new file mode 100644 index 0000000000000000000000000000000000000000..7f69926c9bdb17cc693ccf43320d32494a2abeee --- /dev/null +++ b/vlm/train/rke3TJrtPS/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:377987e4062da4f343422817a7477ce1793d8d11aab4c5e40c4f84927e291133 +size 756533 diff --git a/vlm/train/rke3TJrtPS/3.png b/vlm/train/rke3TJrtPS/3.png new file mode 100644 index 0000000000000000000000000000000000000000..51b1961d71bdf4aff543f60eb2ecf2849b38267a --- /dev/null +++ b/vlm/train/rke3TJrtPS/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b78f7c6ff3dcfacba0f7b142907a6b9574ff70a3840a420056111ec3ba1ebecb +size 440294 diff --git a/vlm/train/rke3TJrtPS/6.png b/vlm/train/rke3TJrtPS/6.png new file mode 100644 index 0000000000000000000000000000000000000000..1de9ac813525d711199b4ad65788a9cfda862306 --- /dev/null +++ b/vlm/train/rke3TJrtPS/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24ed40c7b77b4e9b5e4e4afb3455a4ac32b43ca821d12ff689b560bf9355990f +size 559654 diff --git a/vlm/train/rke3TJrtPS/9.png b/vlm/train/rke3TJrtPS/9.png new file mode 100644 index 0000000000000000000000000000000000000000..e7ef3b7c24bf2d5b0d6d32115ace99bec11564c2 --- /dev/null +++ b/vlm/train/rke3TJrtPS/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10a3cb4dadf81137c1cafd840961ba00b3e639afdb4e1622e8d0e23173d752bf +size 503394 diff --git a/vlm/train/rkgt0REKwS/0.png b/vlm/train/rkgt0REKwS/0.png new file mode 100644 index 0000000000000000000000000000000000000000..85f11d44b1de41d53abc7051d8c44536a22354f4 --- /dev/null +++ b/vlm/train/rkgt0REKwS/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb5f0f497c902bab1035840a669b52f307d9afee4a5d8e4e74ae9edb809dbef5 +size 493966 diff --git a/vlm/train/rkgt0REKwS/1.png b/vlm/train/rkgt0REKwS/1.png new file mode 100644 index 0000000000000000000000000000000000000000..6df1d360ac27cf8d569bd235c9b601e1265690d9 --- /dev/null +++ b/vlm/train/rkgt0REKwS/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57ee1c3be79d24107a0bb48e31e004f7180e9de4e283f65fa17acb4cb7de6bb6 +size 575356 diff --git a/vlm/train/rkgt0REKwS/10.png b/vlm/train/rkgt0REKwS/10.png new file mode 100644 index 0000000000000000000000000000000000000000..241773a132061211347d66ecddbded4384f09650 --- /dev/null +++ b/vlm/train/rkgt0REKwS/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4de9c87d6e3ae5621fd7d7029ad6e47c3e29fa3f9a953d6c0717c9ba2234ee0 +size 504469 diff --git a/vlm/train/rkgt0REKwS/11.png b/vlm/train/rkgt0REKwS/11.png new file mode 100644 index 0000000000000000000000000000000000000000..5481cb9e87bda43fa4b454033513ec0de3edee73 --- /dev/null +++ b/vlm/train/rkgt0REKwS/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71419212dd51ded155ff35359aa01d0570ac77002a5e5465f2077f9c2faee7b9 +size 342078 diff --git a/vlm/train/rkgt0REKwS/12.png b/vlm/train/rkgt0REKwS/12.png new file mode 100644 index 0000000000000000000000000000000000000000..977ee84300c40bd472ad1f660ffcb33bceae7934 --- /dev/null +++ b/vlm/train/rkgt0REKwS/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ee025f2050f95da564f31d2367ef5d4358f258dcf52a0a7911faa182b332746 +size 495840 diff --git a/vlm/train/rkgt0REKwS/13.png b/vlm/train/rkgt0REKwS/13.png new file mode 100644 index 0000000000000000000000000000000000000000..cb8f6d21f151190edc99709cee977a16a4c82777 --- /dev/null +++ b/vlm/train/rkgt0REKwS/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9cd83e8f890106166b6c664c25bc8b3e22c732f493eb9bfcbb03b738b7145c9b +size 311221 diff --git a/vlm/train/rkgt0REKwS/14.png b/vlm/train/rkgt0REKwS/14.png new file mode 100644 index 0000000000000000000000000000000000000000..3f9102f5d325f2f614cbc01b1192cbdc79fa5d6e --- /dev/null +++ b/vlm/train/rkgt0REKwS/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00cd042bfc18bef1962550257ad7c55dd80f6387df0c75bf25900bc591a592a3 +size 302887 diff --git a/vlm/train/rkgt0REKwS/15.png b/vlm/train/rkgt0REKwS/15.png new file mode 100644 index 0000000000000000000000000000000000000000..45e38021458ea6596f360bcfa0a038248ba03499 --- /dev/null +++ b/vlm/train/rkgt0REKwS/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c22643da04810db55895932a16dd7d4ab48f0bea70b421bc654ef730669a8ec4 +size 289636 diff --git a/vlm/train/rkgt0REKwS/16.png b/vlm/train/rkgt0REKwS/16.png new file mode 100644 index 0000000000000000000000000000000000000000..77388fa6df16860f1a258583ca73dc9ea2122f93 --- /dev/null +++ b/vlm/train/rkgt0REKwS/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91034ee36971ad0c1d31da9c06e2b8b11ad52fe28ccbada43f6cf5eb980ced86 +size 263438 diff --git a/vlm/train/rkgt0REKwS/17.png b/vlm/train/rkgt0REKwS/17.png new file mode 100644 index 0000000000000000000000000000000000000000..ae6dbff8fa611408e21896724d42ffcea1219d1c --- /dev/null +++ b/vlm/train/rkgt0REKwS/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ccc5f0354f25a0df64989d64198086d1d24841e6e4f3a8b007d5d0de3b4b1cf +size 472399 diff --git a/vlm/train/rkgt0REKwS/18.png b/vlm/train/rkgt0REKwS/18.png new file mode 100644 index 0000000000000000000000000000000000000000..5ee36d75aeb4927bb2e7081644c36586ea3cb228 --- /dev/null +++ b/vlm/train/rkgt0REKwS/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a4221a2b36b908163912413516f1d0938619ce4a7bff04a5a46557fb9dd8fd7 +size 580133 diff --git a/vlm/train/rkgt0REKwS/19.png b/vlm/train/rkgt0REKwS/19.png new file mode 100644 index 0000000000000000000000000000000000000000..f00c51bd45513ad89b71b34095372bdc47d63e24 --- /dev/null +++ b/vlm/train/rkgt0REKwS/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3f6f7b752953454bbe3e76d5aec68da0a1497ca8ef4f212a06223d636cd74ac +size 434058 diff --git a/vlm/train/rkgt0REKwS/2.png b/vlm/train/rkgt0REKwS/2.png new file mode 100644 index 0000000000000000000000000000000000000000..6d03cbf7e167711f68418b8875ea177e2567b06f --- /dev/null +++ b/vlm/train/rkgt0REKwS/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00c081c25da2abb34e9f3269a9d0e8d8740d70d8211d77b3adb09de1114d5971 +size 532894 diff --git a/vlm/train/rkgt0REKwS/20.png b/vlm/train/rkgt0REKwS/20.png new file mode 100644 index 0000000000000000000000000000000000000000..46b7b33bc90fbdb2d821818f1864605e33ac104d --- /dev/null +++ b/vlm/train/rkgt0REKwS/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:163f4b3472716e0767794df66ce2310fa33f4623dfe3dd76d7689c0c3d674248 +size 343223 diff --git a/vlm/train/rkgt0REKwS/21.png b/vlm/train/rkgt0REKwS/21.png new file mode 100644 index 0000000000000000000000000000000000000000..963ff1c0309f7cc0db3dffc3c2c5825abd6dbffc --- /dev/null +++ b/vlm/train/rkgt0REKwS/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28bdfc4a2f717babe2aba17edd121e421c5177e4d59d61574adf2a3fd33ab0e6 +size 152999 diff --git a/vlm/train/rkgt0REKwS/3.png b/vlm/train/rkgt0REKwS/3.png new file mode 100644 index 0000000000000000000000000000000000000000..f0b0796cfed73dbd029b7df51133aa88177e3801 --- /dev/null +++ b/vlm/train/rkgt0REKwS/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:385861830d364a23d1a7b19c2abf3428d17f588e292e995fe790b38abca31cd5 +size 576780 diff --git a/vlm/train/rkgt0REKwS/4.png b/vlm/train/rkgt0REKwS/4.png new file mode 100644 index 0000000000000000000000000000000000000000..20bed0fa1e1fa75b0088e37dc6abc6dd2945743d --- /dev/null +++ b/vlm/train/rkgt0REKwS/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32b2fc47eae2b6234c35bfaff5bddb6ccb25a140984f85e69e2fa5efb1353590 +size 447102 diff --git a/vlm/train/rkgt0REKwS/5.png b/vlm/train/rkgt0REKwS/5.png new file mode 100644 index 0000000000000000000000000000000000000000..fd2bcaf2a4c1b73683baf194a8a607f044a657ce --- /dev/null +++ b/vlm/train/rkgt0REKwS/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9dd402b6d9c17057769ded2f85688f71cd3d969bdffec351a3154adec19cfeaf +size 531813 diff --git a/vlm/train/rkgt0REKwS/6.png b/vlm/train/rkgt0REKwS/6.png new file mode 100644 index 0000000000000000000000000000000000000000..3db36b5c260efd9432c10606ff255db3393e69cf --- /dev/null +++ b/vlm/train/rkgt0REKwS/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8583dd86f0ea93a11612050dd7527994a7a59cd8127c57d8edf685df7bc056d1 +size 479385 diff --git a/vlm/train/rkgt0REKwS/7.png b/vlm/train/rkgt0REKwS/7.png new file mode 100644 index 0000000000000000000000000000000000000000..d604c1baf448a47923235a7b1b197756bd2ff684 --- /dev/null +++ b/vlm/train/rkgt0REKwS/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40f45d868585affefa5bdb538bdc3c3070223e49cf29bc43c9bb73f5319b3eee +size 593867 diff --git a/vlm/train/rkgt0REKwS/8.png b/vlm/train/rkgt0REKwS/8.png new file mode 100644 index 0000000000000000000000000000000000000000..76fa17de564c036df8803718a5cb61ffad7c5fc0 --- /dev/null +++ b/vlm/train/rkgt0REKwS/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:124a28a10c6f178547cb829919c415bff8875ade725c89361d29710ba426b2f1 +size 544278 diff --git a/vlm/train/rkgt0REKwS/9.png b/vlm/train/rkgt0REKwS/9.png new file mode 100644 index 0000000000000000000000000000000000000000..84067b85cbbbb512aae95cdca4e323ae7eedae6b --- /dev/null +++ b/vlm/train/rkgt0REKwS/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09fffcaff0b26c3bed30e706bcf29a36ef97e73a42abf37f8cfefbf314db994b +size 387483 diff --git a/vlm/train/rkllGyBFPH/0.png b/vlm/train/rkllGyBFPH/0.png new file mode 100644 index 0000000000000000000000000000000000000000..fa941d9a235bb9277f1b953ad7be641502ad24c2 --- /dev/null +++ b/vlm/train/rkllGyBFPH/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f007cb832baa9a42db40d46cffe1611d9f327de4a542325bc7fb260efbdeea9 +size 510843 diff --git a/vlm/train/rkllGyBFPH/1.png b/vlm/train/rkllGyBFPH/1.png new file mode 100644 index 0000000000000000000000000000000000000000..03093d8e6a61bb1ecd49c6e77dd3c39315b5b857 --- /dev/null +++ b/vlm/train/rkllGyBFPH/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44486ff5164d050dbece5d61ea83bed0c0c17314233086281212bd7b9d0a2bb0 +size 564403 diff --git a/vlm/train/rkllGyBFPH/10.png b/vlm/train/rkllGyBFPH/10.png new file mode 100644 index 0000000000000000000000000000000000000000..041857161566751523734b5fee63767aa754deda --- /dev/null +++ b/vlm/train/rkllGyBFPH/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e160435455c9301eaaa7085373b8076de5baee8d435aa5b7aca3450ec3f7f554 +size 520387 diff --git a/vlm/train/rkllGyBFPH/11.png b/vlm/train/rkllGyBFPH/11.png new file mode 100644 index 0000000000000000000000000000000000000000..e388518e083d735164e87ed88e71f69ea32c028e --- /dev/null +++ b/vlm/train/rkllGyBFPH/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2e6baebf695711572a532cc5ba9ae3f403cf3e805c4a73ea4f61022aaa7e0d +size 532144 diff --git a/vlm/train/rkllGyBFPH/12.png b/vlm/train/rkllGyBFPH/12.png new file mode 100644 index 0000000000000000000000000000000000000000..0c7f180c9f225437cbe45139521cb1e92b30e581 --- /dev/null +++ b/vlm/train/rkllGyBFPH/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a751b6dd940af3f57b460a8d7e71b74cf8dfffa3c127e7c486a85fd0075cd97 +size 532073 diff --git a/vlm/train/rkllGyBFPH/13.png b/vlm/train/rkllGyBFPH/13.png new file mode 100644 index 0000000000000000000000000000000000000000..8a4d3ef76c72eb3c5cf06728252eb5c54eb25f78 --- /dev/null +++ b/vlm/train/rkllGyBFPH/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f0a88ab36c0f3743834a5f5cece4b796580507c10254973a564beb8cd565157 +size 362547 diff --git a/vlm/train/rkllGyBFPH/14.png b/vlm/train/rkllGyBFPH/14.png new file mode 100644 index 0000000000000000000000000000000000000000..74bbe6fb12c319b5f4b71cd1ffd8190e48624d3d --- /dev/null +++ b/vlm/train/rkllGyBFPH/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc1e93264bd3f57ae0154f19b6fc3ba85f9edd4cad81c2951e49b1689caedbb7 +size 398479 diff --git a/vlm/train/rkllGyBFPH/15.png b/vlm/train/rkllGyBFPH/15.png new file mode 100644 index 0000000000000000000000000000000000000000..d71e8046ac7e30b3d27d08cea2238488c6759898 --- /dev/null +++ b/vlm/train/rkllGyBFPH/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab37e22acca3b1fe65bf31a8b20189c8226ecad41e2c442c691e1d7f190d9b6e +size 274104 diff --git a/vlm/train/rkllGyBFPH/16.png b/vlm/train/rkllGyBFPH/16.png new file mode 100644 index 0000000000000000000000000000000000000000..317a2e7a13dcc4a96c998f00ad3e41b116b75396 --- /dev/null +++ b/vlm/train/rkllGyBFPH/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:611727b9ab25ea4a689d7988ecfdaf2134f57780d522d46b3798bce1ef9eca65 +size 333593 diff --git a/vlm/train/rkllGyBFPH/17.png b/vlm/train/rkllGyBFPH/17.png new file mode 100644 index 0000000000000000000000000000000000000000..17c556442cb9df6e73e0cf51e00400d689a8119a --- /dev/null +++ b/vlm/train/rkllGyBFPH/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18ff80fe9c56a3371fd2d1dccfa490b384c7a0cee6c7654601de88bd31d519dc +size 280698 diff --git a/vlm/train/rkllGyBFPH/18.png b/vlm/train/rkllGyBFPH/18.png new file mode 100644 index 0000000000000000000000000000000000000000..ace6f2d760d4ae0d413497b58dde1055cdb4ddfb --- /dev/null +++ b/vlm/train/rkllGyBFPH/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a236c58c2c76ae8f92c3ef10e2b3902338bb05067259e6cf3dcdcb5cd253c8cc +size 290102 diff --git a/vlm/train/rkllGyBFPH/19.png b/vlm/train/rkllGyBFPH/19.png new file mode 100644 index 0000000000000000000000000000000000000000..7158b8da3f10a2f5e2873fcc8e0a96b17cdd6659 --- /dev/null +++ b/vlm/train/rkllGyBFPH/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4430f86ef6a92f3af59eb0a56fccb853d08253c3c79f67a99582ed9a7717eefa +size 289442 diff --git a/vlm/train/rkllGyBFPH/2.png b/vlm/train/rkllGyBFPH/2.png new file mode 100644 index 0000000000000000000000000000000000000000..c7ff71e04dfe6d6ddfeeb4265ef6e35fcf7d3a93 --- /dev/null +++ b/vlm/train/rkllGyBFPH/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c65ea646422b89c6860e8bcd57a222b76e4624eacf9c94214eab7e5225f955ec +size 614143 diff --git a/vlm/train/rkllGyBFPH/20.png b/vlm/train/rkllGyBFPH/20.png new file mode 100644 index 0000000000000000000000000000000000000000..ff05b181c6362bba6106ea4f03e761f51aef7aef --- /dev/null +++ b/vlm/train/rkllGyBFPH/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbacd337f3f632c5ed69584ee7cf5bc3c7b1c2a0f8fb04cf0e7c57f8e92e0805 +size 336064 diff --git a/vlm/train/rkllGyBFPH/21.png b/vlm/train/rkllGyBFPH/21.png new file mode 100644 index 0000000000000000000000000000000000000000..436ee5ba0447102199ce8c873c9d78c43c2c6616 --- /dev/null +++ b/vlm/train/rkllGyBFPH/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b638c8114d4013cd36505b7874a8bdaad940dd94e0e82324bcbbd0c90ab31b8 +size 350203 diff --git a/vlm/train/rkllGyBFPH/22.png b/vlm/train/rkllGyBFPH/22.png new file mode 100644 index 0000000000000000000000000000000000000000..35d6e879c029f2ea17b0455376866231cd89ec5b --- /dev/null +++ b/vlm/train/rkllGyBFPH/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb3302c8de3bbb00322e2c90eb0aec723173d20bc8b42ee0e1d51604a586e5e8 +size 217708 diff --git a/vlm/train/rkllGyBFPH/23.png b/vlm/train/rkllGyBFPH/23.png new file mode 100644 index 0000000000000000000000000000000000000000..f13bc0881633a20f76873914640a9a3c6e4d8c6d --- /dev/null +++ b/vlm/train/rkllGyBFPH/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1349ca0c7245303a5601b36e667171e39653ba255dd94e33f2d9c00720f0c3b0 +size 325322 diff --git a/vlm/train/rkllGyBFPH/24.png b/vlm/train/rkllGyBFPH/24.png new file mode 100644 index 0000000000000000000000000000000000000000..681aeb18e5dca0b3ab99f09ada0d1cce59dca16e --- /dev/null +++ b/vlm/train/rkllGyBFPH/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4409ceaa8415ace2a515095b65bc9638a13eba1bd8c705a49ca4866942fbd44e +size 390192 diff --git a/vlm/train/rkllGyBFPH/25.png b/vlm/train/rkllGyBFPH/25.png new file mode 100644 index 0000000000000000000000000000000000000000..b4f1ed28643786e5e6f23cf5a20dcc6daa22d115 --- /dev/null +++ b/vlm/train/rkllGyBFPH/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:293139150162c6e5291b1ec696bf2fdb7d4d350e167131c3ac357444822ac626 +size 404228 diff --git a/vlm/train/rkllGyBFPH/26.png b/vlm/train/rkllGyBFPH/26.png new file mode 100644 index 0000000000000000000000000000000000000000..9122224f6af817deea8e01aad4b231cbaa712952 --- /dev/null +++ b/vlm/train/rkllGyBFPH/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cea3b441109ecd6a99376cd380f46fcc96eae1e4fa2d233678ace7202745818 +size 346725 diff --git a/vlm/train/rkllGyBFPH/27.png b/vlm/train/rkllGyBFPH/27.png new file mode 100644 index 0000000000000000000000000000000000000000..30b64901010ef94abc716fde57db2d6c4a6c3e9c --- /dev/null +++ b/vlm/train/rkllGyBFPH/27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76154b894a3b059665281e09528fa16a08b53f0079c01b3768e919580c284817 +size 318931 diff --git a/vlm/train/rkllGyBFPH/28.png b/vlm/train/rkllGyBFPH/28.png new file mode 100644 index 0000000000000000000000000000000000000000..586de37121931940e7ab64626185bed49727d453 --- /dev/null +++ b/vlm/train/rkllGyBFPH/28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c026380ae0be28a41b150db477a49d81271a52d9048e8478f866f16a53a28d3 +size 370377 diff --git a/vlm/train/rkllGyBFPH/29.png b/vlm/train/rkllGyBFPH/29.png new file mode 100644 index 0000000000000000000000000000000000000000..54ad61aed1676ab673373bc715fa4523593e0a8d --- /dev/null +++ b/vlm/train/rkllGyBFPH/29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:324c90a98c109e8a861854f5f4447c610a8c8d7b81a3cba4ae6c373f6d6caefb +size 382504 diff --git a/vlm/train/rkllGyBFPH/3.png b/vlm/train/rkllGyBFPH/3.png new file mode 100644 index 0000000000000000000000000000000000000000..fcd05fcd6013fac9819fc682ff767555b4222f4e --- /dev/null +++ b/vlm/train/rkllGyBFPH/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e80153e10c2afa0d0a8a93e85c77576937532f81d2f710dec593198e1a9c03c1 +size 445932 diff --git a/vlm/train/rkllGyBFPH/30.png b/vlm/train/rkllGyBFPH/30.png new file mode 100644 index 0000000000000000000000000000000000000000..2936535f4e3b60a705e75f8ff5878141ace748c2 --- /dev/null +++ b/vlm/train/rkllGyBFPH/30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1381dfa1ddcd507a2ad292783ab07a2d2c04795ec5257c5343c59d4ace81958 +size 421719 diff --git a/vlm/train/rkllGyBFPH/31.png b/vlm/train/rkllGyBFPH/31.png new file mode 100644 index 0000000000000000000000000000000000000000..d4cfb9578999c5eb88ac8528b510347147779ce3 --- /dev/null +++ b/vlm/train/rkllGyBFPH/31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d7283f5c3f0f793855f583830f8ab00f6c9a07d9cfb150803ced52b2f5ce3eb +size 391179 diff --git a/vlm/train/rkllGyBFPH/32.png b/vlm/train/rkllGyBFPH/32.png new file mode 100644 index 0000000000000000000000000000000000000000..53c5f1500d396806c128f2071a96c3ed06d3fe46 --- /dev/null +++ b/vlm/train/rkllGyBFPH/32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52bf7d97c34a7caf5a6656664a3b14545b34220ee24f582b1ad186b67cef12cf +size 382421 diff --git a/vlm/train/rkllGyBFPH/33.png b/vlm/train/rkllGyBFPH/33.png new file mode 100644 index 0000000000000000000000000000000000000000..dee9459ad0ea5c5d7d6d6bf124e237cc23937f77 --- /dev/null +++ b/vlm/train/rkllGyBFPH/33.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d228e050967a2a56757d7b0f57e8ed782a1957918ff3a04ad5c2300fda8dda06 +size 339508 diff --git a/vlm/train/rkllGyBFPH/34.png b/vlm/train/rkllGyBFPH/34.png new file mode 100644 index 0000000000000000000000000000000000000000..7a59d9d1b97c136df14c2bae8ceea0c264b3650f --- /dev/null +++ b/vlm/train/rkllGyBFPH/34.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb99f25d9036a9875d1771a6b1fd4dcdd7442eaf61ea232ce1526ef419f42bb9 +size 114831 diff --git a/vlm/train/rkllGyBFPH/4.png b/vlm/train/rkllGyBFPH/4.png new file mode 100644 index 0000000000000000000000000000000000000000..1c20a2acbb3c120419d1352f797e0b43fe99fae5 --- /dev/null +++ b/vlm/train/rkllGyBFPH/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c7d97406902a9e1ef1ae90abb882104c5a65aff574784a111b069c8b0896590 +size 450518 diff --git a/vlm/train/rkllGyBFPH/5.png b/vlm/train/rkllGyBFPH/5.png new file mode 100644 index 0000000000000000000000000000000000000000..26feff1718d1a31bba13282c130d4df1bec8e1a0 --- /dev/null +++ b/vlm/train/rkllGyBFPH/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3e281d9b9994586dca52e2836c28a20266a034bd97eb927b3a0bcfd016693fa +size 464411 diff --git a/vlm/train/rkllGyBFPH/6.png b/vlm/train/rkllGyBFPH/6.png new file mode 100644 index 0000000000000000000000000000000000000000..c9bb58ca43a6b9154b7b7fa5a07af234b6fb1ed0 --- /dev/null +++ b/vlm/train/rkllGyBFPH/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59f5da6bb3fda141ec8a1e5915e77e781a9defc4f13134a814cf52d0f7f4e23e +size 554677 diff --git a/vlm/train/rkllGyBFPH/7.png b/vlm/train/rkllGyBFPH/7.png new file mode 100644 index 0000000000000000000000000000000000000000..61f55e3cd9241269a52e3c380e0471884ed43602 --- /dev/null +++ b/vlm/train/rkllGyBFPH/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4c0fa57302fb86bd0faea098814df22be800c49730442ac3310dbbf9ee29d66 +size 452907 diff --git a/vlm/train/rkllGyBFPH/8.png b/vlm/train/rkllGyBFPH/8.png new file mode 100644 index 0000000000000000000000000000000000000000..7e240f9a104d4b71d5341fac374d7aab4270655b --- /dev/null +++ b/vlm/train/rkllGyBFPH/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d641c9c9ef43caa55a14399a9e46fbbb255034f15b5b834cc25a0218c4d88f8c +size 501279 diff --git a/vlm/train/rkllGyBFPH/9.png b/vlm/train/rkllGyBFPH/9.png new file mode 100644 index 0000000000000000000000000000000000000000..1402b1bc6e407d9fef78876d89be59ae8bbd892c --- /dev/null +++ b/vlm/train/rkllGyBFPH/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5f4d5d834de6ae7565d48a807df8d006461fdc50cbe51a54be49dff67c52522 +size 451280 diff --git a/vlm/train/rygvFyrKwH/0.png b/vlm/train/rygvFyrKwH/0.png new file mode 100644 index 0000000000000000000000000000000000000000..d28daaa8eeb7407bc3b18085b6a485d886221363 --- /dev/null +++ b/vlm/train/rygvFyrKwH/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d7e0adbd863d51b72b92c68b86ff2e333c5d8dbea7c8f9a9894763f6fcb7758 +size 492552 diff --git a/vlm/train/rygvFyrKwH/1.png b/vlm/train/rygvFyrKwH/1.png new file mode 100644 index 0000000000000000000000000000000000000000..3a75789a5a5c1c164eda69575bc87e4eea223085 --- /dev/null +++ b/vlm/train/rygvFyrKwH/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f78f8e16633eaf58d638f263ce60af01ee4c04f4a6df7b68cd9fbd64009b615a +size 1004523 diff --git a/vlm/train/rygvFyrKwH/10.png b/vlm/train/rygvFyrKwH/10.png new file mode 100644 index 0000000000000000000000000000000000000000..b74070824dbfbe549e1ad306e0e4853d3efe2146 --- /dev/null +++ b/vlm/train/rygvFyrKwH/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27f7e3a8192db7f408a508a1fe17a2f4bd4547402344f5dea14268bda6ca48e7 +size 509948 diff --git a/vlm/train/rygvFyrKwH/11.png b/vlm/train/rygvFyrKwH/11.png new file mode 100644 index 0000000000000000000000000000000000000000..5e34496dac5c95f0563eb547e12ff643173b7823 --- /dev/null +++ b/vlm/train/rygvFyrKwH/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccdc33cdc0f308f83e622c080d6f0c97ebea2add29fa34a98046e2c78bbbad80 +size 546106 diff --git a/vlm/train/rygvFyrKwH/12.png b/vlm/train/rygvFyrKwH/12.png new file mode 100644 index 0000000000000000000000000000000000000000..a68bf973fa84de328c39dd9cdfde48c5ba32489e --- /dev/null +++ b/vlm/train/rygvFyrKwH/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:517ef851e102e1ccd2b9e2af47bc530debfc7404968b81edc1e7505183409504 +size 571788 diff --git a/vlm/train/rygvFyrKwH/13.png b/vlm/train/rygvFyrKwH/13.png new file mode 100644 index 0000000000000000000000000000000000000000..f6b2d6255d3bd451c60bf87eb3ec43088030ffb4 --- /dev/null +++ b/vlm/train/rygvFyrKwH/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf38622f617cf00e53d444f4776378117453cd6cfbdb594b4aa299589ecfdad6 +size 297570 diff --git a/vlm/train/rygvFyrKwH/14.png b/vlm/train/rygvFyrKwH/14.png new file mode 100644 index 0000000000000000000000000000000000000000..1fbd3bec65147481cf0591d5b925fdeed440938f --- /dev/null +++ b/vlm/train/rygvFyrKwH/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a72d845ae82e57a6225bf69896c2fe3eda5318710560328f6b4bb0d74fcd99a +size 376489 diff --git a/vlm/train/rygvFyrKwH/15.png b/vlm/train/rygvFyrKwH/15.png new file mode 100644 index 0000000000000000000000000000000000000000..9237373c207a0472f6f420f027c024641492b67b --- /dev/null +++ b/vlm/train/rygvFyrKwH/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64ee70300568fee28df8d1f611e97017fb41a001bef2de93986db91b541bdafc +size 379891 diff --git a/vlm/train/rygvFyrKwH/16.png b/vlm/train/rygvFyrKwH/16.png new file mode 100644 index 0000000000000000000000000000000000000000..f4cf48f0669f9b93ca80b16b12d8f7b8f12780dc --- /dev/null +++ b/vlm/train/rygvFyrKwH/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01e60f7f6b16750356f5d555bae49cfb961539b29d6e6ccac4d0a45adaf6409c +size 592600 diff --git a/vlm/train/rygvFyrKwH/17.png b/vlm/train/rygvFyrKwH/17.png new file mode 100644 index 0000000000000000000000000000000000000000..f86dc048362ae428c7ffdaf3c20aeb487f042feb --- /dev/null +++ b/vlm/train/rygvFyrKwH/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d75a9a50ab03b63fc4d9d9cd55d2b6b96e76b08ea13326642914387826624cc +size 1580487 diff --git a/vlm/train/rygvFyrKwH/18.png b/vlm/train/rygvFyrKwH/18.png new file mode 100644 index 0000000000000000000000000000000000000000..6dd9d180759daf8136ce64d0786af7e3b040da36 --- /dev/null +++ b/vlm/train/rygvFyrKwH/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee78baa7d29cbc7e40e6198d7a9125ff27b92a7518277af85a110400bc9b7c8c +size 1137513 diff --git a/vlm/train/rygvFyrKwH/19.png b/vlm/train/rygvFyrKwH/19.png new file mode 100644 index 0000000000000000000000000000000000000000..ebfce94164d5a6a58a59d63b79571e8b3d0a5efb --- /dev/null +++ b/vlm/train/rygvFyrKwH/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d5f79cc848c9916bde1e0cb95f62c40ea6f6f064cc73d9d61942819fb92a736 +size 635690 diff --git a/vlm/train/rygvFyrKwH/2.png b/vlm/train/rygvFyrKwH/2.png new file mode 100644 index 0000000000000000000000000000000000000000..df4511dc8ebb58b19a06d2943336cb25775ddbc1 --- /dev/null +++ b/vlm/train/rygvFyrKwH/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a746212ab2ed6dd5e22814d29e6c1eca8712519db4b0f66c87c1d7143d3e0059 +size 589796 diff --git a/vlm/train/rygvFyrKwH/20.png b/vlm/train/rygvFyrKwH/20.png new file mode 100644 index 0000000000000000000000000000000000000000..8768d1ca8ca30d3692d2b4e89a3554f5e7c8dd13 --- /dev/null +++ b/vlm/train/rygvFyrKwH/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56dc62f727820ecee07760af43041573fa3d76afc5141d2231b0206912b05386 +size 1423833 diff --git a/vlm/train/rygvFyrKwH/21.png b/vlm/train/rygvFyrKwH/21.png new file mode 100644 index 0000000000000000000000000000000000000000..9b68a65b1256dab09f13e2565da5f317fa28a852 --- /dev/null +++ b/vlm/train/rygvFyrKwH/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7f3c776517ac9eca51c4e13ccec6d9f4dfaee6dde86c6ad16840ca67f69ac54 +size 571402 diff --git a/vlm/train/rygvFyrKwH/22.png b/vlm/train/rygvFyrKwH/22.png new file mode 100644 index 0000000000000000000000000000000000000000..bbb43aeeee114d3149e78dfbd71a958ef7062345 --- /dev/null +++ b/vlm/train/rygvFyrKwH/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed52e5c8f8f9c23a9882c399040073e9489c33f41be534c9baeab7056198e25e +size 1411843 diff --git a/vlm/train/rygvFyrKwH/23.png b/vlm/train/rygvFyrKwH/23.png new file mode 100644 index 0000000000000000000000000000000000000000..b1592a0855e046f0a7fabec71127ce5923a7c742 --- /dev/null +++ b/vlm/train/rygvFyrKwH/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89475595a1052426b7d313e246db5e109aed6927e71504713309a5574792dba0 +size 1342698 diff --git a/vlm/train/rygvFyrKwH/24.png b/vlm/train/rygvFyrKwH/24.png new file mode 100644 index 0000000000000000000000000000000000000000..750a9908f2404628bf2e0c034fb73a5c67f03e77 --- /dev/null +++ b/vlm/train/rygvFyrKwH/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d002fedbca5d0dddecf34faa750bf7bbb70ed190f6421952b43ccbb0b626d4d +size 1566691 diff --git a/vlm/train/rygvFyrKwH/25.png b/vlm/train/rygvFyrKwH/25.png new file mode 100644 index 0000000000000000000000000000000000000000..92fb405c1067d2f1ab99ed147df1142754f94407 --- /dev/null +++ b/vlm/train/rygvFyrKwH/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f88bb418bc774a023bac6830eee585800912106779230d754ddf5c6695ab5546 +size 1829342 diff --git a/vlm/train/rygvFyrKwH/3.png b/vlm/train/rygvFyrKwH/3.png new file mode 100644 index 0000000000000000000000000000000000000000..2b3ac342a908a0a5db42d301a148074c4758f5ae --- /dev/null +++ b/vlm/train/rygvFyrKwH/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99b1fd1a9cf6fb6724415423e92140a5277089cd0818402bf5dccd2a1167dd13 +size 538864 diff --git a/vlm/train/rygvFyrKwH/4.png b/vlm/train/rygvFyrKwH/4.png new file mode 100644 index 0000000000000000000000000000000000000000..42982d64c8b0453aad0d42b855b3f5f4170b4cf5 --- /dev/null +++ b/vlm/train/rygvFyrKwH/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fade2477067942b1d0ddb322d0e4e5a66fc0d52057f3715c1dacf307eecc343c +size 965436 diff --git a/vlm/train/rygvFyrKwH/5.png b/vlm/train/rygvFyrKwH/5.png new file mode 100644 index 0000000000000000000000000000000000000000..7b0616e7fc3a0236259f541641937f7f86066ad9 --- /dev/null +++ b/vlm/train/rygvFyrKwH/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04c6b54bcc2478e71ef1f93fa4507461bc699f1776f244c2cfa634de2e69af94 +size 685194 diff --git a/vlm/train/rygvFyrKwH/6.png b/vlm/train/rygvFyrKwH/6.png new file mode 100644 index 0000000000000000000000000000000000000000..5491f614f8c616b7cc326ae1222dd0a0d59031d3 --- /dev/null +++ b/vlm/train/rygvFyrKwH/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bf66626fe57883fd4e4d44b8b1bc0599f3904e2f04e8f780b77f2ee5458ca05 +size 812937 diff --git a/vlm/train/rygvFyrKwH/7.png b/vlm/train/rygvFyrKwH/7.png new file mode 100644 index 0000000000000000000000000000000000000000..583665c1492fac4ca5ac00fb2272c6414f2a894d --- /dev/null +++ b/vlm/train/rygvFyrKwH/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f32ff74a2de95d4de596116760e0ebc1c82d52735054a18ab90a4f37d3dcd40 +size 1489445 diff --git a/vlm/train/rygvFyrKwH/8.png b/vlm/train/rygvFyrKwH/8.png new file mode 100644 index 0000000000000000000000000000000000000000..b55fb75a9fee7b0ff6a95352c5f093a1f91f6447 --- /dev/null +++ b/vlm/train/rygvFyrKwH/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1768873354d261fd24be842ddd6f934d47226a095189f74aba2aaabc74c13c6 +size 1187776 diff --git a/vlm/train/rygvFyrKwH/9.png b/vlm/train/rygvFyrKwH/9.png new file mode 100644 index 0000000000000000000000000000000000000000..1090aa35fd7623becea8d6f7d5c64cc56c7e8b6d --- /dev/null +++ b/vlm/train/rygvFyrKwH/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e05cece1e81fdfbae21d738a94d3af2fe9d4f68e0da88c309ce90c7c3247c7b9 +size 568774 diff --git a/vlm/train/rylztAEYvr/0.png b/vlm/train/rylztAEYvr/0.png new file mode 100644 index 0000000000000000000000000000000000000000..3f5d1fbfaf8f1b3589ef36dc785978ffea699dc5 --- /dev/null +++ b/vlm/train/rylztAEYvr/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e16ee8424af62228579ca51f137ef98040392e60f7abd09b0fe97c115bec557e +size 478477 diff --git a/vlm/train/rylztAEYvr/1.png b/vlm/train/rylztAEYvr/1.png new file mode 100644 index 0000000000000000000000000000000000000000..a0948d9a628dae4664a2da84880f149c92d0fd5d --- /dev/null +++ b/vlm/train/rylztAEYvr/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02c7779de5ab64fa44f1255ade05e4e16e064533510d74ac43b3d742655db4a2 +size 597393 diff --git a/vlm/train/rylztAEYvr/11.png b/vlm/train/rylztAEYvr/11.png new file mode 100644 index 0000000000000000000000000000000000000000..5d40e7fc33012294465ffb2ed277484ba6549d07 --- /dev/null +++ b/vlm/train/rylztAEYvr/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:514885f8582332e2edebcaca3e3433034c93d3f38ce4234a125eb7d16ea43e1c +size 368710 diff --git a/vlm/train/rylztAEYvr/12.png b/vlm/train/rylztAEYvr/12.png new file mode 100644 index 0000000000000000000000000000000000000000..a94a7b086f31f4d07705fb3b7fc24ef50b8c135a --- /dev/null +++ b/vlm/train/rylztAEYvr/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e51798f88d8ccf59f17db4253db494d7ada60ca694fbb53b7fcebe7b613a7aa +size 109233 diff --git a/vlm/train/rylztAEYvr/2.png b/vlm/train/rylztAEYvr/2.png new file mode 100644 index 0000000000000000000000000000000000000000..4fad9369f8b5e218234ec5547608a6e6033d7ddf --- /dev/null +++ b/vlm/train/rylztAEYvr/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:087702e10b9a83f4280265f7ee95c7edfcb74680d5273aa8153f33b347871516 +size 485890 diff --git a/vlm/train/rylztAEYvr/3.png b/vlm/train/rylztAEYvr/3.png new file mode 100644 index 0000000000000000000000000000000000000000..d5d7bd93e10ba2b3f37ce1232043bd23a48b66bc --- /dev/null +++ b/vlm/train/rylztAEYvr/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35355539ff3cb930ef2470f67cddb77bcb463788ec3f8aa7b41ef88b069d94e3 +size 463199 diff --git a/vlm/train/rylztAEYvr/4.png b/vlm/train/rylztAEYvr/4.png new file mode 100644 index 0000000000000000000000000000000000000000..03cc819d5a1e786895b35cc11ab87317589c2207 --- /dev/null +++ b/vlm/train/rylztAEYvr/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60995572b8f838029b294faf8473d7df0bdb3d1e13cdddfdf2bb8dc3a927164a +size 550784 diff --git a/vlm/train/rylztAEYvr/5.png b/vlm/train/rylztAEYvr/5.png new file mode 100644 index 0000000000000000000000000000000000000000..c3f0466f4aee88fd6d7bcbd41c8781771cd70bad --- /dev/null +++ b/vlm/train/rylztAEYvr/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa5e5251e2b81f1ed3faff6a7d929a626fe816144eaef99ac5db22004f4e380c +size 570664 diff --git a/vlm/train/rylztAEYvr/7.png b/vlm/train/rylztAEYvr/7.png new file mode 100644 index 0000000000000000000000000000000000000000..6e5452fa5f8e193d71e80f14a38030b92066feb4 --- /dev/null +++ b/vlm/train/rylztAEYvr/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a845fb643da269cdba93c192a55fe3795791d2e82b984910168aee6ac81fdfd8 +size 488317 diff --git a/vlm/train/rylztAEYvr/8.png b/vlm/train/rylztAEYvr/8.png new file mode 100644 index 0000000000000000000000000000000000000000..83c1e3681221e2285e9e170e91e3fffa175e40f0 --- /dev/null +++ b/vlm/train/rylztAEYvr/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a96287010cad35173b51f45dd5dc3f8e084d3d93c993ff1f450ac1218cb39f23 +size 560349 diff --git a/vlm/train/rylztAEYvr/9.png b/vlm/train/rylztAEYvr/9.png new file mode 100644 index 0000000000000000000000000000000000000000..5dabebc77b794412560fa1b853ea30fab60ebb79 --- /dev/null +++ b/vlm/train/rylztAEYvr/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffda65f1470656716c9db756dcf2e1adec4cff265f151cacac2d3fc2d6221bb9 +size 338962